composer.lock 391 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827
  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": "2e1f8e3896c7e4f29cc2fa8b6b9dd183",
  8. "packages": [
  9. {
  10. "name": "adbario/php-dot-notation",
  11. "version": "2.5.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/adbario/php-dot-notation.git",
  15. "reference": "081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/adbario/php-dot-notation/zipball/081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae",
  20. "reference": "081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae",
  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. "ext-json": "*",
  31. "php": "^5.5 || ^7.0 || ^8.0"
  32. },
  33. "require-dev": {
  34. "phpunit/phpunit": "^4.8|^5.7|^6.6|^7.5|^8.5|^9.5",
  35. "squizlabs/php_codesniffer": "^3.6"
  36. },
  37. "type": "library",
  38. "autoload": {
  39. "files": [
  40. "src/helpers.php"
  41. ],
  42. "psr-4": {
  43. "Adbar\\": "src"
  44. }
  45. },
  46. "notification-url": "https://packagist.org/downloads/",
  47. "license": [
  48. "MIT"
  49. ],
  50. "authors": [
  51. {
  52. "name": "Riku Särkinen",
  53. "email": "riku@adbar.io"
  54. }
  55. ],
  56. "description": "PHP dot notation access to arrays",
  57. "homepage": "https://github.com/adbario/php-dot-notation",
  58. "keywords": [
  59. "ArrayAccess",
  60. "dotnotation"
  61. ],
  62. "support": {
  63. "issues": "https://github.com/adbario/php-dot-notation/issues",
  64. "source": "https://github.com/adbario/php-dot-notation/tree/2.5.0"
  65. },
  66. "time": "2022-10-14T20:31:46+00:00"
  67. },
  68. {
  69. "name": "alibabacloud/credentials",
  70. "version": "1.2.3",
  71. "source": {
  72. "type": "git",
  73. "url": "https://github.com/aliyun/credentials-php.git",
  74. "reference": "f6d1986e7b7be8da781d0b99f24c92d9860ba0c1"
  75. },
  76. "dist": {
  77. "type": "zip",
  78. "url": "https://api.github.com/repos/aliyun/credentials-php/zipball/f6d1986e7b7be8da781d0b99f24c92d9860ba0c1",
  79. "reference": "f6d1986e7b7be8da781d0b99f24c92d9860ba0c1",
  80. "shasum": "",
  81. "mirrors": [
  82. {
  83. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  84. "preferred": true
  85. }
  86. ]
  87. },
  88. "require": {
  89. "adbario/php-dot-notation": "^2.2",
  90. "alibabacloud/tea": "^3.0",
  91. "ext-curl": "*",
  92. "ext-json": "*",
  93. "ext-libxml": "*",
  94. "ext-mbstring": "*",
  95. "ext-openssl": "*",
  96. "ext-simplexml": "*",
  97. "ext-xmlwriter": "*",
  98. "guzzlehttp/guzzle": "^6.3|^7.0",
  99. "php": ">=5.6"
  100. },
  101. "require-dev": {
  102. "composer/composer": "^1.8",
  103. "drupal/coder": "^8.3",
  104. "ext-dom": "*",
  105. "ext-pcre": "*",
  106. "ext-sockets": "*",
  107. "ext-spl": "*",
  108. "mikey179/vfsstream": "^1.6",
  109. "monolog/monolog": "^1.24",
  110. "phpunit/phpunit": "^5.7|^6.6|^9.3",
  111. "psr/cache": "^1.0",
  112. "symfony/dotenv": "^3.4",
  113. "symfony/var-dumper": "^3.4"
  114. },
  115. "suggest": {
  116. "ext-sockets": "To use client-side monitoring"
  117. },
  118. "type": "library",
  119. "autoload": {
  120. "psr-4": {
  121. "AlibabaCloud\\Credentials\\": "src"
  122. }
  123. },
  124. "notification-url": "https://packagist.org/downloads/",
  125. "license": [
  126. "Apache-2.0"
  127. ],
  128. "authors": [
  129. {
  130. "name": "Alibaba Cloud SDK",
  131. "email": "sdk-team@alibabacloud.com",
  132. "homepage": "http://www.alibabacloud.com"
  133. }
  134. ],
  135. "description": "Alibaba Cloud Credentials for PHP",
  136. "homepage": "https://www.alibabacloud.com/",
  137. "keywords": [
  138. "alibaba",
  139. "alibabacloud",
  140. "aliyun",
  141. "client",
  142. "cloud",
  143. "credentials",
  144. "library",
  145. "sdk",
  146. "tool"
  147. ],
  148. "support": {
  149. "issues": "https://github.com/aliyun/credentials-php/issues",
  150. "source": "https://github.com/aliyun/credentials-php"
  151. },
  152. "time": "2025-04-18T09:09:46+00:00"
  153. },
  154. {
  155. "name": "alibabacloud/darabonba",
  156. "version": "v1.0.4",
  157. "source": {
  158. "type": "git",
  159. "url": "https://github.com/alibabacloud-sdk-php/darabonba.git",
  160. "reference": "b1ccea693258ea68e455e330922406f3afe10e9c"
  161. },
  162. "dist": {
  163. "type": "zip",
  164. "url": "https://api.github.com/repos/alibabacloud-sdk-php/darabonba/zipball/b1ccea693258ea68e455e330922406f3afe10e9c",
  165. "reference": "b1ccea693258ea68e455e330922406f3afe10e9c",
  166. "shasum": "",
  167. "mirrors": [
  168. {
  169. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  170. "preferred": true
  171. }
  172. ]
  173. },
  174. "require": {
  175. "adbario/php-dot-notation": "^2.4",
  176. "alibabacloud/tea": "^3.2",
  177. "ext-curl": "*",
  178. "ext-json": "*",
  179. "ext-libxml": "*",
  180. "ext-mbstring": "*",
  181. "ext-openssl": "*",
  182. "ext-simplexml": "*",
  183. "ext-xmlwriter": "*",
  184. "guzzlehttp/guzzle": "^6.3|^7.0",
  185. "php": ">=5.5"
  186. },
  187. "require-dev": {
  188. "phpunit/phpunit": "^4.8.35|^5.4.3|^9.3",
  189. "symfony/dotenv": "^3.4",
  190. "symfony/var-dumper": "^3.4"
  191. },
  192. "suggest": {
  193. "ext-sockets": "To use client-side monitoring"
  194. },
  195. "type": "library",
  196. "autoload": {
  197. "psr-4": {
  198. "AlibabaCloud\\Dara\\": "src"
  199. }
  200. },
  201. "notification-url": "https://packagist.org/downloads/",
  202. "license": [
  203. "Apache-2.0"
  204. ],
  205. "authors": [
  206. {
  207. "name": "Alibaba Cloud SDK",
  208. "email": "sdk-team@alibabacloud.com",
  209. "homepage": "http://www.alibabacloud.com"
  210. }
  211. ],
  212. "description": "Client of Darabonba for PHP",
  213. "homepage": "https://www.alibabacloud.com/",
  214. "keywords": [
  215. "alibabacloud",
  216. "client",
  217. "cloud",
  218. "tea"
  219. ],
  220. "support": {
  221. "issues": "https://github.com/aliyun/tea-php/issues",
  222. "source": "https://github.com/aliyun/tea-php"
  223. },
  224. "time": "2025-12-15T10:15:24+00:00"
  225. },
  226. {
  227. "name": "alibabacloud/dysmsapi-20170525",
  228. "version": "3.1.3",
  229. "source": {
  230. "type": "git",
  231. "url": "https://github.com/alibabacloud-sdk-php/Dysmsapi-20170525.git",
  232. "reference": "39bebd85974efc144615b9a11dfdb641d23f90f1"
  233. },
  234. "dist": {
  235. "type": "zip",
  236. "url": "https://api.github.com/repos/alibabacloud-sdk-php/Dysmsapi-20170525/zipball/39bebd85974efc144615b9a11dfdb641d23f90f1",
  237. "reference": "39bebd85974efc144615b9a11dfdb641d23f90f1",
  238. "shasum": "",
  239. "mirrors": [
  240. {
  241. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  242. "preferred": true
  243. }
  244. ]
  245. },
  246. "require": {
  247. "alibabacloud/darabonba": "^1.0.0",
  248. "alibabacloud/openapi-core": "^1.0.0",
  249. "php": ">5.5"
  250. },
  251. "type": "library",
  252. "autoload": {
  253. "psr-4": {
  254. "AlibabaCloud\\SDK\\Dysmsapi\\V20170525\\": "src"
  255. }
  256. },
  257. "notification-url": "https://packagist.org/downloads/",
  258. "license": [
  259. "Apache-2.0"
  260. ],
  261. "authors": [
  262. {
  263. "name": "Alibaba Cloud SDK",
  264. "email": "sdk-team@alibabacloud.com"
  265. }
  266. ],
  267. "description": "Alibaba Cloud Dysmsapi (20170525) SDK Library for PHP",
  268. "support": {
  269. "source": "https://github.com/alibabacloud-sdk-php/Dysmsapi-20170525/tree/3.1.3"
  270. },
  271. "time": "2025-04-16T17:20:20+00:00"
  272. },
  273. {
  274. "name": "alibabacloud/gateway-spi",
  275. "version": "1.0.0",
  276. "source": {
  277. "type": "git",
  278. "url": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi.git",
  279. "reference": "7440f77750c329d8ab252db1d1d967314ccd1fcb"
  280. },
  281. "dist": {
  282. "type": "zip",
  283. "url": "https://api.github.com/repos/alibabacloud-sdk-php/alibabacloud-gateway-spi/zipball/7440f77750c329d8ab252db1d1d967314ccd1fcb",
  284. "reference": "7440f77750c329d8ab252db1d1d967314ccd1fcb",
  285. "shasum": "",
  286. "mirrors": [
  287. {
  288. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  289. "preferred": true
  290. }
  291. ]
  292. },
  293. "require": {
  294. "alibabacloud/credentials": "^1.1",
  295. "php": ">5.5"
  296. },
  297. "type": "library",
  298. "autoload": {
  299. "psr-4": {
  300. "Darabonba\\GatewaySpi\\": "src"
  301. }
  302. },
  303. "notification-url": "https://packagist.org/downloads/",
  304. "license": [
  305. "Apache-2.0"
  306. ],
  307. "authors": [
  308. {
  309. "name": "Alibaba Cloud SDK",
  310. "email": "sdk-team@alibabacloud.com"
  311. }
  312. ],
  313. "description": "Alibaba Cloud Gateway SPI Client",
  314. "support": {
  315. "source": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi/tree/1.0.0"
  316. },
  317. "time": "2022-07-14T05:31:35+00:00"
  318. },
  319. {
  320. "name": "alibabacloud/green-20220302",
  321. "version": "2.23.0",
  322. "source": {
  323. "type": "git",
  324. "url": "https://github.com/alibabacloud-sdk-php/green-20220302.git",
  325. "reference": "686cf53983b296802ab1cb70ee59b879b7ce9b27"
  326. },
  327. "dist": {
  328. "type": "zip",
  329. "url": "https://api.github.com/repos/alibabacloud-sdk-php/green-20220302/zipball/686cf53983b296802ab1cb70ee59b879b7ce9b27",
  330. "reference": "686cf53983b296802ab1cb70ee59b879b7ce9b27",
  331. "shasum": "",
  332. "mirrors": [
  333. {
  334. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  335. "preferred": true
  336. }
  337. ]
  338. },
  339. "require": {
  340. "alibabacloud/darabonba": "^1.0.0",
  341. "alibabacloud/openapi-core": "^1.0.0",
  342. "php": ">5.5"
  343. },
  344. "type": "library",
  345. "autoload": {
  346. "psr-4": {
  347. "AlibabaCloud\\SDK\\Green\\V20220302\\": "src"
  348. }
  349. },
  350. "notification-url": "https://packagist.org/downloads/",
  351. "license": [
  352. "Apache-2.0"
  353. ],
  354. "authors": [
  355. {
  356. "name": "Alibaba Cloud SDK",
  357. "email": "sdk-team@alibabacloud.com"
  358. }
  359. ],
  360. "description": "Alibaba Cloud Green (20220302) SDK Library for PHP",
  361. "support": {
  362. "source": "https://github.com/alibabacloud-sdk-php/green-20220302/tree/2.23.0"
  363. },
  364. "time": "2025-09-22T10:18:31+00:00"
  365. },
  366. {
  367. "name": "alibabacloud/openapi-core",
  368. "version": "1.0.9",
  369. "source": {
  370. "type": "git",
  371. "url": "https://github.com/alibabacloud-sdk-php/openapi-core.git",
  372. "reference": "7b241b2a0e71f70629e2ecdc5cbe8c8b6b3a7567"
  373. },
  374. "dist": {
  375. "type": "zip",
  376. "url": "https://api.github.com/repos/alibabacloud-sdk-php/openapi-core/zipball/7b241b2a0e71f70629e2ecdc5cbe8c8b6b3a7567",
  377. "reference": "7b241b2a0e71f70629e2ecdc5cbe8c8b6b3a7567",
  378. "shasum": "",
  379. "mirrors": [
  380. {
  381. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  382. "preferred": true
  383. }
  384. ]
  385. },
  386. "require": {
  387. "alibabacloud/credentials": "^1.2.2",
  388. "alibabacloud/darabonba": "^1",
  389. "alibabacloud/gateway-spi": "^1",
  390. "php": ">5.5"
  391. },
  392. "require-dev": {
  393. "phpunit/phpunit": "^4.8.35|^5.4.3|^9.3",
  394. "symfony/dotenv": "^3.4",
  395. "symfony/var-dumper": "^3.4"
  396. },
  397. "type": "library",
  398. "autoload": {
  399. "psr-4": {
  400. "Darabonba\\OpenApi\\": "src"
  401. }
  402. },
  403. "notification-url": "https://packagist.org/downloads/",
  404. "license": [
  405. "Apache-2.0"
  406. ],
  407. "authors": [
  408. {
  409. "name": "Alibaba Cloud SDK",
  410. "email": "sdk-team@alibabacloud.com"
  411. }
  412. ],
  413. "description": "Alibaba Cloud OpenApi Client Core",
  414. "support": {
  415. "issues": "https://github.com/alibabacloud-sdk-php/openapi-core/issues",
  416. "source": "https://github.com/alibabacloud-sdk-php/openapi-core/tree/1.0.9"
  417. },
  418. "time": "2026-01-15T06:47:29+00:00"
  419. },
  420. {
  421. "name": "alibabacloud/tea",
  422. "version": "3.2.1",
  423. "source": {
  424. "type": "git",
  425. "url": "https://github.com/aliyun/tea-php.git",
  426. "reference": "1619cb96c158384f72b873e1f85de8b299c9c367"
  427. },
  428. "dist": {
  429. "type": "zip",
  430. "url": "https://api.github.com/repos/aliyun/tea-php/zipball/1619cb96c158384f72b873e1f85de8b299c9c367",
  431. "reference": "1619cb96c158384f72b873e1f85de8b299c9c367",
  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. "adbario/php-dot-notation": "^2.4",
  442. "ext-curl": "*",
  443. "ext-json": "*",
  444. "ext-libxml": "*",
  445. "ext-mbstring": "*",
  446. "ext-openssl": "*",
  447. "ext-simplexml": "*",
  448. "ext-xmlwriter": "*",
  449. "guzzlehttp/guzzle": "^6.3|^7.0",
  450. "php": ">=5.5"
  451. },
  452. "require-dev": {
  453. "phpunit/phpunit": "*",
  454. "symfony/dotenv": "^3.4",
  455. "symfony/var-dumper": "^3.4"
  456. },
  457. "suggest": {
  458. "ext-sockets": "To use client-side monitoring"
  459. },
  460. "type": "library",
  461. "autoload": {
  462. "psr-4": {
  463. "AlibabaCloud\\Tea\\": "src"
  464. }
  465. },
  466. "notification-url": "https://packagist.org/downloads/",
  467. "license": [
  468. "Apache-2.0"
  469. ],
  470. "authors": [
  471. {
  472. "name": "Alibaba Cloud SDK",
  473. "email": "sdk-team@alibabacloud.com",
  474. "homepage": "http://www.alibabacloud.com"
  475. }
  476. ],
  477. "description": "Client of Tea for PHP",
  478. "homepage": "https://www.alibabacloud.com/",
  479. "keywords": [
  480. "alibabacloud",
  481. "client",
  482. "cloud",
  483. "tea"
  484. ],
  485. "support": {
  486. "issues": "https://github.com/aliyun/tea-php/issues",
  487. "source": "https://github.com/aliyun/tea-php"
  488. },
  489. "time": "2023-05-16T06:43:41+00:00"
  490. },
  491. {
  492. "name": "alibabacloud/tea-utils",
  493. "version": "0.2.22",
  494. "source": {
  495. "type": "git",
  496. "url": "https://github.com/alibabacloud-sdk-php/tea-utils.git",
  497. "reference": "d885eadc9d185661ff9bd1d037333f62ba5daa99"
  498. },
  499. "dist": {
  500. "type": "zip",
  501. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-utils/zipball/d885eadc9d185661ff9bd1d037333f62ba5daa99",
  502. "reference": "d885eadc9d185661ff9bd1d037333f62ba5daa99",
  503. "shasum": "",
  504. "mirrors": [
  505. {
  506. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  507. "preferred": true
  508. }
  509. ]
  510. },
  511. "require": {
  512. "alibabacloud/tea": "^3.1",
  513. "php": ">5.5"
  514. },
  515. "type": "library",
  516. "autoload": {
  517. "psr-4": {
  518. "AlibabaCloud\\Tea\\Utils\\": "src"
  519. }
  520. },
  521. "notification-url": "https://packagist.org/downloads/",
  522. "license": [
  523. "Apache-2.0"
  524. ],
  525. "authors": [
  526. {
  527. "name": "Alibaba Cloud SDK",
  528. "email": "sdk-team@alibabacloud.com"
  529. }
  530. ],
  531. "description": "Alibaba Cloud Tea Utils for PHP",
  532. "support": {
  533. "issues": "https://github.com/aliyun/tea-util/issues",
  534. "source": "https://github.com/aliyun/tea-util"
  535. },
  536. "time": "2025-11-19T04:38:07+00:00"
  537. },
  538. {
  539. "name": "aliyuncs/oss-sdk-php",
  540. "version": "v2.7.2",
  541. "source": {
  542. "type": "git",
  543. "url": "https://github.com/aliyun/aliyun-oss-php-sdk.git",
  544. "reference": "483dd0b8bff5d47f0e4ffc99f6077a295c5ccbb5"
  545. },
  546. "dist": {
  547. "type": "zip",
  548. "url": "https://api.github.com/repos/aliyun/aliyun-oss-php-sdk/zipball/483dd0b8bff5d47f0e4ffc99f6077a295c5ccbb5",
  549. "reference": "483dd0b8bff5d47f0e4ffc99f6077a295c5ccbb5",
  550. "shasum": "",
  551. "mirrors": [
  552. {
  553. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  554. "preferred": true
  555. }
  556. ]
  557. },
  558. "require": {
  559. "php": ">=5.3"
  560. },
  561. "require-dev": {
  562. "php-coveralls/php-coveralls": "*",
  563. "phpunit/phpunit": "*"
  564. },
  565. "type": "library",
  566. "autoload": {
  567. "psr-4": {
  568. "OSS\\": "src/OSS"
  569. }
  570. },
  571. "notification-url": "https://packagist.org/downloads/",
  572. "license": [
  573. "MIT"
  574. ],
  575. "authors": [
  576. {
  577. "name": "Aliyuncs",
  578. "homepage": "http://www.aliyun.com"
  579. }
  580. ],
  581. "description": "Aliyun OSS SDK for PHP",
  582. "homepage": "http://www.aliyun.com/product/oss/",
  583. "support": {
  584. "issues": "https://github.com/aliyun/aliyun-oss-php-sdk/issues",
  585. "source": "https://github.com/aliyun/aliyun-oss-php-sdk/tree/v2.7.2"
  586. },
  587. "time": "2024-10-28T10:41:12+00:00"
  588. },
  589. {
  590. "name": "asm89/stack-cors",
  591. "version": "v2.3.0",
  592. "source": {
  593. "type": "git",
  594. "url": "https://github.com/asm89/stack-cors.git",
  595. "reference": "acf3142e6c5eafa378dc8ef3c069ab4558993f70"
  596. },
  597. "dist": {
  598. "type": "zip",
  599. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/acf3142e6c5eafa378dc8ef3c069ab4558993f70",
  600. "reference": "acf3142e6c5eafa378dc8ef3c069ab4558993f70",
  601. "shasum": "",
  602. "mirrors": [
  603. {
  604. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  605. "preferred": true
  606. }
  607. ]
  608. },
  609. "require": {
  610. "php": "^7.3|^8.0",
  611. "symfony/http-foundation": "^5.3|^6|^7",
  612. "symfony/http-kernel": "^5.3|^6|^7"
  613. },
  614. "require-dev": {
  615. "phpunit/phpunit": "^9",
  616. "squizlabs/php_codesniffer": "^3.5"
  617. },
  618. "type": "library",
  619. "extra": {
  620. "branch-alias": {
  621. "dev-master": "2.2-dev"
  622. }
  623. },
  624. "autoload": {
  625. "psr-4": {
  626. "Asm89\\Stack\\": "src/"
  627. }
  628. },
  629. "notification-url": "https://packagist.org/downloads/",
  630. "license": [
  631. "MIT"
  632. ],
  633. "authors": [
  634. {
  635. "name": "Alexander",
  636. "email": "iam.asm89@gmail.com"
  637. }
  638. ],
  639. "description": "Cross-origin resource sharing library and stack middleware",
  640. "homepage": "https://github.com/asm89/stack-cors",
  641. "keywords": [
  642. "cors",
  643. "stack"
  644. ],
  645. "support": {
  646. "issues": "https://github.com/asm89/stack-cors/issues",
  647. "source": "https://github.com/asm89/stack-cors/tree/v2.3.0"
  648. },
  649. "time": "2025-03-13T08:50:04+00:00"
  650. },
  651. {
  652. "name": "brick/math",
  653. "version": "0.11.0",
  654. "source": {
  655. "type": "git",
  656. "url": "https://github.com/brick/math.git",
  657. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478"
  658. },
  659. "dist": {
  660. "type": "zip",
  661. "url": "https://api.github.com/repos/brick/math/zipball/0ad82ce168c82ba30d1c01ec86116ab52f589478",
  662. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478",
  663. "shasum": "",
  664. "mirrors": [
  665. {
  666. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  667. "preferred": true
  668. }
  669. ]
  670. },
  671. "require": {
  672. "php": "^8.0"
  673. },
  674. "require-dev": {
  675. "php-coveralls/php-coveralls": "^2.2",
  676. "phpunit/phpunit": "^9.0",
  677. "vimeo/psalm": "5.0.0"
  678. },
  679. "type": "library",
  680. "autoload": {
  681. "psr-4": {
  682. "Brick\\Math\\": "src/"
  683. }
  684. },
  685. "notification-url": "https://packagist.org/downloads/",
  686. "license": [
  687. "MIT"
  688. ],
  689. "description": "Arbitrary-precision arithmetic library",
  690. "keywords": [
  691. "Arbitrary-precision",
  692. "BigInteger",
  693. "BigRational",
  694. "arithmetic",
  695. "bigdecimal",
  696. "bignum",
  697. "brick",
  698. "math"
  699. ],
  700. "support": {
  701. "issues": "https://github.com/brick/math/issues",
  702. "source": "https://github.com/brick/math/tree/0.11.0"
  703. },
  704. "funding": [
  705. {
  706. "url": "https://github.com/BenMorel",
  707. "type": "github"
  708. }
  709. ],
  710. "time": "2023-01-15T23:15:59+00:00"
  711. },
  712. {
  713. "name": "carbonphp/carbon-doctrine-types",
  714. "version": "2.1.0",
  715. "source": {
  716. "type": "git",
  717. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  718. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb"
  719. },
  720. "dist": {
  721. "type": "zip",
  722. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  723. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  724. "shasum": "",
  725. "mirrors": [
  726. {
  727. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  728. "preferred": true
  729. }
  730. ]
  731. },
  732. "require": {
  733. "php": "^7.4 || ^8.0"
  734. },
  735. "conflict": {
  736. "doctrine/dbal": "<3.7.0 || >=4.0.0"
  737. },
  738. "require-dev": {
  739. "doctrine/dbal": "^3.7.0",
  740. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  741. "phpunit/phpunit": "^10.3"
  742. },
  743. "type": "library",
  744. "autoload": {
  745. "psr-4": {
  746. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  747. }
  748. },
  749. "notification-url": "https://packagist.org/downloads/",
  750. "license": [
  751. "MIT"
  752. ],
  753. "authors": [
  754. {
  755. "name": "KyleKatarn",
  756. "email": "kylekatarnls@gmail.com"
  757. }
  758. ],
  759. "description": "Types to use Carbon in Doctrine",
  760. "keywords": [
  761. "carbon",
  762. "date",
  763. "datetime",
  764. "doctrine",
  765. "time"
  766. ],
  767. "support": {
  768. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  769. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/2.1.0"
  770. },
  771. "funding": [
  772. {
  773. "url": "https://github.com/kylekatarnls",
  774. "type": "github"
  775. },
  776. {
  777. "url": "https://opencollective.com/Carbon",
  778. "type": "open_collective"
  779. },
  780. {
  781. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  782. "type": "tidelift"
  783. }
  784. ],
  785. "time": "2023-12-11T17:09:12+00:00"
  786. },
  787. {
  788. "name": "composer/pcre",
  789. "version": "3.3.2",
  790. "source": {
  791. "type": "git",
  792. "url": "https://github.com/composer/pcre.git",
  793. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e"
  794. },
  795. "dist": {
  796. "type": "zip",
  797. "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  798. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  799. "shasum": "",
  800. "mirrors": [
  801. {
  802. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  803. "preferred": true
  804. }
  805. ]
  806. },
  807. "require": {
  808. "php": "^7.4 || ^8.0"
  809. },
  810. "conflict": {
  811. "phpstan/phpstan": "<1.11.10"
  812. },
  813. "require-dev": {
  814. "phpstan/phpstan": "^1.12 || ^2",
  815. "phpstan/phpstan-strict-rules": "^1 || ^2",
  816. "phpunit/phpunit": "^8 || ^9"
  817. },
  818. "type": "library",
  819. "extra": {
  820. "branch-alias": {
  821. "dev-main": "3.x-dev"
  822. },
  823. "phpstan": {
  824. "includes": [
  825. "extension.neon"
  826. ]
  827. }
  828. },
  829. "autoload": {
  830. "psr-4": {
  831. "Composer\\Pcre\\": "src"
  832. }
  833. },
  834. "notification-url": "https://packagist.org/downloads/",
  835. "license": [
  836. "MIT"
  837. ],
  838. "authors": [
  839. {
  840. "name": "Jordi Boggiano",
  841. "email": "j.boggiano@seld.be",
  842. "homepage": "http://seld.be"
  843. }
  844. ],
  845. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  846. "keywords": [
  847. "PCRE",
  848. "preg",
  849. "regex",
  850. "regular expression"
  851. ],
  852. "support": {
  853. "issues": "https://github.com/composer/pcre/issues",
  854. "source": "https://github.com/composer/pcre/tree/3.3.2"
  855. },
  856. "funding": [
  857. {
  858. "url": "https://packagist.com",
  859. "type": "custom"
  860. },
  861. {
  862. "url": "https://github.com/composer",
  863. "type": "github"
  864. },
  865. {
  866. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  867. "type": "tidelift"
  868. }
  869. ],
  870. "time": "2024-11-12T16:29:46+00:00"
  871. },
  872. {
  873. "name": "dflydev/dot-access-data",
  874. "version": "v3.0.3",
  875. "source": {
  876. "type": "git",
  877. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  878. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  879. },
  880. "dist": {
  881. "type": "zip",
  882. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  883. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  884. "shasum": "",
  885. "mirrors": [
  886. {
  887. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  888. "preferred": true
  889. }
  890. ]
  891. },
  892. "require": {
  893. "php": "^7.1 || ^8.0"
  894. },
  895. "require-dev": {
  896. "phpstan/phpstan": "^0.12.42",
  897. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  898. "scrutinizer/ocular": "1.6.0",
  899. "squizlabs/php_codesniffer": "^3.5",
  900. "vimeo/psalm": "^4.0.0"
  901. },
  902. "type": "library",
  903. "extra": {
  904. "branch-alias": {
  905. "dev-main": "3.x-dev"
  906. }
  907. },
  908. "autoload": {
  909. "psr-4": {
  910. "Dflydev\\DotAccessData\\": "src/"
  911. }
  912. },
  913. "notification-url": "https://packagist.org/downloads/",
  914. "license": [
  915. "MIT"
  916. ],
  917. "authors": [
  918. {
  919. "name": "Dragonfly Development Inc.",
  920. "email": "info@dflydev.com",
  921. "homepage": "http://dflydev.com"
  922. },
  923. {
  924. "name": "Beau Simensen",
  925. "email": "beau@dflydev.com",
  926. "homepage": "http://beausimensen.com"
  927. },
  928. {
  929. "name": "Carlos Frutos",
  930. "email": "carlos@kiwing.it",
  931. "homepage": "https://github.com/cfrutos"
  932. },
  933. {
  934. "name": "Colin O'Dell",
  935. "email": "colinodell@gmail.com",
  936. "homepage": "https://www.colinodell.com"
  937. }
  938. ],
  939. "description": "Given a deep data structure, access data by dot notation.",
  940. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  941. "keywords": [
  942. "access",
  943. "data",
  944. "dot",
  945. "notation"
  946. ],
  947. "support": {
  948. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  949. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  950. },
  951. "time": "2024-07-08T12:26:09+00:00"
  952. },
  953. {
  954. "name": "doctrine/inflector",
  955. "version": "2.0.10",
  956. "source": {
  957. "type": "git",
  958. "url": "https://github.com/doctrine/inflector.git",
  959. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  960. },
  961. "dist": {
  962. "type": "zip",
  963. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  964. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  965. "shasum": "",
  966. "mirrors": [
  967. {
  968. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  969. "preferred": true
  970. }
  971. ]
  972. },
  973. "require": {
  974. "php": "^7.2 || ^8.0"
  975. },
  976. "require-dev": {
  977. "doctrine/coding-standard": "^11.0",
  978. "phpstan/phpstan": "^1.8",
  979. "phpstan/phpstan-phpunit": "^1.1",
  980. "phpstan/phpstan-strict-rules": "^1.3",
  981. "phpunit/phpunit": "^8.5 || ^9.5",
  982. "vimeo/psalm": "^4.25 || ^5.4"
  983. },
  984. "type": "library",
  985. "autoload": {
  986. "psr-4": {
  987. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  988. }
  989. },
  990. "notification-url": "https://packagist.org/downloads/",
  991. "license": [
  992. "MIT"
  993. ],
  994. "authors": [
  995. {
  996. "name": "Guilherme Blanco",
  997. "email": "guilhermeblanco@gmail.com"
  998. },
  999. {
  1000. "name": "Roman Borschel",
  1001. "email": "roman@code-factory.org"
  1002. },
  1003. {
  1004. "name": "Benjamin Eberlei",
  1005. "email": "kontakt@beberlei.de"
  1006. },
  1007. {
  1008. "name": "Jonathan Wage",
  1009. "email": "jonwage@gmail.com"
  1010. },
  1011. {
  1012. "name": "Johannes Schmitt",
  1013. "email": "schmittjoh@gmail.com"
  1014. }
  1015. ],
  1016. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1017. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1018. "keywords": [
  1019. "inflection",
  1020. "inflector",
  1021. "lowercase",
  1022. "manipulation",
  1023. "php",
  1024. "plural",
  1025. "singular",
  1026. "strings",
  1027. "uppercase",
  1028. "words"
  1029. ],
  1030. "support": {
  1031. "issues": "https://github.com/doctrine/inflector/issues",
  1032. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  1033. },
  1034. "funding": [
  1035. {
  1036. "url": "https://www.doctrine-project.org/sponsorship.html",
  1037. "type": "custom"
  1038. },
  1039. {
  1040. "url": "https://www.patreon.com/phpdoctrine",
  1041. "type": "patreon"
  1042. },
  1043. {
  1044. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1045. "type": "tidelift"
  1046. }
  1047. ],
  1048. "time": "2024-02-18T20:23:39+00:00"
  1049. },
  1050. {
  1051. "name": "doctrine/lexer",
  1052. "version": "1.2.3",
  1053. "source": {
  1054. "type": "git",
  1055. "url": "https://github.com/doctrine/lexer.git",
  1056. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  1057. },
  1058. "dist": {
  1059. "type": "zip",
  1060. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1061. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1062. "shasum": "",
  1063. "mirrors": [
  1064. {
  1065. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1066. "preferred": true
  1067. }
  1068. ]
  1069. },
  1070. "require": {
  1071. "php": "^7.1 || ^8.0"
  1072. },
  1073. "require-dev": {
  1074. "doctrine/coding-standard": "^9.0",
  1075. "phpstan/phpstan": "^1.3",
  1076. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1077. "vimeo/psalm": "^4.11"
  1078. },
  1079. "type": "library",
  1080. "autoload": {
  1081. "psr-4": {
  1082. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1083. }
  1084. },
  1085. "notification-url": "https://packagist.org/downloads/",
  1086. "license": [
  1087. "MIT"
  1088. ],
  1089. "authors": [
  1090. {
  1091. "name": "Guilherme Blanco",
  1092. "email": "guilhermeblanco@gmail.com"
  1093. },
  1094. {
  1095. "name": "Roman Borschel",
  1096. "email": "roman@code-factory.org"
  1097. },
  1098. {
  1099. "name": "Johannes Schmitt",
  1100. "email": "schmittjoh@gmail.com"
  1101. }
  1102. ],
  1103. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1104. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1105. "keywords": [
  1106. "annotations",
  1107. "docblock",
  1108. "lexer",
  1109. "parser",
  1110. "php"
  1111. ],
  1112. "support": {
  1113. "issues": "https://github.com/doctrine/lexer/issues",
  1114. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  1115. },
  1116. "funding": [
  1117. {
  1118. "url": "https://www.doctrine-project.org/sponsorship.html",
  1119. "type": "custom"
  1120. },
  1121. {
  1122. "url": "https://www.patreon.com/phpdoctrine",
  1123. "type": "patreon"
  1124. },
  1125. {
  1126. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1127. "type": "tidelift"
  1128. }
  1129. ],
  1130. "time": "2022-02-28T11:07:21+00:00"
  1131. },
  1132. {
  1133. "name": "dragonmantank/cron-expression",
  1134. "version": "v3.5.0",
  1135. "source": {
  1136. "type": "git",
  1137. "url": "https://github.com/dragonmantank/cron-expression.git",
  1138. "reference": "1b2de7f4a468165dca07b142240733a1973e766d"
  1139. },
  1140. "dist": {
  1141. "type": "zip",
  1142. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/1b2de7f4a468165dca07b142240733a1973e766d",
  1143. "reference": "1b2de7f4a468165dca07b142240733a1973e766d",
  1144. "shasum": "",
  1145. "mirrors": [
  1146. {
  1147. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1148. "preferred": true
  1149. }
  1150. ]
  1151. },
  1152. "require": {
  1153. "php": "^7.2|^8.0"
  1154. },
  1155. "replace": {
  1156. "mtdowling/cron-expression": "^1.0"
  1157. },
  1158. "require-dev": {
  1159. "phpstan/extension-installer": "^1.4.3",
  1160. "phpstan/phpstan": "^1.12.32|^2.1.31",
  1161. "phpunit/phpunit": "^8.5.48|^9.0"
  1162. },
  1163. "type": "library",
  1164. "extra": {
  1165. "branch-alias": {
  1166. "dev-master": "3.x-dev"
  1167. }
  1168. },
  1169. "autoload": {
  1170. "psr-4": {
  1171. "Cron\\": "src/Cron/"
  1172. }
  1173. },
  1174. "notification-url": "https://packagist.org/downloads/",
  1175. "license": [
  1176. "MIT"
  1177. ],
  1178. "authors": [
  1179. {
  1180. "name": "Chris Tankersley",
  1181. "email": "chris@ctankersley.com",
  1182. "homepage": "https://github.com/dragonmantank"
  1183. }
  1184. ],
  1185. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1186. "keywords": [
  1187. "cron",
  1188. "schedule"
  1189. ],
  1190. "support": {
  1191. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  1192. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.5.0"
  1193. },
  1194. "funding": [
  1195. {
  1196. "url": "https://github.com/dragonmantank",
  1197. "type": "github"
  1198. }
  1199. ],
  1200. "time": "2025-10-31T18:36:32+00:00"
  1201. },
  1202. {
  1203. "name": "easywechat-composer/easywechat-composer",
  1204. "version": "1.4.1",
  1205. "source": {
  1206. "type": "git",
  1207. "url": "https://github.com/mingyoung/easywechat-composer.git",
  1208. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd"
  1209. },
  1210. "dist": {
  1211. "type": "zip",
  1212. "url": "https://api.github.com/repos/mingyoung/easywechat-composer/zipball/3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  1213. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  1214. "shasum": "",
  1215. "mirrors": [
  1216. {
  1217. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1218. "preferred": true
  1219. }
  1220. ]
  1221. },
  1222. "require": {
  1223. "composer-plugin-api": "^1.0 || ^2.0",
  1224. "php": ">=7.0"
  1225. },
  1226. "require-dev": {
  1227. "composer/composer": "^1.0 || ^2.0",
  1228. "phpunit/phpunit": "^6.5 || ^7.0"
  1229. },
  1230. "type": "composer-plugin",
  1231. "extra": {
  1232. "class": "EasyWeChatComposer\\Plugin"
  1233. },
  1234. "autoload": {
  1235. "psr-4": {
  1236. "EasyWeChatComposer\\": "src/"
  1237. }
  1238. },
  1239. "notification-url": "https://packagist.org/downloads/",
  1240. "license": [
  1241. "MIT"
  1242. ],
  1243. "authors": [
  1244. {
  1245. "name": "张铭阳",
  1246. "email": "mingyoungcheung@gmail.com"
  1247. }
  1248. ],
  1249. "description": "The composer plugin for EasyWeChat",
  1250. "support": {
  1251. "issues": "https://github.com/mingyoung/easywechat-composer/issues",
  1252. "source": "https://github.com/mingyoung/easywechat-composer/tree/1.4.1"
  1253. },
  1254. "time": "2021-07-05T04:03:22+00:00"
  1255. },
  1256. {
  1257. "name": "egulias/email-validator",
  1258. "version": "2.1.25",
  1259. "source": {
  1260. "type": "git",
  1261. "url": "https://github.com/egulias/EmailValidator.git",
  1262. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  1263. },
  1264. "dist": {
  1265. "type": "zip",
  1266. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1267. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1268. "shasum": "",
  1269. "mirrors": [
  1270. {
  1271. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1272. "preferred": true
  1273. }
  1274. ]
  1275. },
  1276. "require": {
  1277. "doctrine/lexer": "^1.0.1",
  1278. "php": ">=5.5",
  1279. "symfony/polyfill-intl-idn": "^1.10"
  1280. },
  1281. "require-dev": {
  1282. "dominicsayers/isemail": "^3.0.7",
  1283. "phpunit/phpunit": "^4.8.36|^7.5.15",
  1284. "satooshi/php-coveralls": "^1.0.1"
  1285. },
  1286. "suggest": {
  1287. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1288. },
  1289. "type": "library",
  1290. "extra": {
  1291. "branch-alias": {
  1292. "dev-master": "2.1.x-dev"
  1293. }
  1294. },
  1295. "autoload": {
  1296. "psr-4": {
  1297. "Egulias\\EmailValidator\\": "src"
  1298. }
  1299. },
  1300. "notification-url": "https://packagist.org/downloads/",
  1301. "license": [
  1302. "MIT"
  1303. ],
  1304. "authors": [
  1305. {
  1306. "name": "Eduardo Gulias Davis"
  1307. }
  1308. ],
  1309. "description": "A library for validating emails against several RFCs",
  1310. "homepage": "https://github.com/egulias/EmailValidator",
  1311. "keywords": [
  1312. "email",
  1313. "emailvalidation",
  1314. "emailvalidator",
  1315. "validation",
  1316. "validator"
  1317. ],
  1318. "support": {
  1319. "issues": "https://github.com/egulias/EmailValidator/issues",
  1320. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  1321. },
  1322. "funding": [
  1323. {
  1324. "url": "https://github.com/egulias",
  1325. "type": "github"
  1326. }
  1327. ],
  1328. "time": "2020-12-29T14:50:06+00:00"
  1329. },
  1330. {
  1331. "name": "ezyang/htmlpurifier",
  1332. "version": "v4.19.0",
  1333. "source": {
  1334. "type": "git",
  1335. "url": "https://github.com/ezyang/htmlpurifier.git",
  1336. "reference": "b287d2a16aceffbf6e0295559b39662612b77fcf"
  1337. },
  1338. "dist": {
  1339. "type": "zip",
  1340. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/b287d2a16aceffbf6e0295559b39662612b77fcf",
  1341. "reference": "b287d2a16aceffbf6e0295559b39662612b77fcf",
  1342. "shasum": "",
  1343. "mirrors": [
  1344. {
  1345. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1346. "preferred": true
  1347. }
  1348. ]
  1349. },
  1350. "require": {
  1351. "php": "~5.6.0 || ~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0"
  1352. },
  1353. "require-dev": {
  1354. "cerdic/css-tidy": "^1.7 || ^2.0",
  1355. "simpletest/simpletest": "dev-master"
  1356. },
  1357. "suggest": {
  1358. "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
  1359. "ext-bcmath": "Used for unit conversion and imagecrash protection",
  1360. "ext-iconv": "Converts text to and from non-UTF-8 encodings",
  1361. "ext-tidy": "Used for pretty-printing HTML"
  1362. },
  1363. "type": "library",
  1364. "autoload": {
  1365. "files": [
  1366. "library/HTMLPurifier.composer.php"
  1367. ],
  1368. "psr-0": {
  1369. "HTMLPurifier": "library/"
  1370. },
  1371. "exclude-from-classmap": [
  1372. "/library/HTMLPurifier/Language/"
  1373. ]
  1374. },
  1375. "notification-url": "https://packagist.org/downloads/",
  1376. "license": [
  1377. "LGPL-2.1-or-later"
  1378. ],
  1379. "authors": [
  1380. {
  1381. "name": "Edward Z. Yang",
  1382. "email": "admin@htmlpurifier.org",
  1383. "homepage": "http://ezyang.com"
  1384. }
  1385. ],
  1386. "description": "Standards compliant HTML filter written in PHP",
  1387. "homepage": "http://htmlpurifier.org/",
  1388. "keywords": [
  1389. "html"
  1390. ],
  1391. "support": {
  1392. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  1393. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.19.0"
  1394. },
  1395. "time": "2025-10-17T16:34:55+00:00"
  1396. },
  1397. {
  1398. "name": "firebase/php-jwt",
  1399. "version": "v6.11.0",
  1400. "source": {
  1401. "type": "git",
  1402. "url": "https://github.com/firebase/php-jwt.git",
  1403. "reference": "8f718f4dfc9c5d5f0c994cdfd103921b43592712"
  1404. },
  1405. "dist": {
  1406. "type": "zip",
  1407. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/8f718f4dfc9c5d5f0c994cdfd103921b43592712",
  1408. "reference": "8f718f4dfc9c5d5f0c994cdfd103921b43592712",
  1409. "shasum": "",
  1410. "mirrors": [
  1411. {
  1412. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1413. "preferred": true
  1414. }
  1415. ]
  1416. },
  1417. "require": {
  1418. "php": "^8.0"
  1419. },
  1420. "require-dev": {
  1421. "guzzlehttp/guzzle": "^7.4",
  1422. "phpspec/prophecy-phpunit": "^2.0",
  1423. "phpunit/phpunit": "^9.5",
  1424. "psr/cache": "^2.0||^3.0",
  1425. "psr/http-client": "^1.0",
  1426. "psr/http-factory": "^1.0"
  1427. },
  1428. "suggest": {
  1429. "ext-sodium": "Support EdDSA (Ed25519) signatures",
  1430. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  1431. },
  1432. "type": "library",
  1433. "autoload": {
  1434. "psr-4": {
  1435. "Firebase\\JWT\\": "src"
  1436. }
  1437. },
  1438. "notification-url": "https://packagist.org/downloads/",
  1439. "license": [
  1440. "BSD-3-Clause"
  1441. ],
  1442. "authors": [
  1443. {
  1444. "name": "Neuman Vong",
  1445. "email": "neuman+pear@twilio.com",
  1446. "role": "Developer"
  1447. },
  1448. {
  1449. "name": "Anant Narayanan",
  1450. "email": "anant@php.net",
  1451. "role": "Developer"
  1452. }
  1453. ],
  1454. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  1455. "homepage": "https://github.com/firebase/php-jwt",
  1456. "keywords": [
  1457. "jwt",
  1458. "php"
  1459. ],
  1460. "support": {
  1461. "issues": "https://github.com/firebase/php-jwt/issues",
  1462. "source": "https://github.com/firebase/php-jwt/tree/v6.11.0"
  1463. },
  1464. "time": "2025-01-23T05:11:06+00:00"
  1465. },
  1466. {
  1467. "name": "fruitcake/laravel-cors",
  1468. "version": "v2.2.0",
  1469. "source": {
  1470. "type": "git",
  1471. "url": "https://github.com/fruitcake/laravel-cors.git",
  1472. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534"
  1473. },
  1474. "dist": {
  1475. "type": "zip",
  1476. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/783a74f5e3431d7b9805be8afb60fd0a8f743534",
  1477. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534",
  1478. "shasum": "",
  1479. "mirrors": [
  1480. {
  1481. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1482. "preferred": true
  1483. }
  1484. ]
  1485. },
  1486. "require": {
  1487. "asm89/stack-cors": "^2.0.1",
  1488. "illuminate/contracts": "^6|^7|^8|^9",
  1489. "illuminate/support": "^6|^7|^8|^9",
  1490. "php": ">=7.2"
  1491. },
  1492. "require-dev": {
  1493. "laravel/framework": "^6|^7.24|^8",
  1494. "orchestra/testbench-dusk": "^4|^5|^6|^7",
  1495. "phpunit/phpunit": "^6|^7|^8|^9",
  1496. "squizlabs/php_codesniffer": "^3.5"
  1497. },
  1498. "type": "library",
  1499. "extra": {
  1500. "branch-alias": {
  1501. "dev-master": "2.1-dev"
  1502. },
  1503. "laravel": {
  1504. "providers": [
  1505. "Fruitcake\\Cors\\CorsServiceProvider"
  1506. ]
  1507. }
  1508. },
  1509. "autoload": {
  1510. "psr-4": {
  1511. "Fruitcake\\Cors\\": "src/"
  1512. }
  1513. },
  1514. "notification-url": "https://packagist.org/downloads/",
  1515. "license": [
  1516. "MIT"
  1517. ],
  1518. "authors": [
  1519. {
  1520. "name": "Fruitcake",
  1521. "homepage": "https://fruitcake.nl"
  1522. },
  1523. {
  1524. "name": "Barry vd. Heuvel",
  1525. "email": "barryvdh@gmail.com"
  1526. }
  1527. ],
  1528. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  1529. "keywords": [
  1530. "api",
  1531. "cors",
  1532. "crossdomain",
  1533. "laravel"
  1534. ],
  1535. "support": {
  1536. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  1537. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.2.0"
  1538. },
  1539. "funding": [
  1540. {
  1541. "url": "https://fruitcake.nl",
  1542. "type": "custom"
  1543. },
  1544. {
  1545. "url": "https://github.com/barryvdh",
  1546. "type": "github"
  1547. }
  1548. ],
  1549. "abandoned": true,
  1550. "time": "2022-02-23T14:25:13+00:00"
  1551. },
  1552. {
  1553. "name": "graham-campbell/manager",
  1554. "version": "v4.7.0",
  1555. "source": {
  1556. "type": "git",
  1557. "url": "https://github.com/GrahamCampbell/Laravel-Manager.git",
  1558. "reference": "b4cafa6491b9c92ecf7ce17521580050a27b8308"
  1559. },
  1560. "dist": {
  1561. "type": "zip",
  1562. "url": "https://api.github.com/repos/GrahamCampbell/Laravel-Manager/zipball/b4cafa6491b9c92ecf7ce17521580050a27b8308",
  1563. "reference": "b4cafa6491b9c92ecf7ce17521580050a27b8308",
  1564. "shasum": "",
  1565. "mirrors": [
  1566. {
  1567. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1568. "preferred": true
  1569. }
  1570. ]
  1571. },
  1572. "require": {
  1573. "illuminate/contracts": "^5.5 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
  1574. "illuminate/support": "^5.5 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
  1575. "php": "^7.1.3 || ^8.0"
  1576. },
  1577. "require-dev": {
  1578. "graham-campbell/analyzer": "^2.4 || ^3.0",
  1579. "graham-campbell/testbench-core": "^3.4",
  1580. "mockery/mockery": "^1.3.1",
  1581. "phpunit/phpunit": "^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.7"
  1582. },
  1583. "type": "library",
  1584. "autoload": {
  1585. "psr-4": {
  1586. "GrahamCampbell\\Manager\\": "src/"
  1587. }
  1588. },
  1589. "notification-url": "https://packagist.org/downloads/",
  1590. "license": [
  1591. "MIT"
  1592. ],
  1593. "authors": [
  1594. {
  1595. "name": "Graham Campbell",
  1596. "email": "hello@gjcampbell.co.uk",
  1597. "homepage": "https://github.com/GrahamCampbell"
  1598. }
  1599. ],
  1600. "description": "Manager Provides Some Manager Functionality For Laravel",
  1601. "keywords": [
  1602. "Graham Campbell",
  1603. "GrahamCampbell",
  1604. "Laravel Manager",
  1605. "Laravel-Manager",
  1606. "connector",
  1607. "framework",
  1608. "interface",
  1609. "laravel",
  1610. "manager"
  1611. ],
  1612. "support": {
  1613. "issues": "https://github.com/GrahamCampbell/Laravel-Manager/issues",
  1614. "source": "https://github.com/GrahamCampbell/Laravel-Manager/tree/v4.7.0"
  1615. },
  1616. "funding": [
  1617. {
  1618. "url": "https://github.com/GrahamCampbell",
  1619. "type": "github"
  1620. },
  1621. {
  1622. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/manager",
  1623. "type": "tidelift"
  1624. }
  1625. ],
  1626. "time": "2022-01-24T01:59:19+00:00"
  1627. },
  1628. {
  1629. "name": "graham-campbell/result-type",
  1630. "version": "v1.1.4",
  1631. "source": {
  1632. "type": "git",
  1633. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  1634. "reference": "e01f4a821471308ba86aa202fed6698b6b695e3b"
  1635. },
  1636. "dist": {
  1637. "type": "zip",
  1638. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/e01f4a821471308ba86aa202fed6698b6b695e3b",
  1639. "reference": "e01f4a821471308ba86aa202fed6698b6b695e3b",
  1640. "shasum": "",
  1641. "mirrors": [
  1642. {
  1643. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1644. "preferred": true
  1645. }
  1646. ]
  1647. },
  1648. "require": {
  1649. "php": "^7.2.5 || ^8.0",
  1650. "phpoption/phpoption": "^1.9.5"
  1651. },
  1652. "require-dev": {
  1653. "phpunit/phpunit": "^8.5.41 || ^9.6.22 || ^10.5.45 || ^11.5.7"
  1654. },
  1655. "type": "library",
  1656. "autoload": {
  1657. "psr-4": {
  1658. "GrahamCampbell\\ResultType\\": "src/"
  1659. }
  1660. },
  1661. "notification-url": "https://packagist.org/downloads/",
  1662. "license": [
  1663. "MIT"
  1664. ],
  1665. "authors": [
  1666. {
  1667. "name": "Graham Campbell",
  1668. "email": "hello@gjcampbell.co.uk",
  1669. "homepage": "https://github.com/GrahamCampbell"
  1670. }
  1671. ],
  1672. "description": "An Implementation Of The Result Type",
  1673. "keywords": [
  1674. "Graham Campbell",
  1675. "GrahamCampbell",
  1676. "Result Type",
  1677. "Result-Type",
  1678. "result"
  1679. ],
  1680. "support": {
  1681. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  1682. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.4"
  1683. },
  1684. "funding": [
  1685. {
  1686. "url": "https://github.com/GrahamCampbell",
  1687. "type": "github"
  1688. },
  1689. {
  1690. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  1691. "type": "tidelift"
  1692. }
  1693. ],
  1694. "time": "2025-12-27T19:43:20+00:00"
  1695. },
  1696. {
  1697. "name": "guzzlehttp/guzzle",
  1698. "version": "7.10.0",
  1699. "source": {
  1700. "type": "git",
  1701. "url": "https://github.com/guzzle/guzzle.git",
  1702. "reference": "b51ac707cfa420b7bfd4e4d5e510ba8008e822b4"
  1703. },
  1704. "dist": {
  1705. "type": "zip",
  1706. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/b51ac707cfa420b7bfd4e4d5e510ba8008e822b4",
  1707. "reference": "b51ac707cfa420b7bfd4e4d5e510ba8008e822b4",
  1708. "shasum": "",
  1709. "mirrors": [
  1710. {
  1711. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1712. "preferred": true
  1713. }
  1714. ]
  1715. },
  1716. "require": {
  1717. "ext-json": "*",
  1718. "guzzlehttp/promises": "^2.3",
  1719. "guzzlehttp/psr7": "^2.8",
  1720. "php": "^7.2.5 || ^8.0",
  1721. "psr/http-client": "^1.0",
  1722. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1723. },
  1724. "provide": {
  1725. "psr/http-client-implementation": "1.0"
  1726. },
  1727. "require-dev": {
  1728. "bamarni/composer-bin-plugin": "^1.8.2",
  1729. "ext-curl": "*",
  1730. "guzzle/client-integration-tests": "3.0.2",
  1731. "php-http/message-factory": "^1.1",
  1732. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  1733. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1734. },
  1735. "suggest": {
  1736. "ext-curl": "Required for CURL handler support",
  1737. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1738. "psr/log": "Required for using the Log middleware"
  1739. },
  1740. "type": "library",
  1741. "extra": {
  1742. "bamarni-bin": {
  1743. "bin-links": true,
  1744. "forward-command": false
  1745. }
  1746. },
  1747. "autoload": {
  1748. "files": [
  1749. "src/functions_include.php"
  1750. ],
  1751. "psr-4": {
  1752. "GuzzleHttp\\": "src/"
  1753. }
  1754. },
  1755. "notification-url": "https://packagist.org/downloads/",
  1756. "license": [
  1757. "MIT"
  1758. ],
  1759. "authors": [
  1760. {
  1761. "name": "Graham Campbell",
  1762. "email": "hello@gjcampbell.co.uk",
  1763. "homepage": "https://github.com/GrahamCampbell"
  1764. },
  1765. {
  1766. "name": "Michael Dowling",
  1767. "email": "mtdowling@gmail.com",
  1768. "homepage": "https://github.com/mtdowling"
  1769. },
  1770. {
  1771. "name": "Jeremy Lindblom",
  1772. "email": "jeremeamia@gmail.com",
  1773. "homepage": "https://github.com/jeremeamia"
  1774. },
  1775. {
  1776. "name": "George Mponos",
  1777. "email": "gmponos@gmail.com",
  1778. "homepage": "https://github.com/gmponos"
  1779. },
  1780. {
  1781. "name": "Tobias Nyholm",
  1782. "email": "tobias.nyholm@gmail.com",
  1783. "homepage": "https://github.com/Nyholm"
  1784. },
  1785. {
  1786. "name": "Márk Sági-Kazár",
  1787. "email": "mark.sagikazar@gmail.com",
  1788. "homepage": "https://github.com/sagikazarmark"
  1789. },
  1790. {
  1791. "name": "Tobias Schultze",
  1792. "email": "webmaster@tubo-world.de",
  1793. "homepage": "https://github.com/Tobion"
  1794. }
  1795. ],
  1796. "description": "Guzzle is a PHP HTTP client library",
  1797. "keywords": [
  1798. "client",
  1799. "curl",
  1800. "framework",
  1801. "http",
  1802. "http client",
  1803. "psr-18",
  1804. "psr-7",
  1805. "rest",
  1806. "web service"
  1807. ],
  1808. "support": {
  1809. "issues": "https://github.com/guzzle/guzzle/issues",
  1810. "source": "https://github.com/guzzle/guzzle/tree/7.10.0"
  1811. },
  1812. "funding": [
  1813. {
  1814. "url": "https://github.com/GrahamCampbell",
  1815. "type": "github"
  1816. },
  1817. {
  1818. "url": "https://github.com/Nyholm",
  1819. "type": "github"
  1820. },
  1821. {
  1822. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1823. "type": "tidelift"
  1824. }
  1825. ],
  1826. "time": "2025-08-23T22:36:01+00:00"
  1827. },
  1828. {
  1829. "name": "guzzlehttp/promises",
  1830. "version": "2.3.0",
  1831. "source": {
  1832. "type": "git",
  1833. "url": "https://github.com/guzzle/promises.git",
  1834. "reference": "481557b130ef3790cf82b713667b43030dc9c957"
  1835. },
  1836. "dist": {
  1837. "type": "zip",
  1838. "url": "https://api.github.com/repos/guzzle/promises/zipball/481557b130ef3790cf82b713667b43030dc9c957",
  1839. "reference": "481557b130ef3790cf82b713667b43030dc9c957",
  1840. "shasum": "",
  1841. "mirrors": [
  1842. {
  1843. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1844. "preferred": true
  1845. }
  1846. ]
  1847. },
  1848. "require": {
  1849. "php": "^7.2.5 || ^8.0"
  1850. },
  1851. "require-dev": {
  1852. "bamarni/composer-bin-plugin": "^1.8.2",
  1853. "phpunit/phpunit": "^8.5.44 || ^9.6.25"
  1854. },
  1855. "type": "library",
  1856. "extra": {
  1857. "bamarni-bin": {
  1858. "bin-links": true,
  1859. "forward-command": false
  1860. }
  1861. },
  1862. "autoload": {
  1863. "psr-4": {
  1864. "GuzzleHttp\\Promise\\": "src/"
  1865. }
  1866. },
  1867. "notification-url": "https://packagist.org/downloads/",
  1868. "license": [
  1869. "MIT"
  1870. ],
  1871. "authors": [
  1872. {
  1873. "name": "Graham Campbell",
  1874. "email": "hello@gjcampbell.co.uk",
  1875. "homepage": "https://github.com/GrahamCampbell"
  1876. },
  1877. {
  1878. "name": "Michael Dowling",
  1879. "email": "mtdowling@gmail.com",
  1880. "homepage": "https://github.com/mtdowling"
  1881. },
  1882. {
  1883. "name": "Tobias Nyholm",
  1884. "email": "tobias.nyholm@gmail.com",
  1885. "homepage": "https://github.com/Nyholm"
  1886. },
  1887. {
  1888. "name": "Tobias Schultze",
  1889. "email": "webmaster@tubo-world.de",
  1890. "homepage": "https://github.com/Tobion"
  1891. }
  1892. ],
  1893. "description": "Guzzle promises library",
  1894. "keywords": [
  1895. "promise"
  1896. ],
  1897. "support": {
  1898. "issues": "https://github.com/guzzle/promises/issues",
  1899. "source": "https://github.com/guzzle/promises/tree/2.3.0"
  1900. },
  1901. "funding": [
  1902. {
  1903. "url": "https://github.com/GrahamCampbell",
  1904. "type": "github"
  1905. },
  1906. {
  1907. "url": "https://github.com/Nyholm",
  1908. "type": "github"
  1909. },
  1910. {
  1911. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1912. "type": "tidelift"
  1913. }
  1914. ],
  1915. "time": "2025-08-22T14:34:08+00:00"
  1916. },
  1917. {
  1918. "name": "guzzlehttp/psr7",
  1919. "version": "2.8.0",
  1920. "source": {
  1921. "type": "git",
  1922. "url": "https://github.com/guzzle/psr7.git",
  1923. "reference": "21dc724a0583619cd1652f673303492272778051"
  1924. },
  1925. "dist": {
  1926. "type": "zip",
  1927. "url": "https://api.github.com/repos/guzzle/psr7/zipball/21dc724a0583619cd1652f673303492272778051",
  1928. "reference": "21dc724a0583619cd1652f673303492272778051",
  1929. "shasum": "",
  1930. "mirrors": [
  1931. {
  1932. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1933. "preferred": true
  1934. }
  1935. ]
  1936. },
  1937. "require": {
  1938. "php": "^7.2.5 || ^8.0",
  1939. "psr/http-factory": "^1.0",
  1940. "psr/http-message": "^1.1 || ^2.0",
  1941. "ralouphie/getallheaders": "^3.0"
  1942. },
  1943. "provide": {
  1944. "psr/http-factory-implementation": "1.0",
  1945. "psr/http-message-implementation": "1.0"
  1946. },
  1947. "require-dev": {
  1948. "bamarni/composer-bin-plugin": "^1.8.2",
  1949. "http-interop/http-factory-tests": "0.9.0",
  1950. "phpunit/phpunit": "^8.5.44 || ^9.6.25"
  1951. },
  1952. "suggest": {
  1953. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1954. },
  1955. "type": "library",
  1956. "extra": {
  1957. "bamarni-bin": {
  1958. "bin-links": true,
  1959. "forward-command": false
  1960. }
  1961. },
  1962. "autoload": {
  1963. "psr-4": {
  1964. "GuzzleHttp\\Psr7\\": "src/"
  1965. }
  1966. },
  1967. "notification-url": "https://packagist.org/downloads/",
  1968. "license": [
  1969. "MIT"
  1970. ],
  1971. "authors": [
  1972. {
  1973. "name": "Graham Campbell",
  1974. "email": "hello@gjcampbell.co.uk",
  1975. "homepage": "https://github.com/GrahamCampbell"
  1976. },
  1977. {
  1978. "name": "Michael Dowling",
  1979. "email": "mtdowling@gmail.com",
  1980. "homepage": "https://github.com/mtdowling"
  1981. },
  1982. {
  1983. "name": "George Mponos",
  1984. "email": "gmponos@gmail.com",
  1985. "homepage": "https://github.com/gmponos"
  1986. },
  1987. {
  1988. "name": "Tobias Nyholm",
  1989. "email": "tobias.nyholm@gmail.com",
  1990. "homepage": "https://github.com/Nyholm"
  1991. },
  1992. {
  1993. "name": "Márk Sági-Kazár",
  1994. "email": "mark.sagikazar@gmail.com",
  1995. "homepage": "https://github.com/sagikazarmark"
  1996. },
  1997. {
  1998. "name": "Tobias Schultze",
  1999. "email": "webmaster@tubo-world.de",
  2000. "homepage": "https://github.com/Tobion"
  2001. },
  2002. {
  2003. "name": "Márk Sági-Kazár",
  2004. "email": "mark.sagikazar@gmail.com",
  2005. "homepage": "https://sagikazarmark.hu"
  2006. }
  2007. ],
  2008. "description": "PSR-7 message implementation that also provides common utility methods",
  2009. "keywords": [
  2010. "http",
  2011. "message",
  2012. "psr-7",
  2013. "request",
  2014. "response",
  2015. "stream",
  2016. "uri",
  2017. "url"
  2018. ],
  2019. "support": {
  2020. "issues": "https://github.com/guzzle/psr7/issues",
  2021. "source": "https://github.com/guzzle/psr7/tree/2.8.0"
  2022. },
  2023. "funding": [
  2024. {
  2025. "url": "https://github.com/GrahamCampbell",
  2026. "type": "github"
  2027. },
  2028. {
  2029. "url": "https://github.com/Nyholm",
  2030. "type": "github"
  2031. },
  2032. {
  2033. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  2034. "type": "tidelift"
  2035. }
  2036. ],
  2037. "time": "2025-08-23T21:21:41+00:00"
  2038. },
  2039. {
  2040. "name": "hashids/hashids",
  2041. "version": "4.1.0",
  2042. "source": {
  2043. "type": "git",
  2044. "url": "https://github.com/vinkla/hashids.git",
  2045. "reference": "8cab111f78e0bd9c76953b082919fc9e251761be"
  2046. },
  2047. "dist": {
  2048. "type": "zip",
  2049. "url": "https://api.github.com/repos/vinkla/hashids/zipball/8cab111f78e0bd9c76953b082919fc9e251761be",
  2050. "reference": "8cab111f78e0bd9c76953b082919fc9e251761be",
  2051. "shasum": "",
  2052. "mirrors": [
  2053. {
  2054. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2055. "preferred": true
  2056. }
  2057. ]
  2058. },
  2059. "require": {
  2060. "ext-mbstring": "*",
  2061. "php": "^7.2 || ^8.0"
  2062. },
  2063. "require-dev": {
  2064. "phpunit/phpunit": "^8.0 || ^9.4",
  2065. "squizlabs/php_codesniffer": "^3.5"
  2066. },
  2067. "suggest": {
  2068. "ext-bcmath": "Required to use BC Math arbitrary precision mathematics (*).",
  2069. "ext-gmp": "Required to use GNU multiple precision mathematics (*)."
  2070. },
  2071. "type": "library",
  2072. "extra": {
  2073. "branch-alias": {
  2074. "dev-master": "4.1-dev"
  2075. }
  2076. },
  2077. "autoload": {
  2078. "psr-4": {
  2079. "Hashids\\": "src/"
  2080. }
  2081. },
  2082. "notification-url": "https://packagist.org/downloads/",
  2083. "license": [
  2084. "MIT"
  2085. ],
  2086. "authors": [
  2087. {
  2088. "name": "Ivan Akimov",
  2089. "email": "ivan@barreleye.com"
  2090. },
  2091. {
  2092. "name": "Vincent Klaiber",
  2093. "email": "hello@doubledip.se"
  2094. }
  2095. ],
  2096. "description": "Generate short, unique, non-sequential ids (like YouTube and Bitly) from numbers",
  2097. "homepage": "https://hashids.org/php",
  2098. "keywords": [
  2099. "bitly",
  2100. "decode",
  2101. "encode",
  2102. "hash",
  2103. "hashid",
  2104. "hashids",
  2105. "ids",
  2106. "obfuscate",
  2107. "youtube"
  2108. ],
  2109. "support": {
  2110. "issues": "https://github.com/vinkla/hashids/issues",
  2111. "source": "https://github.com/vinkla/hashids/tree/4.1.0"
  2112. },
  2113. "time": "2020-11-26T19:24:33+00:00"
  2114. },
  2115. {
  2116. "name": "intervention/image",
  2117. "version": "2.7.2",
  2118. "source": {
  2119. "type": "git",
  2120. "url": "https://github.com/Intervention/image.git",
  2121. "reference": "04be355f8d6734c826045d02a1079ad658322dad"
  2122. },
  2123. "dist": {
  2124. "type": "zip",
  2125. "url": "https://api.github.com/repos/Intervention/image/zipball/04be355f8d6734c826045d02a1079ad658322dad",
  2126. "reference": "04be355f8d6734c826045d02a1079ad658322dad",
  2127. "shasum": "",
  2128. "mirrors": [
  2129. {
  2130. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2131. "preferred": true
  2132. }
  2133. ]
  2134. },
  2135. "require": {
  2136. "ext-fileinfo": "*",
  2137. "guzzlehttp/psr7": "~1.1 || ^2.0",
  2138. "php": ">=5.4.0"
  2139. },
  2140. "require-dev": {
  2141. "mockery/mockery": "~0.9.2",
  2142. "phpunit/phpunit": "^4.8 || ^5.7 || ^7.5.15"
  2143. },
  2144. "suggest": {
  2145. "ext-gd": "to use GD library based image processing.",
  2146. "ext-imagick": "to use Imagick based image processing.",
  2147. "intervention/imagecache": "Caching extension for the Intervention Image library"
  2148. },
  2149. "type": "library",
  2150. "extra": {
  2151. "laravel": {
  2152. "aliases": {
  2153. "Image": "Intervention\\Image\\Facades\\Image"
  2154. },
  2155. "providers": [
  2156. "Intervention\\Image\\ImageServiceProvider"
  2157. ]
  2158. },
  2159. "branch-alias": {
  2160. "dev-master": "2.4-dev"
  2161. }
  2162. },
  2163. "autoload": {
  2164. "psr-4": {
  2165. "Intervention\\Image\\": "src/Intervention/Image"
  2166. }
  2167. },
  2168. "notification-url": "https://packagist.org/downloads/",
  2169. "license": [
  2170. "MIT"
  2171. ],
  2172. "authors": [
  2173. {
  2174. "name": "Oliver Vogel",
  2175. "email": "oliver@intervention.io",
  2176. "homepage": "https://intervention.io/"
  2177. }
  2178. ],
  2179. "description": "Image handling and manipulation library with support for Laravel integration",
  2180. "homepage": "http://image.intervention.io/",
  2181. "keywords": [
  2182. "gd",
  2183. "image",
  2184. "imagick",
  2185. "laravel",
  2186. "thumbnail",
  2187. "watermark"
  2188. ],
  2189. "support": {
  2190. "issues": "https://github.com/Intervention/image/issues",
  2191. "source": "https://github.com/Intervention/image/tree/2.7.2"
  2192. },
  2193. "funding": [
  2194. {
  2195. "url": "https://paypal.me/interventionio",
  2196. "type": "custom"
  2197. },
  2198. {
  2199. "url": "https://github.com/Intervention",
  2200. "type": "github"
  2201. }
  2202. ],
  2203. "time": "2022-05-21T17:30:32+00:00"
  2204. },
  2205. {
  2206. "name": "ixudra/curl",
  2207. "version": "6.22.1",
  2208. "source": {
  2209. "type": "git",
  2210. "url": "https://github.com/ixudra/curl.git",
  2211. "reference": "0b2cc89ed5eb91d617295e7e745f3acd3ab47180"
  2212. },
  2213. "dist": {
  2214. "type": "zip",
  2215. "url": "https://api.github.com/repos/ixudra/curl/zipball/0b2cc89ed5eb91d617295e7e745f3acd3ab47180",
  2216. "reference": "0b2cc89ed5eb91d617295e7e745f3acd3ab47180",
  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. "ext-curl": "*",
  2227. "illuminate/support": ">=4.0",
  2228. "php": ">=5.4.0"
  2229. },
  2230. "type": "library",
  2231. "extra": {
  2232. "laravel": {
  2233. "providers": [
  2234. "Ixudra\\Curl\\CurlServiceProvider"
  2235. ],
  2236. "aliases": {
  2237. "Curl": "Ixudra\\Curl\\Facades\\Curl"
  2238. }
  2239. }
  2240. },
  2241. "autoload": {
  2242. "psr-4": {
  2243. "Ixudra\\Curl\\": "src/"
  2244. }
  2245. },
  2246. "notification-url": "https://packagist.org/downloads/",
  2247. "license": [
  2248. "MIT"
  2249. ],
  2250. "authors": [
  2251. {
  2252. "name": "Jan Oris",
  2253. "email": "jan.oris@ixudra.be"
  2254. }
  2255. ],
  2256. "description": "Custom PHP Curl library for the Laravel framework - developed by Ixudra",
  2257. "homepage": "http://ixudra.be",
  2258. "keywords": [
  2259. "Ixudra",
  2260. "curl",
  2261. "laravel"
  2262. ],
  2263. "support": {
  2264. "issues": "https://github.com/ixudra/curl/issues",
  2265. "source": "https://github.com/ixudra/curl/tree/6.22.1"
  2266. },
  2267. "time": "2022-07-31T09:58:52+00:00"
  2268. },
  2269. {
  2270. "name": "laravel/framework",
  2271. "version": "v8.83.29",
  2272. "source": {
  2273. "type": "git",
  2274. "url": "https://github.com/laravel/framework.git",
  2275. "reference": "d841a226a50c715431952a10260ba4fac9e91cc4"
  2276. },
  2277. "dist": {
  2278. "type": "zip",
  2279. "url": "https://api.github.com/repos/laravel/framework/zipball/d841a226a50c715431952a10260ba4fac9e91cc4",
  2280. "reference": "d841a226a50c715431952a10260ba4fac9e91cc4",
  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. "doctrine/inflector": "^1.4|^2.0",
  2291. "dragonmantank/cron-expression": "^3.0.2",
  2292. "egulias/email-validator": "^2.1.10",
  2293. "ext-json": "*",
  2294. "ext-mbstring": "*",
  2295. "ext-openssl": "*",
  2296. "laravel/serializable-closure": "^1.0",
  2297. "league/commonmark": "^1.3|^2.0.2",
  2298. "league/flysystem": "^1.1",
  2299. "monolog/monolog": "^2.0",
  2300. "nesbot/carbon": "^2.53.1",
  2301. "opis/closure": "^3.6",
  2302. "php": "^7.3|^8.0",
  2303. "psr/container": "^1.0",
  2304. "psr/log": "^1.0|^2.0",
  2305. "psr/simple-cache": "^1.0",
  2306. "ramsey/uuid": "^4.2.2",
  2307. "swiftmailer/swiftmailer": "^6.3",
  2308. "symfony/console": "^5.4",
  2309. "symfony/error-handler": "^5.4",
  2310. "symfony/finder": "^5.4",
  2311. "symfony/http-foundation": "^5.4",
  2312. "symfony/http-kernel": "^5.4",
  2313. "symfony/mime": "^5.4",
  2314. "symfony/process": "^5.4",
  2315. "symfony/routing": "^5.4",
  2316. "symfony/var-dumper": "^5.4",
  2317. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  2318. "vlucas/phpdotenv": "^5.4.1",
  2319. "voku/portable-ascii": "^1.6.1"
  2320. },
  2321. "conflict": {
  2322. "tightenco/collect": "<5.5.33"
  2323. },
  2324. "provide": {
  2325. "psr/container-implementation": "1.0",
  2326. "psr/simple-cache-implementation": "1.0"
  2327. },
  2328. "replace": {
  2329. "illuminate/auth": "self.version",
  2330. "illuminate/broadcasting": "self.version",
  2331. "illuminate/bus": "self.version",
  2332. "illuminate/cache": "self.version",
  2333. "illuminate/collections": "self.version",
  2334. "illuminate/config": "self.version",
  2335. "illuminate/console": "self.version",
  2336. "illuminate/container": "self.version",
  2337. "illuminate/contracts": "self.version",
  2338. "illuminate/cookie": "self.version",
  2339. "illuminate/database": "self.version",
  2340. "illuminate/encryption": "self.version",
  2341. "illuminate/events": "self.version",
  2342. "illuminate/filesystem": "self.version",
  2343. "illuminate/hashing": "self.version",
  2344. "illuminate/http": "self.version",
  2345. "illuminate/log": "self.version",
  2346. "illuminate/macroable": "self.version",
  2347. "illuminate/mail": "self.version",
  2348. "illuminate/notifications": "self.version",
  2349. "illuminate/pagination": "self.version",
  2350. "illuminate/pipeline": "self.version",
  2351. "illuminate/queue": "self.version",
  2352. "illuminate/redis": "self.version",
  2353. "illuminate/routing": "self.version",
  2354. "illuminate/session": "self.version",
  2355. "illuminate/support": "self.version",
  2356. "illuminate/testing": "self.version",
  2357. "illuminate/translation": "self.version",
  2358. "illuminate/validation": "self.version",
  2359. "illuminate/view": "self.version"
  2360. },
  2361. "require-dev": {
  2362. "aws/aws-sdk-php": "^3.198.1",
  2363. "doctrine/dbal": "^2.13.3|^3.1.4",
  2364. "filp/whoops": "^2.14.3",
  2365. "guzzlehttp/guzzle": "^6.5.5|^7.0.1",
  2366. "league/flysystem-cached-adapter": "^1.0",
  2367. "mockery/mockery": "^1.4.4",
  2368. "orchestra/testbench-core": "^6.27",
  2369. "pda/pheanstalk": "^4.0",
  2370. "phpunit/phpunit": "^8.5.19|^9.5.8",
  2371. "predis/predis": "^1.1.9",
  2372. "symfony/cache": "^5.4"
  2373. },
  2374. "suggest": {
  2375. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  2376. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.198.1).",
  2377. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  2378. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
  2379. "ext-bcmath": "Required to use the multiple_of validation rule.",
  2380. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2381. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  2382. "ext-memcached": "Required to use the memcache cache driver.",
  2383. "ext-pcntl": "Required to use all features of the queue worker.",
  2384. "ext-posix": "Required to use all features of the queue worker.",
  2385. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  2386. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2387. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  2388. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.5.5|^7.0.1).",
  2389. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  2390. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  2391. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  2392. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  2393. "mockery/mockery": "Required to use mocking (^1.4.4).",
  2394. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  2395. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  2396. "phpunit/phpunit": "Required to use assertions and run tests (^8.5.19|^9.5.8).",
  2397. "predis/predis": "Required to use the predis connector (^1.1.9).",
  2398. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  2399. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0|^5.0|^6.0|^7.0).",
  2400. "symfony/cache": "Required to PSR-6 cache bridge (^5.4).",
  2401. "symfony/filesystem": "Required to enable support for relative symbolic links (^5.4).",
  2402. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  2403. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  2404. },
  2405. "type": "library",
  2406. "extra": {
  2407. "branch-alias": {
  2408. "dev-master": "8.x-dev"
  2409. }
  2410. },
  2411. "autoload": {
  2412. "files": [
  2413. "src/Illuminate/Collections/helpers.php",
  2414. "src/Illuminate/Events/functions.php",
  2415. "src/Illuminate/Foundation/helpers.php",
  2416. "src/Illuminate/Support/helpers.php"
  2417. ],
  2418. "psr-4": {
  2419. "Illuminate\\": "src/Illuminate/",
  2420. "Illuminate\\Support\\": [
  2421. "src/Illuminate/Macroable/",
  2422. "src/Illuminate/Collections/"
  2423. ]
  2424. }
  2425. },
  2426. "notification-url": "https://packagist.org/downloads/",
  2427. "license": [
  2428. "MIT"
  2429. ],
  2430. "authors": [
  2431. {
  2432. "name": "Taylor Otwell",
  2433. "email": "taylor@laravel.com"
  2434. }
  2435. ],
  2436. "description": "The Laravel Framework.",
  2437. "homepage": "https://laravel.com",
  2438. "keywords": [
  2439. "framework",
  2440. "laravel"
  2441. ],
  2442. "support": {
  2443. "issues": "https://github.com/laravel/framework/issues",
  2444. "source": "https://github.com/laravel/framework"
  2445. },
  2446. "time": "2024-11-20T15:55:41+00:00"
  2447. },
  2448. {
  2449. "name": "laravel/sanctum",
  2450. "version": "v2.15.1",
  2451. "source": {
  2452. "type": "git",
  2453. "url": "https://github.com/laravel/sanctum.git",
  2454. "reference": "31fbe6f85aee080c4dc2f9b03dc6dd5d0ee72473"
  2455. },
  2456. "dist": {
  2457. "type": "zip",
  2458. "url": "https://api.github.com/repos/laravel/sanctum/zipball/31fbe6f85aee080c4dc2f9b03dc6dd5d0ee72473",
  2459. "reference": "31fbe6f85aee080c4dc2f9b03dc6dd5d0ee72473",
  2460. "shasum": "",
  2461. "mirrors": [
  2462. {
  2463. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2464. "preferred": true
  2465. }
  2466. ]
  2467. },
  2468. "require": {
  2469. "ext-json": "*",
  2470. "illuminate/console": "^6.9|^7.0|^8.0|^9.0",
  2471. "illuminate/contracts": "^6.9|^7.0|^8.0|^9.0",
  2472. "illuminate/database": "^6.9|^7.0|^8.0|^9.0",
  2473. "illuminate/support": "^6.9|^7.0|^8.0|^9.0",
  2474. "php": "^7.2|^8.0"
  2475. },
  2476. "require-dev": {
  2477. "mockery/mockery": "^1.0",
  2478. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0",
  2479. "phpunit/phpunit": "^8.0|^9.3"
  2480. },
  2481. "type": "library",
  2482. "extra": {
  2483. "laravel": {
  2484. "providers": [
  2485. "Laravel\\Sanctum\\SanctumServiceProvider"
  2486. ]
  2487. },
  2488. "branch-alias": {
  2489. "dev-master": "2.x-dev"
  2490. }
  2491. },
  2492. "autoload": {
  2493. "psr-4": {
  2494. "Laravel\\Sanctum\\": "src/"
  2495. }
  2496. },
  2497. "notification-url": "https://packagist.org/downloads/",
  2498. "license": [
  2499. "MIT"
  2500. ],
  2501. "authors": [
  2502. {
  2503. "name": "Taylor Otwell",
  2504. "email": "taylor@laravel.com"
  2505. }
  2506. ],
  2507. "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.",
  2508. "keywords": [
  2509. "auth",
  2510. "laravel",
  2511. "sanctum"
  2512. ],
  2513. "support": {
  2514. "issues": "https://github.com/laravel/sanctum/issues",
  2515. "source": "https://github.com/laravel/sanctum"
  2516. },
  2517. "time": "2022-04-08T13:39:49+00:00"
  2518. },
  2519. {
  2520. "name": "laravel/serializable-closure",
  2521. "version": "v1.3.7",
  2522. "source": {
  2523. "type": "git",
  2524. "url": "https://github.com/laravel/serializable-closure.git",
  2525. "reference": "4f48ade902b94323ca3be7646db16209ec76be3d"
  2526. },
  2527. "dist": {
  2528. "type": "zip",
  2529. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/4f48ade902b94323ca3be7646db16209ec76be3d",
  2530. "reference": "4f48ade902b94323ca3be7646db16209ec76be3d",
  2531. "shasum": "",
  2532. "mirrors": [
  2533. {
  2534. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2535. "preferred": true
  2536. }
  2537. ]
  2538. },
  2539. "require": {
  2540. "php": "^7.3|^8.0"
  2541. },
  2542. "require-dev": {
  2543. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  2544. "nesbot/carbon": "^2.61|^3.0",
  2545. "pestphp/pest": "^1.21.3",
  2546. "phpstan/phpstan": "^1.8.2",
  2547. "symfony/var-dumper": "^5.4.11|^6.2.0|^7.0.0"
  2548. },
  2549. "type": "library",
  2550. "extra": {
  2551. "branch-alias": {
  2552. "dev-master": "1.x-dev"
  2553. }
  2554. },
  2555. "autoload": {
  2556. "psr-4": {
  2557. "Laravel\\SerializableClosure\\": "src/"
  2558. }
  2559. },
  2560. "notification-url": "https://packagist.org/downloads/",
  2561. "license": [
  2562. "MIT"
  2563. ],
  2564. "authors": [
  2565. {
  2566. "name": "Taylor Otwell",
  2567. "email": "taylor@laravel.com"
  2568. },
  2569. {
  2570. "name": "Nuno Maduro",
  2571. "email": "nuno@laravel.com"
  2572. }
  2573. ],
  2574. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  2575. "keywords": [
  2576. "closure",
  2577. "laravel",
  2578. "serializable"
  2579. ],
  2580. "support": {
  2581. "issues": "https://github.com/laravel/serializable-closure/issues",
  2582. "source": "https://github.com/laravel/serializable-closure"
  2583. },
  2584. "time": "2024-11-14T18:34:49+00:00"
  2585. },
  2586. {
  2587. "name": "laravel/tinker",
  2588. "version": "v2.10.0",
  2589. "source": {
  2590. "type": "git",
  2591. "url": "https://github.com/laravel/tinker.git",
  2592. "reference": "ba4d51eb56de7711b3a37d63aa0643e99a339ae5"
  2593. },
  2594. "dist": {
  2595. "type": "zip",
  2596. "url": "https://api.github.com/repos/laravel/tinker/zipball/ba4d51eb56de7711b3a37d63aa0643e99a339ae5",
  2597. "reference": "ba4d51eb56de7711b3a37d63aa0643e99a339ae5",
  2598. "shasum": "",
  2599. "mirrors": [
  2600. {
  2601. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2602. "preferred": true
  2603. }
  2604. ]
  2605. },
  2606. "require": {
  2607. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2608. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2609. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2610. "php": "^7.2.5|^8.0",
  2611. "psy/psysh": "^0.11.1|^0.12.0",
  2612. "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0"
  2613. },
  2614. "require-dev": {
  2615. "mockery/mockery": "~1.3.3|^1.4.2",
  2616. "phpstan/phpstan": "^1.10",
  2617. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2618. },
  2619. "suggest": {
  2620. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0)."
  2621. },
  2622. "type": "library",
  2623. "extra": {
  2624. "laravel": {
  2625. "providers": [
  2626. "Laravel\\Tinker\\TinkerServiceProvider"
  2627. ]
  2628. }
  2629. },
  2630. "autoload": {
  2631. "psr-4": {
  2632. "Laravel\\Tinker\\": "src/"
  2633. }
  2634. },
  2635. "notification-url": "https://packagist.org/downloads/",
  2636. "license": [
  2637. "MIT"
  2638. ],
  2639. "authors": [
  2640. {
  2641. "name": "Taylor Otwell",
  2642. "email": "taylor@laravel.com"
  2643. }
  2644. ],
  2645. "description": "Powerful REPL for the Laravel framework.",
  2646. "keywords": [
  2647. "REPL",
  2648. "Tinker",
  2649. "laravel",
  2650. "psysh"
  2651. ],
  2652. "support": {
  2653. "issues": "https://github.com/laravel/tinker/issues",
  2654. "source": "https://github.com/laravel/tinker/tree/v2.10.0"
  2655. },
  2656. "time": "2024-09-23T13:32:56+00:00"
  2657. },
  2658. {
  2659. "name": "league/commonmark",
  2660. "version": "2.6.0",
  2661. "source": {
  2662. "type": "git",
  2663. "url": "https://github.com/thephpleague/commonmark.git",
  2664. "reference": "d150f911e0079e90ae3c106734c93137c184f932"
  2665. },
  2666. "dist": {
  2667. "type": "zip",
  2668. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/d150f911e0079e90ae3c106734c93137c184f932",
  2669. "reference": "d150f911e0079e90ae3c106734c93137c184f932",
  2670. "shasum": "",
  2671. "mirrors": [
  2672. {
  2673. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2674. "preferred": true
  2675. }
  2676. ]
  2677. },
  2678. "require": {
  2679. "ext-mbstring": "*",
  2680. "league/config": "^1.1.1",
  2681. "php": "^7.4 || ^8.0",
  2682. "psr/event-dispatcher": "^1.0",
  2683. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  2684. "symfony/polyfill-php80": "^1.16"
  2685. },
  2686. "require-dev": {
  2687. "cebe/markdown": "^1.0",
  2688. "commonmark/cmark": "0.31.1",
  2689. "commonmark/commonmark.js": "0.31.1",
  2690. "composer/package-versions-deprecated": "^1.8",
  2691. "embed/embed": "^4.4",
  2692. "erusev/parsedown": "^1.0",
  2693. "ext-json": "*",
  2694. "github/gfm": "0.29.0",
  2695. "michelf/php-markdown": "^1.4 || ^2.0",
  2696. "nyholm/psr7": "^1.5",
  2697. "phpstan/phpstan": "^1.8.2",
  2698. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  2699. "scrutinizer/ocular": "^1.8.1",
  2700. "symfony/finder": "^5.3 | ^6.0 | ^7.0",
  2701. "symfony/process": "^5.4 | ^6.0 | ^7.0",
  2702. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 | ^7.0",
  2703. "unleashedtech/php-coding-standard": "^3.1.1",
  2704. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  2705. },
  2706. "suggest": {
  2707. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  2708. },
  2709. "type": "library",
  2710. "extra": {
  2711. "branch-alias": {
  2712. "dev-main": "2.7-dev"
  2713. }
  2714. },
  2715. "autoload": {
  2716. "psr-4": {
  2717. "League\\CommonMark\\": "src"
  2718. }
  2719. },
  2720. "notification-url": "https://packagist.org/downloads/",
  2721. "license": [
  2722. "BSD-3-Clause"
  2723. ],
  2724. "authors": [
  2725. {
  2726. "name": "Colin O'Dell",
  2727. "email": "colinodell@gmail.com",
  2728. "homepage": "https://www.colinodell.com",
  2729. "role": "Lead Developer"
  2730. }
  2731. ],
  2732. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  2733. "homepage": "https://commonmark.thephpleague.com",
  2734. "keywords": [
  2735. "commonmark",
  2736. "flavored",
  2737. "gfm",
  2738. "github",
  2739. "github-flavored",
  2740. "markdown",
  2741. "md",
  2742. "parser"
  2743. ],
  2744. "support": {
  2745. "docs": "https://commonmark.thephpleague.com/",
  2746. "forum": "https://github.com/thephpleague/commonmark/discussions",
  2747. "issues": "https://github.com/thephpleague/commonmark/issues",
  2748. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2749. "source": "https://github.com/thephpleague/commonmark"
  2750. },
  2751. "funding": [
  2752. {
  2753. "url": "https://www.colinodell.com/sponsor",
  2754. "type": "custom"
  2755. },
  2756. {
  2757. "url": "https://www.paypal.me/colinpodell/10.00",
  2758. "type": "custom"
  2759. },
  2760. {
  2761. "url": "https://github.com/colinodell",
  2762. "type": "github"
  2763. },
  2764. {
  2765. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2766. "type": "tidelift"
  2767. }
  2768. ],
  2769. "time": "2024-12-07T15:34:16+00:00"
  2770. },
  2771. {
  2772. "name": "league/config",
  2773. "version": "v1.2.0",
  2774. "source": {
  2775. "type": "git",
  2776. "url": "https://github.com/thephpleague/config.git",
  2777. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  2778. },
  2779. "dist": {
  2780. "type": "zip",
  2781. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2782. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2783. "shasum": "",
  2784. "mirrors": [
  2785. {
  2786. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2787. "preferred": true
  2788. }
  2789. ]
  2790. },
  2791. "require": {
  2792. "dflydev/dot-access-data": "^3.0.1",
  2793. "nette/schema": "^1.2",
  2794. "php": "^7.4 || ^8.0"
  2795. },
  2796. "require-dev": {
  2797. "phpstan/phpstan": "^1.8.2",
  2798. "phpunit/phpunit": "^9.5.5",
  2799. "scrutinizer/ocular": "^1.8.1",
  2800. "unleashedtech/php-coding-standard": "^3.1",
  2801. "vimeo/psalm": "^4.7.3"
  2802. },
  2803. "type": "library",
  2804. "extra": {
  2805. "branch-alias": {
  2806. "dev-main": "1.2-dev"
  2807. }
  2808. },
  2809. "autoload": {
  2810. "psr-4": {
  2811. "League\\Config\\": "src"
  2812. }
  2813. },
  2814. "notification-url": "https://packagist.org/downloads/",
  2815. "license": [
  2816. "BSD-3-Clause"
  2817. ],
  2818. "authors": [
  2819. {
  2820. "name": "Colin O'Dell",
  2821. "email": "colinodell@gmail.com",
  2822. "homepage": "https://www.colinodell.com",
  2823. "role": "Lead Developer"
  2824. }
  2825. ],
  2826. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  2827. "homepage": "https://config.thephpleague.com",
  2828. "keywords": [
  2829. "array",
  2830. "config",
  2831. "configuration",
  2832. "dot",
  2833. "dot-access",
  2834. "nested",
  2835. "schema"
  2836. ],
  2837. "support": {
  2838. "docs": "https://config.thephpleague.com/",
  2839. "issues": "https://github.com/thephpleague/config/issues",
  2840. "rss": "https://github.com/thephpleague/config/releases.atom",
  2841. "source": "https://github.com/thephpleague/config"
  2842. },
  2843. "funding": [
  2844. {
  2845. "url": "https://www.colinodell.com/sponsor",
  2846. "type": "custom"
  2847. },
  2848. {
  2849. "url": "https://www.paypal.me/colinpodell/10.00",
  2850. "type": "custom"
  2851. },
  2852. {
  2853. "url": "https://github.com/colinodell",
  2854. "type": "github"
  2855. }
  2856. ],
  2857. "time": "2022-12-11T20:36:23+00:00"
  2858. },
  2859. {
  2860. "name": "league/flysystem",
  2861. "version": "1.1.10",
  2862. "source": {
  2863. "type": "git",
  2864. "url": "https://github.com/thephpleague/flysystem.git",
  2865. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1"
  2866. },
  2867. "dist": {
  2868. "type": "zip",
  2869. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/3239285c825c152bcc315fe0e87d6b55f5972ed1",
  2870. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1",
  2871. "shasum": "",
  2872. "mirrors": [
  2873. {
  2874. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2875. "preferred": true
  2876. }
  2877. ]
  2878. },
  2879. "require": {
  2880. "ext-fileinfo": "*",
  2881. "league/mime-type-detection": "^1.3",
  2882. "php": "^7.2.5 || ^8.0"
  2883. },
  2884. "conflict": {
  2885. "league/flysystem-sftp": "<1.0.6"
  2886. },
  2887. "require-dev": {
  2888. "phpspec/prophecy": "^1.11.1",
  2889. "phpunit/phpunit": "^8.5.8"
  2890. },
  2891. "suggest": {
  2892. "ext-ftp": "Allows you to use FTP server storage",
  2893. "ext-openssl": "Allows you to use FTPS server storage",
  2894. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2895. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2896. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2897. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2898. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2899. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2900. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2901. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2902. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2903. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2904. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2905. },
  2906. "type": "library",
  2907. "extra": {
  2908. "branch-alias": {
  2909. "dev-master": "1.1-dev"
  2910. }
  2911. },
  2912. "autoload": {
  2913. "psr-4": {
  2914. "League\\Flysystem\\": "src/"
  2915. }
  2916. },
  2917. "notification-url": "https://packagist.org/downloads/",
  2918. "license": [
  2919. "MIT"
  2920. ],
  2921. "authors": [
  2922. {
  2923. "name": "Frank de Jonge",
  2924. "email": "info@frenky.net"
  2925. }
  2926. ],
  2927. "description": "Filesystem abstraction: Many filesystems, one API.",
  2928. "keywords": [
  2929. "Cloud Files",
  2930. "WebDAV",
  2931. "abstraction",
  2932. "aws",
  2933. "cloud",
  2934. "copy.com",
  2935. "dropbox",
  2936. "file systems",
  2937. "files",
  2938. "filesystem",
  2939. "filesystems",
  2940. "ftp",
  2941. "rackspace",
  2942. "remote",
  2943. "s3",
  2944. "sftp",
  2945. "storage"
  2946. ],
  2947. "support": {
  2948. "issues": "https://github.com/thephpleague/flysystem/issues",
  2949. "source": "https://github.com/thephpleague/flysystem/tree/1.1.10"
  2950. },
  2951. "funding": [
  2952. {
  2953. "url": "https://offset.earth/frankdejonge",
  2954. "type": "other"
  2955. }
  2956. ],
  2957. "time": "2022-10-04T09:16:37+00:00"
  2958. },
  2959. {
  2960. "name": "league/mime-type-detection",
  2961. "version": "1.15.0",
  2962. "source": {
  2963. "type": "git",
  2964. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2965. "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301"
  2966. },
  2967. "dist": {
  2968. "type": "zip",
  2969. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301",
  2970. "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301",
  2971. "shasum": "",
  2972. "mirrors": [
  2973. {
  2974. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2975. "preferred": true
  2976. }
  2977. ]
  2978. },
  2979. "require": {
  2980. "ext-fileinfo": "*",
  2981. "php": "^7.4 || ^8.0"
  2982. },
  2983. "require-dev": {
  2984. "friendsofphp/php-cs-fixer": "^3.2",
  2985. "phpstan/phpstan": "^0.12.68",
  2986. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  2987. },
  2988. "type": "library",
  2989. "autoload": {
  2990. "psr-4": {
  2991. "League\\MimeTypeDetection\\": "src"
  2992. }
  2993. },
  2994. "notification-url": "https://packagist.org/downloads/",
  2995. "license": [
  2996. "MIT"
  2997. ],
  2998. "authors": [
  2999. {
  3000. "name": "Frank de Jonge",
  3001. "email": "info@frankdejonge.nl"
  3002. }
  3003. ],
  3004. "description": "Mime-type detection for Flysystem",
  3005. "support": {
  3006. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  3007. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.15.0"
  3008. },
  3009. "funding": [
  3010. {
  3011. "url": "https://github.com/frankdejonge",
  3012. "type": "github"
  3013. },
  3014. {
  3015. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  3016. "type": "tidelift"
  3017. }
  3018. ],
  3019. "time": "2024-01-28T23:22:08+00:00"
  3020. },
  3021. {
  3022. "name": "maennchen/zipstream-php",
  3023. "version": "2.4.0",
  3024. "source": {
  3025. "type": "git",
  3026. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  3027. "reference": "3fa72e4c71a43f9e9118752a5c90e476a8dc9eb3"
  3028. },
  3029. "dist": {
  3030. "type": "zip",
  3031. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/3fa72e4c71a43f9e9118752a5c90e476a8dc9eb3",
  3032. "reference": "3fa72e4c71a43f9e9118752a5c90e476a8dc9eb3",
  3033. "shasum": "",
  3034. "mirrors": [
  3035. {
  3036. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3037. "preferred": true
  3038. }
  3039. ]
  3040. },
  3041. "require": {
  3042. "ext-mbstring": "*",
  3043. "myclabs/php-enum": "^1.5",
  3044. "php": "^8.0",
  3045. "psr/http-message": "^1.0"
  3046. },
  3047. "require-dev": {
  3048. "ext-zip": "*",
  3049. "friendsofphp/php-cs-fixer": "^3.9",
  3050. "guzzlehttp/guzzle": "^6.5.3 || ^7.2.0",
  3051. "mikey179/vfsstream": "^1.6",
  3052. "php-coveralls/php-coveralls": "^2.4",
  3053. "phpunit/phpunit": "^8.5.8 || ^9.4.2",
  3054. "vimeo/psalm": "^5.0"
  3055. },
  3056. "type": "library",
  3057. "autoload": {
  3058. "psr-4": {
  3059. "ZipStream\\": "src/"
  3060. }
  3061. },
  3062. "notification-url": "https://packagist.org/downloads/",
  3063. "license": [
  3064. "MIT"
  3065. ],
  3066. "authors": [
  3067. {
  3068. "name": "Paul Duncan",
  3069. "email": "pabs@pablotron.org"
  3070. },
  3071. {
  3072. "name": "Jonatan Männchen",
  3073. "email": "jonatan@maennchen.ch"
  3074. },
  3075. {
  3076. "name": "Jesse Donat",
  3077. "email": "donatj@gmail.com"
  3078. },
  3079. {
  3080. "name": "András Kolesár",
  3081. "email": "kolesar@kolesar.hu"
  3082. }
  3083. ],
  3084. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  3085. "keywords": [
  3086. "stream",
  3087. "zip"
  3088. ],
  3089. "support": {
  3090. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  3091. "source": "https://github.com/maennchen/ZipStream-PHP/tree/2.4.0"
  3092. },
  3093. "funding": [
  3094. {
  3095. "url": "https://github.com/maennchen",
  3096. "type": "github"
  3097. },
  3098. {
  3099. "url": "https://opencollective.com/zipstream",
  3100. "type": "open_collective"
  3101. }
  3102. ],
  3103. "time": "2022-12-08T12:29:14+00:00"
  3104. },
  3105. {
  3106. "name": "markbaker/complex",
  3107. "version": "3.0.2",
  3108. "source": {
  3109. "type": "git",
  3110. "url": "https://github.com/MarkBaker/PHPComplex.git",
  3111. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9"
  3112. },
  3113. "dist": {
  3114. "type": "zip",
  3115. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  3116. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  3117. "shasum": "",
  3118. "mirrors": [
  3119. {
  3120. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3121. "preferred": true
  3122. }
  3123. ]
  3124. },
  3125. "require": {
  3126. "php": "^7.2 || ^8.0"
  3127. },
  3128. "require-dev": {
  3129. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  3130. "phpcompatibility/php-compatibility": "^9.3",
  3131. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  3132. "squizlabs/php_codesniffer": "^3.7"
  3133. },
  3134. "type": "library",
  3135. "autoload": {
  3136. "psr-4": {
  3137. "Complex\\": "classes/src/"
  3138. }
  3139. },
  3140. "notification-url": "https://packagist.org/downloads/",
  3141. "license": [
  3142. "MIT"
  3143. ],
  3144. "authors": [
  3145. {
  3146. "name": "Mark Baker",
  3147. "email": "mark@lange.demon.co.uk"
  3148. }
  3149. ],
  3150. "description": "PHP Class for working with complex numbers",
  3151. "homepage": "https://github.com/MarkBaker/PHPComplex",
  3152. "keywords": [
  3153. "complex",
  3154. "mathematics"
  3155. ],
  3156. "support": {
  3157. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  3158. "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.2"
  3159. },
  3160. "time": "2022-12-06T16:21:08+00:00"
  3161. },
  3162. {
  3163. "name": "markbaker/matrix",
  3164. "version": "3.0.1",
  3165. "source": {
  3166. "type": "git",
  3167. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  3168. "reference": "728434227fe21be27ff6d86621a1b13107a2562c"
  3169. },
  3170. "dist": {
  3171. "type": "zip",
  3172. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/728434227fe21be27ff6d86621a1b13107a2562c",
  3173. "reference": "728434227fe21be27ff6d86621a1b13107a2562c",
  3174. "shasum": "",
  3175. "mirrors": [
  3176. {
  3177. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3178. "preferred": true
  3179. }
  3180. ]
  3181. },
  3182. "require": {
  3183. "php": "^7.1 || ^8.0"
  3184. },
  3185. "require-dev": {
  3186. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  3187. "phpcompatibility/php-compatibility": "^9.3",
  3188. "phpdocumentor/phpdocumentor": "2.*",
  3189. "phploc/phploc": "^4.0",
  3190. "phpmd/phpmd": "2.*",
  3191. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  3192. "sebastian/phpcpd": "^4.0",
  3193. "squizlabs/php_codesniffer": "^3.7"
  3194. },
  3195. "type": "library",
  3196. "autoload": {
  3197. "psr-4": {
  3198. "Matrix\\": "classes/src/"
  3199. }
  3200. },
  3201. "notification-url": "https://packagist.org/downloads/",
  3202. "license": [
  3203. "MIT"
  3204. ],
  3205. "authors": [
  3206. {
  3207. "name": "Mark Baker",
  3208. "email": "mark@demon-angel.eu"
  3209. }
  3210. ],
  3211. "description": "PHP Class for working with matrices",
  3212. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  3213. "keywords": [
  3214. "mathematics",
  3215. "matrix",
  3216. "vector"
  3217. ],
  3218. "support": {
  3219. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  3220. "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.1"
  3221. },
  3222. "time": "2022-12-02T22:17:43+00:00"
  3223. },
  3224. {
  3225. "name": "monolog/monolog",
  3226. "version": "2.10.0",
  3227. "source": {
  3228. "type": "git",
  3229. "url": "https://github.com/Seldaek/monolog.git",
  3230. "reference": "5cf826f2991858b54d5c3809bee745560a1042a7"
  3231. },
  3232. "dist": {
  3233. "type": "zip",
  3234. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/5cf826f2991858b54d5c3809bee745560a1042a7",
  3235. "reference": "5cf826f2991858b54d5c3809bee745560a1042a7",
  3236. "shasum": "",
  3237. "mirrors": [
  3238. {
  3239. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3240. "preferred": true
  3241. }
  3242. ]
  3243. },
  3244. "require": {
  3245. "php": ">=7.2",
  3246. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  3247. },
  3248. "provide": {
  3249. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  3250. },
  3251. "require-dev": {
  3252. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  3253. "doctrine/couchdb": "~1.0@dev",
  3254. "elasticsearch/elasticsearch": "^7 || ^8",
  3255. "ext-json": "*",
  3256. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  3257. "guzzlehttp/guzzle": "^7.4",
  3258. "guzzlehttp/psr7": "^2.2",
  3259. "mongodb/mongodb": "^1.8",
  3260. "php-amqplib/php-amqplib": "~2.4 || ^3",
  3261. "phpspec/prophecy": "^1.15",
  3262. "phpstan/phpstan": "^1.10",
  3263. "phpunit/phpunit": "^8.5.38 || ^9.6.19",
  3264. "predis/predis": "^1.1 || ^2.0",
  3265. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  3266. "ruflin/elastica": "^7",
  3267. "swiftmailer/swiftmailer": "^5.3|^6.0",
  3268. "symfony/mailer": "^5.4 || ^6",
  3269. "symfony/mime": "^5.4 || ^6"
  3270. },
  3271. "suggest": {
  3272. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  3273. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  3274. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  3275. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  3276. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  3277. "ext-mbstring": "Allow to work properly with unicode symbols",
  3278. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  3279. "ext-openssl": "Required to send log messages using SSL",
  3280. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  3281. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  3282. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  3283. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  3284. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  3285. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  3286. },
  3287. "type": "library",
  3288. "extra": {
  3289. "branch-alias": {
  3290. "dev-main": "2.x-dev"
  3291. }
  3292. },
  3293. "autoload": {
  3294. "psr-4": {
  3295. "Monolog\\": "src/Monolog"
  3296. }
  3297. },
  3298. "notification-url": "https://packagist.org/downloads/",
  3299. "license": [
  3300. "MIT"
  3301. ],
  3302. "authors": [
  3303. {
  3304. "name": "Jordi Boggiano",
  3305. "email": "j.boggiano@seld.be",
  3306. "homepage": "https://seld.be"
  3307. }
  3308. ],
  3309. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  3310. "homepage": "https://github.com/Seldaek/monolog",
  3311. "keywords": [
  3312. "log",
  3313. "logging",
  3314. "psr-3"
  3315. ],
  3316. "support": {
  3317. "issues": "https://github.com/Seldaek/monolog/issues",
  3318. "source": "https://github.com/Seldaek/monolog/tree/2.10.0"
  3319. },
  3320. "funding": [
  3321. {
  3322. "url": "https://github.com/Seldaek",
  3323. "type": "github"
  3324. },
  3325. {
  3326. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  3327. "type": "tidelift"
  3328. }
  3329. ],
  3330. "time": "2024-11-12T12:43:37+00:00"
  3331. },
  3332. {
  3333. "name": "myclabs/php-enum",
  3334. "version": "1.8.4",
  3335. "source": {
  3336. "type": "git",
  3337. "url": "https://github.com/myclabs/php-enum.git",
  3338. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483"
  3339. },
  3340. "dist": {
  3341. "type": "zip",
  3342. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/a867478eae49c9f59ece437ae7f9506bfaa27483",
  3343. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483",
  3344. "shasum": "",
  3345. "mirrors": [
  3346. {
  3347. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3348. "preferred": true
  3349. }
  3350. ]
  3351. },
  3352. "require": {
  3353. "ext-json": "*",
  3354. "php": "^7.3 || ^8.0"
  3355. },
  3356. "require-dev": {
  3357. "phpunit/phpunit": "^9.5",
  3358. "squizlabs/php_codesniffer": "1.*",
  3359. "vimeo/psalm": "^4.6.2"
  3360. },
  3361. "type": "library",
  3362. "autoload": {
  3363. "psr-4": {
  3364. "MyCLabs\\Enum\\": "src/"
  3365. },
  3366. "classmap": [
  3367. "stubs/Stringable.php"
  3368. ]
  3369. },
  3370. "notification-url": "https://packagist.org/downloads/",
  3371. "license": [
  3372. "MIT"
  3373. ],
  3374. "authors": [
  3375. {
  3376. "name": "PHP Enum contributors",
  3377. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  3378. }
  3379. ],
  3380. "description": "PHP Enum implementation",
  3381. "homepage": "http://github.com/myclabs/php-enum",
  3382. "keywords": [
  3383. "enum"
  3384. ],
  3385. "support": {
  3386. "issues": "https://github.com/myclabs/php-enum/issues",
  3387. "source": "https://github.com/myclabs/php-enum/tree/1.8.4"
  3388. },
  3389. "funding": [
  3390. {
  3391. "url": "https://github.com/mnapoli",
  3392. "type": "github"
  3393. },
  3394. {
  3395. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  3396. "type": "tidelift"
  3397. }
  3398. ],
  3399. "time": "2022-08-04T09:53:51+00:00"
  3400. },
  3401. {
  3402. "name": "nesbot/carbon",
  3403. "version": "2.73.0",
  3404. "source": {
  3405. "type": "git",
  3406. "url": "https://github.com/CarbonPHP/carbon.git",
  3407. "reference": "9228ce90e1035ff2f0db84b40ec2e023ed802075"
  3408. },
  3409. "dist": {
  3410. "type": "zip",
  3411. "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/9228ce90e1035ff2f0db84b40ec2e023ed802075",
  3412. "reference": "9228ce90e1035ff2f0db84b40ec2e023ed802075",
  3413. "shasum": "",
  3414. "mirrors": [
  3415. {
  3416. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3417. "preferred": true
  3418. }
  3419. ]
  3420. },
  3421. "require": {
  3422. "carbonphp/carbon-doctrine-types": "*",
  3423. "ext-json": "*",
  3424. "php": "^7.1.8 || ^8.0",
  3425. "psr/clock": "^1.0",
  3426. "symfony/polyfill-mbstring": "^1.0",
  3427. "symfony/polyfill-php80": "^1.16",
  3428. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  3429. },
  3430. "provide": {
  3431. "psr/clock-implementation": "1.0"
  3432. },
  3433. "require-dev": {
  3434. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  3435. "doctrine/orm": "^2.7 || ^3.0",
  3436. "friendsofphp/php-cs-fixer": "^3.0",
  3437. "kylekatarnls/multi-tester": "^2.0",
  3438. "ondrejmirtes/better-reflection": "<6",
  3439. "phpmd/phpmd": "^2.9",
  3440. "phpstan/extension-installer": "^1.0",
  3441. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  3442. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  3443. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  3444. "squizlabs/php_codesniffer": "^3.4"
  3445. },
  3446. "bin": [
  3447. "bin/carbon"
  3448. ],
  3449. "type": "library",
  3450. "extra": {
  3451. "laravel": {
  3452. "providers": [
  3453. "Carbon\\Laravel\\ServiceProvider"
  3454. ]
  3455. },
  3456. "phpstan": {
  3457. "includes": [
  3458. "extension.neon"
  3459. ]
  3460. },
  3461. "branch-alias": {
  3462. "dev-2.x": "2.x-dev",
  3463. "dev-master": "3.x-dev"
  3464. }
  3465. },
  3466. "autoload": {
  3467. "psr-4": {
  3468. "Carbon\\": "src/Carbon/"
  3469. }
  3470. },
  3471. "notification-url": "https://packagist.org/downloads/",
  3472. "license": [
  3473. "MIT"
  3474. ],
  3475. "authors": [
  3476. {
  3477. "name": "Brian Nesbitt",
  3478. "email": "brian@nesbot.com",
  3479. "homepage": "https://markido.com"
  3480. },
  3481. {
  3482. "name": "kylekatarnls",
  3483. "homepage": "https://github.com/kylekatarnls"
  3484. }
  3485. ],
  3486. "description": "An API extension for DateTime that supports 281 different languages.",
  3487. "homepage": "https://carbon.nesbot.com",
  3488. "keywords": [
  3489. "date",
  3490. "datetime",
  3491. "time"
  3492. ],
  3493. "support": {
  3494. "docs": "https://carbon.nesbot.com/docs",
  3495. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3496. "source": "https://github.com/briannesbitt/Carbon"
  3497. },
  3498. "funding": [
  3499. {
  3500. "url": "https://github.com/sponsors/kylekatarnls",
  3501. "type": "github"
  3502. },
  3503. {
  3504. "url": "https://opencollective.com/Carbon#sponsor",
  3505. "type": "opencollective"
  3506. },
  3507. {
  3508. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  3509. "type": "tidelift"
  3510. }
  3511. ],
  3512. "time": "2025-01-08T20:10:23+00:00"
  3513. },
  3514. {
  3515. "name": "nette/schema",
  3516. "version": "v1.2.5",
  3517. "source": {
  3518. "type": "git",
  3519. "url": "https://github.com/nette/schema.git",
  3520. "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a"
  3521. },
  3522. "dist": {
  3523. "type": "zip",
  3524. "url": "https://api.github.com/repos/nette/schema/zipball/0462f0166e823aad657c9224d0f849ecac1ba10a",
  3525. "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a",
  3526. "shasum": "",
  3527. "mirrors": [
  3528. {
  3529. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3530. "preferred": true
  3531. }
  3532. ]
  3533. },
  3534. "require": {
  3535. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  3536. "php": "7.1 - 8.3"
  3537. },
  3538. "require-dev": {
  3539. "nette/tester": "^2.3 || ^2.4",
  3540. "phpstan/phpstan-nette": "^1.0",
  3541. "tracy/tracy": "^2.7"
  3542. },
  3543. "type": "library",
  3544. "extra": {
  3545. "branch-alias": {
  3546. "dev-master": "1.2-dev"
  3547. }
  3548. },
  3549. "autoload": {
  3550. "classmap": [
  3551. "src/"
  3552. ]
  3553. },
  3554. "notification-url": "https://packagist.org/downloads/",
  3555. "license": [
  3556. "BSD-3-Clause",
  3557. "GPL-2.0-only",
  3558. "GPL-3.0-only"
  3559. ],
  3560. "authors": [
  3561. {
  3562. "name": "David Grudl",
  3563. "homepage": "https://davidgrudl.com"
  3564. },
  3565. {
  3566. "name": "Nette Community",
  3567. "homepage": "https://nette.org/contributors"
  3568. }
  3569. ],
  3570. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  3571. "homepage": "https://nette.org",
  3572. "keywords": [
  3573. "config",
  3574. "nette"
  3575. ],
  3576. "support": {
  3577. "issues": "https://github.com/nette/schema/issues",
  3578. "source": "https://github.com/nette/schema/tree/v1.2.5"
  3579. },
  3580. "time": "2023-10-05T20:37:59+00:00"
  3581. },
  3582. {
  3583. "name": "nette/utils",
  3584. "version": "v4.0.10",
  3585. "source": {
  3586. "type": "git",
  3587. "url": "https://github.com/nette/utils.git",
  3588. "reference": "2778deb6aab136c8db4ed1f4d6e9f465ca2dbee3"
  3589. },
  3590. "dist": {
  3591. "type": "zip",
  3592. "url": "https://api.github.com/repos/nette/utils/zipball/2778deb6aab136c8db4ed1f4d6e9f465ca2dbee3",
  3593. "reference": "2778deb6aab136c8db4ed1f4d6e9f465ca2dbee3",
  3594. "shasum": "",
  3595. "mirrors": [
  3596. {
  3597. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3598. "preferred": true
  3599. }
  3600. ]
  3601. },
  3602. "require": {
  3603. "php": "8.0 - 8.5"
  3604. },
  3605. "conflict": {
  3606. "nette/finder": "<3",
  3607. "nette/schema": "<1.2.2"
  3608. },
  3609. "require-dev": {
  3610. "jetbrains/phpstorm-attributes": "^1.2",
  3611. "nette/tester": "^2.5",
  3612. "phpstan/phpstan-nette": "^2.0@stable",
  3613. "tracy/tracy": "^2.9"
  3614. },
  3615. "suggest": {
  3616. "ext-gd": "to use Image",
  3617. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  3618. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  3619. "ext-json": "to use Nette\\Utils\\Json",
  3620. "ext-mbstring": "to use Strings::lower() etc...",
  3621. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  3622. },
  3623. "type": "library",
  3624. "extra": {
  3625. "branch-alias": {
  3626. "dev-master": "4.0-dev"
  3627. }
  3628. },
  3629. "autoload": {
  3630. "psr-4": {
  3631. "Nette\\": "src"
  3632. },
  3633. "classmap": [
  3634. "src/"
  3635. ]
  3636. },
  3637. "notification-url": "https://packagist.org/downloads/",
  3638. "license": [
  3639. "BSD-3-Clause",
  3640. "GPL-2.0-only",
  3641. "GPL-3.0-only"
  3642. ],
  3643. "authors": [
  3644. {
  3645. "name": "David Grudl",
  3646. "homepage": "https://davidgrudl.com"
  3647. },
  3648. {
  3649. "name": "Nette Community",
  3650. "homepage": "https://nette.org/contributors"
  3651. }
  3652. ],
  3653. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  3654. "homepage": "https://nette.org",
  3655. "keywords": [
  3656. "array",
  3657. "core",
  3658. "datetime",
  3659. "images",
  3660. "json",
  3661. "nette",
  3662. "paginator",
  3663. "password",
  3664. "slugify",
  3665. "string",
  3666. "unicode",
  3667. "utf-8",
  3668. "utility",
  3669. "validation"
  3670. ],
  3671. "support": {
  3672. "issues": "https://github.com/nette/utils/issues",
  3673. "source": "https://github.com/nette/utils/tree/v4.0.10"
  3674. },
  3675. "time": "2025-12-01T17:30:42+00:00"
  3676. },
  3677. {
  3678. "name": "nikic/php-parser",
  3679. "version": "v5.7.0",
  3680. "source": {
  3681. "type": "git",
  3682. "url": "https://github.com/nikic/PHP-Parser.git",
  3683. "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82"
  3684. },
  3685. "dist": {
  3686. "type": "zip",
  3687. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/dca41cd15c2ac9d055ad70dbfd011130757d1f82",
  3688. "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82",
  3689. "shasum": "",
  3690. "mirrors": [
  3691. {
  3692. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3693. "preferred": true
  3694. }
  3695. ]
  3696. },
  3697. "require": {
  3698. "ext-ctype": "*",
  3699. "ext-json": "*",
  3700. "ext-tokenizer": "*",
  3701. "php": ">=7.4"
  3702. },
  3703. "require-dev": {
  3704. "ircmaxell/php-yacc": "^0.0.7",
  3705. "phpunit/phpunit": "^9.0"
  3706. },
  3707. "bin": [
  3708. "bin/php-parse"
  3709. ],
  3710. "type": "library",
  3711. "extra": {
  3712. "branch-alias": {
  3713. "dev-master": "5.x-dev"
  3714. }
  3715. },
  3716. "autoload": {
  3717. "psr-4": {
  3718. "PhpParser\\": "lib/PhpParser"
  3719. }
  3720. },
  3721. "notification-url": "https://packagist.org/downloads/",
  3722. "license": [
  3723. "BSD-3-Clause"
  3724. ],
  3725. "authors": [
  3726. {
  3727. "name": "Nikita Popov"
  3728. }
  3729. ],
  3730. "description": "A PHP parser written in PHP",
  3731. "keywords": [
  3732. "parser",
  3733. "php"
  3734. ],
  3735. "support": {
  3736. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3737. "source": "https://github.com/nikic/PHP-Parser/tree/v5.7.0"
  3738. },
  3739. "time": "2025-12-06T11:56:16+00:00"
  3740. },
  3741. {
  3742. "name": "opis/closure",
  3743. "version": "3.6.3",
  3744. "source": {
  3745. "type": "git",
  3746. "url": "https://github.com/opis/closure.git",
  3747. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad"
  3748. },
  3749. "dist": {
  3750. "type": "zip",
  3751. "url": "https://api.github.com/repos/opis/closure/zipball/3d81e4309d2a927abbe66df935f4bb60082805ad",
  3752. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad",
  3753. "shasum": "",
  3754. "mirrors": [
  3755. {
  3756. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3757. "preferred": true
  3758. }
  3759. ]
  3760. },
  3761. "require": {
  3762. "php": "^5.4 || ^7.0 || ^8.0"
  3763. },
  3764. "require-dev": {
  3765. "jeremeamia/superclosure": "^2.0",
  3766. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  3767. },
  3768. "type": "library",
  3769. "extra": {
  3770. "branch-alias": {
  3771. "dev-master": "3.6.x-dev"
  3772. }
  3773. },
  3774. "autoload": {
  3775. "files": [
  3776. "functions.php"
  3777. ],
  3778. "psr-4": {
  3779. "Opis\\Closure\\": "src/"
  3780. }
  3781. },
  3782. "notification-url": "https://packagist.org/downloads/",
  3783. "license": [
  3784. "MIT"
  3785. ],
  3786. "authors": [
  3787. {
  3788. "name": "Marius Sarca",
  3789. "email": "marius.sarca@gmail.com"
  3790. },
  3791. {
  3792. "name": "Sorin Sarca",
  3793. "email": "sarca_sorin@hotmail.com"
  3794. }
  3795. ],
  3796. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  3797. "homepage": "https://opis.io/closure",
  3798. "keywords": [
  3799. "anonymous functions",
  3800. "closure",
  3801. "function",
  3802. "serializable",
  3803. "serialization",
  3804. "serialize"
  3805. ],
  3806. "support": {
  3807. "issues": "https://github.com/opis/closure/issues",
  3808. "source": "https://github.com/opis/closure/tree/3.6.3"
  3809. },
  3810. "time": "2022-01-27T09:35:39+00:00"
  3811. },
  3812. {
  3813. "name": "overtrue/socialite",
  3814. "version": "4.11.0",
  3815. "source": {
  3816. "type": "git",
  3817. "url": "https://github.com/overtrue/socialite.git",
  3818. "reference": "4929bbb9241818783c5954151ebbbef36d4953f4"
  3819. },
  3820. "dist": {
  3821. "type": "zip",
  3822. "url": "https://api.github.com/repos/overtrue/socialite/zipball/4929bbb9241818783c5954151ebbbef36d4953f4",
  3823. "reference": "4929bbb9241818783c5954151ebbbef36d4953f4",
  3824. "shasum": "",
  3825. "mirrors": [
  3826. {
  3827. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3828. "preferred": true
  3829. }
  3830. ]
  3831. },
  3832. "require": {
  3833. "ext-json": "*",
  3834. "ext-openssl": "*",
  3835. "guzzlehttp/guzzle": "^7.0",
  3836. "php": ">=8.0.2",
  3837. "symfony/psr-http-message-bridge": "^2.1|^6.0"
  3838. },
  3839. "require-dev": {
  3840. "jetbrains/phpstorm-attributes": "^1.0",
  3841. "laravel/pint": "^1.2",
  3842. "mockery/mockery": "^1.3",
  3843. "phpstan/phpstan": "^1.7",
  3844. "phpunit/phpunit": "^9.0"
  3845. },
  3846. "type": "library",
  3847. "autoload": {
  3848. "files": [
  3849. "src/Contracts/FactoryInterface.php",
  3850. "src/Contracts/UserInterface.php",
  3851. "src/Contracts/ProviderInterface.php"
  3852. ],
  3853. "psr-4": {
  3854. "Overtrue\\Socialite\\": "src/"
  3855. }
  3856. },
  3857. "notification-url": "https://packagist.org/downloads/",
  3858. "license": [
  3859. "MIT"
  3860. ],
  3861. "authors": [
  3862. {
  3863. "name": "overtrue",
  3864. "email": "anzhengchao@gmail.com"
  3865. }
  3866. ],
  3867. "description": "A collection of OAuth 2 packages.",
  3868. "keywords": [
  3869. "Feishu",
  3870. "login",
  3871. "oauth",
  3872. "qcloud",
  3873. "qq",
  3874. "social",
  3875. "wechat",
  3876. "weibo"
  3877. ],
  3878. "support": {
  3879. "issues": "https://github.com/overtrue/socialite/issues",
  3880. "source": "https://github.com/overtrue/socialite/tree/4.11.0"
  3881. },
  3882. "funding": [
  3883. {
  3884. "url": "https://github.com/overtrue",
  3885. "type": "github"
  3886. }
  3887. ],
  3888. "time": "2024-06-07T06:46:20+00:00"
  3889. },
  3890. {
  3891. "name": "phpoffice/phpspreadsheet",
  3892. "version": "1.30.1",
  3893. "source": {
  3894. "type": "git",
  3895. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  3896. "reference": "fa8257a579ec623473eabfe49731de5967306c4c"
  3897. },
  3898. "dist": {
  3899. "type": "zip",
  3900. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/fa8257a579ec623473eabfe49731de5967306c4c",
  3901. "reference": "fa8257a579ec623473eabfe49731de5967306c4c",
  3902. "shasum": "",
  3903. "mirrors": [
  3904. {
  3905. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3906. "preferred": true
  3907. }
  3908. ]
  3909. },
  3910. "require": {
  3911. "composer/pcre": "^1||^2||^3",
  3912. "ext-ctype": "*",
  3913. "ext-dom": "*",
  3914. "ext-fileinfo": "*",
  3915. "ext-gd": "*",
  3916. "ext-iconv": "*",
  3917. "ext-libxml": "*",
  3918. "ext-mbstring": "*",
  3919. "ext-simplexml": "*",
  3920. "ext-xml": "*",
  3921. "ext-xmlreader": "*",
  3922. "ext-xmlwriter": "*",
  3923. "ext-zip": "*",
  3924. "ext-zlib": "*",
  3925. "ezyang/htmlpurifier": "^4.15",
  3926. "maennchen/zipstream-php": "^2.1 || ^3.0",
  3927. "markbaker/complex": "^3.0",
  3928. "markbaker/matrix": "^3.0",
  3929. "php": ">=7.4.0 <8.5.0",
  3930. "psr/http-client": "^1.0",
  3931. "psr/http-factory": "^1.0",
  3932. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  3933. },
  3934. "require-dev": {
  3935. "dealerdirect/phpcodesniffer-composer-installer": "dev-main",
  3936. "dompdf/dompdf": "^1.0 || ^2.0 || ^3.0",
  3937. "friendsofphp/php-cs-fixer": "^3.2",
  3938. "mitoteam/jpgraph": "^10.3",
  3939. "mpdf/mpdf": "^8.1.1",
  3940. "phpcompatibility/php-compatibility": "^9.3",
  3941. "phpstan/phpstan": "^1.1",
  3942. "phpstan/phpstan-phpunit": "^1.0",
  3943. "phpunit/phpunit": "^8.5 || ^9.0",
  3944. "squizlabs/php_codesniffer": "^3.7",
  3945. "tecnickcom/tcpdf": "^6.5"
  3946. },
  3947. "suggest": {
  3948. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  3949. "ext-intl": "PHP Internationalization Functions",
  3950. "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  3951. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  3952. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  3953. },
  3954. "type": "library",
  3955. "autoload": {
  3956. "psr-4": {
  3957. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  3958. }
  3959. },
  3960. "notification-url": "https://packagist.org/downloads/",
  3961. "license": [
  3962. "MIT"
  3963. ],
  3964. "authors": [
  3965. {
  3966. "name": "Maarten Balliauw",
  3967. "homepage": "https://blog.maartenballiauw.be"
  3968. },
  3969. {
  3970. "name": "Mark Baker",
  3971. "homepage": "https://markbakeruk.net"
  3972. },
  3973. {
  3974. "name": "Franck Lefevre",
  3975. "homepage": "https://rootslabs.net"
  3976. },
  3977. {
  3978. "name": "Erik Tilt"
  3979. },
  3980. {
  3981. "name": "Adrien Crivelli"
  3982. }
  3983. ],
  3984. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3985. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  3986. "keywords": [
  3987. "OpenXML",
  3988. "excel",
  3989. "gnumeric",
  3990. "ods",
  3991. "php",
  3992. "spreadsheet",
  3993. "xls",
  3994. "xlsx"
  3995. ],
  3996. "support": {
  3997. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  3998. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.30.1"
  3999. },
  4000. "time": "2025-10-26T16:01:04+00:00"
  4001. },
  4002. {
  4003. "name": "phpoption/phpoption",
  4004. "version": "dev-master",
  4005. "source": {
  4006. "type": "git",
  4007. "url": "https://github.com/schmittjoh/php-option.git",
  4008. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  4009. },
  4010. "dist": {
  4011. "type": "zip",
  4012. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  4013. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  4014. "shasum": "",
  4015. "mirrors": [
  4016. {
  4017. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4018. "preferred": true
  4019. }
  4020. ]
  4021. },
  4022. "require": {
  4023. "php": "^7.2.5 || ^8.0"
  4024. },
  4025. "require-dev": {
  4026. "bamarni/composer-bin-plugin": "^1.8.2",
  4027. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  4028. },
  4029. "default-branch": true,
  4030. "type": "library",
  4031. "extra": {
  4032. "bamarni-bin": {
  4033. "bin-links": true,
  4034. "forward-command": false
  4035. },
  4036. "branch-alias": {
  4037. "dev-master": "1.9-dev"
  4038. }
  4039. },
  4040. "autoload": {
  4041. "psr-4": {
  4042. "PhpOption\\": "src/PhpOption/"
  4043. }
  4044. },
  4045. "notification-url": "https://packagist.org/downloads/",
  4046. "license": [
  4047. "Apache-2.0"
  4048. ],
  4049. "authors": [
  4050. {
  4051. "name": "Johannes M. Schmitt",
  4052. "email": "schmittjoh@gmail.com",
  4053. "homepage": "https://github.com/schmittjoh"
  4054. },
  4055. {
  4056. "name": "Graham Campbell",
  4057. "email": "hello@gjcampbell.co.uk",
  4058. "homepage": "https://github.com/GrahamCampbell"
  4059. }
  4060. ],
  4061. "description": "Option Type for PHP",
  4062. "keywords": [
  4063. "language",
  4064. "option",
  4065. "php",
  4066. "type"
  4067. ],
  4068. "support": {
  4069. "issues": "https://github.com/schmittjoh/php-option/issues",
  4070. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  4071. },
  4072. "funding": [
  4073. {
  4074. "url": "https://github.com/GrahamCampbell",
  4075. "type": "github"
  4076. },
  4077. {
  4078. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  4079. "type": "tidelift"
  4080. }
  4081. ],
  4082. "time": "2024-07-20T21:41:07+00:00"
  4083. },
  4084. {
  4085. "name": "pimple/pimple",
  4086. "version": "v3.6.0",
  4087. "source": {
  4088. "type": "git",
  4089. "url": "https://github.com/silexphp/Pimple.git",
  4090. "reference": "a70f552d338f9266eec6606c1f0b324da5514c96"
  4091. },
  4092. "dist": {
  4093. "type": "zip",
  4094. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/a70f552d338f9266eec6606c1f0b324da5514c96",
  4095. "reference": "a70f552d338f9266eec6606c1f0b324da5514c96",
  4096. "shasum": "",
  4097. "mirrors": [
  4098. {
  4099. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4100. "preferred": true
  4101. }
  4102. ]
  4103. },
  4104. "require": {
  4105. "php": ">=7.2.5",
  4106. "psr/container": "^1.1 || ^2.0"
  4107. },
  4108. "require-dev": {
  4109. "phpunit/phpunit": "*"
  4110. },
  4111. "type": "library",
  4112. "extra": {
  4113. "branch-alias": {
  4114. "dev-master": "3.4.x-dev"
  4115. }
  4116. },
  4117. "autoload": {
  4118. "psr-0": {
  4119. "Pimple": "src/"
  4120. }
  4121. },
  4122. "notification-url": "https://packagist.org/downloads/",
  4123. "license": [
  4124. "MIT"
  4125. ],
  4126. "authors": [
  4127. {
  4128. "name": "Fabien Potencier",
  4129. "email": "fabien@symfony.com"
  4130. }
  4131. ],
  4132. "description": "Pimple, a simple Dependency Injection Container",
  4133. "homepage": "https://pimple.symfony.com",
  4134. "keywords": [
  4135. "container",
  4136. "dependency injection"
  4137. ],
  4138. "support": {
  4139. "source": "https://github.com/silexphp/Pimple/tree/v3.6.0"
  4140. },
  4141. "time": "2025-11-12T12:31:38+00:00"
  4142. },
  4143. {
  4144. "name": "psr/cache",
  4145. "version": "3.0.0",
  4146. "source": {
  4147. "type": "git",
  4148. "url": "https://github.com/php-fig/cache.git",
  4149. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  4150. },
  4151. "dist": {
  4152. "type": "zip",
  4153. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  4154. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  4155. "shasum": "",
  4156. "mirrors": [
  4157. {
  4158. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4159. "preferred": true
  4160. }
  4161. ]
  4162. },
  4163. "require": {
  4164. "php": ">=8.0.0"
  4165. },
  4166. "type": "library",
  4167. "extra": {
  4168. "branch-alias": {
  4169. "dev-master": "1.0.x-dev"
  4170. }
  4171. },
  4172. "autoload": {
  4173. "psr-4": {
  4174. "Psr\\Cache\\": "src/"
  4175. }
  4176. },
  4177. "notification-url": "https://packagist.org/downloads/",
  4178. "license": [
  4179. "MIT"
  4180. ],
  4181. "authors": [
  4182. {
  4183. "name": "PHP-FIG",
  4184. "homepage": "https://www.php-fig.org/"
  4185. }
  4186. ],
  4187. "description": "Common interface for caching libraries",
  4188. "keywords": [
  4189. "cache",
  4190. "psr",
  4191. "psr-6"
  4192. ],
  4193. "support": {
  4194. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  4195. },
  4196. "time": "2021-02-03T23:26:27+00:00"
  4197. },
  4198. {
  4199. "name": "psr/clock",
  4200. "version": "1.0.0",
  4201. "source": {
  4202. "type": "git",
  4203. "url": "https://github.com/php-fig/clock.git",
  4204. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  4205. },
  4206. "dist": {
  4207. "type": "zip",
  4208. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  4209. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  4210. "shasum": "",
  4211. "mirrors": [
  4212. {
  4213. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4214. "preferred": true
  4215. }
  4216. ]
  4217. },
  4218. "require": {
  4219. "php": "^7.0 || ^8.0"
  4220. },
  4221. "type": "library",
  4222. "autoload": {
  4223. "psr-4": {
  4224. "Psr\\Clock\\": "src/"
  4225. }
  4226. },
  4227. "notification-url": "https://packagist.org/downloads/",
  4228. "license": [
  4229. "MIT"
  4230. ],
  4231. "authors": [
  4232. {
  4233. "name": "PHP-FIG",
  4234. "homepage": "https://www.php-fig.org/"
  4235. }
  4236. ],
  4237. "description": "Common interface for reading the clock.",
  4238. "homepage": "https://github.com/php-fig/clock",
  4239. "keywords": [
  4240. "clock",
  4241. "now",
  4242. "psr",
  4243. "psr-20",
  4244. "time"
  4245. ],
  4246. "support": {
  4247. "issues": "https://github.com/php-fig/clock/issues",
  4248. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  4249. },
  4250. "time": "2022-11-25T14:36:26+00:00"
  4251. },
  4252. {
  4253. "name": "psr/container",
  4254. "version": "1.1.2",
  4255. "source": {
  4256. "type": "git",
  4257. "url": "https://github.com/php-fig/container.git",
  4258. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  4259. },
  4260. "dist": {
  4261. "type": "zip",
  4262. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  4263. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  4264. "shasum": "",
  4265. "mirrors": [
  4266. {
  4267. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4268. "preferred": true
  4269. }
  4270. ]
  4271. },
  4272. "require": {
  4273. "php": ">=7.4.0"
  4274. },
  4275. "type": "library",
  4276. "autoload": {
  4277. "psr-4": {
  4278. "Psr\\Container\\": "src/"
  4279. }
  4280. },
  4281. "notification-url": "https://packagist.org/downloads/",
  4282. "license": [
  4283. "MIT"
  4284. ],
  4285. "authors": [
  4286. {
  4287. "name": "PHP-FIG",
  4288. "homepage": "https://www.php-fig.org/"
  4289. }
  4290. ],
  4291. "description": "Common Container Interface (PHP FIG PSR-11)",
  4292. "homepage": "https://github.com/php-fig/container",
  4293. "keywords": [
  4294. "PSR-11",
  4295. "container",
  4296. "container-interface",
  4297. "container-interop",
  4298. "psr"
  4299. ],
  4300. "support": {
  4301. "issues": "https://github.com/php-fig/container/issues",
  4302. "source": "https://github.com/php-fig/container/tree/1.1.2"
  4303. },
  4304. "time": "2021-11-05T16:50:12+00:00"
  4305. },
  4306. {
  4307. "name": "psr/event-dispatcher",
  4308. "version": "1.0.0",
  4309. "source": {
  4310. "type": "git",
  4311. "url": "https://github.com/php-fig/event-dispatcher.git",
  4312. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  4313. },
  4314. "dist": {
  4315. "type": "zip",
  4316. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4317. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4318. "shasum": "",
  4319. "mirrors": [
  4320. {
  4321. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4322. "preferred": true
  4323. }
  4324. ]
  4325. },
  4326. "require": {
  4327. "php": ">=7.2.0"
  4328. },
  4329. "type": "library",
  4330. "extra": {
  4331. "branch-alias": {
  4332. "dev-master": "1.0.x-dev"
  4333. }
  4334. },
  4335. "autoload": {
  4336. "psr-4": {
  4337. "Psr\\EventDispatcher\\": "src/"
  4338. }
  4339. },
  4340. "notification-url": "https://packagist.org/downloads/",
  4341. "license": [
  4342. "MIT"
  4343. ],
  4344. "authors": [
  4345. {
  4346. "name": "PHP-FIG",
  4347. "homepage": "http://www.php-fig.org/"
  4348. }
  4349. ],
  4350. "description": "Standard interfaces for event handling.",
  4351. "keywords": [
  4352. "events",
  4353. "psr",
  4354. "psr-14"
  4355. ],
  4356. "support": {
  4357. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  4358. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  4359. },
  4360. "time": "2019-01-08T18:20:26+00:00"
  4361. },
  4362. {
  4363. "name": "psr/http-client",
  4364. "version": "1.0.3",
  4365. "source": {
  4366. "type": "git",
  4367. "url": "https://github.com/php-fig/http-client.git",
  4368. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  4369. },
  4370. "dist": {
  4371. "type": "zip",
  4372. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  4373. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  4374. "shasum": "",
  4375. "mirrors": [
  4376. {
  4377. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4378. "preferred": true
  4379. }
  4380. ]
  4381. },
  4382. "require": {
  4383. "php": "^7.0 || ^8.0",
  4384. "psr/http-message": "^1.0 || ^2.0"
  4385. },
  4386. "type": "library",
  4387. "extra": {
  4388. "branch-alias": {
  4389. "dev-master": "1.0.x-dev"
  4390. }
  4391. },
  4392. "autoload": {
  4393. "psr-4": {
  4394. "Psr\\Http\\Client\\": "src/"
  4395. }
  4396. },
  4397. "notification-url": "https://packagist.org/downloads/",
  4398. "license": [
  4399. "MIT"
  4400. ],
  4401. "authors": [
  4402. {
  4403. "name": "PHP-FIG",
  4404. "homepage": "https://www.php-fig.org/"
  4405. }
  4406. ],
  4407. "description": "Common interface for HTTP clients",
  4408. "homepage": "https://github.com/php-fig/http-client",
  4409. "keywords": [
  4410. "http",
  4411. "http-client",
  4412. "psr",
  4413. "psr-18"
  4414. ],
  4415. "support": {
  4416. "source": "https://github.com/php-fig/http-client"
  4417. },
  4418. "time": "2023-09-23T14:17:50+00:00"
  4419. },
  4420. {
  4421. "name": "psr/http-factory",
  4422. "version": "1.0.2",
  4423. "source": {
  4424. "type": "git",
  4425. "url": "https://github.com/php-fig/http-factory.git",
  4426. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  4427. },
  4428. "dist": {
  4429. "type": "zip",
  4430. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  4431. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  4432. "shasum": "",
  4433. "mirrors": [
  4434. {
  4435. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4436. "preferred": true
  4437. }
  4438. ]
  4439. },
  4440. "require": {
  4441. "php": ">=7.0.0",
  4442. "psr/http-message": "^1.0 || ^2.0"
  4443. },
  4444. "type": "library",
  4445. "extra": {
  4446. "branch-alias": {
  4447. "dev-master": "1.0.x-dev"
  4448. }
  4449. },
  4450. "autoload": {
  4451. "psr-4": {
  4452. "Psr\\Http\\Message\\": "src/"
  4453. }
  4454. },
  4455. "notification-url": "https://packagist.org/downloads/",
  4456. "license": [
  4457. "MIT"
  4458. ],
  4459. "authors": [
  4460. {
  4461. "name": "PHP-FIG",
  4462. "homepage": "https://www.php-fig.org/"
  4463. }
  4464. ],
  4465. "description": "Common interfaces for PSR-7 HTTP message factories",
  4466. "keywords": [
  4467. "factory",
  4468. "http",
  4469. "message",
  4470. "psr",
  4471. "psr-17",
  4472. "psr-7",
  4473. "request",
  4474. "response"
  4475. ],
  4476. "support": {
  4477. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  4478. },
  4479. "time": "2023-04-10T20:10:41+00:00"
  4480. },
  4481. {
  4482. "name": "psr/http-message",
  4483. "version": "1.1",
  4484. "source": {
  4485. "type": "git",
  4486. "url": "https://github.com/php-fig/http-message.git",
  4487. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  4488. },
  4489. "dist": {
  4490. "type": "zip",
  4491. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  4492. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  4493. "shasum": "",
  4494. "mirrors": [
  4495. {
  4496. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4497. "preferred": true
  4498. }
  4499. ]
  4500. },
  4501. "require": {
  4502. "php": "^7.2 || ^8.0"
  4503. },
  4504. "type": "library",
  4505. "extra": {
  4506. "branch-alias": {
  4507. "dev-master": "1.1.x-dev"
  4508. }
  4509. },
  4510. "autoload": {
  4511. "psr-4": {
  4512. "Psr\\Http\\Message\\": "src/"
  4513. }
  4514. },
  4515. "notification-url": "https://packagist.org/downloads/",
  4516. "license": [
  4517. "MIT"
  4518. ],
  4519. "authors": [
  4520. {
  4521. "name": "PHP-FIG",
  4522. "homepage": "http://www.php-fig.org/"
  4523. }
  4524. ],
  4525. "description": "Common interface for HTTP messages",
  4526. "homepage": "https://github.com/php-fig/http-message",
  4527. "keywords": [
  4528. "http",
  4529. "http-message",
  4530. "psr",
  4531. "psr-7",
  4532. "request",
  4533. "response"
  4534. ],
  4535. "support": {
  4536. "source": "https://github.com/php-fig/http-message/tree/1.1"
  4537. },
  4538. "time": "2023-04-04T09:50:52+00:00"
  4539. },
  4540. {
  4541. "name": "psr/log",
  4542. "version": "2.0.0",
  4543. "source": {
  4544. "type": "git",
  4545. "url": "https://github.com/php-fig/log.git",
  4546. "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376"
  4547. },
  4548. "dist": {
  4549. "type": "zip",
  4550. "url": "https://api.github.com/repos/php-fig/log/zipball/ef29f6d262798707a9edd554e2b82517ef3a9376",
  4551. "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376",
  4552. "shasum": "",
  4553. "mirrors": [
  4554. {
  4555. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4556. "preferred": true
  4557. }
  4558. ]
  4559. },
  4560. "require": {
  4561. "php": ">=8.0.0"
  4562. },
  4563. "type": "library",
  4564. "extra": {
  4565. "branch-alias": {
  4566. "dev-master": "2.0.x-dev"
  4567. }
  4568. },
  4569. "autoload": {
  4570. "psr-4": {
  4571. "Psr\\Log\\": "src"
  4572. }
  4573. },
  4574. "notification-url": "https://packagist.org/downloads/",
  4575. "license": [
  4576. "MIT"
  4577. ],
  4578. "authors": [
  4579. {
  4580. "name": "PHP-FIG",
  4581. "homepage": "https://www.php-fig.org/"
  4582. }
  4583. ],
  4584. "description": "Common interface for logging libraries",
  4585. "homepage": "https://github.com/php-fig/log",
  4586. "keywords": [
  4587. "log",
  4588. "psr",
  4589. "psr-3"
  4590. ],
  4591. "support": {
  4592. "source": "https://github.com/php-fig/log/tree/2.0.0"
  4593. },
  4594. "time": "2021-07-14T16:41:46+00:00"
  4595. },
  4596. {
  4597. "name": "psr/simple-cache",
  4598. "version": "1.0.1",
  4599. "source": {
  4600. "type": "git",
  4601. "url": "https://github.com/php-fig/simple-cache.git",
  4602. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  4603. },
  4604. "dist": {
  4605. "type": "zip",
  4606. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4607. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4608. "shasum": "",
  4609. "mirrors": [
  4610. {
  4611. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4612. "preferred": true
  4613. }
  4614. ]
  4615. },
  4616. "require": {
  4617. "php": ">=5.3.0"
  4618. },
  4619. "type": "library",
  4620. "extra": {
  4621. "branch-alias": {
  4622. "dev-master": "1.0.x-dev"
  4623. }
  4624. },
  4625. "autoload": {
  4626. "psr-4": {
  4627. "Psr\\SimpleCache\\": "src/"
  4628. }
  4629. },
  4630. "notification-url": "https://packagist.org/downloads/",
  4631. "license": [
  4632. "MIT"
  4633. ],
  4634. "authors": [
  4635. {
  4636. "name": "PHP-FIG",
  4637. "homepage": "http://www.php-fig.org/"
  4638. }
  4639. ],
  4640. "description": "Common interfaces for simple caching",
  4641. "keywords": [
  4642. "cache",
  4643. "caching",
  4644. "psr",
  4645. "psr-16",
  4646. "simple-cache"
  4647. ],
  4648. "support": {
  4649. "source": "https://github.com/php-fig/simple-cache/tree/master"
  4650. },
  4651. "time": "2017-10-23T01:57:42+00:00"
  4652. },
  4653. {
  4654. "name": "psy/psysh",
  4655. "version": "v0.12.15",
  4656. "source": {
  4657. "type": "git",
  4658. "url": "https://github.com/bobthecow/psysh.git",
  4659. "reference": "38953bc71491c838fcb6ebcbdc41ab7483cd549c"
  4660. },
  4661. "dist": {
  4662. "type": "zip",
  4663. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/38953bc71491c838fcb6ebcbdc41ab7483cd549c",
  4664. "reference": "38953bc71491c838fcb6ebcbdc41ab7483cd549c",
  4665. "shasum": "",
  4666. "mirrors": [
  4667. {
  4668. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4669. "preferred": true
  4670. }
  4671. ]
  4672. },
  4673. "require": {
  4674. "ext-json": "*",
  4675. "ext-tokenizer": "*",
  4676. "nikic/php-parser": "^5.0 || ^4.0",
  4677. "php": "^8.0 || ^7.4",
  4678. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  4679. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  4680. },
  4681. "conflict": {
  4682. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  4683. },
  4684. "require-dev": {
  4685. "bamarni/composer-bin-plugin": "^1.2",
  4686. "composer/class-map-generator": "^1.6"
  4687. },
  4688. "suggest": {
  4689. "composer/class-map-generator": "Improved tab completion performance with better class discovery.",
  4690. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4691. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  4692. },
  4693. "bin": [
  4694. "bin/psysh"
  4695. ],
  4696. "type": "library",
  4697. "extra": {
  4698. "bamarni-bin": {
  4699. "bin-links": false,
  4700. "forward-command": false
  4701. },
  4702. "branch-alias": {
  4703. "dev-main": "0.12.x-dev"
  4704. }
  4705. },
  4706. "autoload": {
  4707. "files": [
  4708. "src/functions.php"
  4709. ],
  4710. "psr-4": {
  4711. "Psy\\": "src/"
  4712. }
  4713. },
  4714. "notification-url": "https://packagist.org/downloads/",
  4715. "license": [
  4716. "MIT"
  4717. ],
  4718. "authors": [
  4719. {
  4720. "name": "Justin Hileman",
  4721. "email": "justin@justinhileman.info"
  4722. }
  4723. ],
  4724. "description": "An interactive shell for modern PHP.",
  4725. "homepage": "https://psysh.org",
  4726. "keywords": [
  4727. "REPL",
  4728. "console",
  4729. "interactive",
  4730. "shell"
  4731. ],
  4732. "support": {
  4733. "issues": "https://github.com/bobthecow/psysh/issues",
  4734. "source": "https://github.com/bobthecow/psysh/tree/v0.12.15"
  4735. },
  4736. "time": "2025-11-28T00:00:14+00:00"
  4737. },
  4738. {
  4739. "name": "ralouphie/getallheaders",
  4740. "version": "3.0.3",
  4741. "source": {
  4742. "type": "git",
  4743. "url": "https://github.com/ralouphie/getallheaders.git",
  4744. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4745. },
  4746. "dist": {
  4747. "type": "zip",
  4748. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4749. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4750. "shasum": "",
  4751. "mirrors": [
  4752. {
  4753. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4754. "preferred": true
  4755. }
  4756. ]
  4757. },
  4758. "require": {
  4759. "php": ">=5.6"
  4760. },
  4761. "require-dev": {
  4762. "php-coveralls/php-coveralls": "^2.1",
  4763. "phpunit/phpunit": "^5 || ^6.5"
  4764. },
  4765. "type": "library",
  4766. "autoload": {
  4767. "files": [
  4768. "src/getallheaders.php"
  4769. ]
  4770. },
  4771. "notification-url": "https://packagist.org/downloads/",
  4772. "license": [
  4773. "MIT"
  4774. ],
  4775. "authors": [
  4776. {
  4777. "name": "Ralph Khattar",
  4778. "email": "ralph.khattar@gmail.com"
  4779. }
  4780. ],
  4781. "description": "A polyfill for getallheaders.",
  4782. "support": {
  4783. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4784. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4785. },
  4786. "time": "2019-03-08T08:55:37+00:00"
  4787. },
  4788. {
  4789. "name": "ramsey/collection",
  4790. "version": "1.3.0",
  4791. "source": {
  4792. "type": "git",
  4793. "url": "https://github.com/ramsey/collection.git",
  4794. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4"
  4795. },
  4796. "dist": {
  4797. "type": "zip",
  4798. "url": "https://api.github.com/repos/ramsey/collection/zipball/ad7475d1c9e70b190ecffc58f2d989416af339b4",
  4799. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4",
  4800. "shasum": "",
  4801. "mirrors": [
  4802. {
  4803. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4804. "preferred": true
  4805. }
  4806. ]
  4807. },
  4808. "require": {
  4809. "php": "^7.4 || ^8.0",
  4810. "symfony/polyfill-php81": "^1.23"
  4811. },
  4812. "require-dev": {
  4813. "captainhook/plugin-composer": "^5.3",
  4814. "ergebnis/composer-normalize": "^2.28.3",
  4815. "fakerphp/faker": "^1.21",
  4816. "hamcrest/hamcrest-php": "^2.0",
  4817. "jangregor/phpstan-prophecy": "^1.0",
  4818. "mockery/mockery": "^1.5",
  4819. "php-parallel-lint/php-console-highlighter": "^1.0",
  4820. "php-parallel-lint/php-parallel-lint": "^1.3",
  4821. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  4822. "phpspec/prophecy-phpunit": "^2.0",
  4823. "phpstan/extension-installer": "^1.2",
  4824. "phpstan/phpstan": "^1.9",
  4825. "phpstan/phpstan-mockery": "^1.1",
  4826. "phpstan/phpstan-phpunit": "^1.3",
  4827. "phpunit/phpunit": "^9.5",
  4828. "psalm/plugin-mockery": "^1.1",
  4829. "psalm/plugin-phpunit": "^0.18.4",
  4830. "ramsey/coding-standard": "^2.0.3",
  4831. "ramsey/conventional-commits": "^1.3",
  4832. "vimeo/psalm": "^5.4"
  4833. },
  4834. "type": "library",
  4835. "extra": {
  4836. "captainhook": {
  4837. "force-install": true
  4838. },
  4839. "ramsey/conventional-commits": {
  4840. "configFile": "conventional-commits.json"
  4841. }
  4842. },
  4843. "autoload": {
  4844. "psr-4": {
  4845. "Ramsey\\Collection\\": "src/"
  4846. }
  4847. },
  4848. "notification-url": "https://packagist.org/downloads/",
  4849. "license": [
  4850. "MIT"
  4851. ],
  4852. "authors": [
  4853. {
  4854. "name": "Ben Ramsey",
  4855. "email": "ben@benramsey.com",
  4856. "homepage": "https://benramsey.com"
  4857. }
  4858. ],
  4859. "description": "A PHP library for representing and manipulating collections.",
  4860. "keywords": [
  4861. "array",
  4862. "collection",
  4863. "hash",
  4864. "map",
  4865. "queue",
  4866. "set"
  4867. ],
  4868. "support": {
  4869. "issues": "https://github.com/ramsey/collection/issues",
  4870. "source": "https://github.com/ramsey/collection/tree/1.3.0"
  4871. },
  4872. "funding": [
  4873. {
  4874. "url": "https://github.com/ramsey",
  4875. "type": "github"
  4876. },
  4877. {
  4878. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4879. "type": "tidelift"
  4880. }
  4881. ],
  4882. "time": "2022-12-27T19:12:24+00:00"
  4883. },
  4884. {
  4885. "name": "ramsey/uuid",
  4886. "version": "4.9.0",
  4887. "source": {
  4888. "type": "git",
  4889. "url": "https://github.com/ramsey/uuid.git",
  4890. "reference": "4e0e23cc785f0724a0e838279a9eb03f28b092a0"
  4891. },
  4892. "dist": {
  4893. "type": "zip",
  4894. "url": "https://api.github.com/repos/ramsey/uuid/zipball/4e0e23cc785f0724a0e838279a9eb03f28b092a0",
  4895. "reference": "4e0e23cc785f0724a0e838279a9eb03f28b092a0",
  4896. "shasum": "",
  4897. "mirrors": [
  4898. {
  4899. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4900. "preferred": true
  4901. }
  4902. ]
  4903. },
  4904. "require": {
  4905. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12 || ^0.13",
  4906. "php": "^8.0",
  4907. "ramsey/collection": "^1.2 || ^2.0"
  4908. },
  4909. "replace": {
  4910. "rhumsaa/uuid": "self.version"
  4911. },
  4912. "require-dev": {
  4913. "captainhook/captainhook": "^5.25",
  4914. "captainhook/plugin-composer": "^5.3",
  4915. "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
  4916. "ergebnis/composer-normalize": "^2.47",
  4917. "mockery/mockery": "^1.6",
  4918. "paragonie/random-lib": "^2",
  4919. "php-mock/php-mock": "^2.6",
  4920. "php-mock/php-mock-mockery": "^1.5",
  4921. "php-parallel-lint/php-parallel-lint": "^1.4.0",
  4922. "phpbench/phpbench": "^1.2.14",
  4923. "phpstan/extension-installer": "^1.4",
  4924. "phpstan/phpstan": "^2.1",
  4925. "phpstan/phpstan-mockery": "^2.0",
  4926. "phpstan/phpstan-phpunit": "^2.0",
  4927. "phpunit/phpunit": "^9.6",
  4928. "slevomat/coding-standard": "^8.18",
  4929. "squizlabs/php_codesniffer": "^3.13"
  4930. },
  4931. "suggest": {
  4932. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4933. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4934. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4935. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4936. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4937. },
  4938. "type": "library",
  4939. "extra": {
  4940. "captainhook": {
  4941. "force-install": true
  4942. }
  4943. },
  4944. "autoload": {
  4945. "files": [
  4946. "src/functions.php"
  4947. ],
  4948. "psr-4": {
  4949. "Ramsey\\Uuid\\": "src/"
  4950. }
  4951. },
  4952. "notification-url": "https://packagist.org/downloads/",
  4953. "license": [
  4954. "MIT"
  4955. ],
  4956. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4957. "keywords": [
  4958. "guid",
  4959. "identifier",
  4960. "uuid"
  4961. ],
  4962. "support": {
  4963. "issues": "https://github.com/ramsey/uuid/issues",
  4964. "source": "https://github.com/ramsey/uuid/tree/4.9.0"
  4965. },
  4966. "time": "2025-06-25T14:20:11+00:00"
  4967. },
  4968. {
  4969. "name": "swiftmailer/swiftmailer",
  4970. "version": "v6.3.0",
  4971. "source": {
  4972. "type": "git",
  4973. "url": "https://github.com/swiftmailer/swiftmailer.git",
  4974. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  4975. },
  4976. "dist": {
  4977. "type": "zip",
  4978. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  4979. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  4980. "shasum": "",
  4981. "mirrors": [
  4982. {
  4983. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4984. "preferred": true
  4985. }
  4986. ]
  4987. },
  4988. "require": {
  4989. "egulias/email-validator": "^2.0|^3.1",
  4990. "php": ">=7.0.0",
  4991. "symfony/polyfill-iconv": "^1.0",
  4992. "symfony/polyfill-intl-idn": "^1.10",
  4993. "symfony/polyfill-mbstring": "^1.0"
  4994. },
  4995. "require-dev": {
  4996. "mockery/mockery": "^1.0",
  4997. "symfony/phpunit-bridge": "^4.4|^5.4"
  4998. },
  4999. "suggest": {
  5000. "ext-intl": "Needed to support internationalized email addresses"
  5001. },
  5002. "type": "library",
  5003. "extra": {
  5004. "branch-alias": {
  5005. "dev-master": "6.2-dev"
  5006. }
  5007. },
  5008. "autoload": {
  5009. "files": [
  5010. "lib/swift_required.php"
  5011. ]
  5012. },
  5013. "notification-url": "https://packagist.org/downloads/",
  5014. "license": [
  5015. "MIT"
  5016. ],
  5017. "authors": [
  5018. {
  5019. "name": "Chris Corbyn"
  5020. },
  5021. {
  5022. "name": "Fabien Potencier",
  5023. "email": "fabien@symfony.com"
  5024. }
  5025. ],
  5026. "description": "Swiftmailer, free feature-rich PHP mailer",
  5027. "homepage": "https://swiftmailer.symfony.com",
  5028. "keywords": [
  5029. "email",
  5030. "mail",
  5031. "mailer"
  5032. ],
  5033. "support": {
  5034. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  5035. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  5036. },
  5037. "funding": [
  5038. {
  5039. "url": "https://github.com/fabpot",
  5040. "type": "github"
  5041. },
  5042. {
  5043. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  5044. "type": "tidelift"
  5045. }
  5046. ],
  5047. "abandoned": "symfony/mailer",
  5048. "time": "2021-10-18T15:26:12+00:00"
  5049. },
  5050. {
  5051. "name": "symfony/cache",
  5052. "version": "v6.0.19",
  5053. "source": {
  5054. "type": "git",
  5055. "url": "https://github.com/symfony/cache.git",
  5056. "reference": "81ca309f056e836480928b20280ec52ce8369bb3"
  5057. },
  5058. "dist": {
  5059. "type": "zip",
  5060. "url": "https://api.github.com/repos/symfony/cache/zipball/81ca309f056e836480928b20280ec52ce8369bb3",
  5061. "reference": "81ca309f056e836480928b20280ec52ce8369bb3",
  5062. "shasum": "",
  5063. "mirrors": [
  5064. {
  5065. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5066. "preferred": true
  5067. }
  5068. ]
  5069. },
  5070. "require": {
  5071. "php": ">=8.0.2",
  5072. "psr/cache": "^2.0|^3.0",
  5073. "psr/log": "^1.1|^2|^3",
  5074. "symfony/cache-contracts": "^1.1.7|^2|^3",
  5075. "symfony/service-contracts": "^1.1|^2|^3",
  5076. "symfony/var-exporter": "^5.4|^6.0"
  5077. },
  5078. "conflict": {
  5079. "doctrine/dbal": "<2.13.1",
  5080. "symfony/dependency-injection": "<5.4",
  5081. "symfony/http-kernel": "<5.4",
  5082. "symfony/var-dumper": "<5.4"
  5083. },
  5084. "provide": {
  5085. "psr/cache-implementation": "2.0|3.0",
  5086. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  5087. "symfony/cache-implementation": "1.1|2.0|3.0"
  5088. },
  5089. "require-dev": {
  5090. "cache/integration-tests": "dev-master",
  5091. "doctrine/dbal": "^2.13.1|^3.0",
  5092. "predis/predis": "^1.1",
  5093. "psr/simple-cache": "^1.0|^2.0|^3.0",
  5094. "symfony/config": "^5.4|^6.0",
  5095. "symfony/dependency-injection": "^5.4|^6.0",
  5096. "symfony/filesystem": "^5.4|^6.0",
  5097. "symfony/http-kernel": "^5.4|^6.0",
  5098. "symfony/messenger": "^5.4|^6.0",
  5099. "symfony/var-dumper": "^5.4|^6.0"
  5100. },
  5101. "type": "library",
  5102. "autoload": {
  5103. "psr-4": {
  5104. "Symfony\\Component\\Cache\\": ""
  5105. },
  5106. "exclude-from-classmap": [
  5107. "/Tests/"
  5108. ]
  5109. },
  5110. "notification-url": "https://packagist.org/downloads/",
  5111. "license": [
  5112. "MIT"
  5113. ],
  5114. "authors": [
  5115. {
  5116. "name": "Nicolas Grekas",
  5117. "email": "p@tchwork.com"
  5118. },
  5119. {
  5120. "name": "Symfony Community",
  5121. "homepage": "https://symfony.com/contributors"
  5122. }
  5123. ],
  5124. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  5125. "homepage": "https://symfony.com",
  5126. "keywords": [
  5127. "caching",
  5128. "psr6"
  5129. ],
  5130. "support": {
  5131. "source": "https://github.com/symfony/cache/tree/v6.0.19"
  5132. },
  5133. "funding": [
  5134. {
  5135. "url": "https://symfony.com/sponsor",
  5136. "type": "custom"
  5137. },
  5138. {
  5139. "url": "https://github.com/fabpot",
  5140. "type": "github"
  5141. },
  5142. {
  5143. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5144. "type": "tidelift"
  5145. }
  5146. ],
  5147. "time": "2023-01-20T17:44:14+00:00"
  5148. },
  5149. {
  5150. "name": "symfony/cache-contracts",
  5151. "version": "v3.0.2",
  5152. "source": {
  5153. "type": "git",
  5154. "url": "https://github.com/symfony/cache-contracts.git",
  5155. "reference": "1c0a181c9ee221afe4fa55b2d13fc63c5ae14348"
  5156. },
  5157. "dist": {
  5158. "type": "zip",
  5159. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/1c0a181c9ee221afe4fa55b2d13fc63c5ae14348",
  5160. "reference": "1c0a181c9ee221afe4fa55b2d13fc63c5ae14348",
  5161. "shasum": "",
  5162. "mirrors": [
  5163. {
  5164. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5165. "preferred": true
  5166. }
  5167. ]
  5168. },
  5169. "require": {
  5170. "php": ">=8.0.2",
  5171. "psr/cache": "^3.0"
  5172. },
  5173. "suggest": {
  5174. "symfony/cache-implementation": ""
  5175. },
  5176. "type": "library",
  5177. "extra": {
  5178. "thanks": {
  5179. "url": "https://github.com/symfony/contracts",
  5180. "name": "symfony/contracts"
  5181. },
  5182. "branch-alias": {
  5183. "dev-main": "3.0-dev"
  5184. }
  5185. },
  5186. "autoload": {
  5187. "psr-4": {
  5188. "Symfony\\Contracts\\Cache\\": ""
  5189. }
  5190. },
  5191. "notification-url": "https://packagist.org/downloads/",
  5192. "license": [
  5193. "MIT"
  5194. ],
  5195. "authors": [
  5196. {
  5197. "name": "Nicolas Grekas",
  5198. "email": "p@tchwork.com"
  5199. },
  5200. {
  5201. "name": "Symfony Community",
  5202. "homepage": "https://symfony.com/contributors"
  5203. }
  5204. ],
  5205. "description": "Generic abstractions related to caching",
  5206. "homepage": "https://symfony.com",
  5207. "keywords": [
  5208. "abstractions",
  5209. "contracts",
  5210. "decoupling",
  5211. "interfaces",
  5212. "interoperability",
  5213. "standards"
  5214. ],
  5215. "support": {
  5216. "source": "https://github.com/symfony/cache-contracts/tree/v3.0.2"
  5217. },
  5218. "funding": [
  5219. {
  5220. "url": "https://symfony.com/sponsor",
  5221. "type": "custom"
  5222. },
  5223. {
  5224. "url": "https://github.com/fabpot",
  5225. "type": "github"
  5226. },
  5227. {
  5228. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5229. "type": "tidelift"
  5230. }
  5231. ],
  5232. "time": "2022-01-02T09:55:41+00:00"
  5233. },
  5234. {
  5235. "name": "symfony/console",
  5236. "version": "v5.4.47",
  5237. "source": {
  5238. "type": "git",
  5239. "url": "https://github.com/symfony/console.git",
  5240. "reference": "c4ba980ca61a9eb18ee6bcc73f28e475852bb1ed"
  5241. },
  5242. "dist": {
  5243. "type": "zip",
  5244. "url": "https://api.github.com/repos/symfony/console/zipball/c4ba980ca61a9eb18ee6bcc73f28e475852bb1ed",
  5245. "reference": "c4ba980ca61a9eb18ee6bcc73f28e475852bb1ed",
  5246. "shasum": "",
  5247. "mirrors": [
  5248. {
  5249. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5250. "preferred": true
  5251. }
  5252. ]
  5253. },
  5254. "require": {
  5255. "php": ">=7.2.5",
  5256. "symfony/deprecation-contracts": "^2.1|^3",
  5257. "symfony/polyfill-mbstring": "~1.0",
  5258. "symfony/polyfill-php73": "^1.9",
  5259. "symfony/polyfill-php80": "^1.16",
  5260. "symfony/service-contracts": "^1.1|^2|^3",
  5261. "symfony/string": "^5.1|^6.0"
  5262. },
  5263. "conflict": {
  5264. "psr/log": ">=3",
  5265. "symfony/dependency-injection": "<4.4",
  5266. "symfony/dotenv": "<5.1",
  5267. "symfony/event-dispatcher": "<4.4",
  5268. "symfony/lock": "<4.4",
  5269. "symfony/process": "<4.4"
  5270. },
  5271. "provide": {
  5272. "psr/log-implementation": "1.0|2.0"
  5273. },
  5274. "require-dev": {
  5275. "psr/log": "^1|^2",
  5276. "symfony/config": "^4.4|^5.0|^6.0",
  5277. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5278. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  5279. "symfony/lock": "^4.4|^5.0|^6.0",
  5280. "symfony/process": "^4.4|^5.0|^6.0",
  5281. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  5282. },
  5283. "suggest": {
  5284. "psr/log": "For using the console logger",
  5285. "symfony/event-dispatcher": "",
  5286. "symfony/lock": "",
  5287. "symfony/process": ""
  5288. },
  5289. "type": "library",
  5290. "autoload": {
  5291. "psr-4": {
  5292. "Symfony\\Component\\Console\\": ""
  5293. },
  5294. "exclude-from-classmap": [
  5295. "/Tests/"
  5296. ]
  5297. },
  5298. "notification-url": "https://packagist.org/downloads/",
  5299. "license": [
  5300. "MIT"
  5301. ],
  5302. "authors": [
  5303. {
  5304. "name": "Fabien Potencier",
  5305. "email": "fabien@symfony.com"
  5306. },
  5307. {
  5308. "name": "Symfony Community",
  5309. "homepage": "https://symfony.com/contributors"
  5310. }
  5311. ],
  5312. "description": "Eases the creation of beautiful and testable command line interfaces",
  5313. "homepage": "https://symfony.com",
  5314. "keywords": [
  5315. "cli",
  5316. "command-line",
  5317. "console",
  5318. "terminal"
  5319. ],
  5320. "support": {
  5321. "source": "https://github.com/symfony/console/tree/v5.4.47"
  5322. },
  5323. "funding": [
  5324. {
  5325. "url": "https://symfony.com/sponsor",
  5326. "type": "custom"
  5327. },
  5328. {
  5329. "url": "https://github.com/fabpot",
  5330. "type": "github"
  5331. },
  5332. {
  5333. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5334. "type": "tidelift"
  5335. }
  5336. ],
  5337. "time": "2024-11-06T11:30:55+00:00"
  5338. },
  5339. {
  5340. "name": "symfony/css-selector",
  5341. "version": "v6.0.19",
  5342. "source": {
  5343. "type": "git",
  5344. "url": "https://github.com/symfony/css-selector.git",
  5345. "reference": "f1d00bddb83a4cb2138564b2150001cb6ce272b1"
  5346. },
  5347. "dist": {
  5348. "type": "zip",
  5349. "url": "https://api.github.com/repos/symfony/css-selector/zipball/f1d00bddb83a4cb2138564b2150001cb6ce272b1",
  5350. "reference": "f1d00bddb83a4cb2138564b2150001cb6ce272b1",
  5351. "shasum": "",
  5352. "mirrors": [
  5353. {
  5354. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5355. "preferred": true
  5356. }
  5357. ]
  5358. },
  5359. "require": {
  5360. "php": ">=8.0.2"
  5361. },
  5362. "type": "library",
  5363. "autoload": {
  5364. "psr-4": {
  5365. "Symfony\\Component\\CssSelector\\": ""
  5366. },
  5367. "exclude-from-classmap": [
  5368. "/Tests/"
  5369. ]
  5370. },
  5371. "notification-url": "https://packagist.org/downloads/",
  5372. "license": [
  5373. "MIT"
  5374. ],
  5375. "authors": [
  5376. {
  5377. "name": "Fabien Potencier",
  5378. "email": "fabien@symfony.com"
  5379. },
  5380. {
  5381. "name": "Jean-François Simon",
  5382. "email": "jeanfrancois.simon@sensiolabs.com"
  5383. },
  5384. {
  5385. "name": "Symfony Community",
  5386. "homepage": "https://symfony.com/contributors"
  5387. }
  5388. ],
  5389. "description": "Converts CSS selectors to XPath expressions",
  5390. "homepage": "https://symfony.com",
  5391. "support": {
  5392. "source": "https://github.com/symfony/css-selector/tree/v6.0.19"
  5393. },
  5394. "funding": [
  5395. {
  5396. "url": "https://symfony.com/sponsor",
  5397. "type": "custom"
  5398. },
  5399. {
  5400. "url": "https://github.com/fabpot",
  5401. "type": "github"
  5402. },
  5403. {
  5404. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5405. "type": "tidelift"
  5406. }
  5407. ],
  5408. "time": "2023-01-01T08:36:10+00:00"
  5409. },
  5410. {
  5411. "name": "symfony/deprecation-contracts",
  5412. "version": "v3.0.2",
  5413. "source": {
  5414. "type": "git",
  5415. "url": "https://github.com/symfony/deprecation-contracts.git",
  5416. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c"
  5417. },
  5418. "dist": {
  5419. "type": "zip",
  5420. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  5421. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  5422. "shasum": "",
  5423. "mirrors": [
  5424. {
  5425. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5426. "preferred": true
  5427. }
  5428. ]
  5429. },
  5430. "require": {
  5431. "php": ">=8.0.2"
  5432. },
  5433. "type": "library",
  5434. "extra": {
  5435. "thanks": {
  5436. "url": "https://github.com/symfony/contracts",
  5437. "name": "symfony/contracts"
  5438. },
  5439. "branch-alias": {
  5440. "dev-main": "3.0-dev"
  5441. }
  5442. },
  5443. "autoload": {
  5444. "files": [
  5445. "function.php"
  5446. ]
  5447. },
  5448. "notification-url": "https://packagist.org/downloads/",
  5449. "license": [
  5450. "MIT"
  5451. ],
  5452. "authors": [
  5453. {
  5454. "name": "Nicolas Grekas",
  5455. "email": "p@tchwork.com"
  5456. },
  5457. {
  5458. "name": "Symfony Community",
  5459. "homepage": "https://symfony.com/contributors"
  5460. }
  5461. ],
  5462. "description": "A generic function and convention to trigger deprecation notices",
  5463. "homepage": "https://symfony.com",
  5464. "support": {
  5465. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.0.2"
  5466. },
  5467. "funding": [
  5468. {
  5469. "url": "https://symfony.com/sponsor",
  5470. "type": "custom"
  5471. },
  5472. {
  5473. "url": "https://github.com/fabpot",
  5474. "type": "github"
  5475. },
  5476. {
  5477. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5478. "type": "tidelift"
  5479. }
  5480. ],
  5481. "time": "2022-01-02T09:55:41+00:00"
  5482. },
  5483. {
  5484. "name": "symfony/error-handler",
  5485. "version": "v5.4.46",
  5486. "source": {
  5487. "type": "git",
  5488. "url": "https://github.com/symfony/error-handler.git",
  5489. "reference": "d19ede7a2cafb386be9486c580649d0f9e3d0363"
  5490. },
  5491. "dist": {
  5492. "type": "zip",
  5493. "url": "https://api.github.com/repos/symfony/error-handler/zipball/d19ede7a2cafb386be9486c580649d0f9e3d0363",
  5494. "reference": "d19ede7a2cafb386be9486c580649d0f9e3d0363",
  5495. "shasum": "",
  5496. "mirrors": [
  5497. {
  5498. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5499. "preferred": true
  5500. }
  5501. ]
  5502. },
  5503. "require": {
  5504. "php": ">=7.2.5",
  5505. "psr/log": "^1|^2|^3",
  5506. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  5507. },
  5508. "require-dev": {
  5509. "symfony/deprecation-contracts": "^2.1|^3",
  5510. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  5511. "symfony/serializer": "^4.4|^5.0|^6.0"
  5512. },
  5513. "bin": [
  5514. "Resources/bin/patch-type-declarations"
  5515. ],
  5516. "type": "library",
  5517. "autoload": {
  5518. "psr-4": {
  5519. "Symfony\\Component\\ErrorHandler\\": ""
  5520. },
  5521. "exclude-from-classmap": [
  5522. "/Tests/"
  5523. ]
  5524. },
  5525. "notification-url": "https://packagist.org/downloads/",
  5526. "license": [
  5527. "MIT"
  5528. ],
  5529. "authors": [
  5530. {
  5531. "name": "Fabien Potencier",
  5532. "email": "fabien@symfony.com"
  5533. },
  5534. {
  5535. "name": "Symfony Community",
  5536. "homepage": "https://symfony.com/contributors"
  5537. }
  5538. ],
  5539. "description": "Provides tools to manage errors and ease debugging PHP code",
  5540. "homepage": "https://symfony.com",
  5541. "support": {
  5542. "source": "https://github.com/symfony/error-handler/tree/v5.4.46"
  5543. },
  5544. "funding": [
  5545. {
  5546. "url": "https://symfony.com/sponsor",
  5547. "type": "custom"
  5548. },
  5549. {
  5550. "url": "https://github.com/fabpot",
  5551. "type": "github"
  5552. },
  5553. {
  5554. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5555. "type": "tidelift"
  5556. }
  5557. ],
  5558. "time": "2024-11-05T14:17:06+00:00"
  5559. },
  5560. {
  5561. "name": "symfony/event-dispatcher",
  5562. "version": "v6.0.19",
  5563. "source": {
  5564. "type": "git",
  5565. "url": "https://github.com/symfony/event-dispatcher.git",
  5566. "reference": "2eaf8e63bc5b8cefabd4a800157f0d0c094f677a"
  5567. },
  5568. "dist": {
  5569. "type": "zip",
  5570. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/2eaf8e63bc5b8cefabd4a800157f0d0c094f677a",
  5571. "reference": "2eaf8e63bc5b8cefabd4a800157f0d0c094f677a",
  5572. "shasum": "",
  5573. "mirrors": [
  5574. {
  5575. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5576. "preferred": true
  5577. }
  5578. ]
  5579. },
  5580. "require": {
  5581. "php": ">=8.0.2",
  5582. "symfony/event-dispatcher-contracts": "^2|^3"
  5583. },
  5584. "conflict": {
  5585. "symfony/dependency-injection": "<5.4"
  5586. },
  5587. "provide": {
  5588. "psr/event-dispatcher-implementation": "1.0",
  5589. "symfony/event-dispatcher-implementation": "2.0|3.0"
  5590. },
  5591. "require-dev": {
  5592. "psr/log": "^1|^2|^3",
  5593. "symfony/config": "^5.4|^6.0",
  5594. "symfony/dependency-injection": "^5.4|^6.0",
  5595. "symfony/error-handler": "^5.4|^6.0",
  5596. "symfony/expression-language": "^5.4|^6.0",
  5597. "symfony/http-foundation": "^5.4|^6.0",
  5598. "symfony/service-contracts": "^1.1|^2|^3",
  5599. "symfony/stopwatch": "^5.4|^6.0"
  5600. },
  5601. "suggest": {
  5602. "symfony/dependency-injection": "",
  5603. "symfony/http-kernel": ""
  5604. },
  5605. "type": "library",
  5606. "autoload": {
  5607. "psr-4": {
  5608. "Symfony\\Component\\EventDispatcher\\": ""
  5609. },
  5610. "exclude-from-classmap": [
  5611. "/Tests/"
  5612. ]
  5613. },
  5614. "notification-url": "https://packagist.org/downloads/",
  5615. "license": [
  5616. "MIT"
  5617. ],
  5618. "authors": [
  5619. {
  5620. "name": "Fabien Potencier",
  5621. "email": "fabien@symfony.com"
  5622. },
  5623. {
  5624. "name": "Symfony Community",
  5625. "homepage": "https://symfony.com/contributors"
  5626. }
  5627. ],
  5628. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5629. "homepage": "https://symfony.com",
  5630. "support": {
  5631. "source": "https://github.com/symfony/event-dispatcher/tree/v6.0.19"
  5632. },
  5633. "funding": [
  5634. {
  5635. "url": "https://symfony.com/sponsor",
  5636. "type": "custom"
  5637. },
  5638. {
  5639. "url": "https://github.com/fabpot",
  5640. "type": "github"
  5641. },
  5642. {
  5643. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5644. "type": "tidelift"
  5645. }
  5646. ],
  5647. "time": "2023-01-01T08:36:10+00:00"
  5648. },
  5649. {
  5650. "name": "symfony/event-dispatcher-contracts",
  5651. "version": "v3.0.2",
  5652. "source": {
  5653. "type": "git",
  5654. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5655. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051"
  5656. },
  5657. "dist": {
  5658. "type": "zip",
  5659. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7bc61cc2db649b4637d331240c5346dcc7708051",
  5660. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051",
  5661. "shasum": "",
  5662. "mirrors": [
  5663. {
  5664. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5665. "preferred": true
  5666. }
  5667. ]
  5668. },
  5669. "require": {
  5670. "php": ">=8.0.2",
  5671. "psr/event-dispatcher": "^1"
  5672. },
  5673. "suggest": {
  5674. "symfony/event-dispatcher-implementation": ""
  5675. },
  5676. "type": "library",
  5677. "extra": {
  5678. "thanks": {
  5679. "url": "https://github.com/symfony/contracts",
  5680. "name": "symfony/contracts"
  5681. },
  5682. "branch-alias": {
  5683. "dev-main": "3.0-dev"
  5684. }
  5685. },
  5686. "autoload": {
  5687. "psr-4": {
  5688. "Symfony\\Contracts\\EventDispatcher\\": ""
  5689. }
  5690. },
  5691. "notification-url": "https://packagist.org/downloads/",
  5692. "license": [
  5693. "MIT"
  5694. ],
  5695. "authors": [
  5696. {
  5697. "name": "Nicolas Grekas",
  5698. "email": "p@tchwork.com"
  5699. },
  5700. {
  5701. "name": "Symfony Community",
  5702. "homepage": "https://symfony.com/contributors"
  5703. }
  5704. ],
  5705. "description": "Generic abstractions related to dispatching event",
  5706. "homepage": "https://symfony.com",
  5707. "keywords": [
  5708. "abstractions",
  5709. "contracts",
  5710. "decoupling",
  5711. "interfaces",
  5712. "interoperability",
  5713. "standards"
  5714. ],
  5715. "support": {
  5716. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.0.2"
  5717. },
  5718. "funding": [
  5719. {
  5720. "url": "https://symfony.com/sponsor",
  5721. "type": "custom"
  5722. },
  5723. {
  5724. "url": "https://github.com/fabpot",
  5725. "type": "github"
  5726. },
  5727. {
  5728. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5729. "type": "tidelift"
  5730. }
  5731. ],
  5732. "time": "2022-01-02T09:55:41+00:00"
  5733. },
  5734. {
  5735. "name": "symfony/finder",
  5736. "version": "v5.4.45",
  5737. "source": {
  5738. "type": "git",
  5739. "url": "https://github.com/symfony/finder.git",
  5740. "reference": "63741784cd7b9967975eec610b256eed3ede022b"
  5741. },
  5742. "dist": {
  5743. "type": "zip",
  5744. "url": "https://api.github.com/repos/symfony/finder/zipball/63741784cd7b9967975eec610b256eed3ede022b",
  5745. "reference": "63741784cd7b9967975eec610b256eed3ede022b",
  5746. "shasum": "",
  5747. "mirrors": [
  5748. {
  5749. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5750. "preferred": true
  5751. }
  5752. ]
  5753. },
  5754. "require": {
  5755. "php": ">=7.2.5",
  5756. "symfony/deprecation-contracts": "^2.1|^3",
  5757. "symfony/polyfill-php80": "^1.16"
  5758. },
  5759. "type": "library",
  5760. "autoload": {
  5761. "psr-4": {
  5762. "Symfony\\Component\\Finder\\": ""
  5763. },
  5764. "exclude-from-classmap": [
  5765. "/Tests/"
  5766. ]
  5767. },
  5768. "notification-url": "https://packagist.org/downloads/",
  5769. "license": [
  5770. "MIT"
  5771. ],
  5772. "authors": [
  5773. {
  5774. "name": "Fabien Potencier",
  5775. "email": "fabien@symfony.com"
  5776. },
  5777. {
  5778. "name": "Symfony Community",
  5779. "homepage": "https://symfony.com/contributors"
  5780. }
  5781. ],
  5782. "description": "Finds files and directories via an intuitive fluent interface",
  5783. "homepage": "https://symfony.com",
  5784. "support": {
  5785. "source": "https://github.com/symfony/finder/tree/v5.4.45"
  5786. },
  5787. "funding": [
  5788. {
  5789. "url": "https://symfony.com/sponsor",
  5790. "type": "custom"
  5791. },
  5792. {
  5793. "url": "https://github.com/fabpot",
  5794. "type": "github"
  5795. },
  5796. {
  5797. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5798. "type": "tidelift"
  5799. }
  5800. ],
  5801. "time": "2024-09-28T13:32:08+00:00"
  5802. },
  5803. {
  5804. "name": "symfony/http-foundation",
  5805. "version": "v5.4.50",
  5806. "source": {
  5807. "type": "git",
  5808. "url": "https://github.com/symfony/http-foundation.git",
  5809. "reference": "1a0706e8b8041046052ea2695eb8aeee04f97609"
  5810. },
  5811. "dist": {
  5812. "type": "zip",
  5813. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/1a0706e8b8041046052ea2695eb8aeee04f97609",
  5814. "reference": "1a0706e8b8041046052ea2695eb8aeee04f97609",
  5815. "shasum": "",
  5816. "mirrors": [
  5817. {
  5818. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5819. "preferred": true
  5820. }
  5821. ]
  5822. },
  5823. "require": {
  5824. "php": ">=7.2.5",
  5825. "symfony/deprecation-contracts": "^2.1|^3",
  5826. "symfony/polyfill-mbstring": "~1.1",
  5827. "symfony/polyfill-php80": "^1.16"
  5828. },
  5829. "require-dev": {
  5830. "predis/predis": "^1.0|^2.0",
  5831. "symfony/cache": "^4.4|^5.0|^6.0",
  5832. "symfony/dependency-injection": "^5.4|^6.0",
  5833. "symfony/expression-language": "^4.4|^5.0|^6.0",
  5834. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  5835. "symfony/mime": "^4.4|^5.0|^6.0",
  5836. "symfony/rate-limiter": "^5.2|^6.0"
  5837. },
  5838. "suggest": {
  5839. "symfony/mime": "To use the file extension guesser"
  5840. },
  5841. "type": "library",
  5842. "autoload": {
  5843. "psr-4": {
  5844. "Symfony\\Component\\HttpFoundation\\": ""
  5845. },
  5846. "exclude-from-classmap": [
  5847. "/Tests/"
  5848. ]
  5849. },
  5850. "notification-url": "https://packagist.org/downloads/",
  5851. "license": [
  5852. "MIT"
  5853. ],
  5854. "authors": [
  5855. {
  5856. "name": "Fabien Potencier",
  5857. "email": "fabien@symfony.com"
  5858. },
  5859. {
  5860. "name": "Symfony Community",
  5861. "homepage": "https://symfony.com/contributors"
  5862. }
  5863. ],
  5864. "description": "Defines an object-oriented layer for the HTTP specification",
  5865. "homepage": "https://symfony.com",
  5866. "support": {
  5867. "source": "https://github.com/symfony/http-foundation/tree/v5.4.50"
  5868. },
  5869. "funding": [
  5870. {
  5871. "url": "https://symfony.com/sponsor",
  5872. "type": "custom"
  5873. },
  5874. {
  5875. "url": "https://github.com/fabpot",
  5876. "type": "github"
  5877. },
  5878. {
  5879. "url": "https://github.com/nicolas-grekas",
  5880. "type": "github"
  5881. },
  5882. {
  5883. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5884. "type": "tidelift"
  5885. }
  5886. ],
  5887. "time": "2025-11-03T12:58:48+00:00"
  5888. },
  5889. {
  5890. "name": "symfony/http-kernel",
  5891. "version": "v5.4.50",
  5892. "source": {
  5893. "type": "git",
  5894. "url": "https://github.com/symfony/http-kernel.git",
  5895. "reference": "2fe5cf994d7e1e189258b7f7d3395cc5999a9762"
  5896. },
  5897. "dist": {
  5898. "type": "zip",
  5899. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/2fe5cf994d7e1e189258b7f7d3395cc5999a9762",
  5900. "reference": "2fe5cf994d7e1e189258b7f7d3395cc5999a9762",
  5901. "shasum": "",
  5902. "mirrors": [
  5903. {
  5904. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5905. "preferred": true
  5906. }
  5907. ]
  5908. },
  5909. "require": {
  5910. "php": ">=7.2.5",
  5911. "psr/log": "^1|^2",
  5912. "symfony/deprecation-contracts": "^2.1|^3",
  5913. "symfony/error-handler": "^4.4|^5.0|^6.0",
  5914. "symfony/event-dispatcher": "^5.0|^6.0",
  5915. "symfony/http-foundation": "^5.4.21|^6.2.7",
  5916. "symfony/polyfill-ctype": "^1.8",
  5917. "symfony/polyfill-php73": "^1.9",
  5918. "symfony/polyfill-php80": "^1.16"
  5919. },
  5920. "conflict": {
  5921. "symfony/browser-kit": "<5.4",
  5922. "symfony/cache": "<5.0",
  5923. "symfony/config": "<5.0",
  5924. "symfony/console": "<4.4",
  5925. "symfony/dependency-injection": "<5.3",
  5926. "symfony/doctrine-bridge": "<5.0",
  5927. "symfony/form": "<5.0",
  5928. "symfony/http-client": "<5.0",
  5929. "symfony/mailer": "<5.0",
  5930. "symfony/messenger": "<5.0",
  5931. "symfony/translation": "<5.0",
  5932. "symfony/twig-bridge": "<5.0",
  5933. "symfony/validator": "<5.0",
  5934. "twig/twig": "<2.13"
  5935. },
  5936. "provide": {
  5937. "psr/log-implementation": "1.0|2.0"
  5938. },
  5939. "require-dev": {
  5940. "psr/cache": "^1.0|^2.0|^3.0",
  5941. "symfony/browser-kit": "^5.4|^6.0",
  5942. "symfony/config": "^5.0|^6.0",
  5943. "symfony/console": "^4.4|^5.0|^6.0",
  5944. "symfony/css-selector": "^4.4|^5.0|^6.0",
  5945. "symfony/dependency-injection": "^5.3|^6.0",
  5946. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  5947. "symfony/expression-language": "^4.4|^5.0|^6.0",
  5948. "symfony/finder": "^4.4|^5.0|^6.0",
  5949. "symfony/http-client-contracts": "^1.1|^2|^3",
  5950. "symfony/process": "^4.4|^5.0|^6.0",
  5951. "symfony/routing": "^4.4|^5.0|^6.0",
  5952. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  5953. "symfony/translation": "^4.4|^5.0|^6.0",
  5954. "symfony/translation-contracts": "^1.1|^2|^3",
  5955. "symfony/var-dumper": "^4.4.31|^5.4",
  5956. "twig/twig": "^2.13|^3.0.4"
  5957. },
  5958. "suggest": {
  5959. "symfony/browser-kit": "",
  5960. "symfony/config": "",
  5961. "symfony/console": "",
  5962. "symfony/dependency-injection": ""
  5963. },
  5964. "type": "library",
  5965. "autoload": {
  5966. "psr-4": {
  5967. "Symfony\\Component\\HttpKernel\\": ""
  5968. },
  5969. "exclude-from-classmap": [
  5970. "/Tests/"
  5971. ]
  5972. },
  5973. "notification-url": "https://packagist.org/downloads/",
  5974. "license": [
  5975. "MIT"
  5976. ],
  5977. "authors": [
  5978. {
  5979. "name": "Fabien Potencier",
  5980. "email": "fabien@symfony.com"
  5981. },
  5982. {
  5983. "name": "Symfony Community",
  5984. "homepage": "https://symfony.com/contributors"
  5985. }
  5986. ],
  5987. "description": "Provides a structured process for converting a Request into a Response",
  5988. "homepage": "https://symfony.com",
  5989. "support": {
  5990. "source": "https://github.com/symfony/http-kernel/tree/v5.4.50"
  5991. },
  5992. "funding": [
  5993. {
  5994. "url": "https://symfony.com/sponsor",
  5995. "type": "custom"
  5996. },
  5997. {
  5998. "url": "https://github.com/fabpot",
  5999. "type": "github"
  6000. },
  6001. {
  6002. "url": "https://github.com/nicolas-grekas",
  6003. "type": "github"
  6004. },
  6005. {
  6006. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6007. "type": "tidelift"
  6008. }
  6009. ],
  6010. "time": "2025-11-12T11:09:00+00:00"
  6011. },
  6012. {
  6013. "name": "symfony/mime",
  6014. "version": "v5.4.45",
  6015. "source": {
  6016. "type": "git",
  6017. "url": "https://github.com/symfony/mime.git",
  6018. "reference": "8c1b9b3e5b52981551fc6044539af1d974e39064"
  6019. },
  6020. "dist": {
  6021. "type": "zip",
  6022. "url": "https://api.github.com/repos/symfony/mime/zipball/8c1b9b3e5b52981551fc6044539af1d974e39064",
  6023. "reference": "8c1b9b3e5b52981551fc6044539af1d974e39064",
  6024. "shasum": "",
  6025. "mirrors": [
  6026. {
  6027. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6028. "preferred": true
  6029. }
  6030. ]
  6031. },
  6032. "require": {
  6033. "php": ">=7.2.5",
  6034. "symfony/deprecation-contracts": "^2.1|^3",
  6035. "symfony/polyfill-intl-idn": "^1.10",
  6036. "symfony/polyfill-mbstring": "^1.0",
  6037. "symfony/polyfill-php80": "^1.16"
  6038. },
  6039. "conflict": {
  6040. "egulias/email-validator": "~3.0.0",
  6041. "phpdocumentor/reflection-docblock": "<3.2.2",
  6042. "phpdocumentor/type-resolver": "<1.4.0",
  6043. "symfony/mailer": "<4.4",
  6044. "symfony/serializer": "<5.4.35|>=6,<6.3.12|>=6.4,<6.4.3"
  6045. },
  6046. "require-dev": {
  6047. "egulias/email-validator": "^2.1.10|^3.1|^4",
  6048. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6049. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6050. "symfony/process": "^5.4|^6.4",
  6051. "symfony/property-access": "^4.4|^5.1|^6.0",
  6052. "symfony/property-info": "^4.4|^5.1|^6.0",
  6053. "symfony/serializer": "^5.4.35|~6.3.12|^6.4.3"
  6054. },
  6055. "type": "library",
  6056. "autoload": {
  6057. "psr-4": {
  6058. "Symfony\\Component\\Mime\\": ""
  6059. },
  6060. "exclude-from-classmap": [
  6061. "/Tests/"
  6062. ]
  6063. },
  6064. "notification-url": "https://packagist.org/downloads/",
  6065. "license": [
  6066. "MIT"
  6067. ],
  6068. "authors": [
  6069. {
  6070. "name": "Fabien Potencier",
  6071. "email": "fabien@symfony.com"
  6072. },
  6073. {
  6074. "name": "Symfony Community",
  6075. "homepage": "https://symfony.com/contributors"
  6076. }
  6077. ],
  6078. "description": "Allows manipulating MIME messages",
  6079. "homepage": "https://symfony.com",
  6080. "keywords": [
  6081. "mime",
  6082. "mime-type"
  6083. ],
  6084. "support": {
  6085. "source": "https://github.com/symfony/mime/tree/v5.4.45"
  6086. },
  6087. "funding": [
  6088. {
  6089. "url": "https://symfony.com/sponsor",
  6090. "type": "custom"
  6091. },
  6092. {
  6093. "url": "https://github.com/fabpot",
  6094. "type": "github"
  6095. },
  6096. {
  6097. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6098. "type": "tidelift"
  6099. }
  6100. ],
  6101. "time": "2024-10-23T20:18:32+00:00"
  6102. },
  6103. {
  6104. "name": "symfony/polyfill-ctype",
  6105. "version": "v1.32.0",
  6106. "source": {
  6107. "type": "git",
  6108. "url": "https://github.com/symfony/polyfill-ctype.git",
  6109. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  6110. },
  6111. "dist": {
  6112. "type": "zip",
  6113. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  6114. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  6115. "shasum": "",
  6116. "mirrors": [
  6117. {
  6118. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6119. "preferred": true
  6120. }
  6121. ]
  6122. },
  6123. "require": {
  6124. "php": ">=7.2"
  6125. },
  6126. "provide": {
  6127. "ext-ctype": "*"
  6128. },
  6129. "suggest": {
  6130. "ext-ctype": "For best performance"
  6131. },
  6132. "type": "library",
  6133. "extra": {
  6134. "thanks": {
  6135. "url": "https://github.com/symfony/polyfill",
  6136. "name": "symfony/polyfill"
  6137. }
  6138. },
  6139. "autoload": {
  6140. "files": [
  6141. "bootstrap.php"
  6142. ],
  6143. "psr-4": {
  6144. "Symfony\\Polyfill\\Ctype\\": ""
  6145. }
  6146. },
  6147. "notification-url": "https://packagist.org/downloads/",
  6148. "license": [
  6149. "MIT"
  6150. ],
  6151. "authors": [
  6152. {
  6153. "name": "Gert de Pagter",
  6154. "email": "BackEndTea@gmail.com"
  6155. },
  6156. {
  6157. "name": "Symfony Community",
  6158. "homepage": "https://symfony.com/contributors"
  6159. }
  6160. ],
  6161. "description": "Symfony polyfill for ctype functions",
  6162. "homepage": "https://symfony.com",
  6163. "keywords": [
  6164. "compatibility",
  6165. "ctype",
  6166. "polyfill",
  6167. "portable"
  6168. ],
  6169. "support": {
  6170. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.32.0"
  6171. },
  6172. "funding": [
  6173. {
  6174. "url": "https://symfony.com/sponsor",
  6175. "type": "custom"
  6176. },
  6177. {
  6178. "url": "https://github.com/fabpot",
  6179. "type": "github"
  6180. },
  6181. {
  6182. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6183. "type": "tidelift"
  6184. }
  6185. ],
  6186. "time": "2024-09-09T11:45:10+00:00"
  6187. },
  6188. {
  6189. "name": "symfony/polyfill-iconv",
  6190. "version": "v1.32.0",
  6191. "source": {
  6192. "type": "git",
  6193. "url": "https://github.com/symfony/polyfill-iconv.git",
  6194. "reference": "5f3b930437ae03ae5dff61269024d8ea1b3774aa"
  6195. },
  6196. "dist": {
  6197. "type": "zip",
  6198. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/5f3b930437ae03ae5dff61269024d8ea1b3774aa",
  6199. "reference": "5f3b930437ae03ae5dff61269024d8ea1b3774aa",
  6200. "shasum": "",
  6201. "mirrors": [
  6202. {
  6203. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6204. "preferred": true
  6205. }
  6206. ]
  6207. },
  6208. "require": {
  6209. "php": ">=7.2"
  6210. },
  6211. "provide": {
  6212. "ext-iconv": "*"
  6213. },
  6214. "suggest": {
  6215. "ext-iconv": "For best performance"
  6216. },
  6217. "type": "library",
  6218. "extra": {
  6219. "thanks": {
  6220. "url": "https://github.com/symfony/polyfill",
  6221. "name": "symfony/polyfill"
  6222. }
  6223. },
  6224. "autoload": {
  6225. "files": [
  6226. "bootstrap.php"
  6227. ],
  6228. "psr-4": {
  6229. "Symfony\\Polyfill\\Iconv\\": ""
  6230. }
  6231. },
  6232. "notification-url": "https://packagist.org/downloads/",
  6233. "license": [
  6234. "MIT"
  6235. ],
  6236. "authors": [
  6237. {
  6238. "name": "Nicolas Grekas",
  6239. "email": "p@tchwork.com"
  6240. },
  6241. {
  6242. "name": "Symfony Community",
  6243. "homepage": "https://symfony.com/contributors"
  6244. }
  6245. ],
  6246. "description": "Symfony polyfill for the Iconv extension",
  6247. "homepage": "https://symfony.com",
  6248. "keywords": [
  6249. "compatibility",
  6250. "iconv",
  6251. "polyfill",
  6252. "portable",
  6253. "shim"
  6254. ],
  6255. "support": {
  6256. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.32.0"
  6257. },
  6258. "funding": [
  6259. {
  6260. "url": "https://symfony.com/sponsor",
  6261. "type": "custom"
  6262. },
  6263. {
  6264. "url": "https://github.com/fabpot",
  6265. "type": "github"
  6266. },
  6267. {
  6268. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6269. "type": "tidelift"
  6270. }
  6271. ],
  6272. "time": "2024-09-17T14:58:18+00:00"
  6273. },
  6274. {
  6275. "name": "symfony/polyfill-intl-grapheme",
  6276. "version": "v1.33.0",
  6277. "source": {
  6278. "type": "git",
  6279. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6280. "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70"
  6281. },
  6282. "dist": {
  6283. "type": "zip",
  6284. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/380872130d3a5dd3ace2f4010d95125fde5d5c70",
  6285. "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70",
  6286. "shasum": "",
  6287. "mirrors": [
  6288. {
  6289. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6290. "preferred": true
  6291. }
  6292. ]
  6293. },
  6294. "require": {
  6295. "php": ">=7.2"
  6296. },
  6297. "suggest": {
  6298. "ext-intl": "For best performance"
  6299. },
  6300. "type": "library",
  6301. "extra": {
  6302. "thanks": {
  6303. "url": "https://github.com/symfony/polyfill",
  6304. "name": "symfony/polyfill"
  6305. }
  6306. },
  6307. "autoload": {
  6308. "files": [
  6309. "bootstrap.php"
  6310. ],
  6311. "psr-4": {
  6312. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6313. }
  6314. },
  6315. "notification-url": "https://packagist.org/downloads/",
  6316. "license": [
  6317. "MIT"
  6318. ],
  6319. "authors": [
  6320. {
  6321. "name": "Nicolas Grekas",
  6322. "email": "p@tchwork.com"
  6323. },
  6324. {
  6325. "name": "Symfony Community",
  6326. "homepage": "https://symfony.com/contributors"
  6327. }
  6328. ],
  6329. "description": "Symfony polyfill for intl's grapheme_* functions",
  6330. "homepage": "https://symfony.com",
  6331. "keywords": [
  6332. "compatibility",
  6333. "grapheme",
  6334. "intl",
  6335. "polyfill",
  6336. "portable",
  6337. "shim"
  6338. ],
  6339. "support": {
  6340. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.33.0"
  6341. },
  6342. "funding": [
  6343. {
  6344. "url": "https://symfony.com/sponsor",
  6345. "type": "custom"
  6346. },
  6347. {
  6348. "url": "https://github.com/fabpot",
  6349. "type": "github"
  6350. },
  6351. {
  6352. "url": "https://github.com/nicolas-grekas",
  6353. "type": "github"
  6354. },
  6355. {
  6356. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6357. "type": "tidelift"
  6358. }
  6359. ],
  6360. "time": "2025-06-27T09:58:17+00:00"
  6361. },
  6362. {
  6363. "name": "symfony/polyfill-intl-idn",
  6364. "version": "v1.32.0",
  6365. "source": {
  6366. "type": "git",
  6367. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6368. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3"
  6369. },
  6370. "dist": {
  6371. "type": "zip",
  6372. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  6373. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  6374. "shasum": "",
  6375. "mirrors": [
  6376. {
  6377. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6378. "preferred": true
  6379. }
  6380. ]
  6381. },
  6382. "require": {
  6383. "php": ">=7.2",
  6384. "symfony/polyfill-intl-normalizer": "^1.10"
  6385. },
  6386. "suggest": {
  6387. "ext-intl": "For best performance"
  6388. },
  6389. "type": "library",
  6390. "extra": {
  6391. "thanks": {
  6392. "url": "https://github.com/symfony/polyfill",
  6393. "name": "symfony/polyfill"
  6394. }
  6395. },
  6396. "autoload": {
  6397. "files": [
  6398. "bootstrap.php"
  6399. ],
  6400. "psr-4": {
  6401. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6402. }
  6403. },
  6404. "notification-url": "https://packagist.org/downloads/",
  6405. "license": [
  6406. "MIT"
  6407. ],
  6408. "authors": [
  6409. {
  6410. "name": "Laurent Bassin",
  6411. "email": "laurent@bassin.info"
  6412. },
  6413. {
  6414. "name": "Trevor Rowbotham",
  6415. "email": "trevor.rowbotham@pm.me"
  6416. },
  6417. {
  6418. "name": "Symfony Community",
  6419. "homepage": "https://symfony.com/contributors"
  6420. }
  6421. ],
  6422. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6423. "homepage": "https://symfony.com",
  6424. "keywords": [
  6425. "compatibility",
  6426. "idn",
  6427. "intl",
  6428. "polyfill",
  6429. "portable",
  6430. "shim"
  6431. ],
  6432. "support": {
  6433. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.32.0"
  6434. },
  6435. "funding": [
  6436. {
  6437. "url": "https://symfony.com/sponsor",
  6438. "type": "custom"
  6439. },
  6440. {
  6441. "url": "https://github.com/fabpot",
  6442. "type": "github"
  6443. },
  6444. {
  6445. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6446. "type": "tidelift"
  6447. }
  6448. ],
  6449. "time": "2024-09-10T14:38:51+00:00"
  6450. },
  6451. {
  6452. "name": "symfony/polyfill-intl-normalizer",
  6453. "version": "v1.32.0",
  6454. "source": {
  6455. "type": "git",
  6456. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6457. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  6458. },
  6459. "dist": {
  6460. "type": "zip",
  6461. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  6462. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  6463. "shasum": "",
  6464. "mirrors": [
  6465. {
  6466. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6467. "preferred": true
  6468. }
  6469. ]
  6470. },
  6471. "require": {
  6472. "php": ">=7.2"
  6473. },
  6474. "suggest": {
  6475. "ext-intl": "For best performance"
  6476. },
  6477. "type": "library",
  6478. "extra": {
  6479. "thanks": {
  6480. "url": "https://github.com/symfony/polyfill",
  6481. "name": "symfony/polyfill"
  6482. }
  6483. },
  6484. "autoload": {
  6485. "files": [
  6486. "bootstrap.php"
  6487. ],
  6488. "psr-4": {
  6489. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6490. },
  6491. "classmap": [
  6492. "Resources/stubs"
  6493. ]
  6494. },
  6495. "notification-url": "https://packagist.org/downloads/",
  6496. "license": [
  6497. "MIT"
  6498. ],
  6499. "authors": [
  6500. {
  6501. "name": "Nicolas Grekas",
  6502. "email": "p@tchwork.com"
  6503. },
  6504. {
  6505. "name": "Symfony Community",
  6506. "homepage": "https://symfony.com/contributors"
  6507. }
  6508. ],
  6509. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6510. "homepage": "https://symfony.com",
  6511. "keywords": [
  6512. "compatibility",
  6513. "intl",
  6514. "normalizer",
  6515. "polyfill",
  6516. "portable",
  6517. "shim"
  6518. ],
  6519. "support": {
  6520. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.32.0"
  6521. },
  6522. "funding": [
  6523. {
  6524. "url": "https://symfony.com/sponsor",
  6525. "type": "custom"
  6526. },
  6527. {
  6528. "url": "https://github.com/fabpot",
  6529. "type": "github"
  6530. },
  6531. {
  6532. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6533. "type": "tidelift"
  6534. }
  6535. ],
  6536. "time": "2024-09-09T11:45:10+00:00"
  6537. },
  6538. {
  6539. "name": "symfony/polyfill-mbstring",
  6540. "version": "v1.32.0",
  6541. "source": {
  6542. "type": "git",
  6543. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6544. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
  6545. },
  6546. "dist": {
  6547. "type": "zip",
  6548. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
  6549. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
  6550. "shasum": "",
  6551. "mirrors": [
  6552. {
  6553. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6554. "preferred": true
  6555. }
  6556. ]
  6557. },
  6558. "require": {
  6559. "ext-iconv": "*",
  6560. "php": ">=7.2"
  6561. },
  6562. "provide": {
  6563. "ext-mbstring": "*"
  6564. },
  6565. "suggest": {
  6566. "ext-mbstring": "For best performance"
  6567. },
  6568. "type": "library",
  6569. "extra": {
  6570. "thanks": {
  6571. "url": "https://github.com/symfony/polyfill",
  6572. "name": "symfony/polyfill"
  6573. }
  6574. },
  6575. "autoload": {
  6576. "files": [
  6577. "bootstrap.php"
  6578. ],
  6579. "psr-4": {
  6580. "Symfony\\Polyfill\\Mbstring\\": ""
  6581. }
  6582. },
  6583. "notification-url": "https://packagist.org/downloads/",
  6584. "license": [
  6585. "MIT"
  6586. ],
  6587. "authors": [
  6588. {
  6589. "name": "Nicolas Grekas",
  6590. "email": "p@tchwork.com"
  6591. },
  6592. {
  6593. "name": "Symfony Community",
  6594. "homepage": "https://symfony.com/contributors"
  6595. }
  6596. ],
  6597. "description": "Symfony polyfill for the Mbstring extension",
  6598. "homepage": "https://symfony.com",
  6599. "keywords": [
  6600. "compatibility",
  6601. "mbstring",
  6602. "polyfill",
  6603. "portable",
  6604. "shim"
  6605. ],
  6606. "support": {
  6607. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.32.0"
  6608. },
  6609. "funding": [
  6610. {
  6611. "url": "https://symfony.com/sponsor",
  6612. "type": "custom"
  6613. },
  6614. {
  6615. "url": "https://github.com/fabpot",
  6616. "type": "github"
  6617. },
  6618. {
  6619. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6620. "type": "tidelift"
  6621. }
  6622. ],
  6623. "time": "2024-12-23T08:48:59+00:00"
  6624. },
  6625. {
  6626. "name": "symfony/polyfill-php73",
  6627. "version": "v1.32.0",
  6628. "source": {
  6629. "type": "git",
  6630. "url": "https://github.com/symfony/polyfill-php73.git",
  6631. "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb"
  6632. },
  6633. "dist": {
  6634. "type": "zip",
  6635. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
  6636. "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
  6637. "shasum": "",
  6638. "mirrors": [
  6639. {
  6640. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6641. "preferred": true
  6642. }
  6643. ]
  6644. },
  6645. "require": {
  6646. "php": ">=7.2"
  6647. },
  6648. "type": "library",
  6649. "extra": {
  6650. "thanks": {
  6651. "url": "https://github.com/symfony/polyfill",
  6652. "name": "symfony/polyfill"
  6653. }
  6654. },
  6655. "autoload": {
  6656. "files": [
  6657. "bootstrap.php"
  6658. ],
  6659. "psr-4": {
  6660. "Symfony\\Polyfill\\Php73\\": ""
  6661. },
  6662. "classmap": [
  6663. "Resources/stubs"
  6664. ]
  6665. },
  6666. "notification-url": "https://packagist.org/downloads/",
  6667. "license": [
  6668. "MIT"
  6669. ],
  6670. "authors": [
  6671. {
  6672. "name": "Nicolas Grekas",
  6673. "email": "p@tchwork.com"
  6674. },
  6675. {
  6676. "name": "Symfony Community",
  6677. "homepage": "https://symfony.com/contributors"
  6678. }
  6679. ],
  6680. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  6681. "homepage": "https://symfony.com",
  6682. "keywords": [
  6683. "compatibility",
  6684. "polyfill",
  6685. "portable",
  6686. "shim"
  6687. ],
  6688. "support": {
  6689. "source": "https://github.com/symfony/polyfill-php73/tree/v1.32.0"
  6690. },
  6691. "funding": [
  6692. {
  6693. "url": "https://symfony.com/sponsor",
  6694. "type": "custom"
  6695. },
  6696. {
  6697. "url": "https://github.com/fabpot",
  6698. "type": "github"
  6699. },
  6700. {
  6701. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6702. "type": "tidelift"
  6703. }
  6704. ],
  6705. "time": "2024-09-09T11:45:10+00:00"
  6706. },
  6707. {
  6708. "name": "symfony/polyfill-php80",
  6709. "version": "v1.33.0",
  6710. "source": {
  6711. "type": "git",
  6712. "url": "https://github.com/symfony/polyfill-php80.git",
  6713. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608"
  6714. },
  6715. "dist": {
  6716. "type": "zip",
  6717. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  6718. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  6719. "shasum": "",
  6720. "mirrors": [
  6721. {
  6722. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6723. "preferred": true
  6724. }
  6725. ]
  6726. },
  6727. "require": {
  6728. "php": ">=7.2"
  6729. },
  6730. "type": "library",
  6731. "extra": {
  6732. "thanks": {
  6733. "url": "https://github.com/symfony/polyfill",
  6734. "name": "symfony/polyfill"
  6735. }
  6736. },
  6737. "autoload": {
  6738. "files": [
  6739. "bootstrap.php"
  6740. ],
  6741. "psr-4": {
  6742. "Symfony\\Polyfill\\Php80\\": ""
  6743. },
  6744. "classmap": [
  6745. "Resources/stubs"
  6746. ]
  6747. },
  6748. "notification-url": "https://packagist.org/downloads/",
  6749. "license": [
  6750. "MIT"
  6751. ],
  6752. "authors": [
  6753. {
  6754. "name": "Ion Bazan",
  6755. "email": "ion.bazan@gmail.com"
  6756. },
  6757. {
  6758. "name": "Nicolas Grekas",
  6759. "email": "p@tchwork.com"
  6760. },
  6761. {
  6762. "name": "Symfony Community",
  6763. "homepage": "https://symfony.com/contributors"
  6764. }
  6765. ],
  6766. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6767. "homepage": "https://symfony.com",
  6768. "keywords": [
  6769. "compatibility",
  6770. "polyfill",
  6771. "portable",
  6772. "shim"
  6773. ],
  6774. "support": {
  6775. "source": "https://github.com/symfony/polyfill-php80/tree/v1.33.0"
  6776. },
  6777. "funding": [
  6778. {
  6779. "url": "https://symfony.com/sponsor",
  6780. "type": "custom"
  6781. },
  6782. {
  6783. "url": "https://github.com/fabpot",
  6784. "type": "github"
  6785. },
  6786. {
  6787. "url": "https://github.com/nicolas-grekas",
  6788. "type": "github"
  6789. },
  6790. {
  6791. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6792. "type": "tidelift"
  6793. }
  6794. ],
  6795. "time": "2025-01-02T08:10:11+00:00"
  6796. },
  6797. {
  6798. "name": "symfony/polyfill-php81",
  6799. "version": "v1.32.0",
  6800. "source": {
  6801. "type": "git",
  6802. "url": "https://github.com/symfony/polyfill-php81.git",
  6803. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  6804. },
  6805. "dist": {
  6806. "type": "zip",
  6807. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  6808. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  6809. "shasum": "",
  6810. "mirrors": [
  6811. {
  6812. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6813. "preferred": true
  6814. }
  6815. ]
  6816. },
  6817. "require": {
  6818. "php": ">=7.2"
  6819. },
  6820. "type": "library",
  6821. "extra": {
  6822. "thanks": {
  6823. "url": "https://github.com/symfony/polyfill",
  6824. "name": "symfony/polyfill"
  6825. }
  6826. },
  6827. "autoload": {
  6828. "files": [
  6829. "bootstrap.php"
  6830. ],
  6831. "psr-4": {
  6832. "Symfony\\Polyfill\\Php81\\": ""
  6833. },
  6834. "classmap": [
  6835. "Resources/stubs"
  6836. ]
  6837. },
  6838. "notification-url": "https://packagist.org/downloads/",
  6839. "license": [
  6840. "MIT"
  6841. ],
  6842. "authors": [
  6843. {
  6844. "name": "Nicolas Grekas",
  6845. "email": "p@tchwork.com"
  6846. },
  6847. {
  6848. "name": "Symfony Community",
  6849. "homepage": "https://symfony.com/contributors"
  6850. }
  6851. ],
  6852. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  6853. "homepage": "https://symfony.com",
  6854. "keywords": [
  6855. "compatibility",
  6856. "polyfill",
  6857. "portable",
  6858. "shim"
  6859. ],
  6860. "support": {
  6861. "source": "https://github.com/symfony/polyfill-php81/tree/v1.32.0"
  6862. },
  6863. "funding": [
  6864. {
  6865. "url": "https://symfony.com/sponsor",
  6866. "type": "custom"
  6867. },
  6868. {
  6869. "url": "https://github.com/fabpot",
  6870. "type": "github"
  6871. },
  6872. {
  6873. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6874. "type": "tidelift"
  6875. }
  6876. ],
  6877. "time": "2024-09-09T11:45:10+00:00"
  6878. },
  6879. {
  6880. "name": "symfony/process",
  6881. "version": "v5.4.47",
  6882. "source": {
  6883. "type": "git",
  6884. "url": "https://github.com/symfony/process.git",
  6885. "reference": "5d1662fb32ebc94f17ddb8d635454a776066733d"
  6886. },
  6887. "dist": {
  6888. "type": "zip",
  6889. "url": "https://api.github.com/repos/symfony/process/zipball/5d1662fb32ebc94f17ddb8d635454a776066733d",
  6890. "reference": "5d1662fb32ebc94f17ddb8d635454a776066733d",
  6891. "shasum": "",
  6892. "mirrors": [
  6893. {
  6894. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6895. "preferred": true
  6896. }
  6897. ]
  6898. },
  6899. "require": {
  6900. "php": ">=7.2.5",
  6901. "symfony/polyfill-php80": "^1.16"
  6902. },
  6903. "type": "library",
  6904. "autoload": {
  6905. "psr-4": {
  6906. "Symfony\\Component\\Process\\": ""
  6907. },
  6908. "exclude-from-classmap": [
  6909. "/Tests/"
  6910. ]
  6911. },
  6912. "notification-url": "https://packagist.org/downloads/",
  6913. "license": [
  6914. "MIT"
  6915. ],
  6916. "authors": [
  6917. {
  6918. "name": "Fabien Potencier",
  6919. "email": "fabien@symfony.com"
  6920. },
  6921. {
  6922. "name": "Symfony Community",
  6923. "homepage": "https://symfony.com/contributors"
  6924. }
  6925. ],
  6926. "description": "Executes commands in sub-processes",
  6927. "homepage": "https://symfony.com",
  6928. "support": {
  6929. "source": "https://github.com/symfony/process/tree/v5.4.47"
  6930. },
  6931. "funding": [
  6932. {
  6933. "url": "https://symfony.com/sponsor",
  6934. "type": "custom"
  6935. },
  6936. {
  6937. "url": "https://github.com/fabpot",
  6938. "type": "github"
  6939. },
  6940. {
  6941. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6942. "type": "tidelift"
  6943. }
  6944. ],
  6945. "time": "2024-11-06T11:36:42+00:00"
  6946. },
  6947. {
  6948. "name": "symfony/psr-http-message-bridge",
  6949. "version": "v2.3.1",
  6950. "source": {
  6951. "type": "git",
  6952. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  6953. "reference": "581ca6067eb62640de5ff08ee1ba6850a0ee472e"
  6954. },
  6955. "dist": {
  6956. "type": "zip",
  6957. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/581ca6067eb62640de5ff08ee1ba6850a0ee472e",
  6958. "reference": "581ca6067eb62640de5ff08ee1ba6850a0ee472e",
  6959. "shasum": "",
  6960. "mirrors": [
  6961. {
  6962. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6963. "preferred": true
  6964. }
  6965. ]
  6966. },
  6967. "require": {
  6968. "php": ">=7.2.5",
  6969. "psr/http-message": "^1.0 || ^2.0",
  6970. "symfony/deprecation-contracts": "^2.5 || ^3.0",
  6971. "symfony/http-foundation": "^5.4 || ^6.0"
  6972. },
  6973. "require-dev": {
  6974. "nyholm/psr7": "^1.1",
  6975. "psr/log": "^1.1 || ^2 || ^3",
  6976. "symfony/browser-kit": "^5.4 || ^6.0",
  6977. "symfony/config": "^5.4 || ^6.0",
  6978. "symfony/event-dispatcher": "^5.4 || ^6.0",
  6979. "symfony/framework-bundle": "^5.4 || ^6.0",
  6980. "symfony/http-kernel": "^5.4 || ^6.0",
  6981. "symfony/phpunit-bridge": "^6.2"
  6982. },
  6983. "suggest": {
  6984. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  6985. },
  6986. "type": "symfony-bridge",
  6987. "extra": {
  6988. "branch-alias": {
  6989. "dev-main": "2.3-dev"
  6990. }
  6991. },
  6992. "autoload": {
  6993. "psr-4": {
  6994. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  6995. },
  6996. "exclude-from-classmap": [
  6997. "/Tests/"
  6998. ]
  6999. },
  7000. "notification-url": "https://packagist.org/downloads/",
  7001. "license": [
  7002. "MIT"
  7003. ],
  7004. "authors": [
  7005. {
  7006. "name": "Fabien Potencier",
  7007. "email": "fabien@symfony.com"
  7008. },
  7009. {
  7010. "name": "Symfony Community",
  7011. "homepage": "http://symfony.com/contributors"
  7012. }
  7013. ],
  7014. "description": "PSR HTTP message bridge",
  7015. "homepage": "http://symfony.com",
  7016. "keywords": [
  7017. "http",
  7018. "http-message",
  7019. "psr-17",
  7020. "psr-7"
  7021. ],
  7022. "support": {
  7023. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  7024. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.3.1"
  7025. },
  7026. "funding": [
  7027. {
  7028. "url": "https://symfony.com/sponsor",
  7029. "type": "custom"
  7030. },
  7031. {
  7032. "url": "https://github.com/fabpot",
  7033. "type": "github"
  7034. },
  7035. {
  7036. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7037. "type": "tidelift"
  7038. }
  7039. ],
  7040. "time": "2023-07-26T11:53:26+00:00"
  7041. },
  7042. {
  7043. "name": "symfony/routing",
  7044. "version": "v5.4.48",
  7045. "source": {
  7046. "type": "git",
  7047. "url": "https://github.com/symfony/routing.git",
  7048. "reference": "dd08c19879a9b37ff14fd30dcbdf99a4cf045db1"
  7049. },
  7050. "dist": {
  7051. "type": "zip",
  7052. "url": "https://api.github.com/repos/symfony/routing/zipball/dd08c19879a9b37ff14fd30dcbdf99a4cf045db1",
  7053. "reference": "dd08c19879a9b37ff14fd30dcbdf99a4cf045db1",
  7054. "shasum": "",
  7055. "mirrors": [
  7056. {
  7057. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7058. "preferred": true
  7059. }
  7060. ]
  7061. },
  7062. "require": {
  7063. "php": ">=7.2.5",
  7064. "symfony/deprecation-contracts": "^2.1|^3",
  7065. "symfony/polyfill-php80": "^1.16"
  7066. },
  7067. "conflict": {
  7068. "doctrine/annotations": "<1.12",
  7069. "symfony/config": "<5.3",
  7070. "symfony/dependency-injection": "<4.4",
  7071. "symfony/yaml": "<4.4"
  7072. },
  7073. "require-dev": {
  7074. "doctrine/annotations": "^1.12|^2",
  7075. "psr/log": "^1|^2|^3",
  7076. "symfony/config": "^5.3|^6.0",
  7077. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  7078. "symfony/expression-language": "^4.4|^5.0|^6.0",
  7079. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  7080. "symfony/yaml": "^4.4|^5.0|^6.0"
  7081. },
  7082. "suggest": {
  7083. "symfony/config": "For using the all-in-one router or any loader",
  7084. "symfony/expression-language": "For using expression matching",
  7085. "symfony/http-foundation": "For using a Symfony Request object",
  7086. "symfony/yaml": "For using the YAML loader"
  7087. },
  7088. "type": "library",
  7089. "autoload": {
  7090. "psr-4": {
  7091. "Symfony\\Component\\Routing\\": ""
  7092. },
  7093. "exclude-from-classmap": [
  7094. "/Tests/"
  7095. ]
  7096. },
  7097. "notification-url": "https://packagist.org/downloads/",
  7098. "license": [
  7099. "MIT"
  7100. ],
  7101. "authors": [
  7102. {
  7103. "name": "Fabien Potencier",
  7104. "email": "fabien@symfony.com"
  7105. },
  7106. {
  7107. "name": "Symfony Community",
  7108. "homepage": "https://symfony.com/contributors"
  7109. }
  7110. ],
  7111. "description": "Maps an HTTP request to a set of configuration variables",
  7112. "homepage": "https://symfony.com",
  7113. "keywords": [
  7114. "router",
  7115. "routing",
  7116. "uri",
  7117. "url"
  7118. ],
  7119. "support": {
  7120. "source": "https://github.com/symfony/routing/tree/v5.4.48"
  7121. },
  7122. "funding": [
  7123. {
  7124. "url": "https://symfony.com/sponsor",
  7125. "type": "custom"
  7126. },
  7127. {
  7128. "url": "https://github.com/fabpot",
  7129. "type": "github"
  7130. },
  7131. {
  7132. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7133. "type": "tidelift"
  7134. }
  7135. ],
  7136. "time": "2024-11-12T18:20:21+00:00"
  7137. },
  7138. {
  7139. "name": "symfony/service-contracts",
  7140. "version": "v2.5.4",
  7141. "source": {
  7142. "type": "git",
  7143. "url": "https://github.com/symfony/service-contracts.git",
  7144. "reference": "f37b419f7aea2e9abf10abd261832cace12e3300"
  7145. },
  7146. "dist": {
  7147. "type": "zip",
  7148. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f37b419f7aea2e9abf10abd261832cace12e3300",
  7149. "reference": "f37b419f7aea2e9abf10abd261832cace12e3300",
  7150. "shasum": "",
  7151. "mirrors": [
  7152. {
  7153. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7154. "preferred": true
  7155. }
  7156. ]
  7157. },
  7158. "require": {
  7159. "php": ">=7.2.5",
  7160. "psr/container": "^1.1",
  7161. "symfony/deprecation-contracts": "^2.1|^3"
  7162. },
  7163. "conflict": {
  7164. "ext-psr": "<1.1|>=2"
  7165. },
  7166. "suggest": {
  7167. "symfony/service-implementation": ""
  7168. },
  7169. "type": "library",
  7170. "extra": {
  7171. "thanks": {
  7172. "url": "https://github.com/symfony/contracts",
  7173. "name": "symfony/contracts"
  7174. },
  7175. "branch-alias": {
  7176. "dev-main": "2.5-dev"
  7177. }
  7178. },
  7179. "autoload": {
  7180. "psr-4": {
  7181. "Symfony\\Contracts\\Service\\": ""
  7182. }
  7183. },
  7184. "notification-url": "https://packagist.org/downloads/",
  7185. "license": [
  7186. "MIT"
  7187. ],
  7188. "authors": [
  7189. {
  7190. "name": "Nicolas Grekas",
  7191. "email": "p@tchwork.com"
  7192. },
  7193. {
  7194. "name": "Symfony Community",
  7195. "homepage": "https://symfony.com/contributors"
  7196. }
  7197. ],
  7198. "description": "Generic abstractions related to writing services",
  7199. "homepage": "https://symfony.com",
  7200. "keywords": [
  7201. "abstractions",
  7202. "contracts",
  7203. "decoupling",
  7204. "interfaces",
  7205. "interoperability",
  7206. "standards"
  7207. ],
  7208. "support": {
  7209. "source": "https://github.com/symfony/service-contracts/tree/v2.5.4"
  7210. },
  7211. "funding": [
  7212. {
  7213. "url": "https://symfony.com/sponsor",
  7214. "type": "custom"
  7215. },
  7216. {
  7217. "url": "https://github.com/fabpot",
  7218. "type": "github"
  7219. },
  7220. {
  7221. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7222. "type": "tidelift"
  7223. }
  7224. ],
  7225. "time": "2024-09-25T14:11:13+00:00"
  7226. },
  7227. {
  7228. "name": "symfony/string",
  7229. "version": "v6.0.19",
  7230. "source": {
  7231. "type": "git",
  7232. "url": "https://github.com/symfony/string.git",
  7233. "reference": "d9e72497367c23e08bf94176d2be45b00a9d232a"
  7234. },
  7235. "dist": {
  7236. "type": "zip",
  7237. "url": "https://api.github.com/repos/symfony/string/zipball/d9e72497367c23e08bf94176d2be45b00a9d232a",
  7238. "reference": "d9e72497367c23e08bf94176d2be45b00a9d232a",
  7239. "shasum": "",
  7240. "mirrors": [
  7241. {
  7242. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7243. "preferred": true
  7244. }
  7245. ]
  7246. },
  7247. "require": {
  7248. "php": ">=8.0.2",
  7249. "symfony/polyfill-ctype": "~1.8",
  7250. "symfony/polyfill-intl-grapheme": "~1.0",
  7251. "symfony/polyfill-intl-normalizer": "~1.0",
  7252. "symfony/polyfill-mbstring": "~1.0"
  7253. },
  7254. "conflict": {
  7255. "symfony/translation-contracts": "<2.0"
  7256. },
  7257. "require-dev": {
  7258. "symfony/error-handler": "^5.4|^6.0",
  7259. "symfony/http-client": "^5.4|^6.0",
  7260. "symfony/translation-contracts": "^2.0|^3.0",
  7261. "symfony/var-exporter": "^5.4|^6.0"
  7262. },
  7263. "type": "library",
  7264. "autoload": {
  7265. "files": [
  7266. "Resources/functions.php"
  7267. ],
  7268. "psr-4": {
  7269. "Symfony\\Component\\String\\": ""
  7270. },
  7271. "exclude-from-classmap": [
  7272. "/Tests/"
  7273. ]
  7274. },
  7275. "notification-url": "https://packagist.org/downloads/",
  7276. "license": [
  7277. "MIT"
  7278. ],
  7279. "authors": [
  7280. {
  7281. "name": "Nicolas Grekas",
  7282. "email": "p@tchwork.com"
  7283. },
  7284. {
  7285. "name": "Symfony Community",
  7286. "homepage": "https://symfony.com/contributors"
  7287. }
  7288. ],
  7289. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7290. "homepage": "https://symfony.com",
  7291. "keywords": [
  7292. "grapheme",
  7293. "i18n",
  7294. "string",
  7295. "unicode",
  7296. "utf-8",
  7297. "utf8"
  7298. ],
  7299. "support": {
  7300. "source": "https://github.com/symfony/string/tree/v6.0.19"
  7301. },
  7302. "funding": [
  7303. {
  7304. "url": "https://symfony.com/sponsor",
  7305. "type": "custom"
  7306. },
  7307. {
  7308. "url": "https://github.com/fabpot",
  7309. "type": "github"
  7310. },
  7311. {
  7312. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7313. "type": "tidelift"
  7314. }
  7315. ],
  7316. "time": "2023-01-01T08:36:10+00:00"
  7317. },
  7318. {
  7319. "name": "symfony/translation",
  7320. "version": "v6.0.19",
  7321. "source": {
  7322. "type": "git",
  7323. "url": "https://github.com/symfony/translation.git",
  7324. "reference": "9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f"
  7325. },
  7326. "dist": {
  7327. "type": "zip",
  7328. "url": "https://api.github.com/repos/symfony/translation/zipball/9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f",
  7329. "reference": "9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f",
  7330. "shasum": "",
  7331. "mirrors": [
  7332. {
  7333. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7334. "preferred": true
  7335. }
  7336. ]
  7337. },
  7338. "require": {
  7339. "php": ">=8.0.2",
  7340. "symfony/polyfill-mbstring": "~1.0",
  7341. "symfony/translation-contracts": "^2.3|^3.0"
  7342. },
  7343. "conflict": {
  7344. "symfony/config": "<5.4",
  7345. "symfony/console": "<5.4",
  7346. "symfony/dependency-injection": "<5.4",
  7347. "symfony/http-kernel": "<5.4",
  7348. "symfony/twig-bundle": "<5.4",
  7349. "symfony/yaml": "<5.4"
  7350. },
  7351. "provide": {
  7352. "symfony/translation-implementation": "2.3|3.0"
  7353. },
  7354. "require-dev": {
  7355. "psr/log": "^1|^2|^3",
  7356. "symfony/config": "^5.4|^6.0",
  7357. "symfony/console": "^5.4|^6.0",
  7358. "symfony/dependency-injection": "^5.4|^6.0",
  7359. "symfony/finder": "^5.4|^6.0",
  7360. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  7361. "symfony/http-kernel": "^5.4|^6.0",
  7362. "symfony/intl": "^5.4|^6.0",
  7363. "symfony/polyfill-intl-icu": "^1.21",
  7364. "symfony/service-contracts": "^1.1.2|^2|^3",
  7365. "symfony/yaml": "^5.4|^6.0"
  7366. },
  7367. "suggest": {
  7368. "psr/log-implementation": "To use logging capability in translator",
  7369. "symfony/config": "",
  7370. "symfony/yaml": ""
  7371. },
  7372. "type": "library",
  7373. "autoload": {
  7374. "files": [
  7375. "Resources/functions.php"
  7376. ],
  7377. "psr-4": {
  7378. "Symfony\\Component\\Translation\\": ""
  7379. },
  7380. "exclude-from-classmap": [
  7381. "/Tests/"
  7382. ]
  7383. },
  7384. "notification-url": "https://packagist.org/downloads/",
  7385. "license": [
  7386. "MIT"
  7387. ],
  7388. "authors": [
  7389. {
  7390. "name": "Fabien Potencier",
  7391. "email": "fabien@symfony.com"
  7392. },
  7393. {
  7394. "name": "Symfony Community",
  7395. "homepage": "https://symfony.com/contributors"
  7396. }
  7397. ],
  7398. "description": "Provides tools to internationalize your application",
  7399. "homepage": "https://symfony.com",
  7400. "support": {
  7401. "source": "https://github.com/symfony/translation/tree/v6.0.19"
  7402. },
  7403. "funding": [
  7404. {
  7405. "url": "https://symfony.com/sponsor",
  7406. "type": "custom"
  7407. },
  7408. {
  7409. "url": "https://github.com/fabpot",
  7410. "type": "github"
  7411. },
  7412. {
  7413. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7414. "type": "tidelift"
  7415. }
  7416. ],
  7417. "time": "2023-01-01T08:36:10+00:00"
  7418. },
  7419. {
  7420. "name": "symfony/translation-contracts",
  7421. "version": "v3.0.2",
  7422. "source": {
  7423. "type": "git",
  7424. "url": "https://github.com/symfony/translation-contracts.git",
  7425. "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282"
  7426. },
  7427. "dist": {
  7428. "type": "zip",
  7429. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/acbfbb274e730e5a0236f619b6168d9dedb3e282",
  7430. "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282",
  7431. "shasum": "",
  7432. "mirrors": [
  7433. {
  7434. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7435. "preferred": true
  7436. }
  7437. ]
  7438. },
  7439. "require": {
  7440. "php": ">=8.0.2"
  7441. },
  7442. "suggest": {
  7443. "symfony/translation-implementation": ""
  7444. },
  7445. "type": "library",
  7446. "extra": {
  7447. "thanks": {
  7448. "url": "https://github.com/symfony/contracts",
  7449. "name": "symfony/contracts"
  7450. },
  7451. "branch-alias": {
  7452. "dev-main": "3.0-dev"
  7453. }
  7454. },
  7455. "autoload": {
  7456. "psr-4": {
  7457. "Symfony\\Contracts\\Translation\\": ""
  7458. }
  7459. },
  7460. "notification-url": "https://packagist.org/downloads/",
  7461. "license": [
  7462. "MIT"
  7463. ],
  7464. "authors": [
  7465. {
  7466. "name": "Nicolas Grekas",
  7467. "email": "p@tchwork.com"
  7468. },
  7469. {
  7470. "name": "Symfony Community",
  7471. "homepage": "https://symfony.com/contributors"
  7472. }
  7473. ],
  7474. "description": "Generic abstractions related to translation",
  7475. "homepage": "https://symfony.com",
  7476. "keywords": [
  7477. "abstractions",
  7478. "contracts",
  7479. "decoupling",
  7480. "interfaces",
  7481. "interoperability",
  7482. "standards"
  7483. ],
  7484. "support": {
  7485. "source": "https://github.com/symfony/translation-contracts/tree/v3.0.2"
  7486. },
  7487. "funding": [
  7488. {
  7489. "url": "https://symfony.com/sponsor",
  7490. "type": "custom"
  7491. },
  7492. {
  7493. "url": "https://github.com/fabpot",
  7494. "type": "github"
  7495. },
  7496. {
  7497. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7498. "type": "tidelift"
  7499. }
  7500. ],
  7501. "time": "2022-06-27T17:10:44+00:00"
  7502. },
  7503. {
  7504. "name": "symfony/var-dumper",
  7505. "version": "v5.4.48",
  7506. "source": {
  7507. "type": "git",
  7508. "url": "https://github.com/symfony/var-dumper.git",
  7509. "reference": "42f18f170aa86d612c3559cfb3bd11a375df32c8"
  7510. },
  7511. "dist": {
  7512. "type": "zip",
  7513. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/42f18f170aa86d612c3559cfb3bd11a375df32c8",
  7514. "reference": "42f18f170aa86d612c3559cfb3bd11a375df32c8",
  7515. "shasum": "",
  7516. "mirrors": [
  7517. {
  7518. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7519. "preferred": true
  7520. }
  7521. ]
  7522. },
  7523. "require": {
  7524. "php": ">=7.2.5",
  7525. "symfony/polyfill-mbstring": "~1.0",
  7526. "symfony/polyfill-php80": "^1.16"
  7527. },
  7528. "conflict": {
  7529. "symfony/console": "<4.4"
  7530. },
  7531. "require-dev": {
  7532. "ext-iconv": "*",
  7533. "symfony/console": "^4.4|^5.0|^6.0",
  7534. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  7535. "symfony/process": "^4.4|^5.0|^6.0",
  7536. "symfony/uid": "^5.1|^6.0",
  7537. "twig/twig": "^2.13|^3.0.4"
  7538. },
  7539. "suggest": {
  7540. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7541. "ext-intl": "To show region name in time zone dump",
  7542. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  7543. },
  7544. "bin": [
  7545. "Resources/bin/var-dump-server"
  7546. ],
  7547. "type": "library",
  7548. "autoload": {
  7549. "files": [
  7550. "Resources/functions/dump.php"
  7551. ],
  7552. "psr-4": {
  7553. "Symfony\\Component\\VarDumper\\": ""
  7554. },
  7555. "exclude-from-classmap": [
  7556. "/Tests/"
  7557. ]
  7558. },
  7559. "notification-url": "https://packagist.org/downloads/",
  7560. "license": [
  7561. "MIT"
  7562. ],
  7563. "authors": [
  7564. {
  7565. "name": "Nicolas Grekas",
  7566. "email": "p@tchwork.com"
  7567. },
  7568. {
  7569. "name": "Symfony Community",
  7570. "homepage": "https://symfony.com/contributors"
  7571. }
  7572. ],
  7573. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7574. "homepage": "https://symfony.com",
  7575. "keywords": [
  7576. "debug",
  7577. "dump"
  7578. ],
  7579. "support": {
  7580. "source": "https://github.com/symfony/var-dumper/tree/v5.4.48"
  7581. },
  7582. "funding": [
  7583. {
  7584. "url": "https://symfony.com/sponsor",
  7585. "type": "custom"
  7586. },
  7587. {
  7588. "url": "https://github.com/fabpot",
  7589. "type": "github"
  7590. },
  7591. {
  7592. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7593. "type": "tidelift"
  7594. }
  7595. ],
  7596. "time": "2024-11-08T15:21:10+00:00"
  7597. },
  7598. {
  7599. "name": "symfony/var-exporter",
  7600. "version": "v6.0.19",
  7601. "source": {
  7602. "type": "git",
  7603. "url": "https://github.com/symfony/var-exporter.git",
  7604. "reference": "df56f53818c2d5d9f683f4ad2e365ba73a3b69d2"
  7605. },
  7606. "dist": {
  7607. "type": "zip",
  7608. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/df56f53818c2d5d9f683f4ad2e365ba73a3b69d2",
  7609. "reference": "df56f53818c2d5d9f683f4ad2e365ba73a3b69d2",
  7610. "shasum": "",
  7611. "mirrors": [
  7612. {
  7613. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7614. "preferred": true
  7615. }
  7616. ]
  7617. },
  7618. "require": {
  7619. "php": ">=8.0.2"
  7620. },
  7621. "require-dev": {
  7622. "symfony/var-dumper": "^5.4|^6.0"
  7623. },
  7624. "type": "library",
  7625. "autoload": {
  7626. "psr-4": {
  7627. "Symfony\\Component\\VarExporter\\": ""
  7628. },
  7629. "exclude-from-classmap": [
  7630. "/Tests/"
  7631. ]
  7632. },
  7633. "notification-url": "https://packagist.org/downloads/",
  7634. "license": [
  7635. "MIT"
  7636. ],
  7637. "authors": [
  7638. {
  7639. "name": "Nicolas Grekas",
  7640. "email": "p@tchwork.com"
  7641. },
  7642. {
  7643. "name": "Symfony Community",
  7644. "homepage": "https://symfony.com/contributors"
  7645. }
  7646. ],
  7647. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  7648. "homepage": "https://symfony.com",
  7649. "keywords": [
  7650. "clone",
  7651. "construct",
  7652. "export",
  7653. "hydrate",
  7654. "instantiate",
  7655. "serialize"
  7656. ],
  7657. "support": {
  7658. "source": "https://github.com/symfony/var-exporter/tree/v6.0.19"
  7659. },
  7660. "funding": [
  7661. {
  7662. "url": "https://symfony.com/sponsor",
  7663. "type": "custom"
  7664. },
  7665. {
  7666. "url": "https://github.com/fabpot",
  7667. "type": "github"
  7668. },
  7669. {
  7670. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7671. "type": "tidelift"
  7672. }
  7673. ],
  7674. "time": "2023-01-13T08:34:10+00:00"
  7675. },
  7676. {
  7677. "name": "tencentcloud/tencentcloud-sdk-php",
  7678. "version": "3.0.1563",
  7679. "dist": {
  7680. "type": "zip",
  7681. "url": "https://mirrors.cloud.tencent.com/repository/composer/tencentcloud/tencentcloud-sdk-php/3.0.1563/tencentcloud-tencentcloud-sdk-php-3.0.1563.zip",
  7682. "reference": "c56b7cf075af2c4fc0f2b1e2fbccae14441f007c",
  7683. "shasum": ""
  7684. },
  7685. "require": {
  7686. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  7687. "php": ">=5.6.0"
  7688. },
  7689. "require-dev": {
  7690. "phpunit/phpunit": "^9.5"
  7691. },
  7692. "type": "library",
  7693. "autoload": {
  7694. "psr-4": {
  7695. "TencentCloud\\": "./src/TencentCloud"
  7696. },
  7697. "classmap": [
  7698. "src/QcloudApi/QcloudApi.php"
  7699. ]
  7700. },
  7701. "license": [
  7702. "Apache-2.0"
  7703. ],
  7704. "authors": [
  7705. {
  7706. "name": "coolli",
  7707. "email": "tencentcloudapi@tencent.com",
  7708. "homepage": "https://cloud.tencent.com/document/sdk/PHP",
  7709. "role": "Developer"
  7710. }
  7711. ],
  7712. "description": "TencentCloudApi php sdk",
  7713. "homepage": "https://github.com/TencentCloud/tencentcloud-sdk-php",
  7714. "support": {
  7715. "issues": "https://github.com/TencentCloud/tencentcloud-sdk-php/issues",
  7716. "source": "https://github.com/TencentCloud/tencentcloud-sdk-php/tree/3.0.1563"
  7717. },
  7718. "time": "2026-04-07T20:16:45+00:00"
  7719. },
  7720. {
  7721. "name": "tijsverkoyen/css-to-inline-styles",
  7722. "version": "v2.3.0",
  7723. "source": {
  7724. "type": "git",
  7725. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7726. "reference": "0d72ac1c00084279c1816675284073c5a337c20d"
  7727. },
  7728. "dist": {
  7729. "type": "zip",
  7730. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/0d72ac1c00084279c1816675284073c5a337c20d",
  7731. "reference": "0d72ac1c00084279c1816675284073c5a337c20d",
  7732. "shasum": "",
  7733. "mirrors": [
  7734. {
  7735. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7736. "preferred": true
  7737. }
  7738. ]
  7739. },
  7740. "require": {
  7741. "ext-dom": "*",
  7742. "ext-libxml": "*",
  7743. "php": "^7.4 || ^8.0",
  7744. "symfony/css-selector": "^5.4 || ^6.0 || ^7.0"
  7745. },
  7746. "require-dev": {
  7747. "phpstan/phpstan": "^2.0",
  7748. "phpstan/phpstan-phpunit": "^2.0",
  7749. "phpunit/phpunit": "^8.5.21 || ^9.5.10"
  7750. },
  7751. "type": "library",
  7752. "extra": {
  7753. "branch-alias": {
  7754. "dev-master": "2.x-dev"
  7755. }
  7756. },
  7757. "autoload": {
  7758. "psr-4": {
  7759. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7760. }
  7761. },
  7762. "notification-url": "https://packagist.org/downloads/",
  7763. "license": [
  7764. "BSD-3-Clause"
  7765. ],
  7766. "authors": [
  7767. {
  7768. "name": "Tijs Verkoyen",
  7769. "email": "css_to_inline_styles@verkoyen.eu",
  7770. "role": "Developer"
  7771. }
  7772. ],
  7773. "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.",
  7774. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7775. "support": {
  7776. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7777. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.3.0"
  7778. },
  7779. "time": "2024-12-21T16:25:41+00:00"
  7780. },
  7781. {
  7782. "name": "vinkla/hashids",
  7783. "version": "9.1.0",
  7784. "source": {
  7785. "type": "git",
  7786. "url": "https://github.com/vinkla/laravel-hashids.git",
  7787. "reference": "cb0086db96cdb49816465adc97e3a024c8ee9767"
  7788. },
  7789. "dist": {
  7790. "type": "zip",
  7791. "url": "https://api.github.com/repos/vinkla/laravel-hashids/zipball/cb0086db96cdb49816465adc97e3a024c8ee9767",
  7792. "reference": "cb0086db96cdb49816465adc97e3a024c8ee9767",
  7793. "shasum": "",
  7794. "mirrors": [
  7795. {
  7796. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7797. "preferred": true
  7798. }
  7799. ]
  7800. },
  7801. "require": {
  7802. "graham-campbell/manager": "^4.4",
  7803. "hashids/hashids": "^4.1",
  7804. "illuminate/contracts": "^8.0",
  7805. "illuminate/support": "^8.0",
  7806. "php": "^7.3 || ^8.0"
  7807. },
  7808. "require-dev": {
  7809. "graham-campbell/analyzer": "^3.0",
  7810. "graham-campbell/testbench": "^5.4",
  7811. "mockery/mockery": "^1.3",
  7812. "phpunit/phpunit": "^9.3",
  7813. "squizlabs/php_codesniffer": "^3.5"
  7814. },
  7815. "type": "library",
  7816. "extra": {
  7817. "laravel": {
  7818. "aliases": {
  7819. "Hashids": "Vinkla\\Hashids\\Facades\\Hashids"
  7820. },
  7821. "providers": [
  7822. "Vinkla\\Hashids\\HashidsServiceProvider"
  7823. ]
  7824. },
  7825. "branch-alias": {
  7826. "dev-master": "9.1-dev"
  7827. }
  7828. },
  7829. "autoload": {
  7830. "psr-4": {
  7831. "Vinkla\\Hashids\\": "src/"
  7832. }
  7833. },
  7834. "notification-url": "https://packagist.org/downloads/",
  7835. "license": [
  7836. "MIT"
  7837. ],
  7838. "authors": [
  7839. {
  7840. "name": "Vincent Klaiber",
  7841. "email": "hello@doubledip.se"
  7842. }
  7843. ],
  7844. "description": "A Hashids bridge for Laravel",
  7845. "keywords": [
  7846. "hashids",
  7847. "laravel"
  7848. ],
  7849. "support": {
  7850. "issues": "https://github.com/vinkla/laravel-hashids/issues",
  7851. "source": "https://github.com/vinkla/laravel-hashids/tree/9.1.0"
  7852. },
  7853. "time": "2020-11-26T19:38:22+00:00"
  7854. },
  7855. {
  7856. "name": "vlucas/phpdotenv",
  7857. "version": "v5.6.1",
  7858. "source": {
  7859. "type": "git",
  7860. "url": "https://github.com/vlucas/phpdotenv.git",
  7861. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  7862. },
  7863. "dist": {
  7864. "type": "zip",
  7865. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7866. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7867. "shasum": "",
  7868. "mirrors": [
  7869. {
  7870. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7871. "preferred": true
  7872. }
  7873. ]
  7874. },
  7875. "require": {
  7876. "ext-pcre": "*",
  7877. "graham-campbell/result-type": "^1.1.3",
  7878. "php": "^7.2.5 || ^8.0",
  7879. "phpoption/phpoption": "^1.9.3",
  7880. "symfony/polyfill-ctype": "^1.24",
  7881. "symfony/polyfill-mbstring": "^1.24",
  7882. "symfony/polyfill-php80": "^1.24"
  7883. },
  7884. "require-dev": {
  7885. "bamarni/composer-bin-plugin": "^1.8.2",
  7886. "ext-filter": "*",
  7887. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  7888. },
  7889. "suggest": {
  7890. "ext-filter": "Required to use the boolean validator."
  7891. },
  7892. "type": "library",
  7893. "extra": {
  7894. "bamarni-bin": {
  7895. "bin-links": true,
  7896. "forward-command": false
  7897. },
  7898. "branch-alias": {
  7899. "dev-master": "5.6-dev"
  7900. }
  7901. },
  7902. "autoload": {
  7903. "psr-4": {
  7904. "Dotenv\\": "src/"
  7905. }
  7906. },
  7907. "notification-url": "https://packagist.org/downloads/",
  7908. "license": [
  7909. "BSD-3-Clause"
  7910. ],
  7911. "authors": [
  7912. {
  7913. "name": "Graham Campbell",
  7914. "email": "hello@gjcampbell.co.uk",
  7915. "homepage": "https://github.com/GrahamCampbell"
  7916. },
  7917. {
  7918. "name": "Vance Lucas",
  7919. "email": "vance@vancelucas.com",
  7920. "homepage": "https://github.com/vlucas"
  7921. }
  7922. ],
  7923. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7924. "keywords": [
  7925. "dotenv",
  7926. "env",
  7927. "environment"
  7928. ],
  7929. "support": {
  7930. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7931. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  7932. },
  7933. "funding": [
  7934. {
  7935. "url": "https://github.com/GrahamCampbell",
  7936. "type": "github"
  7937. },
  7938. {
  7939. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7940. "type": "tidelift"
  7941. }
  7942. ],
  7943. "time": "2024-07-20T21:52:34+00:00"
  7944. },
  7945. {
  7946. "name": "voku/portable-ascii",
  7947. "version": "1.6.1",
  7948. "source": {
  7949. "type": "git",
  7950. "url": "https://github.com/voku/portable-ascii.git",
  7951. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a"
  7952. },
  7953. "dist": {
  7954. "type": "zip",
  7955. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/87337c91b9dfacee02452244ee14ab3c43bc485a",
  7956. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a",
  7957. "shasum": "",
  7958. "mirrors": [
  7959. {
  7960. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7961. "preferred": true
  7962. }
  7963. ]
  7964. },
  7965. "require": {
  7966. "php": ">=7.0.0"
  7967. },
  7968. "require-dev": {
  7969. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  7970. },
  7971. "suggest": {
  7972. "ext-intl": "Use Intl for transliterator_transliterate() support"
  7973. },
  7974. "type": "library",
  7975. "autoload": {
  7976. "psr-4": {
  7977. "voku\\": "src/voku/"
  7978. }
  7979. },
  7980. "notification-url": "https://packagist.org/downloads/",
  7981. "license": [
  7982. "MIT"
  7983. ],
  7984. "authors": [
  7985. {
  7986. "name": "Lars Moelleken",
  7987. "homepage": "http://www.moelleken.org/"
  7988. }
  7989. ],
  7990. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  7991. "homepage": "https://github.com/voku/portable-ascii",
  7992. "keywords": [
  7993. "ascii",
  7994. "clean",
  7995. "php"
  7996. ],
  7997. "support": {
  7998. "issues": "https://github.com/voku/portable-ascii/issues",
  7999. "source": "https://github.com/voku/portable-ascii/tree/1.6.1"
  8000. },
  8001. "funding": [
  8002. {
  8003. "url": "https://www.paypal.me/moelleken",
  8004. "type": "custom"
  8005. },
  8006. {
  8007. "url": "https://github.com/voku",
  8008. "type": "github"
  8009. },
  8010. {
  8011. "url": "https://opencollective.com/portable-ascii",
  8012. "type": "open_collective"
  8013. },
  8014. {
  8015. "url": "https://www.patreon.com/voku",
  8016. "type": "patreon"
  8017. },
  8018. {
  8019. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  8020. "type": "tidelift"
  8021. }
  8022. ],
  8023. "time": "2022-01-24T18:55:24+00:00"
  8024. },
  8025. {
  8026. "name": "w7corp/easywechat",
  8027. "version": "5.36.0",
  8028. "source": {
  8029. "type": "git",
  8030. "url": "https://github.com/w7corp/easywechat.git",
  8031. "reference": "3e3af7e1195e8ad25dae196bdb6420a24b382f1d"
  8032. },
  8033. "dist": {
  8034. "type": "zip",
  8035. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/3e3af7e1195e8ad25dae196bdb6420a24b382f1d",
  8036. "reference": "3e3af7e1195e8ad25dae196bdb6420a24b382f1d",
  8037. "shasum": "",
  8038. "mirrors": [
  8039. {
  8040. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8041. "preferred": true
  8042. }
  8043. ]
  8044. },
  8045. "require": {
  8046. "easywechat-composer/easywechat-composer": "^1.1",
  8047. "ext-fileinfo": "*",
  8048. "ext-libxml": "*",
  8049. "ext-openssl": "*",
  8050. "ext-simplexml": "*",
  8051. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  8052. "monolog/monolog": "^1.22 || ^2.0 || ^3.0",
  8053. "overtrue/socialite": "^3.2 || ^4.0",
  8054. "php": ">=7.4",
  8055. "pimple/pimple": "^3.0",
  8056. "psr/simple-cache": "^1.0||^2.0||^3.0",
  8057. "symfony/cache": "^3.3 || ^4.3 || ^5.0 || ^6.0",
  8058. "symfony/event-dispatcher": "^4.3 || ^5.0 || ^6.0",
  8059. "symfony/http-foundation": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  8060. },
  8061. "require-dev": {
  8062. "brainmaestro/composer-git-hooks": "^2.7",
  8063. "dms/phpunit-arraysubset-asserts": "^0.2.0",
  8064. "friendsofphp/php-cs-fixer": "^3.5.0",
  8065. "mikey179/vfsstream": "^1.6",
  8066. "mockery/mockery": "^1.2.3",
  8067. "phpstan/phpstan": "^0.12.0",
  8068. "phpunit/phpunit": "^9.3"
  8069. },
  8070. "type": "library",
  8071. "extra": {
  8072. "hooks": {
  8073. "pre-push": [
  8074. "composer test",
  8075. "composer fix-style"
  8076. ],
  8077. "pre-commit": [
  8078. "composer test",
  8079. "composer fix-style"
  8080. ]
  8081. }
  8082. },
  8083. "autoload": {
  8084. "files": [
  8085. "src/Kernel/Support/Helpers.php",
  8086. "src/Kernel/Helpers.php"
  8087. ],
  8088. "psr-4": {
  8089. "EasyWeChat\\": "src/"
  8090. }
  8091. },
  8092. "notification-url": "https://packagist.org/downloads/",
  8093. "license": [
  8094. "MIT"
  8095. ],
  8096. "authors": [
  8097. {
  8098. "name": "overtrue",
  8099. "email": "anzhengchao@gmail.com"
  8100. }
  8101. ],
  8102. "description": "微信SDK",
  8103. "keywords": [
  8104. "easywechat",
  8105. "sdk",
  8106. "wechat",
  8107. "weixin",
  8108. "weixin-sdk"
  8109. ],
  8110. "support": {
  8111. "issues": "https://github.com/w7corp/easywechat/issues",
  8112. "source": "https://github.com/w7corp/easywechat/tree/5.36.0"
  8113. },
  8114. "funding": [
  8115. {
  8116. "url": "https://github.com/overtrue",
  8117. "type": "github"
  8118. }
  8119. ],
  8120. "time": "2024-12-25T08:00:38+00:00"
  8121. },
  8122. {
  8123. "name": "wantp/snowflake",
  8124. "version": "v1.2.0",
  8125. "source": {
  8126. "type": "git",
  8127. "url": "https://github.com/wantp/snowflake.git",
  8128. "reference": "821c2800521cddc31afd8dd980090883abc7fe2d"
  8129. },
  8130. "dist": {
  8131. "type": "zip",
  8132. "url": "https://api.github.com/repos/wantp/snowflake/zipball/821c2800521cddc31afd8dd980090883abc7fe2d",
  8133. "reference": "821c2800521cddc31afd8dd980090883abc7fe2d",
  8134. "shasum": "",
  8135. "mirrors": [
  8136. {
  8137. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8138. "preferred": true
  8139. }
  8140. ]
  8141. },
  8142. "require": {
  8143. "php": ">=7.0.0"
  8144. },
  8145. "type": "library",
  8146. "autoload": {
  8147. "psr-4": {
  8148. "wantp\\Snowflake\\": "src/Snowflake/"
  8149. }
  8150. },
  8151. "notification-url": "https://packagist.org/downloads/",
  8152. "license": [
  8153. "MIT"
  8154. ],
  8155. "authors": [
  8156. {
  8157. "name": "zhangrongwang",
  8158. "email": "zhangrongwang798@gmail.com"
  8159. }
  8160. ],
  8161. "description": "A package for create unique id by snowflake",
  8162. "keywords": [
  8163. "snowflake",
  8164. "uniqueId"
  8165. ],
  8166. "support": {
  8167. "issues": "https://github.com/wantp/snowflake/issues",
  8168. "source": "https://github.com/wantp/snowflake/tree/master"
  8169. },
  8170. "time": "2019-08-05T07:14:56+00:00"
  8171. }
  8172. ],
  8173. "packages-dev": [
  8174. {
  8175. "name": "doctrine/instantiator",
  8176. "version": "1.5.0",
  8177. "source": {
  8178. "type": "git",
  8179. "url": "https://github.com/doctrine/instantiator.git",
  8180. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  8181. },
  8182. "dist": {
  8183. "type": "zip",
  8184. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  8185. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  8186. "shasum": "",
  8187. "mirrors": [
  8188. {
  8189. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8190. "preferred": true
  8191. }
  8192. ]
  8193. },
  8194. "require": {
  8195. "php": "^7.1 || ^8.0"
  8196. },
  8197. "require-dev": {
  8198. "doctrine/coding-standard": "^9 || ^11",
  8199. "ext-pdo": "*",
  8200. "ext-phar": "*",
  8201. "phpbench/phpbench": "^0.16 || ^1",
  8202. "phpstan/phpstan": "^1.4",
  8203. "phpstan/phpstan-phpunit": "^1",
  8204. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  8205. "vimeo/psalm": "^4.30 || ^5.4"
  8206. },
  8207. "type": "library",
  8208. "autoload": {
  8209. "psr-4": {
  8210. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8211. }
  8212. },
  8213. "notification-url": "https://packagist.org/downloads/",
  8214. "license": [
  8215. "MIT"
  8216. ],
  8217. "authors": [
  8218. {
  8219. "name": "Marco Pivetta",
  8220. "email": "ocramius@gmail.com",
  8221. "homepage": "https://ocramius.github.io/"
  8222. }
  8223. ],
  8224. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8225. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8226. "keywords": [
  8227. "constructor",
  8228. "instantiate"
  8229. ],
  8230. "support": {
  8231. "issues": "https://github.com/doctrine/instantiator/issues",
  8232. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  8233. },
  8234. "funding": [
  8235. {
  8236. "url": "https://www.doctrine-project.org/sponsorship.html",
  8237. "type": "custom"
  8238. },
  8239. {
  8240. "url": "https://www.patreon.com/phpdoctrine",
  8241. "type": "patreon"
  8242. },
  8243. {
  8244. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8245. "type": "tidelift"
  8246. }
  8247. ],
  8248. "time": "2022-12-30T00:15:36+00:00"
  8249. },
  8250. {
  8251. "name": "facade/flare-client-php",
  8252. "version": "1.10.0",
  8253. "source": {
  8254. "type": "git",
  8255. "url": "https://github.com/facade/flare-client-php.git",
  8256. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8"
  8257. },
  8258. "dist": {
  8259. "type": "zip",
  8260. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  8261. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  8262. "shasum": "",
  8263. "mirrors": [
  8264. {
  8265. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8266. "preferred": true
  8267. }
  8268. ]
  8269. },
  8270. "require": {
  8271. "facade/ignition-contracts": "~1.0",
  8272. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  8273. "php": "^7.1|^8.0",
  8274. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  8275. "symfony/mime": "^3.4|^4.0|^5.1",
  8276. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  8277. },
  8278. "require-dev": {
  8279. "friendsofphp/php-cs-fixer": "^2.14",
  8280. "phpunit/phpunit": "^7.5",
  8281. "spatie/phpunit-snapshot-assertions": "^2.0"
  8282. },
  8283. "type": "library",
  8284. "extra": {
  8285. "branch-alias": {
  8286. "dev-master": "1.0-dev"
  8287. }
  8288. },
  8289. "autoload": {
  8290. "files": [
  8291. "src/helpers.php"
  8292. ],
  8293. "psr-4": {
  8294. "Facade\\FlareClient\\": "src"
  8295. }
  8296. },
  8297. "notification-url": "https://packagist.org/downloads/",
  8298. "license": [
  8299. "MIT"
  8300. ],
  8301. "description": "Send PHP errors to Flare",
  8302. "homepage": "https://github.com/facade/flare-client-php",
  8303. "keywords": [
  8304. "exception",
  8305. "facade",
  8306. "flare",
  8307. "reporting"
  8308. ],
  8309. "support": {
  8310. "issues": "https://github.com/facade/flare-client-php/issues",
  8311. "source": "https://github.com/facade/flare-client-php/tree/1.10.0"
  8312. },
  8313. "funding": [
  8314. {
  8315. "url": "https://github.com/spatie",
  8316. "type": "github"
  8317. }
  8318. ],
  8319. "time": "2022-08-09T11:23:57+00:00"
  8320. },
  8321. {
  8322. "name": "facade/ignition",
  8323. "version": "2.17.7",
  8324. "source": {
  8325. "type": "git",
  8326. "url": "https://github.com/facade/ignition.git",
  8327. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9"
  8328. },
  8329. "dist": {
  8330. "type": "zip",
  8331. "url": "https://api.github.com/repos/facade/ignition/zipball/b4f5955825bb4b74cba0f94001761c46335c33e9",
  8332. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9",
  8333. "shasum": "",
  8334. "mirrors": [
  8335. {
  8336. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8337. "preferred": true
  8338. }
  8339. ]
  8340. },
  8341. "require": {
  8342. "ext-curl": "*",
  8343. "ext-json": "*",
  8344. "ext-mbstring": "*",
  8345. "facade/flare-client-php": "^1.9.1",
  8346. "facade/ignition-contracts": "^1.0.2",
  8347. "illuminate/support": "^7.0|^8.0",
  8348. "monolog/monolog": "^2.0",
  8349. "php": "^7.2.5|^8.0",
  8350. "symfony/console": "^5.0",
  8351. "symfony/var-dumper": "^5.0"
  8352. },
  8353. "require-dev": {
  8354. "friendsofphp/php-cs-fixer": "^2.14",
  8355. "livewire/livewire": "^2.4",
  8356. "mockery/mockery": "^1.3",
  8357. "orchestra/testbench": "^5.0|^6.0",
  8358. "psalm/plugin-laravel": "^1.2"
  8359. },
  8360. "suggest": {
  8361. "laravel/telescope": "^3.1"
  8362. },
  8363. "type": "library",
  8364. "extra": {
  8365. "branch-alias": {
  8366. "dev-master": "2.x-dev"
  8367. },
  8368. "laravel": {
  8369. "providers": [
  8370. "Facade\\Ignition\\IgnitionServiceProvider"
  8371. ],
  8372. "aliases": {
  8373. "Flare": "Facade\\Ignition\\Facades\\Flare"
  8374. }
  8375. }
  8376. },
  8377. "autoload": {
  8378. "files": [
  8379. "src/helpers.php"
  8380. ],
  8381. "psr-4": {
  8382. "Facade\\Ignition\\": "src"
  8383. }
  8384. },
  8385. "notification-url": "https://packagist.org/downloads/",
  8386. "license": [
  8387. "MIT"
  8388. ],
  8389. "description": "A beautiful error page for Laravel applications.",
  8390. "homepage": "https://github.com/facade/ignition",
  8391. "keywords": [
  8392. "error",
  8393. "flare",
  8394. "laravel",
  8395. "page"
  8396. ],
  8397. "support": {
  8398. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  8399. "forum": "https://twitter.com/flareappio",
  8400. "issues": "https://github.com/facade/ignition/issues",
  8401. "source": "https://github.com/facade/ignition"
  8402. },
  8403. "time": "2023-01-26T12:34:59+00:00"
  8404. },
  8405. {
  8406. "name": "facade/ignition-contracts",
  8407. "version": "1.0.2",
  8408. "source": {
  8409. "type": "git",
  8410. "url": "https://github.com/facade/ignition-contracts.git",
  8411. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  8412. },
  8413. "dist": {
  8414. "type": "zip",
  8415. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8416. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8417. "shasum": "",
  8418. "mirrors": [
  8419. {
  8420. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8421. "preferred": true
  8422. }
  8423. ]
  8424. },
  8425. "require": {
  8426. "php": "^7.3|^8.0"
  8427. },
  8428. "require-dev": {
  8429. "friendsofphp/php-cs-fixer": "^v2.15.8",
  8430. "phpunit/phpunit": "^9.3.11",
  8431. "vimeo/psalm": "^3.17.1"
  8432. },
  8433. "type": "library",
  8434. "autoload": {
  8435. "psr-4": {
  8436. "Facade\\IgnitionContracts\\": "src"
  8437. }
  8438. },
  8439. "notification-url": "https://packagist.org/downloads/",
  8440. "license": [
  8441. "MIT"
  8442. ],
  8443. "authors": [
  8444. {
  8445. "name": "Freek Van der Herten",
  8446. "email": "freek@spatie.be",
  8447. "homepage": "https://flareapp.io",
  8448. "role": "Developer"
  8449. }
  8450. ],
  8451. "description": "Solution contracts for Ignition",
  8452. "homepage": "https://github.com/facade/ignition-contracts",
  8453. "keywords": [
  8454. "contracts",
  8455. "flare",
  8456. "ignition"
  8457. ],
  8458. "support": {
  8459. "issues": "https://github.com/facade/ignition-contracts/issues",
  8460. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  8461. },
  8462. "time": "2020-10-16T08:27:54+00:00"
  8463. },
  8464. {
  8465. "name": "fakerphp/faker",
  8466. "version": "v1.23.1",
  8467. "source": {
  8468. "type": "git",
  8469. "url": "https://github.com/FakerPHP/Faker.git",
  8470. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b"
  8471. },
  8472. "dist": {
  8473. "type": "zip",
  8474. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/bfb4fe148adbf78eff521199619b93a52ae3554b",
  8475. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b",
  8476. "shasum": "",
  8477. "mirrors": [
  8478. {
  8479. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8480. "preferred": true
  8481. }
  8482. ]
  8483. },
  8484. "require": {
  8485. "php": "^7.4 || ^8.0",
  8486. "psr/container": "^1.0 || ^2.0",
  8487. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  8488. },
  8489. "conflict": {
  8490. "fzaninotto/faker": "*"
  8491. },
  8492. "require-dev": {
  8493. "bamarni/composer-bin-plugin": "^1.4.1",
  8494. "doctrine/persistence": "^1.3 || ^2.0",
  8495. "ext-intl": "*",
  8496. "phpunit/phpunit": "^9.5.26",
  8497. "symfony/phpunit-bridge": "^5.4.16"
  8498. },
  8499. "suggest": {
  8500. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  8501. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  8502. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  8503. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  8504. "ext-mbstring": "Required for multibyte Unicode string functionality."
  8505. },
  8506. "type": "library",
  8507. "autoload": {
  8508. "psr-4": {
  8509. "Faker\\": "src/Faker/"
  8510. }
  8511. },
  8512. "notification-url": "https://packagist.org/downloads/",
  8513. "license": [
  8514. "MIT"
  8515. ],
  8516. "authors": [
  8517. {
  8518. "name": "François Zaninotto"
  8519. }
  8520. ],
  8521. "description": "Faker is a PHP library that generates fake data for you.",
  8522. "keywords": [
  8523. "data",
  8524. "faker",
  8525. "fixtures"
  8526. ],
  8527. "support": {
  8528. "issues": "https://github.com/FakerPHP/Faker/issues",
  8529. "source": "https://github.com/FakerPHP/Faker/tree/v1.23.1"
  8530. },
  8531. "time": "2024-01-02T13:46:09+00:00"
  8532. },
  8533. {
  8534. "name": "filp/whoops",
  8535. "version": "2.16.0",
  8536. "source": {
  8537. "type": "git",
  8538. "url": "https://github.com/filp/whoops.git",
  8539. "reference": "befcdc0e5dce67252aa6322d82424be928214fa2"
  8540. },
  8541. "dist": {
  8542. "type": "zip",
  8543. "url": "https://api.github.com/repos/filp/whoops/zipball/befcdc0e5dce67252aa6322d82424be928214fa2",
  8544. "reference": "befcdc0e5dce67252aa6322d82424be928214fa2",
  8545. "shasum": "",
  8546. "mirrors": [
  8547. {
  8548. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8549. "preferred": true
  8550. }
  8551. ]
  8552. },
  8553. "require": {
  8554. "php": "^7.1 || ^8.0",
  8555. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  8556. },
  8557. "require-dev": {
  8558. "mockery/mockery": "^1.0",
  8559. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.3",
  8560. "symfony/var-dumper": "^4.0 || ^5.0"
  8561. },
  8562. "suggest": {
  8563. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8564. "whoops/soap": "Formats errors as SOAP responses"
  8565. },
  8566. "type": "library",
  8567. "extra": {
  8568. "branch-alias": {
  8569. "dev-master": "2.7-dev"
  8570. }
  8571. },
  8572. "autoload": {
  8573. "psr-4": {
  8574. "Whoops\\": "src/Whoops/"
  8575. }
  8576. },
  8577. "notification-url": "https://packagist.org/downloads/",
  8578. "license": [
  8579. "MIT"
  8580. ],
  8581. "authors": [
  8582. {
  8583. "name": "Filipe Dobreira",
  8584. "homepage": "https://github.com/filp",
  8585. "role": "Developer"
  8586. }
  8587. ],
  8588. "description": "php error handling for cool kids",
  8589. "homepage": "https://filp.github.io/whoops/",
  8590. "keywords": [
  8591. "error",
  8592. "exception",
  8593. "handling",
  8594. "library",
  8595. "throwable",
  8596. "whoops"
  8597. ],
  8598. "support": {
  8599. "issues": "https://github.com/filp/whoops/issues",
  8600. "source": "https://github.com/filp/whoops/tree/2.16.0"
  8601. },
  8602. "funding": [
  8603. {
  8604. "url": "https://github.com/denis-sokolov",
  8605. "type": "github"
  8606. }
  8607. ],
  8608. "time": "2024-09-25T12:00:00+00:00"
  8609. },
  8610. {
  8611. "name": "hamcrest/hamcrest-php",
  8612. "version": "v2.0.1",
  8613. "source": {
  8614. "type": "git",
  8615. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8616. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8617. },
  8618. "dist": {
  8619. "type": "zip",
  8620. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8621. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8622. "shasum": "",
  8623. "mirrors": [
  8624. {
  8625. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8626. "preferred": true
  8627. }
  8628. ]
  8629. },
  8630. "require": {
  8631. "php": "^5.3|^7.0|^8.0"
  8632. },
  8633. "replace": {
  8634. "cordoval/hamcrest-php": "*",
  8635. "davedevelopment/hamcrest-php": "*",
  8636. "kodova/hamcrest-php": "*"
  8637. },
  8638. "require-dev": {
  8639. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8640. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8641. },
  8642. "type": "library",
  8643. "extra": {
  8644. "branch-alias": {
  8645. "dev-master": "2.1-dev"
  8646. }
  8647. },
  8648. "autoload": {
  8649. "classmap": [
  8650. "hamcrest"
  8651. ]
  8652. },
  8653. "notification-url": "https://packagist.org/downloads/",
  8654. "license": [
  8655. "BSD-3-Clause"
  8656. ],
  8657. "description": "This is the PHP port of Hamcrest Matchers",
  8658. "keywords": [
  8659. "test"
  8660. ],
  8661. "support": {
  8662. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8663. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8664. },
  8665. "time": "2020-07-09T08:09:16+00:00"
  8666. },
  8667. {
  8668. "name": "laravel/sail",
  8669. "version": "v1.25.0",
  8670. "source": {
  8671. "type": "git",
  8672. "url": "https://github.com/laravel/sail.git",
  8673. "reference": "e81a7bd7ac1a745ccb25572830fecf74a89bb48a"
  8674. },
  8675. "dist": {
  8676. "type": "zip",
  8677. "url": "https://api.github.com/repos/laravel/sail/zipball/e81a7bd7ac1a745ccb25572830fecf74a89bb48a",
  8678. "reference": "e81a7bd7ac1a745ccb25572830fecf74a89bb48a",
  8679. "shasum": "",
  8680. "mirrors": [
  8681. {
  8682. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8683. "preferred": true
  8684. }
  8685. ]
  8686. },
  8687. "require": {
  8688. "illuminate/console": "^8.0|^9.0|^10.0",
  8689. "illuminate/contracts": "^8.0|^9.0|^10.0",
  8690. "illuminate/support": "^8.0|^9.0|^10.0",
  8691. "php": "^8.0",
  8692. "symfony/yaml": "^6.0"
  8693. },
  8694. "require-dev": {
  8695. "orchestra/testbench": "^6.0|^7.0|^8.0",
  8696. "phpstan/phpstan": "^1.10"
  8697. },
  8698. "bin": [
  8699. "bin/sail"
  8700. ],
  8701. "type": "library",
  8702. "extra": {
  8703. "laravel": {
  8704. "providers": [
  8705. "Laravel\\Sail\\SailServiceProvider"
  8706. ]
  8707. },
  8708. "branch-alias": {
  8709. "dev-master": "1.x-dev"
  8710. }
  8711. },
  8712. "autoload": {
  8713. "psr-4": {
  8714. "Laravel\\Sail\\": "src/"
  8715. }
  8716. },
  8717. "notification-url": "https://packagist.org/downloads/",
  8718. "license": [
  8719. "MIT"
  8720. ],
  8721. "authors": [
  8722. {
  8723. "name": "Taylor Otwell",
  8724. "email": "taylor@laravel.com"
  8725. }
  8726. ],
  8727. "description": "Docker files for running a basic Laravel application.",
  8728. "keywords": [
  8729. "docker",
  8730. "laravel"
  8731. ],
  8732. "support": {
  8733. "issues": "https://github.com/laravel/sail/issues",
  8734. "source": "https://github.com/laravel/sail"
  8735. },
  8736. "time": "2023-09-11T17:37:09+00:00"
  8737. },
  8738. {
  8739. "name": "mockery/mockery",
  8740. "version": "1.6.12",
  8741. "source": {
  8742. "type": "git",
  8743. "url": "https://github.com/mockery/mockery.git",
  8744. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  8745. },
  8746. "dist": {
  8747. "type": "zip",
  8748. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8749. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8750. "shasum": "",
  8751. "mirrors": [
  8752. {
  8753. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8754. "preferred": true
  8755. }
  8756. ]
  8757. },
  8758. "require": {
  8759. "hamcrest/hamcrest-php": "^2.0.1",
  8760. "lib-pcre": ">=7.0",
  8761. "php": ">=7.3"
  8762. },
  8763. "conflict": {
  8764. "phpunit/phpunit": "<8.0"
  8765. },
  8766. "require-dev": {
  8767. "phpunit/phpunit": "^8.5 || ^9.6.17",
  8768. "symplify/easy-coding-standard": "^12.1.14"
  8769. },
  8770. "type": "library",
  8771. "autoload": {
  8772. "files": [
  8773. "library/helpers.php",
  8774. "library/Mockery.php"
  8775. ],
  8776. "psr-4": {
  8777. "Mockery\\": "library/Mockery"
  8778. }
  8779. },
  8780. "notification-url": "https://packagist.org/downloads/",
  8781. "license": [
  8782. "BSD-3-Clause"
  8783. ],
  8784. "authors": [
  8785. {
  8786. "name": "Pádraic Brady",
  8787. "email": "padraic.brady@gmail.com",
  8788. "homepage": "https://github.com/padraic",
  8789. "role": "Author"
  8790. },
  8791. {
  8792. "name": "Dave Marshall",
  8793. "email": "dave.marshall@atstsolutions.co.uk",
  8794. "homepage": "https://davedevelopment.co.uk",
  8795. "role": "Developer"
  8796. },
  8797. {
  8798. "name": "Nathanael Esayeas",
  8799. "email": "nathanael.esayeas@protonmail.com",
  8800. "homepage": "https://github.com/ghostwriter",
  8801. "role": "Lead Developer"
  8802. }
  8803. ],
  8804. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8805. "homepage": "https://github.com/mockery/mockery",
  8806. "keywords": [
  8807. "BDD",
  8808. "TDD",
  8809. "library",
  8810. "mock",
  8811. "mock objects",
  8812. "mockery",
  8813. "stub",
  8814. "test",
  8815. "test double",
  8816. "testing"
  8817. ],
  8818. "support": {
  8819. "docs": "https://docs.mockery.io/",
  8820. "issues": "https://github.com/mockery/mockery/issues",
  8821. "rss": "https://github.com/mockery/mockery/releases.atom",
  8822. "security": "https://github.com/mockery/mockery/security/advisories",
  8823. "source": "https://github.com/mockery/mockery"
  8824. },
  8825. "time": "2024-05-16T03:13:13+00:00"
  8826. },
  8827. {
  8828. "name": "myclabs/deep-copy",
  8829. "version": "1.x-dev",
  8830. "source": {
  8831. "type": "git",
  8832. "url": "https://github.com/myclabs/DeepCopy.git",
  8833. "reference": "faed855a7b5f4d4637717c2b3863e277116beb36"
  8834. },
  8835. "dist": {
  8836. "type": "zip",
  8837. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/faed855a7b5f4d4637717c2b3863e277116beb36",
  8838. "reference": "faed855a7b5f4d4637717c2b3863e277116beb36",
  8839. "shasum": "",
  8840. "mirrors": [
  8841. {
  8842. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8843. "preferred": true
  8844. }
  8845. ]
  8846. },
  8847. "require": {
  8848. "php": "^7.1 || ^8.0"
  8849. },
  8850. "conflict": {
  8851. "doctrine/collections": "<1.6.8",
  8852. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  8853. },
  8854. "require-dev": {
  8855. "doctrine/collections": "^1.6.8",
  8856. "doctrine/common": "^2.13.3 || ^3.2.2",
  8857. "phpspec/prophecy": "^1.10",
  8858. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8859. },
  8860. "default-branch": true,
  8861. "type": "library",
  8862. "autoload": {
  8863. "files": [
  8864. "src/DeepCopy/deep_copy.php"
  8865. ],
  8866. "psr-4": {
  8867. "DeepCopy\\": "src/DeepCopy/"
  8868. }
  8869. },
  8870. "notification-url": "https://packagist.org/downloads/",
  8871. "license": [
  8872. "MIT"
  8873. ],
  8874. "description": "Create deep copies (clones) of your objects",
  8875. "keywords": [
  8876. "clone",
  8877. "copy",
  8878. "duplicate",
  8879. "object",
  8880. "object graph"
  8881. ],
  8882. "support": {
  8883. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8884. "source": "https://github.com/myclabs/DeepCopy/tree/1.13.3"
  8885. },
  8886. "funding": [
  8887. {
  8888. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8889. "type": "tidelift"
  8890. }
  8891. ],
  8892. "time": "2025-07-05T12:25:42+00:00"
  8893. },
  8894. {
  8895. "name": "nunomaduro/collision",
  8896. "version": "v5.11.0",
  8897. "source": {
  8898. "type": "git",
  8899. "url": "https://github.com/nunomaduro/collision.git",
  8900. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461"
  8901. },
  8902. "dist": {
  8903. "type": "zip",
  8904. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/8b610eef8582ccdc05d8f2ab23305e2d37049461",
  8905. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461",
  8906. "shasum": "",
  8907. "mirrors": [
  8908. {
  8909. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8910. "preferred": true
  8911. }
  8912. ]
  8913. },
  8914. "require": {
  8915. "facade/ignition-contracts": "^1.0",
  8916. "filp/whoops": "^2.14.3",
  8917. "php": "^7.3 || ^8.0",
  8918. "symfony/console": "^5.0"
  8919. },
  8920. "require-dev": {
  8921. "brianium/paratest": "^6.1",
  8922. "fideloper/proxy": "^4.4.1",
  8923. "fruitcake/laravel-cors": "^2.0.3",
  8924. "laravel/framework": "8.x-dev",
  8925. "nunomaduro/larastan": "^0.6.2",
  8926. "nunomaduro/mock-final-classes": "^1.0",
  8927. "orchestra/testbench": "^6.0",
  8928. "phpstan/phpstan": "^0.12.64",
  8929. "phpunit/phpunit": "^9.5.0"
  8930. },
  8931. "type": "library",
  8932. "extra": {
  8933. "laravel": {
  8934. "providers": [
  8935. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  8936. ]
  8937. }
  8938. },
  8939. "autoload": {
  8940. "psr-4": {
  8941. "NunoMaduro\\Collision\\": "src/"
  8942. }
  8943. },
  8944. "notification-url": "https://packagist.org/downloads/",
  8945. "license": [
  8946. "MIT"
  8947. ],
  8948. "authors": [
  8949. {
  8950. "name": "Nuno Maduro",
  8951. "email": "enunomaduro@gmail.com"
  8952. }
  8953. ],
  8954. "description": "Cli error handling for console/command-line PHP applications.",
  8955. "keywords": [
  8956. "artisan",
  8957. "cli",
  8958. "command-line",
  8959. "console",
  8960. "error",
  8961. "handling",
  8962. "laravel",
  8963. "laravel-zero",
  8964. "php",
  8965. "symfony"
  8966. ],
  8967. "support": {
  8968. "issues": "https://github.com/nunomaduro/collision/issues",
  8969. "source": "https://github.com/nunomaduro/collision"
  8970. },
  8971. "funding": [
  8972. {
  8973. "url": "https://www.paypal.com/paypalme/enunomaduro",
  8974. "type": "custom"
  8975. },
  8976. {
  8977. "url": "https://github.com/nunomaduro",
  8978. "type": "github"
  8979. },
  8980. {
  8981. "url": "https://www.patreon.com/nunomaduro",
  8982. "type": "patreon"
  8983. }
  8984. ],
  8985. "time": "2022-01-10T16:22:52+00:00"
  8986. },
  8987. {
  8988. "name": "phar-io/manifest",
  8989. "version": "dev-master",
  8990. "source": {
  8991. "type": "git",
  8992. "url": "https://github.com/phar-io/manifest.git",
  8993. "reference": "c581d4941e196459bf76c945a8ca922963a66708"
  8994. },
  8995. "dist": {
  8996. "type": "zip",
  8997. "url": "https://api.github.com/repos/phar-io/manifest/zipball/c581d4941e196459bf76c945a8ca922963a66708",
  8998. "reference": "c581d4941e196459bf76c945a8ca922963a66708",
  8999. "shasum": "",
  9000. "mirrors": [
  9001. {
  9002. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9003. "preferred": true
  9004. }
  9005. ]
  9006. },
  9007. "require": {
  9008. "ext-dom": "*",
  9009. "ext-libxml": "*",
  9010. "ext-phar": "*",
  9011. "ext-xmlwriter": "*",
  9012. "phar-io/version": "^3.0.1",
  9013. "php": "^7.2 || ^8.0"
  9014. },
  9015. "default-branch": true,
  9016. "type": "library",
  9017. "extra": {
  9018. "branch-alias": {
  9019. "dev-master": "2.0.x-dev"
  9020. }
  9021. },
  9022. "autoload": {
  9023. "classmap": [
  9024. "src/"
  9025. ]
  9026. },
  9027. "notification-url": "https://packagist.org/downloads/",
  9028. "license": [
  9029. "BSD-3-Clause"
  9030. ],
  9031. "authors": [
  9032. {
  9033. "name": "Arne Blankerts",
  9034. "email": "arne@blankerts.de",
  9035. "role": "Developer"
  9036. },
  9037. {
  9038. "name": "Sebastian Heuer",
  9039. "email": "sebastian@phpeople.de",
  9040. "role": "Developer"
  9041. },
  9042. {
  9043. "name": "Sebastian Bergmann",
  9044. "email": "sebastian@phpunit.de",
  9045. "role": "Developer"
  9046. }
  9047. ],
  9048. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9049. "support": {
  9050. "issues": "https://github.com/phar-io/manifest/issues",
  9051. "source": "https://github.com/phar-io/manifest/tree/master"
  9052. },
  9053. "funding": [
  9054. {
  9055. "url": "https://github.com/theseer",
  9056. "type": "github"
  9057. }
  9058. ],
  9059. "time": "2025-11-27T15:23:09+00:00"
  9060. },
  9061. {
  9062. "name": "phar-io/version",
  9063. "version": "3.2.1",
  9064. "source": {
  9065. "type": "git",
  9066. "url": "https://github.com/phar-io/version.git",
  9067. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  9068. },
  9069. "dist": {
  9070. "type": "zip",
  9071. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9072. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9073. "shasum": "",
  9074. "mirrors": [
  9075. {
  9076. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9077. "preferred": true
  9078. }
  9079. ]
  9080. },
  9081. "require": {
  9082. "php": "^7.2 || ^8.0"
  9083. },
  9084. "type": "library",
  9085. "autoload": {
  9086. "classmap": [
  9087. "src/"
  9088. ]
  9089. },
  9090. "notification-url": "https://packagist.org/downloads/",
  9091. "license": [
  9092. "BSD-3-Clause"
  9093. ],
  9094. "authors": [
  9095. {
  9096. "name": "Arne Blankerts",
  9097. "email": "arne@blankerts.de",
  9098. "role": "Developer"
  9099. },
  9100. {
  9101. "name": "Sebastian Heuer",
  9102. "email": "sebastian@phpeople.de",
  9103. "role": "Developer"
  9104. },
  9105. {
  9106. "name": "Sebastian Bergmann",
  9107. "email": "sebastian@phpunit.de",
  9108. "role": "Developer"
  9109. }
  9110. ],
  9111. "description": "Library for handling version information and constraints",
  9112. "support": {
  9113. "issues": "https://github.com/phar-io/version/issues",
  9114. "source": "https://github.com/phar-io/version/tree/3.2.1"
  9115. },
  9116. "time": "2022-02-21T01:04:05+00:00"
  9117. },
  9118. {
  9119. "name": "phpunit/php-code-coverage",
  9120. "version": "9.2.32",
  9121. "source": {
  9122. "type": "git",
  9123. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9124. "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5"
  9125. },
  9126. "dist": {
  9127. "type": "zip",
  9128. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/85402a822d1ecf1db1096959413d35e1c37cf1a5",
  9129. "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5",
  9130. "shasum": "",
  9131. "mirrors": [
  9132. {
  9133. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9134. "preferred": true
  9135. }
  9136. ]
  9137. },
  9138. "require": {
  9139. "ext-dom": "*",
  9140. "ext-libxml": "*",
  9141. "ext-xmlwriter": "*",
  9142. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  9143. "php": ">=7.3",
  9144. "phpunit/php-file-iterator": "^3.0.6",
  9145. "phpunit/php-text-template": "^2.0.4",
  9146. "sebastian/code-unit-reverse-lookup": "^2.0.3",
  9147. "sebastian/complexity": "^2.0.3",
  9148. "sebastian/environment": "^5.1.5",
  9149. "sebastian/lines-of-code": "^1.0.4",
  9150. "sebastian/version": "^3.0.2",
  9151. "theseer/tokenizer": "^1.2.3"
  9152. },
  9153. "require-dev": {
  9154. "phpunit/phpunit": "^9.6"
  9155. },
  9156. "suggest": {
  9157. "ext-pcov": "PHP extension that provides line coverage",
  9158. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9159. },
  9160. "type": "library",
  9161. "extra": {
  9162. "branch-alias": {
  9163. "dev-main": "9.2.x-dev"
  9164. }
  9165. },
  9166. "autoload": {
  9167. "classmap": [
  9168. "src/"
  9169. ]
  9170. },
  9171. "notification-url": "https://packagist.org/downloads/",
  9172. "license": [
  9173. "BSD-3-Clause"
  9174. ],
  9175. "authors": [
  9176. {
  9177. "name": "Sebastian Bergmann",
  9178. "email": "sebastian@phpunit.de",
  9179. "role": "lead"
  9180. }
  9181. ],
  9182. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9183. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9184. "keywords": [
  9185. "coverage",
  9186. "testing",
  9187. "xunit"
  9188. ],
  9189. "support": {
  9190. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9191. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  9192. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.32"
  9193. },
  9194. "funding": [
  9195. {
  9196. "url": "https://github.com/sebastianbergmann",
  9197. "type": "github"
  9198. }
  9199. ],
  9200. "time": "2024-08-22T04:23:01+00:00"
  9201. },
  9202. {
  9203. "name": "phpunit/php-file-iterator",
  9204. "version": "3.0.6",
  9205. "source": {
  9206. "type": "git",
  9207. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9208. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  9209. },
  9210. "dist": {
  9211. "type": "zip",
  9212. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9213. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9214. "shasum": "",
  9215. "mirrors": [
  9216. {
  9217. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9218. "preferred": true
  9219. }
  9220. ]
  9221. },
  9222. "require": {
  9223. "php": ">=7.3"
  9224. },
  9225. "require-dev": {
  9226. "phpunit/phpunit": "^9.3"
  9227. },
  9228. "type": "library",
  9229. "extra": {
  9230. "branch-alias": {
  9231. "dev-master": "3.0-dev"
  9232. }
  9233. },
  9234. "autoload": {
  9235. "classmap": [
  9236. "src/"
  9237. ]
  9238. },
  9239. "notification-url": "https://packagist.org/downloads/",
  9240. "license": [
  9241. "BSD-3-Clause"
  9242. ],
  9243. "authors": [
  9244. {
  9245. "name": "Sebastian Bergmann",
  9246. "email": "sebastian@phpunit.de",
  9247. "role": "lead"
  9248. }
  9249. ],
  9250. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9251. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9252. "keywords": [
  9253. "filesystem",
  9254. "iterator"
  9255. ],
  9256. "support": {
  9257. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9258. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  9259. },
  9260. "funding": [
  9261. {
  9262. "url": "https://github.com/sebastianbergmann",
  9263. "type": "github"
  9264. }
  9265. ],
  9266. "time": "2021-12-02T12:48:52+00:00"
  9267. },
  9268. {
  9269. "name": "phpunit/php-invoker",
  9270. "version": "3.1.1",
  9271. "source": {
  9272. "type": "git",
  9273. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9274. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  9275. },
  9276. "dist": {
  9277. "type": "zip",
  9278. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9279. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9280. "shasum": "",
  9281. "mirrors": [
  9282. {
  9283. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9284. "preferred": true
  9285. }
  9286. ]
  9287. },
  9288. "require": {
  9289. "php": ">=7.3"
  9290. },
  9291. "require-dev": {
  9292. "ext-pcntl": "*",
  9293. "phpunit/phpunit": "^9.3"
  9294. },
  9295. "suggest": {
  9296. "ext-pcntl": "*"
  9297. },
  9298. "type": "library",
  9299. "extra": {
  9300. "branch-alias": {
  9301. "dev-master": "3.1-dev"
  9302. }
  9303. },
  9304. "autoload": {
  9305. "classmap": [
  9306. "src/"
  9307. ]
  9308. },
  9309. "notification-url": "https://packagist.org/downloads/",
  9310. "license": [
  9311. "BSD-3-Clause"
  9312. ],
  9313. "authors": [
  9314. {
  9315. "name": "Sebastian Bergmann",
  9316. "email": "sebastian@phpunit.de",
  9317. "role": "lead"
  9318. }
  9319. ],
  9320. "description": "Invoke callables with a timeout",
  9321. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9322. "keywords": [
  9323. "process"
  9324. ],
  9325. "support": {
  9326. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9327. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  9328. },
  9329. "funding": [
  9330. {
  9331. "url": "https://github.com/sebastianbergmann",
  9332. "type": "github"
  9333. }
  9334. ],
  9335. "time": "2020-09-28T05:58:55+00:00"
  9336. },
  9337. {
  9338. "name": "phpunit/php-text-template",
  9339. "version": "2.0.4",
  9340. "source": {
  9341. "type": "git",
  9342. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9343. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  9344. },
  9345. "dist": {
  9346. "type": "zip",
  9347. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9348. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9349. "shasum": "",
  9350. "mirrors": [
  9351. {
  9352. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9353. "preferred": true
  9354. }
  9355. ]
  9356. },
  9357. "require": {
  9358. "php": ">=7.3"
  9359. },
  9360. "require-dev": {
  9361. "phpunit/phpunit": "^9.3"
  9362. },
  9363. "type": "library",
  9364. "extra": {
  9365. "branch-alias": {
  9366. "dev-master": "2.0-dev"
  9367. }
  9368. },
  9369. "autoload": {
  9370. "classmap": [
  9371. "src/"
  9372. ]
  9373. },
  9374. "notification-url": "https://packagist.org/downloads/",
  9375. "license": [
  9376. "BSD-3-Clause"
  9377. ],
  9378. "authors": [
  9379. {
  9380. "name": "Sebastian Bergmann",
  9381. "email": "sebastian@phpunit.de",
  9382. "role": "lead"
  9383. }
  9384. ],
  9385. "description": "Simple template engine.",
  9386. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9387. "keywords": [
  9388. "template"
  9389. ],
  9390. "support": {
  9391. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9392. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  9393. },
  9394. "funding": [
  9395. {
  9396. "url": "https://github.com/sebastianbergmann",
  9397. "type": "github"
  9398. }
  9399. ],
  9400. "time": "2020-10-26T05:33:50+00:00"
  9401. },
  9402. {
  9403. "name": "phpunit/php-timer",
  9404. "version": "5.0.3",
  9405. "source": {
  9406. "type": "git",
  9407. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9408. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  9409. },
  9410. "dist": {
  9411. "type": "zip",
  9412. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9413. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9414. "shasum": "",
  9415. "mirrors": [
  9416. {
  9417. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9418. "preferred": true
  9419. }
  9420. ]
  9421. },
  9422. "require": {
  9423. "php": ">=7.3"
  9424. },
  9425. "require-dev": {
  9426. "phpunit/phpunit": "^9.3"
  9427. },
  9428. "type": "library",
  9429. "extra": {
  9430. "branch-alias": {
  9431. "dev-master": "5.0-dev"
  9432. }
  9433. },
  9434. "autoload": {
  9435. "classmap": [
  9436. "src/"
  9437. ]
  9438. },
  9439. "notification-url": "https://packagist.org/downloads/",
  9440. "license": [
  9441. "BSD-3-Clause"
  9442. ],
  9443. "authors": [
  9444. {
  9445. "name": "Sebastian Bergmann",
  9446. "email": "sebastian@phpunit.de",
  9447. "role": "lead"
  9448. }
  9449. ],
  9450. "description": "Utility class for timing",
  9451. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9452. "keywords": [
  9453. "timer"
  9454. ],
  9455. "support": {
  9456. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9457. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  9458. },
  9459. "funding": [
  9460. {
  9461. "url": "https://github.com/sebastianbergmann",
  9462. "type": "github"
  9463. }
  9464. ],
  9465. "time": "2020-10-26T13:16:10+00:00"
  9466. },
  9467. {
  9468. "name": "phpunit/phpunit",
  9469. "version": "9.6.30",
  9470. "source": {
  9471. "type": "git",
  9472. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9473. "reference": "b69489b312503bf8fa6d75a76916919d7d2fa6d4"
  9474. },
  9475. "dist": {
  9476. "type": "zip",
  9477. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/b69489b312503bf8fa6d75a76916919d7d2fa6d4",
  9478. "reference": "b69489b312503bf8fa6d75a76916919d7d2fa6d4",
  9479. "shasum": "",
  9480. "mirrors": [
  9481. {
  9482. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9483. "preferred": true
  9484. }
  9485. ]
  9486. },
  9487. "require": {
  9488. "doctrine/instantiator": "^1.5.0 || ^2",
  9489. "ext-dom": "*",
  9490. "ext-json": "*",
  9491. "ext-libxml": "*",
  9492. "ext-mbstring": "*",
  9493. "ext-xml": "*",
  9494. "ext-xmlwriter": "*",
  9495. "myclabs/deep-copy": "^1.13.4",
  9496. "phar-io/manifest": "^2.0.4",
  9497. "phar-io/version": "^3.2.1",
  9498. "php": ">=7.3",
  9499. "phpunit/php-code-coverage": "^9.2.32",
  9500. "phpunit/php-file-iterator": "^3.0.6",
  9501. "phpunit/php-invoker": "^3.1.1",
  9502. "phpunit/php-text-template": "^2.0.4",
  9503. "phpunit/php-timer": "^5.0.3",
  9504. "sebastian/cli-parser": "^1.0.2",
  9505. "sebastian/code-unit": "^1.0.8",
  9506. "sebastian/comparator": "^4.0.9",
  9507. "sebastian/diff": "^4.0.6",
  9508. "sebastian/environment": "^5.1.5",
  9509. "sebastian/exporter": "^4.0.8",
  9510. "sebastian/global-state": "^5.0.8",
  9511. "sebastian/object-enumerator": "^4.0.4",
  9512. "sebastian/resource-operations": "^3.0.4",
  9513. "sebastian/type": "^3.2.1",
  9514. "sebastian/version": "^3.0.2"
  9515. },
  9516. "suggest": {
  9517. "ext-soap": "To be able to generate mocks based on WSDL files",
  9518. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9519. },
  9520. "bin": [
  9521. "phpunit"
  9522. ],
  9523. "type": "library",
  9524. "extra": {
  9525. "branch-alias": {
  9526. "dev-master": "9.6-dev"
  9527. }
  9528. },
  9529. "autoload": {
  9530. "files": [
  9531. "src/Framework/Assert/Functions.php"
  9532. ],
  9533. "classmap": [
  9534. "src/"
  9535. ]
  9536. },
  9537. "notification-url": "https://packagist.org/downloads/",
  9538. "license": [
  9539. "BSD-3-Clause"
  9540. ],
  9541. "authors": [
  9542. {
  9543. "name": "Sebastian Bergmann",
  9544. "email": "sebastian@phpunit.de",
  9545. "role": "lead"
  9546. }
  9547. ],
  9548. "description": "The PHP Unit Testing framework.",
  9549. "homepage": "https://phpunit.de/",
  9550. "keywords": [
  9551. "phpunit",
  9552. "testing",
  9553. "xunit"
  9554. ],
  9555. "support": {
  9556. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9557. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9558. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.30"
  9559. },
  9560. "funding": [
  9561. {
  9562. "url": "https://phpunit.de/sponsors.html",
  9563. "type": "custom"
  9564. },
  9565. {
  9566. "url": "https://github.com/sebastianbergmann",
  9567. "type": "github"
  9568. },
  9569. {
  9570. "url": "https://liberapay.com/sebastianbergmann",
  9571. "type": "liberapay"
  9572. },
  9573. {
  9574. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  9575. "type": "thanks_dev"
  9576. },
  9577. {
  9578. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9579. "type": "tidelift"
  9580. }
  9581. ],
  9582. "time": "2025-12-01T07:35:08+00:00"
  9583. },
  9584. {
  9585. "name": "sebastian/cli-parser",
  9586. "version": "1.0.2",
  9587. "source": {
  9588. "type": "git",
  9589. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9590. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b"
  9591. },
  9592. "dist": {
  9593. "type": "zip",
  9594. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  9595. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  9596. "shasum": "",
  9597. "mirrors": [
  9598. {
  9599. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9600. "preferred": true
  9601. }
  9602. ]
  9603. },
  9604. "require": {
  9605. "php": ">=7.3"
  9606. },
  9607. "require-dev": {
  9608. "phpunit/phpunit": "^9.3"
  9609. },
  9610. "type": "library",
  9611. "extra": {
  9612. "branch-alias": {
  9613. "dev-master": "1.0-dev"
  9614. }
  9615. },
  9616. "autoload": {
  9617. "classmap": [
  9618. "src/"
  9619. ]
  9620. },
  9621. "notification-url": "https://packagist.org/downloads/",
  9622. "license": [
  9623. "BSD-3-Clause"
  9624. ],
  9625. "authors": [
  9626. {
  9627. "name": "Sebastian Bergmann",
  9628. "email": "sebastian@phpunit.de",
  9629. "role": "lead"
  9630. }
  9631. ],
  9632. "description": "Library for parsing CLI options",
  9633. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9634. "support": {
  9635. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9636. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.2"
  9637. },
  9638. "funding": [
  9639. {
  9640. "url": "https://github.com/sebastianbergmann",
  9641. "type": "github"
  9642. }
  9643. ],
  9644. "time": "2024-03-02T06:27:43+00:00"
  9645. },
  9646. {
  9647. "name": "sebastian/code-unit",
  9648. "version": "1.0.8",
  9649. "source": {
  9650. "type": "git",
  9651. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9652. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  9653. },
  9654. "dist": {
  9655. "type": "zip",
  9656. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9657. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9658. "shasum": "",
  9659. "mirrors": [
  9660. {
  9661. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9662. "preferred": true
  9663. }
  9664. ]
  9665. },
  9666. "require": {
  9667. "php": ">=7.3"
  9668. },
  9669. "require-dev": {
  9670. "phpunit/phpunit": "^9.3"
  9671. },
  9672. "type": "library",
  9673. "extra": {
  9674. "branch-alias": {
  9675. "dev-master": "1.0-dev"
  9676. }
  9677. },
  9678. "autoload": {
  9679. "classmap": [
  9680. "src/"
  9681. ]
  9682. },
  9683. "notification-url": "https://packagist.org/downloads/",
  9684. "license": [
  9685. "BSD-3-Clause"
  9686. ],
  9687. "authors": [
  9688. {
  9689. "name": "Sebastian Bergmann",
  9690. "email": "sebastian@phpunit.de",
  9691. "role": "lead"
  9692. }
  9693. ],
  9694. "description": "Collection of value objects that represent the PHP code units",
  9695. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9696. "support": {
  9697. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9698. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  9699. },
  9700. "funding": [
  9701. {
  9702. "url": "https://github.com/sebastianbergmann",
  9703. "type": "github"
  9704. }
  9705. ],
  9706. "time": "2020-10-26T13:08:54+00:00"
  9707. },
  9708. {
  9709. "name": "sebastian/code-unit-reverse-lookup",
  9710. "version": "2.0.3",
  9711. "source": {
  9712. "type": "git",
  9713. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9714. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  9715. },
  9716. "dist": {
  9717. "type": "zip",
  9718. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9719. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9720. "shasum": "",
  9721. "mirrors": [
  9722. {
  9723. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9724. "preferred": true
  9725. }
  9726. ]
  9727. },
  9728. "require": {
  9729. "php": ">=7.3"
  9730. },
  9731. "require-dev": {
  9732. "phpunit/phpunit": "^9.3"
  9733. },
  9734. "type": "library",
  9735. "extra": {
  9736. "branch-alias": {
  9737. "dev-master": "2.0-dev"
  9738. }
  9739. },
  9740. "autoload": {
  9741. "classmap": [
  9742. "src/"
  9743. ]
  9744. },
  9745. "notification-url": "https://packagist.org/downloads/",
  9746. "license": [
  9747. "BSD-3-Clause"
  9748. ],
  9749. "authors": [
  9750. {
  9751. "name": "Sebastian Bergmann",
  9752. "email": "sebastian@phpunit.de"
  9753. }
  9754. ],
  9755. "description": "Looks up which function or method a line of code belongs to",
  9756. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9757. "support": {
  9758. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9759. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  9760. },
  9761. "funding": [
  9762. {
  9763. "url": "https://github.com/sebastianbergmann",
  9764. "type": "github"
  9765. }
  9766. ],
  9767. "time": "2020-09-28T05:30:19+00:00"
  9768. },
  9769. {
  9770. "name": "sebastian/comparator",
  9771. "version": "4.0.x-dev",
  9772. "source": {
  9773. "type": "git",
  9774. "url": "https://github.com/sebastianbergmann/comparator.git",
  9775. "reference": "67a2df3a62639eab2cc5906065e9805d4fd5dfc5"
  9776. },
  9777. "dist": {
  9778. "type": "zip",
  9779. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/67a2df3a62639eab2cc5906065e9805d4fd5dfc5",
  9780. "reference": "67a2df3a62639eab2cc5906065e9805d4fd5dfc5",
  9781. "shasum": "",
  9782. "mirrors": [
  9783. {
  9784. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9785. "preferred": true
  9786. }
  9787. ]
  9788. },
  9789. "require": {
  9790. "php": ">=7.3",
  9791. "sebastian/diff": "^4.0",
  9792. "sebastian/exporter": "^4.0"
  9793. },
  9794. "require-dev": {
  9795. "phpunit/phpunit": "^9.3"
  9796. },
  9797. "type": "library",
  9798. "extra": {
  9799. "branch-alias": {
  9800. "dev-master": "4.0-dev"
  9801. }
  9802. },
  9803. "autoload": {
  9804. "classmap": [
  9805. "src/"
  9806. ]
  9807. },
  9808. "notification-url": "https://packagist.org/downloads/",
  9809. "license": [
  9810. "BSD-3-Clause"
  9811. ],
  9812. "authors": [
  9813. {
  9814. "name": "Sebastian Bergmann",
  9815. "email": "sebastian@phpunit.de"
  9816. },
  9817. {
  9818. "name": "Jeff Welch",
  9819. "email": "whatthejeff@gmail.com"
  9820. },
  9821. {
  9822. "name": "Volker Dusch",
  9823. "email": "github@wallbash.com"
  9824. },
  9825. {
  9826. "name": "Bernhard Schussek",
  9827. "email": "bschussek@2bepublished.at"
  9828. }
  9829. ],
  9830. "description": "Provides the functionality to compare PHP values for equality",
  9831. "homepage": "https://github.com/sebastianbergmann/comparator",
  9832. "keywords": [
  9833. "comparator",
  9834. "compare",
  9835. "equality"
  9836. ],
  9837. "support": {
  9838. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9839. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.9"
  9840. },
  9841. "funding": [
  9842. {
  9843. "url": "https://github.com/sebastianbergmann",
  9844. "type": "github"
  9845. },
  9846. {
  9847. "url": "https://liberapay.com/sebastianbergmann",
  9848. "type": "liberapay"
  9849. },
  9850. {
  9851. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  9852. "type": "thanks_dev"
  9853. },
  9854. {
  9855. "url": "https://tidelift.com/funding/github/packagist/sebastian/comparator",
  9856. "type": "tidelift"
  9857. }
  9858. ],
  9859. "time": "2025-08-10T06:51:50+00:00"
  9860. },
  9861. {
  9862. "name": "sebastian/complexity",
  9863. "version": "2.0.3",
  9864. "source": {
  9865. "type": "git",
  9866. "url": "https://github.com/sebastianbergmann/complexity.git",
  9867. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a"
  9868. },
  9869. "dist": {
  9870. "type": "zip",
  9871. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a",
  9872. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a",
  9873. "shasum": "",
  9874. "mirrors": [
  9875. {
  9876. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9877. "preferred": true
  9878. }
  9879. ]
  9880. },
  9881. "require": {
  9882. "nikic/php-parser": "^4.18 || ^5.0",
  9883. "php": ">=7.3"
  9884. },
  9885. "require-dev": {
  9886. "phpunit/phpunit": "^9.3"
  9887. },
  9888. "type": "library",
  9889. "extra": {
  9890. "branch-alias": {
  9891. "dev-master": "2.0-dev"
  9892. }
  9893. },
  9894. "autoload": {
  9895. "classmap": [
  9896. "src/"
  9897. ]
  9898. },
  9899. "notification-url": "https://packagist.org/downloads/",
  9900. "license": [
  9901. "BSD-3-Clause"
  9902. ],
  9903. "authors": [
  9904. {
  9905. "name": "Sebastian Bergmann",
  9906. "email": "sebastian@phpunit.de",
  9907. "role": "lead"
  9908. }
  9909. ],
  9910. "description": "Library for calculating the complexity of PHP code units",
  9911. "homepage": "https://github.com/sebastianbergmann/complexity",
  9912. "support": {
  9913. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9914. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3"
  9915. },
  9916. "funding": [
  9917. {
  9918. "url": "https://github.com/sebastianbergmann",
  9919. "type": "github"
  9920. }
  9921. ],
  9922. "time": "2023-12-22T06:19:30+00:00"
  9923. },
  9924. {
  9925. "name": "sebastian/diff",
  9926. "version": "4.0.6",
  9927. "source": {
  9928. "type": "git",
  9929. "url": "https://github.com/sebastianbergmann/diff.git",
  9930. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  9931. },
  9932. "dist": {
  9933. "type": "zip",
  9934. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  9935. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  9936. "shasum": "",
  9937. "mirrors": [
  9938. {
  9939. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9940. "preferred": true
  9941. }
  9942. ]
  9943. },
  9944. "require": {
  9945. "php": ">=7.3"
  9946. },
  9947. "require-dev": {
  9948. "phpunit/phpunit": "^9.3",
  9949. "symfony/process": "^4.2 || ^5"
  9950. },
  9951. "type": "library",
  9952. "extra": {
  9953. "branch-alias": {
  9954. "dev-master": "4.0-dev"
  9955. }
  9956. },
  9957. "autoload": {
  9958. "classmap": [
  9959. "src/"
  9960. ]
  9961. },
  9962. "notification-url": "https://packagist.org/downloads/",
  9963. "license": [
  9964. "BSD-3-Clause"
  9965. ],
  9966. "authors": [
  9967. {
  9968. "name": "Sebastian Bergmann",
  9969. "email": "sebastian@phpunit.de"
  9970. },
  9971. {
  9972. "name": "Kore Nordmann",
  9973. "email": "mail@kore-nordmann.de"
  9974. }
  9975. ],
  9976. "description": "Diff implementation",
  9977. "homepage": "https://github.com/sebastianbergmann/diff",
  9978. "keywords": [
  9979. "diff",
  9980. "udiff",
  9981. "unidiff",
  9982. "unified diff"
  9983. ],
  9984. "support": {
  9985. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9986. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  9987. },
  9988. "funding": [
  9989. {
  9990. "url": "https://github.com/sebastianbergmann",
  9991. "type": "github"
  9992. }
  9993. ],
  9994. "time": "2024-03-02T06:30:58+00:00"
  9995. },
  9996. {
  9997. "name": "sebastian/environment",
  9998. "version": "5.1.5",
  9999. "source": {
  10000. "type": "git",
  10001. "url": "https://github.com/sebastianbergmann/environment.git",
  10002. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  10003. },
  10004. "dist": {
  10005. "type": "zip",
  10006. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  10007. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  10008. "shasum": "",
  10009. "mirrors": [
  10010. {
  10011. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10012. "preferred": true
  10013. }
  10014. ]
  10015. },
  10016. "require": {
  10017. "php": ">=7.3"
  10018. },
  10019. "require-dev": {
  10020. "phpunit/phpunit": "^9.3"
  10021. },
  10022. "suggest": {
  10023. "ext-posix": "*"
  10024. },
  10025. "type": "library",
  10026. "extra": {
  10027. "branch-alias": {
  10028. "dev-master": "5.1-dev"
  10029. }
  10030. },
  10031. "autoload": {
  10032. "classmap": [
  10033. "src/"
  10034. ]
  10035. },
  10036. "notification-url": "https://packagist.org/downloads/",
  10037. "license": [
  10038. "BSD-3-Clause"
  10039. ],
  10040. "authors": [
  10041. {
  10042. "name": "Sebastian Bergmann",
  10043. "email": "sebastian@phpunit.de"
  10044. }
  10045. ],
  10046. "description": "Provides functionality to handle HHVM/PHP environments",
  10047. "homepage": "http://www.github.com/sebastianbergmann/environment",
  10048. "keywords": [
  10049. "Xdebug",
  10050. "environment",
  10051. "hhvm"
  10052. ],
  10053. "support": {
  10054. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10055. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  10056. },
  10057. "funding": [
  10058. {
  10059. "url": "https://github.com/sebastianbergmann",
  10060. "type": "github"
  10061. }
  10062. ],
  10063. "time": "2023-02-03T06:03:51+00:00"
  10064. },
  10065. {
  10066. "name": "sebastian/exporter",
  10067. "version": "4.0.8",
  10068. "source": {
  10069. "type": "git",
  10070. "url": "https://github.com/sebastianbergmann/exporter.git",
  10071. "reference": "14c6ba52f95a36c3d27c835d65efc7123c446e8c"
  10072. },
  10073. "dist": {
  10074. "type": "zip",
  10075. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/14c6ba52f95a36c3d27c835d65efc7123c446e8c",
  10076. "reference": "14c6ba52f95a36c3d27c835d65efc7123c446e8c",
  10077. "shasum": "",
  10078. "mirrors": [
  10079. {
  10080. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10081. "preferred": true
  10082. }
  10083. ]
  10084. },
  10085. "require": {
  10086. "php": ">=7.3",
  10087. "sebastian/recursion-context": "^4.0"
  10088. },
  10089. "require-dev": {
  10090. "ext-mbstring": "*",
  10091. "phpunit/phpunit": "^9.3"
  10092. },
  10093. "type": "library",
  10094. "extra": {
  10095. "branch-alias": {
  10096. "dev-master": "4.0-dev"
  10097. }
  10098. },
  10099. "autoload": {
  10100. "classmap": [
  10101. "src/"
  10102. ]
  10103. },
  10104. "notification-url": "https://packagist.org/downloads/",
  10105. "license": [
  10106. "BSD-3-Clause"
  10107. ],
  10108. "authors": [
  10109. {
  10110. "name": "Sebastian Bergmann",
  10111. "email": "sebastian@phpunit.de"
  10112. },
  10113. {
  10114. "name": "Jeff Welch",
  10115. "email": "whatthejeff@gmail.com"
  10116. },
  10117. {
  10118. "name": "Volker Dusch",
  10119. "email": "github@wallbash.com"
  10120. },
  10121. {
  10122. "name": "Adam Harvey",
  10123. "email": "aharvey@php.net"
  10124. },
  10125. {
  10126. "name": "Bernhard Schussek",
  10127. "email": "bschussek@gmail.com"
  10128. }
  10129. ],
  10130. "description": "Provides the functionality to export PHP variables for visualization",
  10131. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10132. "keywords": [
  10133. "export",
  10134. "exporter"
  10135. ],
  10136. "support": {
  10137. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10138. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.8"
  10139. },
  10140. "funding": [
  10141. {
  10142. "url": "https://github.com/sebastianbergmann",
  10143. "type": "github"
  10144. },
  10145. {
  10146. "url": "https://liberapay.com/sebastianbergmann",
  10147. "type": "liberapay"
  10148. },
  10149. {
  10150. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  10151. "type": "thanks_dev"
  10152. },
  10153. {
  10154. "url": "https://tidelift.com/funding/github/packagist/sebastian/exporter",
  10155. "type": "tidelift"
  10156. }
  10157. ],
  10158. "time": "2025-09-24T06:03:27+00:00"
  10159. },
  10160. {
  10161. "name": "sebastian/global-state",
  10162. "version": "5.0.8",
  10163. "source": {
  10164. "type": "git",
  10165. "url": "https://github.com/sebastianbergmann/global-state.git",
  10166. "reference": "b6781316bdcd28260904e7cc18ec983d0d2ef4f6"
  10167. },
  10168. "dist": {
  10169. "type": "zip",
  10170. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/b6781316bdcd28260904e7cc18ec983d0d2ef4f6",
  10171. "reference": "b6781316bdcd28260904e7cc18ec983d0d2ef4f6",
  10172. "shasum": "",
  10173. "mirrors": [
  10174. {
  10175. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10176. "preferred": true
  10177. }
  10178. ]
  10179. },
  10180. "require": {
  10181. "php": ">=7.3",
  10182. "sebastian/object-reflector": "^2.0",
  10183. "sebastian/recursion-context": "^4.0"
  10184. },
  10185. "require-dev": {
  10186. "ext-dom": "*",
  10187. "phpunit/phpunit": "^9.3"
  10188. },
  10189. "suggest": {
  10190. "ext-uopz": "*"
  10191. },
  10192. "type": "library",
  10193. "extra": {
  10194. "branch-alias": {
  10195. "dev-master": "5.0-dev"
  10196. }
  10197. },
  10198. "autoload": {
  10199. "classmap": [
  10200. "src/"
  10201. ]
  10202. },
  10203. "notification-url": "https://packagist.org/downloads/",
  10204. "license": [
  10205. "BSD-3-Clause"
  10206. ],
  10207. "authors": [
  10208. {
  10209. "name": "Sebastian Bergmann",
  10210. "email": "sebastian@phpunit.de"
  10211. }
  10212. ],
  10213. "description": "Snapshotting of global state",
  10214. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  10215. "keywords": [
  10216. "global state"
  10217. ],
  10218. "support": {
  10219. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10220. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.8"
  10221. },
  10222. "funding": [
  10223. {
  10224. "url": "https://github.com/sebastianbergmann",
  10225. "type": "github"
  10226. },
  10227. {
  10228. "url": "https://liberapay.com/sebastianbergmann",
  10229. "type": "liberapay"
  10230. },
  10231. {
  10232. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  10233. "type": "thanks_dev"
  10234. },
  10235. {
  10236. "url": "https://tidelift.com/funding/github/packagist/sebastian/global-state",
  10237. "type": "tidelift"
  10238. }
  10239. ],
  10240. "time": "2025-08-10T07:10:35+00:00"
  10241. },
  10242. {
  10243. "name": "sebastian/lines-of-code",
  10244. "version": "1.0.4",
  10245. "source": {
  10246. "type": "git",
  10247. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10248. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5"
  10249. },
  10250. "dist": {
  10251. "type": "zip",
  10252. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  10253. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  10254. "shasum": "",
  10255. "mirrors": [
  10256. {
  10257. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10258. "preferred": true
  10259. }
  10260. ]
  10261. },
  10262. "require": {
  10263. "nikic/php-parser": "^4.18 || ^5.0",
  10264. "php": ">=7.3"
  10265. },
  10266. "require-dev": {
  10267. "phpunit/phpunit": "^9.3"
  10268. },
  10269. "type": "library",
  10270. "extra": {
  10271. "branch-alias": {
  10272. "dev-master": "1.0-dev"
  10273. }
  10274. },
  10275. "autoload": {
  10276. "classmap": [
  10277. "src/"
  10278. ]
  10279. },
  10280. "notification-url": "https://packagist.org/downloads/",
  10281. "license": [
  10282. "BSD-3-Clause"
  10283. ],
  10284. "authors": [
  10285. {
  10286. "name": "Sebastian Bergmann",
  10287. "email": "sebastian@phpunit.de",
  10288. "role": "lead"
  10289. }
  10290. ],
  10291. "description": "Library for counting the lines of code in PHP source code",
  10292. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10293. "support": {
  10294. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10295. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4"
  10296. },
  10297. "funding": [
  10298. {
  10299. "url": "https://github.com/sebastianbergmann",
  10300. "type": "github"
  10301. }
  10302. ],
  10303. "time": "2023-12-22T06:20:34+00:00"
  10304. },
  10305. {
  10306. "name": "sebastian/object-enumerator",
  10307. "version": "4.0.4",
  10308. "source": {
  10309. "type": "git",
  10310. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10311. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  10312. },
  10313. "dist": {
  10314. "type": "zip",
  10315. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  10316. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  10317. "shasum": "",
  10318. "mirrors": [
  10319. {
  10320. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10321. "preferred": true
  10322. }
  10323. ]
  10324. },
  10325. "require": {
  10326. "php": ">=7.3",
  10327. "sebastian/object-reflector": "^2.0",
  10328. "sebastian/recursion-context": "^4.0"
  10329. },
  10330. "require-dev": {
  10331. "phpunit/phpunit": "^9.3"
  10332. },
  10333. "type": "library",
  10334. "extra": {
  10335. "branch-alias": {
  10336. "dev-master": "4.0-dev"
  10337. }
  10338. },
  10339. "autoload": {
  10340. "classmap": [
  10341. "src/"
  10342. ]
  10343. },
  10344. "notification-url": "https://packagist.org/downloads/",
  10345. "license": [
  10346. "BSD-3-Clause"
  10347. ],
  10348. "authors": [
  10349. {
  10350. "name": "Sebastian Bergmann",
  10351. "email": "sebastian@phpunit.de"
  10352. }
  10353. ],
  10354. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10355. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10356. "support": {
  10357. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10358. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  10359. },
  10360. "funding": [
  10361. {
  10362. "url": "https://github.com/sebastianbergmann",
  10363. "type": "github"
  10364. }
  10365. ],
  10366. "time": "2020-10-26T13:12:34+00:00"
  10367. },
  10368. {
  10369. "name": "sebastian/object-reflector",
  10370. "version": "2.0.4",
  10371. "source": {
  10372. "type": "git",
  10373. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10374. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  10375. },
  10376. "dist": {
  10377. "type": "zip",
  10378. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10379. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10380. "shasum": "",
  10381. "mirrors": [
  10382. {
  10383. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10384. "preferred": true
  10385. }
  10386. ]
  10387. },
  10388. "require": {
  10389. "php": ">=7.3"
  10390. },
  10391. "require-dev": {
  10392. "phpunit/phpunit": "^9.3"
  10393. },
  10394. "type": "library",
  10395. "extra": {
  10396. "branch-alias": {
  10397. "dev-master": "2.0-dev"
  10398. }
  10399. },
  10400. "autoload": {
  10401. "classmap": [
  10402. "src/"
  10403. ]
  10404. },
  10405. "notification-url": "https://packagist.org/downloads/",
  10406. "license": [
  10407. "BSD-3-Clause"
  10408. ],
  10409. "authors": [
  10410. {
  10411. "name": "Sebastian Bergmann",
  10412. "email": "sebastian@phpunit.de"
  10413. }
  10414. ],
  10415. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10416. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10417. "support": {
  10418. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10419. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  10420. },
  10421. "funding": [
  10422. {
  10423. "url": "https://github.com/sebastianbergmann",
  10424. "type": "github"
  10425. }
  10426. ],
  10427. "time": "2020-10-26T13:14:26+00:00"
  10428. },
  10429. {
  10430. "name": "sebastian/recursion-context",
  10431. "version": "4.0.5",
  10432. "source": {
  10433. "type": "git",
  10434. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10435. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  10436. },
  10437. "dist": {
  10438. "type": "zip",
  10439. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10440. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10441. "shasum": "",
  10442. "mirrors": [
  10443. {
  10444. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10445. "preferred": true
  10446. }
  10447. ]
  10448. },
  10449. "require": {
  10450. "php": ">=7.3"
  10451. },
  10452. "require-dev": {
  10453. "phpunit/phpunit": "^9.3"
  10454. },
  10455. "type": "library",
  10456. "extra": {
  10457. "branch-alias": {
  10458. "dev-master": "4.0-dev"
  10459. }
  10460. },
  10461. "autoload": {
  10462. "classmap": [
  10463. "src/"
  10464. ]
  10465. },
  10466. "notification-url": "https://packagist.org/downloads/",
  10467. "license": [
  10468. "BSD-3-Clause"
  10469. ],
  10470. "authors": [
  10471. {
  10472. "name": "Sebastian Bergmann",
  10473. "email": "sebastian@phpunit.de"
  10474. },
  10475. {
  10476. "name": "Jeff Welch",
  10477. "email": "whatthejeff@gmail.com"
  10478. },
  10479. {
  10480. "name": "Adam Harvey",
  10481. "email": "aharvey@php.net"
  10482. }
  10483. ],
  10484. "description": "Provides functionality to recursively process PHP variables",
  10485. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10486. "support": {
  10487. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10488. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  10489. },
  10490. "funding": [
  10491. {
  10492. "url": "https://github.com/sebastianbergmann",
  10493. "type": "github"
  10494. }
  10495. ],
  10496. "time": "2023-02-03T06:07:39+00:00"
  10497. },
  10498. {
  10499. "name": "sebastian/resource-operations",
  10500. "version": "3.0.4",
  10501. "source": {
  10502. "type": "git",
  10503. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10504. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e"
  10505. },
  10506. "dist": {
  10507. "type": "zip",
  10508. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  10509. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  10510. "shasum": "",
  10511. "mirrors": [
  10512. {
  10513. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10514. "preferred": true
  10515. }
  10516. ]
  10517. },
  10518. "require": {
  10519. "php": ">=7.3"
  10520. },
  10521. "require-dev": {
  10522. "phpunit/phpunit": "^9.0"
  10523. },
  10524. "type": "library",
  10525. "extra": {
  10526. "branch-alias": {
  10527. "dev-main": "3.0-dev"
  10528. }
  10529. },
  10530. "autoload": {
  10531. "classmap": [
  10532. "src/"
  10533. ]
  10534. },
  10535. "notification-url": "https://packagist.org/downloads/",
  10536. "license": [
  10537. "BSD-3-Clause"
  10538. ],
  10539. "authors": [
  10540. {
  10541. "name": "Sebastian Bergmann",
  10542. "email": "sebastian@phpunit.de"
  10543. }
  10544. ],
  10545. "description": "Provides a list of PHP built-in functions that operate on resources",
  10546. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10547. "support": {
  10548. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.4"
  10549. },
  10550. "funding": [
  10551. {
  10552. "url": "https://github.com/sebastianbergmann",
  10553. "type": "github"
  10554. }
  10555. ],
  10556. "abandoned": true,
  10557. "time": "2024-03-14T16:00:52+00:00"
  10558. },
  10559. {
  10560. "name": "sebastian/type",
  10561. "version": "3.2.1",
  10562. "source": {
  10563. "type": "git",
  10564. "url": "https://github.com/sebastianbergmann/type.git",
  10565. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  10566. },
  10567. "dist": {
  10568. "type": "zip",
  10569. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10570. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10571. "shasum": "",
  10572. "mirrors": [
  10573. {
  10574. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10575. "preferred": true
  10576. }
  10577. ]
  10578. },
  10579. "require": {
  10580. "php": ">=7.3"
  10581. },
  10582. "require-dev": {
  10583. "phpunit/phpunit": "^9.5"
  10584. },
  10585. "type": "library",
  10586. "extra": {
  10587. "branch-alias": {
  10588. "dev-master": "3.2-dev"
  10589. }
  10590. },
  10591. "autoload": {
  10592. "classmap": [
  10593. "src/"
  10594. ]
  10595. },
  10596. "notification-url": "https://packagist.org/downloads/",
  10597. "license": [
  10598. "BSD-3-Clause"
  10599. ],
  10600. "authors": [
  10601. {
  10602. "name": "Sebastian Bergmann",
  10603. "email": "sebastian@phpunit.de",
  10604. "role": "lead"
  10605. }
  10606. ],
  10607. "description": "Collection of value objects that represent the types of the PHP type system",
  10608. "homepage": "https://github.com/sebastianbergmann/type",
  10609. "support": {
  10610. "issues": "https://github.com/sebastianbergmann/type/issues",
  10611. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  10612. },
  10613. "funding": [
  10614. {
  10615. "url": "https://github.com/sebastianbergmann",
  10616. "type": "github"
  10617. }
  10618. ],
  10619. "time": "2023-02-03T06:13:03+00:00"
  10620. },
  10621. {
  10622. "name": "sebastian/version",
  10623. "version": "3.0.2",
  10624. "source": {
  10625. "type": "git",
  10626. "url": "https://github.com/sebastianbergmann/version.git",
  10627. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  10628. },
  10629. "dist": {
  10630. "type": "zip",
  10631. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  10632. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  10633. "shasum": "",
  10634. "mirrors": [
  10635. {
  10636. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10637. "preferred": true
  10638. }
  10639. ]
  10640. },
  10641. "require": {
  10642. "php": ">=7.3"
  10643. },
  10644. "type": "library",
  10645. "extra": {
  10646. "branch-alias": {
  10647. "dev-master": "3.0-dev"
  10648. }
  10649. },
  10650. "autoload": {
  10651. "classmap": [
  10652. "src/"
  10653. ]
  10654. },
  10655. "notification-url": "https://packagist.org/downloads/",
  10656. "license": [
  10657. "BSD-3-Clause"
  10658. ],
  10659. "authors": [
  10660. {
  10661. "name": "Sebastian Bergmann",
  10662. "email": "sebastian@phpunit.de",
  10663. "role": "lead"
  10664. }
  10665. ],
  10666. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10667. "homepage": "https://github.com/sebastianbergmann/version",
  10668. "support": {
  10669. "issues": "https://github.com/sebastianbergmann/version/issues",
  10670. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  10671. },
  10672. "funding": [
  10673. {
  10674. "url": "https://github.com/sebastianbergmann",
  10675. "type": "github"
  10676. }
  10677. ],
  10678. "time": "2020-09-28T06:39:44+00:00"
  10679. },
  10680. {
  10681. "name": "symfony/yaml",
  10682. "version": "v6.0.19",
  10683. "source": {
  10684. "type": "git",
  10685. "url": "https://github.com/symfony/yaml.git",
  10686. "reference": "deec3a812a0305a50db8ae689b183f43d915c884"
  10687. },
  10688. "dist": {
  10689. "type": "zip",
  10690. "url": "https://api.github.com/repos/symfony/yaml/zipball/deec3a812a0305a50db8ae689b183f43d915c884",
  10691. "reference": "deec3a812a0305a50db8ae689b183f43d915c884",
  10692. "shasum": "",
  10693. "mirrors": [
  10694. {
  10695. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10696. "preferred": true
  10697. }
  10698. ]
  10699. },
  10700. "require": {
  10701. "php": ">=8.0.2",
  10702. "symfony/polyfill-ctype": "^1.8"
  10703. },
  10704. "conflict": {
  10705. "symfony/console": "<5.4"
  10706. },
  10707. "require-dev": {
  10708. "symfony/console": "^5.4|^6.0"
  10709. },
  10710. "suggest": {
  10711. "symfony/console": "For validating YAML files using the lint command"
  10712. },
  10713. "bin": [
  10714. "Resources/bin/yaml-lint"
  10715. ],
  10716. "type": "library",
  10717. "autoload": {
  10718. "psr-4": {
  10719. "Symfony\\Component\\Yaml\\": ""
  10720. },
  10721. "exclude-from-classmap": [
  10722. "/Tests/"
  10723. ]
  10724. },
  10725. "notification-url": "https://packagist.org/downloads/",
  10726. "license": [
  10727. "MIT"
  10728. ],
  10729. "authors": [
  10730. {
  10731. "name": "Fabien Potencier",
  10732. "email": "fabien@symfony.com"
  10733. },
  10734. {
  10735. "name": "Symfony Community",
  10736. "homepage": "https://symfony.com/contributors"
  10737. }
  10738. ],
  10739. "description": "Loads and dumps YAML files",
  10740. "homepage": "https://symfony.com",
  10741. "support": {
  10742. "source": "https://github.com/symfony/yaml/tree/v6.0.19"
  10743. },
  10744. "funding": [
  10745. {
  10746. "url": "https://symfony.com/sponsor",
  10747. "type": "custom"
  10748. },
  10749. {
  10750. "url": "https://github.com/fabpot",
  10751. "type": "github"
  10752. },
  10753. {
  10754. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10755. "type": "tidelift"
  10756. }
  10757. ],
  10758. "time": "2023-01-11T11:50:03+00:00"
  10759. },
  10760. {
  10761. "name": "theseer/tokenizer",
  10762. "version": "1.3.1",
  10763. "source": {
  10764. "type": "git",
  10765. "url": "https://github.com/theseer/tokenizer.git",
  10766. "reference": "b7489ce515e168639d17feec34b8847c326b0b3c"
  10767. },
  10768. "dist": {
  10769. "type": "zip",
  10770. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/b7489ce515e168639d17feec34b8847c326b0b3c",
  10771. "reference": "b7489ce515e168639d17feec34b8847c326b0b3c",
  10772. "shasum": "",
  10773. "mirrors": [
  10774. {
  10775. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10776. "preferred": true
  10777. }
  10778. ]
  10779. },
  10780. "require": {
  10781. "ext-dom": "*",
  10782. "ext-tokenizer": "*",
  10783. "ext-xmlwriter": "*",
  10784. "php": "^7.2 || ^8.0"
  10785. },
  10786. "type": "library",
  10787. "autoload": {
  10788. "classmap": [
  10789. "src/"
  10790. ]
  10791. },
  10792. "notification-url": "https://packagist.org/downloads/",
  10793. "license": [
  10794. "BSD-3-Clause"
  10795. ],
  10796. "authors": [
  10797. {
  10798. "name": "Arne Blankerts",
  10799. "email": "arne@blankerts.de",
  10800. "role": "Developer"
  10801. }
  10802. ],
  10803. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10804. "support": {
  10805. "issues": "https://github.com/theseer/tokenizer/issues",
  10806. "source": "https://github.com/theseer/tokenizer/tree/1.3.1"
  10807. },
  10808. "funding": [
  10809. {
  10810. "url": "https://github.com/theseer",
  10811. "type": "github"
  10812. }
  10813. ],
  10814. "time": "2025-11-17T20:03:58+00:00"
  10815. }
  10816. ],
  10817. "aliases": [],
  10818. "minimum-stability": "dev",
  10819. "stability-flags": [],
  10820. "prefer-stable": true,
  10821. "prefer-lowest": false,
  10822. "platform": {
  10823. "php": "^7.3|^8.0"
  10824. },
  10825. "platform-dev": [],
  10826. "plugin-api-version": "2.3.0"
  10827. }