composer.lock 385 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638
  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": "6e1492a68bbcf2b27213b8c8fafdf458",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "v2.3.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "acf3142e6c5eafa378dc8ef3c069ab4558993f70"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/acf3142e6c5eafa378dc8ef3c069ab4558993f70",
  20. "reference": "acf3142e6c5eafa378dc8ef3c069ab4558993f70",
  21. "shasum": "",
  22. "mirrors": [
  23. {
  24. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  25. "preferred": true
  26. }
  27. ]
  28. },
  29. "require": {
  30. "php": "^7.3|^8.0",
  31. "symfony/http-foundation": "^5.3|^6|^7",
  32. "symfony/http-kernel": "^5.3|^6|^7"
  33. },
  34. "require-dev": {
  35. "phpunit/phpunit": "^9",
  36. "squizlabs/php_codesniffer": "^3.5"
  37. },
  38. "type": "library",
  39. "extra": {
  40. "branch-alias": {
  41. "dev-master": "2.2-dev"
  42. }
  43. },
  44. "autoload": {
  45. "psr-4": {
  46. "Asm89\\Stack\\": "src/"
  47. }
  48. },
  49. "notification-url": "https://packagist.org/downloads/",
  50. "license": [
  51. "MIT"
  52. ],
  53. "authors": [
  54. {
  55. "name": "Alexander",
  56. "email": "iam.asm89@gmail.com"
  57. }
  58. ],
  59. "description": "Cross-origin resource sharing library and stack middleware",
  60. "homepage": "https://github.com/asm89/stack-cors",
  61. "keywords": [
  62. "cors",
  63. "stack"
  64. ],
  65. "support": {
  66. "issues": "https://github.com/asm89/stack-cors/issues",
  67. "source": "https://github.com/asm89/stack-cors/tree/v2.3.0"
  68. },
  69. "time": "2025-03-13T08:50:04+00:00"
  70. },
  71. {
  72. "name": "brick/math",
  73. "version": "0.11.0",
  74. "source": {
  75. "type": "git",
  76. "url": "https://github.com/brick/math.git",
  77. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478"
  78. },
  79. "dist": {
  80. "type": "zip",
  81. "url": "https://api.github.com/repos/brick/math/zipball/0ad82ce168c82ba30d1c01ec86116ab52f589478",
  82. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478",
  83. "shasum": "",
  84. "mirrors": [
  85. {
  86. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  87. "preferred": true
  88. }
  89. ]
  90. },
  91. "require": {
  92. "php": "^8.0"
  93. },
  94. "require-dev": {
  95. "php-coveralls/php-coveralls": "^2.2",
  96. "phpunit/phpunit": "^9.0",
  97. "vimeo/psalm": "5.0.0"
  98. },
  99. "type": "library",
  100. "autoload": {
  101. "psr-4": {
  102. "Brick\\Math\\": "src/"
  103. }
  104. },
  105. "notification-url": "https://packagist.org/downloads/",
  106. "license": [
  107. "MIT"
  108. ],
  109. "description": "Arbitrary-precision arithmetic library",
  110. "keywords": [
  111. "Arbitrary-precision",
  112. "BigInteger",
  113. "BigRational",
  114. "arithmetic",
  115. "bigdecimal",
  116. "bignum",
  117. "brick",
  118. "math"
  119. ],
  120. "support": {
  121. "issues": "https://github.com/brick/math/issues",
  122. "source": "https://github.com/brick/math/tree/0.11.0"
  123. },
  124. "funding": [
  125. {
  126. "url": "https://github.com/BenMorel",
  127. "type": "github"
  128. }
  129. ],
  130. "time": "2023-01-15T23:15:59+00:00"
  131. },
  132. {
  133. "name": "carbonphp/carbon-doctrine-types",
  134. "version": "2.1.0",
  135. "source": {
  136. "type": "git",
  137. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  138. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb"
  139. },
  140. "dist": {
  141. "type": "zip",
  142. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  143. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  144. "shasum": "",
  145. "mirrors": [
  146. {
  147. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  148. "preferred": true
  149. }
  150. ]
  151. },
  152. "require": {
  153. "php": "^7.4 || ^8.0"
  154. },
  155. "conflict": {
  156. "doctrine/dbal": "<3.7.0 || >=4.0.0"
  157. },
  158. "require-dev": {
  159. "doctrine/dbal": "^3.7.0",
  160. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  161. "phpunit/phpunit": "^10.3"
  162. },
  163. "type": "library",
  164. "autoload": {
  165. "psr-4": {
  166. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  167. }
  168. },
  169. "notification-url": "https://packagist.org/downloads/",
  170. "license": [
  171. "MIT"
  172. ],
  173. "authors": [
  174. {
  175. "name": "KyleKatarn",
  176. "email": "kylekatarnls@gmail.com"
  177. }
  178. ],
  179. "description": "Types to use Carbon in Doctrine",
  180. "keywords": [
  181. "carbon",
  182. "date",
  183. "datetime",
  184. "doctrine",
  185. "time"
  186. ],
  187. "support": {
  188. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  189. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/2.1.0"
  190. },
  191. "funding": [
  192. {
  193. "url": "https://github.com/kylekatarnls",
  194. "type": "github"
  195. },
  196. {
  197. "url": "https://opencollective.com/Carbon",
  198. "type": "open_collective"
  199. },
  200. {
  201. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  202. "type": "tidelift"
  203. }
  204. ],
  205. "time": "2023-12-11T17:09:12+00:00"
  206. },
  207. {
  208. "name": "cboden/ratchet",
  209. "version": "v0.4.4",
  210. "source": {
  211. "type": "git",
  212. "url": "https://github.com/ratchetphp/Ratchet.git",
  213. "reference": "5012dc954541b40c5599d286fd40653f5716a38f"
  214. },
  215. "dist": {
  216. "type": "zip",
  217. "url": "https://api.github.com/repos/ratchetphp/Ratchet/zipball/5012dc954541b40c5599d286fd40653f5716a38f",
  218. "reference": "5012dc954541b40c5599d286fd40653f5716a38f",
  219. "shasum": "",
  220. "mirrors": [
  221. {
  222. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  223. "preferred": true
  224. }
  225. ]
  226. },
  227. "require": {
  228. "guzzlehttp/psr7": "^1.7|^2.0",
  229. "php": ">=5.4.2",
  230. "ratchet/rfc6455": "^0.3.1",
  231. "react/event-loop": ">=0.4",
  232. "react/socket": "^1.0 || ^0.8 || ^0.7 || ^0.6 || ^0.5",
  233. "symfony/http-foundation": "^2.6|^3.0|^4.0|^5.0|^6.0",
  234. "symfony/routing": "^2.6|^3.0|^4.0|^5.0|^6.0"
  235. },
  236. "require-dev": {
  237. "phpunit/phpunit": "~4.8"
  238. },
  239. "type": "library",
  240. "autoload": {
  241. "psr-4": {
  242. "Ratchet\\": "src/Ratchet"
  243. }
  244. },
  245. "notification-url": "https://packagist.org/downloads/",
  246. "license": [
  247. "MIT"
  248. ],
  249. "authors": [
  250. {
  251. "name": "Chris Boden",
  252. "email": "cboden@gmail.com",
  253. "role": "Developer"
  254. },
  255. {
  256. "name": "Matt Bonneau",
  257. "role": "Developer"
  258. }
  259. ],
  260. "description": "PHP WebSocket library",
  261. "homepage": "http://socketo.me",
  262. "keywords": [
  263. "Ratchet",
  264. "WebSockets",
  265. "server",
  266. "sockets",
  267. "websocket"
  268. ],
  269. "support": {
  270. "chat": "https://gitter.im/reactphp/reactphp",
  271. "issues": "https://github.com/ratchetphp/Ratchet/issues",
  272. "source": "https://github.com/ratchetphp/Ratchet/tree/v0.4.4"
  273. },
  274. "time": "2021-12-14T00:20:41+00:00"
  275. },
  276. {
  277. "name": "composer/pcre",
  278. "version": "3.3.2",
  279. "source": {
  280. "type": "git",
  281. "url": "https://github.com/composer/pcre.git",
  282. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e"
  283. },
  284. "dist": {
  285. "type": "zip",
  286. "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  287. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  288. "shasum": "",
  289. "mirrors": [
  290. {
  291. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  292. "preferred": true
  293. }
  294. ]
  295. },
  296. "require": {
  297. "php": "^7.4 || ^8.0"
  298. },
  299. "conflict": {
  300. "phpstan/phpstan": "<1.11.10"
  301. },
  302. "require-dev": {
  303. "phpstan/phpstan": "^1.12 || ^2",
  304. "phpstan/phpstan-strict-rules": "^1 || ^2",
  305. "phpunit/phpunit": "^8 || ^9"
  306. },
  307. "type": "library",
  308. "extra": {
  309. "branch-alias": {
  310. "dev-main": "3.x-dev"
  311. },
  312. "phpstan": {
  313. "includes": [
  314. "extension.neon"
  315. ]
  316. }
  317. },
  318. "autoload": {
  319. "psr-4": {
  320. "Composer\\Pcre\\": "src"
  321. }
  322. },
  323. "notification-url": "https://packagist.org/downloads/",
  324. "license": [
  325. "MIT"
  326. ],
  327. "authors": [
  328. {
  329. "name": "Jordi Boggiano",
  330. "email": "j.boggiano@seld.be",
  331. "homepage": "http://seld.be"
  332. }
  333. ],
  334. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  335. "keywords": [
  336. "PCRE",
  337. "preg",
  338. "regex",
  339. "regular expression"
  340. ],
  341. "support": {
  342. "issues": "https://github.com/composer/pcre/issues",
  343. "source": "https://github.com/composer/pcre/tree/3.3.2"
  344. },
  345. "funding": [
  346. {
  347. "url": "https://packagist.com",
  348. "type": "custom"
  349. },
  350. {
  351. "url": "https://github.com/composer",
  352. "type": "github"
  353. },
  354. {
  355. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  356. "type": "tidelift"
  357. }
  358. ],
  359. "time": "2024-11-12T16:29:46+00:00"
  360. },
  361. {
  362. "name": "composer/semver",
  363. "version": "3.4.3",
  364. "source": {
  365. "type": "git",
  366. "url": "https://github.com/composer/semver.git",
  367. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12"
  368. },
  369. "dist": {
  370. "type": "zip",
  371. "url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  372. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  373. "shasum": "",
  374. "mirrors": [
  375. {
  376. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  377. "preferred": true
  378. }
  379. ]
  380. },
  381. "require": {
  382. "php": "^5.3.2 || ^7.0 || ^8.0"
  383. },
  384. "require-dev": {
  385. "phpstan/phpstan": "^1.11",
  386. "symfony/phpunit-bridge": "^3 || ^7"
  387. },
  388. "type": "library",
  389. "extra": {
  390. "branch-alias": {
  391. "dev-main": "3.x-dev"
  392. }
  393. },
  394. "autoload": {
  395. "psr-4": {
  396. "Composer\\Semver\\": "src"
  397. }
  398. },
  399. "notification-url": "https://packagist.org/downloads/",
  400. "license": [
  401. "MIT"
  402. ],
  403. "authors": [
  404. {
  405. "name": "Nils Adermann",
  406. "email": "naderman@naderman.de",
  407. "homepage": "http://www.naderman.de"
  408. },
  409. {
  410. "name": "Jordi Boggiano",
  411. "email": "j.boggiano@seld.be",
  412. "homepage": "http://seld.be"
  413. },
  414. {
  415. "name": "Rob Bast",
  416. "email": "rob.bast@gmail.com",
  417. "homepage": "http://robbast.nl"
  418. }
  419. ],
  420. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  421. "keywords": [
  422. "semantic",
  423. "semver",
  424. "validation",
  425. "versioning"
  426. ],
  427. "support": {
  428. "irc": "ircs://irc.libera.chat:6697/composer",
  429. "issues": "https://github.com/composer/semver/issues",
  430. "source": "https://github.com/composer/semver/tree/3.4.3"
  431. },
  432. "funding": [
  433. {
  434. "url": "https://packagist.com",
  435. "type": "custom"
  436. },
  437. {
  438. "url": "https://github.com/composer",
  439. "type": "github"
  440. },
  441. {
  442. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  443. "type": "tidelift"
  444. }
  445. ],
  446. "time": "2024-09-19T14:15:21+00:00"
  447. },
  448. {
  449. "name": "dflydev/dot-access-data",
  450. "version": "v3.0.3",
  451. "source": {
  452. "type": "git",
  453. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  454. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  455. },
  456. "dist": {
  457. "type": "zip",
  458. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  459. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  460. "shasum": "",
  461. "mirrors": [
  462. {
  463. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  464. "preferred": true
  465. }
  466. ]
  467. },
  468. "require": {
  469. "php": "^7.1 || ^8.0"
  470. },
  471. "require-dev": {
  472. "phpstan/phpstan": "^0.12.42",
  473. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  474. "scrutinizer/ocular": "1.6.0",
  475. "squizlabs/php_codesniffer": "^3.5",
  476. "vimeo/psalm": "^4.0.0"
  477. },
  478. "type": "library",
  479. "extra": {
  480. "branch-alias": {
  481. "dev-main": "3.x-dev"
  482. }
  483. },
  484. "autoload": {
  485. "psr-4": {
  486. "Dflydev\\DotAccessData\\": "src/"
  487. }
  488. },
  489. "notification-url": "https://packagist.org/downloads/",
  490. "license": [
  491. "MIT"
  492. ],
  493. "authors": [
  494. {
  495. "name": "Dragonfly Development Inc.",
  496. "email": "info@dflydev.com",
  497. "homepage": "http://dflydev.com"
  498. },
  499. {
  500. "name": "Beau Simensen",
  501. "email": "beau@dflydev.com",
  502. "homepage": "http://beausimensen.com"
  503. },
  504. {
  505. "name": "Carlos Frutos",
  506. "email": "carlos@kiwing.it",
  507. "homepage": "https://github.com/cfrutos"
  508. },
  509. {
  510. "name": "Colin O'Dell",
  511. "email": "colinodell@gmail.com",
  512. "homepage": "https://www.colinodell.com"
  513. }
  514. ],
  515. "description": "Given a deep data structure, access data by dot notation.",
  516. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  517. "keywords": [
  518. "access",
  519. "data",
  520. "dot",
  521. "notation"
  522. ],
  523. "support": {
  524. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  525. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  526. },
  527. "time": "2024-07-08T12:26:09+00:00"
  528. },
  529. {
  530. "name": "doctrine/inflector",
  531. "version": "2.0.10",
  532. "source": {
  533. "type": "git",
  534. "url": "https://github.com/doctrine/inflector.git",
  535. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  536. },
  537. "dist": {
  538. "type": "zip",
  539. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  540. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  541. "shasum": "",
  542. "mirrors": [
  543. {
  544. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  545. "preferred": true
  546. }
  547. ]
  548. },
  549. "require": {
  550. "php": "^7.2 || ^8.0"
  551. },
  552. "require-dev": {
  553. "doctrine/coding-standard": "^11.0",
  554. "phpstan/phpstan": "^1.8",
  555. "phpstan/phpstan-phpunit": "^1.1",
  556. "phpstan/phpstan-strict-rules": "^1.3",
  557. "phpunit/phpunit": "^8.5 || ^9.5",
  558. "vimeo/psalm": "^4.25 || ^5.4"
  559. },
  560. "type": "library",
  561. "autoload": {
  562. "psr-4": {
  563. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  564. }
  565. },
  566. "notification-url": "https://packagist.org/downloads/",
  567. "license": [
  568. "MIT"
  569. ],
  570. "authors": [
  571. {
  572. "name": "Guilherme Blanco",
  573. "email": "guilhermeblanco@gmail.com"
  574. },
  575. {
  576. "name": "Roman Borschel",
  577. "email": "roman@code-factory.org"
  578. },
  579. {
  580. "name": "Benjamin Eberlei",
  581. "email": "kontakt@beberlei.de"
  582. },
  583. {
  584. "name": "Jonathan Wage",
  585. "email": "jonwage@gmail.com"
  586. },
  587. {
  588. "name": "Johannes Schmitt",
  589. "email": "schmittjoh@gmail.com"
  590. }
  591. ],
  592. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  593. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  594. "keywords": [
  595. "inflection",
  596. "inflector",
  597. "lowercase",
  598. "manipulation",
  599. "php",
  600. "plural",
  601. "singular",
  602. "strings",
  603. "uppercase",
  604. "words"
  605. ],
  606. "support": {
  607. "issues": "https://github.com/doctrine/inflector/issues",
  608. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  609. },
  610. "funding": [
  611. {
  612. "url": "https://www.doctrine-project.org/sponsorship.html",
  613. "type": "custom"
  614. },
  615. {
  616. "url": "https://www.patreon.com/phpdoctrine",
  617. "type": "patreon"
  618. },
  619. {
  620. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  621. "type": "tidelift"
  622. }
  623. ],
  624. "time": "2024-02-18T20:23:39+00:00"
  625. },
  626. {
  627. "name": "doctrine/lexer",
  628. "version": "1.2.3",
  629. "source": {
  630. "type": "git",
  631. "url": "https://github.com/doctrine/lexer.git",
  632. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  633. },
  634. "dist": {
  635. "type": "zip",
  636. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  637. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  638. "shasum": "",
  639. "mirrors": [
  640. {
  641. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  642. "preferred": true
  643. }
  644. ]
  645. },
  646. "require": {
  647. "php": "^7.1 || ^8.0"
  648. },
  649. "require-dev": {
  650. "doctrine/coding-standard": "^9.0",
  651. "phpstan/phpstan": "^1.3",
  652. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  653. "vimeo/psalm": "^4.11"
  654. },
  655. "type": "library",
  656. "autoload": {
  657. "psr-4": {
  658. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  659. }
  660. },
  661. "notification-url": "https://packagist.org/downloads/",
  662. "license": [
  663. "MIT"
  664. ],
  665. "authors": [
  666. {
  667. "name": "Guilherme Blanco",
  668. "email": "guilhermeblanco@gmail.com"
  669. },
  670. {
  671. "name": "Roman Borschel",
  672. "email": "roman@code-factory.org"
  673. },
  674. {
  675. "name": "Johannes Schmitt",
  676. "email": "schmittjoh@gmail.com"
  677. }
  678. ],
  679. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  680. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  681. "keywords": [
  682. "annotations",
  683. "docblock",
  684. "lexer",
  685. "parser",
  686. "php"
  687. ],
  688. "support": {
  689. "issues": "https://github.com/doctrine/lexer/issues",
  690. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  691. },
  692. "funding": [
  693. {
  694. "url": "https://www.doctrine-project.org/sponsorship.html",
  695. "type": "custom"
  696. },
  697. {
  698. "url": "https://www.patreon.com/phpdoctrine",
  699. "type": "patreon"
  700. },
  701. {
  702. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  703. "type": "tidelift"
  704. }
  705. ],
  706. "time": "2022-02-28T11:07:21+00:00"
  707. },
  708. {
  709. "name": "dragonmantank/cron-expression",
  710. "version": "v3.5.0",
  711. "source": {
  712. "type": "git",
  713. "url": "https://github.com/dragonmantank/cron-expression.git",
  714. "reference": "1b2de7f4a468165dca07b142240733a1973e766d"
  715. },
  716. "dist": {
  717. "type": "zip",
  718. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/1b2de7f4a468165dca07b142240733a1973e766d",
  719. "reference": "1b2de7f4a468165dca07b142240733a1973e766d",
  720. "shasum": "",
  721. "mirrors": [
  722. {
  723. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  724. "preferred": true
  725. }
  726. ]
  727. },
  728. "require": {
  729. "php": "^7.2|^8.0"
  730. },
  731. "replace": {
  732. "mtdowling/cron-expression": "^1.0"
  733. },
  734. "require-dev": {
  735. "phpstan/extension-installer": "^1.4.3",
  736. "phpstan/phpstan": "^1.12.32|^2.1.31",
  737. "phpunit/phpunit": "^8.5.48|^9.0"
  738. },
  739. "type": "library",
  740. "extra": {
  741. "branch-alias": {
  742. "dev-master": "3.x-dev"
  743. }
  744. },
  745. "autoload": {
  746. "psr-4": {
  747. "Cron\\": "src/Cron/"
  748. }
  749. },
  750. "notification-url": "https://packagist.org/downloads/",
  751. "license": [
  752. "MIT"
  753. ],
  754. "authors": [
  755. {
  756. "name": "Chris Tankersley",
  757. "email": "chris@ctankersley.com",
  758. "homepage": "https://github.com/dragonmantank"
  759. }
  760. ],
  761. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  762. "keywords": [
  763. "cron",
  764. "schedule"
  765. ],
  766. "support": {
  767. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  768. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.5.0"
  769. },
  770. "funding": [
  771. {
  772. "url": "https://github.com/dragonmantank",
  773. "type": "github"
  774. }
  775. ],
  776. "time": "2025-10-31T18:36:32+00:00"
  777. },
  778. {
  779. "name": "egulias/email-validator",
  780. "version": "2.1.25",
  781. "source": {
  782. "type": "git",
  783. "url": "https://github.com/egulias/EmailValidator.git",
  784. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  785. },
  786. "dist": {
  787. "type": "zip",
  788. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  789. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  790. "shasum": "",
  791. "mirrors": [
  792. {
  793. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  794. "preferred": true
  795. }
  796. ]
  797. },
  798. "require": {
  799. "doctrine/lexer": "^1.0.1",
  800. "php": ">=5.5",
  801. "symfony/polyfill-intl-idn": "^1.10"
  802. },
  803. "require-dev": {
  804. "dominicsayers/isemail": "^3.0.7",
  805. "phpunit/phpunit": "^4.8.36|^7.5.15",
  806. "satooshi/php-coveralls": "^1.0.1"
  807. },
  808. "suggest": {
  809. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  810. },
  811. "type": "library",
  812. "extra": {
  813. "branch-alias": {
  814. "dev-master": "2.1.x-dev"
  815. }
  816. },
  817. "autoload": {
  818. "psr-4": {
  819. "Egulias\\EmailValidator\\": "src"
  820. }
  821. },
  822. "notification-url": "https://packagist.org/downloads/",
  823. "license": [
  824. "MIT"
  825. ],
  826. "authors": [
  827. {
  828. "name": "Eduardo Gulias Davis"
  829. }
  830. ],
  831. "description": "A library for validating emails against several RFCs",
  832. "homepage": "https://github.com/egulias/EmailValidator",
  833. "keywords": [
  834. "email",
  835. "emailvalidation",
  836. "emailvalidator",
  837. "validation",
  838. "validator"
  839. ],
  840. "support": {
  841. "issues": "https://github.com/egulias/EmailValidator/issues",
  842. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  843. },
  844. "funding": [
  845. {
  846. "url": "https://github.com/egulias",
  847. "type": "github"
  848. }
  849. ],
  850. "time": "2020-12-29T14:50:06+00:00"
  851. },
  852. {
  853. "name": "evenement/evenement",
  854. "version": "v3.0.2",
  855. "source": {
  856. "type": "git",
  857. "url": "https://github.com/igorw/evenement.git",
  858. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  859. },
  860. "dist": {
  861. "type": "zip",
  862. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  863. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  864. "shasum": "",
  865. "mirrors": [
  866. {
  867. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  868. "preferred": true
  869. }
  870. ]
  871. },
  872. "require": {
  873. "php": ">=7.0"
  874. },
  875. "require-dev": {
  876. "phpunit/phpunit": "^9 || ^6"
  877. },
  878. "type": "library",
  879. "autoload": {
  880. "psr-4": {
  881. "Evenement\\": "src/"
  882. }
  883. },
  884. "notification-url": "https://packagist.org/downloads/",
  885. "license": [
  886. "MIT"
  887. ],
  888. "authors": [
  889. {
  890. "name": "Igor Wiedler",
  891. "email": "igor@wiedler.ch"
  892. }
  893. ],
  894. "description": "Événement is a very simple event dispatching library for PHP",
  895. "keywords": [
  896. "event-dispatcher",
  897. "event-emitter"
  898. ],
  899. "support": {
  900. "issues": "https://github.com/igorw/evenement/issues",
  901. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  902. },
  903. "time": "2023-08-08T05:53:35+00:00"
  904. },
  905. {
  906. "name": "ezyang/htmlpurifier",
  907. "version": "v4.19.0",
  908. "source": {
  909. "type": "git",
  910. "url": "https://github.com/ezyang/htmlpurifier.git",
  911. "reference": "b287d2a16aceffbf6e0295559b39662612b77fcf"
  912. },
  913. "dist": {
  914. "type": "zip",
  915. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/b287d2a16aceffbf6e0295559b39662612b77fcf",
  916. "reference": "b287d2a16aceffbf6e0295559b39662612b77fcf",
  917. "shasum": "",
  918. "mirrors": [
  919. {
  920. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  921. "preferred": true
  922. }
  923. ]
  924. },
  925. "require": {
  926. "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"
  927. },
  928. "require-dev": {
  929. "cerdic/css-tidy": "^1.7 || ^2.0",
  930. "simpletest/simpletest": "dev-master"
  931. },
  932. "suggest": {
  933. "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
  934. "ext-bcmath": "Used for unit conversion and imagecrash protection",
  935. "ext-iconv": "Converts text to and from non-UTF-8 encodings",
  936. "ext-tidy": "Used for pretty-printing HTML"
  937. },
  938. "type": "library",
  939. "autoload": {
  940. "files": [
  941. "library/HTMLPurifier.composer.php"
  942. ],
  943. "psr-0": {
  944. "HTMLPurifier": "library/"
  945. },
  946. "exclude-from-classmap": [
  947. "/library/HTMLPurifier/Language/"
  948. ]
  949. },
  950. "notification-url": "https://packagist.org/downloads/",
  951. "license": [
  952. "LGPL-2.1-or-later"
  953. ],
  954. "authors": [
  955. {
  956. "name": "Edward Z. Yang",
  957. "email": "admin@htmlpurifier.org",
  958. "homepage": "http://ezyang.com"
  959. }
  960. ],
  961. "description": "Standards compliant HTML filter written in PHP",
  962. "homepage": "http://htmlpurifier.org/",
  963. "keywords": [
  964. "html"
  965. ],
  966. "support": {
  967. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  968. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.19.0"
  969. },
  970. "time": "2025-10-17T16:34:55+00:00"
  971. },
  972. {
  973. "name": "fideloper/proxy",
  974. "version": "4.4.2",
  975. "source": {
  976. "type": "git",
  977. "url": "https://github.com/fideloper/TrustedProxy.git",
  978. "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750"
  979. },
  980. "dist": {
  981. "type": "zip",
  982. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/a751f2bc86dd8e6cfef12dc0cbdada82f5a18750",
  983. "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750",
  984. "shasum": "",
  985. "mirrors": [
  986. {
  987. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  988. "preferred": true
  989. }
  990. ]
  991. },
  992. "require": {
  993. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  994. "php": ">=5.4.0"
  995. },
  996. "require-dev": {
  997. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  998. "mockery/mockery": "^1.0",
  999. "phpunit/phpunit": "^8.5.8|^9.3.3"
  1000. },
  1001. "type": "library",
  1002. "extra": {
  1003. "laravel": {
  1004. "providers": [
  1005. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  1006. ]
  1007. }
  1008. },
  1009. "autoload": {
  1010. "psr-4": {
  1011. "Fideloper\\Proxy\\": "src/"
  1012. }
  1013. },
  1014. "notification-url": "https://packagist.org/downloads/",
  1015. "license": [
  1016. "MIT"
  1017. ],
  1018. "authors": [
  1019. {
  1020. "name": "Chris Fidao",
  1021. "email": "fideloper@gmail.com"
  1022. }
  1023. ],
  1024. "description": "Set trusted proxies for Laravel",
  1025. "keywords": [
  1026. "load balancing",
  1027. "proxy",
  1028. "trusted proxy"
  1029. ],
  1030. "support": {
  1031. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  1032. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.2"
  1033. },
  1034. "time": "2022-02-09T13:33:34+00:00"
  1035. },
  1036. {
  1037. "name": "firebase/php-jwt",
  1038. "version": "v6.11.0",
  1039. "source": {
  1040. "type": "git",
  1041. "url": "https://github.com/firebase/php-jwt.git",
  1042. "reference": "8f718f4dfc9c5d5f0c994cdfd103921b43592712"
  1043. },
  1044. "dist": {
  1045. "type": "zip",
  1046. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/8f718f4dfc9c5d5f0c994cdfd103921b43592712",
  1047. "reference": "8f718f4dfc9c5d5f0c994cdfd103921b43592712",
  1048. "shasum": "",
  1049. "mirrors": [
  1050. {
  1051. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1052. "preferred": true
  1053. }
  1054. ]
  1055. },
  1056. "require": {
  1057. "php": "^8.0"
  1058. },
  1059. "require-dev": {
  1060. "guzzlehttp/guzzle": "^7.4",
  1061. "phpspec/prophecy-phpunit": "^2.0",
  1062. "phpunit/phpunit": "^9.5",
  1063. "psr/cache": "^2.0||^3.0",
  1064. "psr/http-client": "^1.0",
  1065. "psr/http-factory": "^1.0"
  1066. },
  1067. "suggest": {
  1068. "ext-sodium": "Support EdDSA (Ed25519) signatures",
  1069. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  1070. },
  1071. "type": "library",
  1072. "autoload": {
  1073. "psr-4": {
  1074. "Firebase\\JWT\\": "src"
  1075. }
  1076. },
  1077. "notification-url": "https://packagist.org/downloads/",
  1078. "license": [
  1079. "BSD-3-Clause"
  1080. ],
  1081. "authors": [
  1082. {
  1083. "name": "Neuman Vong",
  1084. "email": "neuman+pear@twilio.com",
  1085. "role": "Developer"
  1086. },
  1087. {
  1088. "name": "Anant Narayanan",
  1089. "email": "anant@php.net",
  1090. "role": "Developer"
  1091. }
  1092. ],
  1093. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  1094. "homepage": "https://github.com/firebase/php-jwt",
  1095. "keywords": [
  1096. "jwt",
  1097. "php"
  1098. ],
  1099. "support": {
  1100. "issues": "https://github.com/firebase/php-jwt/issues",
  1101. "source": "https://github.com/firebase/php-jwt/tree/v6.11.0"
  1102. },
  1103. "time": "2025-01-23T05:11:06+00:00"
  1104. },
  1105. {
  1106. "name": "fruitcake/laravel-cors",
  1107. "version": "v2.2.0",
  1108. "source": {
  1109. "type": "git",
  1110. "url": "https://github.com/fruitcake/laravel-cors.git",
  1111. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534"
  1112. },
  1113. "dist": {
  1114. "type": "zip",
  1115. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/783a74f5e3431d7b9805be8afb60fd0a8f743534",
  1116. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534",
  1117. "shasum": "",
  1118. "mirrors": [
  1119. {
  1120. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1121. "preferred": true
  1122. }
  1123. ]
  1124. },
  1125. "require": {
  1126. "asm89/stack-cors": "^2.0.1",
  1127. "illuminate/contracts": "^6|^7|^8|^9",
  1128. "illuminate/support": "^6|^7|^8|^9",
  1129. "php": ">=7.2"
  1130. },
  1131. "require-dev": {
  1132. "laravel/framework": "^6|^7.24|^8",
  1133. "orchestra/testbench-dusk": "^4|^5|^6|^7",
  1134. "phpunit/phpunit": "^6|^7|^8|^9",
  1135. "squizlabs/php_codesniffer": "^3.5"
  1136. },
  1137. "type": "library",
  1138. "extra": {
  1139. "branch-alias": {
  1140. "dev-master": "2.1-dev"
  1141. },
  1142. "laravel": {
  1143. "providers": [
  1144. "Fruitcake\\Cors\\CorsServiceProvider"
  1145. ]
  1146. }
  1147. },
  1148. "autoload": {
  1149. "psr-4": {
  1150. "Fruitcake\\Cors\\": "src/"
  1151. }
  1152. },
  1153. "notification-url": "https://packagist.org/downloads/",
  1154. "license": [
  1155. "MIT"
  1156. ],
  1157. "authors": [
  1158. {
  1159. "name": "Fruitcake",
  1160. "homepage": "https://fruitcake.nl"
  1161. },
  1162. {
  1163. "name": "Barry vd. Heuvel",
  1164. "email": "barryvdh@gmail.com"
  1165. }
  1166. ],
  1167. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  1168. "keywords": [
  1169. "api",
  1170. "cors",
  1171. "crossdomain",
  1172. "laravel"
  1173. ],
  1174. "support": {
  1175. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  1176. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.2.0"
  1177. },
  1178. "funding": [
  1179. {
  1180. "url": "https://fruitcake.nl",
  1181. "type": "custom"
  1182. },
  1183. {
  1184. "url": "https://github.com/barryvdh",
  1185. "type": "github"
  1186. }
  1187. ],
  1188. "abandoned": true,
  1189. "time": "2022-02-23T14:25:13+00:00"
  1190. },
  1191. {
  1192. "name": "fukuball/jieba-php",
  1193. "version": "dev-master",
  1194. "source": {
  1195. "type": "git",
  1196. "url": "https://github.com/fukuball/jieba-php.git",
  1197. "reference": "435d73f4d85435fd88a472ddce76b6cc3892f3e4"
  1198. },
  1199. "dist": {
  1200. "type": "zip",
  1201. "url": "https://api.github.com/repos/fukuball/jieba-php/zipball/435d73f4d85435fd88a472ddce76b6cc3892f3e4",
  1202. "reference": "435d73f4d85435fd88a472ddce76b6cc3892f3e4",
  1203. "shasum": "",
  1204. "mirrors": [
  1205. {
  1206. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1207. "preferred": true
  1208. }
  1209. ]
  1210. },
  1211. "require": {
  1212. "php": ">=7.1"
  1213. },
  1214. "require-dev": {
  1215. "doctrine/instantiator": "^1.3",
  1216. "guzzlehttp/guzzle": "^7.0",
  1217. "php-coveralls/php-coveralls": "^2.5",
  1218. "phpunit/phpunit": "^8.5 || ^9.0",
  1219. "psr/log": "^1.1",
  1220. "squizlabs/php_codesniffer": "^3.6 || ^4.0",
  1221. "symfony/config": "^5.4",
  1222. "symfony/console": "^5.4",
  1223. "symfony/deprecation-contracts": "^2.5",
  1224. "symfony/filesystem": "^5.4",
  1225. "symfony/service-contracts": "^2.5",
  1226. "symfony/stopwatch": "^5.4",
  1227. "symfony/string": "^5.4",
  1228. "symfony/yaml": "^5.4"
  1229. },
  1230. "default-branch": true,
  1231. "type": "library",
  1232. "autoload": {
  1233. "files": [
  1234. "src/vendor/multi-array/MultiArray.php",
  1235. "src/vendor/multi-array/Factory/MultiArrayFactory.php"
  1236. ],
  1237. "psr-4": {
  1238. "Fukuball\\Jieba\\": "src/class/"
  1239. }
  1240. },
  1241. "notification-url": "https://packagist.org/downloads/",
  1242. "license": [
  1243. "MIT"
  1244. ],
  1245. "authors": [
  1246. {
  1247. "name": "fukuball",
  1248. "email": "fukuball@gmail.com"
  1249. }
  1250. ],
  1251. "description": "結巴中文分詞(PHP 版本):做最好的 PHP 中文分詞、中文斷詞組件",
  1252. "keywords": [
  1253. "Jieba",
  1254. "php"
  1255. ],
  1256. "support": {
  1257. "issues": "https://github.com/fukuball/jieba-php/issues",
  1258. "source": "https://github.com/fukuball/jieba-php/tree/master"
  1259. },
  1260. "time": "2025-10-20T08:31:12+00:00"
  1261. },
  1262. {
  1263. "name": "graham-campbell/result-type",
  1264. "version": "1.1.x-dev",
  1265. "source": {
  1266. "type": "git",
  1267. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  1268. "reference": "bdd52c41913b414f4ca7dcb34482babcd0e9bd58"
  1269. },
  1270. "dist": {
  1271. "type": "zip",
  1272. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/bdd52c41913b414f4ca7dcb34482babcd0e9bd58",
  1273. "reference": "bdd52c41913b414f4ca7dcb34482babcd0e9bd58",
  1274. "shasum": "",
  1275. "mirrors": [
  1276. {
  1277. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1278. "preferred": true
  1279. }
  1280. ]
  1281. },
  1282. "require": {
  1283. "php": "^7.2.5 || ^8.0",
  1284. "phpoption/phpoption": "^1.9.3"
  1285. },
  1286. "require-dev": {
  1287. "phpunit/phpunit": "^8.5.41 || ^9.6.22 || ^10.5.45 || ^11.5.7"
  1288. },
  1289. "default-branch": true,
  1290. "type": "library",
  1291. "autoload": {
  1292. "psr-4": {
  1293. "GrahamCampbell\\ResultType\\": "src/"
  1294. }
  1295. },
  1296. "notification-url": "https://packagist.org/downloads/",
  1297. "license": [
  1298. "MIT"
  1299. ],
  1300. "authors": [
  1301. {
  1302. "name": "Graham Campbell",
  1303. "email": "hello@gjcampbell.co.uk",
  1304. "homepage": "https://github.com/GrahamCampbell"
  1305. }
  1306. ],
  1307. "description": "An Implementation Of The Result Type",
  1308. "keywords": [
  1309. "Graham Campbell",
  1310. "GrahamCampbell",
  1311. "Result Type",
  1312. "Result-Type",
  1313. "result"
  1314. ],
  1315. "support": {
  1316. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  1317. "source": "https://github.com/GrahamCampbell/Result-Type/tree/1.1"
  1318. },
  1319. "funding": [
  1320. {
  1321. "url": "https://github.com/GrahamCampbell",
  1322. "type": "github"
  1323. },
  1324. {
  1325. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  1326. "type": "tidelift"
  1327. }
  1328. ],
  1329. "time": "2025-03-02T21:31:24+00:00"
  1330. },
  1331. {
  1332. "name": "gregwar/captcha",
  1333. "version": "v1.2.1",
  1334. "source": {
  1335. "type": "git",
  1336. "url": "https://github.com/Gregwar/Captcha.git",
  1337. "reference": "229d3cdfe33d6f1349e0aec94a26e9205a6db08e"
  1338. },
  1339. "dist": {
  1340. "type": "zip",
  1341. "url": "https://api.github.com/repos/Gregwar/Captcha/zipball/229d3cdfe33d6f1349e0aec94a26e9205a6db08e",
  1342. "reference": "229d3cdfe33d6f1349e0aec94a26e9205a6db08e",
  1343. "shasum": "",
  1344. "mirrors": [
  1345. {
  1346. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1347. "preferred": true
  1348. }
  1349. ]
  1350. },
  1351. "require": {
  1352. "ext-gd": "*",
  1353. "ext-mbstring": "*",
  1354. "php": ">=5.3.0",
  1355. "symfony/finder": "*"
  1356. },
  1357. "require-dev": {
  1358. "phpunit/phpunit": "^6.4"
  1359. },
  1360. "type": "library",
  1361. "autoload": {
  1362. "psr-4": {
  1363. "Gregwar\\": "src/Gregwar"
  1364. }
  1365. },
  1366. "notification-url": "https://packagist.org/downloads/",
  1367. "license": [
  1368. "MIT"
  1369. ],
  1370. "authors": [
  1371. {
  1372. "name": "Grégoire Passault",
  1373. "email": "g.passault@gmail.com",
  1374. "homepage": "http://www.gregwar.com/"
  1375. },
  1376. {
  1377. "name": "Jeremy Livingston",
  1378. "email": "jeremy.j.livingston@gmail.com"
  1379. }
  1380. ],
  1381. "description": "Captcha generator",
  1382. "homepage": "https://github.com/Gregwar/Captcha",
  1383. "keywords": [
  1384. "bot",
  1385. "captcha",
  1386. "spam"
  1387. ],
  1388. "support": {
  1389. "issues": "https://github.com/Gregwar/Captcha/issues",
  1390. "source": "https://github.com/Gregwar/Captcha/tree/v1.2.1"
  1391. },
  1392. "time": "2023-09-26T13:45:37+00:00"
  1393. },
  1394. {
  1395. "name": "guzzlehttp/guzzle",
  1396. "version": "7.9.2",
  1397. "source": {
  1398. "type": "git",
  1399. "url": "https://github.com/guzzle/guzzle.git",
  1400. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  1401. },
  1402. "dist": {
  1403. "type": "zip",
  1404. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  1405. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  1406. "shasum": "",
  1407. "mirrors": [
  1408. {
  1409. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1410. "preferred": true
  1411. }
  1412. ]
  1413. },
  1414. "require": {
  1415. "ext-json": "*",
  1416. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  1417. "guzzlehttp/psr7": "^2.7.0",
  1418. "php": "^7.2.5 || ^8.0",
  1419. "psr/http-client": "^1.0",
  1420. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1421. },
  1422. "provide": {
  1423. "psr/http-client-implementation": "1.0"
  1424. },
  1425. "require-dev": {
  1426. "bamarni/composer-bin-plugin": "^1.8.2",
  1427. "ext-curl": "*",
  1428. "guzzle/client-integration-tests": "3.0.2",
  1429. "php-http/message-factory": "^1.1",
  1430. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  1431. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1432. },
  1433. "suggest": {
  1434. "ext-curl": "Required for CURL handler support",
  1435. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1436. "psr/log": "Required for using the Log middleware"
  1437. },
  1438. "type": "library",
  1439. "extra": {
  1440. "bamarni-bin": {
  1441. "bin-links": true,
  1442. "forward-command": false
  1443. }
  1444. },
  1445. "autoload": {
  1446. "files": [
  1447. "src/functions_include.php"
  1448. ],
  1449. "psr-4": {
  1450. "GuzzleHttp\\": "src/"
  1451. }
  1452. },
  1453. "notification-url": "https://packagist.org/downloads/",
  1454. "license": [
  1455. "MIT"
  1456. ],
  1457. "authors": [
  1458. {
  1459. "name": "Graham Campbell",
  1460. "email": "hello@gjcampbell.co.uk",
  1461. "homepage": "https://github.com/GrahamCampbell"
  1462. },
  1463. {
  1464. "name": "Michael Dowling",
  1465. "email": "mtdowling@gmail.com",
  1466. "homepage": "https://github.com/mtdowling"
  1467. },
  1468. {
  1469. "name": "Jeremy Lindblom",
  1470. "email": "jeremeamia@gmail.com",
  1471. "homepage": "https://github.com/jeremeamia"
  1472. },
  1473. {
  1474. "name": "George Mponos",
  1475. "email": "gmponos@gmail.com",
  1476. "homepage": "https://github.com/gmponos"
  1477. },
  1478. {
  1479. "name": "Tobias Nyholm",
  1480. "email": "tobias.nyholm@gmail.com",
  1481. "homepage": "https://github.com/Nyholm"
  1482. },
  1483. {
  1484. "name": "Márk Sági-Kazár",
  1485. "email": "mark.sagikazar@gmail.com",
  1486. "homepage": "https://github.com/sagikazarmark"
  1487. },
  1488. {
  1489. "name": "Tobias Schultze",
  1490. "email": "webmaster@tubo-world.de",
  1491. "homepage": "https://github.com/Tobion"
  1492. }
  1493. ],
  1494. "description": "Guzzle is a PHP HTTP client library",
  1495. "keywords": [
  1496. "client",
  1497. "curl",
  1498. "framework",
  1499. "http",
  1500. "http client",
  1501. "psr-18",
  1502. "psr-7",
  1503. "rest",
  1504. "web service"
  1505. ],
  1506. "support": {
  1507. "issues": "https://github.com/guzzle/guzzle/issues",
  1508. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  1509. },
  1510. "funding": [
  1511. {
  1512. "url": "https://github.com/GrahamCampbell",
  1513. "type": "github"
  1514. },
  1515. {
  1516. "url": "https://github.com/Nyholm",
  1517. "type": "github"
  1518. },
  1519. {
  1520. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1521. "type": "tidelift"
  1522. }
  1523. ],
  1524. "time": "2024-07-24T11:22:20+00:00"
  1525. },
  1526. {
  1527. "name": "guzzlehttp/promises",
  1528. "version": "2.3.0",
  1529. "source": {
  1530. "type": "git",
  1531. "url": "https://github.com/guzzle/promises.git",
  1532. "reference": "481557b130ef3790cf82b713667b43030dc9c957"
  1533. },
  1534. "dist": {
  1535. "type": "zip",
  1536. "url": "https://api.github.com/repos/guzzle/promises/zipball/481557b130ef3790cf82b713667b43030dc9c957",
  1537. "reference": "481557b130ef3790cf82b713667b43030dc9c957",
  1538. "shasum": "",
  1539. "mirrors": [
  1540. {
  1541. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1542. "preferred": true
  1543. }
  1544. ]
  1545. },
  1546. "require": {
  1547. "php": "^7.2.5 || ^8.0"
  1548. },
  1549. "require-dev": {
  1550. "bamarni/composer-bin-plugin": "^1.8.2",
  1551. "phpunit/phpunit": "^8.5.44 || ^9.6.25"
  1552. },
  1553. "type": "library",
  1554. "extra": {
  1555. "bamarni-bin": {
  1556. "bin-links": true,
  1557. "forward-command": false
  1558. }
  1559. },
  1560. "autoload": {
  1561. "psr-4": {
  1562. "GuzzleHttp\\Promise\\": "src/"
  1563. }
  1564. },
  1565. "notification-url": "https://packagist.org/downloads/",
  1566. "license": [
  1567. "MIT"
  1568. ],
  1569. "authors": [
  1570. {
  1571. "name": "Graham Campbell",
  1572. "email": "hello@gjcampbell.co.uk",
  1573. "homepage": "https://github.com/GrahamCampbell"
  1574. },
  1575. {
  1576. "name": "Michael Dowling",
  1577. "email": "mtdowling@gmail.com",
  1578. "homepage": "https://github.com/mtdowling"
  1579. },
  1580. {
  1581. "name": "Tobias Nyholm",
  1582. "email": "tobias.nyholm@gmail.com",
  1583. "homepage": "https://github.com/Nyholm"
  1584. },
  1585. {
  1586. "name": "Tobias Schultze",
  1587. "email": "webmaster@tubo-world.de",
  1588. "homepage": "https://github.com/Tobion"
  1589. }
  1590. ],
  1591. "description": "Guzzle promises library",
  1592. "keywords": [
  1593. "promise"
  1594. ],
  1595. "support": {
  1596. "issues": "https://github.com/guzzle/promises/issues",
  1597. "source": "https://github.com/guzzle/promises/tree/2.3.0"
  1598. },
  1599. "funding": [
  1600. {
  1601. "url": "https://github.com/GrahamCampbell",
  1602. "type": "github"
  1603. },
  1604. {
  1605. "url": "https://github.com/Nyholm",
  1606. "type": "github"
  1607. },
  1608. {
  1609. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1610. "type": "tidelift"
  1611. }
  1612. ],
  1613. "time": "2025-08-22T14:34:08+00:00"
  1614. },
  1615. {
  1616. "name": "guzzlehttp/psr7",
  1617. "version": "2.8.0",
  1618. "source": {
  1619. "type": "git",
  1620. "url": "https://github.com/guzzle/psr7.git",
  1621. "reference": "21dc724a0583619cd1652f673303492272778051"
  1622. },
  1623. "dist": {
  1624. "type": "zip",
  1625. "url": "https://api.github.com/repos/guzzle/psr7/zipball/21dc724a0583619cd1652f673303492272778051",
  1626. "reference": "21dc724a0583619cd1652f673303492272778051",
  1627. "shasum": "",
  1628. "mirrors": [
  1629. {
  1630. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1631. "preferred": true
  1632. }
  1633. ]
  1634. },
  1635. "require": {
  1636. "php": "^7.2.5 || ^8.0",
  1637. "psr/http-factory": "^1.0",
  1638. "psr/http-message": "^1.1 || ^2.0",
  1639. "ralouphie/getallheaders": "^3.0"
  1640. },
  1641. "provide": {
  1642. "psr/http-factory-implementation": "1.0",
  1643. "psr/http-message-implementation": "1.0"
  1644. },
  1645. "require-dev": {
  1646. "bamarni/composer-bin-plugin": "^1.8.2",
  1647. "http-interop/http-factory-tests": "0.9.0",
  1648. "phpunit/phpunit": "^8.5.44 || ^9.6.25"
  1649. },
  1650. "suggest": {
  1651. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1652. },
  1653. "type": "library",
  1654. "extra": {
  1655. "bamarni-bin": {
  1656. "bin-links": true,
  1657. "forward-command": false
  1658. }
  1659. },
  1660. "autoload": {
  1661. "psr-4": {
  1662. "GuzzleHttp\\Psr7\\": "src/"
  1663. }
  1664. },
  1665. "notification-url": "https://packagist.org/downloads/",
  1666. "license": [
  1667. "MIT"
  1668. ],
  1669. "authors": [
  1670. {
  1671. "name": "Graham Campbell",
  1672. "email": "hello@gjcampbell.co.uk",
  1673. "homepage": "https://github.com/GrahamCampbell"
  1674. },
  1675. {
  1676. "name": "Michael Dowling",
  1677. "email": "mtdowling@gmail.com",
  1678. "homepage": "https://github.com/mtdowling"
  1679. },
  1680. {
  1681. "name": "George Mponos",
  1682. "email": "gmponos@gmail.com",
  1683. "homepage": "https://github.com/gmponos"
  1684. },
  1685. {
  1686. "name": "Tobias Nyholm",
  1687. "email": "tobias.nyholm@gmail.com",
  1688. "homepage": "https://github.com/Nyholm"
  1689. },
  1690. {
  1691. "name": "Márk Sági-Kazár",
  1692. "email": "mark.sagikazar@gmail.com",
  1693. "homepage": "https://github.com/sagikazarmark"
  1694. },
  1695. {
  1696. "name": "Tobias Schultze",
  1697. "email": "webmaster@tubo-world.de",
  1698. "homepage": "https://github.com/Tobion"
  1699. },
  1700. {
  1701. "name": "Márk Sági-Kazár",
  1702. "email": "mark.sagikazar@gmail.com",
  1703. "homepage": "https://sagikazarmark.hu"
  1704. }
  1705. ],
  1706. "description": "PSR-7 message implementation that also provides common utility methods",
  1707. "keywords": [
  1708. "http",
  1709. "message",
  1710. "psr-7",
  1711. "request",
  1712. "response",
  1713. "stream",
  1714. "uri",
  1715. "url"
  1716. ],
  1717. "support": {
  1718. "issues": "https://github.com/guzzle/psr7/issues",
  1719. "source": "https://github.com/guzzle/psr7/tree/2.8.0"
  1720. },
  1721. "funding": [
  1722. {
  1723. "url": "https://github.com/GrahamCampbell",
  1724. "type": "github"
  1725. },
  1726. {
  1727. "url": "https://github.com/Nyholm",
  1728. "type": "github"
  1729. },
  1730. {
  1731. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1732. "type": "tidelift"
  1733. }
  1734. ],
  1735. "time": "2025-08-23T21:21:41+00:00"
  1736. },
  1737. {
  1738. "name": "laravel/framework",
  1739. "version": "v8.83.29",
  1740. "source": {
  1741. "type": "git",
  1742. "url": "https://github.com/laravel/framework.git",
  1743. "reference": "d841a226a50c715431952a10260ba4fac9e91cc4"
  1744. },
  1745. "dist": {
  1746. "type": "zip",
  1747. "url": "https://api.github.com/repos/laravel/framework/zipball/d841a226a50c715431952a10260ba4fac9e91cc4",
  1748. "reference": "d841a226a50c715431952a10260ba4fac9e91cc4",
  1749. "shasum": "",
  1750. "mirrors": [
  1751. {
  1752. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1753. "preferred": true
  1754. }
  1755. ]
  1756. },
  1757. "require": {
  1758. "doctrine/inflector": "^1.4|^2.0",
  1759. "dragonmantank/cron-expression": "^3.0.2",
  1760. "egulias/email-validator": "^2.1.10",
  1761. "ext-json": "*",
  1762. "ext-mbstring": "*",
  1763. "ext-openssl": "*",
  1764. "laravel/serializable-closure": "^1.0",
  1765. "league/commonmark": "^1.3|^2.0.2",
  1766. "league/flysystem": "^1.1",
  1767. "monolog/monolog": "^2.0",
  1768. "nesbot/carbon": "^2.53.1",
  1769. "opis/closure": "^3.6",
  1770. "php": "^7.3|^8.0",
  1771. "psr/container": "^1.0",
  1772. "psr/log": "^1.0|^2.0",
  1773. "psr/simple-cache": "^1.0",
  1774. "ramsey/uuid": "^4.2.2",
  1775. "swiftmailer/swiftmailer": "^6.3",
  1776. "symfony/console": "^5.4",
  1777. "symfony/error-handler": "^5.4",
  1778. "symfony/finder": "^5.4",
  1779. "symfony/http-foundation": "^5.4",
  1780. "symfony/http-kernel": "^5.4",
  1781. "symfony/mime": "^5.4",
  1782. "symfony/process": "^5.4",
  1783. "symfony/routing": "^5.4",
  1784. "symfony/var-dumper": "^5.4",
  1785. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  1786. "vlucas/phpdotenv": "^5.4.1",
  1787. "voku/portable-ascii": "^1.6.1"
  1788. },
  1789. "conflict": {
  1790. "tightenco/collect": "<5.5.33"
  1791. },
  1792. "provide": {
  1793. "psr/container-implementation": "1.0",
  1794. "psr/simple-cache-implementation": "1.0"
  1795. },
  1796. "replace": {
  1797. "illuminate/auth": "self.version",
  1798. "illuminate/broadcasting": "self.version",
  1799. "illuminate/bus": "self.version",
  1800. "illuminate/cache": "self.version",
  1801. "illuminate/collections": "self.version",
  1802. "illuminate/config": "self.version",
  1803. "illuminate/console": "self.version",
  1804. "illuminate/container": "self.version",
  1805. "illuminate/contracts": "self.version",
  1806. "illuminate/cookie": "self.version",
  1807. "illuminate/database": "self.version",
  1808. "illuminate/encryption": "self.version",
  1809. "illuminate/events": "self.version",
  1810. "illuminate/filesystem": "self.version",
  1811. "illuminate/hashing": "self.version",
  1812. "illuminate/http": "self.version",
  1813. "illuminate/log": "self.version",
  1814. "illuminate/macroable": "self.version",
  1815. "illuminate/mail": "self.version",
  1816. "illuminate/notifications": "self.version",
  1817. "illuminate/pagination": "self.version",
  1818. "illuminate/pipeline": "self.version",
  1819. "illuminate/queue": "self.version",
  1820. "illuminate/redis": "self.version",
  1821. "illuminate/routing": "self.version",
  1822. "illuminate/session": "self.version",
  1823. "illuminate/support": "self.version",
  1824. "illuminate/testing": "self.version",
  1825. "illuminate/translation": "self.version",
  1826. "illuminate/validation": "self.version",
  1827. "illuminate/view": "self.version"
  1828. },
  1829. "require-dev": {
  1830. "aws/aws-sdk-php": "^3.198.1",
  1831. "doctrine/dbal": "^2.13.3|^3.1.4",
  1832. "filp/whoops": "^2.14.3",
  1833. "guzzlehttp/guzzle": "^6.5.5|^7.0.1",
  1834. "league/flysystem-cached-adapter": "^1.0",
  1835. "mockery/mockery": "^1.4.4",
  1836. "orchestra/testbench-core": "^6.27",
  1837. "pda/pheanstalk": "^4.0",
  1838. "phpunit/phpunit": "^8.5.19|^9.5.8",
  1839. "predis/predis": "^1.1.9",
  1840. "symfony/cache": "^5.4"
  1841. },
  1842. "suggest": {
  1843. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  1844. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.198.1).",
  1845. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  1846. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
  1847. "ext-bcmath": "Required to use the multiple_of validation rule.",
  1848. "ext-ftp": "Required to use the Flysystem FTP driver.",
  1849. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1850. "ext-memcached": "Required to use the memcache cache driver.",
  1851. "ext-pcntl": "Required to use all features of the queue worker.",
  1852. "ext-posix": "Required to use all features of the queue worker.",
  1853. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  1854. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  1855. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  1856. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.5.5|^7.0.1).",
  1857. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  1858. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  1859. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  1860. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  1861. "mockery/mockery": "Required to use mocking (^1.4.4).",
  1862. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  1863. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  1864. "phpunit/phpunit": "Required to use assertions and run tests (^8.5.19|^9.5.8).",
  1865. "predis/predis": "Required to use the predis connector (^1.1.9).",
  1866. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  1867. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0|^5.0|^6.0|^7.0).",
  1868. "symfony/cache": "Required to PSR-6 cache bridge (^5.4).",
  1869. "symfony/filesystem": "Required to enable support for relative symbolic links (^5.4).",
  1870. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  1871. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  1872. },
  1873. "type": "library",
  1874. "extra": {
  1875. "branch-alias": {
  1876. "dev-master": "8.x-dev"
  1877. }
  1878. },
  1879. "autoload": {
  1880. "files": [
  1881. "src/Illuminate/Collections/helpers.php",
  1882. "src/Illuminate/Events/functions.php",
  1883. "src/Illuminate/Foundation/helpers.php",
  1884. "src/Illuminate/Support/helpers.php"
  1885. ],
  1886. "psr-4": {
  1887. "Illuminate\\": "src/Illuminate/",
  1888. "Illuminate\\Support\\": [
  1889. "src/Illuminate/Macroable/",
  1890. "src/Illuminate/Collections/"
  1891. ]
  1892. }
  1893. },
  1894. "notification-url": "https://packagist.org/downloads/",
  1895. "license": [
  1896. "MIT"
  1897. ],
  1898. "authors": [
  1899. {
  1900. "name": "Taylor Otwell",
  1901. "email": "taylor@laravel.com"
  1902. }
  1903. ],
  1904. "description": "The Laravel Framework.",
  1905. "homepage": "https://laravel.com",
  1906. "keywords": [
  1907. "framework",
  1908. "laravel"
  1909. ],
  1910. "support": {
  1911. "issues": "https://github.com/laravel/framework/issues",
  1912. "source": "https://github.com/laravel/framework"
  1913. },
  1914. "time": "2024-11-20T15:55:41+00:00"
  1915. },
  1916. {
  1917. "name": "laravel/serializable-closure",
  1918. "version": "v1.3.7",
  1919. "source": {
  1920. "type": "git",
  1921. "url": "https://github.com/laravel/serializable-closure.git",
  1922. "reference": "4f48ade902b94323ca3be7646db16209ec76be3d"
  1923. },
  1924. "dist": {
  1925. "type": "zip",
  1926. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/4f48ade902b94323ca3be7646db16209ec76be3d",
  1927. "reference": "4f48ade902b94323ca3be7646db16209ec76be3d",
  1928. "shasum": "",
  1929. "mirrors": [
  1930. {
  1931. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1932. "preferred": true
  1933. }
  1934. ]
  1935. },
  1936. "require": {
  1937. "php": "^7.3|^8.0"
  1938. },
  1939. "require-dev": {
  1940. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  1941. "nesbot/carbon": "^2.61|^3.0",
  1942. "pestphp/pest": "^1.21.3",
  1943. "phpstan/phpstan": "^1.8.2",
  1944. "symfony/var-dumper": "^5.4.11|^6.2.0|^7.0.0"
  1945. },
  1946. "type": "library",
  1947. "extra": {
  1948. "branch-alias": {
  1949. "dev-master": "1.x-dev"
  1950. }
  1951. },
  1952. "autoload": {
  1953. "psr-4": {
  1954. "Laravel\\SerializableClosure\\": "src/"
  1955. }
  1956. },
  1957. "notification-url": "https://packagist.org/downloads/",
  1958. "license": [
  1959. "MIT"
  1960. ],
  1961. "authors": [
  1962. {
  1963. "name": "Taylor Otwell",
  1964. "email": "taylor@laravel.com"
  1965. },
  1966. {
  1967. "name": "Nuno Maduro",
  1968. "email": "nuno@laravel.com"
  1969. }
  1970. ],
  1971. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  1972. "keywords": [
  1973. "closure",
  1974. "laravel",
  1975. "serializable"
  1976. ],
  1977. "support": {
  1978. "issues": "https://github.com/laravel/serializable-closure/issues",
  1979. "source": "https://github.com/laravel/serializable-closure"
  1980. },
  1981. "time": "2024-11-14T18:34:49+00:00"
  1982. },
  1983. {
  1984. "name": "laravel/socialite",
  1985. "version": "v5.16.0",
  1986. "source": {
  1987. "type": "git",
  1988. "url": "https://github.com/laravel/socialite.git",
  1989. "reference": "40a2dc98c53d9dc6d55eadb0d490d3d72b73f1bf"
  1990. },
  1991. "dist": {
  1992. "type": "zip",
  1993. "url": "https://api.github.com/repos/laravel/socialite/zipball/40a2dc98c53d9dc6d55eadb0d490d3d72b73f1bf",
  1994. "reference": "40a2dc98c53d9dc6d55eadb0d490d3d72b73f1bf",
  1995. "shasum": "",
  1996. "mirrors": [
  1997. {
  1998. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1999. "preferred": true
  2000. }
  2001. ]
  2002. },
  2003. "require": {
  2004. "ext-json": "*",
  2005. "firebase/php-jwt": "^6.4",
  2006. "guzzlehttp/guzzle": "^6.0|^7.0",
  2007. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2008. "illuminate/http": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2009. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2010. "league/oauth1-client": "^1.10.1",
  2011. "php": "^7.2|^8.0",
  2012. "phpseclib/phpseclib": "^3.0"
  2013. },
  2014. "require-dev": {
  2015. "mockery/mockery": "^1.0",
  2016. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0",
  2017. "phpstan/phpstan": "^1.10",
  2018. "phpunit/phpunit": "^8.0|^9.3|^10.4"
  2019. },
  2020. "type": "library",
  2021. "extra": {
  2022. "laravel": {
  2023. "aliases": {
  2024. "Socialite": "Laravel\\Socialite\\Facades\\Socialite"
  2025. },
  2026. "providers": [
  2027. "Laravel\\Socialite\\SocialiteServiceProvider"
  2028. ]
  2029. },
  2030. "branch-alias": {
  2031. "dev-master": "5.x-dev"
  2032. }
  2033. },
  2034. "autoload": {
  2035. "psr-4": {
  2036. "Laravel\\Socialite\\": "src/"
  2037. }
  2038. },
  2039. "notification-url": "https://packagist.org/downloads/",
  2040. "license": [
  2041. "MIT"
  2042. ],
  2043. "authors": [
  2044. {
  2045. "name": "Taylor Otwell",
  2046. "email": "taylor@laravel.com"
  2047. }
  2048. ],
  2049. "description": "Laravel wrapper around OAuth 1 & OAuth 2 libraries.",
  2050. "homepage": "https://laravel.com",
  2051. "keywords": [
  2052. "laravel",
  2053. "oauth"
  2054. ],
  2055. "support": {
  2056. "issues": "https://github.com/laravel/socialite/issues",
  2057. "source": "https://github.com/laravel/socialite"
  2058. },
  2059. "time": "2024-09-03T09:46:57+00:00"
  2060. },
  2061. {
  2062. "name": "laravel/tinker",
  2063. "version": "v2.10.0",
  2064. "source": {
  2065. "type": "git",
  2066. "url": "https://github.com/laravel/tinker.git",
  2067. "reference": "ba4d51eb56de7711b3a37d63aa0643e99a339ae5"
  2068. },
  2069. "dist": {
  2070. "type": "zip",
  2071. "url": "https://api.github.com/repos/laravel/tinker/zipball/ba4d51eb56de7711b3a37d63aa0643e99a339ae5",
  2072. "reference": "ba4d51eb56de7711b3a37d63aa0643e99a339ae5",
  2073. "shasum": "",
  2074. "mirrors": [
  2075. {
  2076. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2077. "preferred": true
  2078. }
  2079. ]
  2080. },
  2081. "require": {
  2082. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2083. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2084. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2085. "php": "^7.2.5|^8.0",
  2086. "psy/psysh": "^0.11.1|^0.12.0",
  2087. "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0"
  2088. },
  2089. "require-dev": {
  2090. "mockery/mockery": "~1.3.3|^1.4.2",
  2091. "phpstan/phpstan": "^1.10",
  2092. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2093. },
  2094. "suggest": {
  2095. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0)."
  2096. },
  2097. "type": "library",
  2098. "extra": {
  2099. "laravel": {
  2100. "providers": [
  2101. "Laravel\\Tinker\\TinkerServiceProvider"
  2102. ]
  2103. }
  2104. },
  2105. "autoload": {
  2106. "psr-4": {
  2107. "Laravel\\Tinker\\": "src/"
  2108. }
  2109. },
  2110. "notification-url": "https://packagist.org/downloads/",
  2111. "license": [
  2112. "MIT"
  2113. ],
  2114. "authors": [
  2115. {
  2116. "name": "Taylor Otwell",
  2117. "email": "taylor@laravel.com"
  2118. }
  2119. ],
  2120. "description": "Powerful REPL for the Laravel framework.",
  2121. "keywords": [
  2122. "REPL",
  2123. "Tinker",
  2124. "laravel",
  2125. "psysh"
  2126. ],
  2127. "support": {
  2128. "issues": "https://github.com/laravel/tinker/issues",
  2129. "source": "https://github.com/laravel/tinker/tree/v2.10.0"
  2130. },
  2131. "time": "2024-09-23T13:32:56+00:00"
  2132. },
  2133. {
  2134. "name": "league/commonmark",
  2135. "version": "2.6.0",
  2136. "source": {
  2137. "type": "git",
  2138. "url": "https://github.com/thephpleague/commonmark.git",
  2139. "reference": "d150f911e0079e90ae3c106734c93137c184f932"
  2140. },
  2141. "dist": {
  2142. "type": "zip",
  2143. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/d150f911e0079e90ae3c106734c93137c184f932",
  2144. "reference": "d150f911e0079e90ae3c106734c93137c184f932",
  2145. "shasum": "",
  2146. "mirrors": [
  2147. {
  2148. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2149. "preferred": true
  2150. }
  2151. ]
  2152. },
  2153. "require": {
  2154. "ext-mbstring": "*",
  2155. "league/config": "^1.1.1",
  2156. "php": "^7.4 || ^8.0",
  2157. "psr/event-dispatcher": "^1.0",
  2158. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  2159. "symfony/polyfill-php80": "^1.16"
  2160. },
  2161. "require-dev": {
  2162. "cebe/markdown": "^1.0",
  2163. "commonmark/cmark": "0.31.1",
  2164. "commonmark/commonmark.js": "0.31.1",
  2165. "composer/package-versions-deprecated": "^1.8",
  2166. "embed/embed": "^4.4",
  2167. "erusev/parsedown": "^1.0",
  2168. "ext-json": "*",
  2169. "github/gfm": "0.29.0",
  2170. "michelf/php-markdown": "^1.4 || ^2.0",
  2171. "nyholm/psr7": "^1.5",
  2172. "phpstan/phpstan": "^1.8.2",
  2173. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  2174. "scrutinizer/ocular": "^1.8.1",
  2175. "symfony/finder": "^5.3 | ^6.0 | ^7.0",
  2176. "symfony/process": "^5.4 | ^6.0 | ^7.0",
  2177. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 | ^7.0",
  2178. "unleashedtech/php-coding-standard": "^3.1.1",
  2179. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  2180. },
  2181. "suggest": {
  2182. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  2183. },
  2184. "type": "library",
  2185. "extra": {
  2186. "branch-alias": {
  2187. "dev-main": "2.7-dev"
  2188. }
  2189. },
  2190. "autoload": {
  2191. "psr-4": {
  2192. "League\\CommonMark\\": "src"
  2193. }
  2194. },
  2195. "notification-url": "https://packagist.org/downloads/",
  2196. "license": [
  2197. "BSD-3-Clause"
  2198. ],
  2199. "authors": [
  2200. {
  2201. "name": "Colin O'Dell",
  2202. "email": "colinodell@gmail.com",
  2203. "homepage": "https://www.colinodell.com",
  2204. "role": "Lead Developer"
  2205. }
  2206. ],
  2207. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  2208. "homepage": "https://commonmark.thephpleague.com",
  2209. "keywords": [
  2210. "commonmark",
  2211. "flavored",
  2212. "gfm",
  2213. "github",
  2214. "github-flavored",
  2215. "markdown",
  2216. "md",
  2217. "parser"
  2218. ],
  2219. "support": {
  2220. "docs": "https://commonmark.thephpleague.com/",
  2221. "forum": "https://github.com/thephpleague/commonmark/discussions",
  2222. "issues": "https://github.com/thephpleague/commonmark/issues",
  2223. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2224. "source": "https://github.com/thephpleague/commonmark"
  2225. },
  2226. "funding": [
  2227. {
  2228. "url": "https://www.colinodell.com/sponsor",
  2229. "type": "custom"
  2230. },
  2231. {
  2232. "url": "https://www.paypal.me/colinpodell/10.00",
  2233. "type": "custom"
  2234. },
  2235. {
  2236. "url": "https://github.com/colinodell",
  2237. "type": "github"
  2238. },
  2239. {
  2240. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2241. "type": "tidelift"
  2242. }
  2243. ],
  2244. "time": "2024-12-07T15:34:16+00:00"
  2245. },
  2246. {
  2247. "name": "league/config",
  2248. "version": "v1.2.0",
  2249. "source": {
  2250. "type": "git",
  2251. "url": "https://github.com/thephpleague/config.git",
  2252. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  2253. },
  2254. "dist": {
  2255. "type": "zip",
  2256. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2257. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2258. "shasum": "",
  2259. "mirrors": [
  2260. {
  2261. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2262. "preferred": true
  2263. }
  2264. ]
  2265. },
  2266. "require": {
  2267. "dflydev/dot-access-data": "^3.0.1",
  2268. "nette/schema": "^1.2",
  2269. "php": "^7.4 || ^8.0"
  2270. },
  2271. "require-dev": {
  2272. "phpstan/phpstan": "^1.8.2",
  2273. "phpunit/phpunit": "^9.5.5",
  2274. "scrutinizer/ocular": "^1.8.1",
  2275. "unleashedtech/php-coding-standard": "^3.1",
  2276. "vimeo/psalm": "^4.7.3"
  2277. },
  2278. "type": "library",
  2279. "extra": {
  2280. "branch-alias": {
  2281. "dev-main": "1.2-dev"
  2282. }
  2283. },
  2284. "autoload": {
  2285. "psr-4": {
  2286. "League\\Config\\": "src"
  2287. }
  2288. },
  2289. "notification-url": "https://packagist.org/downloads/",
  2290. "license": [
  2291. "BSD-3-Clause"
  2292. ],
  2293. "authors": [
  2294. {
  2295. "name": "Colin O'Dell",
  2296. "email": "colinodell@gmail.com",
  2297. "homepage": "https://www.colinodell.com",
  2298. "role": "Lead Developer"
  2299. }
  2300. ],
  2301. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  2302. "homepage": "https://config.thephpleague.com",
  2303. "keywords": [
  2304. "array",
  2305. "config",
  2306. "configuration",
  2307. "dot",
  2308. "dot-access",
  2309. "nested",
  2310. "schema"
  2311. ],
  2312. "support": {
  2313. "docs": "https://config.thephpleague.com/",
  2314. "issues": "https://github.com/thephpleague/config/issues",
  2315. "rss": "https://github.com/thephpleague/config/releases.atom",
  2316. "source": "https://github.com/thephpleague/config"
  2317. },
  2318. "funding": [
  2319. {
  2320. "url": "https://www.colinodell.com/sponsor",
  2321. "type": "custom"
  2322. },
  2323. {
  2324. "url": "https://www.paypal.me/colinpodell/10.00",
  2325. "type": "custom"
  2326. },
  2327. {
  2328. "url": "https://github.com/colinodell",
  2329. "type": "github"
  2330. }
  2331. ],
  2332. "time": "2022-12-11T20:36:23+00:00"
  2333. },
  2334. {
  2335. "name": "league/flysystem",
  2336. "version": "1.1.10",
  2337. "source": {
  2338. "type": "git",
  2339. "url": "https://github.com/thephpleague/flysystem.git",
  2340. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1"
  2341. },
  2342. "dist": {
  2343. "type": "zip",
  2344. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/3239285c825c152bcc315fe0e87d6b55f5972ed1",
  2345. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1",
  2346. "shasum": "",
  2347. "mirrors": [
  2348. {
  2349. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2350. "preferred": true
  2351. }
  2352. ]
  2353. },
  2354. "require": {
  2355. "ext-fileinfo": "*",
  2356. "league/mime-type-detection": "^1.3",
  2357. "php": "^7.2.5 || ^8.0"
  2358. },
  2359. "conflict": {
  2360. "league/flysystem-sftp": "<1.0.6"
  2361. },
  2362. "require-dev": {
  2363. "phpspec/prophecy": "^1.11.1",
  2364. "phpunit/phpunit": "^8.5.8"
  2365. },
  2366. "suggest": {
  2367. "ext-ftp": "Allows you to use FTP server storage",
  2368. "ext-openssl": "Allows you to use FTPS server storage",
  2369. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2370. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2371. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2372. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2373. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2374. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2375. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2376. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2377. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2378. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2379. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2380. },
  2381. "type": "library",
  2382. "extra": {
  2383. "branch-alias": {
  2384. "dev-master": "1.1-dev"
  2385. }
  2386. },
  2387. "autoload": {
  2388. "psr-4": {
  2389. "League\\Flysystem\\": "src/"
  2390. }
  2391. },
  2392. "notification-url": "https://packagist.org/downloads/",
  2393. "license": [
  2394. "MIT"
  2395. ],
  2396. "authors": [
  2397. {
  2398. "name": "Frank de Jonge",
  2399. "email": "info@frenky.net"
  2400. }
  2401. ],
  2402. "description": "Filesystem abstraction: Many filesystems, one API.",
  2403. "keywords": [
  2404. "Cloud Files",
  2405. "WebDAV",
  2406. "abstraction",
  2407. "aws",
  2408. "cloud",
  2409. "copy.com",
  2410. "dropbox",
  2411. "file systems",
  2412. "files",
  2413. "filesystem",
  2414. "filesystems",
  2415. "ftp",
  2416. "rackspace",
  2417. "remote",
  2418. "s3",
  2419. "sftp",
  2420. "storage"
  2421. ],
  2422. "support": {
  2423. "issues": "https://github.com/thephpleague/flysystem/issues",
  2424. "source": "https://github.com/thephpleague/flysystem/tree/1.1.10"
  2425. },
  2426. "funding": [
  2427. {
  2428. "url": "https://offset.earth/frankdejonge",
  2429. "type": "other"
  2430. }
  2431. ],
  2432. "time": "2022-10-04T09:16:37+00:00"
  2433. },
  2434. {
  2435. "name": "league/mime-type-detection",
  2436. "version": "1.15.0",
  2437. "source": {
  2438. "type": "git",
  2439. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2440. "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301"
  2441. },
  2442. "dist": {
  2443. "type": "zip",
  2444. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301",
  2445. "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301",
  2446. "shasum": "",
  2447. "mirrors": [
  2448. {
  2449. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2450. "preferred": true
  2451. }
  2452. ]
  2453. },
  2454. "require": {
  2455. "ext-fileinfo": "*",
  2456. "php": "^7.4 || ^8.0"
  2457. },
  2458. "require-dev": {
  2459. "friendsofphp/php-cs-fixer": "^3.2",
  2460. "phpstan/phpstan": "^0.12.68",
  2461. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  2462. },
  2463. "type": "library",
  2464. "autoload": {
  2465. "psr-4": {
  2466. "League\\MimeTypeDetection\\": "src"
  2467. }
  2468. },
  2469. "notification-url": "https://packagist.org/downloads/",
  2470. "license": [
  2471. "MIT"
  2472. ],
  2473. "authors": [
  2474. {
  2475. "name": "Frank de Jonge",
  2476. "email": "info@frankdejonge.nl"
  2477. }
  2478. ],
  2479. "description": "Mime-type detection for Flysystem",
  2480. "support": {
  2481. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2482. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.15.0"
  2483. },
  2484. "funding": [
  2485. {
  2486. "url": "https://github.com/frankdejonge",
  2487. "type": "github"
  2488. },
  2489. {
  2490. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2491. "type": "tidelift"
  2492. }
  2493. ],
  2494. "time": "2024-01-28T23:22:08+00:00"
  2495. },
  2496. {
  2497. "name": "league/oauth1-client",
  2498. "version": "v1.10.1",
  2499. "source": {
  2500. "type": "git",
  2501. "url": "https://github.com/thephpleague/oauth1-client.git",
  2502. "reference": "d6365b901b5c287dd41f143033315e2f777e1167"
  2503. },
  2504. "dist": {
  2505. "type": "zip",
  2506. "url": "https://api.github.com/repos/thephpleague/oauth1-client/zipball/d6365b901b5c287dd41f143033315e2f777e1167",
  2507. "reference": "d6365b901b5c287dd41f143033315e2f777e1167",
  2508. "shasum": "",
  2509. "mirrors": [
  2510. {
  2511. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2512. "preferred": true
  2513. }
  2514. ]
  2515. },
  2516. "require": {
  2517. "ext-json": "*",
  2518. "ext-openssl": "*",
  2519. "guzzlehttp/guzzle": "^6.0|^7.0",
  2520. "guzzlehttp/psr7": "^1.7|^2.0",
  2521. "php": ">=7.1||>=8.0"
  2522. },
  2523. "require-dev": {
  2524. "ext-simplexml": "*",
  2525. "friendsofphp/php-cs-fixer": "^2.17",
  2526. "mockery/mockery": "^1.3.3",
  2527. "phpstan/phpstan": "^0.12.42",
  2528. "phpunit/phpunit": "^7.5||9.5"
  2529. },
  2530. "suggest": {
  2531. "ext-simplexml": "For decoding XML-based responses."
  2532. },
  2533. "type": "library",
  2534. "extra": {
  2535. "branch-alias": {
  2536. "dev-master": "1.0-dev",
  2537. "dev-develop": "2.0-dev"
  2538. }
  2539. },
  2540. "autoload": {
  2541. "psr-4": {
  2542. "League\\OAuth1\\Client\\": "src/"
  2543. }
  2544. },
  2545. "notification-url": "https://packagist.org/downloads/",
  2546. "license": [
  2547. "MIT"
  2548. ],
  2549. "authors": [
  2550. {
  2551. "name": "Ben Corlett",
  2552. "email": "bencorlett@me.com",
  2553. "homepage": "http://www.webcomm.com.au",
  2554. "role": "Developer"
  2555. }
  2556. ],
  2557. "description": "OAuth 1.0 Client Library",
  2558. "keywords": [
  2559. "Authentication",
  2560. "SSO",
  2561. "authorization",
  2562. "bitbucket",
  2563. "identity",
  2564. "idp",
  2565. "oauth",
  2566. "oauth1",
  2567. "single sign on",
  2568. "trello",
  2569. "tumblr",
  2570. "twitter"
  2571. ],
  2572. "support": {
  2573. "issues": "https://github.com/thephpleague/oauth1-client/issues",
  2574. "source": "https://github.com/thephpleague/oauth1-client/tree/v1.10.1"
  2575. },
  2576. "time": "2022-04-15T14:02:14+00:00"
  2577. },
  2578. {
  2579. "name": "maatwebsite/excel",
  2580. "version": "3.1.59",
  2581. "source": {
  2582. "type": "git",
  2583. "url": "https://github.com/SpartnerNL/Laravel-Excel.git",
  2584. "reference": "b4d8b877e31998811700283d91292ab2b9a4970d"
  2585. },
  2586. "dist": {
  2587. "type": "zip",
  2588. "url": "https://api.github.com/repos/SpartnerNL/Laravel-Excel/zipball/b4d8b877e31998811700283d91292ab2b9a4970d",
  2589. "reference": "b4d8b877e31998811700283d91292ab2b9a4970d",
  2590. "shasum": "",
  2591. "mirrors": [
  2592. {
  2593. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2594. "preferred": true
  2595. }
  2596. ]
  2597. },
  2598. "require": {
  2599. "composer/semver": "^3.3",
  2600. "ext-json": "*",
  2601. "illuminate/support": "5.8.*||^6.0||^7.0||^8.0||^9.0||^10.0||^11.0",
  2602. "php": "^7.0||^8.0",
  2603. "phpoffice/phpspreadsheet": "^1.29.2",
  2604. "psr/simple-cache": "^1.0||^2.0||^3.0"
  2605. },
  2606. "require-dev": {
  2607. "laravel/scout": "^7.0||^8.0||^9.0||^10.0",
  2608. "orchestra/testbench": "^6.0||^7.0||^8.0||^9.0",
  2609. "predis/predis": "^1.1"
  2610. },
  2611. "type": "library",
  2612. "extra": {
  2613. "laravel": {
  2614. "providers": [
  2615. "Maatwebsite\\Excel\\ExcelServiceProvider"
  2616. ],
  2617. "aliases": {
  2618. "Excel": "Maatwebsite\\Excel\\Facades\\Excel"
  2619. }
  2620. }
  2621. },
  2622. "autoload": {
  2623. "psr-4": {
  2624. "Maatwebsite\\Excel\\": "src/"
  2625. }
  2626. },
  2627. "notification-url": "https://packagist.org/downloads/",
  2628. "license": [
  2629. "MIT"
  2630. ],
  2631. "authors": [
  2632. {
  2633. "name": "Patrick Brouwers",
  2634. "email": "patrick@spartner.nl"
  2635. }
  2636. ],
  2637. "description": "Supercharged Excel exports and imports in Laravel",
  2638. "keywords": [
  2639. "PHPExcel",
  2640. "batch",
  2641. "csv",
  2642. "excel",
  2643. "export",
  2644. "import",
  2645. "laravel",
  2646. "php",
  2647. "phpspreadsheet"
  2648. ],
  2649. "support": {
  2650. "issues": "https://github.com/SpartnerNL/Laravel-Excel/issues",
  2651. "source": "https://github.com/SpartnerNL/Laravel-Excel/tree/3.1.59"
  2652. },
  2653. "funding": [
  2654. {
  2655. "url": "https://laravel-excel.com/commercial-support",
  2656. "type": "custom"
  2657. },
  2658. {
  2659. "url": "https://github.com/patrickbrouwers",
  2660. "type": "github"
  2661. }
  2662. ],
  2663. "time": "2024-10-25T15:40:14+00:00"
  2664. },
  2665. {
  2666. "name": "maennchen/zipstream-php",
  2667. "version": "2.4.0",
  2668. "source": {
  2669. "type": "git",
  2670. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  2671. "reference": "3fa72e4c71a43f9e9118752a5c90e476a8dc9eb3"
  2672. },
  2673. "dist": {
  2674. "type": "zip",
  2675. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/3fa72e4c71a43f9e9118752a5c90e476a8dc9eb3",
  2676. "reference": "3fa72e4c71a43f9e9118752a5c90e476a8dc9eb3",
  2677. "shasum": "",
  2678. "mirrors": [
  2679. {
  2680. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2681. "preferred": true
  2682. }
  2683. ]
  2684. },
  2685. "require": {
  2686. "ext-mbstring": "*",
  2687. "myclabs/php-enum": "^1.5",
  2688. "php": "^8.0",
  2689. "psr/http-message": "^1.0"
  2690. },
  2691. "require-dev": {
  2692. "ext-zip": "*",
  2693. "friendsofphp/php-cs-fixer": "^3.9",
  2694. "guzzlehttp/guzzle": "^6.5.3 || ^7.2.0",
  2695. "mikey179/vfsstream": "^1.6",
  2696. "php-coveralls/php-coveralls": "^2.4",
  2697. "phpunit/phpunit": "^8.5.8 || ^9.4.2",
  2698. "vimeo/psalm": "^5.0"
  2699. },
  2700. "type": "library",
  2701. "autoload": {
  2702. "psr-4": {
  2703. "ZipStream\\": "src/"
  2704. }
  2705. },
  2706. "notification-url": "https://packagist.org/downloads/",
  2707. "license": [
  2708. "MIT"
  2709. ],
  2710. "authors": [
  2711. {
  2712. "name": "Paul Duncan",
  2713. "email": "pabs@pablotron.org"
  2714. },
  2715. {
  2716. "name": "Jonatan Männchen",
  2717. "email": "jonatan@maennchen.ch"
  2718. },
  2719. {
  2720. "name": "Jesse Donat",
  2721. "email": "donatj@gmail.com"
  2722. },
  2723. {
  2724. "name": "András Kolesár",
  2725. "email": "kolesar@kolesar.hu"
  2726. }
  2727. ],
  2728. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  2729. "keywords": [
  2730. "stream",
  2731. "zip"
  2732. ],
  2733. "support": {
  2734. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  2735. "source": "https://github.com/maennchen/ZipStream-PHP/tree/2.4.0"
  2736. },
  2737. "funding": [
  2738. {
  2739. "url": "https://github.com/maennchen",
  2740. "type": "github"
  2741. },
  2742. {
  2743. "url": "https://opencollective.com/zipstream",
  2744. "type": "open_collective"
  2745. }
  2746. ],
  2747. "time": "2022-12-08T12:29:14+00:00"
  2748. },
  2749. {
  2750. "name": "markbaker/complex",
  2751. "version": "3.0.2",
  2752. "source": {
  2753. "type": "git",
  2754. "url": "https://github.com/MarkBaker/PHPComplex.git",
  2755. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9"
  2756. },
  2757. "dist": {
  2758. "type": "zip",
  2759. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  2760. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  2761. "shasum": "",
  2762. "mirrors": [
  2763. {
  2764. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2765. "preferred": true
  2766. }
  2767. ]
  2768. },
  2769. "require": {
  2770. "php": "^7.2 || ^8.0"
  2771. },
  2772. "require-dev": {
  2773. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  2774. "phpcompatibility/php-compatibility": "^9.3",
  2775. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  2776. "squizlabs/php_codesniffer": "^3.7"
  2777. },
  2778. "type": "library",
  2779. "autoload": {
  2780. "psr-4": {
  2781. "Complex\\": "classes/src/"
  2782. }
  2783. },
  2784. "notification-url": "https://packagist.org/downloads/",
  2785. "license": [
  2786. "MIT"
  2787. ],
  2788. "authors": [
  2789. {
  2790. "name": "Mark Baker",
  2791. "email": "mark@lange.demon.co.uk"
  2792. }
  2793. ],
  2794. "description": "PHP Class for working with complex numbers",
  2795. "homepage": "https://github.com/MarkBaker/PHPComplex",
  2796. "keywords": [
  2797. "complex",
  2798. "mathematics"
  2799. ],
  2800. "support": {
  2801. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  2802. "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.2"
  2803. },
  2804. "time": "2022-12-06T16:21:08+00:00"
  2805. },
  2806. {
  2807. "name": "markbaker/matrix",
  2808. "version": "3.0.1",
  2809. "source": {
  2810. "type": "git",
  2811. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  2812. "reference": "728434227fe21be27ff6d86621a1b13107a2562c"
  2813. },
  2814. "dist": {
  2815. "type": "zip",
  2816. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/728434227fe21be27ff6d86621a1b13107a2562c",
  2817. "reference": "728434227fe21be27ff6d86621a1b13107a2562c",
  2818. "shasum": "",
  2819. "mirrors": [
  2820. {
  2821. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2822. "preferred": true
  2823. }
  2824. ]
  2825. },
  2826. "require": {
  2827. "php": "^7.1 || ^8.0"
  2828. },
  2829. "require-dev": {
  2830. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  2831. "phpcompatibility/php-compatibility": "^9.3",
  2832. "phpdocumentor/phpdocumentor": "2.*",
  2833. "phploc/phploc": "^4.0",
  2834. "phpmd/phpmd": "2.*",
  2835. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  2836. "sebastian/phpcpd": "^4.0",
  2837. "squizlabs/php_codesniffer": "^3.7"
  2838. },
  2839. "type": "library",
  2840. "autoload": {
  2841. "psr-4": {
  2842. "Matrix\\": "classes/src/"
  2843. }
  2844. },
  2845. "notification-url": "https://packagist.org/downloads/",
  2846. "license": [
  2847. "MIT"
  2848. ],
  2849. "authors": [
  2850. {
  2851. "name": "Mark Baker",
  2852. "email": "mark@demon-angel.eu"
  2853. }
  2854. ],
  2855. "description": "PHP Class for working with matrices",
  2856. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  2857. "keywords": [
  2858. "mathematics",
  2859. "matrix",
  2860. "vector"
  2861. ],
  2862. "support": {
  2863. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  2864. "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.1"
  2865. },
  2866. "time": "2022-12-02T22:17:43+00:00"
  2867. },
  2868. {
  2869. "name": "monolog/monolog",
  2870. "version": "2.10.0",
  2871. "source": {
  2872. "type": "git",
  2873. "url": "https://github.com/Seldaek/monolog.git",
  2874. "reference": "5cf826f2991858b54d5c3809bee745560a1042a7"
  2875. },
  2876. "dist": {
  2877. "type": "zip",
  2878. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/5cf826f2991858b54d5c3809bee745560a1042a7",
  2879. "reference": "5cf826f2991858b54d5c3809bee745560a1042a7",
  2880. "shasum": "",
  2881. "mirrors": [
  2882. {
  2883. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2884. "preferred": true
  2885. }
  2886. ]
  2887. },
  2888. "require": {
  2889. "php": ">=7.2",
  2890. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  2891. },
  2892. "provide": {
  2893. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  2894. },
  2895. "require-dev": {
  2896. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2897. "doctrine/couchdb": "~1.0@dev",
  2898. "elasticsearch/elasticsearch": "^7 || ^8",
  2899. "ext-json": "*",
  2900. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  2901. "guzzlehttp/guzzle": "^7.4",
  2902. "guzzlehttp/psr7": "^2.2",
  2903. "mongodb/mongodb": "^1.8",
  2904. "php-amqplib/php-amqplib": "~2.4 || ^3",
  2905. "phpspec/prophecy": "^1.15",
  2906. "phpstan/phpstan": "^1.10",
  2907. "phpunit/phpunit": "^8.5.38 || ^9.6.19",
  2908. "predis/predis": "^1.1 || ^2.0",
  2909. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  2910. "ruflin/elastica": "^7",
  2911. "swiftmailer/swiftmailer": "^5.3|^6.0",
  2912. "symfony/mailer": "^5.4 || ^6",
  2913. "symfony/mime": "^5.4 || ^6"
  2914. },
  2915. "suggest": {
  2916. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2917. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2918. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2919. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2920. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  2921. "ext-mbstring": "Allow to work properly with unicode symbols",
  2922. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2923. "ext-openssl": "Required to send log messages using SSL",
  2924. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  2925. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2926. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2927. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2928. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2929. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2930. },
  2931. "type": "library",
  2932. "extra": {
  2933. "branch-alias": {
  2934. "dev-main": "2.x-dev"
  2935. }
  2936. },
  2937. "autoload": {
  2938. "psr-4": {
  2939. "Monolog\\": "src/Monolog"
  2940. }
  2941. },
  2942. "notification-url": "https://packagist.org/downloads/",
  2943. "license": [
  2944. "MIT"
  2945. ],
  2946. "authors": [
  2947. {
  2948. "name": "Jordi Boggiano",
  2949. "email": "j.boggiano@seld.be",
  2950. "homepage": "https://seld.be"
  2951. }
  2952. ],
  2953. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2954. "homepage": "https://github.com/Seldaek/monolog",
  2955. "keywords": [
  2956. "log",
  2957. "logging",
  2958. "psr-3"
  2959. ],
  2960. "support": {
  2961. "issues": "https://github.com/Seldaek/monolog/issues",
  2962. "source": "https://github.com/Seldaek/monolog/tree/2.10.0"
  2963. },
  2964. "funding": [
  2965. {
  2966. "url": "https://github.com/Seldaek",
  2967. "type": "github"
  2968. },
  2969. {
  2970. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2971. "type": "tidelift"
  2972. }
  2973. ],
  2974. "time": "2024-11-12T12:43:37+00:00"
  2975. },
  2976. {
  2977. "name": "myclabs/php-enum",
  2978. "version": "1.8.4",
  2979. "source": {
  2980. "type": "git",
  2981. "url": "https://github.com/myclabs/php-enum.git",
  2982. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483"
  2983. },
  2984. "dist": {
  2985. "type": "zip",
  2986. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/a867478eae49c9f59ece437ae7f9506bfaa27483",
  2987. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483",
  2988. "shasum": "",
  2989. "mirrors": [
  2990. {
  2991. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2992. "preferred": true
  2993. }
  2994. ]
  2995. },
  2996. "require": {
  2997. "ext-json": "*",
  2998. "php": "^7.3 || ^8.0"
  2999. },
  3000. "require-dev": {
  3001. "phpunit/phpunit": "^9.5",
  3002. "squizlabs/php_codesniffer": "1.*",
  3003. "vimeo/psalm": "^4.6.2"
  3004. },
  3005. "type": "library",
  3006. "autoload": {
  3007. "psr-4": {
  3008. "MyCLabs\\Enum\\": "src/"
  3009. },
  3010. "classmap": [
  3011. "stubs/Stringable.php"
  3012. ]
  3013. },
  3014. "notification-url": "https://packagist.org/downloads/",
  3015. "license": [
  3016. "MIT"
  3017. ],
  3018. "authors": [
  3019. {
  3020. "name": "PHP Enum contributors",
  3021. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  3022. }
  3023. ],
  3024. "description": "PHP Enum implementation",
  3025. "homepage": "http://github.com/myclabs/php-enum",
  3026. "keywords": [
  3027. "enum"
  3028. ],
  3029. "support": {
  3030. "issues": "https://github.com/myclabs/php-enum/issues",
  3031. "source": "https://github.com/myclabs/php-enum/tree/1.8.4"
  3032. },
  3033. "funding": [
  3034. {
  3035. "url": "https://github.com/mnapoli",
  3036. "type": "github"
  3037. },
  3038. {
  3039. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  3040. "type": "tidelift"
  3041. }
  3042. ],
  3043. "time": "2022-08-04T09:53:51+00:00"
  3044. },
  3045. {
  3046. "name": "nesbot/carbon",
  3047. "version": "2.73.0",
  3048. "source": {
  3049. "type": "git",
  3050. "url": "https://github.com/CarbonPHP/carbon.git",
  3051. "reference": "9228ce90e1035ff2f0db84b40ec2e023ed802075"
  3052. },
  3053. "dist": {
  3054. "type": "zip",
  3055. "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/9228ce90e1035ff2f0db84b40ec2e023ed802075",
  3056. "reference": "9228ce90e1035ff2f0db84b40ec2e023ed802075",
  3057. "shasum": "",
  3058. "mirrors": [
  3059. {
  3060. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3061. "preferred": true
  3062. }
  3063. ]
  3064. },
  3065. "require": {
  3066. "carbonphp/carbon-doctrine-types": "*",
  3067. "ext-json": "*",
  3068. "php": "^7.1.8 || ^8.0",
  3069. "psr/clock": "^1.0",
  3070. "symfony/polyfill-mbstring": "^1.0",
  3071. "symfony/polyfill-php80": "^1.16",
  3072. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  3073. },
  3074. "provide": {
  3075. "psr/clock-implementation": "1.0"
  3076. },
  3077. "require-dev": {
  3078. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  3079. "doctrine/orm": "^2.7 || ^3.0",
  3080. "friendsofphp/php-cs-fixer": "^3.0",
  3081. "kylekatarnls/multi-tester": "^2.0",
  3082. "ondrejmirtes/better-reflection": "<6",
  3083. "phpmd/phpmd": "^2.9",
  3084. "phpstan/extension-installer": "^1.0",
  3085. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  3086. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  3087. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  3088. "squizlabs/php_codesniffer": "^3.4"
  3089. },
  3090. "bin": [
  3091. "bin/carbon"
  3092. ],
  3093. "type": "library",
  3094. "extra": {
  3095. "laravel": {
  3096. "providers": [
  3097. "Carbon\\Laravel\\ServiceProvider"
  3098. ]
  3099. },
  3100. "phpstan": {
  3101. "includes": [
  3102. "extension.neon"
  3103. ]
  3104. },
  3105. "branch-alias": {
  3106. "dev-2.x": "2.x-dev",
  3107. "dev-master": "3.x-dev"
  3108. }
  3109. },
  3110. "autoload": {
  3111. "psr-4": {
  3112. "Carbon\\": "src/Carbon/"
  3113. }
  3114. },
  3115. "notification-url": "https://packagist.org/downloads/",
  3116. "license": [
  3117. "MIT"
  3118. ],
  3119. "authors": [
  3120. {
  3121. "name": "Brian Nesbitt",
  3122. "email": "brian@nesbot.com",
  3123. "homepage": "https://markido.com"
  3124. },
  3125. {
  3126. "name": "kylekatarnls",
  3127. "homepage": "https://github.com/kylekatarnls"
  3128. }
  3129. ],
  3130. "description": "An API extension for DateTime that supports 281 different languages.",
  3131. "homepage": "https://carbon.nesbot.com",
  3132. "keywords": [
  3133. "date",
  3134. "datetime",
  3135. "time"
  3136. ],
  3137. "support": {
  3138. "docs": "https://carbon.nesbot.com/docs",
  3139. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3140. "source": "https://github.com/briannesbitt/Carbon"
  3141. },
  3142. "funding": [
  3143. {
  3144. "url": "https://github.com/sponsors/kylekatarnls",
  3145. "type": "github"
  3146. },
  3147. {
  3148. "url": "https://opencollective.com/Carbon#sponsor",
  3149. "type": "opencollective"
  3150. },
  3151. {
  3152. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  3153. "type": "tidelift"
  3154. }
  3155. ],
  3156. "time": "2025-01-08T20:10:23+00:00"
  3157. },
  3158. {
  3159. "name": "nette/schema",
  3160. "version": "v1.2.5",
  3161. "source": {
  3162. "type": "git",
  3163. "url": "https://github.com/nette/schema.git",
  3164. "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a"
  3165. },
  3166. "dist": {
  3167. "type": "zip",
  3168. "url": "https://api.github.com/repos/nette/schema/zipball/0462f0166e823aad657c9224d0f849ecac1ba10a",
  3169. "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a",
  3170. "shasum": "",
  3171. "mirrors": [
  3172. {
  3173. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3174. "preferred": true
  3175. }
  3176. ]
  3177. },
  3178. "require": {
  3179. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  3180. "php": "7.1 - 8.3"
  3181. },
  3182. "require-dev": {
  3183. "nette/tester": "^2.3 || ^2.4",
  3184. "phpstan/phpstan-nette": "^1.0",
  3185. "tracy/tracy": "^2.7"
  3186. },
  3187. "type": "library",
  3188. "extra": {
  3189. "branch-alias": {
  3190. "dev-master": "1.2-dev"
  3191. }
  3192. },
  3193. "autoload": {
  3194. "classmap": [
  3195. "src/"
  3196. ]
  3197. },
  3198. "notification-url": "https://packagist.org/downloads/",
  3199. "license": [
  3200. "BSD-3-Clause",
  3201. "GPL-2.0-only",
  3202. "GPL-3.0-only"
  3203. ],
  3204. "authors": [
  3205. {
  3206. "name": "David Grudl",
  3207. "homepage": "https://davidgrudl.com"
  3208. },
  3209. {
  3210. "name": "Nette Community",
  3211. "homepage": "https://nette.org/contributors"
  3212. }
  3213. ],
  3214. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  3215. "homepage": "https://nette.org",
  3216. "keywords": [
  3217. "config",
  3218. "nette"
  3219. ],
  3220. "support": {
  3221. "issues": "https://github.com/nette/schema/issues",
  3222. "source": "https://github.com/nette/schema/tree/v1.2.5"
  3223. },
  3224. "time": "2023-10-05T20:37:59+00:00"
  3225. },
  3226. {
  3227. "name": "nette/utils",
  3228. "version": "v4.0.10",
  3229. "source": {
  3230. "type": "git",
  3231. "url": "https://github.com/nette/utils.git",
  3232. "reference": "2778deb6aab136c8db4ed1f4d6e9f465ca2dbee3"
  3233. },
  3234. "dist": {
  3235. "type": "zip",
  3236. "url": "https://api.github.com/repos/nette/utils/zipball/2778deb6aab136c8db4ed1f4d6e9f465ca2dbee3",
  3237. "reference": "2778deb6aab136c8db4ed1f4d6e9f465ca2dbee3",
  3238. "shasum": "",
  3239. "mirrors": [
  3240. {
  3241. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3242. "preferred": true
  3243. }
  3244. ]
  3245. },
  3246. "require": {
  3247. "php": "8.0 - 8.5"
  3248. },
  3249. "conflict": {
  3250. "nette/finder": "<3",
  3251. "nette/schema": "<1.2.2"
  3252. },
  3253. "require-dev": {
  3254. "jetbrains/phpstorm-attributes": "^1.2",
  3255. "nette/tester": "^2.5",
  3256. "phpstan/phpstan-nette": "^2.0@stable",
  3257. "tracy/tracy": "^2.9"
  3258. },
  3259. "suggest": {
  3260. "ext-gd": "to use Image",
  3261. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  3262. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  3263. "ext-json": "to use Nette\\Utils\\Json",
  3264. "ext-mbstring": "to use Strings::lower() etc...",
  3265. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  3266. },
  3267. "type": "library",
  3268. "extra": {
  3269. "branch-alias": {
  3270. "dev-master": "4.0-dev"
  3271. }
  3272. },
  3273. "autoload": {
  3274. "psr-4": {
  3275. "Nette\\": "src"
  3276. },
  3277. "classmap": [
  3278. "src/"
  3279. ]
  3280. },
  3281. "notification-url": "https://packagist.org/downloads/",
  3282. "license": [
  3283. "BSD-3-Clause",
  3284. "GPL-2.0-only",
  3285. "GPL-3.0-only"
  3286. ],
  3287. "authors": [
  3288. {
  3289. "name": "David Grudl",
  3290. "homepage": "https://davidgrudl.com"
  3291. },
  3292. {
  3293. "name": "Nette Community",
  3294. "homepage": "https://nette.org/contributors"
  3295. }
  3296. ],
  3297. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  3298. "homepage": "https://nette.org",
  3299. "keywords": [
  3300. "array",
  3301. "core",
  3302. "datetime",
  3303. "images",
  3304. "json",
  3305. "nette",
  3306. "paginator",
  3307. "password",
  3308. "slugify",
  3309. "string",
  3310. "unicode",
  3311. "utf-8",
  3312. "utility",
  3313. "validation"
  3314. ],
  3315. "support": {
  3316. "issues": "https://github.com/nette/utils/issues",
  3317. "source": "https://github.com/nette/utils/tree/v4.0.10"
  3318. },
  3319. "time": "2025-12-01T17:30:42+00:00"
  3320. },
  3321. {
  3322. "name": "nikic/php-parser",
  3323. "version": "v5.7.0",
  3324. "source": {
  3325. "type": "git",
  3326. "url": "https://github.com/nikic/PHP-Parser.git",
  3327. "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82"
  3328. },
  3329. "dist": {
  3330. "type": "zip",
  3331. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/dca41cd15c2ac9d055ad70dbfd011130757d1f82",
  3332. "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82",
  3333. "shasum": "",
  3334. "mirrors": [
  3335. {
  3336. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3337. "preferred": true
  3338. }
  3339. ]
  3340. },
  3341. "require": {
  3342. "ext-ctype": "*",
  3343. "ext-json": "*",
  3344. "ext-tokenizer": "*",
  3345. "php": ">=7.4"
  3346. },
  3347. "require-dev": {
  3348. "ircmaxell/php-yacc": "^0.0.7",
  3349. "phpunit/phpunit": "^9.0"
  3350. },
  3351. "bin": [
  3352. "bin/php-parse"
  3353. ],
  3354. "type": "library",
  3355. "extra": {
  3356. "branch-alias": {
  3357. "dev-master": "5.x-dev"
  3358. }
  3359. },
  3360. "autoload": {
  3361. "psr-4": {
  3362. "PhpParser\\": "lib/PhpParser"
  3363. }
  3364. },
  3365. "notification-url": "https://packagist.org/downloads/",
  3366. "license": [
  3367. "BSD-3-Clause"
  3368. ],
  3369. "authors": [
  3370. {
  3371. "name": "Nikita Popov"
  3372. }
  3373. ],
  3374. "description": "A PHP parser written in PHP",
  3375. "keywords": [
  3376. "parser",
  3377. "php"
  3378. ],
  3379. "support": {
  3380. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3381. "source": "https://github.com/nikic/PHP-Parser/tree/v5.7.0"
  3382. },
  3383. "time": "2025-12-06T11:56:16+00:00"
  3384. },
  3385. {
  3386. "name": "opis/closure",
  3387. "version": "3.6.3",
  3388. "source": {
  3389. "type": "git",
  3390. "url": "https://github.com/opis/closure.git",
  3391. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad"
  3392. },
  3393. "dist": {
  3394. "type": "zip",
  3395. "url": "https://api.github.com/repos/opis/closure/zipball/3d81e4309d2a927abbe66df935f4bb60082805ad",
  3396. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad",
  3397. "shasum": "",
  3398. "mirrors": [
  3399. {
  3400. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3401. "preferred": true
  3402. }
  3403. ]
  3404. },
  3405. "require": {
  3406. "php": "^5.4 || ^7.0 || ^8.0"
  3407. },
  3408. "require-dev": {
  3409. "jeremeamia/superclosure": "^2.0",
  3410. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  3411. },
  3412. "type": "library",
  3413. "extra": {
  3414. "branch-alias": {
  3415. "dev-master": "3.6.x-dev"
  3416. }
  3417. },
  3418. "autoload": {
  3419. "files": [
  3420. "functions.php"
  3421. ],
  3422. "psr-4": {
  3423. "Opis\\Closure\\": "src/"
  3424. }
  3425. },
  3426. "notification-url": "https://packagist.org/downloads/",
  3427. "license": [
  3428. "MIT"
  3429. ],
  3430. "authors": [
  3431. {
  3432. "name": "Marius Sarca",
  3433. "email": "marius.sarca@gmail.com"
  3434. },
  3435. {
  3436. "name": "Sorin Sarca",
  3437. "email": "sarca_sorin@hotmail.com"
  3438. }
  3439. ],
  3440. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  3441. "homepage": "https://opis.io/closure",
  3442. "keywords": [
  3443. "anonymous functions",
  3444. "closure",
  3445. "function",
  3446. "serializable",
  3447. "serialization",
  3448. "serialize"
  3449. ],
  3450. "support": {
  3451. "issues": "https://github.com/opis/closure/issues",
  3452. "source": "https://github.com/opis/closure/tree/3.6.3"
  3453. },
  3454. "time": "2022-01-27T09:35:39+00:00"
  3455. },
  3456. {
  3457. "name": "paragonie/constant_time_encoding",
  3458. "version": "v3.1.3",
  3459. "source": {
  3460. "type": "git",
  3461. "url": "https://github.com/paragonie/constant_time_encoding.git",
  3462. "reference": "d5b01a39b3415c2cd581d3bd3a3575c1ebbd8e77"
  3463. },
  3464. "dist": {
  3465. "type": "zip",
  3466. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/d5b01a39b3415c2cd581d3bd3a3575c1ebbd8e77",
  3467. "reference": "d5b01a39b3415c2cd581d3bd3a3575c1ebbd8e77",
  3468. "shasum": "",
  3469. "mirrors": [
  3470. {
  3471. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3472. "preferred": true
  3473. }
  3474. ]
  3475. },
  3476. "require": {
  3477. "php": "^8"
  3478. },
  3479. "require-dev": {
  3480. "infection/infection": "^0",
  3481. "nikic/php-fuzzer": "^0",
  3482. "phpunit/phpunit": "^9|^10|^11",
  3483. "vimeo/psalm": "^4|^5|^6"
  3484. },
  3485. "type": "library",
  3486. "autoload": {
  3487. "psr-4": {
  3488. "ParagonIE\\ConstantTime\\": "src/"
  3489. }
  3490. },
  3491. "notification-url": "https://packagist.org/downloads/",
  3492. "license": [
  3493. "MIT"
  3494. ],
  3495. "authors": [
  3496. {
  3497. "name": "Paragon Initiative Enterprises",
  3498. "email": "security@paragonie.com",
  3499. "homepage": "https://paragonie.com",
  3500. "role": "Maintainer"
  3501. },
  3502. {
  3503. "name": "Steve 'Sc00bz' Thomas",
  3504. "email": "steve@tobtu.com",
  3505. "homepage": "https://www.tobtu.com",
  3506. "role": "Original Developer"
  3507. }
  3508. ],
  3509. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  3510. "keywords": [
  3511. "base16",
  3512. "base32",
  3513. "base32_decode",
  3514. "base32_encode",
  3515. "base64",
  3516. "base64_decode",
  3517. "base64_encode",
  3518. "bin2hex",
  3519. "encoding",
  3520. "hex",
  3521. "hex2bin",
  3522. "rfc4648"
  3523. ],
  3524. "support": {
  3525. "email": "info@paragonie.com",
  3526. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  3527. "source": "https://github.com/paragonie/constant_time_encoding"
  3528. },
  3529. "time": "2025-09-24T15:06:41+00:00"
  3530. },
  3531. {
  3532. "name": "paragonie/random_compat",
  3533. "version": "v9.99.100",
  3534. "source": {
  3535. "type": "git",
  3536. "url": "https://github.com/paragonie/random_compat.git",
  3537. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  3538. },
  3539. "dist": {
  3540. "type": "zip",
  3541. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  3542. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  3543. "shasum": "",
  3544. "mirrors": [
  3545. {
  3546. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3547. "preferred": true
  3548. }
  3549. ]
  3550. },
  3551. "require": {
  3552. "php": ">= 7"
  3553. },
  3554. "require-dev": {
  3555. "phpunit/phpunit": "4.*|5.*",
  3556. "vimeo/psalm": "^1"
  3557. },
  3558. "suggest": {
  3559. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  3560. },
  3561. "type": "library",
  3562. "notification-url": "https://packagist.org/downloads/",
  3563. "license": [
  3564. "MIT"
  3565. ],
  3566. "authors": [
  3567. {
  3568. "name": "Paragon Initiative Enterprises",
  3569. "email": "security@paragonie.com",
  3570. "homepage": "https://paragonie.com"
  3571. }
  3572. ],
  3573. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  3574. "keywords": [
  3575. "csprng",
  3576. "polyfill",
  3577. "pseudorandom",
  3578. "random"
  3579. ],
  3580. "support": {
  3581. "email": "info@paragonie.com",
  3582. "issues": "https://github.com/paragonie/random_compat/issues",
  3583. "source": "https://github.com/paragonie/random_compat"
  3584. },
  3585. "time": "2020-10-15T08:29:30+00:00"
  3586. },
  3587. {
  3588. "name": "phpoffice/phpspreadsheet",
  3589. "version": "1.30.1",
  3590. "source": {
  3591. "type": "git",
  3592. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  3593. "reference": "fa8257a579ec623473eabfe49731de5967306c4c"
  3594. },
  3595. "dist": {
  3596. "type": "zip",
  3597. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/fa8257a579ec623473eabfe49731de5967306c4c",
  3598. "reference": "fa8257a579ec623473eabfe49731de5967306c4c",
  3599. "shasum": "",
  3600. "mirrors": [
  3601. {
  3602. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3603. "preferred": true
  3604. }
  3605. ]
  3606. },
  3607. "require": {
  3608. "composer/pcre": "^1||^2||^3",
  3609. "ext-ctype": "*",
  3610. "ext-dom": "*",
  3611. "ext-fileinfo": "*",
  3612. "ext-gd": "*",
  3613. "ext-iconv": "*",
  3614. "ext-libxml": "*",
  3615. "ext-mbstring": "*",
  3616. "ext-simplexml": "*",
  3617. "ext-xml": "*",
  3618. "ext-xmlreader": "*",
  3619. "ext-xmlwriter": "*",
  3620. "ext-zip": "*",
  3621. "ext-zlib": "*",
  3622. "ezyang/htmlpurifier": "^4.15",
  3623. "maennchen/zipstream-php": "^2.1 || ^3.0",
  3624. "markbaker/complex": "^3.0",
  3625. "markbaker/matrix": "^3.0",
  3626. "php": ">=7.4.0 <8.5.0",
  3627. "psr/http-client": "^1.0",
  3628. "psr/http-factory": "^1.0",
  3629. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  3630. },
  3631. "require-dev": {
  3632. "dealerdirect/phpcodesniffer-composer-installer": "dev-main",
  3633. "dompdf/dompdf": "^1.0 || ^2.0 || ^3.0",
  3634. "friendsofphp/php-cs-fixer": "^3.2",
  3635. "mitoteam/jpgraph": "^10.3",
  3636. "mpdf/mpdf": "^8.1.1",
  3637. "phpcompatibility/php-compatibility": "^9.3",
  3638. "phpstan/phpstan": "^1.1",
  3639. "phpstan/phpstan-phpunit": "^1.0",
  3640. "phpunit/phpunit": "^8.5 || ^9.0",
  3641. "squizlabs/php_codesniffer": "^3.7",
  3642. "tecnickcom/tcpdf": "^6.5"
  3643. },
  3644. "suggest": {
  3645. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  3646. "ext-intl": "PHP Internationalization Functions",
  3647. "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  3648. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  3649. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  3650. },
  3651. "type": "library",
  3652. "autoload": {
  3653. "psr-4": {
  3654. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  3655. }
  3656. },
  3657. "notification-url": "https://packagist.org/downloads/",
  3658. "license": [
  3659. "MIT"
  3660. ],
  3661. "authors": [
  3662. {
  3663. "name": "Maarten Balliauw",
  3664. "homepage": "https://blog.maartenballiauw.be"
  3665. },
  3666. {
  3667. "name": "Mark Baker",
  3668. "homepage": "https://markbakeruk.net"
  3669. },
  3670. {
  3671. "name": "Franck Lefevre",
  3672. "homepage": "https://rootslabs.net"
  3673. },
  3674. {
  3675. "name": "Erik Tilt"
  3676. },
  3677. {
  3678. "name": "Adrien Crivelli"
  3679. }
  3680. ],
  3681. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3682. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  3683. "keywords": [
  3684. "OpenXML",
  3685. "excel",
  3686. "gnumeric",
  3687. "ods",
  3688. "php",
  3689. "spreadsheet",
  3690. "xls",
  3691. "xlsx"
  3692. ],
  3693. "support": {
  3694. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  3695. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.30.1"
  3696. },
  3697. "time": "2025-10-26T16:01:04+00:00"
  3698. },
  3699. {
  3700. "name": "phpoption/phpoption",
  3701. "version": "1.9.3",
  3702. "source": {
  3703. "type": "git",
  3704. "url": "https://github.com/schmittjoh/php-option.git",
  3705. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  3706. },
  3707. "dist": {
  3708. "type": "zip",
  3709. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  3710. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  3711. "shasum": "",
  3712. "mirrors": [
  3713. {
  3714. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3715. "preferred": true
  3716. }
  3717. ]
  3718. },
  3719. "require": {
  3720. "php": "^7.2.5 || ^8.0"
  3721. },
  3722. "require-dev": {
  3723. "bamarni/composer-bin-plugin": "^1.8.2",
  3724. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  3725. },
  3726. "type": "library",
  3727. "extra": {
  3728. "bamarni-bin": {
  3729. "bin-links": true,
  3730. "forward-command": false
  3731. },
  3732. "branch-alias": {
  3733. "dev-master": "1.9-dev"
  3734. }
  3735. },
  3736. "autoload": {
  3737. "psr-4": {
  3738. "PhpOption\\": "src/PhpOption/"
  3739. }
  3740. },
  3741. "notification-url": "https://packagist.org/downloads/",
  3742. "license": [
  3743. "Apache-2.0"
  3744. ],
  3745. "authors": [
  3746. {
  3747. "name": "Johannes M. Schmitt",
  3748. "email": "schmittjoh@gmail.com",
  3749. "homepage": "https://github.com/schmittjoh"
  3750. },
  3751. {
  3752. "name": "Graham Campbell",
  3753. "email": "hello@gjcampbell.co.uk",
  3754. "homepage": "https://github.com/GrahamCampbell"
  3755. }
  3756. ],
  3757. "description": "Option Type for PHP",
  3758. "keywords": [
  3759. "language",
  3760. "option",
  3761. "php",
  3762. "type"
  3763. ],
  3764. "support": {
  3765. "issues": "https://github.com/schmittjoh/php-option/issues",
  3766. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  3767. },
  3768. "funding": [
  3769. {
  3770. "url": "https://github.com/GrahamCampbell",
  3771. "type": "github"
  3772. },
  3773. {
  3774. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3775. "type": "tidelift"
  3776. }
  3777. ],
  3778. "time": "2024-07-20T21:41:07+00:00"
  3779. },
  3780. {
  3781. "name": "phpseclib/phpseclib",
  3782. "version": "3.0.47",
  3783. "source": {
  3784. "type": "git",
  3785. "url": "https://github.com/phpseclib/phpseclib.git",
  3786. "reference": "9d6ca36a6c2dd434765b1071b2644a1c683b385d"
  3787. },
  3788. "dist": {
  3789. "type": "zip",
  3790. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/9d6ca36a6c2dd434765b1071b2644a1c683b385d",
  3791. "reference": "9d6ca36a6c2dd434765b1071b2644a1c683b385d",
  3792. "shasum": "",
  3793. "mirrors": [
  3794. {
  3795. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3796. "preferred": true
  3797. }
  3798. ]
  3799. },
  3800. "require": {
  3801. "paragonie/constant_time_encoding": "^1|^2|^3",
  3802. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  3803. "php": ">=5.6.1"
  3804. },
  3805. "require-dev": {
  3806. "phpunit/phpunit": "*"
  3807. },
  3808. "suggest": {
  3809. "ext-dom": "Install the DOM extension to load XML formatted public keys.",
  3810. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  3811. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  3812. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  3813. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  3814. },
  3815. "type": "library",
  3816. "autoload": {
  3817. "files": [
  3818. "phpseclib/bootstrap.php"
  3819. ],
  3820. "psr-4": {
  3821. "phpseclib3\\": "phpseclib/"
  3822. }
  3823. },
  3824. "notification-url": "https://packagist.org/downloads/",
  3825. "license": [
  3826. "MIT"
  3827. ],
  3828. "authors": [
  3829. {
  3830. "name": "Jim Wigginton",
  3831. "email": "terrafrost@php.net",
  3832. "role": "Lead Developer"
  3833. },
  3834. {
  3835. "name": "Patrick Monnerat",
  3836. "email": "pm@datasphere.ch",
  3837. "role": "Developer"
  3838. },
  3839. {
  3840. "name": "Andreas Fischer",
  3841. "email": "bantu@phpbb.com",
  3842. "role": "Developer"
  3843. },
  3844. {
  3845. "name": "Hans-Jürgen Petrich",
  3846. "email": "petrich@tronic-media.com",
  3847. "role": "Developer"
  3848. },
  3849. {
  3850. "name": "Graham Campbell",
  3851. "email": "graham@alt-three.com",
  3852. "role": "Developer"
  3853. }
  3854. ],
  3855. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  3856. "homepage": "http://phpseclib.sourceforge.net",
  3857. "keywords": [
  3858. "BigInteger",
  3859. "aes",
  3860. "asn.1",
  3861. "asn1",
  3862. "blowfish",
  3863. "crypto",
  3864. "cryptography",
  3865. "encryption",
  3866. "rsa",
  3867. "security",
  3868. "sftp",
  3869. "signature",
  3870. "signing",
  3871. "ssh",
  3872. "twofish",
  3873. "x.509",
  3874. "x509"
  3875. ],
  3876. "support": {
  3877. "issues": "https://github.com/phpseclib/phpseclib/issues",
  3878. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.47"
  3879. },
  3880. "funding": [
  3881. {
  3882. "url": "https://github.com/terrafrost",
  3883. "type": "github"
  3884. },
  3885. {
  3886. "url": "https://www.patreon.com/phpseclib",
  3887. "type": "patreon"
  3888. },
  3889. {
  3890. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  3891. "type": "tidelift"
  3892. }
  3893. ],
  3894. "time": "2025-10-06T01:07:24+00:00"
  3895. },
  3896. {
  3897. "name": "psr/clock",
  3898. "version": "1.0.0",
  3899. "source": {
  3900. "type": "git",
  3901. "url": "https://github.com/php-fig/clock.git",
  3902. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  3903. },
  3904. "dist": {
  3905. "type": "zip",
  3906. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  3907. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  3908. "shasum": "",
  3909. "mirrors": [
  3910. {
  3911. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3912. "preferred": true
  3913. }
  3914. ]
  3915. },
  3916. "require": {
  3917. "php": "^7.0 || ^8.0"
  3918. },
  3919. "type": "library",
  3920. "autoload": {
  3921. "psr-4": {
  3922. "Psr\\Clock\\": "src/"
  3923. }
  3924. },
  3925. "notification-url": "https://packagist.org/downloads/",
  3926. "license": [
  3927. "MIT"
  3928. ],
  3929. "authors": [
  3930. {
  3931. "name": "PHP-FIG",
  3932. "homepage": "https://www.php-fig.org/"
  3933. }
  3934. ],
  3935. "description": "Common interface for reading the clock.",
  3936. "homepage": "https://github.com/php-fig/clock",
  3937. "keywords": [
  3938. "clock",
  3939. "now",
  3940. "psr",
  3941. "psr-20",
  3942. "time"
  3943. ],
  3944. "support": {
  3945. "issues": "https://github.com/php-fig/clock/issues",
  3946. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  3947. },
  3948. "time": "2022-11-25T14:36:26+00:00"
  3949. },
  3950. {
  3951. "name": "psr/container",
  3952. "version": "1.1.2",
  3953. "source": {
  3954. "type": "git",
  3955. "url": "https://github.com/php-fig/container.git",
  3956. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  3957. },
  3958. "dist": {
  3959. "type": "zip",
  3960. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  3961. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  3962. "shasum": "",
  3963. "mirrors": [
  3964. {
  3965. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3966. "preferred": true
  3967. }
  3968. ]
  3969. },
  3970. "require": {
  3971. "php": ">=7.4.0"
  3972. },
  3973. "type": "library",
  3974. "autoload": {
  3975. "psr-4": {
  3976. "Psr\\Container\\": "src/"
  3977. }
  3978. },
  3979. "notification-url": "https://packagist.org/downloads/",
  3980. "license": [
  3981. "MIT"
  3982. ],
  3983. "authors": [
  3984. {
  3985. "name": "PHP-FIG",
  3986. "homepage": "https://www.php-fig.org/"
  3987. }
  3988. ],
  3989. "description": "Common Container Interface (PHP FIG PSR-11)",
  3990. "homepage": "https://github.com/php-fig/container",
  3991. "keywords": [
  3992. "PSR-11",
  3993. "container",
  3994. "container-interface",
  3995. "container-interop",
  3996. "psr"
  3997. ],
  3998. "support": {
  3999. "issues": "https://github.com/php-fig/container/issues",
  4000. "source": "https://github.com/php-fig/container/tree/1.1.2"
  4001. },
  4002. "time": "2021-11-05T16:50:12+00:00"
  4003. },
  4004. {
  4005. "name": "psr/event-dispatcher",
  4006. "version": "1.0.0",
  4007. "source": {
  4008. "type": "git",
  4009. "url": "https://github.com/php-fig/event-dispatcher.git",
  4010. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  4011. },
  4012. "dist": {
  4013. "type": "zip",
  4014. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4015. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4016. "shasum": "",
  4017. "mirrors": [
  4018. {
  4019. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4020. "preferred": true
  4021. }
  4022. ]
  4023. },
  4024. "require": {
  4025. "php": ">=7.2.0"
  4026. },
  4027. "type": "library",
  4028. "extra": {
  4029. "branch-alias": {
  4030. "dev-master": "1.0.x-dev"
  4031. }
  4032. },
  4033. "autoload": {
  4034. "psr-4": {
  4035. "Psr\\EventDispatcher\\": "src/"
  4036. }
  4037. },
  4038. "notification-url": "https://packagist.org/downloads/",
  4039. "license": [
  4040. "MIT"
  4041. ],
  4042. "authors": [
  4043. {
  4044. "name": "PHP-FIG",
  4045. "homepage": "http://www.php-fig.org/"
  4046. }
  4047. ],
  4048. "description": "Standard interfaces for event handling.",
  4049. "keywords": [
  4050. "events",
  4051. "psr",
  4052. "psr-14"
  4053. ],
  4054. "support": {
  4055. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  4056. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  4057. },
  4058. "time": "2019-01-08T18:20:26+00:00"
  4059. },
  4060. {
  4061. "name": "psr/http-client",
  4062. "version": "1.0.3",
  4063. "source": {
  4064. "type": "git",
  4065. "url": "https://github.com/php-fig/http-client.git",
  4066. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  4067. },
  4068. "dist": {
  4069. "type": "zip",
  4070. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  4071. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  4072. "shasum": "",
  4073. "mirrors": [
  4074. {
  4075. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4076. "preferred": true
  4077. }
  4078. ]
  4079. },
  4080. "require": {
  4081. "php": "^7.0 || ^8.0",
  4082. "psr/http-message": "^1.0 || ^2.0"
  4083. },
  4084. "type": "library",
  4085. "extra": {
  4086. "branch-alias": {
  4087. "dev-master": "1.0.x-dev"
  4088. }
  4089. },
  4090. "autoload": {
  4091. "psr-4": {
  4092. "Psr\\Http\\Client\\": "src/"
  4093. }
  4094. },
  4095. "notification-url": "https://packagist.org/downloads/",
  4096. "license": [
  4097. "MIT"
  4098. ],
  4099. "authors": [
  4100. {
  4101. "name": "PHP-FIG",
  4102. "homepage": "https://www.php-fig.org/"
  4103. }
  4104. ],
  4105. "description": "Common interface for HTTP clients",
  4106. "homepage": "https://github.com/php-fig/http-client",
  4107. "keywords": [
  4108. "http",
  4109. "http-client",
  4110. "psr",
  4111. "psr-18"
  4112. ],
  4113. "support": {
  4114. "source": "https://github.com/php-fig/http-client"
  4115. },
  4116. "time": "2023-09-23T14:17:50+00:00"
  4117. },
  4118. {
  4119. "name": "psr/http-factory",
  4120. "version": "1.0.2",
  4121. "source": {
  4122. "type": "git",
  4123. "url": "https://github.com/php-fig/http-factory.git",
  4124. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  4125. },
  4126. "dist": {
  4127. "type": "zip",
  4128. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  4129. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  4130. "shasum": "",
  4131. "mirrors": [
  4132. {
  4133. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4134. "preferred": true
  4135. }
  4136. ]
  4137. },
  4138. "require": {
  4139. "php": ">=7.0.0",
  4140. "psr/http-message": "^1.0 || ^2.0"
  4141. },
  4142. "type": "library",
  4143. "extra": {
  4144. "branch-alias": {
  4145. "dev-master": "1.0.x-dev"
  4146. }
  4147. },
  4148. "autoload": {
  4149. "psr-4": {
  4150. "Psr\\Http\\Message\\": "src/"
  4151. }
  4152. },
  4153. "notification-url": "https://packagist.org/downloads/",
  4154. "license": [
  4155. "MIT"
  4156. ],
  4157. "authors": [
  4158. {
  4159. "name": "PHP-FIG",
  4160. "homepage": "https://www.php-fig.org/"
  4161. }
  4162. ],
  4163. "description": "Common interfaces for PSR-7 HTTP message factories",
  4164. "keywords": [
  4165. "factory",
  4166. "http",
  4167. "message",
  4168. "psr",
  4169. "psr-17",
  4170. "psr-7",
  4171. "request",
  4172. "response"
  4173. ],
  4174. "support": {
  4175. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  4176. },
  4177. "time": "2023-04-10T20:10:41+00:00"
  4178. },
  4179. {
  4180. "name": "psr/http-message",
  4181. "version": "1.1",
  4182. "source": {
  4183. "type": "git",
  4184. "url": "https://github.com/php-fig/http-message.git",
  4185. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  4186. },
  4187. "dist": {
  4188. "type": "zip",
  4189. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  4190. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  4191. "shasum": "",
  4192. "mirrors": [
  4193. {
  4194. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4195. "preferred": true
  4196. }
  4197. ]
  4198. },
  4199. "require": {
  4200. "php": "^7.2 || ^8.0"
  4201. },
  4202. "type": "library",
  4203. "extra": {
  4204. "branch-alias": {
  4205. "dev-master": "1.1.x-dev"
  4206. }
  4207. },
  4208. "autoload": {
  4209. "psr-4": {
  4210. "Psr\\Http\\Message\\": "src/"
  4211. }
  4212. },
  4213. "notification-url": "https://packagist.org/downloads/",
  4214. "license": [
  4215. "MIT"
  4216. ],
  4217. "authors": [
  4218. {
  4219. "name": "PHP-FIG",
  4220. "homepage": "http://www.php-fig.org/"
  4221. }
  4222. ],
  4223. "description": "Common interface for HTTP messages",
  4224. "homepage": "https://github.com/php-fig/http-message",
  4225. "keywords": [
  4226. "http",
  4227. "http-message",
  4228. "psr",
  4229. "psr-7",
  4230. "request",
  4231. "response"
  4232. ],
  4233. "support": {
  4234. "source": "https://github.com/php-fig/http-message/tree/1.1"
  4235. },
  4236. "time": "2023-04-04T09:50:52+00:00"
  4237. },
  4238. {
  4239. "name": "psr/log",
  4240. "version": "2.0.0",
  4241. "source": {
  4242. "type": "git",
  4243. "url": "https://github.com/php-fig/log.git",
  4244. "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376"
  4245. },
  4246. "dist": {
  4247. "type": "zip",
  4248. "url": "https://api.github.com/repos/php-fig/log/zipball/ef29f6d262798707a9edd554e2b82517ef3a9376",
  4249. "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376",
  4250. "shasum": "",
  4251. "mirrors": [
  4252. {
  4253. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4254. "preferred": true
  4255. }
  4256. ]
  4257. },
  4258. "require": {
  4259. "php": ">=8.0.0"
  4260. },
  4261. "type": "library",
  4262. "extra": {
  4263. "branch-alias": {
  4264. "dev-master": "2.0.x-dev"
  4265. }
  4266. },
  4267. "autoload": {
  4268. "psr-4": {
  4269. "Psr\\Log\\": "src"
  4270. }
  4271. },
  4272. "notification-url": "https://packagist.org/downloads/",
  4273. "license": [
  4274. "MIT"
  4275. ],
  4276. "authors": [
  4277. {
  4278. "name": "PHP-FIG",
  4279. "homepage": "https://www.php-fig.org/"
  4280. }
  4281. ],
  4282. "description": "Common interface for logging libraries",
  4283. "homepage": "https://github.com/php-fig/log",
  4284. "keywords": [
  4285. "log",
  4286. "psr",
  4287. "psr-3"
  4288. ],
  4289. "support": {
  4290. "source": "https://github.com/php-fig/log/tree/2.0.0"
  4291. },
  4292. "time": "2021-07-14T16:41:46+00:00"
  4293. },
  4294. {
  4295. "name": "psr/simple-cache",
  4296. "version": "1.0.1",
  4297. "source": {
  4298. "type": "git",
  4299. "url": "https://github.com/php-fig/simple-cache.git",
  4300. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  4301. },
  4302. "dist": {
  4303. "type": "zip",
  4304. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4305. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4306. "shasum": "",
  4307. "mirrors": [
  4308. {
  4309. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4310. "preferred": true
  4311. }
  4312. ]
  4313. },
  4314. "require": {
  4315. "php": ">=5.3.0"
  4316. },
  4317. "type": "library",
  4318. "extra": {
  4319. "branch-alias": {
  4320. "dev-master": "1.0.x-dev"
  4321. }
  4322. },
  4323. "autoload": {
  4324. "psr-4": {
  4325. "Psr\\SimpleCache\\": "src/"
  4326. }
  4327. },
  4328. "notification-url": "https://packagist.org/downloads/",
  4329. "license": [
  4330. "MIT"
  4331. ],
  4332. "authors": [
  4333. {
  4334. "name": "PHP-FIG",
  4335. "homepage": "http://www.php-fig.org/"
  4336. }
  4337. ],
  4338. "description": "Common interfaces for simple caching",
  4339. "keywords": [
  4340. "cache",
  4341. "caching",
  4342. "psr",
  4343. "psr-16",
  4344. "simple-cache"
  4345. ],
  4346. "support": {
  4347. "source": "https://github.com/php-fig/simple-cache/tree/master"
  4348. },
  4349. "time": "2017-10-23T01:57:42+00:00"
  4350. },
  4351. {
  4352. "name": "psy/psysh",
  4353. "version": "v0.12.15",
  4354. "source": {
  4355. "type": "git",
  4356. "url": "https://github.com/bobthecow/psysh.git",
  4357. "reference": "38953bc71491c838fcb6ebcbdc41ab7483cd549c"
  4358. },
  4359. "dist": {
  4360. "type": "zip",
  4361. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/38953bc71491c838fcb6ebcbdc41ab7483cd549c",
  4362. "reference": "38953bc71491c838fcb6ebcbdc41ab7483cd549c",
  4363. "shasum": "",
  4364. "mirrors": [
  4365. {
  4366. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4367. "preferred": true
  4368. }
  4369. ]
  4370. },
  4371. "require": {
  4372. "ext-json": "*",
  4373. "ext-tokenizer": "*",
  4374. "nikic/php-parser": "^5.0 || ^4.0",
  4375. "php": "^8.0 || ^7.4",
  4376. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  4377. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  4378. },
  4379. "conflict": {
  4380. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  4381. },
  4382. "require-dev": {
  4383. "bamarni/composer-bin-plugin": "^1.2",
  4384. "composer/class-map-generator": "^1.6"
  4385. },
  4386. "suggest": {
  4387. "composer/class-map-generator": "Improved tab completion performance with better class discovery.",
  4388. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4389. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  4390. },
  4391. "bin": [
  4392. "bin/psysh"
  4393. ],
  4394. "type": "library",
  4395. "extra": {
  4396. "bamarni-bin": {
  4397. "bin-links": false,
  4398. "forward-command": false
  4399. },
  4400. "branch-alias": {
  4401. "dev-main": "0.12.x-dev"
  4402. }
  4403. },
  4404. "autoload": {
  4405. "files": [
  4406. "src/functions.php"
  4407. ],
  4408. "psr-4": {
  4409. "Psy\\": "src/"
  4410. }
  4411. },
  4412. "notification-url": "https://packagist.org/downloads/",
  4413. "license": [
  4414. "MIT"
  4415. ],
  4416. "authors": [
  4417. {
  4418. "name": "Justin Hileman",
  4419. "email": "justin@justinhileman.info"
  4420. }
  4421. ],
  4422. "description": "An interactive shell for modern PHP.",
  4423. "homepage": "https://psysh.org",
  4424. "keywords": [
  4425. "REPL",
  4426. "console",
  4427. "interactive",
  4428. "shell"
  4429. ],
  4430. "support": {
  4431. "issues": "https://github.com/bobthecow/psysh/issues",
  4432. "source": "https://github.com/bobthecow/psysh/tree/v0.12.15"
  4433. },
  4434. "time": "2025-11-28T00:00:14+00:00"
  4435. },
  4436. {
  4437. "name": "qiniu/php-sdk",
  4438. "version": "v7.14.0",
  4439. "source": {
  4440. "type": "git",
  4441. "url": "https://github.com/qiniu/php-sdk.git",
  4442. "reference": "ee752ffa7263ce99fca0bd7340cf13c486a3516c"
  4443. },
  4444. "dist": {
  4445. "type": "zip",
  4446. "url": "https://api.github.com/repos/qiniu/php-sdk/zipball/ee752ffa7263ce99fca0bd7340cf13c486a3516c",
  4447. "reference": "ee752ffa7263ce99fca0bd7340cf13c486a3516c",
  4448. "shasum": "",
  4449. "mirrors": [
  4450. {
  4451. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4452. "preferred": true
  4453. }
  4454. ]
  4455. },
  4456. "require": {
  4457. "ext-curl": "*",
  4458. "ext-xml": "*",
  4459. "myclabs/php-enum": "~1.5.2 || ~1.6.6 || ~1.7.7 || ~1.8.4",
  4460. "php": ">=5.3.3"
  4461. },
  4462. "require-dev": {
  4463. "paragonie/random_compat": ">=2",
  4464. "phpunit/phpunit": "^4.8 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.3.4",
  4465. "squizlabs/php_codesniffer": "^2.3 || ~3.6"
  4466. },
  4467. "type": "library",
  4468. "autoload": {
  4469. "files": [
  4470. "src/Qiniu/functions.php",
  4471. "src/Qiniu/Http/Middleware/Middleware.php"
  4472. ],
  4473. "psr-4": {
  4474. "Qiniu\\": "src/Qiniu"
  4475. }
  4476. },
  4477. "notification-url": "https://packagist.org/downloads/",
  4478. "license": [
  4479. "MIT"
  4480. ],
  4481. "authors": [
  4482. {
  4483. "name": "Qiniu",
  4484. "email": "sdk@qiniu.com",
  4485. "homepage": "http://www.qiniu.com"
  4486. }
  4487. ],
  4488. "description": "Qiniu Resource (Cloud) Storage SDK for PHP",
  4489. "homepage": "http://developer.qiniu.com/",
  4490. "keywords": [
  4491. "cloud",
  4492. "qiniu",
  4493. "sdk",
  4494. "storage"
  4495. ],
  4496. "support": {
  4497. "issues": "https://github.com/qiniu/php-sdk/issues",
  4498. "source": "https://github.com/qiniu/php-sdk/tree/v7.14.0"
  4499. },
  4500. "time": "2024-10-25T08:39:01+00:00"
  4501. },
  4502. {
  4503. "name": "ralouphie/getallheaders",
  4504. "version": "3.0.3",
  4505. "source": {
  4506. "type": "git",
  4507. "url": "https://github.com/ralouphie/getallheaders.git",
  4508. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4509. },
  4510. "dist": {
  4511. "type": "zip",
  4512. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4513. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4514. "shasum": "",
  4515. "mirrors": [
  4516. {
  4517. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4518. "preferred": true
  4519. }
  4520. ]
  4521. },
  4522. "require": {
  4523. "php": ">=5.6"
  4524. },
  4525. "require-dev": {
  4526. "php-coveralls/php-coveralls": "^2.1",
  4527. "phpunit/phpunit": "^5 || ^6.5"
  4528. },
  4529. "type": "library",
  4530. "autoload": {
  4531. "files": [
  4532. "src/getallheaders.php"
  4533. ]
  4534. },
  4535. "notification-url": "https://packagist.org/downloads/",
  4536. "license": [
  4537. "MIT"
  4538. ],
  4539. "authors": [
  4540. {
  4541. "name": "Ralph Khattar",
  4542. "email": "ralph.khattar@gmail.com"
  4543. }
  4544. ],
  4545. "description": "A polyfill for getallheaders.",
  4546. "support": {
  4547. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4548. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4549. },
  4550. "time": "2019-03-08T08:55:37+00:00"
  4551. },
  4552. {
  4553. "name": "ramsey/collection",
  4554. "version": "1.3.0",
  4555. "source": {
  4556. "type": "git",
  4557. "url": "https://github.com/ramsey/collection.git",
  4558. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4"
  4559. },
  4560. "dist": {
  4561. "type": "zip",
  4562. "url": "https://api.github.com/repos/ramsey/collection/zipball/ad7475d1c9e70b190ecffc58f2d989416af339b4",
  4563. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4",
  4564. "shasum": "",
  4565. "mirrors": [
  4566. {
  4567. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4568. "preferred": true
  4569. }
  4570. ]
  4571. },
  4572. "require": {
  4573. "php": "^7.4 || ^8.0",
  4574. "symfony/polyfill-php81": "^1.23"
  4575. },
  4576. "require-dev": {
  4577. "captainhook/plugin-composer": "^5.3",
  4578. "ergebnis/composer-normalize": "^2.28.3",
  4579. "fakerphp/faker": "^1.21",
  4580. "hamcrest/hamcrest-php": "^2.0",
  4581. "jangregor/phpstan-prophecy": "^1.0",
  4582. "mockery/mockery": "^1.5",
  4583. "php-parallel-lint/php-console-highlighter": "^1.0",
  4584. "php-parallel-lint/php-parallel-lint": "^1.3",
  4585. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  4586. "phpspec/prophecy-phpunit": "^2.0",
  4587. "phpstan/extension-installer": "^1.2",
  4588. "phpstan/phpstan": "^1.9",
  4589. "phpstan/phpstan-mockery": "^1.1",
  4590. "phpstan/phpstan-phpunit": "^1.3",
  4591. "phpunit/phpunit": "^9.5",
  4592. "psalm/plugin-mockery": "^1.1",
  4593. "psalm/plugin-phpunit": "^0.18.4",
  4594. "ramsey/coding-standard": "^2.0.3",
  4595. "ramsey/conventional-commits": "^1.3",
  4596. "vimeo/psalm": "^5.4"
  4597. },
  4598. "type": "library",
  4599. "extra": {
  4600. "captainhook": {
  4601. "force-install": true
  4602. },
  4603. "ramsey/conventional-commits": {
  4604. "configFile": "conventional-commits.json"
  4605. }
  4606. },
  4607. "autoload": {
  4608. "psr-4": {
  4609. "Ramsey\\Collection\\": "src/"
  4610. }
  4611. },
  4612. "notification-url": "https://packagist.org/downloads/",
  4613. "license": [
  4614. "MIT"
  4615. ],
  4616. "authors": [
  4617. {
  4618. "name": "Ben Ramsey",
  4619. "email": "ben@benramsey.com",
  4620. "homepage": "https://benramsey.com"
  4621. }
  4622. ],
  4623. "description": "A PHP library for representing and manipulating collections.",
  4624. "keywords": [
  4625. "array",
  4626. "collection",
  4627. "hash",
  4628. "map",
  4629. "queue",
  4630. "set"
  4631. ],
  4632. "support": {
  4633. "issues": "https://github.com/ramsey/collection/issues",
  4634. "source": "https://github.com/ramsey/collection/tree/1.3.0"
  4635. },
  4636. "funding": [
  4637. {
  4638. "url": "https://github.com/ramsey",
  4639. "type": "github"
  4640. },
  4641. {
  4642. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4643. "type": "tidelift"
  4644. }
  4645. ],
  4646. "time": "2022-12-27T19:12:24+00:00"
  4647. },
  4648. {
  4649. "name": "ramsey/uuid",
  4650. "version": "4.9.0",
  4651. "source": {
  4652. "type": "git",
  4653. "url": "https://github.com/ramsey/uuid.git",
  4654. "reference": "4e0e23cc785f0724a0e838279a9eb03f28b092a0"
  4655. },
  4656. "dist": {
  4657. "type": "zip",
  4658. "url": "https://api.github.com/repos/ramsey/uuid/zipball/4e0e23cc785f0724a0e838279a9eb03f28b092a0",
  4659. "reference": "4e0e23cc785f0724a0e838279a9eb03f28b092a0",
  4660. "shasum": "",
  4661. "mirrors": [
  4662. {
  4663. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4664. "preferred": true
  4665. }
  4666. ]
  4667. },
  4668. "require": {
  4669. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12 || ^0.13",
  4670. "php": "^8.0",
  4671. "ramsey/collection": "^1.2 || ^2.0"
  4672. },
  4673. "replace": {
  4674. "rhumsaa/uuid": "self.version"
  4675. },
  4676. "require-dev": {
  4677. "captainhook/captainhook": "^5.25",
  4678. "captainhook/plugin-composer": "^5.3",
  4679. "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
  4680. "ergebnis/composer-normalize": "^2.47",
  4681. "mockery/mockery": "^1.6",
  4682. "paragonie/random-lib": "^2",
  4683. "php-mock/php-mock": "^2.6",
  4684. "php-mock/php-mock-mockery": "^1.5",
  4685. "php-parallel-lint/php-parallel-lint": "^1.4.0",
  4686. "phpbench/phpbench": "^1.2.14",
  4687. "phpstan/extension-installer": "^1.4",
  4688. "phpstan/phpstan": "^2.1",
  4689. "phpstan/phpstan-mockery": "^2.0",
  4690. "phpstan/phpstan-phpunit": "^2.0",
  4691. "phpunit/phpunit": "^9.6",
  4692. "slevomat/coding-standard": "^8.18",
  4693. "squizlabs/php_codesniffer": "^3.13"
  4694. },
  4695. "suggest": {
  4696. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4697. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4698. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4699. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4700. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4701. },
  4702. "type": "library",
  4703. "extra": {
  4704. "captainhook": {
  4705. "force-install": true
  4706. }
  4707. },
  4708. "autoload": {
  4709. "files": [
  4710. "src/functions.php"
  4711. ],
  4712. "psr-4": {
  4713. "Ramsey\\Uuid\\": "src/"
  4714. }
  4715. },
  4716. "notification-url": "https://packagist.org/downloads/",
  4717. "license": [
  4718. "MIT"
  4719. ],
  4720. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4721. "keywords": [
  4722. "guid",
  4723. "identifier",
  4724. "uuid"
  4725. ],
  4726. "support": {
  4727. "issues": "https://github.com/ramsey/uuid/issues",
  4728. "source": "https://github.com/ramsey/uuid/tree/4.9.0"
  4729. },
  4730. "time": "2025-06-25T14:20:11+00:00"
  4731. },
  4732. {
  4733. "name": "ratchet/rfc6455",
  4734. "version": "v0.3.1",
  4735. "source": {
  4736. "type": "git",
  4737. "url": "https://github.com/ratchetphp/RFC6455.git",
  4738. "reference": "7c964514e93456a52a99a20fcfa0de242a43ccdb"
  4739. },
  4740. "dist": {
  4741. "type": "zip",
  4742. "url": "https://api.github.com/repos/ratchetphp/RFC6455/zipball/7c964514e93456a52a99a20fcfa0de242a43ccdb",
  4743. "reference": "7c964514e93456a52a99a20fcfa0de242a43ccdb",
  4744. "shasum": "",
  4745. "mirrors": [
  4746. {
  4747. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4748. "preferred": true
  4749. }
  4750. ]
  4751. },
  4752. "require": {
  4753. "guzzlehttp/psr7": "^2 || ^1.7",
  4754. "php": ">=5.4.2"
  4755. },
  4756. "require-dev": {
  4757. "phpunit/phpunit": "^5.7",
  4758. "react/socket": "^1.3"
  4759. },
  4760. "type": "library",
  4761. "autoload": {
  4762. "psr-4": {
  4763. "Ratchet\\RFC6455\\": "src"
  4764. }
  4765. },
  4766. "notification-url": "https://packagist.org/downloads/",
  4767. "license": [
  4768. "MIT"
  4769. ],
  4770. "authors": [
  4771. {
  4772. "name": "Chris Boden",
  4773. "email": "cboden@gmail.com",
  4774. "role": "Developer"
  4775. },
  4776. {
  4777. "name": "Matt Bonneau",
  4778. "role": "Developer"
  4779. }
  4780. ],
  4781. "description": "RFC6455 WebSocket protocol handler",
  4782. "homepage": "http://socketo.me",
  4783. "keywords": [
  4784. "WebSockets",
  4785. "rfc6455",
  4786. "websocket"
  4787. ],
  4788. "support": {
  4789. "chat": "https://gitter.im/reactphp/reactphp",
  4790. "issues": "https://github.com/ratchetphp/RFC6455/issues",
  4791. "source": "https://github.com/ratchetphp/RFC6455/tree/v0.3.1"
  4792. },
  4793. "time": "2021-12-09T23:20:49+00:00"
  4794. },
  4795. {
  4796. "name": "react/cache",
  4797. "version": "v1.2.0",
  4798. "source": {
  4799. "type": "git",
  4800. "url": "https://github.com/reactphp/cache.git",
  4801. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  4802. },
  4803. "dist": {
  4804. "type": "zip",
  4805. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  4806. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  4807. "shasum": "",
  4808. "mirrors": [
  4809. {
  4810. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4811. "preferred": true
  4812. }
  4813. ]
  4814. },
  4815. "require": {
  4816. "php": ">=5.3.0",
  4817. "react/promise": "^3.0 || ^2.0 || ^1.1"
  4818. },
  4819. "require-dev": {
  4820. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  4821. },
  4822. "type": "library",
  4823. "autoload": {
  4824. "psr-4": {
  4825. "React\\Cache\\": "src/"
  4826. }
  4827. },
  4828. "notification-url": "https://packagist.org/downloads/",
  4829. "license": [
  4830. "MIT"
  4831. ],
  4832. "authors": [
  4833. {
  4834. "name": "Christian Lück",
  4835. "email": "christian@clue.engineering",
  4836. "homepage": "https://clue.engineering/"
  4837. },
  4838. {
  4839. "name": "Cees-Jan Kiewiet",
  4840. "email": "reactphp@ceesjankiewiet.nl",
  4841. "homepage": "https://wyrihaximus.net/"
  4842. },
  4843. {
  4844. "name": "Jan Sorgalla",
  4845. "email": "jsorgalla@gmail.com",
  4846. "homepage": "https://sorgalla.com/"
  4847. },
  4848. {
  4849. "name": "Chris Boden",
  4850. "email": "cboden@gmail.com",
  4851. "homepage": "https://cboden.dev/"
  4852. }
  4853. ],
  4854. "description": "Async, Promise-based cache interface for ReactPHP",
  4855. "keywords": [
  4856. "cache",
  4857. "caching",
  4858. "promise",
  4859. "reactphp"
  4860. ],
  4861. "support": {
  4862. "issues": "https://github.com/reactphp/cache/issues",
  4863. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  4864. },
  4865. "funding": [
  4866. {
  4867. "url": "https://opencollective.com/reactphp",
  4868. "type": "open_collective"
  4869. }
  4870. ],
  4871. "time": "2022-11-30T15:59:55+00:00"
  4872. },
  4873. {
  4874. "name": "react/dns",
  4875. "version": "v1.14.0",
  4876. "source": {
  4877. "type": "git",
  4878. "url": "https://github.com/reactphp/dns.git",
  4879. "reference": "7562c05391f42701c1fccf189c8225fece1cd7c3"
  4880. },
  4881. "dist": {
  4882. "type": "zip",
  4883. "url": "https://api.github.com/repos/reactphp/dns/zipball/7562c05391f42701c1fccf189c8225fece1cd7c3",
  4884. "reference": "7562c05391f42701c1fccf189c8225fece1cd7c3",
  4885. "shasum": "",
  4886. "mirrors": [
  4887. {
  4888. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4889. "preferred": true
  4890. }
  4891. ]
  4892. },
  4893. "require": {
  4894. "php": ">=5.3.0",
  4895. "react/cache": "^1.0 || ^0.6 || ^0.5",
  4896. "react/event-loop": "^1.2",
  4897. "react/promise": "^3.2 || ^2.7 || ^1.2.1"
  4898. },
  4899. "require-dev": {
  4900. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  4901. "react/async": "^4.3 || ^3 || ^2",
  4902. "react/promise-timer": "^1.11"
  4903. },
  4904. "type": "library",
  4905. "autoload": {
  4906. "psr-4": {
  4907. "React\\Dns\\": "src/"
  4908. }
  4909. },
  4910. "notification-url": "https://packagist.org/downloads/",
  4911. "license": [
  4912. "MIT"
  4913. ],
  4914. "authors": [
  4915. {
  4916. "name": "Christian Lück",
  4917. "email": "christian@clue.engineering",
  4918. "homepage": "https://clue.engineering/"
  4919. },
  4920. {
  4921. "name": "Cees-Jan Kiewiet",
  4922. "email": "reactphp@ceesjankiewiet.nl",
  4923. "homepage": "https://wyrihaximus.net/"
  4924. },
  4925. {
  4926. "name": "Jan Sorgalla",
  4927. "email": "jsorgalla@gmail.com",
  4928. "homepage": "https://sorgalla.com/"
  4929. },
  4930. {
  4931. "name": "Chris Boden",
  4932. "email": "cboden@gmail.com",
  4933. "homepage": "https://cboden.dev/"
  4934. }
  4935. ],
  4936. "description": "Async DNS resolver for ReactPHP",
  4937. "keywords": [
  4938. "async",
  4939. "dns",
  4940. "dns-resolver",
  4941. "reactphp"
  4942. ],
  4943. "support": {
  4944. "issues": "https://github.com/reactphp/dns/issues",
  4945. "source": "https://github.com/reactphp/dns/tree/v1.14.0"
  4946. },
  4947. "funding": [
  4948. {
  4949. "url": "https://opencollective.com/reactphp",
  4950. "type": "open_collective"
  4951. }
  4952. ],
  4953. "time": "2025-11-18T19:34:28+00:00"
  4954. },
  4955. {
  4956. "name": "react/event-loop",
  4957. "version": "v1.6.0",
  4958. "source": {
  4959. "type": "git",
  4960. "url": "https://github.com/reactphp/event-loop.git",
  4961. "reference": "ba276bda6083df7e0050fd9b33f66ad7a4ac747a"
  4962. },
  4963. "dist": {
  4964. "type": "zip",
  4965. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/ba276bda6083df7e0050fd9b33f66ad7a4ac747a",
  4966. "reference": "ba276bda6083df7e0050fd9b33f66ad7a4ac747a",
  4967. "shasum": "",
  4968. "mirrors": [
  4969. {
  4970. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4971. "preferred": true
  4972. }
  4973. ]
  4974. },
  4975. "require": {
  4976. "php": ">=5.3.0"
  4977. },
  4978. "require-dev": {
  4979. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  4980. },
  4981. "suggest": {
  4982. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  4983. },
  4984. "type": "library",
  4985. "autoload": {
  4986. "psr-4": {
  4987. "React\\EventLoop\\": "src/"
  4988. }
  4989. },
  4990. "notification-url": "https://packagist.org/downloads/",
  4991. "license": [
  4992. "MIT"
  4993. ],
  4994. "authors": [
  4995. {
  4996. "name": "Christian Lück",
  4997. "email": "christian@clue.engineering",
  4998. "homepage": "https://clue.engineering/"
  4999. },
  5000. {
  5001. "name": "Cees-Jan Kiewiet",
  5002. "email": "reactphp@ceesjankiewiet.nl",
  5003. "homepage": "https://wyrihaximus.net/"
  5004. },
  5005. {
  5006. "name": "Jan Sorgalla",
  5007. "email": "jsorgalla@gmail.com",
  5008. "homepage": "https://sorgalla.com/"
  5009. },
  5010. {
  5011. "name": "Chris Boden",
  5012. "email": "cboden@gmail.com",
  5013. "homepage": "https://cboden.dev/"
  5014. }
  5015. ],
  5016. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  5017. "keywords": [
  5018. "asynchronous",
  5019. "event-loop"
  5020. ],
  5021. "support": {
  5022. "issues": "https://github.com/reactphp/event-loop/issues",
  5023. "source": "https://github.com/reactphp/event-loop/tree/v1.6.0"
  5024. },
  5025. "funding": [
  5026. {
  5027. "url": "https://opencollective.com/reactphp",
  5028. "type": "open_collective"
  5029. }
  5030. ],
  5031. "time": "2025-11-17T20:46:25+00:00"
  5032. },
  5033. {
  5034. "name": "react/promise",
  5035. "version": "v3.2.0",
  5036. "source": {
  5037. "type": "git",
  5038. "url": "https://github.com/reactphp/promise.git",
  5039. "reference": "8a164643313c71354582dc850b42b33fa12a4b63"
  5040. },
  5041. "dist": {
  5042. "type": "zip",
  5043. "url": "https://api.github.com/repos/reactphp/promise/zipball/8a164643313c71354582dc850b42b33fa12a4b63",
  5044. "reference": "8a164643313c71354582dc850b42b33fa12a4b63",
  5045. "shasum": "",
  5046. "mirrors": [
  5047. {
  5048. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5049. "preferred": true
  5050. }
  5051. ]
  5052. },
  5053. "require": {
  5054. "php": ">=7.1.0"
  5055. },
  5056. "require-dev": {
  5057. "phpstan/phpstan": "1.10.39 || 1.4.10",
  5058. "phpunit/phpunit": "^9.6 || ^7.5"
  5059. },
  5060. "type": "library",
  5061. "autoload": {
  5062. "files": [
  5063. "src/functions_include.php"
  5064. ],
  5065. "psr-4": {
  5066. "React\\Promise\\": "src/"
  5067. }
  5068. },
  5069. "notification-url": "https://packagist.org/downloads/",
  5070. "license": [
  5071. "MIT"
  5072. ],
  5073. "authors": [
  5074. {
  5075. "name": "Jan Sorgalla",
  5076. "email": "jsorgalla@gmail.com",
  5077. "homepage": "https://sorgalla.com/"
  5078. },
  5079. {
  5080. "name": "Christian Lück",
  5081. "email": "christian@clue.engineering",
  5082. "homepage": "https://clue.engineering/"
  5083. },
  5084. {
  5085. "name": "Cees-Jan Kiewiet",
  5086. "email": "reactphp@ceesjankiewiet.nl",
  5087. "homepage": "https://wyrihaximus.net/"
  5088. },
  5089. {
  5090. "name": "Chris Boden",
  5091. "email": "cboden@gmail.com",
  5092. "homepage": "https://cboden.dev/"
  5093. }
  5094. ],
  5095. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  5096. "keywords": [
  5097. "promise",
  5098. "promises"
  5099. ],
  5100. "support": {
  5101. "issues": "https://github.com/reactphp/promise/issues",
  5102. "source": "https://github.com/reactphp/promise/tree/v3.2.0"
  5103. },
  5104. "funding": [
  5105. {
  5106. "url": "https://opencollective.com/reactphp",
  5107. "type": "open_collective"
  5108. }
  5109. ],
  5110. "time": "2024-05-24T10:39:05+00:00"
  5111. },
  5112. {
  5113. "name": "react/socket",
  5114. "version": "v1.16.0",
  5115. "source": {
  5116. "type": "git",
  5117. "url": "https://github.com/reactphp/socket.git",
  5118. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1"
  5119. },
  5120. "dist": {
  5121. "type": "zip",
  5122. "url": "https://api.github.com/repos/reactphp/socket/zipball/23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  5123. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  5124. "shasum": "",
  5125. "mirrors": [
  5126. {
  5127. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5128. "preferred": true
  5129. }
  5130. ]
  5131. },
  5132. "require": {
  5133. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  5134. "php": ">=5.3.0",
  5135. "react/dns": "^1.13",
  5136. "react/event-loop": "^1.2",
  5137. "react/promise": "^3.2 || ^2.6 || ^1.2.1",
  5138. "react/stream": "^1.4"
  5139. },
  5140. "require-dev": {
  5141. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  5142. "react/async": "^4.3 || ^3.3 || ^2",
  5143. "react/promise-stream": "^1.4",
  5144. "react/promise-timer": "^1.11"
  5145. },
  5146. "type": "library",
  5147. "autoload": {
  5148. "psr-4": {
  5149. "React\\Socket\\": "src/"
  5150. }
  5151. },
  5152. "notification-url": "https://packagist.org/downloads/",
  5153. "license": [
  5154. "MIT"
  5155. ],
  5156. "authors": [
  5157. {
  5158. "name": "Christian Lück",
  5159. "email": "christian@clue.engineering",
  5160. "homepage": "https://clue.engineering/"
  5161. },
  5162. {
  5163. "name": "Cees-Jan Kiewiet",
  5164. "email": "reactphp@ceesjankiewiet.nl",
  5165. "homepage": "https://wyrihaximus.net/"
  5166. },
  5167. {
  5168. "name": "Jan Sorgalla",
  5169. "email": "jsorgalla@gmail.com",
  5170. "homepage": "https://sorgalla.com/"
  5171. },
  5172. {
  5173. "name": "Chris Boden",
  5174. "email": "cboden@gmail.com",
  5175. "homepage": "https://cboden.dev/"
  5176. }
  5177. ],
  5178. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  5179. "keywords": [
  5180. "Connection",
  5181. "Socket",
  5182. "async",
  5183. "reactphp",
  5184. "stream"
  5185. ],
  5186. "support": {
  5187. "issues": "https://github.com/reactphp/socket/issues",
  5188. "source": "https://github.com/reactphp/socket/tree/v1.16.0"
  5189. },
  5190. "funding": [
  5191. {
  5192. "url": "https://opencollective.com/reactphp",
  5193. "type": "open_collective"
  5194. }
  5195. ],
  5196. "time": "2024-07-26T10:38:09+00:00"
  5197. },
  5198. {
  5199. "name": "react/stream",
  5200. "version": "1.x-dev",
  5201. "source": {
  5202. "type": "git",
  5203. "url": "https://github.com/reactphp/stream.git",
  5204. "reference": "9decb8fa54f361877ba62c2d5e46bb4401779fb1"
  5205. },
  5206. "dist": {
  5207. "type": "zip",
  5208. "url": "https://api.github.com/repos/reactphp/stream/zipball/9decb8fa54f361877ba62c2d5e46bb4401779fb1",
  5209. "reference": "9decb8fa54f361877ba62c2d5e46bb4401779fb1",
  5210. "shasum": "",
  5211. "mirrors": [
  5212. {
  5213. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5214. "preferred": true
  5215. }
  5216. ]
  5217. },
  5218. "require": {
  5219. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  5220. "php": ">=5.3.8",
  5221. "react/event-loop": "^1.2"
  5222. },
  5223. "require-dev": {
  5224. "clue/stream-filter": "~1.2",
  5225. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  5226. },
  5227. "type": "library",
  5228. "autoload": {
  5229. "psr-4": {
  5230. "React\\Stream\\": "src/"
  5231. }
  5232. },
  5233. "notification-url": "https://packagist.org/downloads/",
  5234. "license": [
  5235. "MIT"
  5236. ],
  5237. "authors": [
  5238. {
  5239. "name": "Christian Lück",
  5240. "email": "christian@clue.engineering",
  5241. "homepage": "https://clue.engineering/"
  5242. },
  5243. {
  5244. "name": "Cees-Jan Kiewiet",
  5245. "email": "reactphp@ceesjankiewiet.nl",
  5246. "homepage": "https://wyrihaximus.net/"
  5247. },
  5248. {
  5249. "name": "Jan Sorgalla",
  5250. "email": "jsorgalla@gmail.com",
  5251. "homepage": "https://sorgalla.com/"
  5252. },
  5253. {
  5254. "name": "Chris Boden",
  5255. "email": "cboden@gmail.com",
  5256. "homepage": "https://cboden.dev/"
  5257. }
  5258. ],
  5259. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  5260. "keywords": [
  5261. "event-driven",
  5262. "io",
  5263. "non-blocking",
  5264. "pipe",
  5265. "reactphp",
  5266. "readable",
  5267. "stream",
  5268. "writable"
  5269. ],
  5270. "support": {
  5271. "issues": "https://github.com/reactphp/stream/issues",
  5272. "source": "https://github.com/reactphp/stream/tree/1.x"
  5273. },
  5274. "funding": [
  5275. {
  5276. "url": "https://opencollective.com/reactphp",
  5277. "type": "open_collective"
  5278. }
  5279. ],
  5280. "time": "2025-10-15T07:30:20+00:00"
  5281. },
  5282. {
  5283. "name": "socialiteproviders/manager",
  5284. "version": "v4.7.0",
  5285. "source": {
  5286. "type": "git",
  5287. "url": "https://github.com/SocialiteProviders/Manager.git",
  5288. "reference": "ab0691b82cec77efd90154c78f1854903455c82f"
  5289. },
  5290. "dist": {
  5291. "type": "zip",
  5292. "url": "https://api.github.com/repos/SocialiteProviders/Manager/zipball/ab0691b82cec77efd90154c78f1854903455c82f",
  5293. "reference": "ab0691b82cec77efd90154c78f1854903455c82f",
  5294. "shasum": "",
  5295. "mirrors": [
  5296. {
  5297. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5298. "preferred": true
  5299. }
  5300. ]
  5301. },
  5302. "require": {
  5303. "illuminate/support": "^8.0 || ^9.0 || ^10.0 || ^11.0",
  5304. "laravel/socialite": "^5.5",
  5305. "php": "^8.0"
  5306. },
  5307. "require-dev": {
  5308. "mockery/mockery": "^1.2",
  5309. "phpunit/phpunit": "^9.0"
  5310. },
  5311. "type": "library",
  5312. "extra": {
  5313. "laravel": {
  5314. "providers": [
  5315. "SocialiteProviders\\Manager\\ServiceProvider"
  5316. ]
  5317. }
  5318. },
  5319. "autoload": {
  5320. "psr-4": {
  5321. "SocialiteProviders\\Manager\\": "src/"
  5322. }
  5323. },
  5324. "notification-url": "https://packagist.org/downloads/",
  5325. "license": [
  5326. "MIT"
  5327. ],
  5328. "authors": [
  5329. {
  5330. "name": "Andy Wendt",
  5331. "email": "andy@awendt.com"
  5332. },
  5333. {
  5334. "name": "Anton Komarev",
  5335. "email": "a.komarev@cybercog.su"
  5336. },
  5337. {
  5338. "name": "Miguel Piedrafita",
  5339. "email": "soy@miguelpiedrafita.com"
  5340. },
  5341. {
  5342. "name": "atymic",
  5343. "email": "atymicq@gmail.com",
  5344. "homepage": "https://atymic.dev"
  5345. }
  5346. ],
  5347. "description": "Easily add new or override built-in providers in Laravel Socialite.",
  5348. "homepage": "https://socialiteproviders.com",
  5349. "keywords": [
  5350. "laravel",
  5351. "manager",
  5352. "oauth",
  5353. "providers",
  5354. "socialite"
  5355. ],
  5356. "support": {
  5357. "issues": "https://github.com/socialiteproviders/manager/issues",
  5358. "source": "https://github.com/socialiteproviders/manager"
  5359. },
  5360. "time": "2024-11-10T01:56:18+00:00"
  5361. },
  5362. {
  5363. "name": "socialiteproviders/weixin",
  5364. "version": "4.1.0",
  5365. "source": {
  5366. "type": "git",
  5367. "url": "https://github.com/SocialiteProviders/Weixin.git",
  5368. "reference": "4f5ca3ee25e1a46e0dc6bb00bd6ba77f344e340f"
  5369. },
  5370. "dist": {
  5371. "type": "zip",
  5372. "url": "https://api.github.com/repos/SocialiteProviders/Weixin/zipball/4f5ca3ee25e1a46e0dc6bb00bd6ba77f344e340f",
  5373. "reference": "4f5ca3ee25e1a46e0dc6bb00bd6ba77f344e340f",
  5374. "shasum": "",
  5375. "mirrors": [
  5376. {
  5377. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5378. "preferred": true
  5379. }
  5380. ]
  5381. },
  5382. "require": {
  5383. "ext-json": "*",
  5384. "php": "^7.2 || ^8.0",
  5385. "socialiteproviders/manager": "~4.0"
  5386. },
  5387. "type": "library",
  5388. "autoload": {
  5389. "psr-4": {
  5390. "SocialiteProviders\\Weixin\\": ""
  5391. }
  5392. },
  5393. "notification-url": "https://packagist.org/downloads/",
  5394. "license": [
  5395. "MIT"
  5396. ],
  5397. "authors": [
  5398. {
  5399. "name": "xyxu",
  5400. "email": "techxu@gmail.com"
  5401. },
  5402. {
  5403. "name": "xiami",
  5404. "email": "jhdxr@php.net"
  5405. }
  5406. ],
  5407. "description": "Weixin OAuth2 Provider for Laravel Socialite",
  5408. "support": {
  5409. "source": "https://github.com/SocialiteProviders/Weixin/tree/4.1.0"
  5410. },
  5411. "time": "2020-12-01T23:10:59+00:00"
  5412. },
  5413. {
  5414. "name": "swiftmailer/swiftmailer",
  5415. "version": "v6.3.0",
  5416. "source": {
  5417. "type": "git",
  5418. "url": "https://github.com/swiftmailer/swiftmailer.git",
  5419. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  5420. },
  5421. "dist": {
  5422. "type": "zip",
  5423. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  5424. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  5425. "shasum": "",
  5426. "mirrors": [
  5427. {
  5428. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5429. "preferred": true
  5430. }
  5431. ]
  5432. },
  5433. "require": {
  5434. "egulias/email-validator": "^2.0|^3.1",
  5435. "php": ">=7.0.0",
  5436. "symfony/polyfill-iconv": "^1.0",
  5437. "symfony/polyfill-intl-idn": "^1.10",
  5438. "symfony/polyfill-mbstring": "^1.0"
  5439. },
  5440. "require-dev": {
  5441. "mockery/mockery": "^1.0",
  5442. "symfony/phpunit-bridge": "^4.4|^5.4"
  5443. },
  5444. "suggest": {
  5445. "ext-intl": "Needed to support internationalized email addresses"
  5446. },
  5447. "type": "library",
  5448. "extra": {
  5449. "branch-alias": {
  5450. "dev-master": "6.2-dev"
  5451. }
  5452. },
  5453. "autoload": {
  5454. "files": [
  5455. "lib/swift_required.php"
  5456. ]
  5457. },
  5458. "notification-url": "https://packagist.org/downloads/",
  5459. "license": [
  5460. "MIT"
  5461. ],
  5462. "authors": [
  5463. {
  5464. "name": "Chris Corbyn"
  5465. },
  5466. {
  5467. "name": "Fabien Potencier",
  5468. "email": "fabien@symfony.com"
  5469. }
  5470. ],
  5471. "description": "Swiftmailer, free feature-rich PHP mailer",
  5472. "homepage": "https://swiftmailer.symfony.com",
  5473. "keywords": [
  5474. "email",
  5475. "mail",
  5476. "mailer"
  5477. ],
  5478. "support": {
  5479. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  5480. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  5481. },
  5482. "funding": [
  5483. {
  5484. "url": "https://github.com/fabpot",
  5485. "type": "github"
  5486. },
  5487. {
  5488. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  5489. "type": "tidelift"
  5490. }
  5491. ],
  5492. "abandoned": "symfony/mailer",
  5493. "time": "2021-10-18T15:26:12+00:00"
  5494. },
  5495. {
  5496. "name": "symfony/console",
  5497. "version": "v5.4.47",
  5498. "source": {
  5499. "type": "git",
  5500. "url": "https://github.com/symfony/console.git",
  5501. "reference": "c4ba980ca61a9eb18ee6bcc73f28e475852bb1ed"
  5502. },
  5503. "dist": {
  5504. "type": "zip",
  5505. "url": "https://api.github.com/repos/symfony/console/zipball/c4ba980ca61a9eb18ee6bcc73f28e475852bb1ed",
  5506. "reference": "c4ba980ca61a9eb18ee6bcc73f28e475852bb1ed",
  5507. "shasum": "",
  5508. "mirrors": [
  5509. {
  5510. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5511. "preferred": true
  5512. }
  5513. ]
  5514. },
  5515. "require": {
  5516. "php": ">=7.2.5",
  5517. "symfony/deprecation-contracts": "^2.1|^3",
  5518. "symfony/polyfill-mbstring": "~1.0",
  5519. "symfony/polyfill-php73": "^1.9",
  5520. "symfony/polyfill-php80": "^1.16",
  5521. "symfony/service-contracts": "^1.1|^2|^3",
  5522. "symfony/string": "^5.1|^6.0"
  5523. },
  5524. "conflict": {
  5525. "psr/log": ">=3",
  5526. "symfony/dependency-injection": "<4.4",
  5527. "symfony/dotenv": "<5.1",
  5528. "symfony/event-dispatcher": "<4.4",
  5529. "symfony/lock": "<4.4",
  5530. "symfony/process": "<4.4"
  5531. },
  5532. "provide": {
  5533. "psr/log-implementation": "1.0|2.0"
  5534. },
  5535. "require-dev": {
  5536. "psr/log": "^1|^2",
  5537. "symfony/config": "^4.4|^5.0|^6.0",
  5538. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5539. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  5540. "symfony/lock": "^4.4|^5.0|^6.0",
  5541. "symfony/process": "^4.4|^5.0|^6.0",
  5542. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  5543. },
  5544. "suggest": {
  5545. "psr/log": "For using the console logger",
  5546. "symfony/event-dispatcher": "",
  5547. "symfony/lock": "",
  5548. "symfony/process": ""
  5549. },
  5550. "type": "library",
  5551. "autoload": {
  5552. "psr-4": {
  5553. "Symfony\\Component\\Console\\": ""
  5554. },
  5555. "exclude-from-classmap": [
  5556. "/Tests/"
  5557. ]
  5558. },
  5559. "notification-url": "https://packagist.org/downloads/",
  5560. "license": [
  5561. "MIT"
  5562. ],
  5563. "authors": [
  5564. {
  5565. "name": "Fabien Potencier",
  5566. "email": "fabien@symfony.com"
  5567. },
  5568. {
  5569. "name": "Symfony Community",
  5570. "homepage": "https://symfony.com/contributors"
  5571. }
  5572. ],
  5573. "description": "Eases the creation of beautiful and testable command line interfaces",
  5574. "homepage": "https://symfony.com",
  5575. "keywords": [
  5576. "cli",
  5577. "command-line",
  5578. "console",
  5579. "terminal"
  5580. ],
  5581. "support": {
  5582. "source": "https://github.com/symfony/console/tree/v5.4.47"
  5583. },
  5584. "funding": [
  5585. {
  5586. "url": "https://symfony.com/sponsor",
  5587. "type": "custom"
  5588. },
  5589. {
  5590. "url": "https://github.com/fabpot",
  5591. "type": "github"
  5592. },
  5593. {
  5594. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5595. "type": "tidelift"
  5596. }
  5597. ],
  5598. "time": "2024-11-06T11:30:55+00:00"
  5599. },
  5600. {
  5601. "name": "symfony/css-selector",
  5602. "version": "v6.0.19",
  5603. "source": {
  5604. "type": "git",
  5605. "url": "https://github.com/symfony/css-selector.git",
  5606. "reference": "f1d00bddb83a4cb2138564b2150001cb6ce272b1"
  5607. },
  5608. "dist": {
  5609. "type": "zip",
  5610. "url": "https://api.github.com/repos/symfony/css-selector/zipball/f1d00bddb83a4cb2138564b2150001cb6ce272b1",
  5611. "reference": "f1d00bddb83a4cb2138564b2150001cb6ce272b1",
  5612. "shasum": "",
  5613. "mirrors": [
  5614. {
  5615. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5616. "preferred": true
  5617. }
  5618. ]
  5619. },
  5620. "require": {
  5621. "php": ">=8.0.2"
  5622. },
  5623. "type": "library",
  5624. "autoload": {
  5625. "psr-4": {
  5626. "Symfony\\Component\\CssSelector\\": ""
  5627. },
  5628. "exclude-from-classmap": [
  5629. "/Tests/"
  5630. ]
  5631. },
  5632. "notification-url": "https://packagist.org/downloads/",
  5633. "license": [
  5634. "MIT"
  5635. ],
  5636. "authors": [
  5637. {
  5638. "name": "Fabien Potencier",
  5639. "email": "fabien@symfony.com"
  5640. },
  5641. {
  5642. "name": "Jean-François Simon",
  5643. "email": "jeanfrancois.simon@sensiolabs.com"
  5644. },
  5645. {
  5646. "name": "Symfony Community",
  5647. "homepage": "https://symfony.com/contributors"
  5648. }
  5649. ],
  5650. "description": "Converts CSS selectors to XPath expressions",
  5651. "homepage": "https://symfony.com",
  5652. "support": {
  5653. "source": "https://github.com/symfony/css-selector/tree/v6.0.19"
  5654. },
  5655. "funding": [
  5656. {
  5657. "url": "https://symfony.com/sponsor",
  5658. "type": "custom"
  5659. },
  5660. {
  5661. "url": "https://github.com/fabpot",
  5662. "type": "github"
  5663. },
  5664. {
  5665. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5666. "type": "tidelift"
  5667. }
  5668. ],
  5669. "time": "2023-01-01T08:36:10+00:00"
  5670. },
  5671. {
  5672. "name": "symfony/deprecation-contracts",
  5673. "version": "v3.0.2",
  5674. "source": {
  5675. "type": "git",
  5676. "url": "https://github.com/symfony/deprecation-contracts.git",
  5677. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c"
  5678. },
  5679. "dist": {
  5680. "type": "zip",
  5681. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  5682. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  5683. "shasum": "",
  5684. "mirrors": [
  5685. {
  5686. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5687. "preferred": true
  5688. }
  5689. ]
  5690. },
  5691. "require": {
  5692. "php": ">=8.0.2"
  5693. },
  5694. "type": "library",
  5695. "extra": {
  5696. "thanks": {
  5697. "url": "https://github.com/symfony/contracts",
  5698. "name": "symfony/contracts"
  5699. },
  5700. "branch-alias": {
  5701. "dev-main": "3.0-dev"
  5702. }
  5703. },
  5704. "autoload": {
  5705. "files": [
  5706. "function.php"
  5707. ]
  5708. },
  5709. "notification-url": "https://packagist.org/downloads/",
  5710. "license": [
  5711. "MIT"
  5712. ],
  5713. "authors": [
  5714. {
  5715. "name": "Nicolas Grekas",
  5716. "email": "p@tchwork.com"
  5717. },
  5718. {
  5719. "name": "Symfony Community",
  5720. "homepage": "https://symfony.com/contributors"
  5721. }
  5722. ],
  5723. "description": "A generic function and convention to trigger deprecation notices",
  5724. "homepage": "https://symfony.com",
  5725. "support": {
  5726. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.0.2"
  5727. },
  5728. "funding": [
  5729. {
  5730. "url": "https://symfony.com/sponsor",
  5731. "type": "custom"
  5732. },
  5733. {
  5734. "url": "https://github.com/fabpot",
  5735. "type": "github"
  5736. },
  5737. {
  5738. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5739. "type": "tidelift"
  5740. }
  5741. ],
  5742. "time": "2022-01-02T09:55:41+00:00"
  5743. },
  5744. {
  5745. "name": "symfony/error-handler",
  5746. "version": "v5.4.46",
  5747. "source": {
  5748. "type": "git",
  5749. "url": "https://github.com/symfony/error-handler.git",
  5750. "reference": "d19ede7a2cafb386be9486c580649d0f9e3d0363"
  5751. },
  5752. "dist": {
  5753. "type": "zip",
  5754. "url": "https://api.github.com/repos/symfony/error-handler/zipball/d19ede7a2cafb386be9486c580649d0f9e3d0363",
  5755. "reference": "d19ede7a2cafb386be9486c580649d0f9e3d0363",
  5756. "shasum": "",
  5757. "mirrors": [
  5758. {
  5759. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5760. "preferred": true
  5761. }
  5762. ]
  5763. },
  5764. "require": {
  5765. "php": ">=7.2.5",
  5766. "psr/log": "^1|^2|^3",
  5767. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  5768. },
  5769. "require-dev": {
  5770. "symfony/deprecation-contracts": "^2.1|^3",
  5771. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  5772. "symfony/serializer": "^4.4|^5.0|^6.0"
  5773. },
  5774. "bin": [
  5775. "Resources/bin/patch-type-declarations"
  5776. ],
  5777. "type": "library",
  5778. "autoload": {
  5779. "psr-4": {
  5780. "Symfony\\Component\\ErrorHandler\\": ""
  5781. },
  5782. "exclude-from-classmap": [
  5783. "/Tests/"
  5784. ]
  5785. },
  5786. "notification-url": "https://packagist.org/downloads/",
  5787. "license": [
  5788. "MIT"
  5789. ],
  5790. "authors": [
  5791. {
  5792. "name": "Fabien Potencier",
  5793. "email": "fabien@symfony.com"
  5794. },
  5795. {
  5796. "name": "Symfony Community",
  5797. "homepage": "https://symfony.com/contributors"
  5798. }
  5799. ],
  5800. "description": "Provides tools to manage errors and ease debugging PHP code",
  5801. "homepage": "https://symfony.com",
  5802. "support": {
  5803. "source": "https://github.com/symfony/error-handler/tree/v5.4.46"
  5804. },
  5805. "funding": [
  5806. {
  5807. "url": "https://symfony.com/sponsor",
  5808. "type": "custom"
  5809. },
  5810. {
  5811. "url": "https://github.com/fabpot",
  5812. "type": "github"
  5813. },
  5814. {
  5815. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5816. "type": "tidelift"
  5817. }
  5818. ],
  5819. "time": "2024-11-05T14:17:06+00:00"
  5820. },
  5821. {
  5822. "name": "symfony/event-dispatcher",
  5823. "version": "v6.0.19",
  5824. "source": {
  5825. "type": "git",
  5826. "url": "https://github.com/symfony/event-dispatcher.git",
  5827. "reference": "2eaf8e63bc5b8cefabd4a800157f0d0c094f677a"
  5828. },
  5829. "dist": {
  5830. "type": "zip",
  5831. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/2eaf8e63bc5b8cefabd4a800157f0d0c094f677a",
  5832. "reference": "2eaf8e63bc5b8cefabd4a800157f0d0c094f677a",
  5833. "shasum": "",
  5834. "mirrors": [
  5835. {
  5836. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5837. "preferred": true
  5838. }
  5839. ]
  5840. },
  5841. "require": {
  5842. "php": ">=8.0.2",
  5843. "symfony/event-dispatcher-contracts": "^2|^3"
  5844. },
  5845. "conflict": {
  5846. "symfony/dependency-injection": "<5.4"
  5847. },
  5848. "provide": {
  5849. "psr/event-dispatcher-implementation": "1.0",
  5850. "symfony/event-dispatcher-implementation": "2.0|3.0"
  5851. },
  5852. "require-dev": {
  5853. "psr/log": "^1|^2|^3",
  5854. "symfony/config": "^5.4|^6.0",
  5855. "symfony/dependency-injection": "^5.4|^6.0",
  5856. "symfony/error-handler": "^5.4|^6.0",
  5857. "symfony/expression-language": "^5.4|^6.0",
  5858. "symfony/http-foundation": "^5.4|^6.0",
  5859. "symfony/service-contracts": "^1.1|^2|^3",
  5860. "symfony/stopwatch": "^5.4|^6.0"
  5861. },
  5862. "suggest": {
  5863. "symfony/dependency-injection": "",
  5864. "symfony/http-kernel": ""
  5865. },
  5866. "type": "library",
  5867. "autoload": {
  5868. "psr-4": {
  5869. "Symfony\\Component\\EventDispatcher\\": ""
  5870. },
  5871. "exclude-from-classmap": [
  5872. "/Tests/"
  5873. ]
  5874. },
  5875. "notification-url": "https://packagist.org/downloads/",
  5876. "license": [
  5877. "MIT"
  5878. ],
  5879. "authors": [
  5880. {
  5881. "name": "Fabien Potencier",
  5882. "email": "fabien@symfony.com"
  5883. },
  5884. {
  5885. "name": "Symfony Community",
  5886. "homepage": "https://symfony.com/contributors"
  5887. }
  5888. ],
  5889. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5890. "homepage": "https://symfony.com",
  5891. "support": {
  5892. "source": "https://github.com/symfony/event-dispatcher/tree/v6.0.19"
  5893. },
  5894. "funding": [
  5895. {
  5896. "url": "https://symfony.com/sponsor",
  5897. "type": "custom"
  5898. },
  5899. {
  5900. "url": "https://github.com/fabpot",
  5901. "type": "github"
  5902. },
  5903. {
  5904. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5905. "type": "tidelift"
  5906. }
  5907. ],
  5908. "time": "2023-01-01T08:36:10+00:00"
  5909. },
  5910. {
  5911. "name": "symfony/event-dispatcher-contracts",
  5912. "version": "v3.0.2",
  5913. "source": {
  5914. "type": "git",
  5915. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5916. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051"
  5917. },
  5918. "dist": {
  5919. "type": "zip",
  5920. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7bc61cc2db649b4637d331240c5346dcc7708051",
  5921. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051",
  5922. "shasum": "",
  5923. "mirrors": [
  5924. {
  5925. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5926. "preferred": true
  5927. }
  5928. ]
  5929. },
  5930. "require": {
  5931. "php": ">=8.0.2",
  5932. "psr/event-dispatcher": "^1"
  5933. },
  5934. "suggest": {
  5935. "symfony/event-dispatcher-implementation": ""
  5936. },
  5937. "type": "library",
  5938. "extra": {
  5939. "thanks": {
  5940. "url": "https://github.com/symfony/contracts",
  5941. "name": "symfony/contracts"
  5942. },
  5943. "branch-alias": {
  5944. "dev-main": "3.0-dev"
  5945. }
  5946. },
  5947. "autoload": {
  5948. "psr-4": {
  5949. "Symfony\\Contracts\\EventDispatcher\\": ""
  5950. }
  5951. },
  5952. "notification-url": "https://packagist.org/downloads/",
  5953. "license": [
  5954. "MIT"
  5955. ],
  5956. "authors": [
  5957. {
  5958. "name": "Nicolas Grekas",
  5959. "email": "p@tchwork.com"
  5960. },
  5961. {
  5962. "name": "Symfony Community",
  5963. "homepage": "https://symfony.com/contributors"
  5964. }
  5965. ],
  5966. "description": "Generic abstractions related to dispatching event",
  5967. "homepage": "https://symfony.com",
  5968. "keywords": [
  5969. "abstractions",
  5970. "contracts",
  5971. "decoupling",
  5972. "interfaces",
  5973. "interoperability",
  5974. "standards"
  5975. ],
  5976. "support": {
  5977. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.0.2"
  5978. },
  5979. "funding": [
  5980. {
  5981. "url": "https://symfony.com/sponsor",
  5982. "type": "custom"
  5983. },
  5984. {
  5985. "url": "https://github.com/fabpot",
  5986. "type": "github"
  5987. },
  5988. {
  5989. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5990. "type": "tidelift"
  5991. }
  5992. ],
  5993. "time": "2022-01-02T09:55:41+00:00"
  5994. },
  5995. {
  5996. "name": "symfony/finder",
  5997. "version": "v5.4.45",
  5998. "source": {
  5999. "type": "git",
  6000. "url": "https://github.com/symfony/finder.git",
  6001. "reference": "63741784cd7b9967975eec610b256eed3ede022b"
  6002. },
  6003. "dist": {
  6004. "type": "zip",
  6005. "url": "https://api.github.com/repos/symfony/finder/zipball/63741784cd7b9967975eec610b256eed3ede022b",
  6006. "reference": "63741784cd7b9967975eec610b256eed3ede022b",
  6007. "shasum": "",
  6008. "mirrors": [
  6009. {
  6010. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6011. "preferred": true
  6012. }
  6013. ]
  6014. },
  6015. "require": {
  6016. "php": ">=7.2.5",
  6017. "symfony/deprecation-contracts": "^2.1|^3",
  6018. "symfony/polyfill-php80": "^1.16"
  6019. },
  6020. "type": "library",
  6021. "autoload": {
  6022. "psr-4": {
  6023. "Symfony\\Component\\Finder\\": ""
  6024. },
  6025. "exclude-from-classmap": [
  6026. "/Tests/"
  6027. ]
  6028. },
  6029. "notification-url": "https://packagist.org/downloads/",
  6030. "license": [
  6031. "MIT"
  6032. ],
  6033. "authors": [
  6034. {
  6035. "name": "Fabien Potencier",
  6036. "email": "fabien@symfony.com"
  6037. },
  6038. {
  6039. "name": "Symfony Community",
  6040. "homepage": "https://symfony.com/contributors"
  6041. }
  6042. ],
  6043. "description": "Finds files and directories via an intuitive fluent interface",
  6044. "homepage": "https://symfony.com",
  6045. "support": {
  6046. "source": "https://github.com/symfony/finder/tree/v5.4.45"
  6047. },
  6048. "funding": [
  6049. {
  6050. "url": "https://symfony.com/sponsor",
  6051. "type": "custom"
  6052. },
  6053. {
  6054. "url": "https://github.com/fabpot",
  6055. "type": "github"
  6056. },
  6057. {
  6058. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6059. "type": "tidelift"
  6060. }
  6061. ],
  6062. "time": "2024-09-28T13:32:08+00:00"
  6063. },
  6064. {
  6065. "name": "symfony/http-foundation",
  6066. "version": "v5.4.48",
  6067. "source": {
  6068. "type": "git",
  6069. "url": "https://github.com/symfony/http-foundation.git",
  6070. "reference": "3f38b8af283b830e1363acd79e5bc3412d055341"
  6071. },
  6072. "dist": {
  6073. "type": "zip",
  6074. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/3f38b8af283b830e1363acd79e5bc3412d055341",
  6075. "reference": "3f38b8af283b830e1363acd79e5bc3412d055341",
  6076. "shasum": "",
  6077. "mirrors": [
  6078. {
  6079. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6080. "preferred": true
  6081. }
  6082. ]
  6083. },
  6084. "require": {
  6085. "php": ">=7.2.5",
  6086. "symfony/deprecation-contracts": "^2.1|^3",
  6087. "symfony/polyfill-mbstring": "~1.1",
  6088. "symfony/polyfill-php80": "^1.16"
  6089. },
  6090. "require-dev": {
  6091. "predis/predis": "^1.0|^2.0",
  6092. "symfony/cache": "^4.4|^5.0|^6.0",
  6093. "symfony/dependency-injection": "^5.4|^6.0",
  6094. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6095. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  6096. "symfony/mime": "^4.4|^5.0|^6.0",
  6097. "symfony/rate-limiter": "^5.2|^6.0"
  6098. },
  6099. "suggest": {
  6100. "symfony/mime": "To use the file extension guesser"
  6101. },
  6102. "type": "library",
  6103. "autoload": {
  6104. "psr-4": {
  6105. "Symfony\\Component\\HttpFoundation\\": ""
  6106. },
  6107. "exclude-from-classmap": [
  6108. "/Tests/"
  6109. ]
  6110. },
  6111. "notification-url": "https://packagist.org/downloads/",
  6112. "license": [
  6113. "MIT"
  6114. ],
  6115. "authors": [
  6116. {
  6117. "name": "Fabien Potencier",
  6118. "email": "fabien@symfony.com"
  6119. },
  6120. {
  6121. "name": "Symfony Community",
  6122. "homepage": "https://symfony.com/contributors"
  6123. }
  6124. ],
  6125. "description": "Defines an object-oriented layer for the HTTP specification",
  6126. "homepage": "https://symfony.com",
  6127. "support": {
  6128. "source": "https://github.com/symfony/http-foundation/tree/v5.4.48"
  6129. },
  6130. "funding": [
  6131. {
  6132. "url": "https://symfony.com/sponsor",
  6133. "type": "custom"
  6134. },
  6135. {
  6136. "url": "https://github.com/fabpot",
  6137. "type": "github"
  6138. },
  6139. {
  6140. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6141. "type": "tidelift"
  6142. }
  6143. ],
  6144. "time": "2024-11-13T18:58:02+00:00"
  6145. },
  6146. {
  6147. "name": "symfony/http-kernel",
  6148. "version": "v5.4.48",
  6149. "source": {
  6150. "type": "git",
  6151. "url": "https://github.com/symfony/http-kernel.git",
  6152. "reference": "c2dbfc92b851404567160d1ecf3fb7d9b7bde9b0"
  6153. },
  6154. "dist": {
  6155. "type": "zip",
  6156. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/c2dbfc92b851404567160d1ecf3fb7d9b7bde9b0",
  6157. "reference": "c2dbfc92b851404567160d1ecf3fb7d9b7bde9b0",
  6158. "shasum": "",
  6159. "mirrors": [
  6160. {
  6161. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6162. "preferred": true
  6163. }
  6164. ]
  6165. },
  6166. "require": {
  6167. "php": ">=7.2.5",
  6168. "psr/log": "^1|^2",
  6169. "symfony/deprecation-contracts": "^2.1|^3",
  6170. "symfony/error-handler": "^4.4|^5.0|^6.0",
  6171. "symfony/event-dispatcher": "^5.0|^6.0",
  6172. "symfony/http-foundation": "^5.4.21|^6.2.7",
  6173. "symfony/polyfill-ctype": "^1.8",
  6174. "symfony/polyfill-php73": "^1.9",
  6175. "symfony/polyfill-php80": "^1.16"
  6176. },
  6177. "conflict": {
  6178. "symfony/browser-kit": "<5.4",
  6179. "symfony/cache": "<5.0",
  6180. "symfony/config": "<5.0",
  6181. "symfony/console": "<4.4",
  6182. "symfony/dependency-injection": "<5.3",
  6183. "symfony/doctrine-bridge": "<5.0",
  6184. "symfony/form": "<5.0",
  6185. "symfony/http-client": "<5.0",
  6186. "symfony/mailer": "<5.0",
  6187. "symfony/messenger": "<5.0",
  6188. "symfony/translation": "<5.0",
  6189. "symfony/twig-bridge": "<5.0",
  6190. "symfony/validator": "<5.0",
  6191. "twig/twig": "<2.13"
  6192. },
  6193. "provide": {
  6194. "psr/log-implementation": "1.0|2.0"
  6195. },
  6196. "require-dev": {
  6197. "psr/cache": "^1.0|^2.0|^3.0",
  6198. "symfony/browser-kit": "^5.4|^6.0",
  6199. "symfony/config": "^5.0|^6.0",
  6200. "symfony/console": "^4.4|^5.0|^6.0",
  6201. "symfony/css-selector": "^4.4|^5.0|^6.0",
  6202. "symfony/dependency-injection": "^5.3|^6.0",
  6203. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  6204. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6205. "symfony/finder": "^4.4|^5.0|^6.0",
  6206. "symfony/http-client-contracts": "^1.1|^2|^3",
  6207. "symfony/process": "^4.4|^5.0|^6.0",
  6208. "symfony/routing": "^4.4|^5.0|^6.0",
  6209. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  6210. "symfony/translation": "^4.4|^5.0|^6.0",
  6211. "symfony/translation-contracts": "^1.1|^2|^3",
  6212. "symfony/var-dumper": "^4.4.31|^5.4",
  6213. "twig/twig": "^2.13|^3.0.4"
  6214. },
  6215. "suggest": {
  6216. "symfony/browser-kit": "",
  6217. "symfony/config": "",
  6218. "symfony/console": "",
  6219. "symfony/dependency-injection": ""
  6220. },
  6221. "type": "library",
  6222. "autoload": {
  6223. "psr-4": {
  6224. "Symfony\\Component\\HttpKernel\\": ""
  6225. },
  6226. "exclude-from-classmap": [
  6227. "/Tests/"
  6228. ]
  6229. },
  6230. "notification-url": "https://packagist.org/downloads/",
  6231. "license": [
  6232. "MIT"
  6233. ],
  6234. "authors": [
  6235. {
  6236. "name": "Fabien Potencier",
  6237. "email": "fabien@symfony.com"
  6238. },
  6239. {
  6240. "name": "Symfony Community",
  6241. "homepage": "https://symfony.com/contributors"
  6242. }
  6243. ],
  6244. "description": "Provides a structured process for converting a Request into a Response",
  6245. "homepage": "https://symfony.com",
  6246. "support": {
  6247. "source": "https://github.com/symfony/http-kernel/tree/v5.4.48"
  6248. },
  6249. "funding": [
  6250. {
  6251. "url": "https://symfony.com/sponsor",
  6252. "type": "custom"
  6253. },
  6254. {
  6255. "url": "https://github.com/fabpot",
  6256. "type": "github"
  6257. },
  6258. {
  6259. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6260. "type": "tidelift"
  6261. }
  6262. ],
  6263. "time": "2024-11-27T12:43:17+00:00"
  6264. },
  6265. {
  6266. "name": "symfony/mime",
  6267. "version": "v5.4.45",
  6268. "source": {
  6269. "type": "git",
  6270. "url": "https://github.com/symfony/mime.git",
  6271. "reference": "8c1b9b3e5b52981551fc6044539af1d974e39064"
  6272. },
  6273. "dist": {
  6274. "type": "zip",
  6275. "url": "https://api.github.com/repos/symfony/mime/zipball/8c1b9b3e5b52981551fc6044539af1d974e39064",
  6276. "reference": "8c1b9b3e5b52981551fc6044539af1d974e39064",
  6277. "shasum": "",
  6278. "mirrors": [
  6279. {
  6280. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6281. "preferred": true
  6282. }
  6283. ]
  6284. },
  6285. "require": {
  6286. "php": ">=7.2.5",
  6287. "symfony/deprecation-contracts": "^2.1|^3",
  6288. "symfony/polyfill-intl-idn": "^1.10",
  6289. "symfony/polyfill-mbstring": "^1.0",
  6290. "symfony/polyfill-php80": "^1.16"
  6291. },
  6292. "conflict": {
  6293. "egulias/email-validator": "~3.0.0",
  6294. "phpdocumentor/reflection-docblock": "<3.2.2",
  6295. "phpdocumentor/type-resolver": "<1.4.0",
  6296. "symfony/mailer": "<4.4",
  6297. "symfony/serializer": "<5.4.35|>=6,<6.3.12|>=6.4,<6.4.3"
  6298. },
  6299. "require-dev": {
  6300. "egulias/email-validator": "^2.1.10|^3.1|^4",
  6301. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6302. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6303. "symfony/process": "^5.4|^6.4",
  6304. "symfony/property-access": "^4.4|^5.1|^6.0",
  6305. "symfony/property-info": "^4.4|^5.1|^6.0",
  6306. "symfony/serializer": "^5.4.35|~6.3.12|^6.4.3"
  6307. },
  6308. "type": "library",
  6309. "autoload": {
  6310. "psr-4": {
  6311. "Symfony\\Component\\Mime\\": ""
  6312. },
  6313. "exclude-from-classmap": [
  6314. "/Tests/"
  6315. ]
  6316. },
  6317. "notification-url": "https://packagist.org/downloads/",
  6318. "license": [
  6319. "MIT"
  6320. ],
  6321. "authors": [
  6322. {
  6323. "name": "Fabien Potencier",
  6324. "email": "fabien@symfony.com"
  6325. },
  6326. {
  6327. "name": "Symfony Community",
  6328. "homepage": "https://symfony.com/contributors"
  6329. }
  6330. ],
  6331. "description": "Allows manipulating MIME messages",
  6332. "homepage": "https://symfony.com",
  6333. "keywords": [
  6334. "mime",
  6335. "mime-type"
  6336. ],
  6337. "support": {
  6338. "source": "https://github.com/symfony/mime/tree/v5.4.45"
  6339. },
  6340. "funding": [
  6341. {
  6342. "url": "https://symfony.com/sponsor",
  6343. "type": "custom"
  6344. },
  6345. {
  6346. "url": "https://github.com/fabpot",
  6347. "type": "github"
  6348. },
  6349. {
  6350. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6351. "type": "tidelift"
  6352. }
  6353. ],
  6354. "time": "2024-10-23T20:18:32+00:00"
  6355. },
  6356. {
  6357. "name": "symfony/polyfill-ctype",
  6358. "version": "v1.32.0",
  6359. "source": {
  6360. "type": "git",
  6361. "url": "https://github.com/symfony/polyfill-ctype.git",
  6362. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  6363. },
  6364. "dist": {
  6365. "type": "zip",
  6366. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  6367. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  6368. "shasum": "",
  6369. "mirrors": [
  6370. {
  6371. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6372. "preferred": true
  6373. }
  6374. ]
  6375. },
  6376. "require": {
  6377. "php": ">=7.2"
  6378. },
  6379. "provide": {
  6380. "ext-ctype": "*"
  6381. },
  6382. "suggest": {
  6383. "ext-ctype": "For best performance"
  6384. },
  6385. "type": "library",
  6386. "extra": {
  6387. "thanks": {
  6388. "url": "https://github.com/symfony/polyfill",
  6389. "name": "symfony/polyfill"
  6390. }
  6391. },
  6392. "autoload": {
  6393. "files": [
  6394. "bootstrap.php"
  6395. ],
  6396. "psr-4": {
  6397. "Symfony\\Polyfill\\Ctype\\": ""
  6398. }
  6399. },
  6400. "notification-url": "https://packagist.org/downloads/",
  6401. "license": [
  6402. "MIT"
  6403. ],
  6404. "authors": [
  6405. {
  6406. "name": "Gert de Pagter",
  6407. "email": "BackEndTea@gmail.com"
  6408. },
  6409. {
  6410. "name": "Symfony Community",
  6411. "homepage": "https://symfony.com/contributors"
  6412. }
  6413. ],
  6414. "description": "Symfony polyfill for ctype functions",
  6415. "homepage": "https://symfony.com",
  6416. "keywords": [
  6417. "compatibility",
  6418. "ctype",
  6419. "polyfill",
  6420. "portable"
  6421. ],
  6422. "support": {
  6423. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.32.0"
  6424. },
  6425. "funding": [
  6426. {
  6427. "url": "https://symfony.com/sponsor",
  6428. "type": "custom"
  6429. },
  6430. {
  6431. "url": "https://github.com/fabpot",
  6432. "type": "github"
  6433. },
  6434. {
  6435. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6436. "type": "tidelift"
  6437. }
  6438. ],
  6439. "time": "2024-09-09T11:45:10+00:00"
  6440. },
  6441. {
  6442. "name": "symfony/polyfill-iconv",
  6443. "version": "v1.32.0",
  6444. "source": {
  6445. "type": "git",
  6446. "url": "https://github.com/symfony/polyfill-iconv.git",
  6447. "reference": "5f3b930437ae03ae5dff61269024d8ea1b3774aa"
  6448. },
  6449. "dist": {
  6450. "type": "zip",
  6451. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/5f3b930437ae03ae5dff61269024d8ea1b3774aa",
  6452. "reference": "5f3b930437ae03ae5dff61269024d8ea1b3774aa",
  6453. "shasum": "",
  6454. "mirrors": [
  6455. {
  6456. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6457. "preferred": true
  6458. }
  6459. ]
  6460. },
  6461. "require": {
  6462. "php": ">=7.2"
  6463. },
  6464. "provide": {
  6465. "ext-iconv": "*"
  6466. },
  6467. "suggest": {
  6468. "ext-iconv": "For best performance"
  6469. },
  6470. "type": "library",
  6471. "extra": {
  6472. "thanks": {
  6473. "url": "https://github.com/symfony/polyfill",
  6474. "name": "symfony/polyfill"
  6475. }
  6476. },
  6477. "autoload": {
  6478. "files": [
  6479. "bootstrap.php"
  6480. ],
  6481. "psr-4": {
  6482. "Symfony\\Polyfill\\Iconv\\": ""
  6483. }
  6484. },
  6485. "notification-url": "https://packagist.org/downloads/",
  6486. "license": [
  6487. "MIT"
  6488. ],
  6489. "authors": [
  6490. {
  6491. "name": "Nicolas Grekas",
  6492. "email": "p@tchwork.com"
  6493. },
  6494. {
  6495. "name": "Symfony Community",
  6496. "homepage": "https://symfony.com/contributors"
  6497. }
  6498. ],
  6499. "description": "Symfony polyfill for the Iconv extension",
  6500. "homepage": "https://symfony.com",
  6501. "keywords": [
  6502. "compatibility",
  6503. "iconv",
  6504. "polyfill",
  6505. "portable",
  6506. "shim"
  6507. ],
  6508. "support": {
  6509. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.32.0"
  6510. },
  6511. "funding": [
  6512. {
  6513. "url": "https://symfony.com/sponsor",
  6514. "type": "custom"
  6515. },
  6516. {
  6517. "url": "https://github.com/fabpot",
  6518. "type": "github"
  6519. },
  6520. {
  6521. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6522. "type": "tidelift"
  6523. }
  6524. ],
  6525. "time": "2024-09-17T14:58:18+00:00"
  6526. },
  6527. {
  6528. "name": "symfony/polyfill-intl-grapheme",
  6529. "version": "v1.32.0",
  6530. "source": {
  6531. "type": "git",
  6532. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6533. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  6534. },
  6535. "dist": {
  6536. "type": "zip",
  6537. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  6538. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  6539. "shasum": "",
  6540. "mirrors": [
  6541. {
  6542. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6543. "preferred": true
  6544. }
  6545. ]
  6546. },
  6547. "require": {
  6548. "php": ">=7.2"
  6549. },
  6550. "suggest": {
  6551. "ext-intl": "For best performance"
  6552. },
  6553. "type": "library",
  6554. "extra": {
  6555. "thanks": {
  6556. "url": "https://github.com/symfony/polyfill",
  6557. "name": "symfony/polyfill"
  6558. }
  6559. },
  6560. "autoload": {
  6561. "files": [
  6562. "bootstrap.php"
  6563. ],
  6564. "psr-4": {
  6565. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6566. }
  6567. },
  6568. "notification-url": "https://packagist.org/downloads/",
  6569. "license": [
  6570. "MIT"
  6571. ],
  6572. "authors": [
  6573. {
  6574. "name": "Nicolas Grekas",
  6575. "email": "p@tchwork.com"
  6576. },
  6577. {
  6578. "name": "Symfony Community",
  6579. "homepage": "https://symfony.com/contributors"
  6580. }
  6581. ],
  6582. "description": "Symfony polyfill for intl's grapheme_* functions",
  6583. "homepage": "https://symfony.com",
  6584. "keywords": [
  6585. "compatibility",
  6586. "grapheme",
  6587. "intl",
  6588. "polyfill",
  6589. "portable",
  6590. "shim"
  6591. ],
  6592. "support": {
  6593. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.32.0"
  6594. },
  6595. "funding": [
  6596. {
  6597. "url": "https://symfony.com/sponsor",
  6598. "type": "custom"
  6599. },
  6600. {
  6601. "url": "https://github.com/fabpot",
  6602. "type": "github"
  6603. },
  6604. {
  6605. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6606. "type": "tidelift"
  6607. }
  6608. ],
  6609. "time": "2024-09-09T11:45:10+00:00"
  6610. },
  6611. {
  6612. "name": "symfony/polyfill-intl-idn",
  6613. "version": "v1.32.0",
  6614. "source": {
  6615. "type": "git",
  6616. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6617. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3"
  6618. },
  6619. "dist": {
  6620. "type": "zip",
  6621. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  6622. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  6623. "shasum": "",
  6624. "mirrors": [
  6625. {
  6626. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6627. "preferred": true
  6628. }
  6629. ]
  6630. },
  6631. "require": {
  6632. "php": ">=7.2",
  6633. "symfony/polyfill-intl-normalizer": "^1.10"
  6634. },
  6635. "suggest": {
  6636. "ext-intl": "For best performance"
  6637. },
  6638. "type": "library",
  6639. "extra": {
  6640. "thanks": {
  6641. "url": "https://github.com/symfony/polyfill",
  6642. "name": "symfony/polyfill"
  6643. }
  6644. },
  6645. "autoload": {
  6646. "files": [
  6647. "bootstrap.php"
  6648. ],
  6649. "psr-4": {
  6650. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6651. }
  6652. },
  6653. "notification-url": "https://packagist.org/downloads/",
  6654. "license": [
  6655. "MIT"
  6656. ],
  6657. "authors": [
  6658. {
  6659. "name": "Laurent Bassin",
  6660. "email": "laurent@bassin.info"
  6661. },
  6662. {
  6663. "name": "Trevor Rowbotham",
  6664. "email": "trevor.rowbotham@pm.me"
  6665. },
  6666. {
  6667. "name": "Symfony Community",
  6668. "homepage": "https://symfony.com/contributors"
  6669. }
  6670. ],
  6671. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6672. "homepage": "https://symfony.com",
  6673. "keywords": [
  6674. "compatibility",
  6675. "idn",
  6676. "intl",
  6677. "polyfill",
  6678. "portable",
  6679. "shim"
  6680. ],
  6681. "support": {
  6682. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.32.0"
  6683. },
  6684. "funding": [
  6685. {
  6686. "url": "https://symfony.com/sponsor",
  6687. "type": "custom"
  6688. },
  6689. {
  6690. "url": "https://github.com/fabpot",
  6691. "type": "github"
  6692. },
  6693. {
  6694. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6695. "type": "tidelift"
  6696. }
  6697. ],
  6698. "time": "2024-09-10T14:38:51+00:00"
  6699. },
  6700. {
  6701. "name": "symfony/polyfill-intl-normalizer",
  6702. "version": "v1.32.0",
  6703. "source": {
  6704. "type": "git",
  6705. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6706. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  6707. },
  6708. "dist": {
  6709. "type": "zip",
  6710. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  6711. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  6712. "shasum": "",
  6713. "mirrors": [
  6714. {
  6715. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6716. "preferred": true
  6717. }
  6718. ]
  6719. },
  6720. "require": {
  6721. "php": ">=7.2"
  6722. },
  6723. "suggest": {
  6724. "ext-intl": "For best performance"
  6725. },
  6726. "type": "library",
  6727. "extra": {
  6728. "thanks": {
  6729. "url": "https://github.com/symfony/polyfill",
  6730. "name": "symfony/polyfill"
  6731. }
  6732. },
  6733. "autoload": {
  6734. "files": [
  6735. "bootstrap.php"
  6736. ],
  6737. "psr-4": {
  6738. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6739. },
  6740. "classmap": [
  6741. "Resources/stubs"
  6742. ]
  6743. },
  6744. "notification-url": "https://packagist.org/downloads/",
  6745. "license": [
  6746. "MIT"
  6747. ],
  6748. "authors": [
  6749. {
  6750. "name": "Nicolas Grekas",
  6751. "email": "p@tchwork.com"
  6752. },
  6753. {
  6754. "name": "Symfony Community",
  6755. "homepage": "https://symfony.com/contributors"
  6756. }
  6757. ],
  6758. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6759. "homepage": "https://symfony.com",
  6760. "keywords": [
  6761. "compatibility",
  6762. "intl",
  6763. "normalizer",
  6764. "polyfill",
  6765. "portable",
  6766. "shim"
  6767. ],
  6768. "support": {
  6769. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.32.0"
  6770. },
  6771. "funding": [
  6772. {
  6773. "url": "https://symfony.com/sponsor",
  6774. "type": "custom"
  6775. },
  6776. {
  6777. "url": "https://github.com/fabpot",
  6778. "type": "github"
  6779. },
  6780. {
  6781. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6782. "type": "tidelift"
  6783. }
  6784. ],
  6785. "time": "2024-09-09T11:45:10+00:00"
  6786. },
  6787. {
  6788. "name": "symfony/polyfill-mbstring",
  6789. "version": "v1.32.0",
  6790. "source": {
  6791. "type": "git",
  6792. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6793. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
  6794. },
  6795. "dist": {
  6796. "type": "zip",
  6797. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
  6798. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
  6799. "shasum": "",
  6800. "mirrors": [
  6801. {
  6802. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6803. "preferred": true
  6804. }
  6805. ]
  6806. },
  6807. "require": {
  6808. "ext-iconv": "*",
  6809. "php": ">=7.2"
  6810. },
  6811. "provide": {
  6812. "ext-mbstring": "*"
  6813. },
  6814. "suggest": {
  6815. "ext-mbstring": "For best performance"
  6816. },
  6817. "type": "library",
  6818. "extra": {
  6819. "thanks": {
  6820. "url": "https://github.com/symfony/polyfill",
  6821. "name": "symfony/polyfill"
  6822. }
  6823. },
  6824. "autoload": {
  6825. "files": [
  6826. "bootstrap.php"
  6827. ],
  6828. "psr-4": {
  6829. "Symfony\\Polyfill\\Mbstring\\": ""
  6830. }
  6831. },
  6832. "notification-url": "https://packagist.org/downloads/",
  6833. "license": [
  6834. "MIT"
  6835. ],
  6836. "authors": [
  6837. {
  6838. "name": "Nicolas Grekas",
  6839. "email": "p@tchwork.com"
  6840. },
  6841. {
  6842. "name": "Symfony Community",
  6843. "homepage": "https://symfony.com/contributors"
  6844. }
  6845. ],
  6846. "description": "Symfony polyfill for the Mbstring extension",
  6847. "homepage": "https://symfony.com",
  6848. "keywords": [
  6849. "compatibility",
  6850. "mbstring",
  6851. "polyfill",
  6852. "portable",
  6853. "shim"
  6854. ],
  6855. "support": {
  6856. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.32.0"
  6857. },
  6858. "funding": [
  6859. {
  6860. "url": "https://symfony.com/sponsor",
  6861. "type": "custom"
  6862. },
  6863. {
  6864. "url": "https://github.com/fabpot",
  6865. "type": "github"
  6866. },
  6867. {
  6868. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6869. "type": "tidelift"
  6870. }
  6871. ],
  6872. "time": "2024-12-23T08:48:59+00:00"
  6873. },
  6874. {
  6875. "name": "symfony/polyfill-php73",
  6876. "version": "v1.32.0",
  6877. "source": {
  6878. "type": "git",
  6879. "url": "https://github.com/symfony/polyfill-php73.git",
  6880. "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb"
  6881. },
  6882. "dist": {
  6883. "type": "zip",
  6884. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
  6885. "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
  6886. "shasum": "",
  6887. "mirrors": [
  6888. {
  6889. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6890. "preferred": true
  6891. }
  6892. ]
  6893. },
  6894. "require": {
  6895. "php": ">=7.2"
  6896. },
  6897. "type": "library",
  6898. "extra": {
  6899. "thanks": {
  6900. "url": "https://github.com/symfony/polyfill",
  6901. "name": "symfony/polyfill"
  6902. }
  6903. },
  6904. "autoload": {
  6905. "files": [
  6906. "bootstrap.php"
  6907. ],
  6908. "psr-4": {
  6909. "Symfony\\Polyfill\\Php73\\": ""
  6910. },
  6911. "classmap": [
  6912. "Resources/stubs"
  6913. ]
  6914. },
  6915. "notification-url": "https://packagist.org/downloads/",
  6916. "license": [
  6917. "MIT"
  6918. ],
  6919. "authors": [
  6920. {
  6921. "name": "Nicolas Grekas",
  6922. "email": "p@tchwork.com"
  6923. },
  6924. {
  6925. "name": "Symfony Community",
  6926. "homepage": "https://symfony.com/contributors"
  6927. }
  6928. ],
  6929. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  6930. "homepage": "https://symfony.com",
  6931. "keywords": [
  6932. "compatibility",
  6933. "polyfill",
  6934. "portable",
  6935. "shim"
  6936. ],
  6937. "support": {
  6938. "source": "https://github.com/symfony/polyfill-php73/tree/v1.32.0"
  6939. },
  6940. "funding": [
  6941. {
  6942. "url": "https://symfony.com/sponsor",
  6943. "type": "custom"
  6944. },
  6945. {
  6946. "url": "https://github.com/fabpot",
  6947. "type": "github"
  6948. },
  6949. {
  6950. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6951. "type": "tidelift"
  6952. }
  6953. ],
  6954. "time": "2024-09-09T11:45:10+00:00"
  6955. },
  6956. {
  6957. "name": "symfony/polyfill-php80",
  6958. "version": "v1.32.0",
  6959. "source": {
  6960. "type": "git",
  6961. "url": "https://github.com/symfony/polyfill-php80.git",
  6962. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608"
  6963. },
  6964. "dist": {
  6965. "type": "zip",
  6966. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  6967. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  6968. "shasum": "",
  6969. "mirrors": [
  6970. {
  6971. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6972. "preferred": true
  6973. }
  6974. ]
  6975. },
  6976. "require": {
  6977. "php": ">=7.2"
  6978. },
  6979. "type": "library",
  6980. "extra": {
  6981. "thanks": {
  6982. "url": "https://github.com/symfony/polyfill",
  6983. "name": "symfony/polyfill"
  6984. }
  6985. },
  6986. "autoload": {
  6987. "files": [
  6988. "bootstrap.php"
  6989. ],
  6990. "psr-4": {
  6991. "Symfony\\Polyfill\\Php80\\": ""
  6992. },
  6993. "classmap": [
  6994. "Resources/stubs"
  6995. ]
  6996. },
  6997. "notification-url": "https://packagist.org/downloads/",
  6998. "license": [
  6999. "MIT"
  7000. ],
  7001. "authors": [
  7002. {
  7003. "name": "Ion Bazan",
  7004. "email": "ion.bazan@gmail.com"
  7005. },
  7006. {
  7007. "name": "Nicolas Grekas",
  7008. "email": "p@tchwork.com"
  7009. },
  7010. {
  7011. "name": "Symfony Community",
  7012. "homepage": "https://symfony.com/contributors"
  7013. }
  7014. ],
  7015. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  7016. "homepage": "https://symfony.com",
  7017. "keywords": [
  7018. "compatibility",
  7019. "polyfill",
  7020. "portable",
  7021. "shim"
  7022. ],
  7023. "support": {
  7024. "source": "https://github.com/symfony/polyfill-php80/tree/v1.32.0"
  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": "2025-01-02T08:10:11+00:00"
  7041. },
  7042. {
  7043. "name": "symfony/polyfill-php81",
  7044. "version": "v1.32.0",
  7045. "source": {
  7046. "type": "git",
  7047. "url": "https://github.com/symfony/polyfill-php81.git",
  7048. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  7049. },
  7050. "dist": {
  7051. "type": "zip",
  7052. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  7053. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  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"
  7064. },
  7065. "type": "library",
  7066. "extra": {
  7067. "thanks": {
  7068. "url": "https://github.com/symfony/polyfill",
  7069. "name": "symfony/polyfill"
  7070. }
  7071. },
  7072. "autoload": {
  7073. "files": [
  7074. "bootstrap.php"
  7075. ],
  7076. "psr-4": {
  7077. "Symfony\\Polyfill\\Php81\\": ""
  7078. },
  7079. "classmap": [
  7080. "Resources/stubs"
  7081. ]
  7082. },
  7083. "notification-url": "https://packagist.org/downloads/",
  7084. "license": [
  7085. "MIT"
  7086. ],
  7087. "authors": [
  7088. {
  7089. "name": "Nicolas Grekas",
  7090. "email": "p@tchwork.com"
  7091. },
  7092. {
  7093. "name": "Symfony Community",
  7094. "homepage": "https://symfony.com/contributors"
  7095. }
  7096. ],
  7097. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  7098. "homepage": "https://symfony.com",
  7099. "keywords": [
  7100. "compatibility",
  7101. "polyfill",
  7102. "portable",
  7103. "shim"
  7104. ],
  7105. "support": {
  7106. "source": "https://github.com/symfony/polyfill-php81/tree/v1.32.0"
  7107. },
  7108. "funding": [
  7109. {
  7110. "url": "https://symfony.com/sponsor",
  7111. "type": "custom"
  7112. },
  7113. {
  7114. "url": "https://github.com/fabpot",
  7115. "type": "github"
  7116. },
  7117. {
  7118. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7119. "type": "tidelift"
  7120. }
  7121. ],
  7122. "time": "2024-09-09T11:45:10+00:00"
  7123. },
  7124. {
  7125. "name": "symfony/process",
  7126. "version": "v5.4.47",
  7127. "source": {
  7128. "type": "git",
  7129. "url": "https://github.com/symfony/process.git",
  7130. "reference": "5d1662fb32ebc94f17ddb8d635454a776066733d"
  7131. },
  7132. "dist": {
  7133. "type": "zip",
  7134. "url": "https://api.github.com/repos/symfony/process/zipball/5d1662fb32ebc94f17ddb8d635454a776066733d",
  7135. "reference": "5d1662fb32ebc94f17ddb8d635454a776066733d",
  7136. "shasum": "",
  7137. "mirrors": [
  7138. {
  7139. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7140. "preferred": true
  7141. }
  7142. ]
  7143. },
  7144. "require": {
  7145. "php": ">=7.2.5",
  7146. "symfony/polyfill-php80": "^1.16"
  7147. },
  7148. "type": "library",
  7149. "autoload": {
  7150. "psr-4": {
  7151. "Symfony\\Component\\Process\\": ""
  7152. },
  7153. "exclude-from-classmap": [
  7154. "/Tests/"
  7155. ]
  7156. },
  7157. "notification-url": "https://packagist.org/downloads/",
  7158. "license": [
  7159. "MIT"
  7160. ],
  7161. "authors": [
  7162. {
  7163. "name": "Fabien Potencier",
  7164. "email": "fabien@symfony.com"
  7165. },
  7166. {
  7167. "name": "Symfony Community",
  7168. "homepage": "https://symfony.com/contributors"
  7169. }
  7170. ],
  7171. "description": "Executes commands in sub-processes",
  7172. "homepage": "https://symfony.com",
  7173. "support": {
  7174. "source": "https://github.com/symfony/process/tree/v5.4.47"
  7175. },
  7176. "funding": [
  7177. {
  7178. "url": "https://symfony.com/sponsor",
  7179. "type": "custom"
  7180. },
  7181. {
  7182. "url": "https://github.com/fabpot",
  7183. "type": "github"
  7184. },
  7185. {
  7186. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7187. "type": "tidelift"
  7188. }
  7189. ],
  7190. "time": "2024-11-06T11:36:42+00:00"
  7191. },
  7192. {
  7193. "name": "symfony/routing",
  7194. "version": "v5.4.48",
  7195. "source": {
  7196. "type": "git",
  7197. "url": "https://github.com/symfony/routing.git",
  7198. "reference": "dd08c19879a9b37ff14fd30dcbdf99a4cf045db1"
  7199. },
  7200. "dist": {
  7201. "type": "zip",
  7202. "url": "https://api.github.com/repos/symfony/routing/zipball/dd08c19879a9b37ff14fd30dcbdf99a4cf045db1",
  7203. "reference": "dd08c19879a9b37ff14fd30dcbdf99a4cf045db1",
  7204. "shasum": "",
  7205. "mirrors": [
  7206. {
  7207. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7208. "preferred": true
  7209. }
  7210. ]
  7211. },
  7212. "require": {
  7213. "php": ">=7.2.5",
  7214. "symfony/deprecation-contracts": "^2.1|^3",
  7215. "symfony/polyfill-php80": "^1.16"
  7216. },
  7217. "conflict": {
  7218. "doctrine/annotations": "<1.12",
  7219. "symfony/config": "<5.3",
  7220. "symfony/dependency-injection": "<4.4",
  7221. "symfony/yaml": "<4.4"
  7222. },
  7223. "require-dev": {
  7224. "doctrine/annotations": "^1.12|^2",
  7225. "psr/log": "^1|^2|^3",
  7226. "symfony/config": "^5.3|^6.0",
  7227. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  7228. "symfony/expression-language": "^4.4|^5.0|^6.0",
  7229. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  7230. "symfony/yaml": "^4.4|^5.0|^6.0"
  7231. },
  7232. "suggest": {
  7233. "symfony/config": "For using the all-in-one router or any loader",
  7234. "symfony/expression-language": "For using expression matching",
  7235. "symfony/http-foundation": "For using a Symfony Request object",
  7236. "symfony/yaml": "For using the YAML loader"
  7237. },
  7238. "type": "library",
  7239. "autoload": {
  7240. "psr-4": {
  7241. "Symfony\\Component\\Routing\\": ""
  7242. },
  7243. "exclude-from-classmap": [
  7244. "/Tests/"
  7245. ]
  7246. },
  7247. "notification-url": "https://packagist.org/downloads/",
  7248. "license": [
  7249. "MIT"
  7250. ],
  7251. "authors": [
  7252. {
  7253. "name": "Fabien Potencier",
  7254. "email": "fabien@symfony.com"
  7255. },
  7256. {
  7257. "name": "Symfony Community",
  7258. "homepage": "https://symfony.com/contributors"
  7259. }
  7260. ],
  7261. "description": "Maps an HTTP request to a set of configuration variables",
  7262. "homepage": "https://symfony.com",
  7263. "keywords": [
  7264. "router",
  7265. "routing",
  7266. "uri",
  7267. "url"
  7268. ],
  7269. "support": {
  7270. "source": "https://github.com/symfony/routing/tree/v5.4.48"
  7271. },
  7272. "funding": [
  7273. {
  7274. "url": "https://symfony.com/sponsor",
  7275. "type": "custom"
  7276. },
  7277. {
  7278. "url": "https://github.com/fabpot",
  7279. "type": "github"
  7280. },
  7281. {
  7282. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7283. "type": "tidelift"
  7284. }
  7285. ],
  7286. "time": "2024-11-12T18:20:21+00:00"
  7287. },
  7288. {
  7289. "name": "symfony/service-contracts",
  7290. "version": "v2.5.4",
  7291. "source": {
  7292. "type": "git",
  7293. "url": "https://github.com/symfony/service-contracts.git",
  7294. "reference": "f37b419f7aea2e9abf10abd261832cace12e3300"
  7295. },
  7296. "dist": {
  7297. "type": "zip",
  7298. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f37b419f7aea2e9abf10abd261832cace12e3300",
  7299. "reference": "f37b419f7aea2e9abf10abd261832cace12e3300",
  7300. "shasum": "",
  7301. "mirrors": [
  7302. {
  7303. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7304. "preferred": true
  7305. }
  7306. ]
  7307. },
  7308. "require": {
  7309. "php": ">=7.2.5",
  7310. "psr/container": "^1.1",
  7311. "symfony/deprecation-contracts": "^2.1|^3"
  7312. },
  7313. "conflict": {
  7314. "ext-psr": "<1.1|>=2"
  7315. },
  7316. "suggest": {
  7317. "symfony/service-implementation": ""
  7318. },
  7319. "type": "library",
  7320. "extra": {
  7321. "thanks": {
  7322. "url": "https://github.com/symfony/contracts",
  7323. "name": "symfony/contracts"
  7324. },
  7325. "branch-alias": {
  7326. "dev-main": "2.5-dev"
  7327. }
  7328. },
  7329. "autoload": {
  7330. "psr-4": {
  7331. "Symfony\\Contracts\\Service\\": ""
  7332. }
  7333. },
  7334. "notification-url": "https://packagist.org/downloads/",
  7335. "license": [
  7336. "MIT"
  7337. ],
  7338. "authors": [
  7339. {
  7340. "name": "Nicolas Grekas",
  7341. "email": "p@tchwork.com"
  7342. },
  7343. {
  7344. "name": "Symfony Community",
  7345. "homepage": "https://symfony.com/contributors"
  7346. }
  7347. ],
  7348. "description": "Generic abstractions related to writing services",
  7349. "homepage": "https://symfony.com",
  7350. "keywords": [
  7351. "abstractions",
  7352. "contracts",
  7353. "decoupling",
  7354. "interfaces",
  7355. "interoperability",
  7356. "standards"
  7357. ],
  7358. "support": {
  7359. "source": "https://github.com/symfony/service-contracts/tree/v2.5.4"
  7360. },
  7361. "funding": [
  7362. {
  7363. "url": "https://symfony.com/sponsor",
  7364. "type": "custom"
  7365. },
  7366. {
  7367. "url": "https://github.com/fabpot",
  7368. "type": "github"
  7369. },
  7370. {
  7371. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7372. "type": "tidelift"
  7373. }
  7374. ],
  7375. "time": "2024-09-25T14:11:13+00:00"
  7376. },
  7377. {
  7378. "name": "symfony/string",
  7379. "version": "v6.0.19",
  7380. "source": {
  7381. "type": "git",
  7382. "url": "https://github.com/symfony/string.git",
  7383. "reference": "d9e72497367c23e08bf94176d2be45b00a9d232a"
  7384. },
  7385. "dist": {
  7386. "type": "zip",
  7387. "url": "https://api.github.com/repos/symfony/string/zipball/d9e72497367c23e08bf94176d2be45b00a9d232a",
  7388. "reference": "d9e72497367c23e08bf94176d2be45b00a9d232a",
  7389. "shasum": "",
  7390. "mirrors": [
  7391. {
  7392. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7393. "preferred": true
  7394. }
  7395. ]
  7396. },
  7397. "require": {
  7398. "php": ">=8.0.2",
  7399. "symfony/polyfill-ctype": "~1.8",
  7400. "symfony/polyfill-intl-grapheme": "~1.0",
  7401. "symfony/polyfill-intl-normalizer": "~1.0",
  7402. "symfony/polyfill-mbstring": "~1.0"
  7403. },
  7404. "conflict": {
  7405. "symfony/translation-contracts": "<2.0"
  7406. },
  7407. "require-dev": {
  7408. "symfony/error-handler": "^5.4|^6.0",
  7409. "symfony/http-client": "^5.4|^6.0",
  7410. "symfony/translation-contracts": "^2.0|^3.0",
  7411. "symfony/var-exporter": "^5.4|^6.0"
  7412. },
  7413. "type": "library",
  7414. "autoload": {
  7415. "files": [
  7416. "Resources/functions.php"
  7417. ],
  7418. "psr-4": {
  7419. "Symfony\\Component\\String\\": ""
  7420. },
  7421. "exclude-from-classmap": [
  7422. "/Tests/"
  7423. ]
  7424. },
  7425. "notification-url": "https://packagist.org/downloads/",
  7426. "license": [
  7427. "MIT"
  7428. ],
  7429. "authors": [
  7430. {
  7431. "name": "Nicolas Grekas",
  7432. "email": "p@tchwork.com"
  7433. },
  7434. {
  7435. "name": "Symfony Community",
  7436. "homepage": "https://symfony.com/contributors"
  7437. }
  7438. ],
  7439. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7440. "homepage": "https://symfony.com",
  7441. "keywords": [
  7442. "grapheme",
  7443. "i18n",
  7444. "string",
  7445. "unicode",
  7446. "utf-8",
  7447. "utf8"
  7448. ],
  7449. "support": {
  7450. "source": "https://github.com/symfony/string/tree/v6.0.19"
  7451. },
  7452. "funding": [
  7453. {
  7454. "url": "https://symfony.com/sponsor",
  7455. "type": "custom"
  7456. },
  7457. {
  7458. "url": "https://github.com/fabpot",
  7459. "type": "github"
  7460. },
  7461. {
  7462. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7463. "type": "tidelift"
  7464. }
  7465. ],
  7466. "time": "2023-01-01T08:36:10+00:00"
  7467. },
  7468. {
  7469. "name": "symfony/translation",
  7470. "version": "v6.0.19",
  7471. "source": {
  7472. "type": "git",
  7473. "url": "https://github.com/symfony/translation.git",
  7474. "reference": "9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f"
  7475. },
  7476. "dist": {
  7477. "type": "zip",
  7478. "url": "https://api.github.com/repos/symfony/translation/zipball/9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f",
  7479. "reference": "9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f",
  7480. "shasum": "",
  7481. "mirrors": [
  7482. {
  7483. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7484. "preferred": true
  7485. }
  7486. ]
  7487. },
  7488. "require": {
  7489. "php": ">=8.0.2",
  7490. "symfony/polyfill-mbstring": "~1.0",
  7491. "symfony/translation-contracts": "^2.3|^3.0"
  7492. },
  7493. "conflict": {
  7494. "symfony/config": "<5.4",
  7495. "symfony/console": "<5.4",
  7496. "symfony/dependency-injection": "<5.4",
  7497. "symfony/http-kernel": "<5.4",
  7498. "symfony/twig-bundle": "<5.4",
  7499. "symfony/yaml": "<5.4"
  7500. },
  7501. "provide": {
  7502. "symfony/translation-implementation": "2.3|3.0"
  7503. },
  7504. "require-dev": {
  7505. "psr/log": "^1|^2|^3",
  7506. "symfony/config": "^5.4|^6.0",
  7507. "symfony/console": "^5.4|^6.0",
  7508. "symfony/dependency-injection": "^5.4|^6.0",
  7509. "symfony/finder": "^5.4|^6.0",
  7510. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  7511. "symfony/http-kernel": "^5.4|^6.0",
  7512. "symfony/intl": "^5.4|^6.0",
  7513. "symfony/polyfill-intl-icu": "^1.21",
  7514. "symfony/service-contracts": "^1.1.2|^2|^3",
  7515. "symfony/yaml": "^5.4|^6.0"
  7516. },
  7517. "suggest": {
  7518. "psr/log-implementation": "To use logging capability in translator",
  7519. "symfony/config": "",
  7520. "symfony/yaml": ""
  7521. },
  7522. "type": "library",
  7523. "autoload": {
  7524. "files": [
  7525. "Resources/functions.php"
  7526. ],
  7527. "psr-4": {
  7528. "Symfony\\Component\\Translation\\": ""
  7529. },
  7530. "exclude-from-classmap": [
  7531. "/Tests/"
  7532. ]
  7533. },
  7534. "notification-url": "https://packagist.org/downloads/",
  7535. "license": [
  7536. "MIT"
  7537. ],
  7538. "authors": [
  7539. {
  7540. "name": "Fabien Potencier",
  7541. "email": "fabien@symfony.com"
  7542. },
  7543. {
  7544. "name": "Symfony Community",
  7545. "homepage": "https://symfony.com/contributors"
  7546. }
  7547. ],
  7548. "description": "Provides tools to internationalize your application",
  7549. "homepage": "https://symfony.com",
  7550. "support": {
  7551. "source": "https://github.com/symfony/translation/tree/v6.0.19"
  7552. },
  7553. "funding": [
  7554. {
  7555. "url": "https://symfony.com/sponsor",
  7556. "type": "custom"
  7557. },
  7558. {
  7559. "url": "https://github.com/fabpot",
  7560. "type": "github"
  7561. },
  7562. {
  7563. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7564. "type": "tidelift"
  7565. }
  7566. ],
  7567. "time": "2023-01-01T08:36:10+00:00"
  7568. },
  7569. {
  7570. "name": "symfony/translation-contracts",
  7571. "version": "v3.0.2",
  7572. "source": {
  7573. "type": "git",
  7574. "url": "https://github.com/symfony/translation-contracts.git",
  7575. "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282"
  7576. },
  7577. "dist": {
  7578. "type": "zip",
  7579. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/acbfbb274e730e5a0236f619b6168d9dedb3e282",
  7580. "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282",
  7581. "shasum": "",
  7582. "mirrors": [
  7583. {
  7584. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7585. "preferred": true
  7586. }
  7587. ]
  7588. },
  7589. "require": {
  7590. "php": ">=8.0.2"
  7591. },
  7592. "suggest": {
  7593. "symfony/translation-implementation": ""
  7594. },
  7595. "type": "library",
  7596. "extra": {
  7597. "thanks": {
  7598. "url": "https://github.com/symfony/contracts",
  7599. "name": "symfony/contracts"
  7600. },
  7601. "branch-alias": {
  7602. "dev-main": "3.0-dev"
  7603. }
  7604. },
  7605. "autoload": {
  7606. "psr-4": {
  7607. "Symfony\\Contracts\\Translation\\": ""
  7608. }
  7609. },
  7610. "notification-url": "https://packagist.org/downloads/",
  7611. "license": [
  7612. "MIT"
  7613. ],
  7614. "authors": [
  7615. {
  7616. "name": "Nicolas Grekas",
  7617. "email": "p@tchwork.com"
  7618. },
  7619. {
  7620. "name": "Symfony Community",
  7621. "homepage": "https://symfony.com/contributors"
  7622. }
  7623. ],
  7624. "description": "Generic abstractions related to translation",
  7625. "homepage": "https://symfony.com",
  7626. "keywords": [
  7627. "abstractions",
  7628. "contracts",
  7629. "decoupling",
  7630. "interfaces",
  7631. "interoperability",
  7632. "standards"
  7633. ],
  7634. "support": {
  7635. "source": "https://github.com/symfony/translation-contracts/tree/v3.0.2"
  7636. },
  7637. "funding": [
  7638. {
  7639. "url": "https://symfony.com/sponsor",
  7640. "type": "custom"
  7641. },
  7642. {
  7643. "url": "https://github.com/fabpot",
  7644. "type": "github"
  7645. },
  7646. {
  7647. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7648. "type": "tidelift"
  7649. }
  7650. ],
  7651. "time": "2022-06-27T17:10:44+00:00"
  7652. },
  7653. {
  7654. "name": "symfony/var-dumper",
  7655. "version": "v5.4.48",
  7656. "source": {
  7657. "type": "git",
  7658. "url": "https://github.com/symfony/var-dumper.git",
  7659. "reference": "42f18f170aa86d612c3559cfb3bd11a375df32c8"
  7660. },
  7661. "dist": {
  7662. "type": "zip",
  7663. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/42f18f170aa86d612c3559cfb3bd11a375df32c8",
  7664. "reference": "42f18f170aa86d612c3559cfb3bd11a375df32c8",
  7665. "shasum": "",
  7666. "mirrors": [
  7667. {
  7668. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7669. "preferred": true
  7670. }
  7671. ]
  7672. },
  7673. "require": {
  7674. "php": ">=7.2.5",
  7675. "symfony/polyfill-mbstring": "~1.0",
  7676. "symfony/polyfill-php80": "^1.16"
  7677. },
  7678. "conflict": {
  7679. "symfony/console": "<4.4"
  7680. },
  7681. "require-dev": {
  7682. "ext-iconv": "*",
  7683. "symfony/console": "^4.4|^5.0|^6.0",
  7684. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  7685. "symfony/process": "^4.4|^5.0|^6.0",
  7686. "symfony/uid": "^5.1|^6.0",
  7687. "twig/twig": "^2.13|^3.0.4"
  7688. },
  7689. "suggest": {
  7690. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7691. "ext-intl": "To show region name in time zone dump",
  7692. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  7693. },
  7694. "bin": [
  7695. "Resources/bin/var-dump-server"
  7696. ],
  7697. "type": "library",
  7698. "autoload": {
  7699. "files": [
  7700. "Resources/functions/dump.php"
  7701. ],
  7702. "psr-4": {
  7703. "Symfony\\Component\\VarDumper\\": ""
  7704. },
  7705. "exclude-from-classmap": [
  7706. "/Tests/"
  7707. ]
  7708. },
  7709. "notification-url": "https://packagist.org/downloads/",
  7710. "license": [
  7711. "MIT"
  7712. ],
  7713. "authors": [
  7714. {
  7715. "name": "Nicolas Grekas",
  7716. "email": "p@tchwork.com"
  7717. },
  7718. {
  7719. "name": "Symfony Community",
  7720. "homepage": "https://symfony.com/contributors"
  7721. }
  7722. ],
  7723. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7724. "homepage": "https://symfony.com",
  7725. "keywords": [
  7726. "debug",
  7727. "dump"
  7728. ],
  7729. "support": {
  7730. "source": "https://github.com/symfony/var-dumper/tree/v5.4.48"
  7731. },
  7732. "funding": [
  7733. {
  7734. "url": "https://symfony.com/sponsor",
  7735. "type": "custom"
  7736. },
  7737. {
  7738. "url": "https://github.com/fabpot",
  7739. "type": "github"
  7740. },
  7741. {
  7742. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7743. "type": "tidelift"
  7744. }
  7745. ],
  7746. "time": "2024-11-08T15:21:10+00:00"
  7747. },
  7748. {
  7749. "name": "tijsverkoyen/css-to-inline-styles",
  7750. "version": "v2.3.0",
  7751. "source": {
  7752. "type": "git",
  7753. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7754. "reference": "0d72ac1c00084279c1816675284073c5a337c20d"
  7755. },
  7756. "dist": {
  7757. "type": "zip",
  7758. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/0d72ac1c00084279c1816675284073c5a337c20d",
  7759. "reference": "0d72ac1c00084279c1816675284073c5a337c20d",
  7760. "shasum": "",
  7761. "mirrors": [
  7762. {
  7763. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7764. "preferred": true
  7765. }
  7766. ]
  7767. },
  7768. "require": {
  7769. "ext-dom": "*",
  7770. "ext-libxml": "*",
  7771. "php": "^7.4 || ^8.0",
  7772. "symfony/css-selector": "^5.4 || ^6.0 || ^7.0"
  7773. },
  7774. "require-dev": {
  7775. "phpstan/phpstan": "^2.0",
  7776. "phpstan/phpstan-phpunit": "^2.0",
  7777. "phpunit/phpunit": "^8.5.21 || ^9.5.10"
  7778. },
  7779. "type": "library",
  7780. "extra": {
  7781. "branch-alias": {
  7782. "dev-master": "2.x-dev"
  7783. }
  7784. },
  7785. "autoload": {
  7786. "psr-4": {
  7787. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7788. }
  7789. },
  7790. "notification-url": "https://packagist.org/downloads/",
  7791. "license": [
  7792. "BSD-3-Clause"
  7793. ],
  7794. "authors": [
  7795. {
  7796. "name": "Tijs Verkoyen",
  7797. "email": "css_to_inline_styles@verkoyen.eu",
  7798. "role": "Developer"
  7799. }
  7800. ],
  7801. "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.",
  7802. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7803. "support": {
  7804. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7805. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.3.0"
  7806. },
  7807. "time": "2024-12-21T16:25:41+00:00"
  7808. },
  7809. {
  7810. "name": "vlucas/phpdotenv",
  7811. "version": "v5.6.1",
  7812. "source": {
  7813. "type": "git",
  7814. "url": "https://github.com/vlucas/phpdotenv.git",
  7815. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  7816. },
  7817. "dist": {
  7818. "type": "zip",
  7819. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7820. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7821. "shasum": "",
  7822. "mirrors": [
  7823. {
  7824. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7825. "preferred": true
  7826. }
  7827. ]
  7828. },
  7829. "require": {
  7830. "ext-pcre": "*",
  7831. "graham-campbell/result-type": "^1.1.3",
  7832. "php": "^7.2.5 || ^8.0",
  7833. "phpoption/phpoption": "^1.9.3",
  7834. "symfony/polyfill-ctype": "^1.24",
  7835. "symfony/polyfill-mbstring": "^1.24",
  7836. "symfony/polyfill-php80": "^1.24"
  7837. },
  7838. "require-dev": {
  7839. "bamarni/composer-bin-plugin": "^1.8.2",
  7840. "ext-filter": "*",
  7841. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  7842. },
  7843. "suggest": {
  7844. "ext-filter": "Required to use the boolean validator."
  7845. },
  7846. "type": "library",
  7847. "extra": {
  7848. "bamarni-bin": {
  7849. "bin-links": true,
  7850. "forward-command": false
  7851. },
  7852. "branch-alias": {
  7853. "dev-master": "5.6-dev"
  7854. }
  7855. },
  7856. "autoload": {
  7857. "psr-4": {
  7858. "Dotenv\\": "src/"
  7859. }
  7860. },
  7861. "notification-url": "https://packagist.org/downloads/",
  7862. "license": [
  7863. "BSD-3-Clause"
  7864. ],
  7865. "authors": [
  7866. {
  7867. "name": "Graham Campbell",
  7868. "email": "hello@gjcampbell.co.uk",
  7869. "homepage": "https://github.com/GrahamCampbell"
  7870. },
  7871. {
  7872. "name": "Vance Lucas",
  7873. "email": "vance@vancelucas.com",
  7874. "homepage": "https://github.com/vlucas"
  7875. }
  7876. ],
  7877. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7878. "keywords": [
  7879. "dotenv",
  7880. "env",
  7881. "environment"
  7882. ],
  7883. "support": {
  7884. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7885. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  7886. },
  7887. "funding": [
  7888. {
  7889. "url": "https://github.com/GrahamCampbell",
  7890. "type": "github"
  7891. },
  7892. {
  7893. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7894. "type": "tidelift"
  7895. }
  7896. ],
  7897. "time": "2024-07-20T21:52:34+00:00"
  7898. },
  7899. {
  7900. "name": "voku/portable-ascii",
  7901. "version": "1.6.1",
  7902. "source": {
  7903. "type": "git",
  7904. "url": "https://github.com/voku/portable-ascii.git",
  7905. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a"
  7906. },
  7907. "dist": {
  7908. "type": "zip",
  7909. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/87337c91b9dfacee02452244ee14ab3c43bc485a",
  7910. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a",
  7911. "shasum": "",
  7912. "mirrors": [
  7913. {
  7914. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7915. "preferred": true
  7916. }
  7917. ]
  7918. },
  7919. "require": {
  7920. "php": ">=7.0.0"
  7921. },
  7922. "require-dev": {
  7923. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  7924. },
  7925. "suggest": {
  7926. "ext-intl": "Use Intl for transliterator_transliterate() support"
  7927. },
  7928. "type": "library",
  7929. "autoload": {
  7930. "psr-4": {
  7931. "voku\\": "src/voku/"
  7932. }
  7933. },
  7934. "notification-url": "https://packagist.org/downloads/",
  7935. "license": [
  7936. "MIT"
  7937. ],
  7938. "authors": [
  7939. {
  7940. "name": "Lars Moelleken",
  7941. "homepage": "http://www.moelleken.org/"
  7942. }
  7943. ],
  7944. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  7945. "homepage": "https://github.com/voku/portable-ascii",
  7946. "keywords": [
  7947. "ascii",
  7948. "clean",
  7949. "php"
  7950. ],
  7951. "support": {
  7952. "issues": "https://github.com/voku/portable-ascii/issues",
  7953. "source": "https://github.com/voku/portable-ascii/tree/1.6.1"
  7954. },
  7955. "funding": [
  7956. {
  7957. "url": "https://www.paypal.me/moelleken",
  7958. "type": "custom"
  7959. },
  7960. {
  7961. "url": "https://github.com/voku",
  7962. "type": "github"
  7963. },
  7964. {
  7965. "url": "https://opencollective.com/portable-ascii",
  7966. "type": "open_collective"
  7967. },
  7968. {
  7969. "url": "https://www.patreon.com/voku",
  7970. "type": "patreon"
  7971. },
  7972. {
  7973. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  7974. "type": "tidelift"
  7975. }
  7976. ],
  7977. "time": "2022-01-24T18:55:24+00:00"
  7978. },
  7979. {
  7980. "name": "yansongda/pay",
  7981. "version": "v3.4.2",
  7982. "source": {
  7983. "type": "git",
  7984. "url": "https://github.com/yansongda/pay.git",
  7985. "reference": "de827f7a594ef02432432da1f873926662b478fc"
  7986. },
  7987. "dist": {
  7988. "type": "zip",
  7989. "url": "https://api.github.com/repos/yansongda/pay/zipball/de827f7a594ef02432432da1f873926662b478fc",
  7990. "reference": "de827f7a594ef02432432da1f873926662b478fc",
  7991. "shasum": "",
  7992. "mirrors": [
  7993. {
  7994. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7995. "preferred": true
  7996. }
  7997. ]
  7998. },
  7999. "require": {
  8000. "ext-bcmath": "*",
  8001. "ext-json": "*",
  8002. "ext-libxml": "*",
  8003. "ext-openssl": "*",
  8004. "ext-simplexml": "*",
  8005. "php": ">=8.0",
  8006. "psr/container": "^1.1 || ^2.0",
  8007. "psr/event-dispatcher": "^1.0",
  8008. "psr/http-client": "^1.0",
  8009. "psr/http-message": "^1.1 || ^2.0",
  8010. "psr/log": "^1.1 || ^2.0 || ^3.0",
  8011. "yansongda/supports": "~4.0.0"
  8012. },
  8013. "conflict": {
  8014. "hyperf/framework": "<3.0"
  8015. },
  8016. "require-dev": {
  8017. "friendsofphp/php-cs-fixer": "^3.0",
  8018. "guzzlehttp/guzzle": "^7.0",
  8019. "hyperf/pimple": "^2.2",
  8020. "mockery/mockery": "^1.4",
  8021. "monolog/monolog": "^2.2",
  8022. "phpstan/phpstan": "^1.0.0",
  8023. "phpunit/phpunit": "^9.0",
  8024. "symfony/event-dispatcher": "^5.2.0",
  8025. "symfony/http-foundation": "^5.2.0",
  8026. "symfony/psr-http-message-bridge": "^2.1",
  8027. "symfony/var-dumper": "^5.1"
  8028. },
  8029. "suggest": {
  8030. "hyperf/pimple": "其它/无框架下使用 SDK,请安装",
  8031. "hyperf/utils": "Hyperf 框架下使用 SDK,请安装",
  8032. "illuminate/container": "Laravel 框架下使用 SDK,请安装"
  8033. },
  8034. "type": "library",
  8035. "autoload": {
  8036. "files": [
  8037. "src/Functions.php"
  8038. ],
  8039. "psr-4": {
  8040. "Yansongda\\Pay\\": "src"
  8041. }
  8042. },
  8043. "notification-url": "https://packagist.org/downloads/",
  8044. "license": [
  8045. "MIT"
  8046. ],
  8047. "authors": [
  8048. {
  8049. "name": "yansongda",
  8050. "email": "me@yansongda.cn"
  8051. }
  8052. ],
  8053. "description": "可能是我用过的最优雅的 Alipay 和 WeChat 的支付 SDK 扩展包了",
  8054. "keywords": [
  8055. "alipay",
  8056. "pay",
  8057. "wechat"
  8058. ],
  8059. "support": {
  8060. "homepage": "https://pay.yansongda.cn",
  8061. "issues": "https://github.com/yansongda/pay/issues",
  8062. "source": "https://github.com/yansongda/pay"
  8063. },
  8064. "time": "2023-06-27T09:54:37+00:00"
  8065. },
  8066. {
  8067. "name": "yansongda/supports",
  8068. "version": "v4.0.10",
  8069. "source": {
  8070. "type": "git",
  8071. "url": "https://github.com/yansongda/supports.git",
  8072. "reference": "11cc73776e6d4d763a84c8c733f64820abdc44e5"
  8073. },
  8074. "dist": {
  8075. "type": "zip",
  8076. "url": "https://api.github.com/repos/yansongda/supports/zipball/11cc73776e6d4d763a84c8c733f64820abdc44e5",
  8077. "reference": "11cc73776e6d4d763a84c8c733f64820abdc44e5",
  8078. "shasum": "",
  8079. "mirrors": [
  8080. {
  8081. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8082. "preferred": true
  8083. }
  8084. ]
  8085. },
  8086. "require": {
  8087. "php": ">=8.0"
  8088. },
  8089. "require-dev": {
  8090. "friendsofphp/php-cs-fixer": "^3.0",
  8091. "mockery/mockery": "^1.4",
  8092. "phpstan/phpstan": "^1.1.0",
  8093. "phpunit/phpunit": "^9.0"
  8094. },
  8095. "suggest": {
  8096. "monolog/monolog": "Use logger",
  8097. "symfony/console": "Use stdout logger"
  8098. },
  8099. "type": "library",
  8100. "autoload": {
  8101. "files": [
  8102. "src/Functions.php"
  8103. ],
  8104. "psr-4": {
  8105. "Yansongda\\Supports\\": "src/"
  8106. }
  8107. },
  8108. "notification-url": "https://packagist.org/downloads/",
  8109. "license": [
  8110. "MIT"
  8111. ],
  8112. "authors": [
  8113. {
  8114. "name": "yansongda",
  8115. "email": "me@yansongda.cn"
  8116. }
  8117. ],
  8118. "description": "common components",
  8119. "keywords": [
  8120. "array",
  8121. "collection",
  8122. "config",
  8123. "support"
  8124. ],
  8125. "support": {
  8126. "issues": "https://github.com/yansongda/supports/issues",
  8127. "source": "https://github.com/yansongda/supports"
  8128. },
  8129. "time": "2024-06-09T15:49:21+00:00"
  8130. }
  8131. ],
  8132. "packages-dev": [
  8133. {
  8134. "name": "doctrine/instantiator",
  8135. "version": "1.5.0",
  8136. "source": {
  8137. "type": "git",
  8138. "url": "https://github.com/doctrine/instantiator.git",
  8139. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  8140. },
  8141. "dist": {
  8142. "type": "zip",
  8143. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  8144. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  8145. "shasum": "",
  8146. "mirrors": [
  8147. {
  8148. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8149. "preferred": true
  8150. }
  8151. ]
  8152. },
  8153. "require": {
  8154. "php": "^7.1 || ^8.0"
  8155. },
  8156. "require-dev": {
  8157. "doctrine/coding-standard": "^9 || ^11",
  8158. "ext-pdo": "*",
  8159. "ext-phar": "*",
  8160. "phpbench/phpbench": "^0.16 || ^1",
  8161. "phpstan/phpstan": "^1.4",
  8162. "phpstan/phpstan-phpunit": "^1",
  8163. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  8164. "vimeo/psalm": "^4.30 || ^5.4"
  8165. },
  8166. "type": "library",
  8167. "autoload": {
  8168. "psr-4": {
  8169. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8170. }
  8171. },
  8172. "notification-url": "https://packagist.org/downloads/",
  8173. "license": [
  8174. "MIT"
  8175. ],
  8176. "authors": [
  8177. {
  8178. "name": "Marco Pivetta",
  8179. "email": "ocramius@gmail.com",
  8180. "homepage": "https://ocramius.github.io/"
  8181. }
  8182. ],
  8183. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8184. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8185. "keywords": [
  8186. "constructor",
  8187. "instantiate"
  8188. ],
  8189. "support": {
  8190. "issues": "https://github.com/doctrine/instantiator/issues",
  8191. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  8192. },
  8193. "funding": [
  8194. {
  8195. "url": "https://www.doctrine-project.org/sponsorship.html",
  8196. "type": "custom"
  8197. },
  8198. {
  8199. "url": "https://www.patreon.com/phpdoctrine",
  8200. "type": "patreon"
  8201. },
  8202. {
  8203. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8204. "type": "tidelift"
  8205. }
  8206. ],
  8207. "time": "2022-12-30T00:15:36+00:00"
  8208. },
  8209. {
  8210. "name": "facade/flare-client-php",
  8211. "version": "1.10.0",
  8212. "source": {
  8213. "type": "git",
  8214. "url": "https://github.com/facade/flare-client-php.git",
  8215. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8"
  8216. },
  8217. "dist": {
  8218. "type": "zip",
  8219. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  8220. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  8221. "shasum": "",
  8222. "mirrors": [
  8223. {
  8224. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8225. "preferred": true
  8226. }
  8227. ]
  8228. },
  8229. "require": {
  8230. "facade/ignition-contracts": "~1.0",
  8231. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  8232. "php": "^7.1|^8.0",
  8233. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  8234. "symfony/mime": "^3.4|^4.0|^5.1",
  8235. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  8236. },
  8237. "require-dev": {
  8238. "friendsofphp/php-cs-fixer": "^2.14",
  8239. "phpunit/phpunit": "^7.5",
  8240. "spatie/phpunit-snapshot-assertions": "^2.0"
  8241. },
  8242. "type": "library",
  8243. "extra": {
  8244. "branch-alias": {
  8245. "dev-master": "1.0-dev"
  8246. }
  8247. },
  8248. "autoload": {
  8249. "files": [
  8250. "src/helpers.php"
  8251. ],
  8252. "psr-4": {
  8253. "Facade\\FlareClient\\": "src"
  8254. }
  8255. },
  8256. "notification-url": "https://packagist.org/downloads/",
  8257. "license": [
  8258. "MIT"
  8259. ],
  8260. "description": "Send PHP errors to Flare",
  8261. "homepage": "https://github.com/facade/flare-client-php",
  8262. "keywords": [
  8263. "exception",
  8264. "facade",
  8265. "flare",
  8266. "reporting"
  8267. ],
  8268. "support": {
  8269. "issues": "https://github.com/facade/flare-client-php/issues",
  8270. "source": "https://github.com/facade/flare-client-php/tree/1.10.0"
  8271. },
  8272. "funding": [
  8273. {
  8274. "url": "https://github.com/spatie",
  8275. "type": "github"
  8276. }
  8277. ],
  8278. "time": "2022-08-09T11:23:57+00:00"
  8279. },
  8280. {
  8281. "name": "facade/ignition",
  8282. "version": "2.17.7",
  8283. "source": {
  8284. "type": "git",
  8285. "url": "https://github.com/facade/ignition.git",
  8286. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9"
  8287. },
  8288. "dist": {
  8289. "type": "zip",
  8290. "url": "https://api.github.com/repos/facade/ignition/zipball/b4f5955825bb4b74cba0f94001761c46335c33e9",
  8291. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9",
  8292. "shasum": "",
  8293. "mirrors": [
  8294. {
  8295. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8296. "preferred": true
  8297. }
  8298. ]
  8299. },
  8300. "require": {
  8301. "ext-curl": "*",
  8302. "ext-json": "*",
  8303. "ext-mbstring": "*",
  8304. "facade/flare-client-php": "^1.9.1",
  8305. "facade/ignition-contracts": "^1.0.2",
  8306. "illuminate/support": "^7.0|^8.0",
  8307. "monolog/monolog": "^2.0",
  8308. "php": "^7.2.5|^8.0",
  8309. "symfony/console": "^5.0",
  8310. "symfony/var-dumper": "^5.0"
  8311. },
  8312. "require-dev": {
  8313. "friendsofphp/php-cs-fixer": "^2.14",
  8314. "livewire/livewire": "^2.4",
  8315. "mockery/mockery": "^1.3",
  8316. "orchestra/testbench": "^5.0|^6.0",
  8317. "psalm/plugin-laravel": "^1.2"
  8318. },
  8319. "suggest": {
  8320. "laravel/telescope": "^3.1"
  8321. },
  8322. "type": "library",
  8323. "extra": {
  8324. "branch-alias": {
  8325. "dev-master": "2.x-dev"
  8326. },
  8327. "laravel": {
  8328. "providers": [
  8329. "Facade\\Ignition\\IgnitionServiceProvider"
  8330. ],
  8331. "aliases": {
  8332. "Flare": "Facade\\Ignition\\Facades\\Flare"
  8333. }
  8334. }
  8335. },
  8336. "autoload": {
  8337. "files": [
  8338. "src/helpers.php"
  8339. ],
  8340. "psr-4": {
  8341. "Facade\\Ignition\\": "src"
  8342. }
  8343. },
  8344. "notification-url": "https://packagist.org/downloads/",
  8345. "license": [
  8346. "MIT"
  8347. ],
  8348. "description": "A beautiful error page for Laravel applications.",
  8349. "homepage": "https://github.com/facade/ignition",
  8350. "keywords": [
  8351. "error",
  8352. "flare",
  8353. "laravel",
  8354. "page"
  8355. ],
  8356. "support": {
  8357. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  8358. "forum": "https://twitter.com/flareappio",
  8359. "issues": "https://github.com/facade/ignition/issues",
  8360. "source": "https://github.com/facade/ignition"
  8361. },
  8362. "time": "2023-01-26T12:34:59+00:00"
  8363. },
  8364. {
  8365. "name": "facade/ignition-contracts",
  8366. "version": "1.0.2",
  8367. "source": {
  8368. "type": "git",
  8369. "url": "https://github.com/facade/ignition-contracts.git",
  8370. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  8371. },
  8372. "dist": {
  8373. "type": "zip",
  8374. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8375. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8376. "shasum": "",
  8377. "mirrors": [
  8378. {
  8379. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8380. "preferred": true
  8381. }
  8382. ]
  8383. },
  8384. "require": {
  8385. "php": "^7.3|^8.0"
  8386. },
  8387. "require-dev": {
  8388. "friendsofphp/php-cs-fixer": "^v2.15.8",
  8389. "phpunit/phpunit": "^9.3.11",
  8390. "vimeo/psalm": "^3.17.1"
  8391. },
  8392. "type": "library",
  8393. "autoload": {
  8394. "psr-4": {
  8395. "Facade\\IgnitionContracts\\": "src"
  8396. }
  8397. },
  8398. "notification-url": "https://packagist.org/downloads/",
  8399. "license": [
  8400. "MIT"
  8401. ],
  8402. "authors": [
  8403. {
  8404. "name": "Freek Van der Herten",
  8405. "email": "freek@spatie.be",
  8406. "homepage": "https://flareapp.io",
  8407. "role": "Developer"
  8408. }
  8409. ],
  8410. "description": "Solution contracts for Ignition",
  8411. "homepage": "https://github.com/facade/ignition-contracts",
  8412. "keywords": [
  8413. "contracts",
  8414. "flare",
  8415. "ignition"
  8416. ],
  8417. "support": {
  8418. "issues": "https://github.com/facade/ignition-contracts/issues",
  8419. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  8420. },
  8421. "time": "2020-10-16T08:27:54+00:00"
  8422. },
  8423. {
  8424. "name": "fakerphp/faker",
  8425. "version": "v1.23.1",
  8426. "source": {
  8427. "type": "git",
  8428. "url": "https://github.com/FakerPHP/Faker.git",
  8429. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b"
  8430. },
  8431. "dist": {
  8432. "type": "zip",
  8433. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/bfb4fe148adbf78eff521199619b93a52ae3554b",
  8434. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b",
  8435. "shasum": "",
  8436. "mirrors": [
  8437. {
  8438. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8439. "preferred": true
  8440. }
  8441. ]
  8442. },
  8443. "require": {
  8444. "php": "^7.4 || ^8.0",
  8445. "psr/container": "^1.0 || ^2.0",
  8446. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  8447. },
  8448. "conflict": {
  8449. "fzaninotto/faker": "*"
  8450. },
  8451. "require-dev": {
  8452. "bamarni/composer-bin-plugin": "^1.4.1",
  8453. "doctrine/persistence": "^1.3 || ^2.0",
  8454. "ext-intl": "*",
  8455. "phpunit/phpunit": "^9.5.26",
  8456. "symfony/phpunit-bridge": "^5.4.16"
  8457. },
  8458. "suggest": {
  8459. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  8460. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  8461. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  8462. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  8463. "ext-mbstring": "Required for multibyte Unicode string functionality."
  8464. },
  8465. "type": "library",
  8466. "autoload": {
  8467. "psr-4": {
  8468. "Faker\\": "src/Faker/"
  8469. }
  8470. },
  8471. "notification-url": "https://packagist.org/downloads/",
  8472. "license": [
  8473. "MIT"
  8474. ],
  8475. "authors": [
  8476. {
  8477. "name": "François Zaninotto"
  8478. }
  8479. ],
  8480. "description": "Faker is a PHP library that generates fake data for you.",
  8481. "keywords": [
  8482. "data",
  8483. "faker",
  8484. "fixtures"
  8485. ],
  8486. "support": {
  8487. "issues": "https://github.com/FakerPHP/Faker/issues",
  8488. "source": "https://github.com/FakerPHP/Faker/tree/v1.23.1"
  8489. },
  8490. "time": "2024-01-02T13:46:09+00:00"
  8491. },
  8492. {
  8493. "name": "filp/whoops",
  8494. "version": "2.16.0",
  8495. "source": {
  8496. "type": "git",
  8497. "url": "https://github.com/filp/whoops.git",
  8498. "reference": "befcdc0e5dce67252aa6322d82424be928214fa2"
  8499. },
  8500. "dist": {
  8501. "type": "zip",
  8502. "url": "https://api.github.com/repos/filp/whoops/zipball/befcdc0e5dce67252aa6322d82424be928214fa2",
  8503. "reference": "befcdc0e5dce67252aa6322d82424be928214fa2",
  8504. "shasum": "",
  8505. "mirrors": [
  8506. {
  8507. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8508. "preferred": true
  8509. }
  8510. ]
  8511. },
  8512. "require": {
  8513. "php": "^7.1 || ^8.0",
  8514. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  8515. },
  8516. "require-dev": {
  8517. "mockery/mockery": "^1.0",
  8518. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.3",
  8519. "symfony/var-dumper": "^4.0 || ^5.0"
  8520. },
  8521. "suggest": {
  8522. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8523. "whoops/soap": "Formats errors as SOAP responses"
  8524. },
  8525. "type": "library",
  8526. "extra": {
  8527. "branch-alias": {
  8528. "dev-master": "2.7-dev"
  8529. }
  8530. },
  8531. "autoload": {
  8532. "psr-4": {
  8533. "Whoops\\": "src/Whoops/"
  8534. }
  8535. },
  8536. "notification-url": "https://packagist.org/downloads/",
  8537. "license": [
  8538. "MIT"
  8539. ],
  8540. "authors": [
  8541. {
  8542. "name": "Filipe Dobreira",
  8543. "homepage": "https://github.com/filp",
  8544. "role": "Developer"
  8545. }
  8546. ],
  8547. "description": "php error handling for cool kids",
  8548. "homepage": "https://filp.github.io/whoops/",
  8549. "keywords": [
  8550. "error",
  8551. "exception",
  8552. "handling",
  8553. "library",
  8554. "throwable",
  8555. "whoops"
  8556. ],
  8557. "support": {
  8558. "issues": "https://github.com/filp/whoops/issues",
  8559. "source": "https://github.com/filp/whoops/tree/2.16.0"
  8560. },
  8561. "funding": [
  8562. {
  8563. "url": "https://github.com/denis-sokolov",
  8564. "type": "github"
  8565. }
  8566. ],
  8567. "time": "2024-09-25T12:00:00+00:00"
  8568. },
  8569. {
  8570. "name": "hamcrest/hamcrest-php",
  8571. "version": "v2.0.1",
  8572. "source": {
  8573. "type": "git",
  8574. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8575. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8576. },
  8577. "dist": {
  8578. "type": "zip",
  8579. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8580. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8581. "shasum": "",
  8582. "mirrors": [
  8583. {
  8584. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8585. "preferred": true
  8586. }
  8587. ]
  8588. },
  8589. "require": {
  8590. "php": "^5.3|^7.0|^8.0"
  8591. },
  8592. "replace": {
  8593. "cordoval/hamcrest-php": "*",
  8594. "davedevelopment/hamcrest-php": "*",
  8595. "kodova/hamcrest-php": "*"
  8596. },
  8597. "require-dev": {
  8598. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8599. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8600. },
  8601. "type": "library",
  8602. "extra": {
  8603. "branch-alias": {
  8604. "dev-master": "2.1-dev"
  8605. }
  8606. },
  8607. "autoload": {
  8608. "classmap": [
  8609. "hamcrest"
  8610. ]
  8611. },
  8612. "notification-url": "https://packagist.org/downloads/",
  8613. "license": [
  8614. "BSD-3-Clause"
  8615. ],
  8616. "description": "This is the PHP port of Hamcrest Matchers",
  8617. "keywords": [
  8618. "test"
  8619. ],
  8620. "support": {
  8621. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8622. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8623. },
  8624. "time": "2020-07-09T08:09:16+00:00"
  8625. },
  8626. {
  8627. "name": "mockery/mockery",
  8628. "version": "1.6.12",
  8629. "source": {
  8630. "type": "git",
  8631. "url": "https://github.com/mockery/mockery.git",
  8632. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  8633. },
  8634. "dist": {
  8635. "type": "zip",
  8636. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8637. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8638. "shasum": "",
  8639. "mirrors": [
  8640. {
  8641. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8642. "preferred": true
  8643. }
  8644. ]
  8645. },
  8646. "require": {
  8647. "hamcrest/hamcrest-php": "^2.0.1",
  8648. "lib-pcre": ">=7.0",
  8649. "php": ">=7.3"
  8650. },
  8651. "conflict": {
  8652. "phpunit/phpunit": "<8.0"
  8653. },
  8654. "require-dev": {
  8655. "phpunit/phpunit": "^8.5 || ^9.6.17",
  8656. "symplify/easy-coding-standard": "^12.1.14"
  8657. },
  8658. "type": "library",
  8659. "autoload": {
  8660. "files": [
  8661. "library/helpers.php",
  8662. "library/Mockery.php"
  8663. ],
  8664. "psr-4": {
  8665. "Mockery\\": "library/Mockery"
  8666. }
  8667. },
  8668. "notification-url": "https://packagist.org/downloads/",
  8669. "license": [
  8670. "BSD-3-Clause"
  8671. ],
  8672. "authors": [
  8673. {
  8674. "name": "Pádraic Brady",
  8675. "email": "padraic.brady@gmail.com",
  8676. "homepage": "https://github.com/padraic",
  8677. "role": "Author"
  8678. },
  8679. {
  8680. "name": "Dave Marshall",
  8681. "email": "dave.marshall@atstsolutions.co.uk",
  8682. "homepage": "https://davedevelopment.co.uk",
  8683. "role": "Developer"
  8684. },
  8685. {
  8686. "name": "Nathanael Esayeas",
  8687. "email": "nathanael.esayeas@protonmail.com",
  8688. "homepage": "https://github.com/ghostwriter",
  8689. "role": "Lead Developer"
  8690. }
  8691. ],
  8692. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8693. "homepage": "https://github.com/mockery/mockery",
  8694. "keywords": [
  8695. "BDD",
  8696. "TDD",
  8697. "library",
  8698. "mock",
  8699. "mock objects",
  8700. "mockery",
  8701. "stub",
  8702. "test",
  8703. "test double",
  8704. "testing"
  8705. ],
  8706. "support": {
  8707. "docs": "https://docs.mockery.io/",
  8708. "issues": "https://github.com/mockery/mockery/issues",
  8709. "rss": "https://github.com/mockery/mockery/releases.atom",
  8710. "security": "https://github.com/mockery/mockery/security/advisories",
  8711. "source": "https://github.com/mockery/mockery"
  8712. },
  8713. "time": "2024-05-16T03:13:13+00:00"
  8714. },
  8715. {
  8716. "name": "myclabs/deep-copy",
  8717. "version": "1.x-dev",
  8718. "source": {
  8719. "type": "git",
  8720. "url": "https://github.com/myclabs/DeepCopy.git",
  8721. "reference": "faed855a7b5f4d4637717c2b3863e277116beb36"
  8722. },
  8723. "dist": {
  8724. "type": "zip",
  8725. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/faed855a7b5f4d4637717c2b3863e277116beb36",
  8726. "reference": "faed855a7b5f4d4637717c2b3863e277116beb36",
  8727. "shasum": "",
  8728. "mirrors": [
  8729. {
  8730. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8731. "preferred": true
  8732. }
  8733. ]
  8734. },
  8735. "require": {
  8736. "php": "^7.1 || ^8.0"
  8737. },
  8738. "conflict": {
  8739. "doctrine/collections": "<1.6.8",
  8740. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  8741. },
  8742. "require-dev": {
  8743. "doctrine/collections": "^1.6.8",
  8744. "doctrine/common": "^2.13.3 || ^3.2.2",
  8745. "phpspec/prophecy": "^1.10",
  8746. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8747. },
  8748. "default-branch": true,
  8749. "type": "library",
  8750. "autoload": {
  8751. "files": [
  8752. "src/DeepCopy/deep_copy.php"
  8753. ],
  8754. "psr-4": {
  8755. "DeepCopy\\": "src/DeepCopy/"
  8756. }
  8757. },
  8758. "notification-url": "https://packagist.org/downloads/",
  8759. "license": [
  8760. "MIT"
  8761. ],
  8762. "description": "Create deep copies (clones) of your objects",
  8763. "keywords": [
  8764. "clone",
  8765. "copy",
  8766. "duplicate",
  8767. "object",
  8768. "object graph"
  8769. ],
  8770. "support": {
  8771. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8772. "source": "https://github.com/myclabs/DeepCopy/tree/1.13.3"
  8773. },
  8774. "funding": [
  8775. {
  8776. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8777. "type": "tidelift"
  8778. }
  8779. ],
  8780. "time": "2025-07-05T12:25:42+00:00"
  8781. },
  8782. {
  8783. "name": "nunomaduro/collision",
  8784. "version": "v5.11.0",
  8785. "source": {
  8786. "type": "git",
  8787. "url": "https://github.com/nunomaduro/collision.git",
  8788. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461"
  8789. },
  8790. "dist": {
  8791. "type": "zip",
  8792. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/8b610eef8582ccdc05d8f2ab23305e2d37049461",
  8793. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461",
  8794. "shasum": "",
  8795. "mirrors": [
  8796. {
  8797. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8798. "preferred": true
  8799. }
  8800. ]
  8801. },
  8802. "require": {
  8803. "facade/ignition-contracts": "^1.0",
  8804. "filp/whoops": "^2.14.3",
  8805. "php": "^7.3 || ^8.0",
  8806. "symfony/console": "^5.0"
  8807. },
  8808. "require-dev": {
  8809. "brianium/paratest": "^6.1",
  8810. "fideloper/proxy": "^4.4.1",
  8811. "fruitcake/laravel-cors": "^2.0.3",
  8812. "laravel/framework": "8.x-dev",
  8813. "nunomaduro/larastan": "^0.6.2",
  8814. "nunomaduro/mock-final-classes": "^1.0",
  8815. "orchestra/testbench": "^6.0",
  8816. "phpstan/phpstan": "^0.12.64",
  8817. "phpunit/phpunit": "^9.5.0"
  8818. },
  8819. "type": "library",
  8820. "extra": {
  8821. "laravel": {
  8822. "providers": [
  8823. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  8824. ]
  8825. }
  8826. },
  8827. "autoload": {
  8828. "psr-4": {
  8829. "NunoMaduro\\Collision\\": "src/"
  8830. }
  8831. },
  8832. "notification-url": "https://packagist.org/downloads/",
  8833. "license": [
  8834. "MIT"
  8835. ],
  8836. "authors": [
  8837. {
  8838. "name": "Nuno Maduro",
  8839. "email": "enunomaduro@gmail.com"
  8840. }
  8841. ],
  8842. "description": "Cli error handling for console/command-line PHP applications.",
  8843. "keywords": [
  8844. "artisan",
  8845. "cli",
  8846. "command-line",
  8847. "console",
  8848. "error",
  8849. "handling",
  8850. "laravel",
  8851. "laravel-zero",
  8852. "php",
  8853. "symfony"
  8854. ],
  8855. "support": {
  8856. "issues": "https://github.com/nunomaduro/collision/issues",
  8857. "source": "https://github.com/nunomaduro/collision"
  8858. },
  8859. "funding": [
  8860. {
  8861. "url": "https://www.paypal.com/paypalme/enunomaduro",
  8862. "type": "custom"
  8863. },
  8864. {
  8865. "url": "https://github.com/nunomaduro",
  8866. "type": "github"
  8867. },
  8868. {
  8869. "url": "https://www.patreon.com/nunomaduro",
  8870. "type": "patreon"
  8871. }
  8872. ],
  8873. "time": "2022-01-10T16:22:52+00:00"
  8874. },
  8875. {
  8876. "name": "phar-io/manifest",
  8877. "version": "dev-master",
  8878. "source": {
  8879. "type": "git",
  8880. "url": "https://github.com/phar-io/manifest.git",
  8881. "reference": "c581d4941e196459bf76c945a8ca922963a66708"
  8882. },
  8883. "dist": {
  8884. "type": "zip",
  8885. "url": "https://api.github.com/repos/phar-io/manifest/zipball/c581d4941e196459bf76c945a8ca922963a66708",
  8886. "reference": "c581d4941e196459bf76c945a8ca922963a66708",
  8887. "shasum": "",
  8888. "mirrors": [
  8889. {
  8890. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8891. "preferred": true
  8892. }
  8893. ]
  8894. },
  8895. "require": {
  8896. "ext-dom": "*",
  8897. "ext-libxml": "*",
  8898. "ext-phar": "*",
  8899. "ext-xmlwriter": "*",
  8900. "phar-io/version": "^3.0.1",
  8901. "php": "^7.2 || ^8.0"
  8902. },
  8903. "default-branch": true,
  8904. "type": "library",
  8905. "extra": {
  8906. "branch-alias": {
  8907. "dev-master": "2.0.x-dev"
  8908. }
  8909. },
  8910. "autoload": {
  8911. "classmap": [
  8912. "src/"
  8913. ]
  8914. },
  8915. "notification-url": "https://packagist.org/downloads/",
  8916. "license": [
  8917. "BSD-3-Clause"
  8918. ],
  8919. "authors": [
  8920. {
  8921. "name": "Arne Blankerts",
  8922. "email": "arne@blankerts.de",
  8923. "role": "Developer"
  8924. },
  8925. {
  8926. "name": "Sebastian Heuer",
  8927. "email": "sebastian@phpeople.de",
  8928. "role": "Developer"
  8929. },
  8930. {
  8931. "name": "Sebastian Bergmann",
  8932. "email": "sebastian@phpunit.de",
  8933. "role": "Developer"
  8934. }
  8935. ],
  8936. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8937. "support": {
  8938. "issues": "https://github.com/phar-io/manifest/issues",
  8939. "source": "https://github.com/phar-io/manifest/tree/master"
  8940. },
  8941. "funding": [
  8942. {
  8943. "url": "https://github.com/theseer",
  8944. "type": "github"
  8945. }
  8946. ],
  8947. "time": "2025-11-27T15:23:09+00:00"
  8948. },
  8949. {
  8950. "name": "phar-io/version",
  8951. "version": "3.2.1",
  8952. "source": {
  8953. "type": "git",
  8954. "url": "https://github.com/phar-io/version.git",
  8955. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8956. },
  8957. "dist": {
  8958. "type": "zip",
  8959. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8960. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8961. "shasum": "",
  8962. "mirrors": [
  8963. {
  8964. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8965. "preferred": true
  8966. }
  8967. ]
  8968. },
  8969. "require": {
  8970. "php": "^7.2 || ^8.0"
  8971. },
  8972. "type": "library",
  8973. "autoload": {
  8974. "classmap": [
  8975. "src/"
  8976. ]
  8977. },
  8978. "notification-url": "https://packagist.org/downloads/",
  8979. "license": [
  8980. "BSD-3-Clause"
  8981. ],
  8982. "authors": [
  8983. {
  8984. "name": "Arne Blankerts",
  8985. "email": "arne@blankerts.de",
  8986. "role": "Developer"
  8987. },
  8988. {
  8989. "name": "Sebastian Heuer",
  8990. "email": "sebastian@phpeople.de",
  8991. "role": "Developer"
  8992. },
  8993. {
  8994. "name": "Sebastian Bergmann",
  8995. "email": "sebastian@phpunit.de",
  8996. "role": "Developer"
  8997. }
  8998. ],
  8999. "description": "Library for handling version information and constraints",
  9000. "support": {
  9001. "issues": "https://github.com/phar-io/version/issues",
  9002. "source": "https://github.com/phar-io/version/tree/3.2.1"
  9003. },
  9004. "time": "2022-02-21T01:04:05+00:00"
  9005. },
  9006. {
  9007. "name": "phpunit/php-code-coverage",
  9008. "version": "9.2.32",
  9009. "source": {
  9010. "type": "git",
  9011. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9012. "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5"
  9013. },
  9014. "dist": {
  9015. "type": "zip",
  9016. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/85402a822d1ecf1db1096959413d35e1c37cf1a5",
  9017. "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5",
  9018. "shasum": "",
  9019. "mirrors": [
  9020. {
  9021. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9022. "preferred": true
  9023. }
  9024. ]
  9025. },
  9026. "require": {
  9027. "ext-dom": "*",
  9028. "ext-libxml": "*",
  9029. "ext-xmlwriter": "*",
  9030. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  9031. "php": ">=7.3",
  9032. "phpunit/php-file-iterator": "^3.0.6",
  9033. "phpunit/php-text-template": "^2.0.4",
  9034. "sebastian/code-unit-reverse-lookup": "^2.0.3",
  9035. "sebastian/complexity": "^2.0.3",
  9036. "sebastian/environment": "^5.1.5",
  9037. "sebastian/lines-of-code": "^1.0.4",
  9038. "sebastian/version": "^3.0.2",
  9039. "theseer/tokenizer": "^1.2.3"
  9040. },
  9041. "require-dev": {
  9042. "phpunit/phpunit": "^9.6"
  9043. },
  9044. "suggest": {
  9045. "ext-pcov": "PHP extension that provides line coverage",
  9046. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9047. },
  9048. "type": "library",
  9049. "extra": {
  9050. "branch-alias": {
  9051. "dev-main": "9.2.x-dev"
  9052. }
  9053. },
  9054. "autoload": {
  9055. "classmap": [
  9056. "src/"
  9057. ]
  9058. },
  9059. "notification-url": "https://packagist.org/downloads/",
  9060. "license": [
  9061. "BSD-3-Clause"
  9062. ],
  9063. "authors": [
  9064. {
  9065. "name": "Sebastian Bergmann",
  9066. "email": "sebastian@phpunit.de",
  9067. "role": "lead"
  9068. }
  9069. ],
  9070. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9071. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9072. "keywords": [
  9073. "coverage",
  9074. "testing",
  9075. "xunit"
  9076. ],
  9077. "support": {
  9078. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9079. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  9080. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.32"
  9081. },
  9082. "funding": [
  9083. {
  9084. "url": "https://github.com/sebastianbergmann",
  9085. "type": "github"
  9086. }
  9087. ],
  9088. "time": "2024-08-22T04:23:01+00:00"
  9089. },
  9090. {
  9091. "name": "phpunit/php-file-iterator",
  9092. "version": "3.0.6",
  9093. "source": {
  9094. "type": "git",
  9095. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9096. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  9097. },
  9098. "dist": {
  9099. "type": "zip",
  9100. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9101. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9102. "shasum": "",
  9103. "mirrors": [
  9104. {
  9105. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9106. "preferred": true
  9107. }
  9108. ]
  9109. },
  9110. "require": {
  9111. "php": ">=7.3"
  9112. },
  9113. "require-dev": {
  9114. "phpunit/phpunit": "^9.3"
  9115. },
  9116. "type": "library",
  9117. "extra": {
  9118. "branch-alias": {
  9119. "dev-master": "3.0-dev"
  9120. }
  9121. },
  9122. "autoload": {
  9123. "classmap": [
  9124. "src/"
  9125. ]
  9126. },
  9127. "notification-url": "https://packagist.org/downloads/",
  9128. "license": [
  9129. "BSD-3-Clause"
  9130. ],
  9131. "authors": [
  9132. {
  9133. "name": "Sebastian Bergmann",
  9134. "email": "sebastian@phpunit.de",
  9135. "role": "lead"
  9136. }
  9137. ],
  9138. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9139. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9140. "keywords": [
  9141. "filesystem",
  9142. "iterator"
  9143. ],
  9144. "support": {
  9145. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9146. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  9147. },
  9148. "funding": [
  9149. {
  9150. "url": "https://github.com/sebastianbergmann",
  9151. "type": "github"
  9152. }
  9153. ],
  9154. "time": "2021-12-02T12:48:52+00:00"
  9155. },
  9156. {
  9157. "name": "phpunit/php-invoker",
  9158. "version": "3.1.1",
  9159. "source": {
  9160. "type": "git",
  9161. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9162. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  9163. },
  9164. "dist": {
  9165. "type": "zip",
  9166. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9167. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9168. "shasum": "",
  9169. "mirrors": [
  9170. {
  9171. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9172. "preferred": true
  9173. }
  9174. ]
  9175. },
  9176. "require": {
  9177. "php": ">=7.3"
  9178. },
  9179. "require-dev": {
  9180. "ext-pcntl": "*",
  9181. "phpunit/phpunit": "^9.3"
  9182. },
  9183. "suggest": {
  9184. "ext-pcntl": "*"
  9185. },
  9186. "type": "library",
  9187. "extra": {
  9188. "branch-alias": {
  9189. "dev-master": "3.1-dev"
  9190. }
  9191. },
  9192. "autoload": {
  9193. "classmap": [
  9194. "src/"
  9195. ]
  9196. },
  9197. "notification-url": "https://packagist.org/downloads/",
  9198. "license": [
  9199. "BSD-3-Clause"
  9200. ],
  9201. "authors": [
  9202. {
  9203. "name": "Sebastian Bergmann",
  9204. "email": "sebastian@phpunit.de",
  9205. "role": "lead"
  9206. }
  9207. ],
  9208. "description": "Invoke callables with a timeout",
  9209. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9210. "keywords": [
  9211. "process"
  9212. ],
  9213. "support": {
  9214. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9215. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  9216. },
  9217. "funding": [
  9218. {
  9219. "url": "https://github.com/sebastianbergmann",
  9220. "type": "github"
  9221. }
  9222. ],
  9223. "time": "2020-09-28T05:58:55+00:00"
  9224. },
  9225. {
  9226. "name": "phpunit/php-text-template",
  9227. "version": "2.0.4",
  9228. "source": {
  9229. "type": "git",
  9230. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9231. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  9232. },
  9233. "dist": {
  9234. "type": "zip",
  9235. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9236. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9237. "shasum": "",
  9238. "mirrors": [
  9239. {
  9240. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9241. "preferred": true
  9242. }
  9243. ]
  9244. },
  9245. "require": {
  9246. "php": ">=7.3"
  9247. },
  9248. "require-dev": {
  9249. "phpunit/phpunit": "^9.3"
  9250. },
  9251. "type": "library",
  9252. "extra": {
  9253. "branch-alias": {
  9254. "dev-master": "2.0-dev"
  9255. }
  9256. },
  9257. "autoload": {
  9258. "classmap": [
  9259. "src/"
  9260. ]
  9261. },
  9262. "notification-url": "https://packagist.org/downloads/",
  9263. "license": [
  9264. "BSD-3-Clause"
  9265. ],
  9266. "authors": [
  9267. {
  9268. "name": "Sebastian Bergmann",
  9269. "email": "sebastian@phpunit.de",
  9270. "role": "lead"
  9271. }
  9272. ],
  9273. "description": "Simple template engine.",
  9274. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9275. "keywords": [
  9276. "template"
  9277. ],
  9278. "support": {
  9279. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9280. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  9281. },
  9282. "funding": [
  9283. {
  9284. "url": "https://github.com/sebastianbergmann",
  9285. "type": "github"
  9286. }
  9287. ],
  9288. "time": "2020-10-26T05:33:50+00:00"
  9289. },
  9290. {
  9291. "name": "phpunit/php-timer",
  9292. "version": "5.0.3",
  9293. "source": {
  9294. "type": "git",
  9295. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9296. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  9297. },
  9298. "dist": {
  9299. "type": "zip",
  9300. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9301. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9302. "shasum": "",
  9303. "mirrors": [
  9304. {
  9305. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9306. "preferred": true
  9307. }
  9308. ]
  9309. },
  9310. "require": {
  9311. "php": ">=7.3"
  9312. },
  9313. "require-dev": {
  9314. "phpunit/phpunit": "^9.3"
  9315. },
  9316. "type": "library",
  9317. "extra": {
  9318. "branch-alias": {
  9319. "dev-master": "5.0-dev"
  9320. }
  9321. },
  9322. "autoload": {
  9323. "classmap": [
  9324. "src/"
  9325. ]
  9326. },
  9327. "notification-url": "https://packagist.org/downloads/",
  9328. "license": [
  9329. "BSD-3-Clause"
  9330. ],
  9331. "authors": [
  9332. {
  9333. "name": "Sebastian Bergmann",
  9334. "email": "sebastian@phpunit.de",
  9335. "role": "lead"
  9336. }
  9337. ],
  9338. "description": "Utility class for timing",
  9339. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9340. "keywords": [
  9341. "timer"
  9342. ],
  9343. "support": {
  9344. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9345. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  9346. },
  9347. "funding": [
  9348. {
  9349. "url": "https://github.com/sebastianbergmann",
  9350. "type": "github"
  9351. }
  9352. ],
  9353. "time": "2020-10-26T13:16:10+00:00"
  9354. },
  9355. {
  9356. "name": "phpunit/phpunit",
  9357. "version": "9.6.30",
  9358. "source": {
  9359. "type": "git",
  9360. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9361. "reference": "b69489b312503bf8fa6d75a76916919d7d2fa6d4"
  9362. },
  9363. "dist": {
  9364. "type": "zip",
  9365. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/b69489b312503bf8fa6d75a76916919d7d2fa6d4",
  9366. "reference": "b69489b312503bf8fa6d75a76916919d7d2fa6d4",
  9367. "shasum": "",
  9368. "mirrors": [
  9369. {
  9370. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9371. "preferred": true
  9372. }
  9373. ]
  9374. },
  9375. "require": {
  9376. "doctrine/instantiator": "^1.5.0 || ^2",
  9377. "ext-dom": "*",
  9378. "ext-json": "*",
  9379. "ext-libxml": "*",
  9380. "ext-mbstring": "*",
  9381. "ext-xml": "*",
  9382. "ext-xmlwriter": "*",
  9383. "myclabs/deep-copy": "^1.13.4",
  9384. "phar-io/manifest": "^2.0.4",
  9385. "phar-io/version": "^3.2.1",
  9386. "php": ">=7.3",
  9387. "phpunit/php-code-coverage": "^9.2.32",
  9388. "phpunit/php-file-iterator": "^3.0.6",
  9389. "phpunit/php-invoker": "^3.1.1",
  9390. "phpunit/php-text-template": "^2.0.4",
  9391. "phpunit/php-timer": "^5.0.3",
  9392. "sebastian/cli-parser": "^1.0.2",
  9393. "sebastian/code-unit": "^1.0.8",
  9394. "sebastian/comparator": "^4.0.9",
  9395. "sebastian/diff": "^4.0.6",
  9396. "sebastian/environment": "^5.1.5",
  9397. "sebastian/exporter": "^4.0.8",
  9398. "sebastian/global-state": "^5.0.8",
  9399. "sebastian/object-enumerator": "^4.0.4",
  9400. "sebastian/resource-operations": "^3.0.4",
  9401. "sebastian/type": "^3.2.1",
  9402. "sebastian/version": "^3.0.2"
  9403. },
  9404. "suggest": {
  9405. "ext-soap": "To be able to generate mocks based on WSDL files",
  9406. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9407. },
  9408. "bin": [
  9409. "phpunit"
  9410. ],
  9411. "type": "library",
  9412. "extra": {
  9413. "branch-alias": {
  9414. "dev-master": "9.6-dev"
  9415. }
  9416. },
  9417. "autoload": {
  9418. "files": [
  9419. "src/Framework/Assert/Functions.php"
  9420. ],
  9421. "classmap": [
  9422. "src/"
  9423. ]
  9424. },
  9425. "notification-url": "https://packagist.org/downloads/",
  9426. "license": [
  9427. "BSD-3-Clause"
  9428. ],
  9429. "authors": [
  9430. {
  9431. "name": "Sebastian Bergmann",
  9432. "email": "sebastian@phpunit.de",
  9433. "role": "lead"
  9434. }
  9435. ],
  9436. "description": "The PHP Unit Testing framework.",
  9437. "homepage": "https://phpunit.de/",
  9438. "keywords": [
  9439. "phpunit",
  9440. "testing",
  9441. "xunit"
  9442. ],
  9443. "support": {
  9444. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9445. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9446. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.30"
  9447. },
  9448. "funding": [
  9449. {
  9450. "url": "https://phpunit.de/sponsors.html",
  9451. "type": "custom"
  9452. },
  9453. {
  9454. "url": "https://github.com/sebastianbergmann",
  9455. "type": "github"
  9456. },
  9457. {
  9458. "url": "https://liberapay.com/sebastianbergmann",
  9459. "type": "liberapay"
  9460. },
  9461. {
  9462. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  9463. "type": "thanks_dev"
  9464. },
  9465. {
  9466. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9467. "type": "tidelift"
  9468. }
  9469. ],
  9470. "time": "2025-12-01T07:35:08+00:00"
  9471. },
  9472. {
  9473. "name": "sebastian/cli-parser",
  9474. "version": "1.0.2",
  9475. "source": {
  9476. "type": "git",
  9477. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9478. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b"
  9479. },
  9480. "dist": {
  9481. "type": "zip",
  9482. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  9483. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  9484. "shasum": "",
  9485. "mirrors": [
  9486. {
  9487. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9488. "preferred": true
  9489. }
  9490. ]
  9491. },
  9492. "require": {
  9493. "php": ">=7.3"
  9494. },
  9495. "require-dev": {
  9496. "phpunit/phpunit": "^9.3"
  9497. },
  9498. "type": "library",
  9499. "extra": {
  9500. "branch-alias": {
  9501. "dev-master": "1.0-dev"
  9502. }
  9503. },
  9504. "autoload": {
  9505. "classmap": [
  9506. "src/"
  9507. ]
  9508. },
  9509. "notification-url": "https://packagist.org/downloads/",
  9510. "license": [
  9511. "BSD-3-Clause"
  9512. ],
  9513. "authors": [
  9514. {
  9515. "name": "Sebastian Bergmann",
  9516. "email": "sebastian@phpunit.de",
  9517. "role": "lead"
  9518. }
  9519. ],
  9520. "description": "Library for parsing CLI options",
  9521. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9522. "support": {
  9523. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9524. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.2"
  9525. },
  9526. "funding": [
  9527. {
  9528. "url": "https://github.com/sebastianbergmann",
  9529. "type": "github"
  9530. }
  9531. ],
  9532. "time": "2024-03-02T06:27:43+00:00"
  9533. },
  9534. {
  9535. "name": "sebastian/code-unit",
  9536. "version": "1.0.8",
  9537. "source": {
  9538. "type": "git",
  9539. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9540. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  9541. },
  9542. "dist": {
  9543. "type": "zip",
  9544. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9545. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9546. "shasum": "",
  9547. "mirrors": [
  9548. {
  9549. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9550. "preferred": true
  9551. }
  9552. ]
  9553. },
  9554. "require": {
  9555. "php": ">=7.3"
  9556. },
  9557. "require-dev": {
  9558. "phpunit/phpunit": "^9.3"
  9559. },
  9560. "type": "library",
  9561. "extra": {
  9562. "branch-alias": {
  9563. "dev-master": "1.0-dev"
  9564. }
  9565. },
  9566. "autoload": {
  9567. "classmap": [
  9568. "src/"
  9569. ]
  9570. },
  9571. "notification-url": "https://packagist.org/downloads/",
  9572. "license": [
  9573. "BSD-3-Clause"
  9574. ],
  9575. "authors": [
  9576. {
  9577. "name": "Sebastian Bergmann",
  9578. "email": "sebastian@phpunit.de",
  9579. "role": "lead"
  9580. }
  9581. ],
  9582. "description": "Collection of value objects that represent the PHP code units",
  9583. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9584. "support": {
  9585. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9586. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  9587. },
  9588. "funding": [
  9589. {
  9590. "url": "https://github.com/sebastianbergmann",
  9591. "type": "github"
  9592. }
  9593. ],
  9594. "time": "2020-10-26T13:08:54+00:00"
  9595. },
  9596. {
  9597. "name": "sebastian/code-unit-reverse-lookup",
  9598. "version": "2.0.3",
  9599. "source": {
  9600. "type": "git",
  9601. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9602. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  9603. },
  9604. "dist": {
  9605. "type": "zip",
  9606. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9607. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9608. "shasum": "",
  9609. "mirrors": [
  9610. {
  9611. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9612. "preferred": true
  9613. }
  9614. ]
  9615. },
  9616. "require": {
  9617. "php": ">=7.3"
  9618. },
  9619. "require-dev": {
  9620. "phpunit/phpunit": "^9.3"
  9621. },
  9622. "type": "library",
  9623. "extra": {
  9624. "branch-alias": {
  9625. "dev-master": "2.0-dev"
  9626. }
  9627. },
  9628. "autoload": {
  9629. "classmap": [
  9630. "src/"
  9631. ]
  9632. },
  9633. "notification-url": "https://packagist.org/downloads/",
  9634. "license": [
  9635. "BSD-3-Clause"
  9636. ],
  9637. "authors": [
  9638. {
  9639. "name": "Sebastian Bergmann",
  9640. "email": "sebastian@phpunit.de"
  9641. }
  9642. ],
  9643. "description": "Looks up which function or method a line of code belongs to",
  9644. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9645. "support": {
  9646. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9647. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  9648. },
  9649. "funding": [
  9650. {
  9651. "url": "https://github.com/sebastianbergmann",
  9652. "type": "github"
  9653. }
  9654. ],
  9655. "time": "2020-09-28T05:30:19+00:00"
  9656. },
  9657. {
  9658. "name": "sebastian/comparator",
  9659. "version": "4.0.x-dev",
  9660. "source": {
  9661. "type": "git",
  9662. "url": "https://github.com/sebastianbergmann/comparator.git",
  9663. "reference": "67a2df3a62639eab2cc5906065e9805d4fd5dfc5"
  9664. },
  9665. "dist": {
  9666. "type": "zip",
  9667. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/67a2df3a62639eab2cc5906065e9805d4fd5dfc5",
  9668. "reference": "67a2df3a62639eab2cc5906065e9805d4fd5dfc5",
  9669. "shasum": "",
  9670. "mirrors": [
  9671. {
  9672. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9673. "preferred": true
  9674. }
  9675. ]
  9676. },
  9677. "require": {
  9678. "php": ">=7.3",
  9679. "sebastian/diff": "^4.0",
  9680. "sebastian/exporter": "^4.0"
  9681. },
  9682. "require-dev": {
  9683. "phpunit/phpunit": "^9.3"
  9684. },
  9685. "type": "library",
  9686. "extra": {
  9687. "branch-alias": {
  9688. "dev-master": "4.0-dev"
  9689. }
  9690. },
  9691. "autoload": {
  9692. "classmap": [
  9693. "src/"
  9694. ]
  9695. },
  9696. "notification-url": "https://packagist.org/downloads/",
  9697. "license": [
  9698. "BSD-3-Clause"
  9699. ],
  9700. "authors": [
  9701. {
  9702. "name": "Sebastian Bergmann",
  9703. "email": "sebastian@phpunit.de"
  9704. },
  9705. {
  9706. "name": "Jeff Welch",
  9707. "email": "whatthejeff@gmail.com"
  9708. },
  9709. {
  9710. "name": "Volker Dusch",
  9711. "email": "github@wallbash.com"
  9712. },
  9713. {
  9714. "name": "Bernhard Schussek",
  9715. "email": "bschussek@2bepublished.at"
  9716. }
  9717. ],
  9718. "description": "Provides the functionality to compare PHP values for equality",
  9719. "homepage": "https://github.com/sebastianbergmann/comparator",
  9720. "keywords": [
  9721. "comparator",
  9722. "compare",
  9723. "equality"
  9724. ],
  9725. "support": {
  9726. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9727. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.9"
  9728. },
  9729. "funding": [
  9730. {
  9731. "url": "https://github.com/sebastianbergmann",
  9732. "type": "github"
  9733. },
  9734. {
  9735. "url": "https://liberapay.com/sebastianbergmann",
  9736. "type": "liberapay"
  9737. },
  9738. {
  9739. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  9740. "type": "thanks_dev"
  9741. },
  9742. {
  9743. "url": "https://tidelift.com/funding/github/packagist/sebastian/comparator",
  9744. "type": "tidelift"
  9745. }
  9746. ],
  9747. "time": "2025-08-10T06:51:50+00:00"
  9748. },
  9749. {
  9750. "name": "sebastian/complexity",
  9751. "version": "2.0.3",
  9752. "source": {
  9753. "type": "git",
  9754. "url": "https://github.com/sebastianbergmann/complexity.git",
  9755. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a"
  9756. },
  9757. "dist": {
  9758. "type": "zip",
  9759. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a",
  9760. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a",
  9761. "shasum": "",
  9762. "mirrors": [
  9763. {
  9764. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9765. "preferred": true
  9766. }
  9767. ]
  9768. },
  9769. "require": {
  9770. "nikic/php-parser": "^4.18 || ^5.0",
  9771. "php": ">=7.3"
  9772. },
  9773. "require-dev": {
  9774. "phpunit/phpunit": "^9.3"
  9775. },
  9776. "type": "library",
  9777. "extra": {
  9778. "branch-alias": {
  9779. "dev-master": "2.0-dev"
  9780. }
  9781. },
  9782. "autoload": {
  9783. "classmap": [
  9784. "src/"
  9785. ]
  9786. },
  9787. "notification-url": "https://packagist.org/downloads/",
  9788. "license": [
  9789. "BSD-3-Clause"
  9790. ],
  9791. "authors": [
  9792. {
  9793. "name": "Sebastian Bergmann",
  9794. "email": "sebastian@phpunit.de",
  9795. "role": "lead"
  9796. }
  9797. ],
  9798. "description": "Library for calculating the complexity of PHP code units",
  9799. "homepage": "https://github.com/sebastianbergmann/complexity",
  9800. "support": {
  9801. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9802. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3"
  9803. },
  9804. "funding": [
  9805. {
  9806. "url": "https://github.com/sebastianbergmann",
  9807. "type": "github"
  9808. }
  9809. ],
  9810. "time": "2023-12-22T06:19:30+00:00"
  9811. },
  9812. {
  9813. "name": "sebastian/diff",
  9814. "version": "4.0.6",
  9815. "source": {
  9816. "type": "git",
  9817. "url": "https://github.com/sebastianbergmann/diff.git",
  9818. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  9819. },
  9820. "dist": {
  9821. "type": "zip",
  9822. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  9823. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  9824. "shasum": "",
  9825. "mirrors": [
  9826. {
  9827. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9828. "preferred": true
  9829. }
  9830. ]
  9831. },
  9832. "require": {
  9833. "php": ">=7.3"
  9834. },
  9835. "require-dev": {
  9836. "phpunit/phpunit": "^9.3",
  9837. "symfony/process": "^4.2 || ^5"
  9838. },
  9839. "type": "library",
  9840. "extra": {
  9841. "branch-alias": {
  9842. "dev-master": "4.0-dev"
  9843. }
  9844. },
  9845. "autoload": {
  9846. "classmap": [
  9847. "src/"
  9848. ]
  9849. },
  9850. "notification-url": "https://packagist.org/downloads/",
  9851. "license": [
  9852. "BSD-3-Clause"
  9853. ],
  9854. "authors": [
  9855. {
  9856. "name": "Sebastian Bergmann",
  9857. "email": "sebastian@phpunit.de"
  9858. },
  9859. {
  9860. "name": "Kore Nordmann",
  9861. "email": "mail@kore-nordmann.de"
  9862. }
  9863. ],
  9864. "description": "Diff implementation",
  9865. "homepage": "https://github.com/sebastianbergmann/diff",
  9866. "keywords": [
  9867. "diff",
  9868. "udiff",
  9869. "unidiff",
  9870. "unified diff"
  9871. ],
  9872. "support": {
  9873. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9874. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  9875. },
  9876. "funding": [
  9877. {
  9878. "url": "https://github.com/sebastianbergmann",
  9879. "type": "github"
  9880. }
  9881. ],
  9882. "time": "2024-03-02T06:30:58+00:00"
  9883. },
  9884. {
  9885. "name": "sebastian/environment",
  9886. "version": "5.1.5",
  9887. "source": {
  9888. "type": "git",
  9889. "url": "https://github.com/sebastianbergmann/environment.git",
  9890. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  9891. },
  9892. "dist": {
  9893. "type": "zip",
  9894. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9895. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9896. "shasum": "",
  9897. "mirrors": [
  9898. {
  9899. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9900. "preferred": true
  9901. }
  9902. ]
  9903. },
  9904. "require": {
  9905. "php": ">=7.3"
  9906. },
  9907. "require-dev": {
  9908. "phpunit/phpunit": "^9.3"
  9909. },
  9910. "suggest": {
  9911. "ext-posix": "*"
  9912. },
  9913. "type": "library",
  9914. "extra": {
  9915. "branch-alias": {
  9916. "dev-master": "5.1-dev"
  9917. }
  9918. },
  9919. "autoload": {
  9920. "classmap": [
  9921. "src/"
  9922. ]
  9923. },
  9924. "notification-url": "https://packagist.org/downloads/",
  9925. "license": [
  9926. "BSD-3-Clause"
  9927. ],
  9928. "authors": [
  9929. {
  9930. "name": "Sebastian Bergmann",
  9931. "email": "sebastian@phpunit.de"
  9932. }
  9933. ],
  9934. "description": "Provides functionality to handle HHVM/PHP environments",
  9935. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9936. "keywords": [
  9937. "Xdebug",
  9938. "environment",
  9939. "hhvm"
  9940. ],
  9941. "support": {
  9942. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9943. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  9944. },
  9945. "funding": [
  9946. {
  9947. "url": "https://github.com/sebastianbergmann",
  9948. "type": "github"
  9949. }
  9950. ],
  9951. "time": "2023-02-03T06:03:51+00:00"
  9952. },
  9953. {
  9954. "name": "sebastian/exporter",
  9955. "version": "4.0.8",
  9956. "source": {
  9957. "type": "git",
  9958. "url": "https://github.com/sebastianbergmann/exporter.git",
  9959. "reference": "14c6ba52f95a36c3d27c835d65efc7123c446e8c"
  9960. },
  9961. "dist": {
  9962. "type": "zip",
  9963. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/14c6ba52f95a36c3d27c835d65efc7123c446e8c",
  9964. "reference": "14c6ba52f95a36c3d27c835d65efc7123c446e8c",
  9965. "shasum": "",
  9966. "mirrors": [
  9967. {
  9968. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9969. "preferred": true
  9970. }
  9971. ]
  9972. },
  9973. "require": {
  9974. "php": ">=7.3",
  9975. "sebastian/recursion-context": "^4.0"
  9976. },
  9977. "require-dev": {
  9978. "ext-mbstring": "*",
  9979. "phpunit/phpunit": "^9.3"
  9980. },
  9981. "type": "library",
  9982. "extra": {
  9983. "branch-alias": {
  9984. "dev-master": "4.0-dev"
  9985. }
  9986. },
  9987. "autoload": {
  9988. "classmap": [
  9989. "src/"
  9990. ]
  9991. },
  9992. "notification-url": "https://packagist.org/downloads/",
  9993. "license": [
  9994. "BSD-3-Clause"
  9995. ],
  9996. "authors": [
  9997. {
  9998. "name": "Sebastian Bergmann",
  9999. "email": "sebastian@phpunit.de"
  10000. },
  10001. {
  10002. "name": "Jeff Welch",
  10003. "email": "whatthejeff@gmail.com"
  10004. },
  10005. {
  10006. "name": "Volker Dusch",
  10007. "email": "github@wallbash.com"
  10008. },
  10009. {
  10010. "name": "Adam Harvey",
  10011. "email": "aharvey@php.net"
  10012. },
  10013. {
  10014. "name": "Bernhard Schussek",
  10015. "email": "bschussek@gmail.com"
  10016. }
  10017. ],
  10018. "description": "Provides the functionality to export PHP variables for visualization",
  10019. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10020. "keywords": [
  10021. "export",
  10022. "exporter"
  10023. ],
  10024. "support": {
  10025. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10026. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.8"
  10027. },
  10028. "funding": [
  10029. {
  10030. "url": "https://github.com/sebastianbergmann",
  10031. "type": "github"
  10032. },
  10033. {
  10034. "url": "https://liberapay.com/sebastianbergmann",
  10035. "type": "liberapay"
  10036. },
  10037. {
  10038. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  10039. "type": "thanks_dev"
  10040. },
  10041. {
  10042. "url": "https://tidelift.com/funding/github/packagist/sebastian/exporter",
  10043. "type": "tidelift"
  10044. }
  10045. ],
  10046. "time": "2025-09-24T06:03:27+00:00"
  10047. },
  10048. {
  10049. "name": "sebastian/global-state",
  10050. "version": "5.0.8",
  10051. "source": {
  10052. "type": "git",
  10053. "url": "https://github.com/sebastianbergmann/global-state.git",
  10054. "reference": "b6781316bdcd28260904e7cc18ec983d0d2ef4f6"
  10055. },
  10056. "dist": {
  10057. "type": "zip",
  10058. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/b6781316bdcd28260904e7cc18ec983d0d2ef4f6",
  10059. "reference": "b6781316bdcd28260904e7cc18ec983d0d2ef4f6",
  10060. "shasum": "",
  10061. "mirrors": [
  10062. {
  10063. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10064. "preferred": true
  10065. }
  10066. ]
  10067. },
  10068. "require": {
  10069. "php": ">=7.3",
  10070. "sebastian/object-reflector": "^2.0",
  10071. "sebastian/recursion-context": "^4.0"
  10072. },
  10073. "require-dev": {
  10074. "ext-dom": "*",
  10075. "phpunit/phpunit": "^9.3"
  10076. },
  10077. "suggest": {
  10078. "ext-uopz": "*"
  10079. },
  10080. "type": "library",
  10081. "extra": {
  10082. "branch-alias": {
  10083. "dev-master": "5.0-dev"
  10084. }
  10085. },
  10086. "autoload": {
  10087. "classmap": [
  10088. "src/"
  10089. ]
  10090. },
  10091. "notification-url": "https://packagist.org/downloads/",
  10092. "license": [
  10093. "BSD-3-Clause"
  10094. ],
  10095. "authors": [
  10096. {
  10097. "name": "Sebastian Bergmann",
  10098. "email": "sebastian@phpunit.de"
  10099. }
  10100. ],
  10101. "description": "Snapshotting of global state",
  10102. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  10103. "keywords": [
  10104. "global state"
  10105. ],
  10106. "support": {
  10107. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10108. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.8"
  10109. },
  10110. "funding": [
  10111. {
  10112. "url": "https://github.com/sebastianbergmann",
  10113. "type": "github"
  10114. },
  10115. {
  10116. "url": "https://liberapay.com/sebastianbergmann",
  10117. "type": "liberapay"
  10118. },
  10119. {
  10120. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  10121. "type": "thanks_dev"
  10122. },
  10123. {
  10124. "url": "https://tidelift.com/funding/github/packagist/sebastian/global-state",
  10125. "type": "tidelift"
  10126. }
  10127. ],
  10128. "time": "2025-08-10T07:10:35+00:00"
  10129. },
  10130. {
  10131. "name": "sebastian/lines-of-code",
  10132. "version": "1.0.4",
  10133. "source": {
  10134. "type": "git",
  10135. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10136. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5"
  10137. },
  10138. "dist": {
  10139. "type": "zip",
  10140. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  10141. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  10142. "shasum": "",
  10143. "mirrors": [
  10144. {
  10145. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10146. "preferred": true
  10147. }
  10148. ]
  10149. },
  10150. "require": {
  10151. "nikic/php-parser": "^4.18 || ^5.0",
  10152. "php": ">=7.3"
  10153. },
  10154. "require-dev": {
  10155. "phpunit/phpunit": "^9.3"
  10156. },
  10157. "type": "library",
  10158. "extra": {
  10159. "branch-alias": {
  10160. "dev-master": "1.0-dev"
  10161. }
  10162. },
  10163. "autoload": {
  10164. "classmap": [
  10165. "src/"
  10166. ]
  10167. },
  10168. "notification-url": "https://packagist.org/downloads/",
  10169. "license": [
  10170. "BSD-3-Clause"
  10171. ],
  10172. "authors": [
  10173. {
  10174. "name": "Sebastian Bergmann",
  10175. "email": "sebastian@phpunit.de",
  10176. "role": "lead"
  10177. }
  10178. ],
  10179. "description": "Library for counting the lines of code in PHP source code",
  10180. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10181. "support": {
  10182. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10183. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4"
  10184. },
  10185. "funding": [
  10186. {
  10187. "url": "https://github.com/sebastianbergmann",
  10188. "type": "github"
  10189. }
  10190. ],
  10191. "time": "2023-12-22T06:20:34+00:00"
  10192. },
  10193. {
  10194. "name": "sebastian/object-enumerator",
  10195. "version": "4.0.4",
  10196. "source": {
  10197. "type": "git",
  10198. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10199. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  10200. },
  10201. "dist": {
  10202. "type": "zip",
  10203. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  10204. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  10205. "shasum": "",
  10206. "mirrors": [
  10207. {
  10208. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10209. "preferred": true
  10210. }
  10211. ]
  10212. },
  10213. "require": {
  10214. "php": ">=7.3",
  10215. "sebastian/object-reflector": "^2.0",
  10216. "sebastian/recursion-context": "^4.0"
  10217. },
  10218. "require-dev": {
  10219. "phpunit/phpunit": "^9.3"
  10220. },
  10221. "type": "library",
  10222. "extra": {
  10223. "branch-alias": {
  10224. "dev-master": "4.0-dev"
  10225. }
  10226. },
  10227. "autoload": {
  10228. "classmap": [
  10229. "src/"
  10230. ]
  10231. },
  10232. "notification-url": "https://packagist.org/downloads/",
  10233. "license": [
  10234. "BSD-3-Clause"
  10235. ],
  10236. "authors": [
  10237. {
  10238. "name": "Sebastian Bergmann",
  10239. "email": "sebastian@phpunit.de"
  10240. }
  10241. ],
  10242. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10243. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10244. "support": {
  10245. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10246. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  10247. },
  10248. "funding": [
  10249. {
  10250. "url": "https://github.com/sebastianbergmann",
  10251. "type": "github"
  10252. }
  10253. ],
  10254. "time": "2020-10-26T13:12:34+00:00"
  10255. },
  10256. {
  10257. "name": "sebastian/object-reflector",
  10258. "version": "2.0.4",
  10259. "source": {
  10260. "type": "git",
  10261. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10262. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  10263. },
  10264. "dist": {
  10265. "type": "zip",
  10266. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10267. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10268. "shasum": "",
  10269. "mirrors": [
  10270. {
  10271. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10272. "preferred": true
  10273. }
  10274. ]
  10275. },
  10276. "require": {
  10277. "php": ">=7.3"
  10278. },
  10279. "require-dev": {
  10280. "phpunit/phpunit": "^9.3"
  10281. },
  10282. "type": "library",
  10283. "extra": {
  10284. "branch-alias": {
  10285. "dev-master": "2.0-dev"
  10286. }
  10287. },
  10288. "autoload": {
  10289. "classmap": [
  10290. "src/"
  10291. ]
  10292. },
  10293. "notification-url": "https://packagist.org/downloads/",
  10294. "license": [
  10295. "BSD-3-Clause"
  10296. ],
  10297. "authors": [
  10298. {
  10299. "name": "Sebastian Bergmann",
  10300. "email": "sebastian@phpunit.de"
  10301. }
  10302. ],
  10303. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10304. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10305. "support": {
  10306. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10307. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  10308. },
  10309. "funding": [
  10310. {
  10311. "url": "https://github.com/sebastianbergmann",
  10312. "type": "github"
  10313. }
  10314. ],
  10315. "time": "2020-10-26T13:14:26+00:00"
  10316. },
  10317. {
  10318. "name": "sebastian/recursion-context",
  10319. "version": "4.0.5",
  10320. "source": {
  10321. "type": "git",
  10322. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10323. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  10324. },
  10325. "dist": {
  10326. "type": "zip",
  10327. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10328. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10329. "shasum": "",
  10330. "mirrors": [
  10331. {
  10332. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10333. "preferred": true
  10334. }
  10335. ]
  10336. },
  10337. "require": {
  10338. "php": ">=7.3"
  10339. },
  10340. "require-dev": {
  10341. "phpunit/phpunit": "^9.3"
  10342. },
  10343. "type": "library",
  10344. "extra": {
  10345. "branch-alias": {
  10346. "dev-master": "4.0-dev"
  10347. }
  10348. },
  10349. "autoload": {
  10350. "classmap": [
  10351. "src/"
  10352. ]
  10353. },
  10354. "notification-url": "https://packagist.org/downloads/",
  10355. "license": [
  10356. "BSD-3-Clause"
  10357. ],
  10358. "authors": [
  10359. {
  10360. "name": "Sebastian Bergmann",
  10361. "email": "sebastian@phpunit.de"
  10362. },
  10363. {
  10364. "name": "Jeff Welch",
  10365. "email": "whatthejeff@gmail.com"
  10366. },
  10367. {
  10368. "name": "Adam Harvey",
  10369. "email": "aharvey@php.net"
  10370. }
  10371. ],
  10372. "description": "Provides functionality to recursively process PHP variables",
  10373. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10374. "support": {
  10375. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10376. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  10377. },
  10378. "funding": [
  10379. {
  10380. "url": "https://github.com/sebastianbergmann",
  10381. "type": "github"
  10382. }
  10383. ],
  10384. "time": "2023-02-03T06:07:39+00:00"
  10385. },
  10386. {
  10387. "name": "sebastian/resource-operations",
  10388. "version": "3.0.4",
  10389. "source": {
  10390. "type": "git",
  10391. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10392. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e"
  10393. },
  10394. "dist": {
  10395. "type": "zip",
  10396. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  10397. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  10398. "shasum": "",
  10399. "mirrors": [
  10400. {
  10401. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10402. "preferred": true
  10403. }
  10404. ]
  10405. },
  10406. "require": {
  10407. "php": ">=7.3"
  10408. },
  10409. "require-dev": {
  10410. "phpunit/phpunit": "^9.0"
  10411. },
  10412. "type": "library",
  10413. "extra": {
  10414. "branch-alias": {
  10415. "dev-main": "3.0-dev"
  10416. }
  10417. },
  10418. "autoload": {
  10419. "classmap": [
  10420. "src/"
  10421. ]
  10422. },
  10423. "notification-url": "https://packagist.org/downloads/",
  10424. "license": [
  10425. "BSD-3-Clause"
  10426. ],
  10427. "authors": [
  10428. {
  10429. "name": "Sebastian Bergmann",
  10430. "email": "sebastian@phpunit.de"
  10431. }
  10432. ],
  10433. "description": "Provides a list of PHP built-in functions that operate on resources",
  10434. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10435. "support": {
  10436. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.4"
  10437. },
  10438. "funding": [
  10439. {
  10440. "url": "https://github.com/sebastianbergmann",
  10441. "type": "github"
  10442. }
  10443. ],
  10444. "abandoned": true,
  10445. "time": "2024-03-14T16:00:52+00:00"
  10446. },
  10447. {
  10448. "name": "sebastian/type",
  10449. "version": "3.2.1",
  10450. "source": {
  10451. "type": "git",
  10452. "url": "https://github.com/sebastianbergmann/type.git",
  10453. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  10454. },
  10455. "dist": {
  10456. "type": "zip",
  10457. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10458. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10459. "shasum": "",
  10460. "mirrors": [
  10461. {
  10462. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10463. "preferred": true
  10464. }
  10465. ]
  10466. },
  10467. "require": {
  10468. "php": ">=7.3"
  10469. },
  10470. "require-dev": {
  10471. "phpunit/phpunit": "^9.5"
  10472. },
  10473. "type": "library",
  10474. "extra": {
  10475. "branch-alias": {
  10476. "dev-master": "3.2-dev"
  10477. }
  10478. },
  10479. "autoload": {
  10480. "classmap": [
  10481. "src/"
  10482. ]
  10483. },
  10484. "notification-url": "https://packagist.org/downloads/",
  10485. "license": [
  10486. "BSD-3-Clause"
  10487. ],
  10488. "authors": [
  10489. {
  10490. "name": "Sebastian Bergmann",
  10491. "email": "sebastian@phpunit.de",
  10492. "role": "lead"
  10493. }
  10494. ],
  10495. "description": "Collection of value objects that represent the types of the PHP type system",
  10496. "homepage": "https://github.com/sebastianbergmann/type",
  10497. "support": {
  10498. "issues": "https://github.com/sebastianbergmann/type/issues",
  10499. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  10500. },
  10501. "funding": [
  10502. {
  10503. "url": "https://github.com/sebastianbergmann",
  10504. "type": "github"
  10505. }
  10506. ],
  10507. "time": "2023-02-03T06:13:03+00:00"
  10508. },
  10509. {
  10510. "name": "sebastian/version",
  10511. "version": "3.0.2",
  10512. "source": {
  10513. "type": "git",
  10514. "url": "https://github.com/sebastianbergmann/version.git",
  10515. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  10516. },
  10517. "dist": {
  10518. "type": "zip",
  10519. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  10520. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  10521. "shasum": "",
  10522. "mirrors": [
  10523. {
  10524. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10525. "preferred": true
  10526. }
  10527. ]
  10528. },
  10529. "require": {
  10530. "php": ">=7.3"
  10531. },
  10532. "type": "library",
  10533. "extra": {
  10534. "branch-alias": {
  10535. "dev-master": "3.0-dev"
  10536. }
  10537. },
  10538. "autoload": {
  10539. "classmap": [
  10540. "src/"
  10541. ]
  10542. },
  10543. "notification-url": "https://packagist.org/downloads/",
  10544. "license": [
  10545. "BSD-3-Clause"
  10546. ],
  10547. "authors": [
  10548. {
  10549. "name": "Sebastian Bergmann",
  10550. "email": "sebastian@phpunit.de",
  10551. "role": "lead"
  10552. }
  10553. ],
  10554. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10555. "homepage": "https://github.com/sebastianbergmann/version",
  10556. "support": {
  10557. "issues": "https://github.com/sebastianbergmann/version/issues",
  10558. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  10559. },
  10560. "funding": [
  10561. {
  10562. "url": "https://github.com/sebastianbergmann",
  10563. "type": "github"
  10564. }
  10565. ],
  10566. "time": "2020-09-28T06:39:44+00:00"
  10567. },
  10568. {
  10569. "name": "theseer/tokenizer",
  10570. "version": "1.3.1",
  10571. "source": {
  10572. "type": "git",
  10573. "url": "https://github.com/theseer/tokenizer.git",
  10574. "reference": "b7489ce515e168639d17feec34b8847c326b0b3c"
  10575. },
  10576. "dist": {
  10577. "type": "zip",
  10578. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/b7489ce515e168639d17feec34b8847c326b0b3c",
  10579. "reference": "b7489ce515e168639d17feec34b8847c326b0b3c",
  10580. "shasum": "",
  10581. "mirrors": [
  10582. {
  10583. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10584. "preferred": true
  10585. }
  10586. ]
  10587. },
  10588. "require": {
  10589. "ext-dom": "*",
  10590. "ext-tokenizer": "*",
  10591. "ext-xmlwriter": "*",
  10592. "php": "^7.2 || ^8.0"
  10593. },
  10594. "type": "library",
  10595. "autoload": {
  10596. "classmap": [
  10597. "src/"
  10598. ]
  10599. },
  10600. "notification-url": "https://packagist.org/downloads/",
  10601. "license": [
  10602. "BSD-3-Clause"
  10603. ],
  10604. "authors": [
  10605. {
  10606. "name": "Arne Blankerts",
  10607. "email": "arne@blankerts.de",
  10608. "role": "Developer"
  10609. }
  10610. ],
  10611. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10612. "support": {
  10613. "issues": "https://github.com/theseer/tokenizer/issues",
  10614. "source": "https://github.com/theseer/tokenizer/tree/1.3.1"
  10615. },
  10616. "funding": [
  10617. {
  10618. "url": "https://github.com/theseer",
  10619. "type": "github"
  10620. }
  10621. ],
  10622. "time": "2025-11-17T20:03:58+00:00"
  10623. }
  10624. ],
  10625. "aliases": [],
  10626. "minimum-stability": "dev",
  10627. "stability-flags": {
  10628. "fukuball/jieba-php": 20
  10629. },
  10630. "prefer-stable": true,
  10631. "prefer-lowest": false,
  10632. "platform": {
  10633. "php": "^8.0",
  10634. "ext-json": "*"
  10635. },
  10636. "platform-dev": {},
  10637. "plugin-api-version": "2.6.0"
  10638. }