composer.lock 382 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572
  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": "4b8f74a6a430eca0c1df9852a8be3210",
  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": "ralouphie/getallheaders",
  4438. "version": "3.0.3",
  4439. "source": {
  4440. "type": "git",
  4441. "url": "https://github.com/ralouphie/getallheaders.git",
  4442. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4443. },
  4444. "dist": {
  4445. "type": "zip",
  4446. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4447. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  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. "php": ">=5.6"
  4458. },
  4459. "require-dev": {
  4460. "php-coveralls/php-coveralls": "^2.1",
  4461. "phpunit/phpunit": "^5 || ^6.5"
  4462. },
  4463. "type": "library",
  4464. "autoload": {
  4465. "files": [
  4466. "src/getallheaders.php"
  4467. ]
  4468. },
  4469. "notification-url": "https://packagist.org/downloads/",
  4470. "license": [
  4471. "MIT"
  4472. ],
  4473. "authors": [
  4474. {
  4475. "name": "Ralph Khattar",
  4476. "email": "ralph.khattar@gmail.com"
  4477. }
  4478. ],
  4479. "description": "A polyfill for getallheaders.",
  4480. "support": {
  4481. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4482. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4483. },
  4484. "time": "2019-03-08T08:55:37+00:00"
  4485. },
  4486. {
  4487. "name": "ramsey/collection",
  4488. "version": "1.3.0",
  4489. "source": {
  4490. "type": "git",
  4491. "url": "https://github.com/ramsey/collection.git",
  4492. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4"
  4493. },
  4494. "dist": {
  4495. "type": "zip",
  4496. "url": "https://api.github.com/repos/ramsey/collection/zipball/ad7475d1c9e70b190ecffc58f2d989416af339b4",
  4497. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4",
  4498. "shasum": "",
  4499. "mirrors": [
  4500. {
  4501. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4502. "preferred": true
  4503. }
  4504. ]
  4505. },
  4506. "require": {
  4507. "php": "^7.4 || ^8.0",
  4508. "symfony/polyfill-php81": "^1.23"
  4509. },
  4510. "require-dev": {
  4511. "captainhook/plugin-composer": "^5.3",
  4512. "ergebnis/composer-normalize": "^2.28.3",
  4513. "fakerphp/faker": "^1.21",
  4514. "hamcrest/hamcrest-php": "^2.0",
  4515. "jangregor/phpstan-prophecy": "^1.0",
  4516. "mockery/mockery": "^1.5",
  4517. "php-parallel-lint/php-console-highlighter": "^1.0",
  4518. "php-parallel-lint/php-parallel-lint": "^1.3",
  4519. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  4520. "phpspec/prophecy-phpunit": "^2.0",
  4521. "phpstan/extension-installer": "^1.2",
  4522. "phpstan/phpstan": "^1.9",
  4523. "phpstan/phpstan-mockery": "^1.1",
  4524. "phpstan/phpstan-phpunit": "^1.3",
  4525. "phpunit/phpunit": "^9.5",
  4526. "psalm/plugin-mockery": "^1.1",
  4527. "psalm/plugin-phpunit": "^0.18.4",
  4528. "ramsey/coding-standard": "^2.0.3",
  4529. "ramsey/conventional-commits": "^1.3",
  4530. "vimeo/psalm": "^5.4"
  4531. },
  4532. "type": "library",
  4533. "extra": {
  4534. "captainhook": {
  4535. "force-install": true
  4536. },
  4537. "ramsey/conventional-commits": {
  4538. "configFile": "conventional-commits.json"
  4539. }
  4540. },
  4541. "autoload": {
  4542. "psr-4": {
  4543. "Ramsey\\Collection\\": "src/"
  4544. }
  4545. },
  4546. "notification-url": "https://packagist.org/downloads/",
  4547. "license": [
  4548. "MIT"
  4549. ],
  4550. "authors": [
  4551. {
  4552. "name": "Ben Ramsey",
  4553. "email": "ben@benramsey.com",
  4554. "homepage": "https://benramsey.com"
  4555. }
  4556. ],
  4557. "description": "A PHP library for representing and manipulating collections.",
  4558. "keywords": [
  4559. "array",
  4560. "collection",
  4561. "hash",
  4562. "map",
  4563. "queue",
  4564. "set"
  4565. ],
  4566. "support": {
  4567. "issues": "https://github.com/ramsey/collection/issues",
  4568. "source": "https://github.com/ramsey/collection/tree/1.3.0"
  4569. },
  4570. "funding": [
  4571. {
  4572. "url": "https://github.com/ramsey",
  4573. "type": "github"
  4574. },
  4575. {
  4576. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4577. "type": "tidelift"
  4578. }
  4579. ],
  4580. "time": "2022-12-27T19:12:24+00:00"
  4581. },
  4582. {
  4583. "name": "ramsey/uuid",
  4584. "version": "4.9.0",
  4585. "source": {
  4586. "type": "git",
  4587. "url": "https://github.com/ramsey/uuid.git",
  4588. "reference": "4e0e23cc785f0724a0e838279a9eb03f28b092a0"
  4589. },
  4590. "dist": {
  4591. "type": "zip",
  4592. "url": "https://api.github.com/repos/ramsey/uuid/zipball/4e0e23cc785f0724a0e838279a9eb03f28b092a0",
  4593. "reference": "4e0e23cc785f0724a0e838279a9eb03f28b092a0",
  4594. "shasum": "",
  4595. "mirrors": [
  4596. {
  4597. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4598. "preferred": true
  4599. }
  4600. ]
  4601. },
  4602. "require": {
  4603. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12 || ^0.13",
  4604. "php": "^8.0",
  4605. "ramsey/collection": "^1.2 || ^2.0"
  4606. },
  4607. "replace": {
  4608. "rhumsaa/uuid": "self.version"
  4609. },
  4610. "require-dev": {
  4611. "captainhook/captainhook": "^5.25",
  4612. "captainhook/plugin-composer": "^5.3",
  4613. "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
  4614. "ergebnis/composer-normalize": "^2.47",
  4615. "mockery/mockery": "^1.6",
  4616. "paragonie/random-lib": "^2",
  4617. "php-mock/php-mock": "^2.6",
  4618. "php-mock/php-mock-mockery": "^1.5",
  4619. "php-parallel-lint/php-parallel-lint": "^1.4.0",
  4620. "phpbench/phpbench": "^1.2.14",
  4621. "phpstan/extension-installer": "^1.4",
  4622. "phpstan/phpstan": "^2.1",
  4623. "phpstan/phpstan-mockery": "^2.0",
  4624. "phpstan/phpstan-phpunit": "^2.0",
  4625. "phpunit/phpunit": "^9.6",
  4626. "slevomat/coding-standard": "^8.18",
  4627. "squizlabs/php_codesniffer": "^3.13"
  4628. },
  4629. "suggest": {
  4630. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4631. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4632. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4633. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4634. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4635. },
  4636. "type": "library",
  4637. "extra": {
  4638. "captainhook": {
  4639. "force-install": true
  4640. }
  4641. },
  4642. "autoload": {
  4643. "files": [
  4644. "src/functions.php"
  4645. ],
  4646. "psr-4": {
  4647. "Ramsey\\Uuid\\": "src/"
  4648. }
  4649. },
  4650. "notification-url": "https://packagist.org/downloads/",
  4651. "license": [
  4652. "MIT"
  4653. ],
  4654. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4655. "keywords": [
  4656. "guid",
  4657. "identifier",
  4658. "uuid"
  4659. ],
  4660. "support": {
  4661. "issues": "https://github.com/ramsey/uuid/issues",
  4662. "source": "https://github.com/ramsey/uuid/tree/4.9.0"
  4663. },
  4664. "time": "2025-06-25T14:20:11+00:00"
  4665. },
  4666. {
  4667. "name": "ratchet/rfc6455",
  4668. "version": "v0.3.1",
  4669. "source": {
  4670. "type": "git",
  4671. "url": "https://github.com/ratchetphp/RFC6455.git",
  4672. "reference": "7c964514e93456a52a99a20fcfa0de242a43ccdb"
  4673. },
  4674. "dist": {
  4675. "type": "zip",
  4676. "url": "https://api.github.com/repos/ratchetphp/RFC6455/zipball/7c964514e93456a52a99a20fcfa0de242a43ccdb",
  4677. "reference": "7c964514e93456a52a99a20fcfa0de242a43ccdb",
  4678. "shasum": "",
  4679. "mirrors": [
  4680. {
  4681. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4682. "preferred": true
  4683. }
  4684. ]
  4685. },
  4686. "require": {
  4687. "guzzlehttp/psr7": "^2 || ^1.7",
  4688. "php": ">=5.4.2"
  4689. },
  4690. "require-dev": {
  4691. "phpunit/phpunit": "^5.7",
  4692. "react/socket": "^1.3"
  4693. },
  4694. "type": "library",
  4695. "autoload": {
  4696. "psr-4": {
  4697. "Ratchet\\RFC6455\\": "src"
  4698. }
  4699. },
  4700. "notification-url": "https://packagist.org/downloads/",
  4701. "license": [
  4702. "MIT"
  4703. ],
  4704. "authors": [
  4705. {
  4706. "name": "Chris Boden",
  4707. "email": "cboden@gmail.com",
  4708. "role": "Developer"
  4709. },
  4710. {
  4711. "name": "Matt Bonneau",
  4712. "role": "Developer"
  4713. }
  4714. ],
  4715. "description": "RFC6455 WebSocket protocol handler",
  4716. "homepage": "http://socketo.me",
  4717. "keywords": [
  4718. "WebSockets",
  4719. "rfc6455",
  4720. "websocket"
  4721. ],
  4722. "support": {
  4723. "chat": "https://gitter.im/reactphp/reactphp",
  4724. "issues": "https://github.com/ratchetphp/RFC6455/issues",
  4725. "source": "https://github.com/ratchetphp/RFC6455/tree/v0.3.1"
  4726. },
  4727. "time": "2021-12-09T23:20:49+00:00"
  4728. },
  4729. {
  4730. "name": "react/cache",
  4731. "version": "v1.2.0",
  4732. "source": {
  4733. "type": "git",
  4734. "url": "https://github.com/reactphp/cache.git",
  4735. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  4736. },
  4737. "dist": {
  4738. "type": "zip",
  4739. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  4740. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  4741. "shasum": "",
  4742. "mirrors": [
  4743. {
  4744. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4745. "preferred": true
  4746. }
  4747. ]
  4748. },
  4749. "require": {
  4750. "php": ">=5.3.0",
  4751. "react/promise": "^3.0 || ^2.0 || ^1.1"
  4752. },
  4753. "require-dev": {
  4754. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  4755. },
  4756. "type": "library",
  4757. "autoload": {
  4758. "psr-4": {
  4759. "React\\Cache\\": "src/"
  4760. }
  4761. },
  4762. "notification-url": "https://packagist.org/downloads/",
  4763. "license": [
  4764. "MIT"
  4765. ],
  4766. "authors": [
  4767. {
  4768. "name": "Christian Lück",
  4769. "email": "christian@clue.engineering",
  4770. "homepage": "https://clue.engineering/"
  4771. },
  4772. {
  4773. "name": "Cees-Jan Kiewiet",
  4774. "email": "reactphp@ceesjankiewiet.nl",
  4775. "homepage": "https://wyrihaximus.net/"
  4776. },
  4777. {
  4778. "name": "Jan Sorgalla",
  4779. "email": "jsorgalla@gmail.com",
  4780. "homepage": "https://sorgalla.com/"
  4781. },
  4782. {
  4783. "name": "Chris Boden",
  4784. "email": "cboden@gmail.com",
  4785. "homepage": "https://cboden.dev/"
  4786. }
  4787. ],
  4788. "description": "Async, Promise-based cache interface for ReactPHP",
  4789. "keywords": [
  4790. "cache",
  4791. "caching",
  4792. "promise",
  4793. "reactphp"
  4794. ],
  4795. "support": {
  4796. "issues": "https://github.com/reactphp/cache/issues",
  4797. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  4798. },
  4799. "funding": [
  4800. {
  4801. "url": "https://opencollective.com/reactphp",
  4802. "type": "open_collective"
  4803. }
  4804. ],
  4805. "time": "2022-11-30T15:59:55+00:00"
  4806. },
  4807. {
  4808. "name": "react/dns",
  4809. "version": "v1.14.0",
  4810. "source": {
  4811. "type": "git",
  4812. "url": "https://github.com/reactphp/dns.git",
  4813. "reference": "7562c05391f42701c1fccf189c8225fece1cd7c3"
  4814. },
  4815. "dist": {
  4816. "type": "zip",
  4817. "url": "https://api.github.com/repos/reactphp/dns/zipball/7562c05391f42701c1fccf189c8225fece1cd7c3",
  4818. "reference": "7562c05391f42701c1fccf189c8225fece1cd7c3",
  4819. "shasum": "",
  4820. "mirrors": [
  4821. {
  4822. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4823. "preferred": true
  4824. }
  4825. ]
  4826. },
  4827. "require": {
  4828. "php": ">=5.3.0",
  4829. "react/cache": "^1.0 || ^0.6 || ^0.5",
  4830. "react/event-loop": "^1.2",
  4831. "react/promise": "^3.2 || ^2.7 || ^1.2.1"
  4832. },
  4833. "require-dev": {
  4834. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  4835. "react/async": "^4.3 || ^3 || ^2",
  4836. "react/promise-timer": "^1.11"
  4837. },
  4838. "type": "library",
  4839. "autoload": {
  4840. "psr-4": {
  4841. "React\\Dns\\": "src/"
  4842. }
  4843. },
  4844. "notification-url": "https://packagist.org/downloads/",
  4845. "license": [
  4846. "MIT"
  4847. ],
  4848. "authors": [
  4849. {
  4850. "name": "Christian Lück",
  4851. "email": "christian@clue.engineering",
  4852. "homepage": "https://clue.engineering/"
  4853. },
  4854. {
  4855. "name": "Cees-Jan Kiewiet",
  4856. "email": "reactphp@ceesjankiewiet.nl",
  4857. "homepage": "https://wyrihaximus.net/"
  4858. },
  4859. {
  4860. "name": "Jan Sorgalla",
  4861. "email": "jsorgalla@gmail.com",
  4862. "homepage": "https://sorgalla.com/"
  4863. },
  4864. {
  4865. "name": "Chris Boden",
  4866. "email": "cboden@gmail.com",
  4867. "homepage": "https://cboden.dev/"
  4868. }
  4869. ],
  4870. "description": "Async DNS resolver for ReactPHP",
  4871. "keywords": [
  4872. "async",
  4873. "dns",
  4874. "dns-resolver",
  4875. "reactphp"
  4876. ],
  4877. "support": {
  4878. "issues": "https://github.com/reactphp/dns/issues",
  4879. "source": "https://github.com/reactphp/dns/tree/v1.14.0"
  4880. },
  4881. "funding": [
  4882. {
  4883. "url": "https://opencollective.com/reactphp",
  4884. "type": "open_collective"
  4885. }
  4886. ],
  4887. "time": "2025-11-18T19:34:28+00:00"
  4888. },
  4889. {
  4890. "name": "react/event-loop",
  4891. "version": "v1.6.0",
  4892. "source": {
  4893. "type": "git",
  4894. "url": "https://github.com/reactphp/event-loop.git",
  4895. "reference": "ba276bda6083df7e0050fd9b33f66ad7a4ac747a"
  4896. },
  4897. "dist": {
  4898. "type": "zip",
  4899. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/ba276bda6083df7e0050fd9b33f66ad7a4ac747a",
  4900. "reference": "ba276bda6083df7e0050fd9b33f66ad7a4ac747a",
  4901. "shasum": "",
  4902. "mirrors": [
  4903. {
  4904. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4905. "preferred": true
  4906. }
  4907. ]
  4908. },
  4909. "require": {
  4910. "php": ">=5.3.0"
  4911. },
  4912. "require-dev": {
  4913. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  4914. },
  4915. "suggest": {
  4916. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  4917. },
  4918. "type": "library",
  4919. "autoload": {
  4920. "psr-4": {
  4921. "React\\EventLoop\\": "src/"
  4922. }
  4923. },
  4924. "notification-url": "https://packagist.org/downloads/",
  4925. "license": [
  4926. "MIT"
  4927. ],
  4928. "authors": [
  4929. {
  4930. "name": "Christian Lück",
  4931. "email": "christian@clue.engineering",
  4932. "homepage": "https://clue.engineering/"
  4933. },
  4934. {
  4935. "name": "Cees-Jan Kiewiet",
  4936. "email": "reactphp@ceesjankiewiet.nl",
  4937. "homepage": "https://wyrihaximus.net/"
  4938. },
  4939. {
  4940. "name": "Jan Sorgalla",
  4941. "email": "jsorgalla@gmail.com",
  4942. "homepage": "https://sorgalla.com/"
  4943. },
  4944. {
  4945. "name": "Chris Boden",
  4946. "email": "cboden@gmail.com",
  4947. "homepage": "https://cboden.dev/"
  4948. }
  4949. ],
  4950. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  4951. "keywords": [
  4952. "asynchronous",
  4953. "event-loop"
  4954. ],
  4955. "support": {
  4956. "issues": "https://github.com/reactphp/event-loop/issues",
  4957. "source": "https://github.com/reactphp/event-loop/tree/v1.6.0"
  4958. },
  4959. "funding": [
  4960. {
  4961. "url": "https://opencollective.com/reactphp",
  4962. "type": "open_collective"
  4963. }
  4964. ],
  4965. "time": "2025-11-17T20:46:25+00:00"
  4966. },
  4967. {
  4968. "name": "react/promise",
  4969. "version": "v3.2.0",
  4970. "source": {
  4971. "type": "git",
  4972. "url": "https://github.com/reactphp/promise.git",
  4973. "reference": "8a164643313c71354582dc850b42b33fa12a4b63"
  4974. },
  4975. "dist": {
  4976. "type": "zip",
  4977. "url": "https://api.github.com/repos/reactphp/promise/zipball/8a164643313c71354582dc850b42b33fa12a4b63",
  4978. "reference": "8a164643313c71354582dc850b42b33fa12a4b63",
  4979. "shasum": "",
  4980. "mirrors": [
  4981. {
  4982. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4983. "preferred": true
  4984. }
  4985. ]
  4986. },
  4987. "require": {
  4988. "php": ">=7.1.0"
  4989. },
  4990. "require-dev": {
  4991. "phpstan/phpstan": "1.10.39 || 1.4.10",
  4992. "phpunit/phpunit": "^9.6 || ^7.5"
  4993. },
  4994. "type": "library",
  4995. "autoload": {
  4996. "files": [
  4997. "src/functions_include.php"
  4998. ],
  4999. "psr-4": {
  5000. "React\\Promise\\": "src/"
  5001. }
  5002. },
  5003. "notification-url": "https://packagist.org/downloads/",
  5004. "license": [
  5005. "MIT"
  5006. ],
  5007. "authors": [
  5008. {
  5009. "name": "Jan Sorgalla",
  5010. "email": "jsorgalla@gmail.com",
  5011. "homepage": "https://sorgalla.com/"
  5012. },
  5013. {
  5014. "name": "Christian Lück",
  5015. "email": "christian@clue.engineering",
  5016. "homepage": "https://clue.engineering/"
  5017. },
  5018. {
  5019. "name": "Cees-Jan Kiewiet",
  5020. "email": "reactphp@ceesjankiewiet.nl",
  5021. "homepage": "https://wyrihaximus.net/"
  5022. },
  5023. {
  5024. "name": "Chris Boden",
  5025. "email": "cboden@gmail.com",
  5026. "homepage": "https://cboden.dev/"
  5027. }
  5028. ],
  5029. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  5030. "keywords": [
  5031. "promise",
  5032. "promises"
  5033. ],
  5034. "support": {
  5035. "issues": "https://github.com/reactphp/promise/issues",
  5036. "source": "https://github.com/reactphp/promise/tree/v3.2.0"
  5037. },
  5038. "funding": [
  5039. {
  5040. "url": "https://opencollective.com/reactphp",
  5041. "type": "open_collective"
  5042. }
  5043. ],
  5044. "time": "2024-05-24T10:39:05+00:00"
  5045. },
  5046. {
  5047. "name": "react/socket",
  5048. "version": "v1.16.0",
  5049. "source": {
  5050. "type": "git",
  5051. "url": "https://github.com/reactphp/socket.git",
  5052. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1"
  5053. },
  5054. "dist": {
  5055. "type": "zip",
  5056. "url": "https://api.github.com/repos/reactphp/socket/zipball/23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  5057. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  5058. "shasum": "",
  5059. "mirrors": [
  5060. {
  5061. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5062. "preferred": true
  5063. }
  5064. ]
  5065. },
  5066. "require": {
  5067. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  5068. "php": ">=5.3.0",
  5069. "react/dns": "^1.13",
  5070. "react/event-loop": "^1.2",
  5071. "react/promise": "^3.2 || ^2.6 || ^1.2.1",
  5072. "react/stream": "^1.4"
  5073. },
  5074. "require-dev": {
  5075. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  5076. "react/async": "^4.3 || ^3.3 || ^2",
  5077. "react/promise-stream": "^1.4",
  5078. "react/promise-timer": "^1.11"
  5079. },
  5080. "type": "library",
  5081. "autoload": {
  5082. "psr-4": {
  5083. "React\\Socket\\": "src/"
  5084. }
  5085. },
  5086. "notification-url": "https://packagist.org/downloads/",
  5087. "license": [
  5088. "MIT"
  5089. ],
  5090. "authors": [
  5091. {
  5092. "name": "Christian Lück",
  5093. "email": "christian@clue.engineering",
  5094. "homepage": "https://clue.engineering/"
  5095. },
  5096. {
  5097. "name": "Cees-Jan Kiewiet",
  5098. "email": "reactphp@ceesjankiewiet.nl",
  5099. "homepage": "https://wyrihaximus.net/"
  5100. },
  5101. {
  5102. "name": "Jan Sorgalla",
  5103. "email": "jsorgalla@gmail.com",
  5104. "homepage": "https://sorgalla.com/"
  5105. },
  5106. {
  5107. "name": "Chris Boden",
  5108. "email": "cboden@gmail.com",
  5109. "homepage": "https://cboden.dev/"
  5110. }
  5111. ],
  5112. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  5113. "keywords": [
  5114. "Connection",
  5115. "Socket",
  5116. "async",
  5117. "reactphp",
  5118. "stream"
  5119. ],
  5120. "support": {
  5121. "issues": "https://github.com/reactphp/socket/issues",
  5122. "source": "https://github.com/reactphp/socket/tree/v1.16.0"
  5123. },
  5124. "funding": [
  5125. {
  5126. "url": "https://opencollective.com/reactphp",
  5127. "type": "open_collective"
  5128. }
  5129. ],
  5130. "time": "2024-07-26T10:38:09+00:00"
  5131. },
  5132. {
  5133. "name": "react/stream",
  5134. "version": "1.x-dev",
  5135. "source": {
  5136. "type": "git",
  5137. "url": "https://github.com/reactphp/stream.git",
  5138. "reference": "9decb8fa54f361877ba62c2d5e46bb4401779fb1"
  5139. },
  5140. "dist": {
  5141. "type": "zip",
  5142. "url": "https://api.github.com/repos/reactphp/stream/zipball/9decb8fa54f361877ba62c2d5e46bb4401779fb1",
  5143. "reference": "9decb8fa54f361877ba62c2d5e46bb4401779fb1",
  5144. "shasum": "",
  5145. "mirrors": [
  5146. {
  5147. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5148. "preferred": true
  5149. }
  5150. ]
  5151. },
  5152. "require": {
  5153. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  5154. "php": ">=5.3.8",
  5155. "react/event-loop": "^1.2"
  5156. },
  5157. "require-dev": {
  5158. "clue/stream-filter": "~1.2",
  5159. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  5160. },
  5161. "type": "library",
  5162. "autoload": {
  5163. "psr-4": {
  5164. "React\\Stream\\": "src/"
  5165. }
  5166. },
  5167. "notification-url": "https://packagist.org/downloads/",
  5168. "license": [
  5169. "MIT"
  5170. ],
  5171. "authors": [
  5172. {
  5173. "name": "Christian Lück",
  5174. "email": "christian@clue.engineering",
  5175. "homepage": "https://clue.engineering/"
  5176. },
  5177. {
  5178. "name": "Cees-Jan Kiewiet",
  5179. "email": "reactphp@ceesjankiewiet.nl",
  5180. "homepage": "https://wyrihaximus.net/"
  5181. },
  5182. {
  5183. "name": "Jan Sorgalla",
  5184. "email": "jsorgalla@gmail.com",
  5185. "homepage": "https://sorgalla.com/"
  5186. },
  5187. {
  5188. "name": "Chris Boden",
  5189. "email": "cboden@gmail.com",
  5190. "homepage": "https://cboden.dev/"
  5191. }
  5192. ],
  5193. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  5194. "keywords": [
  5195. "event-driven",
  5196. "io",
  5197. "non-blocking",
  5198. "pipe",
  5199. "reactphp",
  5200. "readable",
  5201. "stream",
  5202. "writable"
  5203. ],
  5204. "support": {
  5205. "issues": "https://github.com/reactphp/stream/issues",
  5206. "source": "https://github.com/reactphp/stream/tree/1.x"
  5207. },
  5208. "funding": [
  5209. {
  5210. "url": "https://opencollective.com/reactphp",
  5211. "type": "open_collective"
  5212. }
  5213. ],
  5214. "time": "2025-10-15T07:30:20+00:00"
  5215. },
  5216. {
  5217. "name": "socialiteproviders/manager",
  5218. "version": "v4.7.0",
  5219. "source": {
  5220. "type": "git",
  5221. "url": "https://github.com/SocialiteProviders/Manager.git",
  5222. "reference": "ab0691b82cec77efd90154c78f1854903455c82f"
  5223. },
  5224. "dist": {
  5225. "type": "zip",
  5226. "url": "https://api.github.com/repos/SocialiteProviders/Manager/zipball/ab0691b82cec77efd90154c78f1854903455c82f",
  5227. "reference": "ab0691b82cec77efd90154c78f1854903455c82f",
  5228. "shasum": "",
  5229. "mirrors": [
  5230. {
  5231. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5232. "preferred": true
  5233. }
  5234. ]
  5235. },
  5236. "require": {
  5237. "illuminate/support": "^8.0 || ^9.0 || ^10.0 || ^11.0",
  5238. "laravel/socialite": "^5.5",
  5239. "php": "^8.0"
  5240. },
  5241. "require-dev": {
  5242. "mockery/mockery": "^1.2",
  5243. "phpunit/phpunit": "^9.0"
  5244. },
  5245. "type": "library",
  5246. "extra": {
  5247. "laravel": {
  5248. "providers": [
  5249. "SocialiteProviders\\Manager\\ServiceProvider"
  5250. ]
  5251. }
  5252. },
  5253. "autoload": {
  5254. "psr-4": {
  5255. "SocialiteProviders\\Manager\\": "src/"
  5256. }
  5257. },
  5258. "notification-url": "https://packagist.org/downloads/",
  5259. "license": [
  5260. "MIT"
  5261. ],
  5262. "authors": [
  5263. {
  5264. "name": "Andy Wendt",
  5265. "email": "andy@awendt.com"
  5266. },
  5267. {
  5268. "name": "Anton Komarev",
  5269. "email": "a.komarev@cybercog.su"
  5270. },
  5271. {
  5272. "name": "Miguel Piedrafita",
  5273. "email": "soy@miguelpiedrafita.com"
  5274. },
  5275. {
  5276. "name": "atymic",
  5277. "email": "atymicq@gmail.com",
  5278. "homepage": "https://atymic.dev"
  5279. }
  5280. ],
  5281. "description": "Easily add new or override built-in providers in Laravel Socialite.",
  5282. "homepage": "https://socialiteproviders.com",
  5283. "keywords": [
  5284. "laravel",
  5285. "manager",
  5286. "oauth",
  5287. "providers",
  5288. "socialite"
  5289. ],
  5290. "support": {
  5291. "issues": "https://github.com/socialiteproviders/manager/issues",
  5292. "source": "https://github.com/socialiteproviders/manager"
  5293. },
  5294. "time": "2024-11-10T01:56:18+00:00"
  5295. },
  5296. {
  5297. "name": "socialiteproviders/weixin",
  5298. "version": "4.1.0",
  5299. "source": {
  5300. "type": "git",
  5301. "url": "https://github.com/SocialiteProviders/Weixin.git",
  5302. "reference": "4f5ca3ee25e1a46e0dc6bb00bd6ba77f344e340f"
  5303. },
  5304. "dist": {
  5305. "type": "zip",
  5306. "url": "https://api.github.com/repos/SocialiteProviders/Weixin/zipball/4f5ca3ee25e1a46e0dc6bb00bd6ba77f344e340f",
  5307. "reference": "4f5ca3ee25e1a46e0dc6bb00bd6ba77f344e340f",
  5308. "shasum": "",
  5309. "mirrors": [
  5310. {
  5311. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5312. "preferred": true
  5313. }
  5314. ]
  5315. },
  5316. "require": {
  5317. "ext-json": "*",
  5318. "php": "^7.2 || ^8.0",
  5319. "socialiteproviders/manager": "~4.0"
  5320. },
  5321. "type": "library",
  5322. "autoload": {
  5323. "psr-4": {
  5324. "SocialiteProviders\\Weixin\\": ""
  5325. }
  5326. },
  5327. "notification-url": "https://packagist.org/downloads/",
  5328. "license": [
  5329. "MIT"
  5330. ],
  5331. "authors": [
  5332. {
  5333. "name": "xyxu",
  5334. "email": "techxu@gmail.com"
  5335. },
  5336. {
  5337. "name": "xiami",
  5338. "email": "jhdxr@php.net"
  5339. }
  5340. ],
  5341. "description": "Weixin OAuth2 Provider for Laravel Socialite",
  5342. "support": {
  5343. "source": "https://github.com/SocialiteProviders/Weixin/tree/4.1.0"
  5344. },
  5345. "time": "2020-12-01T23:10:59+00:00"
  5346. },
  5347. {
  5348. "name": "swiftmailer/swiftmailer",
  5349. "version": "v6.3.0",
  5350. "source": {
  5351. "type": "git",
  5352. "url": "https://github.com/swiftmailer/swiftmailer.git",
  5353. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  5354. },
  5355. "dist": {
  5356. "type": "zip",
  5357. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  5358. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  5359. "shasum": "",
  5360. "mirrors": [
  5361. {
  5362. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5363. "preferred": true
  5364. }
  5365. ]
  5366. },
  5367. "require": {
  5368. "egulias/email-validator": "^2.0|^3.1",
  5369. "php": ">=7.0.0",
  5370. "symfony/polyfill-iconv": "^1.0",
  5371. "symfony/polyfill-intl-idn": "^1.10",
  5372. "symfony/polyfill-mbstring": "^1.0"
  5373. },
  5374. "require-dev": {
  5375. "mockery/mockery": "^1.0",
  5376. "symfony/phpunit-bridge": "^4.4|^5.4"
  5377. },
  5378. "suggest": {
  5379. "ext-intl": "Needed to support internationalized email addresses"
  5380. },
  5381. "type": "library",
  5382. "extra": {
  5383. "branch-alias": {
  5384. "dev-master": "6.2-dev"
  5385. }
  5386. },
  5387. "autoload": {
  5388. "files": [
  5389. "lib/swift_required.php"
  5390. ]
  5391. },
  5392. "notification-url": "https://packagist.org/downloads/",
  5393. "license": [
  5394. "MIT"
  5395. ],
  5396. "authors": [
  5397. {
  5398. "name": "Chris Corbyn"
  5399. },
  5400. {
  5401. "name": "Fabien Potencier",
  5402. "email": "fabien@symfony.com"
  5403. }
  5404. ],
  5405. "description": "Swiftmailer, free feature-rich PHP mailer",
  5406. "homepage": "https://swiftmailer.symfony.com",
  5407. "keywords": [
  5408. "email",
  5409. "mail",
  5410. "mailer"
  5411. ],
  5412. "support": {
  5413. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  5414. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  5415. },
  5416. "funding": [
  5417. {
  5418. "url": "https://github.com/fabpot",
  5419. "type": "github"
  5420. },
  5421. {
  5422. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  5423. "type": "tidelift"
  5424. }
  5425. ],
  5426. "abandoned": "symfony/mailer",
  5427. "time": "2021-10-18T15:26:12+00:00"
  5428. },
  5429. {
  5430. "name": "symfony/console",
  5431. "version": "v5.4.47",
  5432. "source": {
  5433. "type": "git",
  5434. "url": "https://github.com/symfony/console.git",
  5435. "reference": "c4ba980ca61a9eb18ee6bcc73f28e475852bb1ed"
  5436. },
  5437. "dist": {
  5438. "type": "zip",
  5439. "url": "https://api.github.com/repos/symfony/console/zipball/c4ba980ca61a9eb18ee6bcc73f28e475852bb1ed",
  5440. "reference": "c4ba980ca61a9eb18ee6bcc73f28e475852bb1ed",
  5441. "shasum": "",
  5442. "mirrors": [
  5443. {
  5444. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5445. "preferred": true
  5446. }
  5447. ]
  5448. },
  5449. "require": {
  5450. "php": ">=7.2.5",
  5451. "symfony/deprecation-contracts": "^2.1|^3",
  5452. "symfony/polyfill-mbstring": "~1.0",
  5453. "symfony/polyfill-php73": "^1.9",
  5454. "symfony/polyfill-php80": "^1.16",
  5455. "symfony/service-contracts": "^1.1|^2|^3",
  5456. "symfony/string": "^5.1|^6.0"
  5457. },
  5458. "conflict": {
  5459. "psr/log": ">=3",
  5460. "symfony/dependency-injection": "<4.4",
  5461. "symfony/dotenv": "<5.1",
  5462. "symfony/event-dispatcher": "<4.4",
  5463. "symfony/lock": "<4.4",
  5464. "symfony/process": "<4.4"
  5465. },
  5466. "provide": {
  5467. "psr/log-implementation": "1.0|2.0"
  5468. },
  5469. "require-dev": {
  5470. "psr/log": "^1|^2",
  5471. "symfony/config": "^4.4|^5.0|^6.0",
  5472. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5473. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  5474. "symfony/lock": "^4.4|^5.0|^6.0",
  5475. "symfony/process": "^4.4|^5.0|^6.0",
  5476. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  5477. },
  5478. "suggest": {
  5479. "psr/log": "For using the console logger",
  5480. "symfony/event-dispatcher": "",
  5481. "symfony/lock": "",
  5482. "symfony/process": ""
  5483. },
  5484. "type": "library",
  5485. "autoload": {
  5486. "psr-4": {
  5487. "Symfony\\Component\\Console\\": ""
  5488. },
  5489. "exclude-from-classmap": [
  5490. "/Tests/"
  5491. ]
  5492. },
  5493. "notification-url": "https://packagist.org/downloads/",
  5494. "license": [
  5495. "MIT"
  5496. ],
  5497. "authors": [
  5498. {
  5499. "name": "Fabien Potencier",
  5500. "email": "fabien@symfony.com"
  5501. },
  5502. {
  5503. "name": "Symfony Community",
  5504. "homepage": "https://symfony.com/contributors"
  5505. }
  5506. ],
  5507. "description": "Eases the creation of beautiful and testable command line interfaces",
  5508. "homepage": "https://symfony.com",
  5509. "keywords": [
  5510. "cli",
  5511. "command-line",
  5512. "console",
  5513. "terminal"
  5514. ],
  5515. "support": {
  5516. "source": "https://github.com/symfony/console/tree/v5.4.47"
  5517. },
  5518. "funding": [
  5519. {
  5520. "url": "https://symfony.com/sponsor",
  5521. "type": "custom"
  5522. },
  5523. {
  5524. "url": "https://github.com/fabpot",
  5525. "type": "github"
  5526. },
  5527. {
  5528. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5529. "type": "tidelift"
  5530. }
  5531. ],
  5532. "time": "2024-11-06T11:30:55+00:00"
  5533. },
  5534. {
  5535. "name": "symfony/css-selector",
  5536. "version": "v6.0.19",
  5537. "source": {
  5538. "type": "git",
  5539. "url": "https://github.com/symfony/css-selector.git",
  5540. "reference": "f1d00bddb83a4cb2138564b2150001cb6ce272b1"
  5541. },
  5542. "dist": {
  5543. "type": "zip",
  5544. "url": "https://api.github.com/repos/symfony/css-selector/zipball/f1d00bddb83a4cb2138564b2150001cb6ce272b1",
  5545. "reference": "f1d00bddb83a4cb2138564b2150001cb6ce272b1",
  5546. "shasum": "",
  5547. "mirrors": [
  5548. {
  5549. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5550. "preferred": true
  5551. }
  5552. ]
  5553. },
  5554. "require": {
  5555. "php": ">=8.0.2"
  5556. },
  5557. "type": "library",
  5558. "autoload": {
  5559. "psr-4": {
  5560. "Symfony\\Component\\CssSelector\\": ""
  5561. },
  5562. "exclude-from-classmap": [
  5563. "/Tests/"
  5564. ]
  5565. },
  5566. "notification-url": "https://packagist.org/downloads/",
  5567. "license": [
  5568. "MIT"
  5569. ],
  5570. "authors": [
  5571. {
  5572. "name": "Fabien Potencier",
  5573. "email": "fabien@symfony.com"
  5574. },
  5575. {
  5576. "name": "Jean-François Simon",
  5577. "email": "jeanfrancois.simon@sensiolabs.com"
  5578. },
  5579. {
  5580. "name": "Symfony Community",
  5581. "homepage": "https://symfony.com/contributors"
  5582. }
  5583. ],
  5584. "description": "Converts CSS selectors to XPath expressions",
  5585. "homepage": "https://symfony.com",
  5586. "support": {
  5587. "source": "https://github.com/symfony/css-selector/tree/v6.0.19"
  5588. },
  5589. "funding": [
  5590. {
  5591. "url": "https://symfony.com/sponsor",
  5592. "type": "custom"
  5593. },
  5594. {
  5595. "url": "https://github.com/fabpot",
  5596. "type": "github"
  5597. },
  5598. {
  5599. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5600. "type": "tidelift"
  5601. }
  5602. ],
  5603. "time": "2023-01-01T08:36:10+00:00"
  5604. },
  5605. {
  5606. "name": "symfony/deprecation-contracts",
  5607. "version": "v3.0.2",
  5608. "source": {
  5609. "type": "git",
  5610. "url": "https://github.com/symfony/deprecation-contracts.git",
  5611. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c"
  5612. },
  5613. "dist": {
  5614. "type": "zip",
  5615. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  5616. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  5617. "shasum": "",
  5618. "mirrors": [
  5619. {
  5620. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5621. "preferred": true
  5622. }
  5623. ]
  5624. },
  5625. "require": {
  5626. "php": ">=8.0.2"
  5627. },
  5628. "type": "library",
  5629. "extra": {
  5630. "thanks": {
  5631. "url": "https://github.com/symfony/contracts",
  5632. "name": "symfony/contracts"
  5633. },
  5634. "branch-alias": {
  5635. "dev-main": "3.0-dev"
  5636. }
  5637. },
  5638. "autoload": {
  5639. "files": [
  5640. "function.php"
  5641. ]
  5642. },
  5643. "notification-url": "https://packagist.org/downloads/",
  5644. "license": [
  5645. "MIT"
  5646. ],
  5647. "authors": [
  5648. {
  5649. "name": "Nicolas Grekas",
  5650. "email": "p@tchwork.com"
  5651. },
  5652. {
  5653. "name": "Symfony Community",
  5654. "homepage": "https://symfony.com/contributors"
  5655. }
  5656. ],
  5657. "description": "A generic function and convention to trigger deprecation notices",
  5658. "homepage": "https://symfony.com",
  5659. "support": {
  5660. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.0.2"
  5661. },
  5662. "funding": [
  5663. {
  5664. "url": "https://symfony.com/sponsor",
  5665. "type": "custom"
  5666. },
  5667. {
  5668. "url": "https://github.com/fabpot",
  5669. "type": "github"
  5670. },
  5671. {
  5672. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5673. "type": "tidelift"
  5674. }
  5675. ],
  5676. "time": "2022-01-02T09:55:41+00:00"
  5677. },
  5678. {
  5679. "name": "symfony/error-handler",
  5680. "version": "v5.4.46",
  5681. "source": {
  5682. "type": "git",
  5683. "url": "https://github.com/symfony/error-handler.git",
  5684. "reference": "d19ede7a2cafb386be9486c580649d0f9e3d0363"
  5685. },
  5686. "dist": {
  5687. "type": "zip",
  5688. "url": "https://api.github.com/repos/symfony/error-handler/zipball/d19ede7a2cafb386be9486c580649d0f9e3d0363",
  5689. "reference": "d19ede7a2cafb386be9486c580649d0f9e3d0363",
  5690. "shasum": "",
  5691. "mirrors": [
  5692. {
  5693. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5694. "preferred": true
  5695. }
  5696. ]
  5697. },
  5698. "require": {
  5699. "php": ">=7.2.5",
  5700. "psr/log": "^1|^2|^3",
  5701. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  5702. },
  5703. "require-dev": {
  5704. "symfony/deprecation-contracts": "^2.1|^3",
  5705. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  5706. "symfony/serializer": "^4.4|^5.0|^6.0"
  5707. },
  5708. "bin": [
  5709. "Resources/bin/patch-type-declarations"
  5710. ],
  5711. "type": "library",
  5712. "autoload": {
  5713. "psr-4": {
  5714. "Symfony\\Component\\ErrorHandler\\": ""
  5715. },
  5716. "exclude-from-classmap": [
  5717. "/Tests/"
  5718. ]
  5719. },
  5720. "notification-url": "https://packagist.org/downloads/",
  5721. "license": [
  5722. "MIT"
  5723. ],
  5724. "authors": [
  5725. {
  5726. "name": "Fabien Potencier",
  5727. "email": "fabien@symfony.com"
  5728. },
  5729. {
  5730. "name": "Symfony Community",
  5731. "homepage": "https://symfony.com/contributors"
  5732. }
  5733. ],
  5734. "description": "Provides tools to manage errors and ease debugging PHP code",
  5735. "homepage": "https://symfony.com",
  5736. "support": {
  5737. "source": "https://github.com/symfony/error-handler/tree/v5.4.46"
  5738. },
  5739. "funding": [
  5740. {
  5741. "url": "https://symfony.com/sponsor",
  5742. "type": "custom"
  5743. },
  5744. {
  5745. "url": "https://github.com/fabpot",
  5746. "type": "github"
  5747. },
  5748. {
  5749. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5750. "type": "tidelift"
  5751. }
  5752. ],
  5753. "time": "2024-11-05T14:17:06+00:00"
  5754. },
  5755. {
  5756. "name": "symfony/event-dispatcher",
  5757. "version": "v6.0.19",
  5758. "source": {
  5759. "type": "git",
  5760. "url": "https://github.com/symfony/event-dispatcher.git",
  5761. "reference": "2eaf8e63bc5b8cefabd4a800157f0d0c094f677a"
  5762. },
  5763. "dist": {
  5764. "type": "zip",
  5765. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/2eaf8e63bc5b8cefabd4a800157f0d0c094f677a",
  5766. "reference": "2eaf8e63bc5b8cefabd4a800157f0d0c094f677a",
  5767. "shasum": "",
  5768. "mirrors": [
  5769. {
  5770. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5771. "preferred": true
  5772. }
  5773. ]
  5774. },
  5775. "require": {
  5776. "php": ">=8.0.2",
  5777. "symfony/event-dispatcher-contracts": "^2|^3"
  5778. },
  5779. "conflict": {
  5780. "symfony/dependency-injection": "<5.4"
  5781. },
  5782. "provide": {
  5783. "psr/event-dispatcher-implementation": "1.0",
  5784. "symfony/event-dispatcher-implementation": "2.0|3.0"
  5785. },
  5786. "require-dev": {
  5787. "psr/log": "^1|^2|^3",
  5788. "symfony/config": "^5.4|^6.0",
  5789. "symfony/dependency-injection": "^5.4|^6.0",
  5790. "symfony/error-handler": "^5.4|^6.0",
  5791. "symfony/expression-language": "^5.4|^6.0",
  5792. "symfony/http-foundation": "^5.4|^6.0",
  5793. "symfony/service-contracts": "^1.1|^2|^3",
  5794. "symfony/stopwatch": "^5.4|^6.0"
  5795. },
  5796. "suggest": {
  5797. "symfony/dependency-injection": "",
  5798. "symfony/http-kernel": ""
  5799. },
  5800. "type": "library",
  5801. "autoload": {
  5802. "psr-4": {
  5803. "Symfony\\Component\\EventDispatcher\\": ""
  5804. },
  5805. "exclude-from-classmap": [
  5806. "/Tests/"
  5807. ]
  5808. },
  5809. "notification-url": "https://packagist.org/downloads/",
  5810. "license": [
  5811. "MIT"
  5812. ],
  5813. "authors": [
  5814. {
  5815. "name": "Fabien Potencier",
  5816. "email": "fabien@symfony.com"
  5817. },
  5818. {
  5819. "name": "Symfony Community",
  5820. "homepage": "https://symfony.com/contributors"
  5821. }
  5822. ],
  5823. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5824. "homepage": "https://symfony.com",
  5825. "support": {
  5826. "source": "https://github.com/symfony/event-dispatcher/tree/v6.0.19"
  5827. },
  5828. "funding": [
  5829. {
  5830. "url": "https://symfony.com/sponsor",
  5831. "type": "custom"
  5832. },
  5833. {
  5834. "url": "https://github.com/fabpot",
  5835. "type": "github"
  5836. },
  5837. {
  5838. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5839. "type": "tidelift"
  5840. }
  5841. ],
  5842. "time": "2023-01-01T08:36:10+00:00"
  5843. },
  5844. {
  5845. "name": "symfony/event-dispatcher-contracts",
  5846. "version": "v3.0.2",
  5847. "source": {
  5848. "type": "git",
  5849. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5850. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051"
  5851. },
  5852. "dist": {
  5853. "type": "zip",
  5854. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7bc61cc2db649b4637d331240c5346dcc7708051",
  5855. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051",
  5856. "shasum": "",
  5857. "mirrors": [
  5858. {
  5859. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5860. "preferred": true
  5861. }
  5862. ]
  5863. },
  5864. "require": {
  5865. "php": ">=8.0.2",
  5866. "psr/event-dispatcher": "^1"
  5867. },
  5868. "suggest": {
  5869. "symfony/event-dispatcher-implementation": ""
  5870. },
  5871. "type": "library",
  5872. "extra": {
  5873. "thanks": {
  5874. "url": "https://github.com/symfony/contracts",
  5875. "name": "symfony/contracts"
  5876. },
  5877. "branch-alias": {
  5878. "dev-main": "3.0-dev"
  5879. }
  5880. },
  5881. "autoload": {
  5882. "psr-4": {
  5883. "Symfony\\Contracts\\EventDispatcher\\": ""
  5884. }
  5885. },
  5886. "notification-url": "https://packagist.org/downloads/",
  5887. "license": [
  5888. "MIT"
  5889. ],
  5890. "authors": [
  5891. {
  5892. "name": "Nicolas Grekas",
  5893. "email": "p@tchwork.com"
  5894. },
  5895. {
  5896. "name": "Symfony Community",
  5897. "homepage": "https://symfony.com/contributors"
  5898. }
  5899. ],
  5900. "description": "Generic abstractions related to dispatching event",
  5901. "homepage": "https://symfony.com",
  5902. "keywords": [
  5903. "abstractions",
  5904. "contracts",
  5905. "decoupling",
  5906. "interfaces",
  5907. "interoperability",
  5908. "standards"
  5909. ],
  5910. "support": {
  5911. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.0.2"
  5912. },
  5913. "funding": [
  5914. {
  5915. "url": "https://symfony.com/sponsor",
  5916. "type": "custom"
  5917. },
  5918. {
  5919. "url": "https://github.com/fabpot",
  5920. "type": "github"
  5921. },
  5922. {
  5923. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5924. "type": "tidelift"
  5925. }
  5926. ],
  5927. "time": "2022-01-02T09:55:41+00:00"
  5928. },
  5929. {
  5930. "name": "symfony/finder",
  5931. "version": "v5.4.45",
  5932. "source": {
  5933. "type": "git",
  5934. "url": "https://github.com/symfony/finder.git",
  5935. "reference": "63741784cd7b9967975eec610b256eed3ede022b"
  5936. },
  5937. "dist": {
  5938. "type": "zip",
  5939. "url": "https://api.github.com/repos/symfony/finder/zipball/63741784cd7b9967975eec610b256eed3ede022b",
  5940. "reference": "63741784cd7b9967975eec610b256eed3ede022b",
  5941. "shasum": "",
  5942. "mirrors": [
  5943. {
  5944. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5945. "preferred": true
  5946. }
  5947. ]
  5948. },
  5949. "require": {
  5950. "php": ">=7.2.5",
  5951. "symfony/deprecation-contracts": "^2.1|^3",
  5952. "symfony/polyfill-php80": "^1.16"
  5953. },
  5954. "type": "library",
  5955. "autoload": {
  5956. "psr-4": {
  5957. "Symfony\\Component\\Finder\\": ""
  5958. },
  5959. "exclude-from-classmap": [
  5960. "/Tests/"
  5961. ]
  5962. },
  5963. "notification-url": "https://packagist.org/downloads/",
  5964. "license": [
  5965. "MIT"
  5966. ],
  5967. "authors": [
  5968. {
  5969. "name": "Fabien Potencier",
  5970. "email": "fabien@symfony.com"
  5971. },
  5972. {
  5973. "name": "Symfony Community",
  5974. "homepage": "https://symfony.com/contributors"
  5975. }
  5976. ],
  5977. "description": "Finds files and directories via an intuitive fluent interface",
  5978. "homepage": "https://symfony.com",
  5979. "support": {
  5980. "source": "https://github.com/symfony/finder/tree/v5.4.45"
  5981. },
  5982. "funding": [
  5983. {
  5984. "url": "https://symfony.com/sponsor",
  5985. "type": "custom"
  5986. },
  5987. {
  5988. "url": "https://github.com/fabpot",
  5989. "type": "github"
  5990. },
  5991. {
  5992. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5993. "type": "tidelift"
  5994. }
  5995. ],
  5996. "time": "2024-09-28T13:32:08+00:00"
  5997. },
  5998. {
  5999. "name": "symfony/http-foundation",
  6000. "version": "v5.4.48",
  6001. "source": {
  6002. "type": "git",
  6003. "url": "https://github.com/symfony/http-foundation.git",
  6004. "reference": "3f38b8af283b830e1363acd79e5bc3412d055341"
  6005. },
  6006. "dist": {
  6007. "type": "zip",
  6008. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/3f38b8af283b830e1363acd79e5bc3412d055341",
  6009. "reference": "3f38b8af283b830e1363acd79e5bc3412d055341",
  6010. "shasum": "",
  6011. "mirrors": [
  6012. {
  6013. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6014. "preferred": true
  6015. }
  6016. ]
  6017. },
  6018. "require": {
  6019. "php": ">=7.2.5",
  6020. "symfony/deprecation-contracts": "^2.1|^3",
  6021. "symfony/polyfill-mbstring": "~1.1",
  6022. "symfony/polyfill-php80": "^1.16"
  6023. },
  6024. "require-dev": {
  6025. "predis/predis": "^1.0|^2.0",
  6026. "symfony/cache": "^4.4|^5.0|^6.0",
  6027. "symfony/dependency-injection": "^5.4|^6.0",
  6028. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6029. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  6030. "symfony/mime": "^4.4|^5.0|^6.0",
  6031. "symfony/rate-limiter": "^5.2|^6.0"
  6032. },
  6033. "suggest": {
  6034. "symfony/mime": "To use the file extension guesser"
  6035. },
  6036. "type": "library",
  6037. "autoload": {
  6038. "psr-4": {
  6039. "Symfony\\Component\\HttpFoundation\\": ""
  6040. },
  6041. "exclude-from-classmap": [
  6042. "/Tests/"
  6043. ]
  6044. },
  6045. "notification-url": "https://packagist.org/downloads/",
  6046. "license": [
  6047. "MIT"
  6048. ],
  6049. "authors": [
  6050. {
  6051. "name": "Fabien Potencier",
  6052. "email": "fabien@symfony.com"
  6053. },
  6054. {
  6055. "name": "Symfony Community",
  6056. "homepage": "https://symfony.com/contributors"
  6057. }
  6058. ],
  6059. "description": "Defines an object-oriented layer for the HTTP specification",
  6060. "homepage": "https://symfony.com",
  6061. "support": {
  6062. "source": "https://github.com/symfony/http-foundation/tree/v5.4.48"
  6063. },
  6064. "funding": [
  6065. {
  6066. "url": "https://symfony.com/sponsor",
  6067. "type": "custom"
  6068. },
  6069. {
  6070. "url": "https://github.com/fabpot",
  6071. "type": "github"
  6072. },
  6073. {
  6074. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6075. "type": "tidelift"
  6076. }
  6077. ],
  6078. "time": "2024-11-13T18:58:02+00:00"
  6079. },
  6080. {
  6081. "name": "symfony/http-kernel",
  6082. "version": "v5.4.48",
  6083. "source": {
  6084. "type": "git",
  6085. "url": "https://github.com/symfony/http-kernel.git",
  6086. "reference": "c2dbfc92b851404567160d1ecf3fb7d9b7bde9b0"
  6087. },
  6088. "dist": {
  6089. "type": "zip",
  6090. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/c2dbfc92b851404567160d1ecf3fb7d9b7bde9b0",
  6091. "reference": "c2dbfc92b851404567160d1ecf3fb7d9b7bde9b0",
  6092. "shasum": "",
  6093. "mirrors": [
  6094. {
  6095. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6096. "preferred": true
  6097. }
  6098. ]
  6099. },
  6100. "require": {
  6101. "php": ">=7.2.5",
  6102. "psr/log": "^1|^2",
  6103. "symfony/deprecation-contracts": "^2.1|^3",
  6104. "symfony/error-handler": "^4.4|^5.0|^6.0",
  6105. "symfony/event-dispatcher": "^5.0|^6.0",
  6106. "symfony/http-foundation": "^5.4.21|^6.2.7",
  6107. "symfony/polyfill-ctype": "^1.8",
  6108. "symfony/polyfill-php73": "^1.9",
  6109. "symfony/polyfill-php80": "^1.16"
  6110. },
  6111. "conflict": {
  6112. "symfony/browser-kit": "<5.4",
  6113. "symfony/cache": "<5.0",
  6114. "symfony/config": "<5.0",
  6115. "symfony/console": "<4.4",
  6116. "symfony/dependency-injection": "<5.3",
  6117. "symfony/doctrine-bridge": "<5.0",
  6118. "symfony/form": "<5.0",
  6119. "symfony/http-client": "<5.0",
  6120. "symfony/mailer": "<5.0",
  6121. "symfony/messenger": "<5.0",
  6122. "symfony/translation": "<5.0",
  6123. "symfony/twig-bridge": "<5.0",
  6124. "symfony/validator": "<5.0",
  6125. "twig/twig": "<2.13"
  6126. },
  6127. "provide": {
  6128. "psr/log-implementation": "1.0|2.0"
  6129. },
  6130. "require-dev": {
  6131. "psr/cache": "^1.0|^2.0|^3.0",
  6132. "symfony/browser-kit": "^5.4|^6.0",
  6133. "symfony/config": "^5.0|^6.0",
  6134. "symfony/console": "^4.4|^5.0|^6.0",
  6135. "symfony/css-selector": "^4.4|^5.0|^6.0",
  6136. "symfony/dependency-injection": "^5.3|^6.0",
  6137. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  6138. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6139. "symfony/finder": "^4.4|^5.0|^6.0",
  6140. "symfony/http-client-contracts": "^1.1|^2|^3",
  6141. "symfony/process": "^4.4|^5.0|^6.0",
  6142. "symfony/routing": "^4.4|^5.0|^6.0",
  6143. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  6144. "symfony/translation": "^4.4|^5.0|^6.0",
  6145. "symfony/translation-contracts": "^1.1|^2|^3",
  6146. "symfony/var-dumper": "^4.4.31|^5.4",
  6147. "twig/twig": "^2.13|^3.0.4"
  6148. },
  6149. "suggest": {
  6150. "symfony/browser-kit": "",
  6151. "symfony/config": "",
  6152. "symfony/console": "",
  6153. "symfony/dependency-injection": ""
  6154. },
  6155. "type": "library",
  6156. "autoload": {
  6157. "psr-4": {
  6158. "Symfony\\Component\\HttpKernel\\": ""
  6159. },
  6160. "exclude-from-classmap": [
  6161. "/Tests/"
  6162. ]
  6163. },
  6164. "notification-url": "https://packagist.org/downloads/",
  6165. "license": [
  6166. "MIT"
  6167. ],
  6168. "authors": [
  6169. {
  6170. "name": "Fabien Potencier",
  6171. "email": "fabien@symfony.com"
  6172. },
  6173. {
  6174. "name": "Symfony Community",
  6175. "homepage": "https://symfony.com/contributors"
  6176. }
  6177. ],
  6178. "description": "Provides a structured process for converting a Request into a Response",
  6179. "homepage": "https://symfony.com",
  6180. "support": {
  6181. "source": "https://github.com/symfony/http-kernel/tree/v5.4.48"
  6182. },
  6183. "funding": [
  6184. {
  6185. "url": "https://symfony.com/sponsor",
  6186. "type": "custom"
  6187. },
  6188. {
  6189. "url": "https://github.com/fabpot",
  6190. "type": "github"
  6191. },
  6192. {
  6193. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6194. "type": "tidelift"
  6195. }
  6196. ],
  6197. "time": "2024-11-27T12:43:17+00:00"
  6198. },
  6199. {
  6200. "name": "symfony/mime",
  6201. "version": "v5.4.45",
  6202. "source": {
  6203. "type": "git",
  6204. "url": "https://github.com/symfony/mime.git",
  6205. "reference": "8c1b9b3e5b52981551fc6044539af1d974e39064"
  6206. },
  6207. "dist": {
  6208. "type": "zip",
  6209. "url": "https://api.github.com/repos/symfony/mime/zipball/8c1b9b3e5b52981551fc6044539af1d974e39064",
  6210. "reference": "8c1b9b3e5b52981551fc6044539af1d974e39064",
  6211. "shasum": "",
  6212. "mirrors": [
  6213. {
  6214. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6215. "preferred": true
  6216. }
  6217. ]
  6218. },
  6219. "require": {
  6220. "php": ">=7.2.5",
  6221. "symfony/deprecation-contracts": "^2.1|^3",
  6222. "symfony/polyfill-intl-idn": "^1.10",
  6223. "symfony/polyfill-mbstring": "^1.0",
  6224. "symfony/polyfill-php80": "^1.16"
  6225. },
  6226. "conflict": {
  6227. "egulias/email-validator": "~3.0.0",
  6228. "phpdocumentor/reflection-docblock": "<3.2.2",
  6229. "phpdocumentor/type-resolver": "<1.4.0",
  6230. "symfony/mailer": "<4.4",
  6231. "symfony/serializer": "<5.4.35|>=6,<6.3.12|>=6.4,<6.4.3"
  6232. },
  6233. "require-dev": {
  6234. "egulias/email-validator": "^2.1.10|^3.1|^4",
  6235. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6236. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6237. "symfony/process": "^5.4|^6.4",
  6238. "symfony/property-access": "^4.4|^5.1|^6.0",
  6239. "symfony/property-info": "^4.4|^5.1|^6.0",
  6240. "symfony/serializer": "^5.4.35|~6.3.12|^6.4.3"
  6241. },
  6242. "type": "library",
  6243. "autoload": {
  6244. "psr-4": {
  6245. "Symfony\\Component\\Mime\\": ""
  6246. },
  6247. "exclude-from-classmap": [
  6248. "/Tests/"
  6249. ]
  6250. },
  6251. "notification-url": "https://packagist.org/downloads/",
  6252. "license": [
  6253. "MIT"
  6254. ],
  6255. "authors": [
  6256. {
  6257. "name": "Fabien Potencier",
  6258. "email": "fabien@symfony.com"
  6259. },
  6260. {
  6261. "name": "Symfony Community",
  6262. "homepage": "https://symfony.com/contributors"
  6263. }
  6264. ],
  6265. "description": "Allows manipulating MIME messages",
  6266. "homepage": "https://symfony.com",
  6267. "keywords": [
  6268. "mime",
  6269. "mime-type"
  6270. ],
  6271. "support": {
  6272. "source": "https://github.com/symfony/mime/tree/v5.4.45"
  6273. },
  6274. "funding": [
  6275. {
  6276. "url": "https://symfony.com/sponsor",
  6277. "type": "custom"
  6278. },
  6279. {
  6280. "url": "https://github.com/fabpot",
  6281. "type": "github"
  6282. },
  6283. {
  6284. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6285. "type": "tidelift"
  6286. }
  6287. ],
  6288. "time": "2024-10-23T20:18:32+00:00"
  6289. },
  6290. {
  6291. "name": "symfony/polyfill-ctype",
  6292. "version": "v1.32.0",
  6293. "source": {
  6294. "type": "git",
  6295. "url": "https://github.com/symfony/polyfill-ctype.git",
  6296. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  6297. },
  6298. "dist": {
  6299. "type": "zip",
  6300. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  6301. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  6302. "shasum": "",
  6303. "mirrors": [
  6304. {
  6305. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6306. "preferred": true
  6307. }
  6308. ]
  6309. },
  6310. "require": {
  6311. "php": ">=7.2"
  6312. },
  6313. "provide": {
  6314. "ext-ctype": "*"
  6315. },
  6316. "suggest": {
  6317. "ext-ctype": "For best performance"
  6318. },
  6319. "type": "library",
  6320. "extra": {
  6321. "thanks": {
  6322. "url": "https://github.com/symfony/polyfill",
  6323. "name": "symfony/polyfill"
  6324. }
  6325. },
  6326. "autoload": {
  6327. "files": [
  6328. "bootstrap.php"
  6329. ],
  6330. "psr-4": {
  6331. "Symfony\\Polyfill\\Ctype\\": ""
  6332. }
  6333. },
  6334. "notification-url": "https://packagist.org/downloads/",
  6335. "license": [
  6336. "MIT"
  6337. ],
  6338. "authors": [
  6339. {
  6340. "name": "Gert de Pagter",
  6341. "email": "BackEndTea@gmail.com"
  6342. },
  6343. {
  6344. "name": "Symfony Community",
  6345. "homepage": "https://symfony.com/contributors"
  6346. }
  6347. ],
  6348. "description": "Symfony polyfill for ctype functions",
  6349. "homepage": "https://symfony.com",
  6350. "keywords": [
  6351. "compatibility",
  6352. "ctype",
  6353. "polyfill",
  6354. "portable"
  6355. ],
  6356. "support": {
  6357. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.32.0"
  6358. },
  6359. "funding": [
  6360. {
  6361. "url": "https://symfony.com/sponsor",
  6362. "type": "custom"
  6363. },
  6364. {
  6365. "url": "https://github.com/fabpot",
  6366. "type": "github"
  6367. },
  6368. {
  6369. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6370. "type": "tidelift"
  6371. }
  6372. ],
  6373. "time": "2024-09-09T11:45:10+00:00"
  6374. },
  6375. {
  6376. "name": "symfony/polyfill-iconv",
  6377. "version": "v1.32.0",
  6378. "source": {
  6379. "type": "git",
  6380. "url": "https://github.com/symfony/polyfill-iconv.git",
  6381. "reference": "5f3b930437ae03ae5dff61269024d8ea1b3774aa"
  6382. },
  6383. "dist": {
  6384. "type": "zip",
  6385. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/5f3b930437ae03ae5dff61269024d8ea1b3774aa",
  6386. "reference": "5f3b930437ae03ae5dff61269024d8ea1b3774aa",
  6387. "shasum": "",
  6388. "mirrors": [
  6389. {
  6390. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6391. "preferred": true
  6392. }
  6393. ]
  6394. },
  6395. "require": {
  6396. "php": ">=7.2"
  6397. },
  6398. "provide": {
  6399. "ext-iconv": "*"
  6400. },
  6401. "suggest": {
  6402. "ext-iconv": "For best performance"
  6403. },
  6404. "type": "library",
  6405. "extra": {
  6406. "thanks": {
  6407. "url": "https://github.com/symfony/polyfill",
  6408. "name": "symfony/polyfill"
  6409. }
  6410. },
  6411. "autoload": {
  6412. "files": [
  6413. "bootstrap.php"
  6414. ],
  6415. "psr-4": {
  6416. "Symfony\\Polyfill\\Iconv\\": ""
  6417. }
  6418. },
  6419. "notification-url": "https://packagist.org/downloads/",
  6420. "license": [
  6421. "MIT"
  6422. ],
  6423. "authors": [
  6424. {
  6425. "name": "Nicolas Grekas",
  6426. "email": "p@tchwork.com"
  6427. },
  6428. {
  6429. "name": "Symfony Community",
  6430. "homepage": "https://symfony.com/contributors"
  6431. }
  6432. ],
  6433. "description": "Symfony polyfill for the Iconv extension",
  6434. "homepage": "https://symfony.com",
  6435. "keywords": [
  6436. "compatibility",
  6437. "iconv",
  6438. "polyfill",
  6439. "portable",
  6440. "shim"
  6441. ],
  6442. "support": {
  6443. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.32.0"
  6444. },
  6445. "funding": [
  6446. {
  6447. "url": "https://symfony.com/sponsor",
  6448. "type": "custom"
  6449. },
  6450. {
  6451. "url": "https://github.com/fabpot",
  6452. "type": "github"
  6453. },
  6454. {
  6455. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6456. "type": "tidelift"
  6457. }
  6458. ],
  6459. "time": "2024-09-17T14:58:18+00:00"
  6460. },
  6461. {
  6462. "name": "symfony/polyfill-intl-grapheme",
  6463. "version": "v1.32.0",
  6464. "source": {
  6465. "type": "git",
  6466. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6467. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  6468. },
  6469. "dist": {
  6470. "type": "zip",
  6471. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  6472. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  6473. "shasum": "",
  6474. "mirrors": [
  6475. {
  6476. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6477. "preferred": true
  6478. }
  6479. ]
  6480. },
  6481. "require": {
  6482. "php": ">=7.2"
  6483. },
  6484. "suggest": {
  6485. "ext-intl": "For best performance"
  6486. },
  6487. "type": "library",
  6488. "extra": {
  6489. "thanks": {
  6490. "url": "https://github.com/symfony/polyfill",
  6491. "name": "symfony/polyfill"
  6492. }
  6493. },
  6494. "autoload": {
  6495. "files": [
  6496. "bootstrap.php"
  6497. ],
  6498. "psr-4": {
  6499. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6500. }
  6501. },
  6502. "notification-url": "https://packagist.org/downloads/",
  6503. "license": [
  6504. "MIT"
  6505. ],
  6506. "authors": [
  6507. {
  6508. "name": "Nicolas Grekas",
  6509. "email": "p@tchwork.com"
  6510. },
  6511. {
  6512. "name": "Symfony Community",
  6513. "homepage": "https://symfony.com/contributors"
  6514. }
  6515. ],
  6516. "description": "Symfony polyfill for intl's grapheme_* functions",
  6517. "homepage": "https://symfony.com",
  6518. "keywords": [
  6519. "compatibility",
  6520. "grapheme",
  6521. "intl",
  6522. "polyfill",
  6523. "portable",
  6524. "shim"
  6525. ],
  6526. "support": {
  6527. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.32.0"
  6528. },
  6529. "funding": [
  6530. {
  6531. "url": "https://symfony.com/sponsor",
  6532. "type": "custom"
  6533. },
  6534. {
  6535. "url": "https://github.com/fabpot",
  6536. "type": "github"
  6537. },
  6538. {
  6539. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6540. "type": "tidelift"
  6541. }
  6542. ],
  6543. "time": "2024-09-09T11:45:10+00:00"
  6544. },
  6545. {
  6546. "name": "symfony/polyfill-intl-idn",
  6547. "version": "v1.32.0",
  6548. "source": {
  6549. "type": "git",
  6550. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6551. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3"
  6552. },
  6553. "dist": {
  6554. "type": "zip",
  6555. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  6556. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  6557. "shasum": "",
  6558. "mirrors": [
  6559. {
  6560. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6561. "preferred": true
  6562. }
  6563. ]
  6564. },
  6565. "require": {
  6566. "php": ">=7.2",
  6567. "symfony/polyfill-intl-normalizer": "^1.10"
  6568. },
  6569. "suggest": {
  6570. "ext-intl": "For best performance"
  6571. },
  6572. "type": "library",
  6573. "extra": {
  6574. "thanks": {
  6575. "url": "https://github.com/symfony/polyfill",
  6576. "name": "symfony/polyfill"
  6577. }
  6578. },
  6579. "autoload": {
  6580. "files": [
  6581. "bootstrap.php"
  6582. ],
  6583. "psr-4": {
  6584. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6585. }
  6586. },
  6587. "notification-url": "https://packagist.org/downloads/",
  6588. "license": [
  6589. "MIT"
  6590. ],
  6591. "authors": [
  6592. {
  6593. "name": "Laurent Bassin",
  6594. "email": "laurent@bassin.info"
  6595. },
  6596. {
  6597. "name": "Trevor Rowbotham",
  6598. "email": "trevor.rowbotham@pm.me"
  6599. },
  6600. {
  6601. "name": "Symfony Community",
  6602. "homepage": "https://symfony.com/contributors"
  6603. }
  6604. ],
  6605. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6606. "homepage": "https://symfony.com",
  6607. "keywords": [
  6608. "compatibility",
  6609. "idn",
  6610. "intl",
  6611. "polyfill",
  6612. "portable",
  6613. "shim"
  6614. ],
  6615. "support": {
  6616. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.32.0"
  6617. },
  6618. "funding": [
  6619. {
  6620. "url": "https://symfony.com/sponsor",
  6621. "type": "custom"
  6622. },
  6623. {
  6624. "url": "https://github.com/fabpot",
  6625. "type": "github"
  6626. },
  6627. {
  6628. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6629. "type": "tidelift"
  6630. }
  6631. ],
  6632. "time": "2024-09-10T14:38:51+00:00"
  6633. },
  6634. {
  6635. "name": "symfony/polyfill-intl-normalizer",
  6636. "version": "v1.32.0",
  6637. "source": {
  6638. "type": "git",
  6639. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6640. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  6641. },
  6642. "dist": {
  6643. "type": "zip",
  6644. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  6645. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  6646. "shasum": "",
  6647. "mirrors": [
  6648. {
  6649. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6650. "preferred": true
  6651. }
  6652. ]
  6653. },
  6654. "require": {
  6655. "php": ">=7.2"
  6656. },
  6657. "suggest": {
  6658. "ext-intl": "For best performance"
  6659. },
  6660. "type": "library",
  6661. "extra": {
  6662. "thanks": {
  6663. "url": "https://github.com/symfony/polyfill",
  6664. "name": "symfony/polyfill"
  6665. }
  6666. },
  6667. "autoload": {
  6668. "files": [
  6669. "bootstrap.php"
  6670. ],
  6671. "psr-4": {
  6672. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6673. },
  6674. "classmap": [
  6675. "Resources/stubs"
  6676. ]
  6677. },
  6678. "notification-url": "https://packagist.org/downloads/",
  6679. "license": [
  6680. "MIT"
  6681. ],
  6682. "authors": [
  6683. {
  6684. "name": "Nicolas Grekas",
  6685. "email": "p@tchwork.com"
  6686. },
  6687. {
  6688. "name": "Symfony Community",
  6689. "homepage": "https://symfony.com/contributors"
  6690. }
  6691. ],
  6692. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6693. "homepage": "https://symfony.com",
  6694. "keywords": [
  6695. "compatibility",
  6696. "intl",
  6697. "normalizer",
  6698. "polyfill",
  6699. "portable",
  6700. "shim"
  6701. ],
  6702. "support": {
  6703. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.32.0"
  6704. },
  6705. "funding": [
  6706. {
  6707. "url": "https://symfony.com/sponsor",
  6708. "type": "custom"
  6709. },
  6710. {
  6711. "url": "https://github.com/fabpot",
  6712. "type": "github"
  6713. },
  6714. {
  6715. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6716. "type": "tidelift"
  6717. }
  6718. ],
  6719. "time": "2024-09-09T11:45:10+00:00"
  6720. },
  6721. {
  6722. "name": "symfony/polyfill-mbstring",
  6723. "version": "v1.32.0",
  6724. "source": {
  6725. "type": "git",
  6726. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6727. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
  6728. },
  6729. "dist": {
  6730. "type": "zip",
  6731. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
  6732. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
  6733. "shasum": "",
  6734. "mirrors": [
  6735. {
  6736. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6737. "preferred": true
  6738. }
  6739. ]
  6740. },
  6741. "require": {
  6742. "ext-iconv": "*",
  6743. "php": ">=7.2"
  6744. },
  6745. "provide": {
  6746. "ext-mbstring": "*"
  6747. },
  6748. "suggest": {
  6749. "ext-mbstring": "For best performance"
  6750. },
  6751. "type": "library",
  6752. "extra": {
  6753. "thanks": {
  6754. "url": "https://github.com/symfony/polyfill",
  6755. "name": "symfony/polyfill"
  6756. }
  6757. },
  6758. "autoload": {
  6759. "files": [
  6760. "bootstrap.php"
  6761. ],
  6762. "psr-4": {
  6763. "Symfony\\Polyfill\\Mbstring\\": ""
  6764. }
  6765. },
  6766. "notification-url": "https://packagist.org/downloads/",
  6767. "license": [
  6768. "MIT"
  6769. ],
  6770. "authors": [
  6771. {
  6772. "name": "Nicolas Grekas",
  6773. "email": "p@tchwork.com"
  6774. },
  6775. {
  6776. "name": "Symfony Community",
  6777. "homepage": "https://symfony.com/contributors"
  6778. }
  6779. ],
  6780. "description": "Symfony polyfill for the Mbstring extension",
  6781. "homepage": "https://symfony.com",
  6782. "keywords": [
  6783. "compatibility",
  6784. "mbstring",
  6785. "polyfill",
  6786. "portable",
  6787. "shim"
  6788. ],
  6789. "support": {
  6790. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.32.0"
  6791. },
  6792. "funding": [
  6793. {
  6794. "url": "https://symfony.com/sponsor",
  6795. "type": "custom"
  6796. },
  6797. {
  6798. "url": "https://github.com/fabpot",
  6799. "type": "github"
  6800. },
  6801. {
  6802. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6803. "type": "tidelift"
  6804. }
  6805. ],
  6806. "time": "2024-12-23T08:48:59+00:00"
  6807. },
  6808. {
  6809. "name": "symfony/polyfill-php73",
  6810. "version": "v1.32.0",
  6811. "source": {
  6812. "type": "git",
  6813. "url": "https://github.com/symfony/polyfill-php73.git",
  6814. "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb"
  6815. },
  6816. "dist": {
  6817. "type": "zip",
  6818. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
  6819. "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
  6820. "shasum": "",
  6821. "mirrors": [
  6822. {
  6823. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6824. "preferred": true
  6825. }
  6826. ]
  6827. },
  6828. "require": {
  6829. "php": ">=7.2"
  6830. },
  6831. "type": "library",
  6832. "extra": {
  6833. "thanks": {
  6834. "url": "https://github.com/symfony/polyfill",
  6835. "name": "symfony/polyfill"
  6836. }
  6837. },
  6838. "autoload": {
  6839. "files": [
  6840. "bootstrap.php"
  6841. ],
  6842. "psr-4": {
  6843. "Symfony\\Polyfill\\Php73\\": ""
  6844. },
  6845. "classmap": [
  6846. "Resources/stubs"
  6847. ]
  6848. },
  6849. "notification-url": "https://packagist.org/downloads/",
  6850. "license": [
  6851. "MIT"
  6852. ],
  6853. "authors": [
  6854. {
  6855. "name": "Nicolas Grekas",
  6856. "email": "p@tchwork.com"
  6857. },
  6858. {
  6859. "name": "Symfony Community",
  6860. "homepage": "https://symfony.com/contributors"
  6861. }
  6862. ],
  6863. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  6864. "homepage": "https://symfony.com",
  6865. "keywords": [
  6866. "compatibility",
  6867. "polyfill",
  6868. "portable",
  6869. "shim"
  6870. ],
  6871. "support": {
  6872. "source": "https://github.com/symfony/polyfill-php73/tree/v1.32.0"
  6873. },
  6874. "funding": [
  6875. {
  6876. "url": "https://symfony.com/sponsor",
  6877. "type": "custom"
  6878. },
  6879. {
  6880. "url": "https://github.com/fabpot",
  6881. "type": "github"
  6882. },
  6883. {
  6884. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6885. "type": "tidelift"
  6886. }
  6887. ],
  6888. "time": "2024-09-09T11:45:10+00:00"
  6889. },
  6890. {
  6891. "name": "symfony/polyfill-php80",
  6892. "version": "v1.32.0",
  6893. "source": {
  6894. "type": "git",
  6895. "url": "https://github.com/symfony/polyfill-php80.git",
  6896. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608"
  6897. },
  6898. "dist": {
  6899. "type": "zip",
  6900. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  6901. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  6902. "shasum": "",
  6903. "mirrors": [
  6904. {
  6905. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6906. "preferred": true
  6907. }
  6908. ]
  6909. },
  6910. "require": {
  6911. "php": ">=7.2"
  6912. },
  6913. "type": "library",
  6914. "extra": {
  6915. "thanks": {
  6916. "url": "https://github.com/symfony/polyfill",
  6917. "name": "symfony/polyfill"
  6918. }
  6919. },
  6920. "autoload": {
  6921. "files": [
  6922. "bootstrap.php"
  6923. ],
  6924. "psr-4": {
  6925. "Symfony\\Polyfill\\Php80\\": ""
  6926. },
  6927. "classmap": [
  6928. "Resources/stubs"
  6929. ]
  6930. },
  6931. "notification-url": "https://packagist.org/downloads/",
  6932. "license": [
  6933. "MIT"
  6934. ],
  6935. "authors": [
  6936. {
  6937. "name": "Ion Bazan",
  6938. "email": "ion.bazan@gmail.com"
  6939. },
  6940. {
  6941. "name": "Nicolas Grekas",
  6942. "email": "p@tchwork.com"
  6943. },
  6944. {
  6945. "name": "Symfony Community",
  6946. "homepage": "https://symfony.com/contributors"
  6947. }
  6948. ],
  6949. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6950. "homepage": "https://symfony.com",
  6951. "keywords": [
  6952. "compatibility",
  6953. "polyfill",
  6954. "portable",
  6955. "shim"
  6956. ],
  6957. "support": {
  6958. "source": "https://github.com/symfony/polyfill-php80/tree/v1.32.0"
  6959. },
  6960. "funding": [
  6961. {
  6962. "url": "https://symfony.com/sponsor",
  6963. "type": "custom"
  6964. },
  6965. {
  6966. "url": "https://github.com/fabpot",
  6967. "type": "github"
  6968. },
  6969. {
  6970. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6971. "type": "tidelift"
  6972. }
  6973. ],
  6974. "time": "2025-01-02T08:10:11+00:00"
  6975. },
  6976. {
  6977. "name": "symfony/polyfill-php81",
  6978. "version": "v1.32.0",
  6979. "source": {
  6980. "type": "git",
  6981. "url": "https://github.com/symfony/polyfill-php81.git",
  6982. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  6983. },
  6984. "dist": {
  6985. "type": "zip",
  6986. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  6987. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  6988. "shasum": "",
  6989. "mirrors": [
  6990. {
  6991. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6992. "preferred": true
  6993. }
  6994. ]
  6995. },
  6996. "require": {
  6997. "php": ">=7.2"
  6998. },
  6999. "type": "library",
  7000. "extra": {
  7001. "thanks": {
  7002. "url": "https://github.com/symfony/polyfill",
  7003. "name": "symfony/polyfill"
  7004. }
  7005. },
  7006. "autoload": {
  7007. "files": [
  7008. "bootstrap.php"
  7009. ],
  7010. "psr-4": {
  7011. "Symfony\\Polyfill\\Php81\\": ""
  7012. },
  7013. "classmap": [
  7014. "Resources/stubs"
  7015. ]
  7016. },
  7017. "notification-url": "https://packagist.org/downloads/",
  7018. "license": [
  7019. "MIT"
  7020. ],
  7021. "authors": [
  7022. {
  7023. "name": "Nicolas Grekas",
  7024. "email": "p@tchwork.com"
  7025. },
  7026. {
  7027. "name": "Symfony Community",
  7028. "homepage": "https://symfony.com/contributors"
  7029. }
  7030. ],
  7031. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  7032. "homepage": "https://symfony.com",
  7033. "keywords": [
  7034. "compatibility",
  7035. "polyfill",
  7036. "portable",
  7037. "shim"
  7038. ],
  7039. "support": {
  7040. "source": "https://github.com/symfony/polyfill-php81/tree/v1.32.0"
  7041. },
  7042. "funding": [
  7043. {
  7044. "url": "https://symfony.com/sponsor",
  7045. "type": "custom"
  7046. },
  7047. {
  7048. "url": "https://github.com/fabpot",
  7049. "type": "github"
  7050. },
  7051. {
  7052. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7053. "type": "tidelift"
  7054. }
  7055. ],
  7056. "time": "2024-09-09T11:45:10+00:00"
  7057. },
  7058. {
  7059. "name": "symfony/process",
  7060. "version": "v5.4.47",
  7061. "source": {
  7062. "type": "git",
  7063. "url": "https://github.com/symfony/process.git",
  7064. "reference": "5d1662fb32ebc94f17ddb8d635454a776066733d"
  7065. },
  7066. "dist": {
  7067. "type": "zip",
  7068. "url": "https://api.github.com/repos/symfony/process/zipball/5d1662fb32ebc94f17ddb8d635454a776066733d",
  7069. "reference": "5d1662fb32ebc94f17ddb8d635454a776066733d",
  7070. "shasum": "",
  7071. "mirrors": [
  7072. {
  7073. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7074. "preferred": true
  7075. }
  7076. ]
  7077. },
  7078. "require": {
  7079. "php": ">=7.2.5",
  7080. "symfony/polyfill-php80": "^1.16"
  7081. },
  7082. "type": "library",
  7083. "autoload": {
  7084. "psr-4": {
  7085. "Symfony\\Component\\Process\\": ""
  7086. },
  7087. "exclude-from-classmap": [
  7088. "/Tests/"
  7089. ]
  7090. },
  7091. "notification-url": "https://packagist.org/downloads/",
  7092. "license": [
  7093. "MIT"
  7094. ],
  7095. "authors": [
  7096. {
  7097. "name": "Fabien Potencier",
  7098. "email": "fabien@symfony.com"
  7099. },
  7100. {
  7101. "name": "Symfony Community",
  7102. "homepage": "https://symfony.com/contributors"
  7103. }
  7104. ],
  7105. "description": "Executes commands in sub-processes",
  7106. "homepage": "https://symfony.com",
  7107. "support": {
  7108. "source": "https://github.com/symfony/process/tree/v5.4.47"
  7109. },
  7110. "funding": [
  7111. {
  7112. "url": "https://symfony.com/sponsor",
  7113. "type": "custom"
  7114. },
  7115. {
  7116. "url": "https://github.com/fabpot",
  7117. "type": "github"
  7118. },
  7119. {
  7120. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7121. "type": "tidelift"
  7122. }
  7123. ],
  7124. "time": "2024-11-06T11:36:42+00:00"
  7125. },
  7126. {
  7127. "name": "symfony/routing",
  7128. "version": "v5.4.48",
  7129. "source": {
  7130. "type": "git",
  7131. "url": "https://github.com/symfony/routing.git",
  7132. "reference": "dd08c19879a9b37ff14fd30dcbdf99a4cf045db1"
  7133. },
  7134. "dist": {
  7135. "type": "zip",
  7136. "url": "https://api.github.com/repos/symfony/routing/zipball/dd08c19879a9b37ff14fd30dcbdf99a4cf045db1",
  7137. "reference": "dd08c19879a9b37ff14fd30dcbdf99a4cf045db1",
  7138. "shasum": "",
  7139. "mirrors": [
  7140. {
  7141. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7142. "preferred": true
  7143. }
  7144. ]
  7145. },
  7146. "require": {
  7147. "php": ">=7.2.5",
  7148. "symfony/deprecation-contracts": "^2.1|^3",
  7149. "symfony/polyfill-php80": "^1.16"
  7150. },
  7151. "conflict": {
  7152. "doctrine/annotations": "<1.12",
  7153. "symfony/config": "<5.3",
  7154. "symfony/dependency-injection": "<4.4",
  7155. "symfony/yaml": "<4.4"
  7156. },
  7157. "require-dev": {
  7158. "doctrine/annotations": "^1.12|^2",
  7159. "psr/log": "^1|^2|^3",
  7160. "symfony/config": "^5.3|^6.0",
  7161. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  7162. "symfony/expression-language": "^4.4|^5.0|^6.0",
  7163. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  7164. "symfony/yaml": "^4.4|^5.0|^6.0"
  7165. },
  7166. "suggest": {
  7167. "symfony/config": "For using the all-in-one router or any loader",
  7168. "symfony/expression-language": "For using expression matching",
  7169. "symfony/http-foundation": "For using a Symfony Request object",
  7170. "symfony/yaml": "For using the YAML loader"
  7171. },
  7172. "type": "library",
  7173. "autoload": {
  7174. "psr-4": {
  7175. "Symfony\\Component\\Routing\\": ""
  7176. },
  7177. "exclude-from-classmap": [
  7178. "/Tests/"
  7179. ]
  7180. },
  7181. "notification-url": "https://packagist.org/downloads/",
  7182. "license": [
  7183. "MIT"
  7184. ],
  7185. "authors": [
  7186. {
  7187. "name": "Fabien Potencier",
  7188. "email": "fabien@symfony.com"
  7189. },
  7190. {
  7191. "name": "Symfony Community",
  7192. "homepage": "https://symfony.com/contributors"
  7193. }
  7194. ],
  7195. "description": "Maps an HTTP request to a set of configuration variables",
  7196. "homepage": "https://symfony.com",
  7197. "keywords": [
  7198. "router",
  7199. "routing",
  7200. "uri",
  7201. "url"
  7202. ],
  7203. "support": {
  7204. "source": "https://github.com/symfony/routing/tree/v5.4.48"
  7205. },
  7206. "funding": [
  7207. {
  7208. "url": "https://symfony.com/sponsor",
  7209. "type": "custom"
  7210. },
  7211. {
  7212. "url": "https://github.com/fabpot",
  7213. "type": "github"
  7214. },
  7215. {
  7216. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7217. "type": "tidelift"
  7218. }
  7219. ],
  7220. "time": "2024-11-12T18:20:21+00:00"
  7221. },
  7222. {
  7223. "name": "symfony/service-contracts",
  7224. "version": "v2.5.4",
  7225. "source": {
  7226. "type": "git",
  7227. "url": "https://github.com/symfony/service-contracts.git",
  7228. "reference": "f37b419f7aea2e9abf10abd261832cace12e3300"
  7229. },
  7230. "dist": {
  7231. "type": "zip",
  7232. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f37b419f7aea2e9abf10abd261832cace12e3300",
  7233. "reference": "f37b419f7aea2e9abf10abd261832cace12e3300",
  7234. "shasum": "",
  7235. "mirrors": [
  7236. {
  7237. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7238. "preferred": true
  7239. }
  7240. ]
  7241. },
  7242. "require": {
  7243. "php": ">=7.2.5",
  7244. "psr/container": "^1.1",
  7245. "symfony/deprecation-contracts": "^2.1|^3"
  7246. },
  7247. "conflict": {
  7248. "ext-psr": "<1.1|>=2"
  7249. },
  7250. "suggest": {
  7251. "symfony/service-implementation": ""
  7252. },
  7253. "type": "library",
  7254. "extra": {
  7255. "thanks": {
  7256. "url": "https://github.com/symfony/contracts",
  7257. "name": "symfony/contracts"
  7258. },
  7259. "branch-alias": {
  7260. "dev-main": "2.5-dev"
  7261. }
  7262. },
  7263. "autoload": {
  7264. "psr-4": {
  7265. "Symfony\\Contracts\\Service\\": ""
  7266. }
  7267. },
  7268. "notification-url": "https://packagist.org/downloads/",
  7269. "license": [
  7270. "MIT"
  7271. ],
  7272. "authors": [
  7273. {
  7274. "name": "Nicolas Grekas",
  7275. "email": "p@tchwork.com"
  7276. },
  7277. {
  7278. "name": "Symfony Community",
  7279. "homepage": "https://symfony.com/contributors"
  7280. }
  7281. ],
  7282. "description": "Generic abstractions related to writing services",
  7283. "homepage": "https://symfony.com",
  7284. "keywords": [
  7285. "abstractions",
  7286. "contracts",
  7287. "decoupling",
  7288. "interfaces",
  7289. "interoperability",
  7290. "standards"
  7291. ],
  7292. "support": {
  7293. "source": "https://github.com/symfony/service-contracts/tree/v2.5.4"
  7294. },
  7295. "funding": [
  7296. {
  7297. "url": "https://symfony.com/sponsor",
  7298. "type": "custom"
  7299. },
  7300. {
  7301. "url": "https://github.com/fabpot",
  7302. "type": "github"
  7303. },
  7304. {
  7305. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7306. "type": "tidelift"
  7307. }
  7308. ],
  7309. "time": "2024-09-25T14:11:13+00:00"
  7310. },
  7311. {
  7312. "name": "symfony/string",
  7313. "version": "v6.0.19",
  7314. "source": {
  7315. "type": "git",
  7316. "url": "https://github.com/symfony/string.git",
  7317. "reference": "d9e72497367c23e08bf94176d2be45b00a9d232a"
  7318. },
  7319. "dist": {
  7320. "type": "zip",
  7321. "url": "https://api.github.com/repos/symfony/string/zipball/d9e72497367c23e08bf94176d2be45b00a9d232a",
  7322. "reference": "d9e72497367c23e08bf94176d2be45b00a9d232a",
  7323. "shasum": "",
  7324. "mirrors": [
  7325. {
  7326. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7327. "preferred": true
  7328. }
  7329. ]
  7330. },
  7331. "require": {
  7332. "php": ">=8.0.2",
  7333. "symfony/polyfill-ctype": "~1.8",
  7334. "symfony/polyfill-intl-grapheme": "~1.0",
  7335. "symfony/polyfill-intl-normalizer": "~1.0",
  7336. "symfony/polyfill-mbstring": "~1.0"
  7337. },
  7338. "conflict": {
  7339. "symfony/translation-contracts": "<2.0"
  7340. },
  7341. "require-dev": {
  7342. "symfony/error-handler": "^5.4|^6.0",
  7343. "symfony/http-client": "^5.4|^6.0",
  7344. "symfony/translation-contracts": "^2.0|^3.0",
  7345. "symfony/var-exporter": "^5.4|^6.0"
  7346. },
  7347. "type": "library",
  7348. "autoload": {
  7349. "files": [
  7350. "Resources/functions.php"
  7351. ],
  7352. "psr-4": {
  7353. "Symfony\\Component\\String\\": ""
  7354. },
  7355. "exclude-from-classmap": [
  7356. "/Tests/"
  7357. ]
  7358. },
  7359. "notification-url": "https://packagist.org/downloads/",
  7360. "license": [
  7361. "MIT"
  7362. ],
  7363. "authors": [
  7364. {
  7365. "name": "Nicolas Grekas",
  7366. "email": "p@tchwork.com"
  7367. },
  7368. {
  7369. "name": "Symfony Community",
  7370. "homepage": "https://symfony.com/contributors"
  7371. }
  7372. ],
  7373. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7374. "homepage": "https://symfony.com",
  7375. "keywords": [
  7376. "grapheme",
  7377. "i18n",
  7378. "string",
  7379. "unicode",
  7380. "utf-8",
  7381. "utf8"
  7382. ],
  7383. "support": {
  7384. "source": "https://github.com/symfony/string/tree/v6.0.19"
  7385. },
  7386. "funding": [
  7387. {
  7388. "url": "https://symfony.com/sponsor",
  7389. "type": "custom"
  7390. },
  7391. {
  7392. "url": "https://github.com/fabpot",
  7393. "type": "github"
  7394. },
  7395. {
  7396. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7397. "type": "tidelift"
  7398. }
  7399. ],
  7400. "time": "2023-01-01T08:36:10+00:00"
  7401. },
  7402. {
  7403. "name": "symfony/translation",
  7404. "version": "v6.0.19",
  7405. "source": {
  7406. "type": "git",
  7407. "url": "https://github.com/symfony/translation.git",
  7408. "reference": "9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f"
  7409. },
  7410. "dist": {
  7411. "type": "zip",
  7412. "url": "https://api.github.com/repos/symfony/translation/zipball/9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f",
  7413. "reference": "9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f",
  7414. "shasum": "",
  7415. "mirrors": [
  7416. {
  7417. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7418. "preferred": true
  7419. }
  7420. ]
  7421. },
  7422. "require": {
  7423. "php": ">=8.0.2",
  7424. "symfony/polyfill-mbstring": "~1.0",
  7425. "symfony/translation-contracts": "^2.3|^3.0"
  7426. },
  7427. "conflict": {
  7428. "symfony/config": "<5.4",
  7429. "symfony/console": "<5.4",
  7430. "symfony/dependency-injection": "<5.4",
  7431. "symfony/http-kernel": "<5.4",
  7432. "symfony/twig-bundle": "<5.4",
  7433. "symfony/yaml": "<5.4"
  7434. },
  7435. "provide": {
  7436. "symfony/translation-implementation": "2.3|3.0"
  7437. },
  7438. "require-dev": {
  7439. "psr/log": "^1|^2|^3",
  7440. "symfony/config": "^5.4|^6.0",
  7441. "symfony/console": "^5.4|^6.0",
  7442. "symfony/dependency-injection": "^5.4|^6.0",
  7443. "symfony/finder": "^5.4|^6.0",
  7444. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  7445. "symfony/http-kernel": "^5.4|^6.0",
  7446. "symfony/intl": "^5.4|^6.0",
  7447. "symfony/polyfill-intl-icu": "^1.21",
  7448. "symfony/service-contracts": "^1.1.2|^2|^3",
  7449. "symfony/yaml": "^5.4|^6.0"
  7450. },
  7451. "suggest": {
  7452. "psr/log-implementation": "To use logging capability in translator",
  7453. "symfony/config": "",
  7454. "symfony/yaml": ""
  7455. },
  7456. "type": "library",
  7457. "autoload": {
  7458. "files": [
  7459. "Resources/functions.php"
  7460. ],
  7461. "psr-4": {
  7462. "Symfony\\Component\\Translation\\": ""
  7463. },
  7464. "exclude-from-classmap": [
  7465. "/Tests/"
  7466. ]
  7467. },
  7468. "notification-url": "https://packagist.org/downloads/",
  7469. "license": [
  7470. "MIT"
  7471. ],
  7472. "authors": [
  7473. {
  7474. "name": "Fabien Potencier",
  7475. "email": "fabien@symfony.com"
  7476. },
  7477. {
  7478. "name": "Symfony Community",
  7479. "homepage": "https://symfony.com/contributors"
  7480. }
  7481. ],
  7482. "description": "Provides tools to internationalize your application",
  7483. "homepage": "https://symfony.com",
  7484. "support": {
  7485. "source": "https://github.com/symfony/translation/tree/v6.0.19"
  7486. },
  7487. "funding": [
  7488. {
  7489. "url": "https://symfony.com/sponsor",
  7490. "type": "custom"
  7491. },
  7492. {
  7493. "url": "https://github.com/fabpot",
  7494. "type": "github"
  7495. },
  7496. {
  7497. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7498. "type": "tidelift"
  7499. }
  7500. ],
  7501. "time": "2023-01-01T08:36:10+00:00"
  7502. },
  7503. {
  7504. "name": "symfony/translation-contracts",
  7505. "version": "v3.0.2",
  7506. "source": {
  7507. "type": "git",
  7508. "url": "https://github.com/symfony/translation-contracts.git",
  7509. "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282"
  7510. },
  7511. "dist": {
  7512. "type": "zip",
  7513. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/acbfbb274e730e5a0236f619b6168d9dedb3e282",
  7514. "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282",
  7515. "shasum": "",
  7516. "mirrors": [
  7517. {
  7518. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7519. "preferred": true
  7520. }
  7521. ]
  7522. },
  7523. "require": {
  7524. "php": ">=8.0.2"
  7525. },
  7526. "suggest": {
  7527. "symfony/translation-implementation": ""
  7528. },
  7529. "type": "library",
  7530. "extra": {
  7531. "thanks": {
  7532. "url": "https://github.com/symfony/contracts",
  7533. "name": "symfony/contracts"
  7534. },
  7535. "branch-alias": {
  7536. "dev-main": "3.0-dev"
  7537. }
  7538. },
  7539. "autoload": {
  7540. "psr-4": {
  7541. "Symfony\\Contracts\\Translation\\": ""
  7542. }
  7543. },
  7544. "notification-url": "https://packagist.org/downloads/",
  7545. "license": [
  7546. "MIT"
  7547. ],
  7548. "authors": [
  7549. {
  7550. "name": "Nicolas Grekas",
  7551. "email": "p@tchwork.com"
  7552. },
  7553. {
  7554. "name": "Symfony Community",
  7555. "homepage": "https://symfony.com/contributors"
  7556. }
  7557. ],
  7558. "description": "Generic abstractions related to translation",
  7559. "homepage": "https://symfony.com",
  7560. "keywords": [
  7561. "abstractions",
  7562. "contracts",
  7563. "decoupling",
  7564. "interfaces",
  7565. "interoperability",
  7566. "standards"
  7567. ],
  7568. "support": {
  7569. "source": "https://github.com/symfony/translation-contracts/tree/v3.0.2"
  7570. },
  7571. "funding": [
  7572. {
  7573. "url": "https://symfony.com/sponsor",
  7574. "type": "custom"
  7575. },
  7576. {
  7577. "url": "https://github.com/fabpot",
  7578. "type": "github"
  7579. },
  7580. {
  7581. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7582. "type": "tidelift"
  7583. }
  7584. ],
  7585. "time": "2022-06-27T17:10:44+00:00"
  7586. },
  7587. {
  7588. "name": "symfony/var-dumper",
  7589. "version": "v5.4.48",
  7590. "source": {
  7591. "type": "git",
  7592. "url": "https://github.com/symfony/var-dumper.git",
  7593. "reference": "42f18f170aa86d612c3559cfb3bd11a375df32c8"
  7594. },
  7595. "dist": {
  7596. "type": "zip",
  7597. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/42f18f170aa86d612c3559cfb3bd11a375df32c8",
  7598. "reference": "42f18f170aa86d612c3559cfb3bd11a375df32c8",
  7599. "shasum": "",
  7600. "mirrors": [
  7601. {
  7602. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7603. "preferred": true
  7604. }
  7605. ]
  7606. },
  7607. "require": {
  7608. "php": ">=7.2.5",
  7609. "symfony/polyfill-mbstring": "~1.0",
  7610. "symfony/polyfill-php80": "^1.16"
  7611. },
  7612. "conflict": {
  7613. "symfony/console": "<4.4"
  7614. },
  7615. "require-dev": {
  7616. "ext-iconv": "*",
  7617. "symfony/console": "^4.4|^5.0|^6.0",
  7618. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  7619. "symfony/process": "^4.4|^5.0|^6.0",
  7620. "symfony/uid": "^5.1|^6.0",
  7621. "twig/twig": "^2.13|^3.0.4"
  7622. },
  7623. "suggest": {
  7624. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7625. "ext-intl": "To show region name in time zone dump",
  7626. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  7627. },
  7628. "bin": [
  7629. "Resources/bin/var-dump-server"
  7630. ],
  7631. "type": "library",
  7632. "autoload": {
  7633. "files": [
  7634. "Resources/functions/dump.php"
  7635. ],
  7636. "psr-4": {
  7637. "Symfony\\Component\\VarDumper\\": ""
  7638. },
  7639. "exclude-from-classmap": [
  7640. "/Tests/"
  7641. ]
  7642. },
  7643. "notification-url": "https://packagist.org/downloads/",
  7644. "license": [
  7645. "MIT"
  7646. ],
  7647. "authors": [
  7648. {
  7649. "name": "Nicolas Grekas",
  7650. "email": "p@tchwork.com"
  7651. },
  7652. {
  7653. "name": "Symfony Community",
  7654. "homepage": "https://symfony.com/contributors"
  7655. }
  7656. ],
  7657. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7658. "homepage": "https://symfony.com",
  7659. "keywords": [
  7660. "debug",
  7661. "dump"
  7662. ],
  7663. "support": {
  7664. "source": "https://github.com/symfony/var-dumper/tree/v5.4.48"
  7665. },
  7666. "funding": [
  7667. {
  7668. "url": "https://symfony.com/sponsor",
  7669. "type": "custom"
  7670. },
  7671. {
  7672. "url": "https://github.com/fabpot",
  7673. "type": "github"
  7674. },
  7675. {
  7676. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7677. "type": "tidelift"
  7678. }
  7679. ],
  7680. "time": "2024-11-08T15:21:10+00:00"
  7681. },
  7682. {
  7683. "name": "tijsverkoyen/css-to-inline-styles",
  7684. "version": "v2.3.0",
  7685. "source": {
  7686. "type": "git",
  7687. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7688. "reference": "0d72ac1c00084279c1816675284073c5a337c20d"
  7689. },
  7690. "dist": {
  7691. "type": "zip",
  7692. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/0d72ac1c00084279c1816675284073c5a337c20d",
  7693. "reference": "0d72ac1c00084279c1816675284073c5a337c20d",
  7694. "shasum": "",
  7695. "mirrors": [
  7696. {
  7697. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7698. "preferred": true
  7699. }
  7700. ]
  7701. },
  7702. "require": {
  7703. "ext-dom": "*",
  7704. "ext-libxml": "*",
  7705. "php": "^7.4 || ^8.0",
  7706. "symfony/css-selector": "^5.4 || ^6.0 || ^7.0"
  7707. },
  7708. "require-dev": {
  7709. "phpstan/phpstan": "^2.0",
  7710. "phpstan/phpstan-phpunit": "^2.0",
  7711. "phpunit/phpunit": "^8.5.21 || ^9.5.10"
  7712. },
  7713. "type": "library",
  7714. "extra": {
  7715. "branch-alias": {
  7716. "dev-master": "2.x-dev"
  7717. }
  7718. },
  7719. "autoload": {
  7720. "psr-4": {
  7721. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7722. }
  7723. },
  7724. "notification-url": "https://packagist.org/downloads/",
  7725. "license": [
  7726. "BSD-3-Clause"
  7727. ],
  7728. "authors": [
  7729. {
  7730. "name": "Tijs Verkoyen",
  7731. "email": "css_to_inline_styles@verkoyen.eu",
  7732. "role": "Developer"
  7733. }
  7734. ],
  7735. "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.",
  7736. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7737. "support": {
  7738. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7739. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.3.0"
  7740. },
  7741. "time": "2024-12-21T16:25:41+00:00"
  7742. },
  7743. {
  7744. "name": "vlucas/phpdotenv",
  7745. "version": "v5.6.1",
  7746. "source": {
  7747. "type": "git",
  7748. "url": "https://github.com/vlucas/phpdotenv.git",
  7749. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  7750. },
  7751. "dist": {
  7752. "type": "zip",
  7753. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7754. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7755. "shasum": "",
  7756. "mirrors": [
  7757. {
  7758. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7759. "preferred": true
  7760. }
  7761. ]
  7762. },
  7763. "require": {
  7764. "ext-pcre": "*",
  7765. "graham-campbell/result-type": "^1.1.3",
  7766. "php": "^7.2.5 || ^8.0",
  7767. "phpoption/phpoption": "^1.9.3",
  7768. "symfony/polyfill-ctype": "^1.24",
  7769. "symfony/polyfill-mbstring": "^1.24",
  7770. "symfony/polyfill-php80": "^1.24"
  7771. },
  7772. "require-dev": {
  7773. "bamarni/composer-bin-plugin": "^1.8.2",
  7774. "ext-filter": "*",
  7775. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  7776. },
  7777. "suggest": {
  7778. "ext-filter": "Required to use the boolean validator."
  7779. },
  7780. "type": "library",
  7781. "extra": {
  7782. "bamarni-bin": {
  7783. "bin-links": true,
  7784. "forward-command": false
  7785. },
  7786. "branch-alias": {
  7787. "dev-master": "5.6-dev"
  7788. }
  7789. },
  7790. "autoload": {
  7791. "psr-4": {
  7792. "Dotenv\\": "src/"
  7793. }
  7794. },
  7795. "notification-url": "https://packagist.org/downloads/",
  7796. "license": [
  7797. "BSD-3-Clause"
  7798. ],
  7799. "authors": [
  7800. {
  7801. "name": "Graham Campbell",
  7802. "email": "hello@gjcampbell.co.uk",
  7803. "homepage": "https://github.com/GrahamCampbell"
  7804. },
  7805. {
  7806. "name": "Vance Lucas",
  7807. "email": "vance@vancelucas.com",
  7808. "homepage": "https://github.com/vlucas"
  7809. }
  7810. ],
  7811. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7812. "keywords": [
  7813. "dotenv",
  7814. "env",
  7815. "environment"
  7816. ],
  7817. "support": {
  7818. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7819. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  7820. },
  7821. "funding": [
  7822. {
  7823. "url": "https://github.com/GrahamCampbell",
  7824. "type": "github"
  7825. },
  7826. {
  7827. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7828. "type": "tidelift"
  7829. }
  7830. ],
  7831. "time": "2024-07-20T21:52:34+00:00"
  7832. },
  7833. {
  7834. "name": "voku/portable-ascii",
  7835. "version": "1.6.1",
  7836. "source": {
  7837. "type": "git",
  7838. "url": "https://github.com/voku/portable-ascii.git",
  7839. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a"
  7840. },
  7841. "dist": {
  7842. "type": "zip",
  7843. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/87337c91b9dfacee02452244ee14ab3c43bc485a",
  7844. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a",
  7845. "shasum": "",
  7846. "mirrors": [
  7847. {
  7848. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7849. "preferred": true
  7850. }
  7851. ]
  7852. },
  7853. "require": {
  7854. "php": ">=7.0.0"
  7855. },
  7856. "require-dev": {
  7857. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  7858. },
  7859. "suggest": {
  7860. "ext-intl": "Use Intl for transliterator_transliterate() support"
  7861. },
  7862. "type": "library",
  7863. "autoload": {
  7864. "psr-4": {
  7865. "voku\\": "src/voku/"
  7866. }
  7867. },
  7868. "notification-url": "https://packagist.org/downloads/",
  7869. "license": [
  7870. "MIT"
  7871. ],
  7872. "authors": [
  7873. {
  7874. "name": "Lars Moelleken",
  7875. "homepage": "http://www.moelleken.org/"
  7876. }
  7877. ],
  7878. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  7879. "homepage": "https://github.com/voku/portable-ascii",
  7880. "keywords": [
  7881. "ascii",
  7882. "clean",
  7883. "php"
  7884. ],
  7885. "support": {
  7886. "issues": "https://github.com/voku/portable-ascii/issues",
  7887. "source": "https://github.com/voku/portable-ascii/tree/1.6.1"
  7888. },
  7889. "funding": [
  7890. {
  7891. "url": "https://www.paypal.me/moelleken",
  7892. "type": "custom"
  7893. },
  7894. {
  7895. "url": "https://github.com/voku",
  7896. "type": "github"
  7897. },
  7898. {
  7899. "url": "https://opencollective.com/portable-ascii",
  7900. "type": "open_collective"
  7901. },
  7902. {
  7903. "url": "https://www.patreon.com/voku",
  7904. "type": "patreon"
  7905. },
  7906. {
  7907. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  7908. "type": "tidelift"
  7909. }
  7910. ],
  7911. "time": "2022-01-24T18:55:24+00:00"
  7912. },
  7913. {
  7914. "name": "yansongda/pay",
  7915. "version": "v3.4.2",
  7916. "source": {
  7917. "type": "git",
  7918. "url": "https://github.com/yansongda/pay.git",
  7919. "reference": "de827f7a594ef02432432da1f873926662b478fc"
  7920. },
  7921. "dist": {
  7922. "type": "zip",
  7923. "url": "https://api.github.com/repos/yansongda/pay/zipball/de827f7a594ef02432432da1f873926662b478fc",
  7924. "reference": "de827f7a594ef02432432da1f873926662b478fc",
  7925. "shasum": "",
  7926. "mirrors": [
  7927. {
  7928. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7929. "preferred": true
  7930. }
  7931. ]
  7932. },
  7933. "require": {
  7934. "ext-bcmath": "*",
  7935. "ext-json": "*",
  7936. "ext-libxml": "*",
  7937. "ext-openssl": "*",
  7938. "ext-simplexml": "*",
  7939. "php": ">=8.0",
  7940. "psr/container": "^1.1 || ^2.0",
  7941. "psr/event-dispatcher": "^1.0",
  7942. "psr/http-client": "^1.0",
  7943. "psr/http-message": "^1.1 || ^2.0",
  7944. "psr/log": "^1.1 || ^2.0 || ^3.0",
  7945. "yansongda/supports": "~4.0.0"
  7946. },
  7947. "conflict": {
  7948. "hyperf/framework": "<3.0"
  7949. },
  7950. "require-dev": {
  7951. "friendsofphp/php-cs-fixer": "^3.0",
  7952. "guzzlehttp/guzzle": "^7.0",
  7953. "hyperf/pimple": "^2.2",
  7954. "mockery/mockery": "^1.4",
  7955. "monolog/monolog": "^2.2",
  7956. "phpstan/phpstan": "^1.0.0",
  7957. "phpunit/phpunit": "^9.0",
  7958. "symfony/event-dispatcher": "^5.2.0",
  7959. "symfony/http-foundation": "^5.2.0",
  7960. "symfony/psr-http-message-bridge": "^2.1",
  7961. "symfony/var-dumper": "^5.1"
  7962. },
  7963. "suggest": {
  7964. "hyperf/pimple": "其它/无框架下使用 SDK,请安装",
  7965. "hyperf/utils": "Hyperf 框架下使用 SDK,请安装",
  7966. "illuminate/container": "Laravel 框架下使用 SDK,请安装"
  7967. },
  7968. "type": "library",
  7969. "autoload": {
  7970. "files": [
  7971. "src/Functions.php"
  7972. ],
  7973. "psr-4": {
  7974. "Yansongda\\Pay\\": "src"
  7975. }
  7976. },
  7977. "notification-url": "https://packagist.org/downloads/",
  7978. "license": [
  7979. "MIT"
  7980. ],
  7981. "authors": [
  7982. {
  7983. "name": "yansongda",
  7984. "email": "me@yansongda.cn"
  7985. }
  7986. ],
  7987. "description": "可能是我用过的最优雅的 Alipay 和 WeChat 的支付 SDK 扩展包了",
  7988. "keywords": [
  7989. "alipay",
  7990. "pay",
  7991. "wechat"
  7992. ],
  7993. "support": {
  7994. "homepage": "https://pay.yansongda.cn",
  7995. "issues": "https://github.com/yansongda/pay/issues",
  7996. "source": "https://github.com/yansongda/pay"
  7997. },
  7998. "time": "2023-06-27T09:54:37+00:00"
  7999. },
  8000. {
  8001. "name": "yansongda/supports",
  8002. "version": "v4.0.10",
  8003. "source": {
  8004. "type": "git",
  8005. "url": "https://github.com/yansongda/supports.git",
  8006. "reference": "11cc73776e6d4d763a84c8c733f64820abdc44e5"
  8007. },
  8008. "dist": {
  8009. "type": "zip",
  8010. "url": "https://api.github.com/repos/yansongda/supports/zipball/11cc73776e6d4d763a84c8c733f64820abdc44e5",
  8011. "reference": "11cc73776e6d4d763a84c8c733f64820abdc44e5",
  8012. "shasum": "",
  8013. "mirrors": [
  8014. {
  8015. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8016. "preferred": true
  8017. }
  8018. ]
  8019. },
  8020. "require": {
  8021. "php": ">=8.0"
  8022. },
  8023. "require-dev": {
  8024. "friendsofphp/php-cs-fixer": "^3.0",
  8025. "mockery/mockery": "^1.4",
  8026. "phpstan/phpstan": "^1.1.0",
  8027. "phpunit/phpunit": "^9.0"
  8028. },
  8029. "suggest": {
  8030. "monolog/monolog": "Use logger",
  8031. "symfony/console": "Use stdout logger"
  8032. },
  8033. "type": "library",
  8034. "autoload": {
  8035. "files": [
  8036. "src/Functions.php"
  8037. ],
  8038. "psr-4": {
  8039. "Yansongda\\Supports\\": "src/"
  8040. }
  8041. },
  8042. "notification-url": "https://packagist.org/downloads/",
  8043. "license": [
  8044. "MIT"
  8045. ],
  8046. "authors": [
  8047. {
  8048. "name": "yansongda",
  8049. "email": "me@yansongda.cn"
  8050. }
  8051. ],
  8052. "description": "common components",
  8053. "keywords": [
  8054. "array",
  8055. "collection",
  8056. "config",
  8057. "support"
  8058. ],
  8059. "support": {
  8060. "issues": "https://github.com/yansongda/supports/issues",
  8061. "source": "https://github.com/yansongda/supports"
  8062. },
  8063. "time": "2024-06-09T15:49:21+00:00"
  8064. }
  8065. ],
  8066. "packages-dev": [
  8067. {
  8068. "name": "doctrine/instantiator",
  8069. "version": "1.5.0",
  8070. "source": {
  8071. "type": "git",
  8072. "url": "https://github.com/doctrine/instantiator.git",
  8073. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  8074. },
  8075. "dist": {
  8076. "type": "zip",
  8077. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  8078. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  8079. "shasum": "",
  8080. "mirrors": [
  8081. {
  8082. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8083. "preferred": true
  8084. }
  8085. ]
  8086. },
  8087. "require": {
  8088. "php": "^7.1 || ^8.0"
  8089. },
  8090. "require-dev": {
  8091. "doctrine/coding-standard": "^9 || ^11",
  8092. "ext-pdo": "*",
  8093. "ext-phar": "*",
  8094. "phpbench/phpbench": "^0.16 || ^1",
  8095. "phpstan/phpstan": "^1.4",
  8096. "phpstan/phpstan-phpunit": "^1",
  8097. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  8098. "vimeo/psalm": "^4.30 || ^5.4"
  8099. },
  8100. "type": "library",
  8101. "autoload": {
  8102. "psr-4": {
  8103. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8104. }
  8105. },
  8106. "notification-url": "https://packagist.org/downloads/",
  8107. "license": [
  8108. "MIT"
  8109. ],
  8110. "authors": [
  8111. {
  8112. "name": "Marco Pivetta",
  8113. "email": "ocramius@gmail.com",
  8114. "homepage": "https://ocramius.github.io/"
  8115. }
  8116. ],
  8117. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8118. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8119. "keywords": [
  8120. "constructor",
  8121. "instantiate"
  8122. ],
  8123. "support": {
  8124. "issues": "https://github.com/doctrine/instantiator/issues",
  8125. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  8126. },
  8127. "funding": [
  8128. {
  8129. "url": "https://www.doctrine-project.org/sponsorship.html",
  8130. "type": "custom"
  8131. },
  8132. {
  8133. "url": "https://www.patreon.com/phpdoctrine",
  8134. "type": "patreon"
  8135. },
  8136. {
  8137. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8138. "type": "tidelift"
  8139. }
  8140. ],
  8141. "time": "2022-12-30T00:15:36+00:00"
  8142. },
  8143. {
  8144. "name": "facade/flare-client-php",
  8145. "version": "1.10.0",
  8146. "source": {
  8147. "type": "git",
  8148. "url": "https://github.com/facade/flare-client-php.git",
  8149. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8"
  8150. },
  8151. "dist": {
  8152. "type": "zip",
  8153. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  8154. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  8155. "shasum": "",
  8156. "mirrors": [
  8157. {
  8158. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8159. "preferred": true
  8160. }
  8161. ]
  8162. },
  8163. "require": {
  8164. "facade/ignition-contracts": "~1.0",
  8165. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  8166. "php": "^7.1|^8.0",
  8167. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  8168. "symfony/mime": "^3.4|^4.0|^5.1",
  8169. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  8170. },
  8171. "require-dev": {
  8172. "friendsofphp/php-cs-fixer": "^2.14",
  8173. "phpunit/phpunit": "^7.5",
  8174. "spatie/phpunit-snapshot-assertions": "^2.0"
  8175. },
  8176. "type": "library",
  8177. "extra": {
  8178. "branch-alias": {
  8179. "dev-master": "1.0-dev"
  8180. }
  8181. },
  8182. "autoload": {
  8183. "files": [
  8184. "src/helpers.php"
  8185. ],
  8186. "psr-4": {
  8187. "Facade\\FlareClient\\": "src"
  8188. }
  8189. },
  8190. "notification-url": "https://packagist.org/downloads/",
  8191. "license": [
  8192. "MIT"
  8193. ],
  8194. "description": "Send PHP errors to Flare",
  8195. "homepage": "https://github.com/facade/flare-client-php",
  8196. "keywords": [
  8197. "exception",
  8198. "facade",
  8199. "flare",
  8200. "reporting"
  8201. ],
  8202. "support": {
  8203. "issues": "https://github.com/facade/flare-client-php/issues",
  8204. "source": "https://github.com/facade/flare-client-php/tree/1.10.0"
  8205. },
  8206. "funding": [
  8207. {
  8208. "url": "https://github.com/spatie",
  8209. "type": "github"
  8210. }
  8211. ],
  8212. "time": "2022-08-09T11:23:57+00:00"
  8213. },
  8214. {
  8215. "name": "facade/ignition",
  8216. "version": "2.17.7",
  8217. "source": {
  8218. "type": "git",
  8219. "url": "https://github.com/facade/ignition.git",
  8220. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9"
  8221. },
  8222. "dist": {
  8223. "type": "zip",
  8224. "url": "https://api.github.com/repos/facade/ignition/zipball/b4f5955825bb4b74cba0f94001761c46335c33e9",
  8225. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9",
  8226. "shasum": "",
  8227. "mirrors": [
  8228. {
  8229. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8230. "preferred": true
  8231. }
  8232. ]
  8233. },
  8234. "require": {
  8235. "ext-curl": "*",
  8236. "ext-json": "*",
  8237. "ext-mbstring": "*",
  8238. "facade/flare-client-php": "^1.9.1",
  8239. "facade/ignition-contracts": "^1.0.2",
  8240. "illuminate/support": "^7.0|^8.0",
  8241. "monolog/monolog": "^2.0",
  8242. "php": "^7.2.5|^8.0",
  8243. "symfony/console": "^5.0",
  8244. "symfony/var-dumper": "^5.0"
  8245. },
  8246. "require-dev": {
  8247. "friendsofphp/php-cs-fixer": "^2.14",
  8248. "livewire/livewire": "^2.4",
  8249. "mockery/mockery": "^1.3",
  8250. "orchestra/testbench": "^5.0|^6.0",
  8251. "psalm/plugin-laravel": "^1.2"
  8252. },
  8253. "suggest": {
  8254. "laravel/telescope": "^3.1"
  8255. },
  8256. "type": "library",
  8257. "extra": {
  8258. "branch-alias": {
  8259. "dev-master": "2.x-dev"
  8260. },
  8261. "laravel": {
  8262. "providers": [
  8263. "Facade\\Ignition\\IgnitionServiceProvider"
  8264. ],
  8265. "aliases": {
  8266. "Flare": "Facade\\Ignition\\Facades\\Flare"
  8267. }
  8268. }
  8269. },
  8270. "autoload": {
  8271. "files": [
  8272. "src/helpers.php"
  8273. ],
  8274. "psr-4": {
  8275. "Facade\\Ignition\\": "src"
  8276. }
  8277. },
  8278. "notification-url": "https://packagist.org/downloads/",
  8279. "license": [
  8280. "MIT"
  8281. ],
  8282. "description": "A beautiful error page for Laravel applications.",
  8283. "homepage": "https://github.com/facade/ignition",
  8284. "keywords": [
  8285. "error",
  8286. "flare",
  8287. "laravel",
  8288. "page"
  8289. ],
  8290. "support": {
  8291. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  8292. "forum": "https://twitter.com/flareappio",
  8293. "issues": "https://github.com/facade/ignition/issues",
  8294. "source": "https://github.com/facade/ignition"
  8295. },
  8296. "time": "2023-01-26T12:34:59+00:00"
  8297. },
  8298. {
  8299. "name": "facade/ignition-contracts",
  8300. "version": "1.0.2",
  8301. "source": {
  8302. "type": "git",
  8303. "url": "https://github.com/facade/ignition-contracts.git",
  8304. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  8305. },
  8306. "dist": {
  8307. "type": "zip",
  8308. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8309. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8310. "shasum": "",
  8311. "mirrors": [
  8312. {
  8313. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8314. "preferred": true
  8315. }
  8316. ]
  8317. },
  8318. "require": {
  8319. "php": "^7.3|^8.0"
  8320. },
  8321. "require-dev": {
  8322. "friendsofphp/php-cs-fixer": "^v2.15.8",
  8323. "phpunit/phpunit": "^9.3.11",
  8324. "vimeo/psalm": "^3.17.1"
  8325. },
  8326. "type": "library",
  8327. "autoload": {
  8328. "psr-4": {
  8329. "Facade\\IgnitionContracts\\": "src"
  8330. }
  8331. },
  8332. "notification-url": "https://packagist.org/downloads/",
  8333. "license": [
  8334. "MIT"
  8335. ],
  8336. "authors": [
  8337. {
  8338. "name": "Freek Van der Herten",
  8339. "email": "freek@spatie.be",
  8340. "homepage": "https://flareapp.io",
  8341. "role": "Developer"
  8342. }
  8343. ],
  8344. "description": "Solution contracts for Ignition",
  8345. "homepage": "https://github.com/facade/ignition-contracts",
  8346. "keywords": [
  8347. "contracts",
  8348. "flare",
  8349. "ignition"
  8350. ],
  8351. "support": {
  8352. "issues": "https://github.com/facade/ignition-contracts/issues",
  8353. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  8354. },
  8355. "time": "2020-10-16T08:27:54+00:00"
  8356. },
  8357. {
  8358. "name": "fakerphp/faker",
  8359. "version": "v1.23.1",
  8360. "source": {
  8361. "type": "git",
  8362. "url": "https://github.com/FakerPHP/Faker.git",
  8363. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b"
  8364. },
  8365. "dist": {
  8366. "type": "zip",
  8367. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/bfb4fe148adbf78eff521199619b93a52ae3554b",
  8368. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b",
  8369. "shasum": "",
  8370. "mirrors": [
  8371. {
  8372. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8373. "preferred": true
  8374. }
  8375. ]
  8376. },
  8377. "require": {
  8378. "php": "^7.4 || ^8.0",
  8379. "psr/container": "^1.0 || ^2.0",
  8380. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  8381. },
  8382. "conflict": {
  8383. "fzaninotto/faker": "*"
  8384. },
  8385. "require-dev": {
  8386. "bamarni/composer-bin-plugin": "^1.4.1",
  8387. "doctrine/persistence": "^1.3 || ^2.0",
  8388. "ext-intl": "*",
  8389. "phpunit/phpunit": "^9.5.26",
  8390. "symfony/phpunit-bridge": "^5.4.16"
  8391. },
  8392. "suggest": {
  8393. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  8394. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  8395. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  8396. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  8397. "ext-mbstring": "Required for multibyte Unicode string functionality."
  8398. },
  8399. "type": "library",
  8400. "autoload": {
  8401. "psr-4": {
  8402. "Faker\\": "src/Faker/"
  8403. }
  8404. },
  8405. "notification-url": "https://packagist.org/downloads/",
  8406. "license": [
  8407. "MIT"
  8408. ],
  8409. "authors": [
  8410. {
  8411. "name": "François Zaninotto"
  8412. }
  8413. ],
  8414. "description": "Faker is a PHP library that generates fake data for you.",
  8415. "keywords": [
  8416. "data",
  8417. "faker",
  8418. "fixtures"
  8419. ],
  8420. "support": {
  8421. "issues": "https://github.com/FakerPHP/Faker/issues",
  8422. "source": "https://github.com/FakerPHP/Faker/tree/v1.23.1"
  8423. },
  8424. "time": "2024-01-02T13:46:09+00:00"
  8425. },
  8426. {
  8427. "name": "filp/whoops",
  8428. "version": "2.16.0",
  8429. "source": {
  8430. "type": "git",
  8431. "url": "https://github.com/filp/whoops.git",
  8432. "reference": "befcdc0e5dce67252aa6322d82424be928214fa2"
  8433. },
  8434. "dist": {
  8435. "type": "zip",
  8436. "url": "https://api.github.com/repos/filp/whoops/zipball/befcdc0e5dce67252aa6322d82424be928214fa2",
  8437. "reference": "befcdc0e5dce67252aa6322d82424be928214fa2",
  8438. "shasum": "",
  8439. "mirrors": [
  8440. {
  8441. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8442. "preferred": true
  8443. }
  8444. ]
  8445. },
  8446. "require": {
  8447. "php": "^7.1 || ^8.0",
  8448. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  8449. },
  8450. "require-dev": {
  8451. "mockery/mockery": "^1.0",
  8452. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.3",
  8453. "symfony/var-dumper": "^4.0 || ^5.0"
  8454. },
  8455. "suggest": {
  8456. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8457. "whoops/soap": "Formats errors as SOAP responses"
  8458. },
  8459. "type": "library",
  8460. "extra": {
  8461. "branch-alias": {
  8462. "dev-master": "2.7-dev"
  8463. }
  8464. },
  8465. "autoload": {
  8466. "psr-4": {
  8467. "Whoops\\": "src/Whoops/"
  8468. }
  8469. },
  8470. "notification-url": "https://packagist.org/downloads/",
  8471. "license": [
  8472. "MIT"
  8473. ],
  8474. "authors": [
  8475. {
  8476. "name": "Filipe Dobreira",
  8477. "homepage": "https://github.com/filp",
  8478. "role": "Developer"
  8479. }
  8480. ],
  8481. "description": "php error handling for cool kids",
  8482. "homepage": "https://filp.github.io/whoops/",
  8483. "keywords": [
  8484. "error",
  8485. "exception",
  8486. "handling",
  8487. "library",
  8488. "throwable",
  8489. "whoops"
  8490. ],
  8491. "support": {
  8492. "issues": "https://github.com/filp/whoops/issues",
  8493. "source": "https://github.com/filp/whoops/tree/2.16.0"
  8494. },
  8495. "funding": [
  8496. {
  8497. "url": "https://github.com/denis-sokolov",
  8498. "type": "github"
  8499. }
  8500. ],
  8501. "time": "2024-09-25T12:00:00+00:00"
  8502. },
  8503. {
  8504. "name": "hamcrest/hamcrest-php",
  8505. "version": "v2.0.1",
  8506. "source": {
  8507. "type": "git",
  8508. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8509. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8510. },
  8511. "dist": {
  8512. "type": "zip",
  8513. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8514. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8515. "shasum": "",
  8516. "mirrors": [
  8517. {
  8518. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8519. "preferred": true
  8520. }
  8521. ]
  8522. },
  8523. "require": {
  8524. "php": "^5.3|^7.0|^8.0"
  8525. },
  8526. "replace": {
  8527. "cordoval/hamcrest-php": "*",
  8528. "davedevelopment/hamcrest-php": "*",
  8529. "kodova/hamcrest-php": "*"
  8530. },
  8531. "require-dev": {
  8532. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8533. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8534. },
  8535. "type": "library",
  8536. "extra": {
  8537. "branch-alias": {
  8538. "dev-master": "2.1-dev"
  8539. }
  8540. },
  8541. "autoload": {
  8542. "classmap": [
  8543. "hamcrest"
  8544. ]
  8545. },
  8546. "notification-url": "https://packagist.org/downloads/",
  8547. "license": [
  8548. "BSD-3-Clause"
  8549. ],
  8550. "description": "This is the PHP port of Hamcrest Matchers",
  8551. "keywords": [
  8552. "test"
  8553. ],
  8554. "support": {
  8555. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8556. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8557. },
  8558. "time": "2020-07-09T08:09:16+00:00"
  8559. },
  8560. {
  8561. "name": "mockery/mockery",
  8562. "version": "1.6.12",
  8563. "source": {
  8564. "type": "git",
  8565. "url": "https://github.com/mockery/mockery.git",
  8566. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  8567. },
  8568. "dist": {
  8569. "type": "zip",
  8570. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8571. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8572. "shasum": "",
  8573. "mirrors": [
  8574. {
  8575. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8576. "preferred": true
  8577. }
  8578. ]
  8579. },
  8580. "require": {
  8581. "hamcrest/hamcrest-php": "^2.0.1",
  8582. "lib-pcre": ">=7.0",
  8583. "php": ">=7.3"
  8584. },
  8585. "conflict": {
  8586. "phpunit/phpunit": "<8.0"
  8587. },
  8588. "require-dev": {
  8589. "phpunit/phpunit": "^8.5 || ^9.6.17",
  8590. "symplify/easy-coding-standard": "^12.1.14"
  8591. },
  8592. "type": "library",
  8593. "autoload": {
  8594. "files": [
  8595. "library/helpers.php",
  8596. "library/Mockery.php"
  8597. ],
  8598. "psr-4": {
  8599. "Mockery\\": "library/Mockery"
  8600. }
  8601. },
  8602. "notification-url": "https://packagist.org/downloads/",
  8603. "license": [
  8604. "BSD-3-Clause"
  8605. ],
  8606. "authors": [
  8607. {
  8608. "name": "Pádraic Brady",
  8609. "email": "padraic.brady@gmail.com",
  8610. "homepage": "https://github.com/padraic",
  8611. "role": "Author"
  8612. },
  8613. {
  8614. "name": "Dave Marshall",
  8615. "email": "dave.marshall@atstsolutions.co.uk",
  8616. "homepage": "https://davedevelopment.co.uk",
  8617. "role": "Developer"
  8618. },
  8619. {
  8620. "name": "Nathanael Esayeas",
  8621. "email": "nathanael.esayeas@protonmail.com",
  8622. "homepage": "https://github.com/ghostwriter",
  8623. "role": "Lead Developer"
  8624. }
  8625. ],
  8626. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8627. "homepage": "https://github.com/mockery/mockery",
  8628. "keywords": [
  8629. "BDD",
  8630. "TDD",
  8631. "library",
  8632. "mock",
  8633. "mock objects",
  8634. "mockery",
  8635. "stub",
  8636. "test",
  8637. "test double",
  8638. "testing"
  8639. ],
  8640. "support": {
  8641. "docs": "https://docs.mockery.io/",
  8642. "issues": "https://github.com/mockery/mockery/issues",
  8643. "rss": "https://github.com/mockery/mockery/releases.atom",
  8644. "security": "https://github.com/mockery/mockery/security/advisories",
  8645. "source": "https://github.com/mockery/mockery"
  8646. },
  8647. "time": "2024-05-16T03:13:13+00:00"
  8648. },
  8649. {
  8650. "name": "myclabs/deep-copy",
  8651. "version": "1.x-dev",
  8652. "source": {
  8653. "type": "git",
  8654. "url": "https://github.com/myclabs/DeepCopy.git",
  8655. "reference": "faed855a7b5f4d4637717c2b3863e277116beb36"
  8656. },
  8657. "dist": {
  8658. "type": "zip",
  8659. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/faed855a7b5f4d4637717c2b3863e277116beb36",
  8660. "reference": "faed855a7b5f4d4637717c2b3863e277116beb36",
  8661. "shasum": "",
  8662. "mirrors": [
  8663. {
  8664. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8665. "preferred": true
  8666. }
  8667. ]
  8668. },
  8669. "require": {
  8670. "php": "^7.1 || ^8.0"
  8671. },
  8672. "conflict": {
  8673. "doctrine/collections": "<1.6.8",
  8674. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  8675. },
  8676. "require-dev": {
  8677. "doctrine/collections": "^1.6.8",
  8678. "doctrine/common": "^2.13.3 || ^3.2.2",
  8679. "phpspec/prophecy": "^1.10",
  8680. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8681. },
  8682. "default-branch": true,
  8683. "type": "library",
  8684. "autoload": {
  8685. "files": [
  8686. "src/DeepCopy/deep_copy.php"
  8687. ],
  8688. "psr-4": {
  8689. "DeepCopy\\": "src/DeepCopy/"
  8690. }
  8691. },
  8692. "notification-url": "https://packagist.org/downloads/",
  8693. "license": [
  8694. "MIT"
  8695. ],
  8696. "description": "Create deep copies (clones) of your objects",
  8697. "keywords": [
  8698. "clone",
  8699. "copy",
  8700. "duplicate",
  8701. "object",
  8702. "object graph"
  8703. ],
  8704. "support": {
  8705. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8706. "source": "https://github.com/myclabs/DeepCopy/tree/1.13.3"
  8707. },
  8708. "funding": [
  8709. {
  8710. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8711. "type": "tidelift"
  8712. }
  8713. ],
  8714. "time": "2025-07-05T12:25:42+00:00"
  8715. },
  8716. {
  8717. "name": "nunomaduro/collision",
  8718. "version": "v5.11.0",
  8719. "source": {
  8720. "type": "git",
  8721. "url": "https://github.com/nunomaduro/collision.git",
  8722. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461"
  8723. },
  8724. "dist": {
  8725. "type": "zip",
  8726. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/8b610eef8582ccdc05d8f2ab23305e2d37049461",
  8727. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461",
  8728. "shasum": "",
  8729. "mirrors": [
  8730. {
  8731. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8732. "preferred": true
  8733. }
  8734. ]
  8735. },
  8736. "require": {
  8737. "facade/ignition-contracts": "^1.0",
  8738. "filp/whoops": "^2.14.3",
  8739. "php": "^7.3 || ^8.0",
  8740. "symfony/console": "^5.0"
  8741. },
  8742. "require-dev": {
  8743. "brianium/paratest": "^6.1",
  8744. "fideloper/proxy": "^4.4.1",
  8745. "fruitcake/laravel-cors": "^2.0.3",
  8746. "laravel/framework": "8.x-dev",
  8747. "nunomaduro/larastan": "^0.6.2",
  8748. "nunomaduro/mock-final-classes": "^1.0",
  8749. "orchestra/testbench": "^6.0",
  8750. "phpstan/phpstan": "^0.12.64",
  8751. "phpunit/phpunit": "^9.5.0"
  8752. },
  8753. "type": "library",
  8754. "extra": {
  8755. "laravel": {
  8756. "providers": [
  8757. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  8758. ]
  8759. }
  8760. },
  8761. "autoload": {
  8762. "psr-4": {
  8763. "NunoMaduro\\Collision\\": "src/"
  8764. }
  8765. },
  8766. "notification-url": "https://packagist.org/downloads/",
  8767. "license": [
  8768. "MIT"
  8769. ],
  8770. "authors": [
  8771. {
  8772. "name": "Nuno Maduro",
  8773. "email": "enunomaduro@gmail.com"
  8774. }
  8775. ],
  8776. "description": "Cli error handling for console/command-line PHP applications.",
  8777. "keywords": [
  8778. "artisan",
  8779. "cli",
  8780. "command-line",
  8781. "console",
  8782. "error",
  8783. "handling",
  8784. "laravel",
  8785. "laravel-zero",
  8786. "php",
  8787. "symfony"
  8788. ],
  8789. "support": {
  8790. "issues": "https://github.com/nunomaduro/collision/issues",
  8791. "source": "https://github.com/nunomaduro/collision"
  8792. },
  8793. "funding": [
  8794. {
  8795. "url": "https://www.paypal.com/paypalme/enunomaduro",
  8796. "type": "custom"
  8797. },
  8798. {
  8799. "url": "https://github.com/nunomaduro",
  8800. "type": "github"
  8801. },
  8802. {
  8803. "url": "https://www.patreon.com/nunomaduro",
  8804. "type": "patreon"
  8805. }
  8806. ],
  8807. "time": "2022-01-10T16:22:52+00:00"
  8808. },
  8809. {
  8810. "name": "phar-io/manifest",
  8811. "version": "dev-master",
  8812. "source": {
  8813. "type": "git",
  8814. "url": "https://github.com/phar-io/manifest.git",
  8815. "reference": "c581d4941e196459bf76c945a8ca922963a66708"
  8816. },
  8817. "dist": {
  8818. "type": "zip",
  8819. "url": "https://api.github.com/repos/phar-io/manifest/zipball/c581d4941e196459bf76c945a8ca922963a66708",
  8820. "reference": "c581d4941e196459bf76c945a8ca922963a66708",
  8821. "shasum": "",
  8822. "mirrors": [
  8823. {
  8824. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8825. "preferred": true
  8826. }
  8827. ]
  8828. },
  8829. "require": {
  8830. "ext-dom": "*",
  8831. "ext-libxml": "*",
  8832. "ext-phar": "*",
  8833. "ext-xmlwriter": "*",
  8834. "phar-io/version": "^3.0.1",
  8835. "php": "^7.2 || ^8.0"
  8836. },
  8837. "default-branch": true,
  8838. "type": "library",
  8839. "extra": {
  8840. "branch-alias": {
  8841. "dev-master": "2.0.x-dev"
  8842. }
  8843. },
  8844. "autoload": {
  8845. "classmap": [
  8846. "src/"
  8847. ]
  8848. },
  8849. "notification-url": "https://packagist.org/downloads/",
  8850. "license": [
  8851. "BSD-3-Clause"
  8852. ],
  8853. "authors": [
  8854. {
  8855. "name": "Arne Blankerts",
  8856. "email": "arne@blankerts.de",
  8857. "role": "Developer"
  8858. },
  8859. {
  8860. "name": "Sebastian Heuer",
  8861. "email": "sebastian@phpeople.de",
  8862. "role": "Developer"
  8863. },
  8864. {
  8865. "name": "Sebastian Bergmann",
  8866. "email": "sebastian@phpunit.de",
  8867. "role": "Developer"
  8868. }
  8869. ],
  8870. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8871. "support": {
  8872. "issues": "https://github.com/phar-io/manifest/issues",
  8873. "source": "https://github.com/phar-io/manifest/tree/master"
  8874. },
  8875. "funding": [
  8876. {
  8877. "url": "https://github.com/theseer",
  8878. "type": "github"
  8879. }
  8880. ],
  8881. "time": "2025-11-27T15:23:09+00:00"
  8882. },
  8883. {
  8884. "name": "phar-io/version",
  8885. "version": "3.2.1",
  8886. "source": {
  8887. "type": "git",
  8888. "url": "https://github.com/phar-io/version.git",
  8889. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8890. },
  8891. "dist": {
  8892. "type": "zip",
  8893. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8894. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8895. "shasum": "",
  8896. "mirrors": [
  8897. {
  8898. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8899. "preferred": true
  8900. }
  8901. ]
  8902. },
  8903. "require": {
  8904. "php": "^7.2 || ^8.0"
  8905. },
  8906. "type": "library",
  8907. "autoload": {
  8908. "classmap": [
  8909. "src/"
  8910. ]
  8911. },
  8912. "notification-url": "https://packagist.org/downloads/",
  8913. "license": [
  8914. "BSD-3-Clause"
  8915. ],
  8916. "authors": [
  8917. {
  8918. "name": "Arne Blankerts",
  8919. "email": "arne@blankerts.de",
  8920. "role": "Developer"
  8921. },
  8922. {
  8923. "name": "Sebastian Heuer",
  8924. "email": "sebastian@phpeople.de",
  8925. "role": "Developer"
  8926. },
  8927. {
  8928. "name": "Sebastian Bergmann",
  8929. "email": "sebastian@phpunit.de",
  8930. "role": "Developer"
  8931. }
  8932. ],
  8933. "description": "Library for handling version information and constraints",
  8934. "support": {
  8935. "issues": "https://github.com/phar-io/version/issues",
  8936. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8937. },
  8938. "time": "2022-02-21T01:04:05+00:00"
  8939. },
  8940. {
  8941. "name": "phpunit/php-code-coverage",
  8942. "version": "9.2.32",
  8943. "source": {
  8944. "type": "git",
  8945. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8946. "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5"
  8947. },
  8948. "dist": {
  8949. "type": "zip",
  8950. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/85402a822d1ecf1db1096959413d35e1c37cf1a5",
  8951. "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5",
  8952. "shasum": "",
  8953. "mirrors": [
  8954. {
  8955. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8956. "preferred": true
  8957. }
  8958. ]
  8959. },
  8960. "require": {
  8961. "ext-dom": "*",
  8962. "ext-libxml": "*",
  8963. "ext-xmlwriter": "*",
  8964. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  8965. "php": ">=7.3",
  8966. "phpunit/php-file-iterator": "^3.0.6",
  8967. "phpunit/php-text-template": "^2.0.4",
  8968. "sebastian/code-unit-reverse-lookup": "^2.0.3",
  8969. "sebastian/complexity": "^2.0.3",
  8970. "sebastian/environment": "^5.1.5",
  8971. "sebastian/lines-of-code": "^1.0.4",
  8972. "sebastian/version": "^3.0.2",
  8973. "theseer/tokenizer": "^1.2.3"
  8974. },
  8975. "require-dev": {
  8976. "phpunit/phpunit": "^9.6"
  8977. },
  8978. "suggest": {
  8979. "ext-pcov": "PHP extension that provides line coverage",
  8980. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8981. },
  8982. "type": "library",
  8983. "extra": {
  8984. "branch-alias": {
  8985. "dev-main": "9.2.x-dev"
  8986. }
  8987. },
  8988. "autoload": {
  8989. "classmap": [
  8990. "src/"
  8991. ]
  8992. },
  8993. "notification-url": "https://packagist.org/downloads/",
  8994. "license": [
  8995. "BSD-3-Clause"
  8996. ],
  8997. "authors": [
  8998. {
  8999. "name": "Sebastian Bergmann",
  9000. "email": "sebastian@phpunit.de",
  9001. "role": "lead"
  9002. }
  9003. ],
  9004. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9005. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9006. "keywords": [
  9007. "coverage",
  9008. "testing",
  9009. "xunit"
  9010. ],
  9011. "support": {
  9012. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9013. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  9014. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.32"
  9015. },
  9016. "funding": [
  9017. {
  9018. "url": "https://github.com/sebastianbergmann",
  9019. "type": "github"
  9020. }
  9021. ],
  9022. "time": "2024-08-22T04:23:01+00:00"
  9023. },
  9024. {
  9025. "name": "phpunit/php-file-iterator",
  9026. "version": "3.0.6",
  9027. "source": {
  9028. "type": "git",
  9029. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9030. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  9031. },
  9032. "dist": {
  9033. "type": "zip",
  9034. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9035. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9036. "shasum": "",
  9037. "mirrors": [
  9038. {
  9039. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9040. "preferred": true
  9041. }
  9042. ]
  9043. },
  9044. "require": {
  9045. "php": ">=7.3"
  9046. },
  9047. "require-dev": {
  9048. "phpunit/phpunit": "^9.3"
  9049. },
  9050. "type": "library",
  9051. "extra": {
  9052. "branch-alias": {
  9053. "dev-master": "3.0-dev"
  9054. }
  9055. },
  9056. "autoload": {
  9057. "classmap": [
  9058. "src/"
  9059. ]
  9060. },
  9061. "notification-url": "https://packagist.org/downloads/",
  9062. "license": [
  9063. "BSD-3-Clause"
  9064. ],
  9065. "authors": [
  9066. {
  9067. "name": "Sebastian Bergmann",
  9068. "email": "sebastian@phpunit.de",
  9069. "role": "lead"
  9070. }
  9071. ],
  9072. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9073. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9074. "keywords": [
  9075. "filesystem",
  9076. "iterator"
  9077. ],
  9078. "support": {
  9079. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9080. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  9081. },
  9082. "funding": [
  9083. {
  9084. "url": "https://github.com/sebastianbergmann",
  9085. "type": "github"
  9086. }
  9087. ],
  9088. "time": "2021-12-02T12:48:52+00:00"
  9089. },
  9090. {
  9091. "name": "phpunit/php-invoker",
  9092. "version": "3.1.1",
  9093. "source": {
  9094. "type": "git",
  9095. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9096. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  9097. },
  9098. "dist": {
  9099. "type": "zip",
  9100. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9101. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  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. "ext-pcntl": "*",
  9115. "phpunit/phpunit": "^9.3"
  9116. },
  9117. "suggest": {
  9118. "ext-pcntl": "*"
  9119. },
  9120. "type": "library",
  9121. "extra": {
  9122. "branch-alias": {
  9123. "dev-master": "3.1-dev"
  9124. }
  9125. },
  9126. "autoload": {
  9127. "classmap": [
  9128. "src/"
  9129. ]
  9130. },
  9131. "notification-url": "https://packagist.org/downloads/",
  9132. "license": [
  9133. "BSD-3-Clause"
  9134. ],
  9135. "authors": [
  9136. {
  9137. "name": "Sebastian Bergmann",
  9138. "email": "sebastian@phpunit.de",
  9139. "role": "lead"
  9140. }
  9141. ],
  9142. "description": "Invoke callables with a timeout",
  9143. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9144. "keywords": [
  9145. "process"
  9146. ],
  9147. "support": {
  9148. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9149. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  9150. },
  9151. "funding": [
  9152. {
  9153. "url": "https://github.com/sebastianbergmann",
  9154. "type": "github"
  9155. }
  9156. ],
  9157. "time": "2020-09-28T05:58:55+00:00"
  9158. },
  9159. {
  9160. "name": "phpunit/php-text-template",
  9161. "version": "2.0.4",
  9162. "source": {
  9163. "type": "git",
  9164. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9165. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  9166. },
  9167. "dist": {
  9168. "type": "zip",
  9169. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9170. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9171. "shasum": "",
  9172. "mirrors": [
  9173. {
  9174. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9175. "preferred": true
  9176. }
  9177. ]
  9178. },
  9179. "require": {
  9180. "php": ">=7.3"
  9181. },
  9182. "require-dev": {
  9183. "phpunit/phpunit": "^9.3"
  9184. },
  9185. "type": "library",
  9186. "extra": {
  9187. "branch-alias": {
  9188. "dev-master": "2.0-dev"
  9189. }
  9190. },
  9191. "autoload": {
  9192. "classmap": [
  9193. "src/"
  9194. ]
  9195. },
  9196. "notification-url": "https://packagist.org/downloads/",
  9197. "license": [
  9198. "BSD-3-Clause"
  9199. ],
  9200. "authors": [
  9201. {
  9202. "name": "Sebastian Bergmann",
  9203. "email": "sebastian@phpunit.de",
  9204. "role": "lead"
  9205. }
  9206. ],
  9207. "description": "Simple template engine.",
  9208. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9209. "keywords": [
  9210. "template"
  9211. ],
  9212. "support": {
  9213. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9214. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  9215. },
  9216. "funding": [
  9217. {
  9218. "url": "https://github.com/sebastianbergmann",
  9219. "type": "github"
  9220. }
  9221. ],
  9222. "time": "2020-10-26T05:33:50+00:00"
  9223. },
  9224. {
  9225. "name": "phpunit/php-timer",
  9226. "version": "5.0.3",
  9227. "source": {
  9228. "type": "git",
  9229. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9230. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  9231. },
  9232. "dist": {
  9233. "type": "zip",
  9234. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9235. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9236. "shasum": "",
  9237. "mirrors": [
  9238. {
  9239. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9240. "preferred": true
  9241. }
  9242. ]
  9243. },
  9244. "require": {
  9245. "php": ">=7.3"
  9246. },
  9247. "require-dev": {
  9248. "phpunit/phpunit": "^9.3"
  9249. },
  9250. "type": "library",
  9251. "extra": {
  9252. "branch-alias": {
  9253. "dev-master": "5.0-dev"
  9254. }
  9255. },
  9256. "autoload": {
  9257. "classmap": [
  9258. "src/"
  9259. ]
  9260. },
  9261. "notification-url": "https://packagist.org/downloads/",
  9262. "license": [
  9263. "BSD-3-Clause"
  9264. ],
  9265. "authors": [
  9266. {
  9267. "name": "Sebastian Bergmann",
  9268. "email": "sebastian@phpunit.de",
  9269. "role": "lead"
  9270. }
  9271. ],
  9272. "description": "Utility class for timing",
  9273. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9274. "keywords": [
  9275. "timer"
  9276. ],
  9277. "support": {
  9278. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9279. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  9280. },
  9281. "funding": [
  9282. {
  9283. "url": "https://github.com/sebastianbergmann",
  9284. "type": "github"
  9285. }
  9286. ],
  9287. "time": "2020-10-26T13:16:10+00:00"
  9288. },
  9289. {
  9290. "name": "phpunit/phpunit",
  9291. "version": "9.6.30",
  9292. "source": {
  9293. "type": "git",
  9294. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9295. "reference": "b69489b312503bf8fa6d75a76916919d7d2fa6d4"
  9296. },
  9297. "dist": {
  9298. "type": "zip",
  9299. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/b69489b312503bf8fa6d75a76916919d7d2fa6d4",
  9300. "reference": "b69489b312503bf8fa6d75a76916919d7d2fa6d4",
  9301. "shasum": "",
  9302. "mirrors": [
  9303. {
  9304. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9305. "preferred": true
  9306. }
  9307. ]
  9308. },
  9309. "require": {
  9310. "doctrine/instantiator": "^1.5.0 || ^2",
  9311. "ext-dom": "*",
  9312. "ext-json": "*",
  9313. "ext-libxml": "*",
  9314. "ext-mbstring": "*",
  9315. "ext-xml": "*",
  9316. "ext-xmlwriter": "*",
  9317. "myclabs/deep-copy": "^1.13.4",
  9318. "phar-io/manifest": "^2.0.4",
  9319. "phar-io/version": "^3.2.1",
  9320. "php": ">=7.3",
  9321. "phpunit/php-code-coverage": "^9.2.32",
  9322. "phpunit/php-file-iterator": "^3.0.6",
  9323. "phpunit/php-invoker": "^3.1.1",
  9324. "phpunit/php-text-template": "^2.0.4",
  9325. "phpunit/php-timer": "^5.0.3",
  9326. "sebastian/cli-parser": "^1.0.2",
  9327. "sebastian/code-unit": "^1.0.8",
  9328. "sebastian/comparator": "^4.0.9",
  9329. "sebastian/diff": "^4.0.6",
  9330. "sebastian/environment": "^5.1.5",
  9331. "sebastian/exporter": "^4.0.8",
  9332. "sebastian/global-state": "^5.0.8",
  9333. "sebastian/object-enumerator": "^4.0.4",
  9334. "sebastian/resource-operations": "^3.0.4",
  9335. "sebastian/type": "^3.2.1",
  9336. "sebastian/version": "^3.0.2"
  9337. },
  9338. "suggest": {
  9339. "ext-soap": "To be able to generate mocks based on WSDL files",
  9340. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9341. },
  9342. "bin": [
  9343. "phpunit"
  9344. ],
  9345. "type": "library",
  9346. "extra": {
  9347. "branch-alias": {
  9348. "dev-master": "9.6-dev"
  9349. }
  9350. },
  9351. "autoload": {
  9352. "files": [
  9353. "src/Framework/Assert/Functions.php"
  9354. ],
  9355. "classmap": [
  9356. "src/"
  9357. ]
  9358. },
  9359. "notification-url": "https://packagist.org/downloads/",
  9360. "license": [
  9361. "BSD-3-Clause"
  9362. ],
  9363. "authors": [
  9364. {
  9365. "name": "Sebastian Bergmann",
  9366. "email": "sebastian@phpunit.de",
  9367. "role": "lead"
  9368. }
  9369. ],
  9370. "description": "The PHP Unit Testing framework.",
  9371. "homepage": "https://phpunit.de/",
  9372. "keywords": [
  9373. "phpunit",
  9374. "testing",
  9375. "xunit"
  9376. ],
  9377. "support": {
  9378. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9379. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9380. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.30"
  9381. },
  9382. "funding": [
  9383. {
  9384. "url": "https://phpunit.de/sponsors.html",
  9385. "type": "custom"
  9386. },
  9387. {
  9388. "url": "https://github.com/sebastianbergmann",
  9389. "type": "github"
  9390. },
  9391. {
  9392. "url": "https://liberapay.com/sebastianbergmann",
  9393. "type": "liberapay"
  9394. },
  9395. {
  9396. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  9397. "type": "thanks_dev"
  9398. },
  9399. {
  9400. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9401. "type": "tidelift"
  9402. }
  9403. ],
  9404. "time": "2025-12-01T07:35:08+00:00"
  9405. },
  9406. {
  9407. "name": "sebastian/cli-parser",
  9408. "version": "1.0.2",
  9409. "source": {
  9410. "type": "git",
  9411. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9412. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b"
  9413. },
  9414. "dist": {
  9415. "type": "zip",
  9416. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  9417. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  9418. "shasum": "",
  9419. "mirrors": [
  9420. {
  9421. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9422. "preferred": true
  9423. }
  9424. ]
  9425. },
  9426. "require": {
  9427. "php": ">=7.3"
  9428. },
  9429. "require-dev": {
  9430. "phpunit/phpunit": "^9.3"
  9431. },
  9432. "type": "library",
  9433. "extra": {
  9434. "branch-alias": {
  9435. "dev-master": "1.0-dev"
  9436. }
  9437. },
  9438. "autoload": {
  9439. "classmap": [
  9440. "src/"
  9441. ]
  9442. },
  9443. "notification-url": "https://packagist.org/downloads/",
  9444. "license": [
  9445. "BSD-3-Clause"
  9446. ],
  9447. "authors": [
  9448. {
  9449. "name": "Sebastian Bergmann",
  9450. "email": "sebastian@phpunit.de",
  9451. "role": "lead"
  9452. }
  9453. ],
  9454. "description": "Library for parsing CLI options",
  9455. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9456. "support": {
  9457. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9458. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.2"
  9459. },
  9460. "funding": [
  9461. {
  9462. "url": "https://github.com/sebastianbergmann",
  9463. "type": "github"
  9464. }
  9465. ],
  9466. "time": "2024-03-02T06:27:43+00:00"
  9467. },
  9468. {
  9469. "name": "sebastian/code-unit",
  9470. "version": "1.0.8",
  9471. "source": {
  9472. "type": "git",
  9473. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9474. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  9475. },
  9476. "dist": {
  9477. "type": "zip",
  9478. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9479. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9480. "shasum": "",
  9481. "mirrors": [
  9482. {
  9483. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9484. "preferred": true
  9485. }
  9486. ]
  9487. },
  9488. "require": {
  9489. "php": ">=7.3"
  9490. },
  9491. "require-dev": {
  9492. "phpunit/phpunit": "^9.3"
  9493. },
  9494. "type": "library",
  9495. "extra": {
  9496. "branch-alias": {
  9497. "dev-master": "1.0-dev"
  9498. }
  9499. },
  9500. "autoload": {
  9501. "classmap": [
  9502. "src/"
  9503. ]
  9504. },
  9505. "notification-url": "https://packagist.org/downloads/",
  9506. "license": [
  9507. "BSD-3-Clause"
  9508. ],
  9509. "authors": [
  9510. {
  9511. "name": "Sebastian Bergmann",
  9512. "email": "sebastian@phpunit.de",
  9513. "role": "lead"
  9514. }
  9515. ],
  9516. "description": "Collection of value objects that represent the PHP code units",
  9517. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9518. "support": {
  9519. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9520. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  9521. },
  9522. "funding": [
  9523. {
  9524. "url": "https://github.com/sebastianbergmann",
  9525. "type": "github"
  9526. }
  9527. ],
  9528. "time": "2020-10-26T13:08:54+00:00"
  9529. },
  9530. {
  9531. "name": "sebastian/code-unit-reverse-lookup",
  9532. "version": "2.0.3",
  9533. "source": {
  9534. "type": "git",
  9535. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9536. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  9537. },
  9538. "dist": {
  9539. "type": "zip",
  9540. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9541. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9542. "shasum": "",
  9543. "mirrors": [
  9544. {
  9545. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9546. "preferred": true
  9547. }
  9548. ]
  9549. },
  9550. "require": {
  9551. "php": ">=7.3"
  9552. },
  9553. "require-dev": {
  9554. "phpunit/phpunit": "^9.3"
  9555. },
  9556. "type": "library",
  9557. "extra": {
  9558. "branch-alias": {
  9559. "dev-master": "2.0-dev"
  9560. }
  9561. },
  9562. "autoload": {
  9563. "classmap": [
  9564. "src/"
  9565. ]
  9566. },
  9567. "notification-url": "https://packagist.org/downloads/",
  9568. "license": [
  9569. "BSD-3-Clause"
  9570. ],
  9571. "authors": [
  9572. {
  9573. "name": "Sebastian Bergmann",
  9574. "email": "sebastian@phpunit.de"
  9575. }
  9576. ],
  9577. "description": "Looks up which function or method a line of code belongs to",
  9578. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9579. "support": {
  9580. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9581. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  9582. },
  9583. "funding": [
  9584. {
  9585. "url": "https://github.com/sebastianbergmann",
  9586. "type": "github"
  9587. }
  9588. ],
  9589. "time": "2020-09-28T05:30:19+00:00"
  9590. },
  9591. {
  9592. "name": "sebastian/comparator",
  9593. "version": "4.0.x-dev",
  9594. "source": {
  9595. "type": "git",
  9596. "url": "https://github.com/sebastianbergmann/comparator.git",
  9597. "reference": "67a2df3a62639eab2cc5906065e9805d4fd5dfc5"
  9598. },
  9599. "dist": {
  9600. "type": "zip",
  9601. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/67a2df3a62639eab2cc5906065e9805d4fd5dfc5",
  9602. "reference": "67a2df3a62639eab2cc5906065e9805d4fd5dfc5",
  9603. "shasum": "",
  9604. "mirrors": [
  9605. {
  9606. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9607. "preferred": true
  9608. }
  9609. ]
  9610. },
  9611. "require": {
  9612. "php": ">=7.3",
  9613. "sebastian/diff": "^4.0",
  9614. "sebastian/exporter": "^4.0"
  9615. },
  9616. "require-dev": {
  9617. "phpunit/phpunit": "^9.3"
  9618. },
  9619. "type": "library",
  9620. "extra": {
  9621. "branch-alias": {
  9622. "dev-master": "4.0-dev"
  9623. }
  9624. },
  9625. "autoload": {
  9626. "classmap": [
  9627. "src/"
  9628. ]
  9629. },
  9630. "notification-url": "https://packagist.org/downloads/",
  9631. "license": [
  9632. "BSD-3-Clause"
  9633. ],
  9634. "authors": [
  9635. {
  9636. "name": "Sebastian Bergmann",
  9637. "email": "sebastian@phpunit.de"
  9638. },
  9639. {
  9640. "name": "Jeff Welch",
  9641. "email": "whatthejeff@gmail.com"
  9642. },
  9643. {
  9644. "name": "Volker Dusch",
  9645. "email": "github@wallbash.com"
  9646. },
  9647. {
  9648. "name": "Bernhard Schussek",
  9649. "email": "bschussek@2bepublished.at"
  9650. }
  9651. ],
  9652. "description": "Provides the functionality to compare PHP values for equality",
  9653. "homepage": "https://github.com/sebastianbergmann/comparator",
  9654. "keywords": [
  9655. "comparator",
  9656. "compare",
  9657. "equality"
  9658. ],
  9659. "support": {
  9660. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9661. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.9"
  9662. },
  9663. "funding": [
  9664. {
  9665. "url": "https://github.com/sebastianbergmann",
  9666. "type": "github"
  9667. },
  9668. {
  9669. "url": "https://liberapay.com/sebastianbergmann",
  9670. "type": "liberapay"
  9671. },
  9672. {
  9673. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  9674. "type": "thanks_dev"
  9675. },
  9676. {
  9677. "url": "https://tidelift.com/funding/github/packagist/sebastian/comparator",
  9678. "type": "tidelift"
  9679. }
  9680. ],
  9681. "time": "2025-08-10T06:51:50+00:00"
  9682. },
  9683. {
  9684. "name": "sebastian/complexity",
  9685. "version": "2.0.3",
  9686. "source": {
  9687. "type": "git",
  9688. "url": "https://github.com/sebastianbergmann/complexity.git",
  9689. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a"
  9690. },
  9691. "dist": {
  9692. "type": "zip",
  9693. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a",
  9694. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a",
  9695. "shasum": "",
  9696. "mirrors": [
  9697. {
  9698. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9699. "preferred": true
  9700. }
  9701. ]
  9702. },
  9703. "require": {
  9704. "nikic/php-parser": "^4.18 || ^5.0",
  9705. "php": ">=7.3"
  9706. },
  9707. "require-dev": {
  9708. "phpunit/phpunit": "^9.3"
  9709. },
  9710. "type": "library",
  9711. "extra": {
  9712. "branch-alias": {
  9713. "dev-master": "2.0-dev"
  9714. }
  9715. },
  9716. "autoload": {
  9717. "classmap": [
  9718. "src/"
  9719. ]
  9720. },
  9721. "notification-url": "https://packagist.org/downloads/",
  9722. "license": [
  9723. "BSD-3-Clause"
  9724. ],
  9725. "authors": [
  9726. {
  9727. "name": "Sebastian Bergmann",
  9728. "email": "sebastian@phpunit.de",
  9729. "role": "lead"
  9730. }
  9731. ],
  9732. "description": "Library for calculating the complexity of PHP code units",
  9733. "homepage": "https://github.com/sebastianbergmann/complexity",
  9734. "support": {
  9735. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9736. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3"
  9737. },
  9738. "funding": [
  9739. {
  9740. "url": "https://github.com/sebastianbergmann",
  9741. "type": "github"
  9742. }
  9743. ],
  9744. "time": "2023-12-22T06:19:30+00:00"
  9745. },
  9746. {
  9747. "name": "sebastian/diff",
  9748. "version": "4.0.6",
  9749. "source": {
  9750. "type": "git",
  9751. "url": "https://github.com/sebastianbergmann/diff.git",
  9752. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  9753. },
  9754. "dist": {
  9755. "type": "zip",
  9756. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  9757. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  9758. "shasum": "",
  9759. "mirrors": [
  9760. {
  9761. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9762. "preferred": true
  9763. }
  9764. ]
  9765. },
  9766. "require": {
  9767. "php": ">=7.3"
  9768. },
  9769. "require-dev": {
  9770. "phpunit/phpunit": "^9.3",
  9771. "symfony/process": "^4.2 || ^5"
  9772. },
  9773. "type": "library",
  9774. "extra": {
  9775. "branch-alias": {
  9776. "dev-master": "4.0-dev"
  9777. }
  9778. },
  9779. "autoload": {
  9780. "classmap": [
  9781. "src/"
  9782. ]
  9783. },
  9784. "notification-url": "https://packagist.org/downloads/",
  9785. "license": [
  9786. "BSD-3-Clause"
  9787. ],
  9788. "authors": [
  9789. {
  9790. "name": "Sebastian Bergmann",
  9791. "email": "sebastian@phpunit.de"
  9792. },
  9793. {
  9794. "name": "Kore Nordmann",
  9795. "email": "mail@kore-nordmann.de"
  9796. }
  9797. ],
  9798. "description": "Diff implementation",
  9799. "homepage": "https://github.com/sebastianbergmann/diff",
  9800. "keywords": [
  9801. "diff",
  9802. "udiff",
  9803. "unidiff",
  9804. "unified diff"
  9805. ],
  9806. "support": {
  9807. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9808. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  9809. },
  9810. "funding": [
  9811. {
  9812. "url": "https://github.com/sebastianbergmann",
  9813. "type": "github"
  9814. }
  9815. ],
  9816. "time": "2024-03-02T06:30:58+00:00"
  9817. },
  9818. {
  9819. "name": "sebastian/environment",
  9820. "version": "5.1.5",
  9821. "source": {
  9822. "type": "git",
  9823. "url": "https://github.com/sebastianbergmann/environment.git",
  9824. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  9825. },
  9826. "dist": {
  9827. "type": "zip",
  9828. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9829. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9830. "shasum": "",
  9831. "mirrors": [
  9832. {
  9833. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9834. "preferred": true
  9835. }
  9836. ]
  9837. },
  9838. "require": {
  9839. "php": ">=7.3"
  9840. },
  9841. "require-dev": {
  9842. "phpunit/phpunit": "^9.3"
  9843. },
  9844. "suggest": {
  9845. "ext-posix": "*"
  9846. },
  9847. "type": "library",
  9848. "extra": {
  9849. "branch-alias": {
  9850. "dev-master": "5.1-dev"
  9851. }
  9852. },
  9853. "autoload": {
  9854. "classmap": [
  9855. "src/"
  9856. ]
  9857. },
  9858. "notification-url": "https://packagist.org/downloads/",
  9859. "license": [
  9860. "BSD-3-Clause"
  9861. ],
  9862. "authors": [
  9863. {
  9864. "name": "Sebastian Bergmann",
  9865. "email": "sebastian@phpunit.de"
  9866. }
  9867. ],
  9868. "description": "Provides functionality to handle HHVM/PHP environments",
  9869. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9870. "keywords": [
  9871. "Xdebug",
  9872. "environment",
  9873. "hhvm"
  9874. ],
  9875. "support": {
  9876. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9877. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  9878. },
  9879. "funding": [
  9880. {
  9881. "url": "https://github.com/sebastianbergmann",
  9882. "type": "github"
  9883. }
  9884. ],
  9885. "time": "2023-02-03T06:03:51+00:00"
  9886. },
  9887. {
  9888. "name": "sebastian/exporter",
  9889. "version": "4.0.8",
  9890. "source": {
  9891. "type": "git",
  9892. "url": "https://github.com/sebastianbergmann/exporter.git",
  9893. "reference": "14c6ba52f95a36c3d27c835d65efc7123c446e8c"
  9894. },
  9895. "dist": {
  9896. "type": "zip",
  9897. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/14c6ba52f95a36c3d27c835d65efc7123c446e8c",
  9898. "reference": "14c6ba52f95a36c3d27c835d65efc7123c446e8c",
  9899. "shasum": "",
  9900. "mirrors": [
  9901. {
  9902. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9903. "preferred": true
  9904. }
  9905. ]
  9906. },
  9907. "require": {
  9908. "php": ">=7.3",
  9909. "sebastian/recursion-context": "^4.0"
  9910. },
  9911. "require-dev": {
  9912. "ext-mbstring": "*",
  9913. "phpunit/phpunit": "^9.3"
  9914. },
  9915. "type": "library",
  9916. "extra": {
  9917. "branch-alias": {
  9918. "dev-master": "4.0-dev"
  9919. }
  9920. },
  9921. "autoload": {
  9922. "classmap": [
  9923. "src/"
  9924. ]
  9925. },
  9926. "notification-url": "https://packagist.org/downloads/",
  9927. "license": [
  9928. "BSD-3-Clause"
  9929. ],
  9930. "authors": [
  9931. {
  9932. "name": "Sebastian Bergmann",
  9933. "email": "sebastian@phpunit.de"
  9934. },
  9935. {
  9936. "name": "Jeff Welch",
  9937. "email": "whatthejeff@gmail.com"
  9938. },
  9939. {
  9940. "name": "Volker Dusch",
  9941. "email": "github@wallbash.com"
  9942. },
  9943. {
  9944. "name": "Adam Harvey",
  9945. "email": "aharvey@php.net"
  9946. },
  9947. {
  9948. "name": "Bernhard Schussek",
  9949. "email": "bschussek@gmail.com"
  9950. }
  9951. ],
  9952. "description": "Provides the functionality to export PHP variables for visualization",
  9953. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9954. "keywords": [
  9955. "export",
  9956. "exporter"
  9957. ],
  9958. "support": {
  9959. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9960. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.8"
  9961. },
  9962. "funding": [
  9963. {
  9964. "url": "https://github.com/sebastianbergmann",
  9965. "type": "github"
  9966. },
  9967. {
  9968. "url": "https://liberapay.com/sebastianbergmann",
  9969. "type": "liberapay"
  9970. },
  9971. {
  9972. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  9973. "type": "thanks_dev"
  9974. },
  9975. {
  9976. "url": "https://tidelift.com/funding/github/packagist/sebastian/exporter",
  9977. "type": "tidelift"
  9978. }
  9979. ],
  9980. "time": "2025-09-24T06:03:27+00:00"
  9981. },
  9982. {
  9983. "name": "sebastian/global-state",
  9984. "version": "5.0.8",
  9985. "source": {
  9986. "type": "git",
  9987. "url": "https://github.com/sebastianbergmann/global-state.git",
  9988. "reference": "b6781316bdcd28260904e7cc18ec983d0d2ef4f6"
  9989. },
  9990. "dist": {
  9991. "type": "zip",
  9992. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/b6781316bdcd28260904e7cc18ec983d0d2ef4f6",
  9993. "reference": "b6781316bdcd28260904e7cc18ec983d0d2ef4f6",
  9994. "shasum": "",
  9995. "mirrors": [
  9996. {
  9997. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9998. "preferred": true
  9999. }
  10000. ]
  10001. },
  10002. "require": {
  10003. "php": ">=7.3",
  10004. "sebastian/object-reflector": "^2.0",
  10005. "sebastian/recursion-context": "^4.0"
  10006. },
  10007. "require-dev": {
  10008. "ext-dom": "*",
  10009. "phpunit/phpunit": "^9.3"
  10010. },
  10011. "suggest": {
  10012. "ext-uopz": "*"
  10013. },
  10014. "type": "library",
  10015. "extra": {
  10016. "branch-alias": {
  10017. "dev-master": "5.0-dev"
  10018. }
  10019. },
  10020. "autoload": {
  10021. "classmap": [
  10022. "src/"
  10023. ]
  10024. },
  10025. "notification-url": "https://packagist.org/downloads/",
  10026. "license": [
  10027. "BSD-3-Clause"
  10028. ],
  10029. "authors": [
  10030. {
  10031. "name": "Sebastian Bergmann",
  10032. "email": "sebastian@phpunit.de"
  10033. }
  10034. ],
  10035. "description": "Snapshotting of global state",
  10036. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  10037. "keywords": [
  10038. "global state"
  10039. ],
  10040. "support": {
  10041. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10042. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.8"
  10043. },
  10044. "funding": [
  10045. {
  10046. "url": "https://github.com/sebastianbergmann",
  10047. "type": "github"
  10048. },
  10049. {
  10050. "url": "https://liberapay.com/sebastianbergmann",
  10051. "type": "liberapay"
  10052. },
  10053. {
  10054. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  10055. "type": "thanks_dev"
  10056. },
  10057. {
  10058. "url": "https://tidelift.com/funding/github/packagist/sebastian/global-state",
  10059. "type": "tidelift"
  10060. }
  10061. ],
  10062. "time": "2025-08-10T07:10:35+00:00"
  10063. },
  10064. {
  10065. "name": "sebastian/lines-of-code",
  10066. "version": "1.0.4",
  10067. "source": {
  10068. "type": "git",
  10069. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10070. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5"
  10071. },
  10072. "dist": {
  10073. "type": "zip",
  10074. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  10075. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  10076. "shasum": "",
  10077. "mirrors": [
  10078. {
  10079. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10080. "preferred": true
  10081. }
  10082. ]
  10083. },
  10084. "require": {
  10085. "nikic/php-parser": "^4.18 || ^5.0",
  10086. "php": ">=7.3"
  10087. },
  10088. "require-dev": {
  10089. "phpunit/phpunit": "^9.3"
  10090. },
  10091. "type": "library",
  10092. "extra": {
  10093. "branch-alias": {
  10094. "dev-master": "1.0-dev"
  10095. }
  10096. },
  10097. "autoload": {
  10098. "classmap": [
  10099. "src/"
  10100. ]
  10101. },
  10102. "notification-url": "https://packagist.org/downloads/",
  10103. "license": [
  10104. "BSD-3-Clause"
  10105. ],
  10106. "authors": [
  10107. {
  10108. "name": "Sebastian Bergmann",
  10109. "email": "sebastian@phpunit.de",
  10110. "role": "lead"
  10111. }
  10112. ],
  10113. "description": "Library for counting the lines of code in PHP source code",
  10114. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10115. "support": {
  10116. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10117. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4"
  10118. },
  10119. "funding": [
  10120. {
  10121. "url": "https://github.com/sebastianbergmann",
  10122. "type": "github"
  10123. }
  10124. ],
  10125. "time": "2023-12-22T06:20:34+00:00"
  10126. },
  10127. {
  10128. "name": "sebastian/object-enumerator",
  10129. "version": "4.0.4",
  10130. "source": {
  10131. "type": "git",
  10132. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10133. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  10134. },
  10135. "dist": {
  10136. "type": "zip",
  10137. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  10138. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  10139. "shasum": "",
  10140. "mirrors": [
  10141. {
  10142. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10143. "preferred": true
  10144. }
  10145. ]
  10146. },
  10147. "require": {
  10148. "php": ">=7.3",
  10149. "sebastian/object-reflector": "^2.0",
  10150. "sebastian/recursion-context": "^4.0"
  10151. },
  10152. "require-dev": {
  10153. "phpunit/phpunit": "^9.3"
  10154. },
  10155. "type": "library",
  10156. "extra": {
  10157. "branch-alias": {
  10158. "dev-master": "4.0-dev"
  10159. }
  10160. },
  10161. "autoload": {
  10162. "classmap": [
  10163. "src/"
  10164. ]
  10165. },
  10166. "notification-url": "https://packagist.org/downloads/",
  10167. "license": [
  10168. "BSD-3-Clause"
  10169. ],
  10170. "authors": [
  10171. {
  10172. "name": "Sebastian Bergmann",
  10173. "email": "sebastian@phpunit.de"
  10174. }
  10175. ],
  10176. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10177. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10178. "support": {
  10179. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10180. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  10181. },
  10182. "funding": [
  10183. {
  10184. "url": "https://github.com/sebastianbergmann",
  10185. "type": "github"
  10186. }
  10187. ],
  10188. "time": "2020-10-26T13:12:34+00:00"
  10189. },
  10190. {
  10191. "name": "sebastian/object-reflector",
  10192. "version": "2.0.4",
  10193. "source": {
  10194. "type": "git",
  10195. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10196. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  10197. },
  10198. "dist": {
  10199. "type": "zip",
  10200. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10201. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10202. "shasum": "",
  10203. "mirrors": [
  10204. {
  10205. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10206. "preferred": true
  10207. }
  10208. ]
  10209. },
  10210. "require": {
  10211. "php": ">=7.3"
  10212. },
  10213. "require-dev": {
  10214. "phpunit/phpunit": "^9.3"
  10215. },
  10216. "type": "library",
  10217. "extra": {
  10218. "branch-alias": {
  10219. "dev-master": "2.0-dev"
  10220. }
  10221. },
  10222. "autoload": {
  10223. "classmap": [
  10224. "src/"
  10225. ]
  10226. },
  10227. "notification-url": "https://packagist.org/downloads/",
  10228. "license": [
  10229. "BSD-3-Clause"
  10230. ],
  10231. "authors": [
  10232. {
  10233. "name": "Sebastian Bergmann",
  10234. "email": "sebastian@phpunit.de"
  10235. }
  10236. ],
  10237. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10238. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10239. "support": {
  10240. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10241. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  10242. },
  10243. "funding": [
  10244. {
  10245. "url": "https://github.com/sebastianbergmann",
  10246. "type": "github"
  10247. }
  10248. ],
  10249. "time": "2020-10-26T13:14:26+00:00"
  10250. },
  10251. {
  10252. "name": "sebastian/recursion-context",
  10253. "version": "4.0.5",
  10254. "source": {
  10255. "type": "git",
  10256. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10257. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  10258. },
  10259. "dist": {
  10260. "type": "zip",
  10261. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10262. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10263. "shasum": "",
  10264. "mirrors": [
  10265. {
  10266. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10267. "preferred": true
  10268. }
  10269. ]
  10270. },
  10271. "require": {
  10272. "php": ">=7.3"
  10273. },
  10274. "require-dev": {
  10275. "phpunit/phpunit": "^9.3"
  10276. },
  10277. "type": "library",
  10278. "extra": {
  10279. "branch-alias": {
  10280. "dev-master": "4.0-dev"
  10281. }
  10282. },
  10283. "autoload": {
  10284. "classmap": [
  10285. "src/"
  10286. ]
  10287. },
  10288. "notification-url": "https://packagist.org/downloads/",
  10289. "license": [
  10290. "BSD-3-Clause"
  10291. ],
  10292. "authors": [
  10293. {
  10294. "name": "Sebastian Bergmann",
  10295. "email": "sebastian@phpunit.de"
  10296. },
  10297. {
  10298. "name": "Jeff Welch",
  10299. "email": "whatthejeff@gmail.com"
  10300. },
  10301. {
  10302. "name": "Adam Harvey",
  10303. "email": "aharvey@php.net"
  10304. }
  10305. ],
  10306. "description": "Provides functionality to recursively process PHP variables",
  10307. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10308. "support": {
  10309. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10310. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  10311. },
  10312. "funding": [
  10313. {
  10314. "url": "https://github.com/sebastianbergmann",
  10315. "type": "github"
  10316. }
  10317. ],
  10318. "time": "2023-02-03T06:07:39+00:00"
  10319. },
  10320. {
  10321. "name": "sebastian/resource-operations",
  10322. "version": "3.0.4",
  10323. "source": {
  10324. "type": "git",
  10325. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10326. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e"
  10327. },
  10328. "dist": {
  10329. "type": "zip",
  10330. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  10331. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  10332. "shasum": "",
  10333. "mirrors": [
  10334. {
  10335. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10336. "preferred": true
  10337. }
  10338. ]
  10339. },
  10340. "require": {
  10341. "php": ">=7.3"
  10342. },
  10343. "require-dev": {
  10344. "phpunit/phpunit": "^9.0"
  10345. },
  10346. "type": "library",
  10347. "extra": {
  10348. "branch-alias": {
  10349. "dev-main": "3.0-dev"
  10350. }
  10351. },
  10352. "autoload": {
  10353. "classmap": [
  10354. "src/"
  10355. ]
  10356. },
  10357. "notification-url": "https://packagist.org/downloads/",
  10358. "license": [
  10359. "BSD-3-Clause"
  10360. ],
  10361. "authors": [
  10362. {
  10363. "name": "Sebastian Bergmann",
  10364. "email": "sebastian@phpunit.de"
  10365. }
  10366. ],
  10367. "description": "Provides a list of PHP built-in functions that operate on resources",
  10368. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10369. "support": {
  10370. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.4"
  10371. },
  10372. "funding": [
  10373. {
  10374. "url": "https://github.com/sebastianbergmann",
  10375. "type": "github"
  10376. }
  10377. ],
  10378. "abandoned": true,
  10379. "time": "2024-03-14T16:00:52+00:00"
  10380. },
  10381. {
  10382. "name": "sebastian/type",
  10383. "version": "3.2.1",
  10384. "source": {
  10385. "type": "git",
  10386. "url": "https://github.com/sebastianbergmann/type.git",
  10387. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  10388. },
  10389. "dist": {
  10390. "type": "zip",
  10391. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10392. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10393. "shasum": "",
  10394. "mirrors": [
  10395. {
  10396. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10397. "preferred": true
  10398. }
  10399. ]
  10400. },
  10401. "require": {
  10402. "php": ">=7.3"
  10403. },
  10404. "require-dev": {
  10405. "phpunit/phpunit": "^9.5"
  10406. },
  10407. "type": "library",
  10408. "extra": {
  10409. "branch-alias": {
  10410. "dev-master": "3.2-dev"
  10411. }
  10412. },
  10413. "autoload": {
  10414. "classmap": [
  10415. "src/"
  10416. ]
  10417. },
  10418. "notification-url": "https://packagist.org/downloads/",
  10419. "license": [
  10420. "BSD-3-Clause"
  10421. ],
  10422. "authors": [
  10423. {
  10424. "name": "Sebastian Bergmann",
  10425. "email": "sebastian@phpunit.de",
  10426. "role": "lead"
  10427. }
  10428. ],
  10429. "description": "Collection of value objects that represent the types of the PHP type system",
  10430. "homepage": "https://github.com/sebastianbergmann/type",
  10431. "support": {
  10432. "issues": "https://github.com/sebastianbergmann/type/issues",
  10433. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  10434. },
  10435. "funding": [
  10436. {
  10437. "url": "https://github.com/sebastianbergmann",
  10438. "type": "github"
  10439. }
  10440. ],
  10441. "time": "2023-02-03T06:13:03+00:00"
  10442. },
  10443. {
  10444. "name": "sebastian/version",
  10445. "version": "3.0.2",
  10446. "source": {
  10447. "type": "git",
  10448. "url": "https://github.com/sebastianbergmann/version.git",
  10449. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  10450. },
  10451. "dist": {
  10452. "type": "zip",
  10453. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  10454. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  10455. "shasum": "",
  10456. "mirrors": [
  10457. {
  10458. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10459. "preferred": true
  10460. }
  10461. ]
  10462. },
  10463. "require": {
  10464. "php": ">=7.3"
  10465. },
  10466. "type": "library",
  10467. "extra": {
  10468. "branch-alias": {
  10469. "dev-master": "3.0-dev"
  10470. }
  10471. },
  10472. "autoload": {
  10473. "classmap": [
  10474. "src/"
  10475. ]
  10476. },
  10477. "notification-url": "https://packagist.org/downloads/",
  10478. "license": [
  10479. "BSD-3-Clause"
  10480. ],
  10481. "authors": [
  10482. {
  10483. "name": "Sebastian Bergmann",
  10484. "email": "sebastian@phpunit.de",
  10485. "role": "lead"
  10486. }
  10487. ],
  10488. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10489. "homepage": "https://github.com/sebastianbergmann/version",
  10490. "support": {
  10491. "issues": "https://github.com/sebastianbergmann/version/issues",
  10492. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  10493. },
  10494. "funding": [
  10495. {
  10496. "url": "https://github.com/sebastianbergmann",
  10497. "type": "github"
  10498. }
  10499. ],
  10500. "time": "2020-09-28T06:39:44+00:00"
  10501. },
  10502. {
  10503. "name": "theseer/tokenizer",
  10504. "version": "1.3.1",
  10505. "source": {
  10506. "type": "git",
  10507. "url": "https://github.com/theseer/tokenizer.git",
  10508. "reference": "b7489ce515e168639d17feec34b8847c326b0b3c"
  10509. },
  10510. "dist": {
  10511. "type": "zip",
  10512. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/b7489ce515e168639d17feec34b8847c326b0b3c",
  10513. "reference": "b7489ce515e168639d17feec34b8847c326b0b3c",
  10514. "shasum": "",
  10515. "mirrors": [
  10516. {
  10517. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10518. "preferred": true
  10519. }
  10520. ]
  10521. },
  10522. "require": {
  10523. "ext-dom": "*",
  10524. "ext-tokenizer": "*",
  10525. "ext-xmlwriter": "*",
  10526. "php": "^7.2 || ^8.0"
  10527. },
  10528. "type": "library",
  10529. "autoload": {
  10530. "classmap": [
  10531. "src/"
  10532. ]
  10533. },
  10534. "notification-url": "https://packagist.org/downloads/",
  10535. "license": [
  10536. "BSD-3-Clause"
  10537. ],
  10538. "authors": [
  10539. {
  10540. "name": "Arne Blankerts",
  10541. "email": "arne@blankerts.de",
  10542. "role": "Developer"
  10543. }
  10544. ],
  10545. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10546. "support": {
  10547. "issues": "https://github.com/theseer/tokenizer/issues",
  10548. "source": "https://github.com/theseer/tokenizer/tree/1.3.1"
  10549. },
  10550. "funding": [
  10551. {
  10552. "url": "https://github.com/theseer",
  10553. "type": "github"
  10554. }
  10555. ],
  10556. "time": "2025-11-17T20:03:58+00:00"
  10557. }
  10558. ],
  10559. "aliases": [],
  10560. "minimum-stability": "dev",
  10561. "stability-flags": {
  10562. "fukuball/jieba-php": 20
  10563. },
  10564. "prefer-stable": true,
  10565. "prefer-lowest": false,
  10566. "platform": {
  10567. "php": "^8.0",
  10568. "ext-json": "*"
  10569. },
  10570. "platform-dev": {},
  10571. "plugin-api-version": "2.6.0"
  10572. }