composer.lock 391 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "72f617100a5f6633a267534d2b099a46",
  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.4.0",
  711. "source": {
  712. "type": "git",
  713. "url": "https://github.com/dragonmantank/cron-expression.git",
  714. "reference": "8c784d071debd117328803d86b2097615b457500"
  715. },
  716. "dist": {
  717. "type": "zip",
  718. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/8c784d071debd117328803d86b2097615b457500",
  719. "reference": "8c784d071debd117328803d86b2097615b457500",
  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. "webmozart/assert": "^1.0"
  731. },
  732. "replace": {
  733. "mtdowling/cron-expression": "^1.0"
  734. },
  735. "require-dev": {
  736. "phpstan/extension-installer": "^1.0",
  737. "phpstan/phpstan": "^1.0",
  738. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  739. },
  740. "type": "library",
  741. "extra": {
  742. "branch-alias": {
  743. "dev-master": "3.x-dev"
  744. }
  745. },
  746. "autoload": {
  747. "psr-4": {
  748. "Cron\\": "src/Cron/"
  749. }
  750. },
  751. "notification-url": "https://packagist.org/downloads/",
  752. "license": [
  753. "MIT"
  754. ],
  755. "authors": [
  756. {
  757. "name": "Chris Tankersley",
  758. "email": "chris@ctankersley.com",
  759. "homepage": "https://github.com/dragonmantank"
  760. }
  761. ],
  762. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  763. "keywords": [
  764. "cron",
  765. "schedule"
  766. ],
  767. "support": {
  768. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  769. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.4.0"
  770. },
  771. "funding": [
  772. {
  773. "url": "https://github.com/dragonmantank",
  774. "type": "github"
  775. }
  776. ],
  777. "time": "2024-10-09T13:47:03+00:00"
  778. },
  779. {
  780. "name": "egulias/email-validator",
  781. "version": "2.1.25",
  782. "source": {
  783. "type": "git",
  784. "url": "https://github.com/egulias/EmailValidator.git",
  785. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  786. },
  787. "dist": {
  788. "type": "zip",
  789. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  790. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  791. "shasum": "",
  792. "mirrors": [
  793. {
  794. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  795. "preferred": true
  796. }
  797. ]
  798. },
  799. "require": {
  800. "doctrine/lexer": "^1.0.1",
  801. "php": ">=5.5",
  802. "symfony/polyfill-intl-idn": "^1.10"
  803. },
  804. "require-dev": {
  805. "dominicsayers/isemail": "^3.0.7",
  806. "phpunit/phpunit": "^4.8.36|^7.5.15",
  807. "satooshi/php-coveralls": "^1.0.1"
  808. },
  809. "suggest": {
  810. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  811. },
  812. "type": "library",
  813. "extra": {
  814. "branch-alias": {
  815. "dev-master": "2.1.x-dev"
  816. }
  817. },
  818. "autoload": {
  819. "psr-4": {
  820. "Egulias\\EmailValidator\\": "src"
  821. }
  822. },
  823. "notification-url": "https://packagist.org/downloads/",
  824. "license": [
  825. "MIT"
  826. ],
  827. "authors": [
  828. {
  829. "name": "Eduardo Gulias Davis"
  830. }
  831. ],
  832. "description": "A library for validating emails against several RFCs",
  833. "homepage": "https://github.com/egulias/EmailValidator",
  834. "keywords": [
  835. "email",
  836. "emailvalidation",
  837. "emailvalidator",
  838. "validation",
  839. "validator"
  840. ],
  841. "support": {
  842. "issues": "https://github.com/egulias/EmailValidator/issues",
  843. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  844. },
  845. "funding": [
  846. {
  847. "url": "https://github.com/egulias",
  848. "type": "github"
  849. }
  850. ],
  851. "time": "2020-12-29T14:50:06+00:00"
  852. },
  853. {
  854. "name": "evenement/evenement",
  855. "version": "v3.0.2",
  856. "source": {
  857. "type": "git",
  858. "url": "https://github.com/igorw/evenement.git",
  859. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  860. },
  861. "dist": {
  862. "type": "zip",
  863. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  864. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  865. "shasum": "",
  866. "mirrors": [
  867. {
  868. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  869. "preferred": true
  870. }
  871. ]
  872. },
  873. "require": {
  874. "php": ">=7.0"
  875. },
  876. "require-dev": {
  877. "phpunit/phpunit": "^9 || ^6"
  878. },
  879. "type": "library",
  880. "autoload": {
  881. "psr-4": {
  882. "Evenement\\": "src/"
  883. }
  884. },
  885. "notification-url": "https://packagist.org/downloads/",
  886. "license": [
  887. "MIT"
  888. ],
  889. "authors": [
  890. {
  891. "name": "Igor Wiedler",
  892. "email": "igor@wiedler.ch"
  893. }
  894. ],
  895. "description": "Événement is a very simple event dispatching library for PHP",
  896. "keywords": [
  897. "event-dispatcher",
  898. "event-emitter"
  899. ],
  900. "support": {
  901. "issues": "https://github.com/igorw/evenement/issues",
  902. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  903. },
  904. "time": "2023-08-08T05:53:35+00:00"
  905. },
  906. {
  907. "name": "ezyang/htmlpurifier",
  908. "version": "v4.18.0",
  909. "source": {
  910. "type": "git",
  911. "url": "https://github.com/ezyang/htmlpurifier.git",
  912. "reference": "cb56001e54359df7ae76dc522d08845dc741621b"
  913. },
  914. "dist": {
  915. "type": "zip",
  916. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/cb56001e54359df7ae76dc522d08845dc741621b",
  917. "reference": "cb56001e54359df7ae76dc522d08845dc741621b",
  918. "shasum": "",
  919. "mirrors": [
  920. {
  921. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  922. "preferred": true
  923. }
  924. ]
  925. },
  926. "require": {
  927. "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"
  928. },
  929. "require-dev": {
  930. "cerdic/css-tidy": "^1.7 || ^2.0",
  931. "simpletest/simpletest": "dev-master"
  932. },
  933. "suggest": {
  934. "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
  935. "ext-bcmath": "Used for unit conversion and imagecrash protection",
  936. "ext-iconv": "Converts text to and from non-UTF-8 encodings",
  937. "ext-tidy": "Used for pretty-printing HTML"
  938. },
  939. "type": "library",
  940. "autoload": {
  941. "files": [
  942. "library/HTMLPurifier.composer.php"
  943. ],
  944. "psr-0": {
  945. "HTMLPurifier": "library/"
  946. },
  947. "exclude-from-classmap": [
  948. "/library/HTMLPurifier/Language/"
  949. ]
  950. },
  951. "notification-url": "https://packagist.org/downloads/",
  952. "license": [
  953. "LGPL-2.1-or-later"
  954. ],
  955. "authors": [
  956. {
  957. "name": "Edward Z. Yang",
  958. "email": "admin@htmlpurifier.org",
  959. "homepage": "http://ezyang.com"
  960. }
  961. ],
  962. "description": "Standards compliant HTML filter written in PHP",
  963. "homepage": "http://htmlpurifier.org/",
  964. "keywords": [
  965. "html"
  966. ],
  967. "support": {
  968. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  969. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.18.0"
  970. },
  971. "time": "2024-11-01T03:51:45+00:00"
  972. },
  973. {
  974. "name": "fideloper/proxy",
  975. "version": "4.4.2",
  976. "source": {
  977. "type": "git",
  978. "url": "https://github.com/fideloper/TrustedProxy.git",
  979. "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750"
  980. },
  981. "dist": {
  982. "type": "zip",
  983. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/a751f2bc86dd8e6cfef12dc0cbdada82f5a18750",
  984. "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750",
  985. "shasum": "",
  986. "mirrors": [
  987. {
  988. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  989. "preferred": true
  990. }
  991. ]
  992. },
  993. "require": {
  994. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  995. "php": ">=5.4.0"
  996. },
  997. "require-dev": {
  998. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  999. "mockery/mockery": "^1.0",
  1000. "phpunit/phpunit": "^8.5.8|^9.3.3"
  1001. },
  1002. "type": "library",
  1003. "extra": {
  1004. "laravel": {
  1005. "providers": [
  1006. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  1007. ]
  1008. }
  1009. },
  1010. "autoload": {
  1011. "psr-4": {
  1012. "Fideloper\\Proxy\\": "src/"
  1013. }
  1014. },
  1015. "notification-url": "https://packagist.org/downloads/",
  1016. "license": [
  1017. "MIT"
  1018. ],
  1019. "authors": [
  1020. {
  1021. "name": "Chris Fidao",
  1022. "email": "fideloper@gmail.com"
  1023. }
  1024. ],
  1025. "description": "Set trusted proxies for Laravel",
  1026. "keywords": [
  1027. "load balancing",
  1028. "proxy",
  1029. "trusted proxy"
  1030. ],
  1031. "support": {
  1032. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  1033. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.2"
  1034. },
  1035. "time": "2022-02-09T13:33:34+00:00"
  1036. },
  1037. {
  1038. "name": "firebase/php-jwt",
  1039. "version": "v6.11.0",
  1040. "source": {
  1041. "type": "git",
  1042. "url": "https://github.com/firebase/php-jwt.git",
  1043. "reference": "8f718f4dfc9c5d5f0c994cdfd103921b43592712"
  1044. },
  1045. "dist": {
  1046. "type": "zip",
  1047. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/8f718f4dfc9c5d5f0c994cdfd103921b43592712",
  1048. "reference": "8f718f4dfc9c5d5f0c994cdfd103921b43592712",
  1049. "shasum": "",
  1050. "mirrors": [
  1051. {
  1052. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1053. "preferred": true
  1054. }
  1055. ]
  1056. },
  1057. "require": {
  1058. "php": "^8.0"
  1059. },
  1060. "require-dev": {
  1061. "guzzlehttp/guzzle": "^7.4",
  1062. "phpspec/prophecy-phpunit": "^2.0",
  1063. "phpunit/phpunit": "^9.5",
  1064. "psr/cache": "^2.0||^3.0",
  1065. "psr/http-client": "^1.0",
  1066. "psr/http-factory": "^1.0"
  1067. },
  1068. "suggest": {
  1069. "ext-sodium": "Support EdDSA (Ed25519) signatures",
  1070. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  1071. },
  1072. "type": "library",
  1073. "autoload": {
  1074. "psr-4": {
  1075. "Firebase\\JWT\\": "src"
  1076. }
  1077. },
  1078. "notification-url": "https://packagist.org/downloads/",
  1079. "license": [
  1080. "BSD-3-Clause"
  1081. ],
  1082. "authors": [
  1083. {
  1084. "name": "Neuman Vong",
  1085. "email": "neuman+pear@twilio.com",
  1086. "role": "Developer"
  1087. },
  1088. {
  1089. "name": "Anant Narayanan",
  1090. "email": "anant@php.net",
  1091. "role": "Developer"
  1092. }
  1093. ],
  1094. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  1095. "homepage": "https://github.com/firebase/php-jwt",
  1096. "keywords": [
  1097. "jwt",
  1098. "php"
  1099. ],
  1100. "support": {
  1101. "issues": "https://github.com/firebase/php-jwt/issues",
  1102. "source": "https://github.com/firebase/php-jwt/tree/v6.11.0"
  1103. },
  1104. "time": "2025-01-23T05:11:06+00:00"
  1105. },
  1106. {
  1107. "name": "fruitcake/laravel-cors",
  1108. "version": "v2.2.0",
  1109. "source": {
  1110. "type": "git",
  1111. "url": "https://github.com/fruitcake/laravel-cors.git",
  1112. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534"
  1113. },
  1114. "dist": {
  1115. "type": "zip",
  1116. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/783a74f5e3431d7b9805be8afb60fd0a8f743534",
  1117. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534",
  1118. "shasum": "",
  1119. "mirrors": [
  1120. {
  1121. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1122. "preferred": true
  1123. }
  1124. ]
  1125. },
  1126. "require": {
  1127. "asm89/stack-cors": "^2.0.1",
  1128. "illuminate/contracts": "^6|^7|^8|^9",
  1129. "illuminate/support": "^6|^7|^8|^9",
  1130. "php": ">=7.2"
  1131. },
  1132. "require-dev": {
  1133. "laravel/framework": "^6|^7.24|^8",
  1134. "orchestra/testbench-dusk": "^4|^5|^6|^7",
  1135. "phpunit/phpunit": "^6|^7|^8|^9",
  1136. "squizlabs/php_codesniffer": "^3.5"
  1137. },
  1138. "type": "library",
  1139. "extra": {
  1140. "branch-alias": {
  1141. "dev-master": "2.1-dev"
  1142. },
  1143. "laravel": {
  1144. "providers": [
  1145. "Fruitcake\\Cors\\CorsServiceProvider"
  1146. ]
  1147. }
  1148. },
  1149. "autoload": {
  1150. "psr-4": {
  1151. "Fruitcake\\Cors\\": "src/"
  1152. }
  1153. },
  1154. "notification-url": "https://packagist.org/downloads/",
  1155. "license": [
  1156. "MIT"
  1157. ],
  1158. "authors": [
  1159. {
  1160. "name": "Fruitcake",
  1161. "homepage": "https://fruitcake.nl"
  1162. },
  1163. {
  1164. "name": "Barry vd. Heuvel",
  1165. "email": "barryvdh@gmail.com"
  1166. }
  1167. ],
  1168. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  1169. "keywords": [
  1170. "api",
  1171. "cors",
  1172. "crossdomain",
  1173. "laravel"
  1174. ],
  1175. "support": {
  1176. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  1177. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.2.0"
  1178. },
  1179. "funding": [
  1180. {
  1181. "url": "https://fruitcake.nl",
  1182. "type": "custom"
  1183. },
  1184. {
  1185. "url": "https://github.com/barryvdh",
  1186. "type": "github"
  1187. }
  1188. ],
  1189. "abandoned": true,
  1190. "time": "2022-02-23T14:25:13+00:00"
  1191. },
  1192. {
  1193. "name": "fukuball/jieba-php",
  1194. "version": "dev-master",
  1195. "source": {
  1196. "type": "git",
  1197. "url": "https://github.com/fukuball/jieba-php.git",
  1198. "reference": "87d87c7d3f84f446af433c578661b3cd26c7b50a"
  1199. },
  1200. "dist": {
  1201. "type": "zip",
  1202. "url": "https://api.github.com/repos/fukuball/jieba-php/zipball/87d87c7d3f84f446af433c578661b3cd26c7b50a",
  1203. "reference": "87d87c7d3f84f446af433c578661b3cd26c7b50a",
  1204. "shasum": "",
  1205. "mirrors": [
  1206. {
  1207. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1208. "preferred": true
  1209. }
  1210. ]
  1211. },
  1212. "require": {
  1213. "php": ">=7.1"
  1214. },
  1215. "require-dev": {
  1216. "doctrine/instantiator": "^1.3",
  1217. "guzzlehttp/guzzle": "^7.0",
  1218. "php-coveralls/php-coveralls": "^2.5",
  1219. "phpunit/phpunit": "^8.5 || ^9.0",
  1220. "psr/log": "^1.1",
  1221. "squizlabs/php_codesniffer": "^3.6 || ^4.0",
  1222. "symfony/config": "^5.4",
  1223. "symfony/console": "^5.4",
  1224. "symfony/deprecation-contracts": "^2.5",
  1225. "symfony/filesystem": "^5.4",
  1226. "symfony/service-contracts": "^2.5",
  1227. "symfony/stopwatch": "^5.4",
  1228. "symfony/string": "^5.4",
  1229. "symfony/yaml": "^5.4"
  1230. },
  1231. "default-branch": true,
  1232. "type": "library",
  1233. "autoload": {
  1234. "files": [
  1235. "src/vendor/multi-array/MultiArray.php",
  1236. "src/vendor/multi-array/Factory/MultiArrayFactory.php"
  1237. ],
  1238. "psr-4": {
  1239. "Fukuball\\Jieba\\": "src/class/"
  1240. }
  1241. },
  1242. "notification-url": "https://packagist.org/downloads/",
  1243. "license": [
  1244. "MIT"
  1245. ],
  1246. "authors": [
  1247. {
  1248. "name": "fukuball",
  1249. "email": "fukuball@gmail.com"
  1250. }
  1251. ],
  1252. "description": "結巴中文分詞(PHP 版本):做最好的 PHP 中文分詞、中文斷詞組件",
  1253. "keywords": [
  1254. "Jieba",
  1255. "php"
  1256. ],
  1257. "support": {
  1258. "issues": "https://github.com/fukuball/jieba-php/issues",
  1259. "source": "https://github.com/fukuball/jieba-php/tree/master"
  1260. },
  1261. "time": "2025-08-05T13:38:44+00:00"
  1262. },
  1263. {
  1264. "name": "graham-campbell/result-type",
  1265. "version": "1.1.x-dev",
  1266. "source": {
  1267. "type": "git",
  1268. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  1269. "reference": "9d6c1d7ce69a3329936e603617e59ba205ab0a66"
  1270. },
  1271. "dist": {
  1272. "type": "zip",
  1273. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/9d6c1d7ce69a3329936e603617e59ba205ab0a66",
  1274. "reference": "9d6c1d7ce69a3329936e603617e59ba205ab0a66",
  1275. "shasum": "",
  1276. "mirrors": [
  1277. {
  1278. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1279. "preferred": true
  1280. }
  1281. ]
  1282. },
  1283. "require": {
  1284. "php": "^7.2.5 || ^8.0",
  1285. "phpoption/phpoption": "^1.9.3"
  1286. },
  1287. "require-dev": {
  1288. "phpunit/phpunit": "^8.5.41 || ^9.6.22 || ^10.5.45 || ^11.5.7"
  1289. },
  1290. "default-branch": true,
  1291. "type": "library",
  1292. "autoload": {
  1293. "psr-4": {
  1294. "GrahamCampbell\\ResultType\\": "src/"
  1295. }
  1296. },
  1297. "notification-url": "https://packagist.org/downloads/",
  1298. "license": [
  1299. "MIT"
  1300. ],
  1301. "authors": [
  1302. {
  1303. "name": "Graham Campbell",
  1304. "email": "hello@gjcampbell.co.uk",
  1305. "homepage": "https://github.com/GrahamCampbell"
  1306. }
  1307. ],
  1308. "description": "An Implementation Of The Result Type",
  1309. "keywords": [
  1310. "Graham Campbell",
  1311. "GrahamCampbell",
  1312. "Result Type",
  1313. "Result-Type",
  1314. "result"
  1315. ],
  1316. "support": {
  1317. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  1318. "source": "https://github.com/GrahamCampbell/Result-Type/tree/1.1"
  1319. },
  1320. "funding": [
  1321. {
  1322. "url": "https://github.com/GrahamCampbell",
  1323. "type": "github"
  1324. },
  1325. {
  1326. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  1327. "type": "tidelift"
  1328. }
  1329. ],
  1330. "time": "2025-02-09T22:43:44+00:00"
  1331. },
  1332. {
  1333. "name": "gregwar/captcha",
  1334. "version": "v1.2.1",
  1335. "source": {
  1336. "type": "git",
  1337. "url": "https://github.com/Gregwar/Captcha.git",
  1338. "reference": "229d3cdfe33d6f1349e0aec94a26e9205a6db08e"
  1339. },
  1340. "dist": {
  1341. "type": "zip",
  1342. "url": "https://api.github.com/repos/Gregwar/Captcha/zipball/229d3cdfe33d6f1349e0aec94a26e9205a6db08e",
  1343. "reference": "229d3cdfe33d6f1349e0aec94a26e9205a6db08e",
  1344. "shasum": "",
  1345. "mirrors": [
  1346. {
  1347. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1348. "preferred": true
  1349. }
  1350. ]
  1351. },
  1352. "require": {
  1353. "ext-gd": "*",
  1354. "ext-mbstring": "*",
  1355. "php": ">=5.3.0",
  1356. "symfony/finder": "*"
  1357. },
  1358. "require-dev": {
  1359. "phpunit/phpunit": "^6.4"
  1360. },
  1361. "type": "library",
  1362. "autoload": {
  1363. "psr-4": {
  1364. "Gregwar\\": "src/Gregwar"
  1365. }
  1366. },
  1367. "notification-url": "https://packagist.org/downloads/",
  1368. "license": [
  1369. "MIT"
  1370. ],
  1371. "authors": [
  1372. {
  1373. "name": "Grégoire Passault",
  1374. "email": "g.passault@gmail.com",
  1375. "homepage": "http://www.gregwar.com/"
  1376. },
  1377. {
  1378. "name": "Jeremy Livingston",
  1379. "email": "jeremy.j.livingston@gmail.com"
  1380. }
  1381. ],
  1382. "description": "Captcha generator",
  1383. "homepage": "https://github.com/Gregwar/Captcha",
  1384. "keywords": [
  1385. "bot",
  1386. "captcha",
  1387. "spam"
  1388. ],
  1389. "support": {
  1390. "issues": "https://github.com/Gregwar/Captcha/issues",
  1391. "source": "https://github.com/Gregwar/Captcha/tree/v1.2.1"
  1392. },
  1393. "time": "2023-09-26T13:45:37+00:00"
  1394. },
  1395. {
  1396. "name": "guzzlehttp/guzzle",
  1397. "version": "7.9.2",
  1398. "source": {
  1399. "type": "git",
  1400. "url": "https://github.com/guzzle/guzzle.git",
  1401. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  1402. },
  1403. "dist": {
  1404. "type": "zip",
  1405. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  1406. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  1407. "shasum": "",
  1408. "mirrors": [
  1409. {
  1410. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1411. "preferred": true
  1412. }
  1413. ]
  1414. },
  1415. "require": {
  1416. "ext-json": "*",
  1417. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  1418. "guzzlehttp/psr7": "^2.7.0",
  1419. "php": "^7.2.5 || ^8.0",
  1420. "psr/http-client": "^1.0",
  1421. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1422. },
  1423. "provide": {
  1424. "psr/http-client-implementation": "1.0"
  1425. },
  1426. "require-dev": {
  1427. "bamarni/composer-bin-plugin": "^1.8.2",
  1428. "ext-curl": "*",
  1429. "guzzle/client-integration-tests": "3.0.2",
  1430. "php-http/message-factory": "^1.1",
  1431. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  1432. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1433. },
  1434. "suggest": {
  1435. "ext-curl": "Required for CURL handler support",
  1436. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1437. "psr/log": "Required for using the Log middleware"
  1438. },
  1439. "type": "library",
  1440. "extra": {
  1441. "bamarni-bin": {
  1442. "bin-links": true,
  1443. "forward-command": false
  1444. }
  1445. },
  1446. "autoload": {
  1447. "files": [
  1448. "src/functions_include.php"
  1449. ],
  1450. "psr-4": {
  1451. "GuzzleHttp\\": "src/"
  1452. }
  1453. },
  1454. "notification-url": "https://packagist.org/downloads/",
  1455. "license": [
  1456. "MIT"
  1457. ],
  1458. "authors": [
  1459. {
  1460. "name": "Graham Campbell",
  1461. "email": "hello@gjcampbell.co.uk",
  1462. "homepage": "https://github.com/GrahamCampbell"
  1463. },
  1464. {
  1465. "name": "Michael Dowling",
  1466. "email": "mtdowling@gmail.com",
  1467. "homepage": "https://github.com/mtdowling"
  1468. },
  1469. {
  1470. "name": "Jeremy Lindblom",
  1471. "email": "jeremeamia@gmail.com",
  1472. "homepage": "https://github.com/jeremeamia"
  1473. },
  1474. {
  1475. "name": "George Mponos",
  1476. "email": "gmponos@gmail.com",
  1477. "homepage": "https://github.com/gmponos"
  1478. },
  1479. {
  1480. "name": "Tobias Nyholm",
  1481. "email": "tobias.nyholm@gmail.com",
  1482. "homepage": "https://github.com/Nyholm"
  1483. },
  1484. {
  1485. "name": "Márk Sági-Kazár",
  1486. "email": "mark.sagikazar@gmail.com",
  1487. "homepage": "https://github.com/sagikazarmark"
  1488. },
  1489. {
  1490. "name": "Tobias Schultze",
  1491. "email": "webmaster@tubo-world.de",
  1492. "homepage": "https://github.com/Tobion"
  1493. }
  1494. ],
  1495. "description": "Guzzle is a PHP HTTP client library",
  1496. "keywords": [
  1497. "client",
  1498. "curl",
  1499. "framework",
  1500. "http",
  1501. "http client",
  1502. "psr-18",
  1503. "psr-7",
  1504. "rest",
  1505. "web service"
  1506. ],
  1507. "support": {
  1508. "issues": "https://github.com/guzzle/guzzle/issues",
  1509. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  1510. },
  1511. "funding": [
  1512. {
  1513. "url": "https://github.com/GrahamCampbell",
  1514. "type": "github"
  1515. },
  1516. {
  1517. "url": "https://github.com/Nyholm",
  1518. "type": "github"
  1519. },
  1520. {
  1521. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1522. "type": "tidelift"
  1523. }
  1524. ],
  1525. "time": "2024-07-24T11:22:20+00:00"
  1526. },
  1527. {
  1528. "name": "guzzlehttp/promises",
  1529. "version": "2.3.0",
  1530. "source": {
  1531. "type": "git",
  1532. "url": "https://github.com/guzzle/promises.git",
  1533. "reference": "481557b130ef3790cf82b713667b43030dc9c957"
  1534. },
  1535. "dist": {
  1536. "type": "zip",
  1537. "url": "https://api.github.com/repos/guzzle/promises/zipball/481557b130ef3790cf82b713667b43030dc9c957",
  1538. "reference": "481557b130ef3790cf82b713667b43030dc9c957",
  1539. "shasum": "",
  1540. "mirrors": [
  1541. {
  1542. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1543. "preferred": true
  1544. }
  1545. ]
  1546. },
  1547. "require": {
  1548. "php": "^7.2.5 || ^8.0"
  1549. },
  1550. "require-dev": {
  1551. "bamarni/composer-bin-plugin": "^1.8.2",
  1552. "phpunit/phpunit": "^8.5.44 || ^9.6.25"
  1553. },
  1554. "type": "library",
  1555. "extra": {
  1556. "bamarni-bin": {
  1557. "bin-links": true,
  1558. "forward-command": false
  1559. }
  1560. },
  1561. "autoload": {
  1562. "psr-4": {
  1563. "GuzzleHttp\\Promise\\": "src/"
  1564. }
  1565. },
  1566. "notification-url": "https://packagist.org/downloads/",
  1567. "license": [
  1568. "MIT"
  1569. ],
  1570. "authors": [
  1571. {
  1572. "name": "Graham Campbell",
  1573. "email": "hello@gjcampbell.co.uk",
  1574. "homepage": "https://github.com/GrahamCampbell"
  1575. },
  1576. {
  1577. "name": "Michael Dowling",
  1578. "email": "mtdowling@gmail.com",
  1579. "homepage": "https://github.com/mtdowling"
  1580. },
  1581. {
  1582. "name": "Tobias Nyholm",
  1583. "email": "tobias.nyholm@gmail.com",
  1584. "homepage": "https://github.com/Nyholm"
  1585. },
  1586. {
  1587. "name": "Tobias Schultze",
  1588. "email": "webmaster@tubo-world.de",
  1589. "homepage": "https://github.com/Tobion"
  1590. }
  1591. ],
  1592. "description": "Guzzle promises library",
  1593. "keywords": [
  1594. "promise"
  1595. ],
  1596. "support": {
  1597. "issues": "https://github.com/guzzle/promises/issues",
  1598. "source": "https://github.com/guzzle/promises/tree/2.3.0"
  1599. },
  1600. "funding": [
  1601. {
  1602. "url": "https://github.com/GrahamCampbell",
  1603. "type": "github"
  1604. },
  1605. {
  1606. "url": "https://github.com/Nyholm",
  1607. "type": "github"
  1608. },
  1609. {
  1610. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1611. "type": "tidelift"
  1612. }
  1613. ],
  1614. "time": "2025-08-22T14:34:08+00:00"
  1615. },
  1616. {
  1617. "name": "guzzlehttp/psr7",
  1618. "version": "2.8.0",
  1619. "source": {
  1620. "type": "git",
  1621. "url": "https://github.com/guzzle/psr7.git",
  1622. "reference": "21dc724a0583619cd1652f673303492272778051"
  1623. },
  1624. "dist": {
  1625. "type": "zip",
  1626. "url": "https://api.github.com/repos/guzzle/psr7/zipball/21dc724a0583619cd1652f673303492272778051",
  1627. "reference": "21dc724a0583619cd1652f673303492272778051",
  1628. "shasum": "",
  1629. "mirrors": [
  1630. {
  1631. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1632. "preferred": true
  1633. }
  1634. ]
  1635. },
  1636. "require": {
  1637. "php": "^7.2.5 || ^8.0",
  1638. "psr/http-factory": "^1.0",
  1639. "psr/http-message": "^1.1 || ^2.0",
  1640. "ralouphie/getallheaders": "^3.0"
  1641. },
  1642. "provide": {
  1643. "psr/http-factory-implementation": "1.0",
  1644. "psr/http-message-implementation": "1.0"
  1645. },
  1646. "require-dev": {
  1647. "bamarni/composer-bin-plugin": "^1.8.2",
  1648. "http-interop/http-factory-tests": "0.9.0",
  1649. "phpunit/phpunit": "^8.5.44 || ^9.6.25"
  1650. },
  1651. "suggest": {
  1652. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1653. },
  1654. "type": "library",
  1655. "extra": {
  1656. "bamarni-bin": {
  1657. "bin-links": true,
  1658. "forward-command": false
  1659. }
  1660. },
  1661. "autoload": {
  1662. "psr-4": {
  1663. "GuzzleHttp\\Psr7\\": "src/"
  1664. }
  1665. },
  1666. "notification-url": "https://packagist.org/downloads/",
  1667. "license": [
  1668. "MIT"
  1669. ],
  1670. "authors": [
  1671. {
  1672. "name": "Graham Campbell",
  1673. "email": "hello@gjcampbell.co.uk",
  1674. "homepage": "https://github.com/GrahamCampbell"
  1675. },
  1676. {
  1677. "name": "Michael Dowling",
  1678. "email": "mtdowling@gmail.com",
  1679. "homepage": "https://github.com/mtdowling"
  1680. },
  1681. {
  1682. "name": "George Mponos",
  1683. "email": "gmponos@gmail.com",
  1684. "homepage": "https://github.com/gmponos"
  1685. },
  1686. {
  1687. "name": "Tobias Nyholm",
  1688. "email": "tobias.nyholm@gmail.com",
  1689. "homepage": "https://github.com/Nyholm"
  1690. },
  1691. {
  1692. "name": "Márk Sági-Kazár",
  1693. "email": "mark.sagikazar@gmail.com",
  1694. "homepage": "https://github.com/sagikazarmark"
  1695. },
  1696. {
  1697. "name": "Tobias Schultze",
  1698. "email": "webmaster@tubo-world.de",
  1699. "homepage": "https://github.com/Tobion"
  1700. },
  1701. {
  1702. "name": "Márk Sági-Kazár",
  1703. "email": "mark.sagikazar@gmail.com",
  1704. "homepage": "https://sagikazarmark.hu"
  1705. }
  1706. ],
  1707. "description": "PSR-7 message implementation that also provides common utility methods",
  1708. "keywords": [
  1709. "http",
  1710. "message",
  1711. "psr-7",
  1712. "request",
  1713. "response",
  1714. "stream",
  1715. "uri",
  1716. "url"
  1717. ],
  1718. "support": {
  1719. "issues": "https://github.com/guzzle/psr7/issues",
  1720. "source": "https://github.com/guzzle/psr7/tree/2.8.0"
  1721. },
  1722. "funding": [
  1723. {
  1724. "url": "https://github.com/GrahamCampbell",
  1725. "type": "github"
  1726. },
  1727. {
  1728. "url": "https://github.com/Nyholm",
  1729. "type": "github"
  1730. },
  1731. {
  1732. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1733. "type": "tidelift"
  1734. }
  1735. ],
  1736. "time": "2025-08-23T21:21:41+00:00"
  1737. },
  1738. {
  1739. "name": "laravel/framework",
  1740. "version": "v8.83.29",
  1741. "source": {
  1742. "type": "git",
  1743. "url": "https://github.com/laravel/framework.git",
  1744. "reference": "d841a226a50c715431952a10260ba4fac9e91cc4"
  1745. },
  1746. "dist": {
  1747. "type": "zip",
  1748. "url": "https://api.github.com/repos/laravel/framework/zipball/d841a226a50c715431952a10260ba4fac9e91cc4",
  1749. "reference": "d841a226a50c715431952a10260ba4fac9e91cc4",
  1750. "shasum": "",
  1751. "mirrors": [
  1752. {
  1753. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1754. "preferred": true
  1755. }
  1756. ]
  1757. },
  1758. "require": {
  1759. "doctrine/inflector": "^1.4|^2.0",
  1760. "dragonmantank/cron-expression": "^3.0.2",
  1761. "egulias/email-validator": "^2.1.10",
  1762. "ext-json": "*",
  1763. "ext-mbstring": "*",
  1764. "ext-openssl": "*",
  1765. "laravel/serializable-closure": "^1.0",
  1766. "league/commonmark": "^1.3|^2.0.2",
  1767. "league/flysystem": "^1.1",
  1768. "monolog/monolog": "^2.0",
  1769. "nesbot/carbon": "^2.53.1",
  1770. "opis/closure": "^3.6",
  1771. "php": "^7.3|^8.0",
  1772. "psr/container": "^1.0",
  1773. "psr/log": "^1.0|^2.0",
  1774. "psr/simple-cache": "^1.0",
  1775. "ramsey/uuid": "^4.2.2",
  1776. "swiftmailer/swiftmailer": "^6.3",
  1777. "symfony/console": "^5.4",
  1778. "symfony/error-handler": "^5.4",
  1779. "symfony/finder": "^5.4",
  1780. "symfony/http-foundation": "^5.4",
  1781. "symfony/http-kernel": "^5.4",
  1782. "symfony/mime": "^5.4",
  1783. "symfony/process": "^5.4",
  1784. "symfony/routing": "^5.4",
  1785. "symfony/var-dumper": "^5.4",
  1786. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  1787. "vlucas/phpdotenv": "^5.4.1",
  1788. "voku/portable-ascii": "^1.6.1"
  1789. },
  1790. "conflict": {
  1791. "tightenco/collect": "<5.5.33"
  1792. },
  1793. "provide": {
  1794. "psr/container-implementation": "1.0",
  1795. "psr/simple-cache-implementation": "1.0"
  1796. },
  1797. "replace": {
  1798. "illuminate/auth": "self.version",
  1799. "illuminate/broadcasting": "self.version",
  1800. "illuminate/bus": "self.version",
  1801. "illuminate/cache": "self.version",
  1802. "illuminate/collections": "self.version",
  1803. "illuminate/config": "self.version",
  1804. "illuminate/console": "self.version",
  1805. "illuminate/container": "self.version",
  1806. "illuminate/contracts": "self.version",
  1807. "illuminate/cookie": "self.version",
  1808. "illuminate/database": "self.version",
  1809. "illuminate/encryption": "self.version",
  1810. "illuminate/events": "self.version",
  1811. "illuminate/filesystem": "self.version",
  1812. "illuminate/hashing": "self.version",
  1813. "illuminate/http": "self.version",
  1814. "illuminate/log": "self.version",
  1815. "illuminate/macroable": "self.version",
  1816. "illuminate/mail": "self.version",
  1817. "illuminate/notifications": "self.version",
  1818. "illuminate/pagination": "self.version",
  1819. "illuminate/pipeline": "self.version",
  1820. "illuminate/queue": "self.version",
  1821. "illuminate/redis": "self.version",
  1822. "illuminate/routing": "self.version",
  1823. "illuminate/session": "self.version",
  1824. "illuminate/support": "self.version",
  1825. "illuminate/testing": "self.version",
  1826. "illuminate/translation": "self.version",
  1827. "illuminate/validation": "self.version",
  1828. "illuminate/view": "self.version"
  1829. },
  1830. "require-dev": {
  1831. "aws/aws-sdk-php": "^3.198.1",
  1832. "doctrine/dbal": "^2.13.3|^3.1.4",
  1833. "filp/whoops": "^2.14.3",
  1834. "guzzlehttp/guzzle": "^6.5.5|^7.0.1",
  1835. "league/flysystem-cached-adapter": "^1.0",
  1836. "mockery/mockery": "^1.4.4",
  1837. "orchestra/testbench-core": "^6.27",
  1838. "pda/pheanstalk": "^4.0",
  1839. "phpunit/phpunit": "^8.5.19|^9.5.8",
  1840. "predis/predis": "^1.1.9",
  1841. "symfony/cache": "^5.4"
  1842. },
  1843. "suggest": {
  1844. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  1845. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.198.1).",
  1846. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  1847. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
  1848. "ext-bcmath": "Required to use the multiple_of validation rule.",
  1849. "ext-ftp": "Required to use the Flysystem FTP driver.",
  1850. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1851. "ext-memcached": "Required to use the memcache cache driver.",
  1852. "ext-pcntl": "Required to use all features of the queue worker.",
  1853. "ext-posix": "Required to use all features of the queue worker.",
  1854. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  1855. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  1856. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  1857. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.5.5|^7.0.1).",
  1858. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  1859. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  1860. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  1861. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  1862. "mockery/mockery": "Required to use mocking (^1.4.4).",
  1863. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  1864. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  1865. "phpunit/phpunit": "Required to use assertions and run tests (^8.5.19|^9.5.8).",
  1866. "predis/predis": "Required to use the predis connector (^1.1.9).",
  1867. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  1868. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0|^5.0|^6.0|^7.0).",
  1869. "symfony/cache": "Required to PSR-6 cache bridge (^5.4).",
  1870. "symfony/filesystem": "Required to enable support for relative symbolic links (^5.4).",
  1871. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  1872. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  1873. },
  1874. "type": "library",
  1875. "extra": {
  1876. "branch-alias": {
  1877. "dev-master": "8.x-dev"
  1878. }
  1879. },
  1880. "autoload": {
  1881. "files": [
  1882. "src/Illuminate/Collections/helpers.php",
  1883. "src/Illuminate/Events/functions.php",
  1884. "src/Illuminate/Foundation/helpers.php",
  1885. "src/Illuminate/Support/helpers.php"
  1886. ],
  1887. "psr-4": {
  1888. "Illuminate\\": "src/Illuminate/",
  1889. "Illuminate\\Support\\": [
  1890. "src/Illuminate/Macroable/",
  1891. "src/Illuminate/Collections/"
  1892. ]
  1893. }
  1894. },
  1895. "notification-url": "https://packagist.org/downloads/",
  1896. "license": [
  1897. "MIT"
  1898. ],
  1899. "authors": [
  1900. {
  1901. "name": "Taylor Otwell",
  1902. "email": "taylor@laravel.com"
  1903. }
  1904. ],
  1905. "description": "The Laravel Framework.",
  1906. "homepage": "https://laravel.com",
  1907. "keywords": [
  1908. "framework",
  1909. "laravel"
  1910. ],
  1911. "support": {
  1912. "issues": "https://github.com/laravel/framework/issues",
  1913. "source": "https://github.com/laravel/framework"
  1914. },
  1915. "time": "2024-11-20T15:55:41+00:00"
  1916. },
  1917. {
  1918. "name": "laravel/serializable-closure",
  1919. "version": "v1.3.7",
  1920. "source": {
  1921. "type": "git",
  1922. "url": "https://github.com/laravel/serializable-closure.git",
  1923. "reference": "4f48ade902b94323ca3be7646db16209ec76be3d"
  1924. },
  1925. "dist": {
  1926. "type": "zip",
  1927. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/4f48ade902b94323ca3be7646db16209ec76be3d",
  1928. "reference": "4f48ade902b94323ca3be7646db16209ec76be3d",
  1929. "shasum": "",
  1930. "mirrors": [
  1931. {
  1932. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1933. "preferred": true
  1934. }
  1935. ]
  1936. },
  1937. "require": {
  1938. "php": "^7.3|^8.0"
  1939. },
  1940. "require-dev": {
  1941. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  1942. "nesbot/carbon": "^2.61|^3.0",
  1943. "pestphp/pest": "^1.21.3",
  1944. "phpstan/phpstan": "^1.8.2",
  1945. "symfony/var-dumper": "^5.4.11|^6.2.0|^7.0.0"
  1946. },
  1947. "type": "library",
  1948. "extra": {
  1949. "branch-alias": {
  1950. "dev-master": "1.x-dev"
  1951. }
  1952. },
  1953. "autoload": {
  1954. "psr-4": {
  1955. "Laravel\\SerializableClosure\\": "src/"
  1956. }
  1957. },
  1958. "notification-url": "https://packagist.org/downloads/",
  1959. "license": [
  1960. "MIT"
  1961. ],
  1962. "authors": [
  1963. {
  1964. "name": "Taylor Otwell",
  1965. "email": "taylor@laravel.com"
  1966. },
  1967. {
  1968. "name": "Nuno Maduro",
  1969. "email": "nuno@laravel.com"
  1970. }
  1971. ],
  1972. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  1973. "keywords": [
  1974. "closure",
  1975. "laravel",
  1976. "serializable"
  1977. ],
  1978. "support": {
  1979. "issues": "https://github.com/laravel/serializable-closure/issues",
  1980. "source": "https://github.com/laravel/serializable-closure"
  1981. },
  1982. "time": "2024-11-14T18:34:49+00:00"
  1983. },
  1984. {
  1985. "name": "laravel/socialite",
  1986. "version": "v5.16.0",
  1987. "source": {
  1988. "type": "git",
  1989. "url": "https://github.com/laravel/socialite.git",
  1990. "reference": "40a2dc98c53d9dc6d55eadb0d490d3d72b73f1bf"
  1991. },
  1992. "dist": {
  1993. "type": "zip",
  1994. "url": "https://api.github.com/repos/laravel/socialite/zipball/40a2dc98c53d9dc6d55eadb0d490d3d72b73f1bf",
  1995. "reference": "40a2dc98c53d9dc6d55eadb0d490d3d72b73f1bf",
  1996. "shasum": "",
  1997. "mirrors": [
  1998. {
  1999. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2000. "preferred": true
  2001. }
  2002. ]
  2003. },
  2004. "require": {
  2005. "ext-json": "*",
  2006. "firebase/php-jwt": "^6.4",
  2007. "guzzlehttp/guzzle": "^6.0|^7.0",
  2008. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2009. "illuminate/http": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2010. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2011. "league/oauth1-client": "^1.10.1",
  2012. "php": "^7.2|^8.0",
  2013. "phpseclib/phpseclib": "^3.0"
  2014. },
  2015. "require-dev": {
  2016. "mockery/mockery": "^1.0",
  2017. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0",
  2018. "phpstan/phpstan": "^1.10",
  2019. "phpunit/phpunit": "^8.0|^9.3|^10.4"
  2020. },
  2021. "type": "library",
  2022. "extra": {
  2023. "laravel": {
  2024. "aliases": {
  2025. "Socialite": "Laravel\\Socialite\\Facades\\Socialite"
  2026. },
  2027. "providers": [
  2028. "Laravel\\Socialite\\SocialiteServiceProvider"
  2029. ]
  2030. },
  2031. "branch-alias": {
  2032. "dev-master": "5.x-dev"
  2033. }
  2034. },
  2035. "autoload": {
  2036. "psr-4": {
  2037. "Laravel\\Socialite\\": "src/"
  2038. }
  2039. },
  2040. "notification-url": "https://packagist.org/downloads/",
  2041. "license": [
  2042. "MIT"
  2043. ],
  2044. "authors": [
  2045. {
  2046. "name": "Taylor Otwell",
  2047. "email": "taylor@laravel.com"
  2048. }
  2049. ],
  2050. "description": "Laravel wrapper around OAuth 1 & OAuth 2 libraries.",
  2051. "homepage": "https://laravel.com",
  2052. "keywords": [
  2053. "laravel",
  2054. "oauth"
  2055. ],
  2056. "support": {
  2057. "issues": "https://github.com/laravel/socialite/issues",
  2058. "source": "https://github.com/laravel/socialite"
  2059. },
  2060. "time": "2024-09-03T09:46:57+00:00"
  2061. },
  2062. {
  2063. "name": "laravel/tinker",
  2064. "version": "v2.10.0",
  2065. "source": {
  2066. "type": "git",
  2067. "url": "https://github.com/laravel/tinker.git",
  2068. "reference": "ba4d51eb56de7711b3a37d63aa0643e99a339ae5"
  2069. },
  2070. "dist": {
  2071. "type": "zip",
  2072. "url": "https://api.github.com/repos/laravel/tinker/zipball/ba4d51eb56de7711b3a37d63aa0643e99a339ae5",
  2073. "reference": "ba4d51eb56de7711b3a37d63aa0643e99a339ae5",
  2074. "shasum": "",
  2075. "mirrors": [
  2076. {
  2077. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2078. "preferred": true
  2079. }
  2080. ]
  2081. },
  2082. "require": {
  2083. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2084. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2085. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2086. "php": "^7.2.5|^8.0",
  2087. "psy/psysh": "^0.11.1|^0.12.0",
  2088. "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0"
  2089. },
  2090. "require-dev": {
  2091. "mockery/mockery": "~1.3.3|^1.4.2",
  2092. "phpstan/phpstan": "^1.10",
  2093. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2094. },
  2095. "suggest": {
  2096. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0)."
  2097. },
  2098. "type": "library",
  2099. "extra": {
  2100. "laravel": {
  2101. "providers": [
  2102. "Laravel\\Tinker\\TinkerServiceProvider"
  2103. ]
  2104. }
  2105. },
  2106. "autoload": {
  2107. "psr-4": {
  2108. "Laravel\\Tinker\\": "src/"
  2109. }
  2110. },
  2111. "notification-url": "https://packagist.org/downloads/",
  2112. "license": [
  2113. "MIT"
  2114. ],
  2115. "authors": [
  2116. {
  2117. "name": "Taylor Otwell",
  2118. "email": "taylor@laravel.com"
  2119. }
  2120. ],
  2121. "description": "Powerful REPL for the Laravel framework.",
  2122. "keywords": [
  2123. "REPL",
  2124. "Tinker",
  2125. "laravel",
  2126. "psysh"
  2127. ],
  2128. "support": {
  2129. "issues": "https://github.com/laravel/tinker/issues",
  2130. "source": "https://github.com/laravel/tinker/tree/v2.10.0"
  2131. },
  2132. "time": "2024-09-23T13:32:56+00:00"
  2133. },
  2134. {
  2135. "name": "league/commonmark",
  2136. "version": "2.6.0",
  2137. "source": {
  2138. "type": "git",
  2139. "url": "https://github.com/thephpleague/commonmark.git",
  2140. "reference": "d150f911e0079e90ae3c106734c93137c184f932"
  2141. },
  2142. "dist": {
  2143. "type": "zip",
  2144. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/d150f911e0079e90ae3c106734c93137c184f932",
  2145. "reference": "d150f911e0079e90ae3c106734c93137c184f932",
  2146. "shasum": "",
  2147. "mirrors": [
  2148. {
  2149. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2150. "preferred": true
  2151. }
  2152. ]
  2153. },
  2154. "require": {
  2155. "ext-mbstring": "*",
  2156. "league/config": "^1.1.1",
  2157. "php": "^7.4 || ^8.0",
  2158. "psr/event-dispatcher": "^1.0",
  2159. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  2160. "symfony/polyfill-php80": "^1.16"
  2161. },
  2162. "require-dev": {
  2163. "cebe/markdown": "^1.0",
  2164. "commonmark/cmark": "0.31.1",
  2165. "commonmark/commonmark.js": "0.31.1",
  2166. "composer/package-versions-deprecated": "^1.8",
  2167. "embed/embed": "^4.4",
  2168. "erusev/parsedown": "^1.0",
  2169. "ext-json": "*",
  2170. "github/gfm": "0.29.0",
  2171. "michelf/php-markdown": "^1.4 || ^2.0",
  2172. "nyholm/psr7": "^1.5",
  2173. "phpstan/phpstan": "^1.8.2",
  2174. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  2175. "scrutinizer/ocular": "^1.8.1",
  2176. "symfony/finder": "^5.3 | ^6.0 | ^7.0",
  2177. "symfony/process": "^5.4 | ^6.0 | ^7.0",
  2178. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 | ^7.0",
  2179. "unleashedtech/php-coding-standard": "^3.1.1",
  2180. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  2181. },
  2182. "suggest": {
  2183. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  2184. },
  2185. "type": "library",
  2186. "extra": {
  2187. "branch-alias": {
  2188. "dev-main": "2.7-dev"
  2189. }
  2190. },
  2191. "autoload": {
  2192. "psr-4": {
  2193. "League\\CommonMark\\": "src"
  2194. }
  2195. },
  2196. "notification-url": "https://packagist.org/downloads/",
  2197. "license": [
  2198. "BSD-3-Clause"
  2199. ],
  2200. "authors": [
  2201. {
  2202. "name": "Colin O'Dell",
  2203. "email": "colinodell@gmail.com",
  2204. "homepage": "https://www.colinodell.com",
  2205. "role": "Lead Developer"
  2206. }
  2207. ],
  2208. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  2209. "homepage": "https://commonmark.thephpleague.com",
  2210. "keywords": [
  2211. "commonmark",
  2212. "flavored",
  2213. "gfm",
  2214. "github",
  2215. "github-flavored",
  2216. "markdown",
  2217. "md",
  2218. "parser"
  2219. ],
  2220. "support": {
  2221. "docs": "https://commonmark.thephpleague.com/",
  2222. "forum": "https://github.com/thephpleague/commonmark/discussions",
  2223. "issues": "https://github.com/thephpleague/commonmark/issues",
  2224. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2225. "source": "https://github.com/thephpleague/commonmark"
  2226. },
  2227. "funding": [
  2228. {
  2229. "url": "https://www.colinodell.com/sponsor",
  2230. "type": "custom"
  2231. },
  2232. {
  2233. "url": "https://www.paypal.me/colinpodell/10.00",
  2234. "type": "custom"
  2235. },
  2236. {
  2237. "url": "https://github.com/colinodell",
  2238. "type": "github"
  2239. },
  2240. {
  2241. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2242. "type": "tidelift"
  2243. }
  2244. ],
  2245. "time": "2024-12-07T15:34:16+00:00"
  2246. },
  2247. {
  2248. "name": "league/config",
  2249. "version": "v1.2.0",
  2250. "source": {
  2251. "type": "git",
  2252. "url": "https://github.com/thephpleague/config.git",
  2253. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  2254. },
  2255. "dist": {
  2256. "type": "zip",
  2257. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2258. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2259. "shasum": "",
  2260. "mirrors": [
  2261. {
  2262. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2263. "preferred": true
  2264. }
  2265. ]
  2266. },
  2267. "require": {
  2268. "dflydev/dot-access-data": "^3.0.1",
  2269. "nette/schema": "^1.2",
  2270. "php": "^7.4 || ^8.0"
  2271. },
  2272. "require-dev": {
  2273. "phpstan/phpstan": "^1.8.2",
  2274. "phpunit/phpunit": "^9.5.5",
  2275. "scrutinizer/ocular": "^1.8.1",
  2276. "unleashedtech/php-coding-standard": "^3.1",
  2277. "vimeo/psalm": "^4.7.3"
  2278. },
  2279. "type": "library",
  2280. "extra": {
  2281. "branch-alias": {
  2282. "dev-main": "1.2-dev"
  2283. }
  2284. },
  2285. "autoload": {
  2286. "psr-4": {
  2287. "League\\Config\\": "src"
  2288. }
  2289. },
  2290. "notification-url": "https://packagist.org/downloads/",
  2291. "license": [
  2292. "BSD-3-Clause"
  2293. ],
  2294. "authors": [
  2295. {
  2296. "name": "Colin O'Dell",
  2297. "email": "colinodell@gmail.com",
  2298. "homepage": "https://www.colinodell.com",
  2299. "role": "Lead Developer"
  2300. }
  2301. ],
  2302. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  2303. "homepage": "https://config.thephpleague.com",
  2304. "keywords": [
  2305. "array",
  2306. "config",
  2307. "configuration",
  2308. "dot",
  2309. "dot-access",
  2310. "nested",
  2311. "schema"
  2312. ],
  2313. "support": {
  2314. "docs": "https://config.thephpleague.com/",
  2315. "issues": "https://github.com/thephpleague/config/issues",
  2316. "rss": "https://github.com/thephpleague/config/releases.atom",
  2317. "source": "https://github.com/thephpleague/config"
  2318. },
  2319. "funding": [
  2320. {
  2321. "url": "https://www.colinodell.com/sponsor",
  2322. "type": "custom"
  2323. },
  2324. {
  2325. "url": "https://www.paypal.me/colinpodell/10.00",
  2326. "type": "custom"
  2327. },
  2328. {
  2329. "url": "https://github.com/colinodell",
  2330. "type": "github"
  2331. }
  2332. ],
  2333. "time": "2022-12-11T20:36:23+00:00"
  2334. },
  2335. {
  2336. "name": "league/flysystem",
  2337. "version": "1.1.10",
  2338. "source": {
  2339. "type": "git",
  2340. "url": "https://github.com/thephpleague/flysystem.git",
  2341. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1"
  2342. },
  2343. "dist": {
  2344. "type": "zip",
  2345. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/3239285c825c152bcc315fe0e87d6b55f5972ed1",
  2346. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1",
  2347. "shasum": "",
  2348. "mirrors": [
  2349. {
  2350. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2351. "preferred": true
  2352. }
  2353. ]
  2354. },
  2355. "require": {
  2356. "ext-fileinfo": "*",
  2357. "league/mime-type-detection": "^1.3",
  2358. "php": "^7.2.5 || ^8.0"
  2359. },
  2360. "conflict": {
  2361. "league/flysystem-sftp": "<1.0.6"
  2362. },
  2363. "require-dev": {
  2364. "phpspec/prophecy": "^1.11.1",
  2365. "phpunit/phpunit": "^8.5.8"
  2366. },
  2367. "suggest": {
  2368. "ext-ftp": "Allows you to use FTP server storage",
  2369. "ext-openssl": "Allows you to use FTPS server storage",
  2370. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2371. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2372. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2373. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2374. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2375. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2376. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2377. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2378. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2379. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2380. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2381. },
  2382. "type": "library",
  2383. "extra": {
  2384. "branch-alias": {
  2385. "dev-master": "1.1-dev"
  2386. }
  2387. },
  2388. "autoload": {
  2389. "psr-4": {
  2390. "League\\Flysystem\\": "src/"
  2391. }
  2392. },
  2393. "notification-url": "https://packagist.org/downloads/",
  2394. "license": [
  2395. "MIT"
  2396. ],
  2397. "authors": [
  2398. {
  2399. "name": "Frank de Jonge",
  2400. "email": "info@frenky.net"
  2401. }
  2402. ],
  2403. "description": "Filesystem abstraction: Many filesystems, one API.",
  2404. "keywords": [
  2405. "Cloud Files",
  2406. "WebDAV",
  2407. "abstraction",
  2408. "aws",
  2409. "cloud",
  2410. "copy.com",
  2411. "dropbox",
  2412. "file systems",
  2413. "files",
  2414. "filesystem",
  2415. "filesystems",
  2416. "ftp",
  2417. "rackspace",
  2418. "remote",
  2419. "s3",
  2420. "sftp",
  2421. "storage"
  2422. ],
  2423. "support": {
  2424. "issues": "https://github.com/thephpleague/flysystem/issues",
  2425. "source": "https://github.com/thephpleague/flysystem/tree/1.1.10"
  2426. },
  2427. "funding": [
  2428. {
  2429. "url": "https://offset.earth/frankdejonge",
  2430. "type": "other"
  2431. }
  2432. ],
  2433. "time": "2022-10-04T09:16:37+00:00"
  2434. },
  2435. {
  2436. "name": "league/mime-type-detection",
  2437. "version": "1.15.0",
  2438. "source": {
  2439. "type": "git",
  2440. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2441. "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301"
  2442. },
  2443. "dist": {
  2444. "type": "zip",
  2445. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301",
  2446. "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301",
  2447. "shasum": "",
  2448. "mirrors": [
  2449. {
  2450. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2451. "preferred": true
  2452. }
  2453. ]
  2454. },
  2455. "require": {
  2456. "ext-fileinfo": "*",
  2457. "php": "^7.4 || ^8.0"
  2458. },
  2459. "require-dev": {
  2460. "friendsofphp/php-cs-fixer": "^3.2",
  2461. "phpstan/phpstan": "^0.12.68",
  2462. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  2463. },
  2464. "type": "library",
  2465. "autoload": {
  2466. "psr-4": {
  2467. "League\\MimeTypeDetection\\": "src"
  2468. }
  2469. },
  2470. "notification-url": "https://packagist.org/downloads/",
  2471. "license": [
  2472. "MIT"
  2473. ],
  2474. "authors": [
  2475. {
  2476. "name": "Frank de Jonge",
  2477. "email": "info@frankdejonge.nl"
  2478. }
  2479. ],
  2480. "description": "Mime-type detection for Flysystem",
  2481. "support": {
  2482. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2483. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.15.0"
  2484. },
  2485. "funding": [
  2486. {
  2487. "url": "https://github.com/frankdejonge",
  2488. "type": "github"
  2489. },
  2490. {
  2491. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2492. "type": "tidelift"
  2493. }
  2494. ],
  2495. "time": "2024-01-28T23:22:08+00:00"
  2496. },
  2497. {
  2498. "name": "league/oauth1-client",
  2499. "version": "v1.10.1",
  2500. "source": {
  2501. "type": "git",
  2502. "url": "https://github.com/thephpleague/oauth1-client.git",
  2503. "reference": "d6365b901b5c287dd41f143033315e2f777e1167"
  2504. },
  2505. "dist": {
  2506. "type": "zip",
  2507. "url": "https://api.github.com/repos/thephpleague/oauth1-client/zipball/d6365b901b5c287dd41f143033315e2f777e1167",
  2508. "reference": "d6365b901b5c287dd41f143033315e2f777e1167",
  2509. "shasum": "",
  2510. "mirrors": [
  2511. {
  2512. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2513. "preferred": true
  2514. }
  2515. ]
  2516. },
  2517. "require": {
  2518. "ext-json": "*",
  2519. "ext-openssl": "*",
  2520. "guzzlehttp/guzzle": "^6.0|^7.0",
  2521. "guzzlehttp/psr7": "^1.7|^2.0",
  2522. "php": ">=7.1||>=8.0"
  2523. },
  2524. "require-dev": {
  2525. "ext-simplexml": "*",
  2526. "friendsofphp/php-cs-fixer": "^2.17",
  2527. "mockery/mockery": "^1.3.3",
  2528. "phpstan/phpstan": "^0.12.42",
  2529. "phpunit/phpunit": "^7.5||9.5"
  2530. },
  2531. "suggest": {
  2532. "ext-simplexml": "For decoding XML-based responses."
  2533. },
  2534. "type": "library",
  2535. "extra": {
  2536. "branch-alias": {
  2537. "dev-master": "1.0-dev",
  2538. "dev-develop": "2.0-dev"
  2539. }
  2540. },
  2541. "autoload": {
  2542. "psr-4": {
  2543. "League\\OAuth1\\Client\\": "src/"
  2544. }
  2545. },
  2546. "notification-url": "https://packagist.org/downloads/",
  2547. "license": [
  2548. "MIT"
  2549. ],
  2550. "authors": [
  2551. {
  2552. "name": "Ben Corlett",
  2553. "email": "bencorlett@me.com",
  2554. "homepage": "http://www.webcomm.com.au",
  2555. "role": "Developer"
  2556. }
  2557. ],
  2558. "description": "OAuth 1.0 Client Library",
  2559. "keywords": [
  2560. "Authentication",
  2561. "SSO",
  2562. "authorization",
  2563. "bitbucket",
  2564. "identity",
  2565. "idp",
  2566. "oauth",
  2567. "oauth1",
  2568. "single sign on",
  2569. "trello",
  2570. "tumblr",
  2571. "twitter"
  2572. ],
  2573. "support": {
  2574. "issues": "https://github.com/thephpleague/oauth1-client/issues",
  2575. "source": "https://github.com/thephpleague/oauth1-client/tree/v1.10.1"
  2576. },
  2577. "time": "2022-04-15T14:02:14+00:00"
  2578. },
  2579. {
  2580. "name": "maatwebsite/excel",
  2581. "version": "3.1.59",
  2582. "source": {
  2583. "type": "git",
  2584. "url": "https://github.com/SpartnerNL/Laravel-Excel.git",
  2585. "reference": "b4d8b877e31998811700283d91292ab2b9a4970d"
  2586. },
  2587. "dist": {
  2588. "type": "zip",
  2589. "url": "https://api.github.com/repos/SpartnerNL/Laravel-Excel/zipball/b4d8b877e31998811700283d91292ab2b9a4970d",
  2590. "reference": "b4d8b877e31998811700283d91292ab2b9a4970d",
  2591. "shasum": "",
  2592. "mirrors": [
  2593. {
  2594. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2595. "preferred": true
  2596. }
  2597. ]
  2598. },
  2599. "require": {
  2600. "composer/semver": "^3.3",
  2601. "ext-json": "*",
  2602. "illuminate/support": "5.8.*||^6.0||^7.0||^8.0||^9.0||^10.0||^11.0",
  2603. "php": "^7.0||^8.0",
  2604. "phpoffice/phpspreadsheet": "^1.29.2",
  2605. "psr/simple-cache": "^1.0||^2.0||^3.0"
  2606. },
  2607. "require-dev": {
  2608. "laravel/scout": "^7.0||^8.0||^9.0||^10.0",
  2609. "orchestra/testbench": "^6.0||^7.0||^8.0||^9.0",
  2610. "predis/predis": "^1.1"
  2611. },
  2612. "type": "library",
  2613. "extra": {
  2614. "laravel": {
  2615. "providers": [
  2616. "Maatwebsite\\Excel\\ExcelServiceProvider"
  2617. ],
  2618. "aliases": {
  2619. "Excel": "Maatwebsite\\Excel\\Facades\\Excel"
  2620. }
  2621. }
  2622. },
  2623. "autoload": {
  2624. "psr-4": {
  2625. "Maatwebsite\\Excel\\": "src/"
  2626. }
  2627. },
  2628. "notification-url": "https://packagist.org/downloads/",
  2629. "license": [
  2630. "MIT"
  2631. ],
  2632. "authors": [
  2633. {
  2634. "name": "Patrick Brouwers",
  2635. "email": "patrick@spartner.nl"
  2636. }
  2637. ],
  2638. "description": "Supercharged Excel exports and imports in Laravel",
  2639. "keywords": [
  2640. "PHPExcel",
  2641. "batch",
  2642. "csv",
  2643. "excel",
  2644. "export",
  2645. "import",
  2646. "laravel",
  2647. "php",
  2648. "phpspreadsheet"
  2649. ],
  2650. "support": {
  2651. "issues": "https://github.com/SpartnerNL/Laravel-Excel/issues",
  2652. "source": "https://github.com/SpartnerNL/Laravel-Excel/tree/3.1.59"
  2653. },
  2654. "funding": [
  2655. {
  2656. "url": "https://laravel-excel.com/commercial-support",
  2657. "type": "custom"
  2658. },
  2659. {
  2660. "url": "https://github.com/patrickbrouwers",
  2661. "type": "github"
  2662. }
  2663. ],
  2664. "time": "2024-10-25T15:40:14+00:00"
  2665. },
  2666. {
  2667. "name": "maennchen/zipstream-php",
  2668. "version": "2.4.0",
  2669. "source": {
  2670. "type": "git",
  2671. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  2672. "reference": "3fa72e4c71a43f9e9118752a5c90e476a8dc9eb3"
  2673. },
  2674. "dist": {
  2675. "type": "zip",
  2676. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/3fa72e4c71a43f9e9118752a5c90e476a8dc9eb3",
  2677. "reference": "3fa72e4c71a43f9e9118752a5c90e476a8dc9eb3",
  2678. "shasum": "",
  2679. "mirrors": [
  2680. {
  2681. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2682. "preferred": true
  2683. }
  2684. ]
  2685. },
  2686. "require": {
  2687. "ext-mbstring": "*",
  2688. "myclabs/php-enum": "^1.5",
  2689. "php": "^8.0",
  2690. "psr/http-message": "^1.0"
  2691. },
  2692. "require-dev": {
  2693. "ext-zip": "*",
  2694. "friendsofphp/php-cs-fixer": "^3.9",
  2695. "guzzlehttp/guzzle": "^6.5.3 || ^7.2.0",
  2696. "mikey179/vfsstream": "^1.6",
  2697. "php-coveralls/php-coveralls": "^2.4",
  2698. "phpunit/phpunit": "^8.5.8 || ^9.4.2",
  2699. "vimeo/psalm": "^5.0"
  2700. },
  2701. "type": "library",
  2702. "autoload": {
  2703. "psr-4": {
  2704. "ZipStream\\": "src/"
  2705. }
  2706. },
  2707. "notification-url": "https://packagist.org/downloads/",
  2708. "license": [
  2709. "MIT"
  2710. ],
  2711. "authors": [
  2712. {
  2713. "name": "Paul Duncan",
  2714. "email": "pabs@pablotron.org"
  2715. },
  2716. {
  2717. "name": "Jonatan Männchen",
  2718. "email": "jonatan@maennchen.ch"
  2719. },
  2720. {
  2721. "name": "Jesse Donat",
  2722. "email": "donatj@gmail.com"
  2723. },
  2724. {
  2725. "name": "András Kolesár",
  2726. "email": "kolesar@kolesar.hu"
  2727. }
  2728. ],
  2729. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  2730. "keywords": [
  2731. "stream",
  2732. "zip"
  2733. ],
  2734. "support": {
  2735. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  2736. "source": "https://github.com/maennchen/ZipStream-PHP/tree/2.4.0"
  2737. },
  2738. "funding": [
  2739. {
  2740. "url": "https://github.com/maennchen",
  2741. "type": "github"
  2742. },
  2743. {
  2744. "url": "https://opencollective.com/zipstream",
  2745. "type": "open_collective"
  2746. }
  2747. ],
  2748. "time": "2022-12-08T12:29:14+00:00"
  2749. },
  2750. {
  2751. "name": "markbaker/complex",
  2752. "version": "3.0.2",
  2753. "source": {
  2754. "type": "git",
  2755. "url": "https://github.com/MarkBaker/PHPComplex.git",
  2756. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9"
  2757. },
  2758. "dist": {
  2759. "type": "zip",
  2760. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  2761. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  2762. "shasum": "",
  2763. "mirrors": [
  2764. {
  2765. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2766. "preferred": true
  2767. }
  2768. ]
  2769. },
  2770. "require": {
  2771. "php": "^7.2 || ^8.0"
  2772. },
  2773. "require-dev": {
  2774. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  2775. "phpcompatibility/php-compatibility": "^9.3",
  2776. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  2777. "squizlabs/php_codesniffer": "^3.7"
  2778. },
  2779. "type": "library",
  2780. "autoload": {
  2781. "psr-4": {
  2782. "Complex\\": "classes/src/"
  2783. }
  2784. },
  2785. "notification-url": "https://packagist.org/downloads/",
  2786. "license": [
  2787. "MIT"
  2788. ],
  2789. "authors": [
  2790. {
  2791. "name": "Mark Baker",
  2792. "email": "mark@lange.demon.co.uk"
  2793. }
  2794. ],
  2795. "description": "PHP Class for working with complex numbers",
  2796. "homepage": "https://github.com/MarkBaker/PHPComplex",
  2797. "keywords": [
  2798. "complex",
  2799. "mathematics"
  2800. ],
  2801. "support": {
  2802. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  2803. "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.2"
  2804. },
  2805. "time": "2022-12-06T16:21:08+00:00"
  2806. },
  2807. {
  2808. "name": "markbaker/matrix",
  2809. "version": "3.0.1",
  2810. "source": {
  2811. "type": "git",
  2812. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  2813. "reference": "728434227fe21be27ff6d86621a1b13107a2562c"
  2814. },
  2815. "dist": {
  2816. "type": "zip",
  2817. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/728434227fe21be27ff6d86621a1b13107a2562c",
  2818. "reference": "728434227fe21be27ff6d86621a1b13107a2562c",
  2819. "shasum": "",
  2820. "mirrors": [
  2821. {
  2822. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2823. "preferred": true
  2824. }
  2825. ]
  2826. },
  2827. "require": {
  2828. "php": "^7.1 || ^8.0"
  2829. },
  2830. "require-dev": {
  2831. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  2832. "phpcompatibility/php-compatibility": "^9.3",
  2833. "phpdocumentor/phpdocumentor": "2.*",
  2834. "phploc/phploc": "^4.0",
  2835. "phpmd/phpmd": "2.*",
  2836. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  2837. "sebastian/phpcpd": "^4.0",
  2838. "squizlabs/php_codesniffer": "^3.7"
  2839. },
  2840. "type": "library",
  2841. "autoload": {
  2842. "psr-4": {
  2843. "Matrix\\": "classes/src/"
  2844. }
  2845. },
  2846. "notification-url": "https://packagist.org/downloads/",
  2847. "license": [
  2848. "MIT"
  2849. ],
  2850. "authors": [
  2851. {
  2852. "name": "Mark Baker",
  2853. "email": "mark@demon-angel.eu"
  2854. }
  2855. ],
  2856. "description": "PHP Class for working with matrices",
  2857. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  2858. "keywords": [
  2859. "mathematics",
  2860. "matrix",
  2861. "vector"
  2862. ],
  2863. "support": {
  2864. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  2865. "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.1"
  2866. },
  2867. "time": "2022-12-02T22:17:43+00:00"
  2868. },
  2869. {
  2870. "name": "monolog/monolog",
  2871. "version": "2.10.0",
  2872. "source": {
  2873. "type": "git",
  2874. "url": "https://github.com/Seldaek/monolog.git",
  2875. "reference": "5cf826f2991858b54d5c3809bee745560a1042a7"
  2876. },
  2877. "dist": {
  2878. "type": "zip",
  2879. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/5cf826f2991858b54d5c3809bee745560a1042a7",
  2880. "reference": "5cf826f2991858b54d5c3809bee745560a1042a7",
  2881. "shasum": "",
  2882. "mirrors": [
  2883. {
  2884. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2885. "preferred": true
  2886. }
  2887. ]
  2888. },
  2889. "require": {
  2890. "php": ">=7.2",
  2891. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  2892. },
  2893. "provide": {
  2894. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  2895. },
  2896. "require-dev": {
  2897. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2898. "doctrine/couchdb": "~1.0@dev",
  2899. "elasticsearch/elasticsearch": "^7 || ^8",
  2900. "ext-json": "*",
  2901. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  2902. "guzzlehttp/guzzle": "^7.4",
  2903. "guzzlehttp/psr7": "^2.2",
  2904. "mongodb/mongodb": "^1.8",
  2905. "php-amqplib/php-amqplib": "~2.4 || ^3",
  2906. "phpspec/prophecy": "^1.15",
  2907. "phpstan/phpstan": "^1.10",
  2908. "phpunit/phpunit": "^8.5.38 || ^9.6.19",
  2909. "predis/predis": "^1.1 || ^2.0",
  2910. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  2911. "ruflin/elastica": "^7",
  2912. "swiftmailer/swiftmailer": "^5.3|^6.0",
  2913. "symfony/mailer": "^5.4 || ^6",
  2914. "symfony/mime": "^5.4 || ^6"
  2915. },
  2916. "suggest": {
  2917. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2918. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2919. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2920. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2921. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  2922. "ext-mbstring": "Allow to work properly with unicode symbols",
  2923. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2924. "ext-openssl": "Required to send log messages using SSL",
  2925. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  2926. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2927. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2928. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2929. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2930. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2931. },
  2932. "type": "library",
  2933. "extra": {
  2934. "branch-alias": {
  2935. "dev-main": "2.x-dev"
  2936. }
  2937. },
  2938. "autoload": {
  2939. "psr-4": {
  2940. "Monolog\\": "src/Monolog"
  2941. }
  2942. },
  2943. "notification-url": "https://packagist.org/downloads/",
  2944. "license": [
  2945. "MIT"
  2946. ],
  2947. "authors": [
  2948. {
  2949. "name": "Jordi Boggiano",
  2950. "email": "j.boggiano@seld.be",
  2951. "homepage": "https://seld.be"
  2952. }
  2953. ],
  2954. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2955. "homepage": "https://github.com/Seldaek/monolog",
  2956. "keywords": [
  2957. "log",
  2958. "logging",
  2959. "psr-3"
  2960. ],
  2961. "support": {
  2962. "issues": "https://github.com/Seldaek/monolog/issues",
  2963. "source": "https://github.com/Seldaek/monolog/tree/2.10.0"
  2964. },
  2965. "funding": [
  2966. {
  2967. "url": "https://github.com/Seldaek",
  2968. "type": "github"
  2969. },
  2970. {
  2971. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2972. "type": "tidelift"
  2973. }
  2974. ],
  2975. "time": "2024-11-12T12:43:37+00:00"
  2976. },
  2977. {
  2978. "name": "myclabs/php-enum",
  2979. "version": "1.8.4",
  2980. "source": {
  2981. "type": "git",
  2982. "url": "https://github.com/myclabs/php-enum.git",
  2983. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483"
  2984. },
  2985. "dist": {
  2986. "type": "zip",
  2987. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/a867478eae49c9f59ece437ae7f9506bfaa27483",
  2988. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483",
  2989. "shasum": "",
  2990. "mirrors": [
  2991. {
  2992. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2993. "preferred": true
  2994. }
  2995. ]
  2996. },
  2997. "require": {
  2998. "ext-json": "*",
  2999. "php": "^7.3 || ^8.0"
  3000. },
  3001. "require-dev": {
  3002. "phpunit/phpunit": "^9.5",
  3003. "squizlabs/php_codesniffer": "1.*",
  3004. "vimeo/psalm": "^4.6.2"
  3005. },
  3006. "type": "library",
  3007. "autoload": {
  3008. "psr-4": {
  3009. "MyCLabs\\Enum\\": "src/"
  3010. },
  3011. "classmap": [
  3012. "stubs/Stringable.php"
  3013. ]
  3014. },
  3015. "notification-url": "https://packagist.org/downloads/",
  3016. "license": [
  3017. "MIT"
  3018. ],
  3019. "authors": [
  3020. {
  3021. "name": "PHP Enum contributors",
  3022. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  3023. }
  3024. ],
  3025. "description": "PHP Enum implementation",
  3026. "homepage": "http://github.com/myclabs/php-enum",
  3027. "keywords": [
  3028. "enum"
  3029. ],
  3030. "support": {
  3031. "issues": "https://github.com/myclabs/php-enum/issues",
  3032. "source": "https://github.com/myclabs/php-enum/tree/1.8.4"
  3033. },
  3034. "funding": [
  3035. {
  3036. "url": "https://github.com/mnapoli",
  3037. "type": "github"
  3038. },
  3039. {
  3040. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  3041. "type": "tidelift"
  3042. }
  3043. ],
  3044. "time": "2022-08-04T09:53:51+00:00"
  3045. },
  3046. {
  3047. "name": "nesbot/carbon",
  3048. "version": "2.73.0",
  3049. "source": {
  3050. "type": "git",
  3051. "url": "https://github.com/CarbonPHP/carbon.git",
  3052. "reference": "9228ce90e1035ff2f0db84b40ec2e023ed802075"
  3053. },
  3054. "dist": {
  3055. "type": "zip",
  3056. "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/9228ce90e1035ff2f0db84b40ec2e023ed802075",
  3057. "reference": "9228ce90e1035ff2f0db84b40ec2e023ed802075",
  3058. "shasum": "",
  3059. "mirrors": [
  3060. {
  3061. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3062. "preferred": true
  3063. }
  3064. ]
  3065. },
  3066. "require": {
  3067. "carbonphp/carbon-doctrine-types": "*",
  3068. "ext-json": "*",
  3069. "php": "^7.1.8 || ^8.0",
  3070. "psr/clock": "^1.0",
  3071. "symfony/polyfill-mbstring": "^1.0",
  3072. "symfony/polyfill-php80": "^1.16",
  3073. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  3074. },
  3075. "provide": {
  3076. "psr/clock-implementation": "1.0"
  3077. },
  3078. "require-dev": {
  3079. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  3080. "doctrine/orm": "^2.7 || ^3.0",
  3081. "friendsofphp/php-cs-fixer": "^3.0",
  3082. "kylekatarnls/multi-tester": "^2.0",
  3083. "ondrejmirtes/better-reflection": "<6",
  3084. "phpmd/phpmd": "^2.9",
  3085. "phpstan/extension-installer": "^1.0",
  3086. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  3087. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  3088. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  3089. "squizlabs/php_codesniffer": "^3.4"
  3090. },
  3091. "bin": [
  3092. "bin/carbon"
  3093. ],
  3094. "type": "library",
  3095. "extra": {
  3096. "laravel": {
  3097. "providers": [
  3098. "Carbon\\Laravel\\ServiceProvider"
  3099. ]
  3100. },
  3101. "phpstan": {
  3102. "includes": [
  3103. "extension.neon"
  3104. ]
  3105. },
  3106. "branch-alias": {
  3107. "dev-2.x": "2.x-dev",
  3108. "dev-master": "3.x-dev"
  3109. }
  3110. },
  3111. "autoload": {
  3112. "psr-4": {
  3113. "Carbon\\": "src/Carbon/"
  3114. }
  3115. },
  3116. "notification-url": "https://packagist.org/downloads/",
  3117. "license": [
  3118. "MIT"
  3119. ],
  3120. "authors": [
  3121. {
  3122. "name": "Brian Nesbitt",
  3123. "email": "brian@nesbot.com",
  3124. "homepage": "https://markido.com"
  3125. },
  3126. {
  3127. "name": "kylekatarnls",
  3128. "homepage": "https://github.com/kylekatarnls"
  3129. }
  3130. ],
  3131. "description": "An API extension for DateTime that supports 281 different languages.",
  3132. "homepage": "https://carbon.nesbot.com",
  3133. "keywords": [
  3134. "date",
  3135. "datetime",
  3136. "time"
  3137. ],
  3138. "support": {
  3139. "docs": "https://carbon.nesbot.com/docs",
  3140. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3141. "source": "https://github.com/briannesbitt/Carbon"
  3142. },
  3143. "funding": [
  3144. {
  3145. "url": "https://github.com/sponsors/kylekatarnls",
  3146. "type": "github"
  3147. },
  3148. {
  3149. "url": "https://opencollective.com/Carbon#sponsor",
  3150. "type": "opencollective"
  3151. },
  3152. {
  3153. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  3154. "type": "tidelift"
  3155. }
  3156. ],
  3157. "time": "2025-01-08T20:10:23+00:00"
  3158. },
  3159. {
  3160. "name": "nette/schema",
  3161. "version": "v1.2.5",
  3162. "source": {
  3163. "type": "git",
  3164. "url": "https://github.com/nette/schema.git",
  3165. "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a"
  3166. },
  3167. "dist": {
  3168. "type": "zip",
  3169. "url": "https://api.github.com/repos/nette/schema/zipball/0462f0166e823aad657c9224d0f849ecac1ba10a",
  3170. "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a",
  3171. "shasum": "",
  3172. "mirrors": [
  3173. {
  3174. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3175. "preferred": true
  3176. }
  3177. ]
  3178. },
  3179. "require": {
  3180. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  3181. "php": "7.1 - 8.3"
  3182. },
  3183. "require-dev": {
  3184. "nette/tester": "^2.3 || ^2.4",
  3185. "phpstan/phpstan-nette": "^1.0",
  3186. "tracy/tracy": "^2.7"
  3187. },
  3188. "type": "library",
  3189. "extra": {
  3190. "branch-alias": {
  3191. "dev-master": "1.2-dev"
  3192. }
  3193. },
  3194. "autoload": {
  3195. "classmap": [
  3196. "src/"
  3197. ]
  3198. },
  3199. "notification-url": "https://packagist.org/downloads/",
  3200. "license": [
  3201. "BSD-3-Clause",
  3202. "GPL-2.0-only",
  3203. "GPL-3.0-only"
  3204. ],
  3205. "authors": [
  3206. {
  3207. "name": "David Grudl",
  3208. "homepage": "https://davidgrudl.com"
  3209. },
  3210. {
  3211. "name": "Nette Community",
  3212. "homepage": "https://nette.org/contributors"
  3213. }
  3214. ],
  3215. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  3216. "homepage": "https://nette.org",
  3217. "keywords": [
  3218. "config",
  3219. "nette"
  3220. ],
  3221. "support": {
  3222. "issues": "https://github.com/nette/schema/issues",
  3223. "source": "https://github.com/nette/schema/tree/v1.2.5"
  3224. },
  3225. "time": "2023-10-05T20:37:59+00:00"
  3226. },
  3227. {
  3228. "name": "nette/utils",
  3229. "version": "v4.0.4",
  3230. "source": {
  3231. "type": "git",
  3232. "url": "https://github.com/nette/utils.git",
  3233. "reference": "d3ad0aa3b9f934602cb3e3902ebccf10be34d218"
  3234. },
  3235. "dist": {
  3236. "type": "zip",
  3237. "url": "https://api.github.com/repos/nette/utils/zipball/d3ad0aa3b9f934602cb3e3902ebccf10be34d218",
  3238. "reference": "d3ad0aa3b9f934602cb3e3902ebccf10be34d218",
  3239. "shasum": "",
  3240. "mirrors": [
  3241. {
  3242. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3243. "preferred": true
  3244. }
  3245. ]
  3246. },
  3247. "require": {
  3248. "php": ">=8.0 <8.4"
  3249. },
  3250. "conflict": {
  3251. "nette/finder": "<3",
  3252. "nette/schema": "<1.2.2"
  3253. },
  3254. "require-dev": {
  3255. "jetbrains/phpstorm-attributes": "dev-master",
  3256. "nette/tester": "^2.5",
  3257. "phpstan/phpstan": "^1.0",
  3258. "tracy/tracy": "^2.9"
  3259. },
  3260. "suggest": {
  3261. "ext-gd": "to use Image",
  3262. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  3263. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  3264. "ext-json": "to use Nette\\Utils\\Json",
  3265. "ext-mbstring": "to use Strings::lower() etc...",
  3266. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  3267. },
  3268. "type": "library",
  3269. "extra": {
  3270. "branch-alias": {
  3271. "dev-master": "4.0-dev"
  3272. }
  3273. },
  3274. "autoload": {
  3275. "classmap": [
  3276. "src/"
  3277. ]
  3278. },
  3279. "notification-url": "https://packagist.org/downloads/",
  3280. "license": [
  3281. "BSD-3-Clause",
  3282. "GPL-2.0-only",
  3283. "GPL-3.0-only"
  3284. ],
  3285. "authors": [
  3286. {
  3287. "name": "David Grudl",
  3288. "homepage": "https://davidgrudl.com"
  3289. },
  3290. {
  3291. "name": "Nette Community",
  3292. "homepage": "https://nette.org/contributors"
  3293. }
  3294. ],
  3295. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  3296. "homepage": "https://nette.org",
  3297. "keywords": [
  3298. "array",
  3299. "core",
  3300. "datetime",
  3301. "images",
  3302. "json",
  3303. "nette",
  3304. "paginator",
  3305. "password",
  3306. "slugify",
  3307. "string",
  3308. "unicode",
  3309. "utf-8",
  3310. "utility",
  3311. "validation"
  3312. ],
  3313. "support": {
  3314. "issues": "https://github.com/nette/utils/issues",
  3315. "source": "https://github.com/nette/utils/tree/v4.0.4"
  3316. },
  3317. "time": "2024-01-17T16:50:36+00:00"
  3318. },
  3319. {
  3320. "name": "nikic/php-parser",
  3321. "version": "v5.3.1",
  3322. "source": {
  3323. "type": "git",
  3324. "url": "https://github.com/nikic/PHP-Parser.git",
  3325. "reference": "8eea230464783aa9671db8eea6f8c6ac5285794b"
  3326. },
  3327. "dist": {
  3328. "type": "zip",
  3329. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/8eea230464783aa9671db8eea6f8c6ac5285794b",
  3330. "reference": "8eea230464783aa9671db8eea6f8c6ac5285794b",
  3331. "shasum": "",
  3332. "mirrors": [
  3333. {
  3334. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3335. "preferred": true
  3336. }
  3337. ]
  3338. },
  3339. "require": {
  3340. "ext-ctype": "*",
  3341. "ext-json": "*",
  3342. "ext-tokenizer": "*",
  3343. "php": ">=7.4"
  3344. },
  3345. "require-dev": {
  3346. "ircmaxell/php-yacc": "^0.0.7",
  3347. "phpunit/phpunit": "^9.0"
  3348. },
  3349. "bin": [
  3350. "bin/php-parse"
  3351. ],
  3352. "type": "library",
  3353. "extra": {
  3354. "branch-alias": {
  3355. "dev-master": "5.0-dev"
  3356. }
  3357. },
  3358. "autoload": {
  3359. "psr-4": {
  3360. "PhpParser\\": "lib/PhpParser"
  3361. }
  3362. },
  3363. "notification-url": "https://packagist.org/downloads/",
  3364. "license": [
  3365. "BSD-3-Clause"
  3366. ],
  3367. "authors": [
  3368. {
  3369. "name": "Nikita Popov"
  3370. }
  3371. ],
  3372. "description": "A PHP parser written in PHP",
  3373. "keywords": [
  3374. "parser",
  3375. "php"
  3376. ],
  3377. "support": {
  3378. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3379. "source": "https://github.com/nikic/PHP-Parser/tree/v5.3.1"
  3380. },
  3381. "time": "2024-10-08T18:51:32+00:00"
  3382. },
  3383. {
  3384. "name": "opis/closure",
  3385. "version": "3.6.3",
  3386. "source": {
  3387. "type": "git",
  3388. "url": "https://github.com/opis/closure.git",
  3389. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad"
  3390. },
  3391. "dist": {
  3392. "type": "zip",
  3393. "url": "https://api.github.com/repos/opis/closure/zipball/3d81e4309d2a927abbe66df935f4bb60082805ad",
  3394. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad",
  3395. "shasum": "",
  3396. "mirrors": [
  3397. {
  3398. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3399. "preferred": true
  3400. }
  3401. ]
  3402. },
  3403. "require": {
  3404. "php": "^5.4 || ^7.0 || ^8.0"
  3405. },
  3406. "require-dev": {
  3407. "jeremeamia/superclosure": "^2.0",
  3408. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  3409. },
  3410. "type": "library",
  3411. "extra": {
  3412. "branch-alias": {
  3413. "dev-master": "3.6.x-dev"
  3414. }
  3415. },
  3416. "autoload": {
  3417. "files": [
  3418. "functions.php"
  3419. ],
  3420. "psr-4": {
  3421. "Opis\\Closure\\": "src/"
  3422. }
  3423. },
  3424. "notification-url": "https://packagist.org/downloads/",
  3425. "license": [
  3426. "MIT"
  3427. ],
  3428. "authors": [
  3429. {
  3430. "name": "Marius Sarca",
  3431. "email": "marius.sarca@gmail.com"
  3432. },
  3433. {
  3434. "name": "Sorin Sarca",
  3435. "email": "sarca_sorin@hotmail.com"
  3436. }
  3437. ],
  3438. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  3439. "homepage": "https://opis.io/closure",
  3440. "keywords": [
  3441. "anonymous functions",
  3442. "closure",
  3443. "function",
  3444. "serializable",
  3445. "serialization",
  3446. "serialize"
  3447. ],
  3448. "support": {
  3449. "issues": "https://github.com/opis/closure/issues",
  3450. "source": "https://github.com/opis/closure/tree/3.6.3"
  3451. },
  3452. "time": "2022-01-27T09:35:39+00:00"
  3453. },
  3454. {
  3455. "name": "paragonie/constant_time_encoding",
  3456. "version": "v3.0.0",
  3457. "source": {
  3458. "type": "git",
  3459. "url": "https://github.com/paragonie/constant_time_encoding.git",
  3460. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512"
  3461. },
  3462. "dist": {
  3463. "type": "zip",
  3464. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/df1e7fde177501eee2037dd159cf04f5f301a512",
  3465. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512",
  3466. "shasum": "",
  3467. "mirrors": [
  3468. {
  3469. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3470. "preferred": true
  3471. }
  3472. ]
  3473. },
  3474. "require": {
  3475. "php": "^8"
  3476. },
  3477. "require-dev": {
  3478. "phpunit/phpunit": "^9",
  3479. "vimeo/psalm": "^4|^5"
  3480. },
  3481. "type": "library",
  3482. "autoload": {
  3483. "psr-4": {
  3484. "ParagonIE\\ConstantTime\\": "src/"
  3485. }
  3486. },
  3487. "notification-url": "https://packagist.org/downloads/",
  3488. "license": [
  3489. "MIT"
  3490. ],
  3491. "authors": [
  3492. {
  3493. "name": "Paragon Initiative Enterprises",
  3494. "email": "security@paragonie.com",
  3495. "homepage": "https://paragonie.com",
  3496. "role": "Maintainer"
  3497. },
  3498. {
  3499. "name": "Steve 'Sc00bz' Thomas",
  3500. "email": "steve@tobtu.com",
  3501. "homepage": "https://www.tobtu.com",
  3502. "role": "Original Developer"
  3503. }
  3504. ],
  3505. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  3506. "keywords": [
  3507. "base16",
  3508. "base32",
  3509. "base32_decode",
  3510. "base32_encode",
  3511. "base64",
  3512. "base64_decode",
  3513. "base64_encode",
  3514. "bin2hex",
  3515. "encoding",
  3516. "hex",
  3517. "hex2bin",
  3518. "rfc4648"
  3519. ],
  3520. "support": {
  3521. "email": "info@paragonie.com",
  3522. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  3523. "source": "https://github.com/paragonie/constant_time_encoding"
  3524. },
  3525. "time": "2024-05-08T12:36:18+00:00"
  3526. },
  3527. {
  3528. "name": "paragonie/random_compat",
  3529. "version": "v9.99.100",
  3530. "source": {
  3531. "type": "git",
  3532. "url": "https://github.com/paragonie/random_compat.git",
  3533. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  3534. },
  3535. "dist": {
  3536. "type": "zip",
  3537. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  3538. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  3539. "shasum": "",
  3540. "mirrors": [
  3541. {
  3542. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3543. "preferred": true
  3544. }
  3545. ]
  3546. },
  3547. "require": {
  3548. "php": ">= 7"
  3549. },
  3550. "require-dev": {
  3551. "phpunit/phpunit": "4.*|5.*",
  3552. "vimeo/psalm": "^1"
  3553. },
  3554. "suggest": {
  3555. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  3556. },
  3557. "type": "library",
  3558. "notification-url": "https://packagist.org/downloads/",
  3559. "license": [
  3560. "MIT"
  3561. ],
  3562. "authors": [
  3563. {
  3564. "name": "Paragon Initiative Enterprises",
  3565. "email": "security@paragonie.com",
  3566. "homepage": "https://paragonie.com"
  3567. }
  3568. ],
  3569. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  3570. "keywords": [
  3571. "csprng",
  3572. "polyfill",
  3573. "pseudorandom",
  3574. "random"
  3575. ],
  3576. "support": {
  3577. "email": "info@paragonie.com",
  3578. "issues": "https://github.com/paragonie/random_compat/issues",
  3579. "source": "https://github.com/paragonie/random_compat"
  3580. },
  3581. "time": "2020-10-15T08:29:30+00:00"
  3582. },
  3583. {
  3584. "name": "phpoffice/math",
  3585. "version": "0.2.0",
  3586. "source": {
  3587. "type": "git",
  3588. "url": "https://github.com/PHPOffice/Math.git",
  3589. "reference": "fc2eb6d1a61b058d5dac77197059db30ee3c8329"
  3590. },
  3591. "dist": {
  3592. "type": "zip",
  3593. "url": "https://api.github.com/repos/PHPOffice/Math/zipball/fc2eb6d1a61b058d5dac77197059db30ee3c8329",
  3594. "reference": "fc2eb6d1a61b058d5dac77197059db30ee3c8329",
  3595. "shasum": "",
  3596. "mirrors": [
  3597. {
  3598. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3599. "preferred": true
  3600. }
  3601. ]
  3602. },
  3603. "require": {
  3604. "ext-dom": "*",
  3605. "ext-xml": "*",
  3606. "php": "^7.1|^8.0"
  3607. },
  3608. "require-dev": {
  3609. "phpstan/phpstan": "^0.12.88 || ^1.0.0",
  3610. "phpunit/phpunit": "^7.0 || ^9.0"
  3611. },
  3612. "type": "library",
  3613. "autoload": {
  3614. "psr-4": {
  3615. "PhpOffice\\Math\\": "src/Math/"
  3616. }
  3617. },
  3618. "notification-url": "https://packagist.org/downloads/",
  3619. "license": [
  3620. "MIT"
  3621. ],
  3622. "authors": [
  3623. {
  3624. "name": "Progi1984",
  3625. "homepage": "https://lefevre.dev"
  3626. }
  3627. ],
  3628. "description": "Math - Manipulate Math Formula",
  3629. "homepage": "https://phpoffice.github.io/Math/",
  3630. "keywords": [
  3631. "MathML",
  3632. "officemathml",
  3633. "php"
  3634. ],
  3635. "support": {
  3636. "issues": "https://github.com/PHPOffice/Math/issues",
  3637. "source": "https://github.com/PHPOffice/Math/tree/0.2.0"
  3638. },
  3639. "time": "2024-08-12T07:30:45+00:00"
  3640. },
  3641. {
  3642. "name": "phpoffice/phpspreadsheet",
  3643. "version": "1.30.0",
  3644. "source": {
  3645. "type": "git",
  3646. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  3647. "reference": "2f39286e0136673778b7a142b3f0d141e43d1714"
  3648. },
  3649. "dist": {
  3650. "type": "zip",
  3651. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/2f39286e0136673778b7a142b3f0d141e43d1714",
  3652. "reference": "2f39286e0136673778b7a142b3f0d141e43d1714",
  3653. "shasum": "",
  3654. "mirrors": [
  3655. {
  3656. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3657. "preferred": true
  3658. }
  3659. ]
  3660. },
  3661. "require": {
  3662. "composer/pcre": "^1||^2||^3",
  3663. "ext-ctype": "*",
  3664. "ext-dom": "*",
  3665. "ext-fileinfo": "*",
  3666. "ext-gd": "*",
  3667. "ext-iconv": "*",
  3668. "ext-libxml": "*",
  3669. "ext-mbstring": "*",
  3670. "ext-simplexml": "*",
  3671. "ext-xml": "*",
  3672. "ext-xmlreader": "*",
  3673. "ext-xmlwriter": "*",
  3674. "ext-zip": "*",
  3675. "ext-zlib": "*",
  3676. "ezyang/htmlpurifier": "^4.15",
  3677. "maennchen/zipstream-php": "^2.1 || ^3.0",
  3678. "markbaker/complex": "^3.0",
  3679. "markbaker/matrix": "^3.0",
  3680. "php": "^7.4 || ^8.0",
  3681. "psr/http-client": "^1.0",
  3682. "psr/http-factory": "^1.0",
  3683. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  3684. },
  3685. "require-dev": {
  3686. "dealerdirect/phpcodesniffer-composer-installer": "dev-main",
  3687. "dompdf/dompdf": "^1.0 || ^2.0 || ^3.0",
  3688. "friendsofphp/php-cs-fixer": "^3.2",
  3689. "mitoteam/jpgraph": "^10.3",
  3690. "mpdf/mpdf": "^8.1.1",
  3691. "phpcompatibility/php-compatibility": "^9.3",
  3692. "phpstan/phpstan": "^1.1",
  3693. "phpstan/phpstan-phpunit": "^1.0",
  3694. "phpunit/phpunit": "^8.5 || ^9.0",
  3695. "squizlabs/php_codesniffer": "^3.7",
  3696. "tecnickcom/tcpdf": "^6.5"
  3697. },
  3698. "suggest": {
  3699. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  3700. "ext-intl": "PHP Internationalization Functions",
  3701. "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  3702. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  3703. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  3704. },
  3705. "type": "library",
  3706. "autoload": {
  3707. "psr-4": {
  3708. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  3709. }
  3710. },
  3711. "notification-url": "https://packagist.org/downloads/",
  3712. "license": [
  3713. "MIT"
  3714. ],
  3715. "authors": [
  3716. {
  3717. "name": "Maarten Balliauw",
  3718. "homepage": "https://blog.maartenballiauw.be"
  3719. },
  3720. {
  3721. "name": "Mark Baker",
  3722. "homepage": "https://markbakeruk.net"
  3723. },
  3724. {
  3725. "name": "Franck Lefevre",
  3726. "homepage": "https://rootslabs.net"
  3727. },
  3728. {
  3729. "name": "Erik Tilt"
  3730. },
  3731. {
  3732. "name": "Adrien Crivelli"
  3733. }
  3734. ],
  3735. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3736. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  3737. "keywords": [
  3738. "OpenXML",
  3739. "excel",
  3740. "gnumeric",
  3741. "ods",
  3742. "php",
  3743. "spreadsheet",
  3744. "xls",
  3745. "xlsx"
  3746. ],
  3747. "support": {
  3748. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  3749. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.30.0"
  3750. },
  3751. "time": "2025-08-10T06:28:02+00:00"
  3752. },
  3753. {
  3754. "name": "phpoffice/phpword",
  3755. "version": "1.3.0",
  3756. "source": {
  3757. "type": "git",
  3758. "url": "https://github.com/PHPOffice/PHPWord.git",
  3759. "reference": "8392134ce4b5dba65130ba956231a1602b848b7f"
  3760. },
  3761. "dist": {
  3762. "type": "zip",
  3763. "url": "https://api.github.com/repos/PHPOffice/PHPWord/zipball/8392134ce4b5dba65130ba956231a1602b848b7f",
  3764. "reference": "8392134ce4b5dba65130ba956231a1602b848b7f",
  3765. "shasum": "",
  3766. "mirrors": [
  3767. {
  3768. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3769. "preferred": true
  3770. }
  3771. ]
  3772. },
  3773. "require": {
  3774. "ext-dom": "*",
  3775. "ext-json": "*",
  3776. "ext-xml": "*",
  3777. "php": "^7.1|^8.0",
  3778. "phpoffice/math": "^0.2"
  3779. },
  3780. "require-dev": {
  3781. "dompdf/dompdf": "^2.0",
  3782. "ext-gd": "*",
  3783. "ext-libxml": "*",
  3784. "ext-zip": "*",
  3785. "friendsofphp/php-cs-fixer": "^3.3",
  3786. "mpdf/mpdf": "^8.1",
  3787. "phpmd/phpmd": "^2.13",
  3788. "phpstan/phpstan-phpunit": "@stable",
  3789. "phpunit/phpunit": ">=7.0",
  3790. "symfony/process": "^4.4 || ^5.0",
  3791. "tecnickcom/tcpdf": "^6.5"
  3792. },
  3793. "suggest": {
  3794. "dompdf/dompdf": "Allows writing PDF",
  3795. "ext-gd2": "Allows adding images",
  3796. "ext-xmlwriter": "Allows writing OOXML and ODF",
  3797. "ext-xsl": "Allows applying XSL style sheet to headers, to main document part, and to footers of an OOXML template",
  3798. "ext-zip": "Allows writing OOXML and ODF"
  3799. },
  3800. "type": "library",
  3801. "autoload": {
  3802. "psr-4": {
  3803. "PhpOffice\\PhpWord\\": "src/PhpWord"
  3804. }
  3805. },
  3806. "notification-url": "https://packagist.org/downloads/",
  3807. "license": [
  3808. "LGPL-3.0"
  3809. ],
  3810. "authors": [
  3811. {
  3812. "name": "Mark Baker"
  3813. },
  3814. {
  3815. "name": "Gabriel Bull",
  3816. "email": "me@gabrielbull.com",
  3817. "homepage": "http://gabrielbull.com/"
  3818. },
  3819. {
  3820. "name": "Franck Lefevre",
  3821. "homepage": "https://rootslabs.net/blog/"
  3822. },
  3823. {
  3824. "name": "Ivan Lanin",
  3825. "homepage": "http://ivan.lanin.org"
  3826. },
  3827. {
  3828. "name": "Roman Syroeshko",
  3829. "homepage": "http://ru.linkedin.com/pub/roman-syroeshko/34/a53/994/"
  3830. },
  3831. {
  3832. "name": "Antoine de Troostembergh"
  3833. }
  3834. ],
  3835. "description": "PHPWord - A pure PHP library for reading and writing word processing documents (OOXML, ODF, RTF, HTML, PDF)",
  3836. "homepage": "https://phpoffice.github.io/PHPWord/",
  3837. "keywords": [
  3838. "ISO IEC 29500",
  3839. "OOXML",
  3840. "Office Open XML",
  3841. "OpenDocument",
  3842. "OpenXML",
  3843. "PhpOffice",
  3844. "PhpWord",
  3845. "Rich Text Format",
  3846. "WordprocessingML",
  3847. "doc",
  3848. "docx",
  3849. "html",
  3850. "odf",
  3851. "odt",
  3852. "office",
  3853. "pdf",
  3854. "php",
  3855. "reader",
  3856. "rtf",
  3857. "template",
  3858. "template processor",
  3859. "word",
  3860. "writer"
  3861. ],
  3862. "support": {
  3863. "issues": "https://github.com/PHPOffice/PHPWord/issues",
  3864. "source": "https://github.com/PHPOffice/PHPWord/tree/1.3.0"
  3865. },
  3866. "time": "2024-08-30T18:03:42+00:00"
  3867. },
  3868. {
  3869. "name": "phpoption/phpoption",
  3870. "version": "1.9.3",
  3871. "source": {
  3872. "type": "git",
  3873. "url": "https://github.com/schmittjoh/php-option.git",
  3874. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  3875. },
  3876. "dist": {
  3877. "type": "zip",
  3878. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  3879. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  3880. "shasum": "",
  3881. "mirrors": [
  3882. {
  3883. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3884. "preferred": true
  3885. }
  3886. ]
  3887. },
  3888. "require": {
  3889. "php": "^7.2.5 || ^8.0"
  3890. },
  3891. "require-dev": {
  3892. "bamarni/composer-bin-plugin": "^1.8.2",
  3893. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  3894. },
  3895. "type": "library",
  3896. "extra": {
  3897. "bamarni-bin": {
  3898. "bin-links": true,
  3899. "forward-command": false
  3900. },
  3901. "branch-alias": {
  3902. "dev-master": "1.9-dev"
  3903. }
  3904. },
  3905. "autoload": {
  3906. "psr-4": {
  3907. "PhpOption\\": "src/PhpOption/"
  3908. }
  3909. },
  3910. "notification-url": "https://packagist.org/downloads/",
  3911. "license": [
  3912. "Apache-2.0"
  3913. ],
  3914. "authors": [
  3915. {
  3916. "name": "Johannes M. Schmitt",
  3917. "email": "schmittjoh@gmail.com",
  3918. "homepage": "https://github.com/schmittjoh"
  3919. },
  3920. {
  3921. "name": "Graham Campbell",
  3922. "email": "hello@gjcampbell.co.uk",
  3923. "homepage": "https://github.com/GrahamCampbell"
  3924. }
  3925. ],
  3926. "description": "Option Type for PHP",
  3927. "keywords": [
  3928. "language",
  3929. "option",
  3930. "php",
  3931. "type"
  3932. ],
  3933. "support": {
  3934. "issues": "https://github.com/schmittjoh/php-option/issues",
  3935. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  3936. },
  3937. "funding": [
  3938. {
  3939. "url": "https://github.com/GrahamCampbell",
  3940. "type": "github"
  3941. },
  3942. {
  3943. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3944. "type": "tidelift"
  3945. }
  3946. ],
  3947. "time": "2024-07-20T21:41:07+00:00"
  3948. },
  3949. {
  3950. "name": "phpseclib/phpseclib",
  3951. "version": "3.0.43",
  3952. "source": {
  3953. "type": "git",
  3954. "url": "https://github.com/phpseclib/phpseclib.git",
  3955. "reference": "709ec107af3cb2f385b9617be72af8cf62441d02"
  3956. },
  3957. "dist": {
  3958. "type": "zip",
  3959. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/709ec107af3cb2f385b9617be72af8cf62441d02",
  3960. "reference": "709ec107af3cb2f385b9617be72af8cf62441d02",
  3961. "shasum": "",
  3962. "mirrors": [
  3963. {
  3964. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3965. "preferred": true
  3966. }
  3967. ]
  3968. },
  3969. "require": {
  3970. "paragonie/constant_time_encoding": "^1|^2|^3",
  3971. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  3972. "php": ">=5.6.1"
  3973. },
  3974. "require-dev": {
  3975. "phpunit/phpunit": "*"
  3976. },
  3977. "suggest": {
  3978. "ext-dom": "Install the DOM extension to load XML formatted public keys.",
  3979. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  3980. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  3981. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  3982. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  3983. },
  3984. "type": "library",
  3985. "autoload": {
  3986. "files": [
  3987. "phpseclib/bootstrap.php"
  3988. ],
  3989. "psr-4": {
  3990. "phpseclib3\\": "phpseclib/"
  3991. }
  3992. },
  3993. "notification-url": "https://packagist.org/downloads/",
  3994. "license": [
  3995. "MIT"
  3996. ],
  3997. "authors": [
  3998. {
  3999. "name": "Jim Wigginton",
  4000. "email": "terrafrost@php.net",
  4001. "role": "Lead Developer"
  4002. },
  4003. {
  4004. "name": "Patrick Monnerat",
  4005. "email": "pm@datasphere.ch",
  4006. "role": "Developer"
  4007. },
  4008. {
  4009. "name": "Andreas Fischer",
  4010. "email": "bantu@phpbb.com",
  4011. "role": "Developer"
  4012. },
  4013. {
  4014. "name": "Hans-Jürgen Petrich",
  4015. "email": "petrich@tronic-media.com",
  4016. "role": "Developer"
  4017. },
  4018. {
  4019. "name": "Graham Campbell",
  4020. "email": "graham@alt-three.com",
  4021. "role": "Developer"
  4022. }
  4023. ],
  4024. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  4025. "homepage": "http://phpseclib.sourceforge.net",
  4026. "keywords": [
  4027. "BigInteger",
  4028. "aes",
  4029. "asn.1",
  4030. "asn1",
  4031. "blowfish",
  4032. "crypto",
  4033. "cryptography",
  4034. "encryption",
  4035. "rsa",
  4036. "security",
  4037. "sftp",
  4038. "signature",
  4039. "signing",
  4040. "ssh",
  4041. "twofish",
  4042. "x.509",
  4043. "x509"
  4044. ],
  4045. "support": {
  4046. "issues": "https://github.com/phpseclib/phpseclib/issues",
  4047. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.43"
  4048. },
  4049. "funding": [
  4050. {
  4051. "url": "https://github.com/terrafrost",
  4052. "type": "github"
  4053. },
  4054. {
  4055. "url": "https://www.patreon.com/phpseclib",
  4056. "type": "patreon"
  4057. },
  4058. {
  4059. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  4060. "type": "tidelift"
  4061. }
  4062. ],
  4063. "time": "2024-12-14T21:12:59+00:00"
  4064. },
  4065. {
  4066. "name": "psr/clock",
  4067. "version": "1.0.0",
  4068. "source": {
  4069. "type": "git",
  4070. "url": "https://github.com/php-fig/clock.git",
  4071. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  4072. },
  4073. "dist": {
  4074. "type": "zip",
  4075. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  4076. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  4077. "shasum": "",
  4078. "mirrors": [
  4079. {
  4080. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4081. "preferred": true
  4082. }
  4083. ]
  4084. },
  4085. "require": {
  4086. "php": "^7.0 || ^8.0"
  4087. },
  4088. "type": "library",
  4089. "autoload": {
  4090. "psr-4": {
  4091. "Psr\\Clock\\": "src/"
  4092. }
  4093. },
  4094. "notification-url": "https://packagist.org/downloads/",
  4095. "license": [
  4096. "MIT"
  4097. ],
  4098. "authors": [
  4099. {
  4100. "name": "PHP-FIG",
  4101. "homepage": "https://www.php-fig.org/"
  4102. }
  4103. ],
  4104. "description": "Common interface for reading the clock.",
  4105. "homepage": "https://github.com/php-fig/clock",
  4106. "keywords": [
  4107. "clock",
  4108. "now",
  4109. "psr",
  4110. "psr-20",
  4111. "time"
  4112. ],
  4113. "support": {
  4114. "issues": "https://github.com/php-fig/clock/issues",
  4115. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  4116. },
  4117. "time": "2022-11-25T14:36:26+00:00"
  4118. },
  4119. {
  4120. "name": "psr/container",
  4121. "version": "1.1.2",
  4122. "source": {
  4123. "type": "git",
  4124. "url": "https://github.com/php-fig/container.git",
  4125. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  4126. },
  4127. "dist": {
  4128. "type": "zip",
  4129. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  4130. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  4131. "shasum": "",
  4132. "mirrors": [
  4133. {
  4134. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4135. "preferred": true
  4136. }
  4137. ]
  4138. },
  4139. "require": {
  4140. "php": ">=7.4.0"
  4141. },
  4142. "type": "library",
  4143. "autoload": {
  4144. "psr-4": {
  4145. "Psr\\Container\\": "src/"
  4146. }
  4147. },
  4148. "notification-url": "https://packagist.org/downloads/",
  4149. "license": [
  4150. "MIT"
  4151. ],
  4152. "authors": [
  4153. {
  4154. "name": "PHP-FIG",
  4155. "homepage": "https://www.php-fig.org/"
  4156. }
  4157. ],
  4158. "description": "Common Container Interface (PHP FIG PSR-11)",
  4159. "homepage": "https://github.com/php-fig/container",
  4160. "keywords": [
  4161. "PSR-11",
  4162. "container",
  4163. "container-interface",
  4164. "container-interop",
  4165. "psr"
  4166. ],
  4167. "support": {
  4168. "issues": "https://github.com/php-fig/container/issues",
  4169. "source": "https://github.com/php-fig/container/tree/1.1.2"
  4170. },
  4171. "time": "2021-11-05T16:50:12+00:00"
  4172. },
  4173. {
  4174. "name": "psr/event-dispatcher",
  4175. "version": "1.0.0",
  4176. "source": {
  4177. "type": "git",
  4178. "url": "https://github.com/php-fig/event-dispatcher.git",
  4179. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  4180. },
  4181. "dist": {
  4182. "type": "zip",
  4183. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4184. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4185. "shasum": "",
  4186. "mirrors": [
  4187. {
  4188. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4189. "preferred": true
  4190. }
  4191. ]
  4192. },
  4193. "require": {
  4194. "php": ">=7.2.0"
  4195. },
  4196. "type": "library",
  4197. "extra": {
  4198. "branch-alias": {
  4199. "dev-master": "1.0.x-dev"
  4200. }
  4201. },
  4202. "autoload": {
  4203. "psr-4": {
  4204. "Psr\\EventDispatcher\\": "src/"
  4205. }
  4206. },
  4207. "notification-url": "https://packagist.org/downloads/",
  4208. "license": [
  4209. "MIT"
  4210. ],
  4211. "authors": [
  4212. {
  4213. "name": "PHP-FIG",
  4214. "homepage": "http://www.php-fig.org/"
  4215. }
  4216. ],
  4217. "description": "Standard interfaces for event handling.",
  4218. "keywords": [
  4219. "events",
  4220. "psr",
  4221. "psr-14"
  4222. ],
  4223. "support": {
  4224. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  4225. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  4226. },
  4227. "time": "2019-01-08T18:20:26+00:00"
  4228. },
  4229. {
  4230. "name": "psr/http-client",
  4231. "version": "1.0.3",
  4232. "source": {
  4233. "type": "git",
  4234. "url": "https://github.com/php-fig/http-client.git",
  4235. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  4236. },
  4237. "dist": {
  4238. "type": "zip",
  4239. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  4240. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  4241. "shasum": "",
  4242. "mirrors": [
  4243. {
  4244. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4245. "preferred": true
  4246. }
  4247. ]
  4248. },
  4249. "require": {
  4250. "php": "^7.0 || ^8.0",
  4251. "psr/http-message": "^1.0 || ^2.0"
  4252. },
  4253. "type": "library",
  4254. "extra": {
  4255. "branch-alias": {
  4256. "dev-master": "1.0.x-dev"
  4257. }
  4258. },
  4259. "autoload": {
  4260. "psr-4": {
  4261. "Psr\\Http\\Client\\": "src/"
  4262. }
  4263. },
  4264. "notification-url": "https://packagist.org/downloads/",
  4265. "license": [
  4266. "MIT"
  4267. ],
  4268. "authors": [
  4269. {
  4270. "name": "PHP-FIG",
  4271. "homepage": "https://www.php-fig.org/"
  4272. }
  4273. ],
  4274. "description": "Common interface for HTTP clients",
  4275. "homepage": "https://github.com/php-fig/http-client",
  4276. "keywords": [
  4277. "http",
  4278. "http-client",
  4279. "psr",
  4280. "psr-18"
  4281. ],
  4282. "support": {
  4283. "source": "https://github.com/php-fig/http-client"
  4284. },
  4285. "time": "2023-09-23T14:17:50+00:00"
  4286. },
  4287. {
  4288. "name": "psr/http-factory",
  4289. "version": "1.0.2",
  4290. "source": {
  4291. "type": "git",
  4292. "url": "https://github.com/php-fig/http-factory.git",
  4293. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  4294. },
  4295. "dist": {
  4296. "type": "zip",
  4297. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  4298. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  4299. "shasum": "",
  4300. "mirrors": [
  4301. {
  4302. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4303. "preferred": true
  4304. }
  4305. ]
  4306. },
  4307. "require": {
  4308. "php": ">=7.0.0",
  4309. "psr/http-message": "^1.0 || ^2.0"
  4310. },
  4311. "type": "library",
  4312. "extra": {
  4313. "branch-alias": {
  4314. "dev-master": "1.0.x-dev"
  4315. }
  4316. },
  4317. "autoload": {
  4318. "psr-4": {
  4319. "Psr\\Http\\Message\\": "src/"
  4320. }
  4321. },
  4322. "notification-url": "https://packagist.org/downloads/",
  4323. "license": [
  4324. "MIT"
  4325. ],
  4326. "authors": [
  4327. {
  4328. "name": "PHP-FIG",
  4329. "homepage": "https://www.php-fig.org/"
  4330. }
  4331. ],
  4332. "description": "Common interfaces for PSR-7 HTTP message factories",
  4333. "keywords": [
  4334. "factory",
  4335. "http",
  4336. "message",
  4337. "psr",
  4338. "psr-17",
  4339. "psr-7",
  4340. "request",
  4341. "response"
  4342. ],
  4343. "support": {
  4344. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  4345. },
  4346. "time": "2023-04-10T20:10:41+00:00"
  4347. },
  4348. {
  4349. "name": "psr/http-message",
  4350. "version": "1.1",
  4351. "source": {
  4352. "type": "git",
  4353. "url": "https://github.com/php-fig/http-message.git",
  4354. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  4355. },
  4356. "dist": {
  4357. "type": "zip",
  4358. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  4359. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  4360. "shasum": "",
  4361. "mirrors": [
  4362. {
  4363. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4364. "preferred": true
  4365. }
  4366. ]
  4367. },
  4368. "require": {
  4369. "php": "^7.2 || ^8.0"
  4370. },
  4371. "type": "library",
  4372. "extra": {
  4373. "branch-alias": {
  4374. "dev-master": "1.1.x-dev"
  4375. }
  4376. },
  4377. "autoload": {
  4378. "psr-4": {
  4379. "Psr\\Http\\Message\\": "src/"
  4380. }
  4381. },
  4382. "notification-url": "https://packagist.org/downloads/",
  4383. "license": [
  4384. "MIT"
  4385. ],
  4386. "authors": [
  4387. {
  4388. "name": "PHP-FIG",
  4389. "homepage": "http://www.php-fig.org/"
  4390. }
  4391. ],
  4392. "description": "Common interface for HTTP messages",
  4393. "homepage": "https://github.com/php-fig/http-message",
  4394. "keywords": [
  4395. "http",
  4396. "http-message",
  4397. "psr",
  4398. "psr-7",
  4399. "request",
  4400. "response"
  4401. ],
  4402. "support": {
  4403. "source": "https://github.com/php-fig/http-message/tree/1.1"
  4404. },
  4405. "time": "2023-04-04T09:50:52+00:00"
  4406. },
  4407. {
  4408. "name": "psr/log",
  4409. "version": "2.0.0",
  4410. "source": {
  4411. "type": "git",
  4412. "url": "https://github.com/php-fig/log.git",
  4413. "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376"
  4414. },
  4415. "dist": {
  4416. "type": "zip",
  4417. "url": "https://api.github.com/repos/php-fig/log/zipball/ef29f6d262798707a9edd554e2b82517ef3a9376",
  4418. "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376",
  4419. "shasum": "",
  4420. "mirrors": [
  4421. {
  4422. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4423. "preferred": true
  4424. }
  4425. ]
  4426. },
  4427. "require": {
  4428. "php": ">=8.0.0"
  4429. },
  4430. "type": "library",
  4431. "extra": {
  4432. "branch-alias": {
  4433. "dev-master": "2.0.x-dev"
  4434. }
  4435. },
  4436. "autoload": {
  4437. "psr-4": {
  4438. "Psr\\Log\\": "src"
  4439. }
  4440. },
  4441. "notification-url": "https://packagist.org/downloads/",
  4442. "license": [
  4443. "MIT"
  4444. ],
  4445. "authors": [
  4446. {
  4447. "name": "PHP-FIG",
  4448. "homepage": "https://www.php-fig.org/"
  4449. }
  4450. ],
  4451. "description": "Common interface for logging libraries",
  4452. "homepage": "https://github.com/php-fig/log",
  4453. "keywords": [
  4454. "log",
  4455. "psr",
  4456. "psr-3"
  4457. ],
  4458. "support": {
  4459. "source": "https://github.com/php-fig/log/tree/2.0.0"
  4460. },
  4461. "time": "2021-07-14T16:41:46+00:00"
  4462. },
  4463. {
  4464. "name": "psr/simple-cache",
  4465. "version": "1.0.1",
  4466. "source": {
  4467. "type": "git",
  4468. "url": "https://github.com/php-fig/simple-cache.git",
  4469. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  4470. },
  4471. "dist": {
  4472. "type": "zip",
  4473. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4474. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4475. "shasum": "",
  4476. "mirrors": [
  4477. {
  4478. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4479. "preferred": true
  4480. }
  4481. ]
  4482. },
  4483. "require": {
  4484. "php": ">=5.3.0"
  4485. },
  4486. "type": "library",
  4487. "extra": {
  4488. "branch-alias": {
  4489. "dev-master": "1.0.x-dev"
  4490. }
  4491. },
  4492. "autoload": {
  4493. "psr-4": {
  4494. "Psr\\SimpleCache\\": "src/"
  4495. }
  4496. },
  4497. "notification-url": "https://packagist.org/downloads/",
  4498. "license": [
  4499. "MIT"
  4500. ],
  4501. "authors": [
  4502. {
  4503. "name": "PHP-FIG",
  4504. "homepage": "http://www.php-fig.org/"
  4505. }
  4506. ],
  4507. "description": "Common interfaces for simple caching",
  4508. "keywords": [
  4509. "cache",
  4510. "caching",
  4511. "psr",
  4512. "psr-16",
  4513. "simple-cache"
  4514. ],
  4515. "support": {
  4516. "source": "https://github.com/php-fig/simple-cache/tree/master"
  4517. },
  4518. "time": "2017-10-23T01:57:42+00:00"
  4519. },
  4520. {
  4521. "name": "psy/psysh",
  4522. "version": "v0.12.12",
  4523. "source": {
  4524. "type": "git",
  4525. "url": "https://github.com/bobthecow/psysh.git",
  4526. "reference": "cd23863404a40ccfaf733e3af4db2b459837f7e7"
  4527. },
  4528. "dist": {
  4529. "type": "zip",
  4530. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/cd23863404a40ccfaf733e3af4db2b459837f7e7",
  4531. "reference": "cd23863404a40ccfaf733e3af4db2b459837f7e7",
  4532. "shasum": "",
  4533. "mirrors": [
  4534. {
  4535. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4536. "preferred": true
  4537. }
  4538. ]
  4539. },
  4540. "require": {
  4541. "ext-json": "*",
  4542. "ext-tokenizer": "*",
  4543. "nikic/php-parser": "^5.0 || ^4.0",
  4544. "php": "^8.0 || ^7.4",
  4545. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  4546. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  4547. },
  4548. "conflict": {
  4549. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  4550. },
  4551. "require-dev": {
  4552. "bamarni/composer-bin-plugin": "^1.2"
  4553. },
  4554. "suggest": {
  4555. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4556. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4557. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  4558. },
  4559. "bin": [
  4560. "bin/psysh"
  4561. ],
  4562. "type": "library",
  4563. "extra": {
  4564. "bamarni-bin": {
  4565. "bin-links": false,
  4566. "forward-command": false
  4567. },
  4568. "branch-alias": {
  4569. "dev-main": "0.12.x-dev"
  4570. }
  4571. },
  4572. "autoload": {
  4573. "files": [
  4574. "src/functions.php"
  4575. ],
  4576. "psr-4": {
  4577. "Psy\\": "src/"
  4578. }
  4579. },
  4580. "notification-url": "https://packagist.org/downloads/",
  4581. "license": [
  4582. "MIT"
  4583. ],
  4584. "authors": [
  4585. {
  4586. "name": "Justin Hileman",
  4587. "email": "justin@justinhileman.info"
  4588. }
  4589. ],
  4590. "description": "An interactive shell for modern PHP.",
  4591. "homepage": "https://psysh.org",
  4592. "keywords": [
  4593. "REPL",
  4594. "console",
  4595. "interactive",
  4596. "shell"
  4597. ],
  4598. "support": {
  4599. "issues": "https://github.com/bobthecow/psysh/issues",
  4600. "source": "https://github.com/bobthecow/psysh/tree/v0.12.12"
  4601. },
  4602. "time": "2025-09-20T13:46:31+00:00"
  4603. },
  4604. {
  4605. "name": "ralouphie/getallheaders",
  4606. "version": "3.0.3",
  4607. "source": {
  4608. "type": "git",
  4609. "url": "https://github.com/ralouphie/getallheaders.git",
  4610. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4611. },
  4612. "dist": {
  4613. "type": "zip",
  4614. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4615. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4616. "shasum": "",
  4617. "mirrors": [
  4618. {
  4619. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4620. "preferred": true
  4621. }
  4622. ]
  4623. },
  4624. "require": {
  4625. "php": ">=5.6"
  4626. },
  4627. "require-dev": {
  4628. "php-coveralls/php-coveralls": "^2.1",
  4629. "phpunit/phpunit": "^5 || ^6.5"
  4630. },
  4631. "type": "library",
  4632. "autoload": {
  4633. "files": [
  4634. "src/getallheaders.php"
  4635. ]
  4636. },
  4637. "notification-url": "https://packagist.org/downloads/",
  4638. "license": [
  4639. "MIT"
  4640. ],
  4641. "authors": [
  4642. {
  4643. "name": "Ralph Khattar",
  4644. "email": "ralph.khattar@gmail.com"
  4645. }
  4646. ],
  4647. "description": "A polyfill for getallheaders.",
  4648. "support": {
  4649. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4650. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4651. },
  4652. "time": "2019-03-08T08:55:37+00:00"
  4653. },
  4654. {
  4655. "name": "ramsey/collection",
  4656. "version": "1.3.0",
  4657. "source": {
  4658. "type": "git",
  4659. "url": "https://github.com/ramsey/collection.git",
  4660. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4"
  4661. },
  4662. "dist": {
  4663. "type": "zip",
  4664. "url": "https://api.github.com/repos/ramsey/collection/zipball/ad7475d1c9e70b190ecffc58f2d989416af339b4",
  4665. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4",
  4666. "shasum": "",
  4667. "mirrors": [
  4668. {
  4669. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4670. "preferred": true
  4671. }
  4672. ]
  4673. },
  4674. "require": {
  4675. "php": "^7.4 || ^8.0",
  4676. "symfony/polyfill-php81": "^1.23"
  4677. },
  4678. "require-dev": {
  4679. "captainhook/plugin-composer": "^5.3",
  4680. "ergebnis/composer-normalize": "^2.28.3",
  4681. "fakerphp/faker": "^1.21",
  4682. "hamcrest/hamcrest-php": "^2.0",
  4683. "jangregor/phpstan-prophecy": "^1.0",
  4684. "mockery/mockery": "^1.5",
  4685. "php-parallel-lint/php-console-highlighter": "^1.0",
  4686. "php-parallel-lint/php-parallel-lint": "^1.3",
  4687. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  4688. "phpspec/prophecy-phpunit": "^2.0",
  4689. "phpstan/extension-installer": "^1.2",
  4690. "phpstan/phpstan": "^1.9",
  4691. "phpstan/phpstan-mockery": "^1.1",
  4692. "phpstan/phpstan-phpunit": "^1.3",
  4693. "phpunit/phpunit": "^9.5",
  4694. "psalm/plugin-mockery": "^1.1",
  4695. "psalm/plugin-phpunit": "^0.18.4",
  4696. "ramsey/coding-standard": "^2.0.3",
  4697. "ramsey/conventional-commits": "^1.3",
  4698. "vimeo/psalm": "^5.4"
  4699. },
  4700. "type": "library",
  4701. "extra": {
  4702. "captainhook": {
  4703. "force-install": true
  4704. },
  4705. "ramsey/conventional-commits": {
  4706. "configFile": "conventional-commits.json"
  4707. }
  4708. },
  4709. "autoload": {
  4710. "psr-4": {
  4711. "Ramsey\\Collection\\": "src/"
  4712. }
  4713. },
  4714. "notification-url": "https://packagist.org/downloads/",
  4715. "license": [
  4716. "MIT"
  4717. ],
  4718. "authors": [
  4719. {
  4720. "name": "Ben Ramsey",
  4721. "email": "ben@benramsey.com",
  4722. "homepage": "https://benramsey.com"
  4723. }
  4724. ],
  4725. "description": "A PHP library for representing and manipulating collections.",
  4726. "keywords": [
  4727. "array",
  4728. "collection",
  4729. "hash",
  4730. "map",
  4731. "queue",
  4732. "set"
  4733. ],
  4734. "support": {
  4735. "issues": "https://github.com/ramsey/collection/issues",
  4736. "source": "https://github.com/ramsey/collection/tree/1.3.0"
  4737. },
  4738. "funding": [
  4739. {
  4740. "url": "https://github.com/ramsey",
  4741. "type": "github"
  4742. },
  4743. {
  4744. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4745. "type": "tidelift"
  4746. }
  4747. ],
  4748. "time": "2022-12-27T19:12:24+00:00"
  4749. },
  4750. {
  4751. "name": "ramsey/uuid",
  4752. "version": "4.9.0",
  4753. "source": {
  4754. "type": "git",
  4755. "url": "https://github.com/ramsey/uuid.git",
  4756. "reference": "4e0e23cc785f0724a0e838279a9eb03f28b092a0"
  4757. },
  4758. "dist": {
  4759. "type": "zip",
  4760. "url": "https://api.github.com/repos/ramsey/uuid/zipball/4e0e23cc785f0724a0e838279a9eb03f28b092a0",
  4761. "reference": "4e0e23cc785f0724a0e838279a9eb03f28b092a0",
  4762. "shasum": "",
  4763. "mirrors": [
  4764. {
  4765. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4766. "preferred": true
  4767. }
  4768. ]
  4769. },
  4770. "require": {
  4771. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12 || ^0.13",
  4772. "php": "^8.0",
  4773. "ramsey/collection": "^1.2 || ^2.0"
  4774. },
  4775. "replace": {
  4776. "rhumsaa/uuid": "self.version"
  4777. },
  4778. "require-dev": {
  4779. "captainhook/captainhook": "^5.25",
  4780. "captainhook/plugin-composer": "^5.3",
  4781. "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
  4782. "ergebnis/composer-normalize": "^2.47",
  4783. "mockery/mockery": "^1.6",
  4784. "paragonie/random-lib": "^2",
  4785. "php-mock/php-mock": "^2.6",
  4786. "php-mock/php-mock-mockery": "^1.5",
  4787. "php-parallel-lint/php-parallel-lint": "^1.4.0",
  4788. "phpbench/phpbench": "^1.2.14",
  4789. "phpstan/extension-installer": "^1.4",
  4790. "phpstan/phpstan": "^2.1",
  4791. "phpstan/phpstan-mockery": "^2.0",
  4792. "phpstan/phpstan-phpunit": "^2.0",
  4793. "phpunit/phpunit": "^9.6",
  4794. "slevomat/coding-standard": "^8.18",
  4795. "squizlabs/php_codesniffer": "^3.13"
  4796. },
  4797. "suggest": {
  4798. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4799. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4800. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4801. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4802. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4803. },
  4804. "type": "library",
  4805. "extra": {
  4806. "captainhook": {
  4807. "force-install": true
  4808. }
  4809. },
  4810. "autoload": {
  4811. "files": [
  4812. "src/functions.php"
  4813. ],
  4814. "psr-4": {
  4815. "Ramsey\\Uuid\\": "src/"
  4816. }
  4817. },
  4818. "notification-url": "https://packagist.org/downloads/",
  4819. "license": [
  4820. "MIT"
  4821. ],
  4822. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4823. "keywords": [
  4824. "guid",
  4825. "identifier",
  4826. "uuid"
  4827. ],
  4828. "support": {
  4829. "issues": "https://github.com/ramsey/uuid/issues",
  4830. "source": "https://github.com/ramsey/uuid/tree/4.9.0"
  4831. },
  4832. "time": "2025-06-25T14:20:11+00:00"
  4833. },
  4834. {
  4835. "name": "ratchet/rfc6455",
  4836. "version": "v0.3.1",
  4837. "source": {
  4838. "type": "git",
  4839. "url": "https://github.com/ratchetphp/RFC6455.git",
  4840. "reference": "7c964514e93456a52a99a20fcfa0de242a43ccdb"
  4841. },
  4842. "dist": {
  4843. "type": "zip",
  4844. "url": "https://api.github.com/repos/ratchetphp/RFC6455/zipball/7c964514e93456a52a99a20fcfa0de242a43ccdb",
  4845. "reference": "7c964514e93456a52a99a20fcfa0de242a43ccdb",
  4846. "shasum": "",
  4847. "mirrors": [
  4848. {
  4849. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4850. "preferred": true
  4851. }
  4852. ]
  4853. },
  4854. "require": {
  4855. "guzzlehttp/psr7": "^2 || ^1.7",
  4856. "php": ">=5.4.2"
  4857. },
  4858. "require-dev": {
  4859. "phpunit/phpunit": "^5.7",
  4860. "react/socket": "^1.3"
  4861. },
  4862. "type": "library",
  4863. "autoload": {
  4864. "psr-4": {
  4865. "Ratchet\\RFC6455\\": "src"
  4866. }
  4867. },
  4868. "notification-url": "https://packagist.org/downloads/",
  4869. "license": [
  4870. "MIT"
  4871. ],
  4872. "authors": [
  4873. {
  4874. "name": "Chris Boden",
  4875. "email": "cboden@gmail.com",
  4876. "role": "Developer"
  4877. },
  4878. {
  4879. "name": "Matt Bonneau",
  4880. "role": "Developer"
  4881. }
  4882. ],
  4883. "description": "RFC6455 WebSocket protocol handler",
  4884. "homepage": "http://socketo.me",
  4885. "keywords": [
  4886. "WebSockets",
  4887. "rfc6455",
  4888. "websocket"
  4889. ],
  4890. "support": {
  4891. "chat": "https://gitter.im/reactphp/reactphp",
  4892. "issues": "https://github.com/ratchetphp/RFC6455/issues",
  4893. "source": "https://github.com/ratchetphp/RFC6455/tree/v0.3.1"
  4894. },
  4895. "time": "2021-12-09T23:20:49+00:00"
  4896. },
  4897. {
  4898. "name": "react/cache",
  4899. "version": "v1.2.0",
  4900. "source": {
  4901. "type": "git",
  4902. "url": "https://github.com/reactphp/cache.git",
  4903. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  4904. },
  4905. "dist": {
  4906. "type": "zip",
  4907. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  4908. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  4909. "shasum": "",
  4910. "mirrors": [
  4911. {
  4912. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4913. "preferred": true
  4914. }
  4915. ]
  4916. },
  4917. "require": {
  4918. "php": ">=5.3.0",
  4919. "react/promise": "^3.0 || ^2.0 || ^1.1"
  4920. },
  4921. "require-dev": {
  4922. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  4923. },
  4924. "type": "library",
  4925. "autoload": {
  4926. "psr-4": {
  4927. "React\\Cache\\": "src/"
  4928. }
  4929. },
  4930. "notification-url": "https://packagist.org/downloads/",
  4931. "license": [
  4932. "MIT"
  4933. ],
  4934. "authors": [
  4935. {
  4936. "name": "Christian Lück",
  4937. "email": "christian@clue.engineering",
  4938. "homepage": "https://clue.engineering/"
  4939. },
  4940. {
  4941. "name": "Cees-Jan Kiewiet",
  4942. "email": "reactphp@ceesjankiewiet.nl",
  4943. "homepage": "https://wyrihaximus.net/"
  4944. },
  4945. {
  4946. "name": "Jan Sorgalla",
  4947. "email": "jsorgalla@gmail.com",
  4948. "homepage": "https://sorgalla.com/"
  4949. },
  4950. {
  4951. "name": "Chris Boden",
  4952. "email": "cboden@gmail.com",
  4953. "homepage": "https://cboden.dev/"
  4954. }
  4955. ],
  4956. "description": "Async, Promise-based cache interface for ReactPHP",
  4957. "keywords": [
  4958. "cache",
  4959. "caching",
  4960. "promise",
  4961. "reactphp"
  4962. ],
  4963. "support": {
  4964. "issues": "https://github.com/reactphp/cache/issues",
  4965. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  4966. },
  4967. "funding": [
  4968. {
  4969. "url": "https://opencollective.com/reactphp",
  4970. "type": "open_collective"
  4971. }
  4972. ],
  4973. "time": "2022-11-30T15:59:55+00:00"
  4974. },
  4975. {
  4976. "name": "react/dns",
  4977. "version": "v1.13.0",
  4978. "source": {
  4979. "type": "git",
  4980. "url": "https://github.com/reactphp/dns.git",
  4981. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5"
  4982. },
  4983. "dist": {
  4984. "type": "zip",
  4985. "url": "https://api.github.com/repos/reactphp/dns/zipball/eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  4986. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  4987. "shasum": "",
  4988. "mirrors": [
  4989. {
  4990. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4991. "preferred": true
  4992. }
  4993. ]
  4994. },
  4995. "require": {
  4996. "php": ">=5.3.0",
  4997. "react/cache": "^1.0 || ^0.6 || ^0.5",
  4998. "react/event-loop": "^1.2",
  4999. "react/promise": "^3.2 || ^2.7 || ^1.2.1"
  5000. },
  5001. "require-dev": {
  5002. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  5003. "react/async": "^4.3 || ^3 || ^2",
  5004. "react/promise-timer": "^1.11"
  5005. },
  5006. "type": "library",
  5007. "autoload": {
  5008. "psr-4": {
  5009. "React\\Dns\\": "src/"
  5010. }
  5011. },
  5012. "notification-url": "https://packagist.org/downloads/",
  5013. "license": [
  5014. "MIT"
  5015. ],
  5016. "authors": [
  5017. {
  5018. "name": "Christian Lück",
  5019. "email": "christian@clue.engineering",
  5020. "homepage": "https://clue.engineering/"
  5021. },
  5022. {
  5023. "name": "Cees-Jan Kiewiet",
  5024. "email": "reactphp@ceesjankiewiet.nl",
  5025. "homepage": "https://wyrihaximus.net/"
  5026. },
  5027. {
  5028. "name": "Jan Sorgalla",
  5029. "email": "jsorgalla@gmail.com",
  5030. "homepage": "https://sorgalla.com/"
  5031. },
  5032. {
  5033. "name": "Chris Boden",
  5034. "email": "cboden@gmail.com",
  5035. "homepage": "https://cboden.dev/"
  5036. }
  5037. ],
  5038. "description": "Async DNS resolver for ReactPHP",
  5039. "keywords": [
  5040. "async",
  5041. "dns",
  5042. "dns-resolver",
  5043. "reactphp"
  5044. ],
  5045. "support": {
  5046. "issues": "https://github.com/reactphp/dns/issues",
  5047. "source": "https://github.com/reactphp/dns/tree/v1.13.0"
  5048. },
  5049. "funding": [
  5050. {
  5051. "url": "https://opencollective.com/reactphp",
  5052. "type": "open_collective"
  5053. }
  5054. ],
  5055. "time": "2024-06-13T14:18:03+00:00"
  5056. },
  5057. {
  5058. "name": "react/event-loop",
  5059. "version": "v1.5.0",
  5060. "source": {
  5061. "type": "git",
  5062. "url": "https://github.com/reactphp/event-loop.git",
  5063. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  5064. },
  5065. "dist": {
  5066. "type": "zip",
  5067. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  5068. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  5069. "shasum": "",
  5070. "mirrors": [
  5071. {
  5072. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5073. "preferred": true
  5074. }
  5075. ]
  5076. },
  5077. "require": {
  5078. "php": ">=5.3.0"
  5079. },
  5080. "require-dev": {
  5081. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  5082. },
  5083. "suggest": {
  5084. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  5085. },
  5086. "type": "library",
  5087. "autoload": {
  5088. "psr-4": {
  5089. "React\\EventLoop\\": "src/"
  5090. }
  5091. },
  5092. "notification-url": "https://packagist.org/downloads/",
  5093. "license": [
  5094. "MIT"
  5095. ],
  5096. "authors": [
  5097. {
  5098. "name": "Christian Lück",
  5099. "email": "christian@clue.engineering",
  5100. "homepage": "https://clue.engineering/"
  5101. },
  5102. {
  5103. "name": "Cees-Jan Kiewiet",
  5104. "email": "reactphp@ceesjankiewiet.nl",
  5105. "homepage": "https://wyrihaximus.net/"
  5106. },
  5107. {
  5108. "name": "Jan Sorgalla",
  5109. "email": "jsorgalla@gmail.com",
  5110. "homepage": "https://sorgalla.com/"
  5111. },
  5112. {
  5113. "name": "Chris Boden",
  5114. "email": "cboden@gmail.com",
  5115. "homepage": "https://cboden.dev/"
  5116. }
  5117. ],
  5118. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  5119. "keywords": [
  5120. "asynchronous",
  5121. "event-loop"
  5122. ],
  5123. "support": {
  5124. "issues": "https://github.com/reactphp/event-loop/issues",
  5125. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  5126. },
  5127. "funding": [
  5128. {
  5129. "url": "https://opencollective.com/reactphp",
  5130. "type": "open_collective"
  5131. }
  5132. ],
  5133. "time": "2023-11-13T13:48:05+00:00"
  5134. },
  5135. {
  5136. "name": "react/promise",
  5137. "version": "v3.2.0",
  5138. "source": {
  5139. "type": "git",
  5140. "url": "https://github.com/reactphp/promise.git",
  5141. "reference": "8a164643313c71354582dc850b42b33fa12a4b63"
  5142. },
  5143. "dist": {
  5144. "type": "zip",
  5145. "url": "https://api.github.com/repos/reactphp/promise/zipball/8a164643313c71354582dc850b42b33fa12a4b63",
  5146. "reference": "8a164643313c71354582dc850b42b33fa12a4b63",
  5147. "shasum": "",
  5148. "mirrors": [
  5149. {
  5150. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5151. "preferred": true
  5152. }
  5153. ]
  5154. },
  5155. "require": {
  5156. "php": ">=7.1.0"
  5157. },
  5158. "require-dev": {
  5159. "phpstan/phpstan": "1.10.39 || 1.4.10",
  5160. "phpunit/phpunit": "^9.6 || ^7.5"
  5161. },
  5162. "type": "library",
  5163. "autoload": {
  5164. "files": [
  5165. "src/functions_include.php"
  5166. ],
  5167. "psr-4": {
  5168. "React\\Promise\\": "src/"
  5169. }
  5170. },
  5171. "notification-url": "https://packagist.org/downloads/",
  5172. "license": [
  5173. "MIT"
  5174. ],
  5175. "authors": [
  5176. {
  5177. "name": "Jan Sorgalla",
  5178. "email": "jsorgalla@gmail.com",
  5179. "homepage": "https://sorgalla.com/"
  5180. },
  5181. {
  5182. "name": "Christian Lück",
  5183. "email": "christian@clue.engineering",
  5184. "homepage": "https://clue.engineering/"
  5185. },
  5186. {
  5187. "name": "Cees-Jan Kiewiet",
  5188. "email": "reactphp@ceesjankiewiet.nl",
  5189. "homepage": "https://wyrihaximus.net/"
  5190. },
  5191. {
  5192. "name": "Chris Boden",
  5193. "email": "cboden@gmail.com",
  5194. "homepage": "https://cboden.dev/"
  5195. }
  5196. ],
  5197. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  5198. "keywords": [
  5199. "promise",
  5200. "promises"
  5201. ],
  5202. "support": {
  5203. "issues": "https://github.com/reactphp/promise/issues",
  5204. "source": "https://github.com/reactphp/promise/tree/v3.2.0"
  5205. },
  5206. "funding": [
  5207. {
  5208. "url": "https://opencollective.com/reactphp",
  5209. "type": "open_collective"
  5210. }
  5211. ],
  5212. "time": "2024-05-24T10:39:05+00:00"
  5213. },
  5214. {
  5215. "name": "react/socket",
  5216. "version": "v1.16.0",
  5217. "source": {
  5218. "type": "git",
  5219. "url": "https://github.com/reactphp/socket.git",
  5220. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1"
  5221. },
  5222. "dist": {
  5223. "type": "zip",
  5224. "url": "https://api.github.com/repos/reactphp/socket/zipball/23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  5225. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  5226. "shasum": "",
  5227. "mirrors": [
  5228. {
  5229. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5230. "preferred": true
  5231. }
  5232. ]
  5233. },
  5234. "require": {
  5235. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  5236. "php": ">=5.3.0",
  5237. "react/dns": "^1.13",
  5238. "react/event-loop": "^1.2",
  5239. "react/promise": "^3.2 || ^2.6 || ^1.2.1",
  5240. "react/stream": "^1.4"
  5241. },
  5242. "require-dev": {
  5243. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  5244. "react/async": "^4.3 || ^3.3 || ^2",
  5245. "react/promise-stream": "^1.4",
  5246. "react/promise-timer": "^1.11"
  5247. },
  5248. "type": "library",
  5249. "autoload": {
  5250. "psr-4": {
  5251. "React\\Socket\\": "src/"
  5252. }
  5253. },
  5254. "notification-url": "https://packagist.org/downloads/",
  5255. "license": [
  5256. "MIT"
  5257. ],
  5258. "authors": [
  5259. {
  5260. "name": "Christian Lück",
  5261. "email": "christian@clue.engineering",
  5262. "homepage": "https://clue.engineering/"
  5263. },
  5264. {
  5265. "name": "Cees-Jan Kiewiet",
  5266. "email": "reactphp@ceesjankiewiet.nl",
  5267. "homepage": "https://wyrihaximus.net/"
  5268. },
  5269. {
  5270. "name": "Jan Sorgalla",
  5271. "email": "jsorgalla@gmail.com",
  5272. "homepage": "https://sorgalla.com/"
  5273. },
  5274. {
  5275. "name": "Chris Boden",
  5276. "email": "cboden@gmail.com",
  5277. "homepage": "https://cboden.dev/"
  5278. }
  5279. ],
  5280. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  5281. "keywords": [
  5282. "Connection",
  5283. "Socket",
  5284. "async",
  5285. "reactphp",
  5286. "stream"
  5287. ],
  5288. "support": {
  5289. "issues": "https://github.com/reactphp/socket/issues",
  5290. "source": "https://github.com/reactphp/socket/tree/v1.16.0"
  5291. },
  5292. "funding": [
  5293. {
  5294. "url": "https://opencollective.com/reactphp",
  5295. "type": "open_collective"
  5296. }
  5297. ],
  5298. "time": "2024-07-26T10:38:09+00:00"
  5299. },
  5300. {
  5301. "name": "react/stream",
  5302. "version": "1.x-dev",
  5303. "source": {
  5304. "type": "git",
  5305. "url": "https://github.com/reactphp/stream.git",
  5306. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d"
  5307. },
  5308. "dist": {
  5309. "type": "zip",
  5310. "url": "https://api.github.com/repos/reactphp/stream/zipball/1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  5311. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  5312. "shasum": "",
  5313. "mirrors": [
  5314. {
  5315. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5316. "preferred": true
  5317. }
  5318. ]
  5319. },
  5320. "require": {
  5321. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  5322. "php": ">=5.3.8",
  5323. "react/event-loop": "^1.2"
  5324. },
  5325. "require-dev": {
  5326. "clue/stream-filter": "~1.2",
  5327. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  5328. },
  5329. "type": "library",
  5330. "autoload": {
  5331. "psr-4": {
  5332. "React\\Stream\\": "src/"
  5333. }
  5334. },
  5335. "notification-url": "https://packagist.org/downloads/",
  5336. "license": [
  5337. "MIT"
  5338. ],
  5339. "authors": [
  5340. {
  5341. "name": "Christian Lück",
  5342. "email": "christian@clue.engineering",
  5343. "homepage": "https://clue.engineering/"
  5344. },
  5345. {
  5346. "name": "Cees-Jan Kiewiet",
  5347. "email": "reactphp@ceesjankiewiet.nl",
  5348. "homepage": "https://wyrihaximus.net/"
  5349. },
  5350. {
  5351. "name": "Jan Sorgalla",
  5352. "email": "jsorgalla@gmail.com",
  5353. "homepage": "https://sorgalla.com/"
  5354. },
  5355. {
  5356. "name": "Chris Boden",
  5357. "email": "cboden@gmail.com",
  5358. "homepage": "https://cboden.dev/"
  5359. }
  5360. ],
  5361. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  5362. "keywords": [
  5363. "event-driven",
  5364. "io",
  5365. "non-blocking",
  5366. "pipe",
  5367. "reactphp",
  5368. "readable",
  5369. "stream",
  5370. "writable"
  5371. ],
  5372. "support": {
  5373. "issues": "https://github.com/reactphp/stream/issues",
  5374. "source": "https://github.com/reactphp/stream/tree/v1.4.0"
  5375. },
  5376. "funding": [
  5377. {
  5378. "url": "https://opencollective.com/reactphp",
  5379. "type": "open_collective"
  5380. }
  5381. ],
  5382. "time": "2024-06-11T12:45:25+00:00"
  5383. },
  5384. {
  5385. "name": "swiftmailer/swiftmailer",
  5386. "version": "v6.3.0",
  5387. "source": {
  5388. "type": "git",
  5389. "url": "https://github.com/swiftmailer/swiftmailer.git",
  5390. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  5391. },
  5392. "dist": {
  5393. "type": "zip",
  5394. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  5395. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  5396. "shasum": "",
  5397. "mirrors": [
  5398. {
  5399. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5400. "preferred": true
  5401. }
  5402. ]
  5403. },
  5404. "require": {
  5405. "egulias/email-validator": "^2.0|^3.1",
  5406. "php": ">=7.0.0",
  5407. "symfony/polyfill-iconv": "^1.0",
  5408. "symfony/polyfill-intl-idn": "^1.10",
  5409. "symfony/polyfill-mbstring": "^1.0"
  5410. },
  5411. "require-dev": {
  5412. "mockery/mockery": "^1.0",
  5413. "symfony/phpunit-bridge": "^4.4|^5.4"
  5414. },
  5415. "suggest": {
  5416. "ext-intl": "Needed to support internationalized email addresses"
  5417. },
  5418. "type": "library",
  5419. "extra": {
  5420. "branch-alias": {
  5421. "dev-master": "6.2-dev"
  5422. }
  5423. },
  5424. "autoload": {
  5425. "files": [
  5426. "lib/swift_required.php"
  5427. ]
  5428. },
  5429. "notification-url": "https://packagist.org/downloads/",
  5430. "license": [
  5431. "MIT"
  5432. ],
  5433. "authors": [
  5434. {
  5435. "name": "Chris Corbyn"
  5436. },
  5437. {
  5438. "name": "Fabien Potencier",
  5439. "email": "fabien@symfony.com"
  5440. }
  5441. ],
  5442. "description": "Swiftmailer, free feature-rich PHP mailer",
  5443. "homepage": "https://swiftmailer.symfony.com",
  5444. "keywords": [
  5445. "email",
  5446. "mail",
  5447. "mailer"
  5448. ],
  5449. "support": {
  5450. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  5451. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  5452. },
  5453. "funding": [
  5454. {
  5455. "url": "https://github.com/fabpot",
  5456. "type": "github"
  5457. },
  5458. {
  5459. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  5460. "type": "tidelift"
  5461. }
  5462. ],
  5463. "abandoned": "symfony/mailer",
  5464. "time": "2021-10-18T15:26:12+00:00"
  5465. },
  5466. {
  5467. "name": "symfony/console",
  5468. "version": "v5.4.47",
  5469. "source": {
  5470. "type": "git",
  5471. "url": "https://github.com/symfony/console.git",
  5472. "reference": "c4ba980ca61a9eb18ee6bcc73f28e475852bb1ed"
  5473. },
  5474. "dist": {
  5475. "type": "zip",
  5476. "url": "https://api.github.com/repos/symfony/console/zipball/c4ba980ca61a9eb18ee6bcc73f28e475852bb1ed",
  5477. "reference": "c4ba980ca61a9eb18ee6bcc73f28e475852bb1ed",
  5478. "shasum": "",
  5479. "mirrors": [
  5480. {
  5481. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5482. "preferred": true
  5483. }
  5484. ]
  5485. },
  5486. "require": {
  5487. "php": ">=7.2.5",
  5488. "symfony/deprecation-contracts": "^2.1|^3",
  5489. "symfony/polyfill-mbstring": "~1.0",
  5490. "symfony/polyfill-php73": "^1.9",
  5491. "symfony/polyfill-php80": "^1.16",
  5492. "symfony/service-contracts": "^1.1|^2|^3",
  5493. "symfony/string": "^5.1|^6.0"
  5494. },
  5495. "conflict": {
  5496. "psr/log": ">=3",
  5497. "symfony/dependency-injection": "<4.4",
  5498. "symfony/dotenv": "<5.1",
  5499. "symfony/event-dispatcher": "<4.4",
  5500. "symfony/lock": "<4.4",
  5501. "symfony/process": "<4.4"
  5502. },
  5503. "provide": {
  5504. "psr/log-implementation": "1.0|2.0"
  5505. },
  5506. "require-dev": {
  5507. "psr/log": "^1|^2",
  5508. "symfony/config": "^4.4|^5.0|^6.0",
  5509. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5510. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  5511. "symfony/lock": "^4.4|^5.0|^6.0",
  5512. "symfony/process": "^4.4|^5.0|^6.0",
  5513. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  5514. },
  5515. "suggest": {
  5516. "psr/log": "For using the console logger",
  5517. "symfony/event-dispatcher": "",
  5518. "symfony/lock": "",
  5519. "symfony/process": ""
  5520. },
  5521. "type": "library",
  5522. "autoload": {
  5523. "psr-4": {
  5524. "Symfony\\Component\\Console\\": ""
  5525. },
  5526. "exclude-from-classmap": [
  5527. "/Tests/"
  5528. ]
  5529. },
  5530. "notification-url": "https://packagist.org/downloads/",
  5531. "license": [
  5532. "MIT"
  5533. ],
  5534. "authors": [
  5535. {
  5536. "name": "Fabien Potencier",
  5537. "email": "fabien@symfony.com"
  5538. },
  5539. {
  5540. "name": "Symfony Community",
  5541. "homepage": "https://symfony.com/contributors"
  5542. }
  5543. ],
  5544. "description": "Eases the creation of beautiful and testable command line interfaces",
  5545. "homepage": "https://symfony.com",
  5546. "keywords": [
  5547. "cli",
  5548. "command-line",
  5549. "console",
  5550. "terminal"
  5551. ],
  5552. "support": {
  5553. "source": "https://github.com/symfony/console/tree/v5.4.47"
  5554. },
  5555. "funding": [
  5556. {
  5557. "url": "https://symfony.com/sponsor",
  5558. "type": "custom"
  5559. },
  5560. {
  5561. "url": "https://github.com/fabpot",
  5562. "type": "github"
  5563. },
  5564. {
  5565. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5566. "type": "tidelift"
  5567. }
  5568. ],
  5569. "time": "2024-11-06T11:30:55+00:00"
  5570. },
  5571. {
  5572. "name": "symfony/css-selector",
  5573. "version": "v6.0.19",
  5574. "source": {
  5575. "type": "git",
  5576. "url": "https://github.com/symfony/css-selector.git",
  5577. "reference": "f1d00bddb83a4cb2138564b2150001cb6ce272b1"
  5578. },
  5579. "dist": {
  5580. "type": "zip",
  5581. "url": "https://api.github.com/repos/symfony/css-selector/zipball/f1d00bddb83a4cb2138564b2150001cb6ce272b1",
  5582. "reference": "f1d00bddb83a4cb2138564b2150001cb6ce272b1",
  5583. "shasum": "",
  5584. "mirrors": [
  5585. {
  5586. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5587. "preferred": true
  5588. }
  5589. ]
  5590. },
  5591. "require": {
  5592. "php": ">=8.0.2"
  5593. },
  5594. "type": "library",
  5595. "autoload": {
  5596. "psr-4": {
  5597. "Symfony\\Component\\CssSelector\\": ""
  5598. },
  5599. "exclude-from-classmap": [
  5600. "/Tests/"
  5601. ]
  5602. },
  5603. "notification-url": "https://packagist.org/downloads/",
  5604. "license": [
  5605. "MIT"
  5606. ],
  5607. "authors": [
  5608. {
  5609. "name": "Fabien Potencier",
  5610. "email": "fabien@symfony.com"
  5611. },
  5612. {
  5613. "name": "Jean-François Simon",
  5614. "email": "jeanfrancois.simon@sensiolabs.com"
  5615. },
  5616. {
  5617. "name": "Symfony Community",
  5618. "homepage": "https://symfony.com/contributors"
  5619. }
  5620. ],
  5621. "description": "Converts CSS selectors to XPath expressions",
  5622. "homepage": "https://symfony.com",
  5623. "support": {
  5624. "source": "https://github.com/symfony/css-selector/tree/v6.0.19"
  5625. },
  5626. "funding": [
  5627. {
  5628. "url": "https://symfony.com/sponsor",
  5629. "type": "custom"
  5630. },
  5631. {
  5632. "url": "https://github.com/fabpot",
  5633. "type": "github"
  5634. },
  5635. {
  5636. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5637. "type": "tidelift"
  5638. }
  5639. ],
  5640. "time": "2023-01-01T08:36:10+00:00"
  5641. },
  5642. {
  5643. "name": "symfony/deprecation-contracts",
  5644. "version": "v3.0.2",
  5645. "source": {
  5646. "type": "git",
  5647. "url": "https://github.com/symfony/deprecation-contracts.git",
  5648. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c"
  5649. },
  5650. "dist": {
  5651. "type": "zip",
  5652. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  5653. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  5654. "shasum": "",
  5655. "mirrors": [
  5656. {
  5657. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5658. "preferred": true
  5659. }
  5660. ]
  5661. },
  5662. "require": {
  5663. "php": ">=8.0.2"
  5664. },
  5665. "type": "library",
  5666. "extra": {
  5667. "thanks": {
  5668. "url": "https://github.com/symfony/contracts",
  5669. "name": "symfony/contracts"
  5670. },
  5671. "branch-alias": {
  5672. "dev-main": "3.0-dev"
  5673. }
  5674. },
  5675. "autoload": {
  5676. "files": [
  5677. "function.php"
  5678. ]
  5679. },
  5680. "notification-url": "https://packagist.org/downloads/",
  5681. "license": [
  5682. "MIT"
  5683. ],
  5684. "authors": [
  5685. {
  5686. "name": "Nicolas Grekas",
  5687. "email": "p@tchwork.com"
  5688. },
  5689. {
  5690. "name": "Symfony Community",
  5691. "homepage": "https://symfony.com/contributors"
  5692. }
  5693. ],
  5694. "description": "A generic function and convention to trigger deprecation notices",
  5695. "homepage": "https://symfony.com",
  5696. "support": {
  5697. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.0.2"
  5698. },
  5699. "funding": [
  5700. {
  5701. "url": "https://symfony.com/sponsor",
  5702. "type": "custom"
  5703. },
  5704. {
  5705. "url": "https://github.com/fabpot",
  5706. "type": "github"
  5707. },
  5708. {
  5709. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5710. "type": "tidelift"
  5711. }
  5712. ],
  5713. "time": "2022-01-02T09:55:41+00:00"
  5714. },
  5715. {
  5716. "name": "symfony/error-handler",
  5717. "version": "v5.4.46",
  5718. "source": {
  5719. "type": "git",
  5720. "url": "https://github.com/symfony/error-handler.git",
  5721. "reference": "d19ede7a2cafb386be9486c580649d0f9e3d0363"
  5722. },
  5723. "dist": {
  5724. "type": "zip",
  5725. "url": "https://api.github.com/repos/symfony/error-handler/zipball/d19ede7a2cafb386be9486c580649d0f9e3d0363",
  5726. "reference": "d19ede7a2cafb386be9486c580649d0f9e3d0363",
  5727. "shasum": "",
  5728. "mirrors": [
  5729. {
  5730. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5731. "preferred": true
  5732. }
  5733. ]
  5734. },
  5735. "require": {
  5736. "php": ">=7.2.5",
  5737. "psr/log": "^1|^2|^3",
  5738. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  5739. },
  5740. "require-dev": {
  5741. "symfony/deprecation-contracts": "^2.1|^3",
  5742. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  5743. "symfony/serializer": "^4.4|^5.0|^6.0"
  5744. },
  5745. "bin": [
  5746. "Resources/bin/patch-type-declarations"
  5747. ],
  5748. "type": "library",
  5749. "autoload": {
  5750. "psr-4": {
  5751. "Symfony\\Component\\ErrorHandler\\": ""
  5752. },
  5753. "exclude-from-classmap": [
  5754. "/Tests/"
  5755. ]
  5756. },
  5757. "notification-url": "https://packagist.org/downloads/",
  5758. "license": [
  5759. "MIT"
  5760. ],
  5761. "authors": [
  5762. {
  5763. "name": "Fabien Potencier",
  5764. "email": "fabien@symfony.com"
  5765. },
  5766. {
  5767. "name": "Symfony Community",
  5768. "homepage": "https://symfony.com/contributors"
  5769. }
  5770. ],
  5771. "description": "Provides tools to manage errors and ease debugging PHP code",
  5772. "homepage": "https://symfony.com",
  5773. "support": {
  5774. "source": "https://github.com/symfony/error-handler/tree/v5.4.46"
  5775. },
  5776. "funding": [
  5777. {
  5778. "url": "https://symfony.com/sponsor",
  5779. "type": "custom"
  5780. },
  5781. {
  5782. "url": "https://github.com/fabpot",
  5783. "type": "github"
  5784. },
  5785. {
  5786. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5787. "type": "tidelift"
  5788. }
  5789. ],
  5790. "time": "2024-11-05T14:17:06+00:00"
  5791. },
  5792. {
  5793. "name": "symfony/event-dispatcher",
  5794. "version": "v6.0.19",
  5795. "source": {
  5796. "type": "git",
  5797. "url": "https://github.com/symfony/event-dispatcher.git",
  5798. "reference": "2eaf8e63bc5b8cefabd4a800157f0d0c094f677a"
  5799. },
  5800. "dist": {
  5801. "type": "zip",
  5802. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/2eaf8e63bc5b8cefabd4a800157f0d0c094f677a",
  5803. "reference": "2eaf8e63bc5b8cefabd4a800157f0d0c094f677a",
  5804. "shasum": "",
  5805. "mirrors": [
  5806. {
  5807. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5808. "preferred": true
  5809. }
  5810. ]
  5811. },
  5812. "require": {
  5813. "php": ">=8.0.2",
  5814. "symfony/event-dispatcher-contracts": "^2|^3"
  5815. },
  5816. "conflict": {
  5817. "symfony/dependency-injection": "<5.4"
  5818. },
  5819. "provide": {
  5820. "psr/event-dispatcher-implementation": "1.0",
  5821. "symfony/event-dispatcher-implementation": "2.0|3.0"
  5822. },
  5823. "require-dev": {
  5824. "psr/log": "^1|^2|^3",
  5825. "symfony/config": "^5.4|^6.0",
  5826. "symfony/dependency-injection": "^5.4|^6.0",
  5827. "symfony/error-handler": "^5.4|^6.0",
  5828. "symfony/expression-language": "^5.4|^6.0",
  5829. "symfony/http-foundation": "^5.4|^6.0",
  5830. "symfony/service-contracts": "^1.1|^2|^3",
  5831. "symfony/stopwatch": "^5.4|^6.0"
  5832. },
  5833. "suggest": {
  5834. "symfony/dependency-injection": "",
  5835. "symfony/http-kernel": ""
  5836. },
  5837. "type": "library",
  5838. "autoload": {
  5839. "psr-4": {
  5840. "Symfony\\Component\\EventDispatcher\\": ""
  5841. },
  5842. "exclude-from-classmap": [
  5843. "/Tests/"
  5844. ]
  5845. },
  5846. "notification-url": "https://packagist.org/downloads/",
  5847. "license": [
  5848. "MIT"
  5849. ],
  5850. "authors": [
  5851. {
  5852. "name": "Fabien Potencier",
  5853. "email": "fabien@symfony.com"
  5854. },
  5855. {
  5856. "name": "Symfony Community",
  5857. "homepage": "https://symfony.com/contributors"
  5858. }
  5859. ],
  5860. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5861. "homepage": "https://symfony.com",
  5862. "support": {
  5863. "source": "https://github.com/symfony/event-dispatcher/tree/v6.0.19"
  5864. },
  5865. "funding": [
  5866. {
  5867. "url": "https://symfony.com/sponsor",
  5868. "type": "custom"
  5869. },
  5870. {
  5871. "url": "https://github.com/fabpot",
  5872. "type": "github"
  5873. },
  5874. {
  5875. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5876. "type": "tidelift"
  5877. }
  5878. ],
  5879. "time": "2023-01-01T08:36:10+00:00"
  5880. },
  5881. {
  5882. "name": "symfony/event-dispatcher-contracts",
  5883. "version": "v3.0.2",
  5884. "source": {
  5885. "type": "git",
  5886. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5887. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051"
  5888. },
  5889. "dist": {
  5890. "type": "zip",
  5891. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7bc61cc2db649b4637d331240c5346dcc7708051",
  5892. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051",
  5893. "shasum": "",
  5894. "mirrors": [
  5895. {
  5896. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5897. "preferred": true
  5898. }
  5899. ]
  5900. },
  5901. "require": {
  5902. "php": ">=8.0.2",
  5903. "psr/event-dispatcher": "^1"
  5904. },
  5905. "suggest": {
  5906. "symfony/event-dispatcher-implementation": ""
  5907. },
  5908. "type": "library",
  5909. "extra": {
  5910. "thanks": {
  5911. "url": "https://github.com/symfony/contracts",
  5912. "name": "symfony/contracts"
  5913. },
  5914. "branch-alias": {
  5915. "dev-main": "3.0-dev"
  5916. }
  5917. },
  5918. "autoload": {
  5919. "psr-4": {
  5920. "Symfony\\Contracts\\EventDispatcher\\": ""
  5921. }
  5922. },
  5923. "notification-url": "https://packagist.org/downloads/",
  5924. "license": [
  5925. "MIT"
  5926. ],
  5927. "authors": [
  5928. {
  5929. "name": "Nicolas Grekas",
  5930. "email": "p@tchwork.com"
  5931. },
  5932. {
  5933. "name": "Symfony Community",
  5934. "homepage": "https://symfony.com/contributors"
  5935. }
  5936. ],
  5937. "description": "Generic abstractions related to dispatching event",
  5938. "homepage": "https://symfony.com",
  5939. "keywords": [
  5940. "abstractions",
  5941. "contracts",
  5942. "decoupling",
  5943. "interfaces",
  5944. "interoperability",
  5945. "standards"
  5946. ],
  5947. "support": {
  5948. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.0.2"
  5949. },
  5950. "funding": [
  5951. {
  5952. "url": "https://symfony.com/sponsor",
  5953. "type": "custom"
  5954. },
  5955. {
  5956. "url": "https://github.com/fabpot",
  5957. "type": "github"
  5958. },
  5959. {
  5960. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5961. "type": "tidelift"
  5962. }
  5963. ],
  5964. "time": "2022-01-02T09:55:41+00:00"
  5965. },
  5966. {
  5967. "name": "symfony/finder",
  5968. "version": "v5.4.45",
  5969. "source": {
  5970. "type": "git",
  5971. "url": "https://github.com/symfony/finder.git",
  5972. "reference": "63741784cd7b9967975eec610b256eed3ede022b"
  5973. },
  5974. "dist": {
  5975. "type": "zip",
  5976. "url": "https://api.github.com/repos/symfony/finder/zipball/63741784cd7b9967975eec610b256eed3ede022b",
  5977. "reference": "63741784cd7b9967975eec610b256eed3ede022b",
  5978. "shasum": "",
  5979. "mirrors": [
  5980. {
  5981. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5982. "preferred": true
  5983. }
  5984. ]
  5985. },
  5986. "require": {
  5987. "php": ">=7.2.5",
  5988. "symfony/deprecation-contracts": "^2.1|^3",
  5989. "symfony/polyfill-php80": "^1.16"
  5990. },
  5991. "type": "library",
  5992. "autoload": {
  5993. "psr-4": {
  5994. "Symfony\\Component\\Finder\\": ""
  5995. },
  5996. "exclude-from-classmap": [
  5997. "/Tests/"
  5998. ]
  5999. },
  6000. "notification-url": "https://packagist.org/downloads/",
  6001. "license": [
  6002. "MIT"
  6003. ],
  6004. "authors": [
  6005. {
  6006. "name": "Fabien Potencier",
  6007. "email": "fabien@symfony.com"
  6008. },
  6009. {
  6010. "name": "Symfony Community",
  6011. "homepage": "https://symfony.com/contributors"
  6012. }
  6013. ],
  6014. "description": "Finds files and directories via an intuitive fluent interface",
  6015. "homepage": "https://symfony.com",
  6016. "support": {
  6017. "source": "https://github.com/symfony/finder/tree/v5.4.45"
  6018. },
  6019. "funding": [
  6020. {
  6021. "url": "https://symfony.com/sponsor",
  6022. "type": "custom"
  6023. },
  6024. {
  6025. "url": "https://github.com/fabpot",
  6026. "type": "github"
  6027. },
  6028. {
  6029. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6030. "type": "tidelift"
  6031. }
  6032. ],
  6033. "time": "2024-09-28T13:32:08+00:00"
  6034. },
  6035. {
  6036. "name": "symfony/http-foundation",
  6037. "version": "v5.4.48",
  6038. "source": {
  6039. "type": "git",
  6040. "url": "https://github.com/symfony/http-foundation.git",
  6041. "reference": "3f38b8af283b830e1363acd79e5bc3412d055341"
  6042. },
  6043. "dist": {
  6044. "type": "zip",
  6045. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/3f38b8af283b830e1363acd79e5bc3412d055341",
  6046. "reference": "3f38b8af283b830e1363acd79e5bc3412d055341",
  6047. "shasum": "",
  6048. "mirrors": [
  6049. {
  6050. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6051. "preferred": true
  6052. }
  6053. ]
  6054. },
  6055. "require": {
  6056. "php": ">=7.2.5",
  6057. "symfony/deprecation-contracts": "^2.1|^3",
  6058. "symfony/polyfill-mbstring": "~1.1",
  6059. "symfony/polyfill-php80": "^1.16"
  6060. },
  6061. "require-dev": {
  6062. "predis/predis": "^1.0|^2.0",
  6063. "symfony/cache": "^4.4|^5.0|^6.0",
  6064. "symfony/dependency-injection": "^5.4|^6.0",
  6065. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6066. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  6067. "symfony/mime": "^4.4|^5.0|^6.0",
  6068. "symfony/rate-limiter": "^5.2|^6.0"
  6069. },
  6070. "suggest": {
  6071. "symfony/mime": "To use the file extension guesser"
  6072. },
  6073. "type": "library",
  6074. "autoload": {
  6075. "psr-4": {
  6076. "Symfony\\Component\\HttpFoundation\\": ""
  6077. },
  6078. "exclude-from-classmap": [
  6079. "/Tests/"
  6080. ]
  6081. },
  6082. "notification-url": "https://packagist.org/downloads/",
  6083. "license": [
  6084. "MIT"
  6085. ],
  6086. "authors": [
  6087. {
  6088. "name": "Fabien Potencier",
  6089. "email": "fabien@symfony.com"
  6090. },
  6091. {
  6092. "name": "Symfony Community",
  6093. "homepage": "https://symfony.com/contributors"
  6094. }
  6095. ],
  6096. "description": "Defines an object-oriented layer for the HTTP specification",
  6097. "homepage": "https://symfony.com",
  6098. "support": {
  6099. "source": "https://github.com/symfony/http-foundation/tree/v5.4.48"
  6100. },
  6101. "funding": [
  6102. {
  6103. "url": "https://symfony.com/sponsor",
  6104. "type": "custom"
  6105. },
  6106. {
  6107. "url": "https://github.com/fabpot",
  6108. "type": "github"
  6109. },
  6110. {
  6111. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6112. "type": "tidelift"
  6113. }
  6114. ],
  6115. "time": "2024-11-13T18:58:02+00:00"
  6116. },
  6117. {
  6118. "name": "symfony/http-kernel",
  6119. "version": "v5.4.48",
  6120. "source": {
  6121. "type": "git",
  6122. "url": "https://github.com/symfony/http-kernel.git",
  6123. "reference": "c2dbfc92b851404567160d1ecf3fb7d9b7bde9b0"
  6124. },
  6125. "dist": {
  6126. "type": "zip",
  6127. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/c2dbfc92b851404567160d1ecf3fb7d9b7bde9b0",
  6128. "reference": "c2dbfc92b851404567160d1ecf3fb7d9b7bde9b0",
  6129. "shasum": "",
  6130. "mirrors": [
  6131. {
  6132. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6133. "preferred": true
  6134. }
  6135. ]
  6136. },
  6137. "require": {
  6138. "php": ">=7.2.5",
  6139. "psr/log": "^1|^2",
  6140. "symfony/deprecation-contracts": "^2.1|^3",
  6141. "symfony/error-handler": "^4.4|^5.0|^6.0",
  6142. "symfony/event-dispatcher": "^5.0|^6.0",
  6143. "symfony/http-foundation": "^5.4.21|^6.2.7",
  6144. "symfony/polyfill-ctype": "^1.8",
  6145. "symfony/polyfill-php73": "^1.9",
  6146. "symfony/polyfill-php80": "^1.16"
  6147. },
  6148. "conflict": {
  6149. "symfony/browser-kit": "<5.4",
  6150. "symfony/cache": "<5.0",
  6151. "symfony/config": "<5.0",
  6152. "symfony/console": "<4.4",
  6153. "symfony/dependency-injection": "<5.3",
  6154. "symfony/doctrine-bridge": "<5.0",
  6155. "symfony/form": "<5.0",
  6156. "symfony/http-client": "<5.0",
  6157. "symfony/mailer": "<5.0",
  6158. "symfony/messenger": "<5.0",
  6159. "symfony/translation": "<5.0",
  6160. "symfony/twig-bridge": "<5.0",
  6161. "symfony/validator": "<5.0",
  6162. "twig/twig": "<2.13"
  6163. },
  6164. "provide": {
  6165. "psr/log-implementation": "1.0|2.0"
  6166. },
  6167. "require-dev": {
  6168. "psr/cache": "^1.0|^2.0|^3.0",
  6169. "symfony/browser-kit": "^5.4|^6.0",
  6170. "symfony/config": "^5.0|^6.0",
  6171. "symfony/console": "^4.4|^5.0|^6.0",
  6172. "symfony/css-selector": "^4.4|^5.0|^6.0",
  6173. "symfony/dependency-injection": "^5.3|^6.0",
  6174. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  6175. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6176. "symfony/finder": "^4.4|^5.0|^6.0",
  6177. "symfony/http-client-contracts": "^1.1|^2|^3",
  6178. "symfony/process": "^4.4|^5.0|^6.0",
  6179. "symfony/routing": "^4.4|^5.0|^6.0",
  6180. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  6181. "symfony/translation": "^4.4|^5.0|^6.0",
  6182. "symfony/translation-contracts": "^1.1|^2|^3",
  6183. "symfony/var-dumper": "^4.4.31|^5.4",
  6184. "twig/twig": "^2.13|^3.0.4"
  6185. },
  6186. "suggest": {
  6187. "symfony/browser-kit": "",
  6188. "symfony/config": "",
  6189. "symfony/console": "",
  6190. "symfony/dependency-injection": ""
  6191. },
  6192. "type": "library",
  6193. "autoload": {
  6194. "psr-4": {
  6195. "Symfony\\Component\\HttpKernel\\": ""
  6196. },
  6197. "exclude-from-classmap": [
  6198. "/Tests/"
  6199. ]
  6200. },
  6201. "notification-url": "https://packagist.org/downloads/",
  6202. "license": [
  6203. "MIT"
  6204. ],
  6205. "authors": [
  6206. {
  6207. "name": "Fabien Potencier",
  6208. "email": "fabien@symfony.com"
  6209. },
  6210. {
  6211. "name": "Symfony Community",
  6212. "homepage": "https://symfony.com/contributors"
  6213. }
  6214. ],
  6215. "description": "Provides a structured process for converting a Request into a Response",
  6216. "homepage": "https://symfony.com",
  6217. "support": {
  6218. "source": "https://github.com/symfony/http-kernel/tree/v5.4.48"
  6219. },
  6220. "funding": [
  6221. {
  6222. "url": "https://symfony.com/sponsor",
  6223. "type": "custom"
  6224. },
  6225. {
  6226. "url": "https://github.com/fabpot",
  6227. "type": "github"
  6228. },
  6229. {
  6230. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6231. "type": "tidelift"
  6232. }
  6233. ],
  6234. "time": "2024-11-27T12:43:17+00:00"
  6235. },
  6236. {
  6237. "name": "symfony/mime",
  6238. "version": "v5.4.45",
  6239. "source": {
  6240. "type": "git",
  6241. "url": "https://github.com/symfony/mime.git",
  6242. "reference": "8c1b9b3e5b52981551fc6044539af1d974e39064"
  6243. },
  6244. "dist": {
  6245. "type": "zip",
  6246. "url": "https://api.github.com/repos/symfony/mime/zipball/8c1b9b3e5b52981551fc6044539af1d974e39064",
  6247. "reference": "8c1b9b3e5b52981551fc6044539af1d974e39064",
  6248. "shasum": "",
  6249. "mirrors": [
  6250. {
  6251. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6252. "preferred": true
  6253. }
  6254. ]
  6255. },
  6256. "require": {
  6257. "php": ">=7.2.5",
  6258. "symfony/deprecation-contracts": "^2.1|^3",
  6259. "symfony/polyfill-intl-idn": "^1.10",
  6260. "symfony/polyfill-mbstring": "^1.0",
  6261. "symfony/polyfill-php80": "^1.16"
  6262. },
  6263. "conflict": {
  6264. "egulias/email-validator": "~3.0.0",
  6265. "phpdocumentor/reflection-docblock": "<3.2.2",
  6266. "phpdocumentor/type-resolver": "<1.4.0",
  6267. "symfony/mailer": "<4.4",
  6268. "symfony/serializer": "<5.4.35|>=6,<6.3.12|>=6.4,<6.4.3"
  6269. },
  6270. "require-dev": {
  6271. "egulias/email-validator": "^2.1.10|^3.1|^4",
  6272. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6273. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6274. "symfony/process": "^5.4|^6.4",
  6275. "symfony/property-access": "^4.4|^5.1|^6.0",
  6276. "symfony/property-info": "^4.4|^5.1|^6.0",
  6277. "symfony/serializer": "^5.4.35|~6.3.12|^6.4.3"
  6278. },
  6279. "type": "library",
  6280. "autoload": {
  6281. "psr-4": {
  6282. "Symfony\\Component\\Mime\\": ""
  6283. },
  6284. "exclude-from-classmap": [
  6285. "/Tests/"
  6286. ]
  6287. },
  6288. "notification-url": "https://packagist.org/downloads/",
  6289. "license": [
  6290. "MIT"
  6291. ],
  6292. "authors": [
  6293. {
  6294. "name": "Fabien Potencier",
  6295. "email": "fabien@symfony.com"
  6296. },
  6297. {
  6298. "name": "Symfony Community",
  6299. "homepage": "https://symfony.com/contributors"
  6300. }
  6301. ],
  6302. "description": "Allows manipulating MIME messages",
  6303. "homepage": "https://symfony.com",
  6304. "keywords": [
  6305. "mime",
  6306. "mime-type"
  6307. ],
  6308. "support": {
  6309. "source": "https://github.com/symfony/mime/tree/v5.4.45"
  6310. },
  6311. "funding": [
  6312. {
  6313. "url": "https://symfony.com/sponsor",
  6314. "type": "custom"
  6315. },
  6316. {
  6317. "url": "https://github.com/fabpot",
  6318. "type": "github"
  6319. },
  6320. {
  6321. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6322. "type": "tidelift"
  6323. }
  6324. ],
  6325. "time": "2024-10-23T20:18:32+00:00"
  6326. },
  6327. {
  6328. "name": "symfony/polyfill-ctype",
  6329. "version": "v1.32.0",
  6330. "source": {
  6331. "type": "git",
  6332. "url": "https://github.com/symfony/polyfill-ctype.git",
  6333. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  6334. },
  6335. "dist": {
  6336. "type": "zip",
  6337. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  6338. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  6339. "shasum": "",
  6340. "mirrors": [
  6341. {
  6342. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6343. "preferred": true
  6344. }
  6345. ]
  6346. },
  6347. "require": {
  6348. "php": ">=7.2"
  6349. },
  6350. "provide": {
  6351. "ext-ctype": "*"
  6352. },
  6353. "suggest": {
  6354. "ext-ctype": "For best performance"
  6355. },
  6356. "type": "library",
  6357. "extra": {
  6358. "thanks": {
  6359. "url": "https://github.com/symfony/polyfill",
  6360. "name": "symfony/polyfill"
  6361. }
  6362. },
  6363. "autoload": {
  6364. "files": [
  6365. "bootstrap.php"
  6366. ],
  6367. "psr-4": {
  6368. "Symfony\\Polyfill\\Ctype\\": ""
  6369. }
  6370. },
  6371. "notification-url": "https://packagist.org/downloads/",
  6372. "license": [
  6373. "MIT"
  6374. ],
  6375. "authors": [
  6376. {
  6377. "name": "Gert de Pagter",
  6378. "email": "BackEndTea@gmail.com"
  6379. },
  6380. {
  6381. "name": "Symfony Community",
  6382. "homepage": "https://symfony.com/contributors"
  6383. }
  6384. ],
  6385. "description": "Symfony polyfill for ctype functions",
  6386. "homepage": "https://symfony.com",
  6387. "keywords": [
  6388. "compatibility",
  6389. "ctype",
  6390. "polyfill",
  6391. "portable"
  6392. ],
  6393. "support": {
  6394. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.32.0"
  6395. },
  6396. "funding": [
  6397. {
  6398. "url": "https://symfony.com/sponsor",
  6399. "type": "custom"
  6400. },
  6401. {
  6402. "url": "https://github.com/fabpot",
  6403. "type": "github"
  6404. },
  6405. {
  6406. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6407. "type": "tidelift"
  6408. }
  6409. ],
  6410. "time": "2024-09-09T11:45:10+00:00"
  6411. },
  6412. {
  6413. "name": "symfony/polyfill-iconv",
  6414. "version": "v1.32.0",
  6415. "source": {
  6416. "type": "git",
  6417. "url": "https://github.com/symfony/polyfill-iconv.git",
  6418. "reference": "5f3b930437ae03ae5dff61269024d8ea1b3774aa"
  6419. },
  6420. "dist": {
  6421. "type": "zip",
  6422. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/5f3b930437ae03ae5dff61269024d8ea1b3774aa",
  6423. "reference": "5f3b930437ae03ae5dff61269024d8ea1b3774aa",
  6424. "shasum": "",
  6425. "mirrors": [
  6426. {
  6427. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6428. "preferred": true
  6429. }
  6430. ]
  6431. },
  6432. "require": {
  6433. "php": ">=7.2"
  6434. },
  6435. "provide": {
  6436. "ext-iconv": "*"
  6437. },
  6438. "suggest": {
  6439. "ext-iconv": "For best performance"
  6440. },
  6441. "type": "library",
  6442. "extra": {
  6443. "thanks": {
  6444. "url": "https://github.com/symfony/polyfill",
  6445. "name": "symfony/polyfill"
  6446. }
  6447. },
  6448. "autoload": {
  6449. "files": [
  6450. "bootstrap.php"
  6451. ],
  6452. "psr-4": {
  6453. "Symfony\\Polyfill\\Iconv\\": ""
  6454. }
  6455. },
  6456. "notification-url": "https://packagist.org/downloads/",
  6457. "license": [
  6458. "MIT"
  6459. ],
  6460. "authors": [
  6461. {
  6462. "name": "Nicolas Grekas",
  6463. "email": "p@tchwork.com"
  6464. },
  6465. {
  6466. "name": "Symfony Community",
  6467. "homepage": "https://symfony.com/contributors"
  6468. }
  6469. ],
  6470. "description": "Symfony polyfill for the Iconv extension",
  6471. "homepage": "https://symfony.com",
  6472. "keywords": [
  6473. "compatibility",
  6474. "iconv",
  6475. "polyfill",
  6476. "portable",
  6477. "shim"
  6478. ],
  6479. "support": {
  6480. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.32.0"
  6481. },
  6482. "funding": [
  6483. {
  6484. "url": "https://symfony.com/sponsor",
  6485. "type": "custom"
  6486. },
  6487. {
  6488. "url": "https://github.com/fabpot",
  6489. "type": "github"
  6490. },
  6491. {
  6492. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6493. "type": "tidelift"
  6494. }
  6495. ],
  6496. "time": "2024-09-17T14:58:18+00:00"
  6497. },
  6498. {
  6499. "name": "symfony/polyfill-intl-grapheme",
  6500. "version": "v1.32.0",
  6501. "source": {
  6502. "type": "git",
  6503. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6504. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  6505. },
  6506. "dist": {
  6507. "type": "zip",
  6508. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  6509. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  6510. "shasum": "",
  6511. "mirrors": [
  6512. {
  6513. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6514. "preferred": true
  6515. }
  6516. ]
  6517. },
  6518. "require": {
  6519. "php": ">=7.2"
  6520. },
  6521. "suggest": {
  6522. "ext-intl": "For best performance"
  6523. },
  6524. "type": "library",
  6525. "extra": {
  6526. "thanks": {
  6527. "url": "https://github.com/symfony/polyfill",
  6528. "name": "symfony/polyfill"
  6529. }
  6530. },
  6531. "autoload": {
  6532. "files": [
  6533. "bootstrap.php"
  6534. ],
  6535. "psr-4": {
  6536. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6537. }
  6538. },
  6539. "notification-url": "https://packagist.org/downloads/",
  6540. "license": [
  6541. "MIT"
  6542. ],
  6543. "authors": [
  6544. {
  6545. "name": "Nicolas Grekas",
  6546. "email": "p@tchwork.com"
  6547. },
  6548. {
  6549. "name": "Symfony Community",
  6550. "homepage": "https://symfony.com/contributors"
  6551. }
  6552. ],
  6553. "description": "Symfony polyfill for intl's grapheme_* functions",
  6554. "homepage": "https://symfony.com",
  6555. "keywords": [
  6556. "compatibility",
  6557. "grapheme",
  6558. "intl",
  6559. "polyfill",
  6560. "portable",
  6561. "shim"
  6562. ],
  6563. "support": {
  6564. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.32.0"
  6565. },
  6566. "funding": [
  6567. {
  6568. "url": "https://symfony.com/sponsor",
  6569. "type": "custom"
  6570. },
  6571. {
  6572. "url": "https://github.com/fabpot",
  6573. "type": "github"
  6574. },
  6575. {
  6576. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6577. "type": "tidelift"
  6578. }
  6579. ],
  6580. "time": "2024-09-09T11:45:10+00:00"
  6581. },
  6582. {
  6583. "name": "symfony/polyfill-intl-idn",
  6584. "version": "v1.32.0",
  6585. "source": {
  6586. "type": "git",
  6587. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6588. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3"
  6589. },
  6590. "dist": {
  6591. "type": "zip",
  6592. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  6593. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  6594. "shasum": "",
  6595. "mirrors": [
  6596. {
  6597. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6598. "preferred": true
  6599. }
  6600. ]
  6601. },
  6602. "require": {
  6603. "php": ">=7.2",
  6604. "symfony/polyfill-intl-normalizer": "^1.10"
  6605. },
  6606. "suggest": {
  6607. "ext-intl": "For best performance"
  6608. },
  6609. "type": "library",
  6610. "extra": {
  6611. "thanks": {
  6612. "url": "https://github.com/symfony/polyfill",
  6613. "name": "symfony/polyfill"
  6614. }
  6615. },
  6616. "autoload": {
  6617. "files": [
  6618. "bootstrap.php"
  6619. ],
  6620. "psr-4": {
  6621. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6622. }
  6623. },
  6624. "notification-url": "https://packagist.org/downloads/",
  6625. "license": [
  6626. "MIT"
  6627. ],
  6628. "authors": [
  6629. {
  6630. "name": "Laurent Bassin",
  6631. "email": "laurent@bassin.info"
  6632. },
  6633. {
  6634. "name": "Trevor Rowbotham",
  6635. "email": "trevor.rowbotham@pm.me"
  6636. },
  6637. {
  6638. "name": "Symfony Community",
  6639. "homepage": "https://symfony.com/contributors"
  6640. }
  6641. ],
  6642. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6643. "homepage": "https://symfony.com",
  6644. "keywords": [
  6645. "compatibility",
  6646. "idn",
  6647. "intl",
  6648. "polyfill",
  6649. "portable",
  6650. "shim"
  6651. ],
  6652. "support": {
  6653. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.32.0"
  6654. },
  6655. "funding": [
  6656. {
  6657. "url": "https://symfony.com/sponsor",
  6658. "type": "custom"
  6659. },
  6660. {
  6661. "url": "https://github.com/fabpot",
  6662. "type": "github"
  6663. },
  6664. {
  6665. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6666. "type": "tidelift"
  6667. }
  6668. ],
  6669. "time": "2024-09-10T14:38:51+00:00"
  6670. },
  6671. {
  6672. "name": "symfony/polyfill-intl-normalizer",
  6673. "version": "v1.32.0",
  6674. "source": {
  6675. "type": "git",
  6676. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6677. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  6678. },
  6679. "dist": {
  6680. "type": "zip",
  6681. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  6682. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  6683. "shasum": "",
  6684. "mirrors": [
  6685. {
  6686. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6687. "preferred": true
  6688. }
  6689. ]
  6690. },
  6691. "require": {
  6692. "php": ">=7.2"
  6693. },
  6694. "suggest": {
  6695. "ext-intl": "For best performance"
  6696. },
  6697. "type": "library",
  6698. "extra": {
  6699. "thanks": {
  6700. "url": "https://github.com/symfony/polyfill",
  6701. "name": "symfony/polyfill"
  6702. }
  6703. },
  6704. "autoload": {
  6705. "files": [
  6706. "bootstrap.php"
  6707. ],
  6708. "psr-4": {
  6709. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6710. },
  6711. "classmap": [
  6712. "Resources/stubs"
  6713. ]
  6714. },
  6715. "notification-url": "https://packagist.org/downloads/",
  6716. "license": [
  6717. "MIT"
  6718. ],
  6719. "authors": [
  6720. {
  6721. "name": "Nicolas Grekas",
  6722. "email": "p@tchwork.com"
  6723. },
  6724. {
  6725. "name": "Symfony Community",
  6726. "homepage": "https://symfony.com/contributors"
  6727. }
  6728. ],
  6729. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6730. "homepage": "https://symfony.com",
  6731. "keywords": [
  6732. "compatibility",
  6733. "intl",
  6734. "normalizer",
  6735. "polyfill",
  6736. "portable",
  6737. "shim"
  6738. ],
  6739. "support": {
  6740. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.32.0"
  6741. },
  6742. "funding": [
  6743. {
  6744. "url": "https://symfony.com/sponsor",
  6745. "type": "custom"
  6746. },
  6747. {
  6748. "url": "https://github.com/fabpot",
  6749. "type": "github"
  6750. },
  6751. {
  6752. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6753. "type": "tidelift"
  6754. }
  6755. ],
  6756. "time": "2024-09-09T11:45:10+00:00"
  6757. },
  6758. {
  6759. "name": "symfony/polyfill-mbstring",
  6760. "version": "v1.32.0",
  6761. "source": {
  6762. "type": "git",
  6763. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6764. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
  6765. },
  6766. "dist": {
  6767. "type": "zip",
  6768. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
  6769. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
  6770. "shasum": "",
  6771. "mirrors": [
  6772. {
  6773. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6774. "preferred": true
  6775. }
  6776. ]
  6777. },
  6778. "require": {
  6779. "ext-iconv": "*",
  6780. "php": ">=7.2"
  6781. },
  6782. "provide": {
  6783. "ext-mbstring": "*"
  6784. },
  6785. "suggest": {
  6786. "ext-mbstring": "For best performance"
  6787. },
  6788. "type": "library",
  6789. "extra": {
  6790. "thanks": {
  6791. "url": "https://github.com/symfony/polyfill",
  6792. "name": "symfony/polyfill"
  6793. }
  6794. },
  6795. "autoload": {
  6796. "files": [
  6797. "bootstrap.php"
  6798. ],
  6799. "psr-4": {
  6800. "Symfony\\Polyfill\\Mbstring\\": ""
  6801. }
  6802. },
  6803. "notification-url": "https://packagist.org/downloads/",
  6804. "license": [
  6805. "MIT"
  6806. ],
  6807. "authors": [
  6808. {
  6809. "name": "Nicolas Grekas",
  6810. "email": "p@tchwork.com"
  6811. },
  6812. {
  6813. "name": "Symfony Community",
  6814. "homepage": "https://symfony.com/contributors"
  6815. }
  6816. ],
  6817. "description": "Symfony polyfill for the Mbstring extension",
  6818. "homepage": "https://symfony.com",
  6819. "keywords": [
  6820. "compatibility",
  6821. "mbstring",
  6822. "polyfill",
  6823. "portable",
  6824. "shim"
  6825. ],
  6826. "support": {
  6827. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.32.0"
  6828. },
  6829. "funding": [
  6830. {
  6831. "url": "https://symfony.com/sponsor",
  6832. "type": "custom"
  6833. },
  6834. {
  6835. "url": "https://github.com/fabpot",
  6836. "type": "github"
  6837. },
  6838. {
  6839. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6840. "type": "tidelift"
  6841. }
  6842. ],
  6843. "time": "2024-12-23T08:48:59+00:00"
  6844. },
  6845. {
  6846. "name": "symfony/polyfill-php73",
  6847. "version": "v1.32.0",
  6848. "source": {
  6849. "type": "git",
  6850. "url": "https://github.com/symfony/polyfill-php73.git",
  6851. "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb"
  6852. },
  6853. "dist": {
  6854. "type": "zip",
  6855. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
  6856. "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
  6857. "shasum": "",
  6858. "mirrors": [
  6859. {
  6860. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6861. "preferred": true
  6862. }
  6863. ]
  6864. },
  6865. "require": {
  6866. "php": ">=7.2"
  6867. },
  6868. "type": "library",
  6869. "extra": {
  6870. "thanks": {
  6871. "url": "https://github.com/symfony/polyfill",
  6872. "name": "symfony/polyfill"
  6873. }
  6874. },
  6875. "autoload": {
  6876. "files": [
  6877. "bootstrap.php"
  6878. ],
  6879. "psr-4": {
  6880. "Symfony\\Polyfill\\Php73\\": ""
  6881. },
  6882. "classmap": [
  6883. "Resources/stubs"
  6884. ]
  6885. },
  6886. "notification-url": "https://packagist.org/downloads/",
  6887. "license": [
  6888. "MIT"
  6889. ],
  6890. "authors": [
  6891. {
  6892. "name": "Nicolas Grekas",
  6893. "email": "p@tchwork.com"
  6894. },
  6895. {
  6896. "name": "Symfony Community",
  6897. "homepage": "https://symfony.com/contributors"
  6898. }
  6899. ],
  6900. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  6901. "homepage": "https://symfony.com",
  6902. "keywords": [
  6903. "compatibility",
  6904. "polyfill",
  6905. "portable",
  6906. "shim"
  6907. ],
  6908. "support": {
  6909. "source": "https://github.com/symfony/polyfill-php73/tree/v1.32.0"
  6910. },
  6911. "funding": [
  6912. {
  6913. "url": "https://symfony.com/sponsor",
  6914. "type": "custom"
  6915. },
  6916. {
  6917. "url": "https://github.com/fabpot",
  6918. "type": "github"
  6919. },
  6920. {
  6921. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6922. "type": "tidelift"
  6923. }
  6924. ],
  6925. "time": "2024-09-09T11:45:10+00:00"
  6926. },
  6927. {
  6928. "name": "symfony/polyfill-php80",
  6929. "version": "v1.32.0",
  6930. "source": {
  6931. "type": "git",
  6932. "url": "https://github.com/symfony/polyfill-php80.git",
  6933. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608"
  6934. },
  6935. "dist": {
  6936. "type": "zip",
  6937. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  6938. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  6939. "shasum": "",
  6940. "mirrors": [
  6941. {
  6942. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6943. "preferred": true
  6944. }
  6945. ]
  6946. },
  6947. "require": {
  6948. "php": ">=7.2"
  6949. },
  6950. "type": "library",
  6951. "extra": {
  6952. "thanks": {
  6953. "url": "https://github.com/symfony/polyfill",
  6954. "name": "symfony/polyfill"
  6955. }
  6956. },
  6957. "autoload": {
  6958. "files": [
  6959. "bootstrap.php"
  6960. ],
  6961. "psr-4": {
  6962. "Symfony\\Polyfill\\Php80\\": ""
  6963. },
  6964. "classmap": [
  6965. "Resources/stubs"
  6966. ]
  6967. },
  6968. "notification-url": "https://packagist.org/downloads/",
  6969. "license": [
  6970. "MIT"
  6971. ],
  6972. "authors": [
  6973. {
  6974. "name": "Ion Bazan",
  6975. "email": "ion.bazan@gmail.com"
  6976. },
  6977. {
  6978. "name": "Nicolas Grekas",
  6979. "email": "p@tchwork.com"
  6980. },
  6981. {
  6982. "name": "Symfony Community",
  6983. "homepage": "https://symfony.com/contributors"
  6984. }
  6985. ],
  6986. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6987. "homepage": "https://symfony.com",
  6988. "keywords": [
  6989. "compatibility",
  6990. "polyfill",
  6991. "portable",
  6992. "shim"
  6993. ],
  6994. "support": {
  6995. "source": "https://github.com/symfony/polyfill-php80/tree/v1.32.0"
  6996. },
  6997. "funding": [
  6998. {
  6999. "url": "https://symfony.com/sponsor",
  7000. "type": "custom"
  7001. },
  7002. {
  7003. "url": "https://github.com/fabpot",
  7004. "type": "github"
  7005. },
  7006. {
  7007. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7008. "type": "tidelift"
  7009. }
  7010. ],
  7011. "time": "2025-01-02T08:10:11+00:00"
  7012. },
  7013. {
  7014. "name": "symfony/polyfill-php81",
  7015. "version": "v1.32.0",
  7016. "source": {
  7017. "type": "git",
  7018. "url": "https://github.com/symfony/polyfill-php81.git",
  7019. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  7020. },
  7021. "dist": {
  7022. "type": "zip",
  7023. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  7024. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  7025. "shasum": "",
  7026. "mirrors": [
  7027. {
  7028. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7029. "preferred": true
  7030. }
  7031. ]
  7032. },
  7033. "require": {
  7034. "php": ">=7.2"
  7035. },
  7036. "type": "library",
  7037. "extra": {
  7038. "thanks": {
  7039. "url": "https://github.com/symfony/polyfill",
  7040. "name": "symfony/polyfill"
  7041. }
  7042. },
  7043. "autoload": {
  7044. "files": [
  7045. "bootstrap.php"
  7046. ],
  7047. "psr-4": {
  7048. "Symfony\\Polyfill\\Php81\\": ""
  7049. },
  7050. "classmap": [
  7051. "Resources/stubs"
  7052. ]
  7053. },
  7054. "notification-url": "https://packagist.org/downloads/",
  7055. "license": [
  7056. "MIT"
  7057. ],
  7058. "authors": [
  7059. {
  7060. "name": "Nicolas Grekas",
  7061. "email": "p@tchwork.com"
  7062. },
  7063. {
  7064. "name": "Symfony Community",
  7065. "homepage": "https://symfony.com/contributors"
  7066. }
  7067. ],
  7068. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  7069. "homepage": "https://symfony.com",
  7070. "keywords": [
  7071. "compatibility",
  7072. "polyfill",
  7073. "portable",
  7074. "shim"
  7075. ],
  7076. "support": {
  7077. "source": "https://github.com/symfony/polyfill-php81/tree/v1.32.0"
  7078. },
  7079. "funding": [
  7080. {
  7081. "url": "https://symfony.com/sponsor",
  7082. "type": "custom"
  7083. },
  7084. {
  7085. "url": "https://github.com/fabpot",
  7086. "type": "github"
  7087. },
  7088. {
  7089. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7090. "type": "tidelift"
  7091. }
  7092. ],
  7093. "time": "2024-09-09T11:45:10+00:00"
  7094. },
  7095. {
  7096. "name": "symfony/process",
  7097. "version": "v5.4.47",
  7098. "source": {
  7099. "type": "git",
  7100. "url": "https://github.com/symfony/process.git",
  7101. "reference": "5d1662fb32ebc94f17ddb8d635454a776066733d"
  7102. },
  7103. "dist": {
  7104. "type": "zip",
  7105. "url": "https://api.github.com/repos/symfony/process/zipball/5d1662fb32ebc94f17ddb8d635454a776066733d",
  7106. "reference": "5d1662fb32ebc94f17ddb8d635454a776066733d",
  7107. "shasum": "",
  7108. "mirrors": [
  7109. {
  7110. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7111. "preferred": true
  7112. }
  7113. ]
  7114. },
  7115. "require": {
  7116. "php": ">=7.2.5",
  7117. "symfony/polyfill-php80": "^1.16"
  7118. },
  7119. "type": "library",
  7120. "autoload": {
  7121. "psr-4": {
  7122. "Symfony\\Component\\Process\\": ""
  7123. },
  7124. "exclude-from-classmap": [
  7125. "/Tests/"
  7126. ]
  7127. },
  7128. "notification-url": "https://packagist.org/downloads/",
  7129. "license": [
  7130. "MIT"
  7131. ],
  7132. "authors": [
  7133. {
  7134. "name": "Fabien Potencier",
  7135. "email": "fabien@symfony.com"
  7136. },
  7137. {
  7138. "name": "Symfony Community",
  7139. "homepage": "https://symfony.com/contributors"
  7140. }
  7141. ],
  7142. "description": "Executes commands in sub-processes",
  7143. "homepage": "https://symfony.com",
  7144. "support": {
  7145. "source": "https://github.com/symfony/process/tree/v5.4.47"
  7146. },
  7147. "funding": [
  7148. {
  7149. "url": "https://symfony.com/sponsor",
  7150. "type": "custom"
  7151. },
  7152. {
  7153. "url": "https://github.com/fabpot",
  7154. "type": "github"
  7155. },
  7156. {
  7157. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7158. "type": "tidelift"
  7159. }
  7160. ],
  7161. "time": "2024-11-06T11:36:42+00:00"
  7162. },
  7163. {
  7164. "name": "symfony/routing",
  7165. "version": "v5.4.48",
  7166. "source": {
  7167. "type": "git",
  7168. "url": "https://github.com/symfony/routing.git",
  7169. "reference": "dd08c19879a9b37ff14fd30dcbdf99a4cf045db1"
  7170. },
  7171. "dist": {
  7172. "type": "zip",
  7173. "url": "https://api.github.com/repos/symfony/routing/zipball/dd08c19879a9b37ff14fd30dcbdf99a4cf045db1",
  7174. "reference": "dd08c19879a9b37ff14fd30dcbdf99a4cf045db1",
  7175. "shasum": "",
  7176. "mirrors": [
  7177. {
  7178. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7179. "preferred": true
  7180. }
  7181. ]
  7182. },
  7183. "require": {
  7184. "php": ">=7.2.5",
  7185. "symfony/deprecation-contracts": "^2.1|^3",
  7186. "symfony/polyfill-php80": "^1.16"
  7187. },
  7188. "conflict": {
  7189. "doctrine/annotations": "<1.12",
  7190. "symfony/config": "<5.3",
  7191. "symfony/dependency-injection": "<4.4",
  7192. "symfony/yaml": "<4.4"
  7193. },
  7194. "require-dev": {
  7195. "doctrine/annotations": "^1.12|^2",
  7196. "psr/log": "^1|^2|^3",
  7197. "symfony/config": "^5.3|^6.0",
  7198. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  7199. "symfony/expression-language": "^4.4|^5.0|^6.0",
  7200. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  7201. "symfony/yaml": "^4.4|^5.0|^6.0"
  7202. },
  7203. "suggest": {
  7204. "symfony/config": "For using the all-in-one router or any loader",
  7205. "symfony/expression-language": "For using expression matching",
  7206. "symfony/http-foundation": "For using a Symfony Request object",
  7207. "symfony/yaml": "For using the YAML loader"
  7208. },
  7209. "type": "library",
  7210. "autoload": {
  7211. "psr-4": {
  7212. "Symfony\\Component\\Routing\\": ""
  7213. },
  7214. "exclude-from-classmap": [
  7215. "/Tests/"
  7216. ]
  7217. },
  7218. "notification-url": "https://packagist.org/downloads/",
  7219. "license": [
  7220. "MIT"
  7221. ],
  7222. "authors": [
  7223. {
  7224. "name": "Fabien Potencier",
  7225. "email": "fabien@symfony.com"
  7226. },
  7227. {
  7228. "name": "Symfony Community",
  7229. "homepage": "https://symfony.com/contributors"
  7230. }
  7231. ],
  7232. "description": "Maps an HTTP request to a set of configuration variables",
  7233. "homepage": "https://symfony.com",
  7234. "keywords": [
  7235. "router",
  7236. "routing",
  7237. "uri",
  7238. "url"
  7239. ],
  7240. "support": {
  7241. "source": "https://github.com/symfony/routing/tree/v5.4.48"
  7242. },
  7243. "funding": [
  7244. {
  7245. "url": "https://symfony.com/sponsor",
  7246. "type": "custom"
  7247. },
  7248. {
  7249. "url": "https://github.com/fabpot",
  7250. "type": "github"
  7251. },
  7252. {
  7253. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7254. "type": "tidelift"
  7255. }
  7256. ],
  7257. "time": "2024-11-12T18:20:21+00:00"
  7258. },
  7259. {
  7260. "name": "symfony/service-contracts",
  7261. "version": "v2.5.4",
  7262. "source": {
  7263. "type": "git",
  7264. "url": "https://github.com/symfony/service-contracts.git",
  7265. "reference": "f37b419f7aea2e9abf10abd261832cace12e3300"
  7266. },
  7267. "dist": {
  7268. "type": "zip",
  7269. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f37b419f7aea2e9abf10abd261832cace12e3300",
  7270. "reference": "f37b419f7aea2e9abf10abd261832cace12e3300",
  7271. "shasum": "",
  7272. "mirrors": [
  7273. {
  7274. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7275. "preferred": true
  7276. }
  7277. ]
  7278. },
  7279. "require": {
  7280. "php": ">=7.2.5",
  7281. "psr/container": "^1.1",
  7282. "symfony/deprecation-contracts": "^2.1|^3"
  7283. },
  7284. "conflict": {
  7285. "ext-psr": "<1.1|>=2"
  7286. },
  7287. "suggest": {
  7288. "symfony/service-implementation": ""
  7289. },
  7290. "type": "library",
  7291. "extra": {
  7292. "thanks": {
  7293. "url": "https://github.com/symfony/contracts",
  7294. "name": "symfony/contracts"
  7295. },
  7296. "branch-alias": {
  7297. "dev-main": "2.5-dev"
  7298. }
  7299. },
  7300. "autoload": {
  7301. "psr-4": {
  7302. "Symfony\\Contracts\\Service\\": ""
  7303. }
  7304. },
  7305. "notification-url": "https://packagist.org/downloads/",
  7306. "license": [
  7307. "MIT"
  7308. ],
  7309. "authors": [
  7310. {
  7311. "name": "Nicolas Grekas",
  7312. "email": "p@tchwork.com"
  7313. },
  7314. {
  7315. "name": "Symfony Community",
  7316. "homepage": "https://symfony.com/contributors"
  7317. }
  7318. ],
  7319. "description": "Generic abstractions related to writing services",
  7320. "homepage": "https://symfony.com",
  7321. "keywords": [
  7322. "abstractions",
  7323. "contracts",
  7324. "decoupling",
  7325. "interfaces",
  7326. "interoperability",
  7327. "standards"
  7328. ],
  7329. "support": {
  7330. "source": "https://github.com/symfony/service-contracts/tree/v2.5.4"
  7331. },
  7332. "funding": [
  7333. {
  7334. "url": "https://symfony.com/sponsor",
  7335. "type": "custom"
  7336. },
  7337. {
  7338. "url": "https://github.com/fabpot",
  7339. "type": "github"
  7340. },
  7341. {
  7342. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7343. "type": "tidelift"
  7344. }
  7345. ],
  7346. "time": "2024-09-25T14:11:13+00:00"
  7347. },
  7348. {
  7349. "name": "symfony/string",
  7350. "version": "v6.0.19",
  7351. "source": {
  7352. "type": "git",
  7353. "url": "https://github.com/symfony/string.git",
  7354. "reference": "d9e72497367c23e08bf94176d2be45b00a9d232a"
  7355. },
  7356. "dist": {
  7357. "type": "zip",
  7358. "url": "https://api.github.com/repos/symfony/string/zipball/d9e72497367c23e08bf94176d2be45b00a9d232a",
  7359. "reference": "d9e72497367c23e08bf94176d2be45b00a9d232a",
  7360. "shasum": "",
  7361. "mirrors": [
  7362. {
  7363. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7364. "preferred": true
  7365. }
  7366. ]
  7367. },
  7368. "require": {
  7369. "php": ">=8.0.2",
  7370. "symfony/polyfill-ctype": "~1.8",
  7371. "symfony/polyfill-intl-grapheme": "~1.0",
  7372. "symfony/polyfill-intl-normalizer": "~1.0",
  7373. "symfony/polyfill-mbstring": "~1.0"
  7374. },
  7375. "conflict": {
  7376. "symfony/translation-contracts": "<2.0"
  7377. },
  7378. "require-dev": {
  7379. "symfony/error-handler": "^5.4|^6.0",
  7380. "symfony/http-client": "^5.4|^6.0",
  7381. "symfony/translation-contracts": "^2.0|^3.0",
  7382. "symfony/var-exporter": "^5.4|^6.0"
  7383. },
  7384. "type": "library",
  7385. "autoload": {
  7386. "files": [
  7387. "Resources/functions.php"
  7388. ],
  7389. "psr-4": {
  7390. "Symfony\\Component\\String\\": ""
  7391. },
  7392. "exclude-from-classmap": [
  7393. "/Tests/"
  7394. ]
  7395. },
  7396. "notification-url": "https://packagist.org/downloads/",
  7397. "license": [
  7398. "MIT"
  7399. ],
  7400. "authors": [
  7401. {
  7402. "name": "Nicolas Grekas",
  7403. "email": "p@tchwork.com"
  7404. },
  7405. {
  7406. "name": "Symfony Community",
  7407. "homepage": "https://symfony.com/contributors"
  7408. }
  7409. ],
  7410. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7411. "homepage": "https://symfony.com",
  7412. "keywords": [
  7413. "grapheme",
  7414. "i18n",
  7415. "string",
  7416. "unicode",
  7417. "utf-8",
  7418. "utf8"
  7419. ],
  7420. "support": {
  7421. "source": "https://github.com/symfony/string/tree/v6.0.19"
  7422. },
  7423. "funding": [
  7424. {
  7425. "url": "https://symfony.com/sponsor",
  7426. "type": "custom"
  7427. },
  7428. {
  7429. "url": "https://github.com/fabpot",
  7430. "type": "github"
  7431. },
  7432. {
  7433. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7434. "type": "tidelift"
  7435. }
  7436. ],
  7437. "time": "2023-01-01T08:36:10+00:00"
  7438. },
  7439. {
  7440. "name": "symfony/translation",
  7441. "version": "v6.0.19",
  7442. "source": {
  7443. "type": "git",
  7444. "url": "https://github.com/symfony/translation.git",
  7445. "reference": "9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f"
  7446. },
  7447. "dist": {
  7448. "type": "zip",
  7449. "url": "https://api.github.com/repos/symfony/translation/zipball/9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f",
  7450. "reference": "9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f",
  7451. "shasum": "",
  7452. "mirrors": [
  7453. {
  7454. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7455. "preferred": true
  7456. }
  7457. ]
  7458. },
  7459. "require": {
  7460. "php": ">=8.0.2",
  7461. "symfony/polyfill-mbstring": "~1.0",
  7462. "symfony/translation-contracts": "^2.3|^3.0"
  7463. },
  7464. "conflict": {
  7465. "symfony/config": "<5.4",
  7466. "symfony/console": "<5.4",
  7467. "symfony/dependency-injection": "<5.4",
  7468. "symfony/http-kernel": "<5.4",
  7469. "symfony/twig-bundle": "<5.4",
  7470. "symfony/yaml": "<5.4"
  7471. },
  7472. "provide": {
  7473. "symfony/translation-implementation": "2.3|3.0"
  7474. },
  7475. "require-dev": {
  7476. "psr/log": "^1|^2|^3",
  7477. "symfony/config": "^5.4|^6.0",
  7478. "symfony/console": "^5.4|^6.0",
  7479. "symfony/dependency-injection": "^5.4|^6.0",
  7480. "symfony/finder": "^5.4|^6.0",
  7481. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  7482. "symfony/http-kernel": "^5.4|^6.0",
  7483. "symfony/intl": "^5.4|^6.0",
  7484. "symfony/polyfill-intl-icu": "^1.21",
  7485. "symfony/service-contracts": "^1.1.2|^2|^3",
  7486. "symfony/yaml": "^5.4|^6.0"
  7487. },
  7488. "suggest": {
  7489. "psr/log-implementation": "To use logging capability in translator",
  7490. "symfony/config": "",
  7491. "symfony/yaml": ""
  7492. },
  7493. "type": "library",
  7494. "autoload": {
  7495. "files": [
  7496. "Resources/functions.php"
  7497. ],
  7498. "psr-4": {
  7499. "Symfony\\Component\\Translation\\": ""
  7500. },
  7501. "exclude-from-classmap": [
  7502. "/Tests/"
  7503. ]
  7504. },
  7505. "notification-url": "https://packagist.org/downloads/",
  7506. "license": [
  7507. "MIT"
  7508. ],
  7509. "authors": [
  7510. {
  7511. "name": "Fabien Potencier",
  7512. "email": "fabien@symfony.com"
  7513. },
  7514. {
  7515. "name": "Symfony Community",
  7516. "homepage": "https://symfony.com/contributors"
  7517. }
  7518. ],
  7519. "description": "Provides tools to internationalize your application",
  7520. "homepage": "https://symfony.com",
  7521. "support": {
  7522. "source": "https://github.com/symfony/translation/tree/v6.0.19"
  7523. },
  7524. "funding": [
  7525. {
  7526. "url": "https://symfony.com/sponsor",
  7527. "type": "custom"
  7528. },
  7529. {
  7530. "url": "https://github.com/fabpot",
  7531. "type": "github"
  7532. },
  7533. {
  7534. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7535. "type": "tidelift"
  7536. }
  7537. ],
  7538. "time": "2023-01-01T08:36:10+00:00"
  7539. },
  7540. {
  7541. "name": "symfony/translation-contracts",
  7542. "version": "v3.0.2",
  7543. "source": {
  7544. "type": "git",
  7545. "url": "https://github.com/symfony/translation-contracts.git",
  7546. "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282"
  7547. },
  7548. "dist": {
  7549. "type": "zip",
  7550. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/acbfbb274e730e5a0236f619b6168d9dedb3e282",
  7551. "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282",
  7552. "shasum": "",
  7553. "mirrors": [
  7554. {
  7555. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7556. "preferred": true
  7557. }
  7558. ]
  7559. },
  7560. "require": {
  7561. "php": ">=8.0.2"
  7562. },
  7563. "suggest": {
  7564. "symfony/translation-implementation": ""
  7565. },
  7566. "type": "library",
  7567. "extra": {
  7568. "thanks": {
  7569. "url": "https://github.com/symfony/contracts",
  7570. "name": "symfony/contracts"
  7571. },
  7572. "branch-alias": {
  7573. "dev-main": "3.0-dev"
  7574. }
  7575. },
  7576. "autoload": {
  7577. "psr-4": {
  7578. "Symfony\\Contracts\\Translation\\": ""
  7579. }
  7580. },
  7581. "notification-url": "https://packagist.org/downloads/",
  7582. "license": [
  7583. "MIT"
  7584. ],
  7585. "authors": [
  7586. {
  7587. "name": "Nicolas Grekas",
  7588. "email": "p@tchwork.com"
  7589. },
  7590. {
  7591. "name": "Symfony Community",
  7592. "homepage": "https://symfony.com/contributors"
  7593. }
  7594. ],
  7595. "description": "Generic abstractions related to translation",
  7596. "homepage": "https://symfony.com",
  7597. "keywords": [
  7598. "abstractions",
  7599. "contracts",
  7600. "decoupling",
  7601. "interfaces",
  7602. "interoperability",
  7603. "standards"
  7604. ],
  7605. "support": {
  7606. "source": "https://github.com/symfony/translation-contracts/tree/v3.0.2"
  7607. },
  7608. "funding": [
  7609. {
  7610. "url": "https://symfony.com/sponsor",
  7611. "type": "custom"
  7612. },
  7613. {
  7614. "url": "https://github.com/fabpot",
  7615. "type": "github"
  7616. },
  7617. {
  7618. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7619. "type": "tidelift"
  7620. }
  7621. ],
  7622. "time": "2022-06-27T17:10:44+00:00"
  7623. },
  7624. {
  7625. "name": "symfony/var-dumper",
  7626. "version": "v5.4.48",
  7627. "source": {
  7628. "type": "git",
  7629. "url": "https://github.com/symfony/var-dumper.git",
  7630. "reference": "42f18f170aa86d612c3559cfb3bd11a375df32c8"
  7631. },
  7632. "dist": {
  7633. "type": "zip",
  7634. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/42f18f170aa86d612c3559cfb3bd11a375df32c8",
  7635. "reference": "42f18f170aa86d612c3559cfb3bd11a375df32c8",
  7636. "shasum": "",
  7637. "mirrors": [
  7638. {
  7639. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7640. "preferred": true
  7641. }
  7642. ]
  7643. },
  7644. "require": {
  7645. "php": ">=7.2.5",
  7646. "symfony/polyfill-mbstring": "~1.0",
  7647. "symfony/polyfill-php80": "^1.16"
  7648. },
  7649. "conflict": {
  7650. "symfony/console": "<4.4"
  7651. },
  7652. "require-dev": {
  7653. "ext-iconv": "*",
  7654. "symfony/console": "^4.4|^5.0|^6.0",
  7655. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  7656. "symfony/process": "^4.4|^5.0|^6.0",
  7657. "symfony/uid": "^5.1|^6.0",
  7658. "twig/twig": "^2.13|^3.0.4"
  7659. },
  7660. "suggest": {
  7661. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7662. "ext-intl": "To show region name in time zone dump",
  7663. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  7664. },
  7665. "bin": [
  7666. "Resources/bin/var-dump-server"
  7667. ],
  7668. "type": "library",
  7669. "autoload": {
  7670. "files": [
  7671. "Resources/functions/dump.php"
  7672. ],
  7673. "psr-4": {
  7674. "Symfony\\Component\\VarDumper\\": ""
  7675. },
  7676. "exclude-from-classmap": [
  7677. "/Tests/"
  7678. ]
  7679. },
  7680. "notification-url": "https://packagist.org/downloads/",
  7681. "license": [
  7682. "MIT"
  7683. ],
  7684. "authors": [
  7685. {
  7686. "name": "Nicolas Grekas",
  7687. "email": "p@tchwork.com"
  7688. },
  7689. {
  7690. "name": "Symfony Community",
  7691. "homepage": "https://symfony.com/contributors"
  7692. }
  7693. ],
  7694. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7695. "homepage": "https://symfony.com",
  7696. "keywords": [
  7697. "debug",
  7698. "dump"
  7699. ],
  7700. "support": {
  7701. "source": "https://github.com/symfony/var-dumper/tree/v5.4.48"
  7702. },
  7703. "funding": [
  7704. {
  7705. "url": "https://symfony.com/sponsor",
  7706. "type": "custom"
  7707. },
  7708. {
  7709. "url": "https://github.com/fabpot",
  7710. "type": "github"
  7711. },
  7712. {
  7713. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7714. "type": "tidelift"
  7715. }
  7716. ],
  7717. "time": "2024-11-08T15:21:10+00:00"
  7718. },
  7719. {
  7720. "name": "tecnickcom/tcpdf",
  7721. "version": "6.9.0",
  7722. "source": {
  7723. "type": "git",
  7724. "url": "https://github.com/tecnickcom/TCPDF.git",
  7725. "reference": "f67b761b61f2370a9000d98c3b9111284544f722"
  7726. },
  7727. "dist": {
  7728. "type": "zip",
  7729. "url": "https://api.github.com/repos/tecnickcom/TCPDF/zipball/f67b761b61f2370a9000d98c3b9111284544f722",
  7730. "reference": "f67b761b61f2370a9000d98c3b9111284544f722",
  7731. "shasum": "",
  7732. "mirrors": [
  7733. {
  7734. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7735. "preferred": true
  7736. }
  7737. ]
  7738. },
  7739. "require": {
  7740. "ext-curl": "*",
  7741. "php": ">=7.1.0"
  7742. },
  7743. "type": "library",
  7744. "autoload": {
  7745. "classmap": [
  7746. "config",
  7747. "include",
  7748. "tcpdf.php",
  7749. "tcpdf_barcodes_1d.php",
  7750. "tcpdf_barcodes_2d.php",
  7751. "include/tcpdf_colors.php",
  7752. "include/tcpdf_filters.php",
  7753. "include/tcpdf_font_data.php",
  7754. "include/tcpdf_fonts.php",
  7755. "include/tcpdf_images.php",
  7756. "include/tcpdf_static.php",
  7757. "include/barcodes/datamatrix.php",
  7758. "include/barcodes/pdf417.php",
  7759. "include/barcodes/qrcode.php"
  7760. ]
  7761. },
  7762. "notification-url": "https://packagist.org/downloads/",
  7763. "license": [
  7764. "LGPL-3.0-or-later"
  7765. ],
  7766. "authors": [
  7767. {
  7768. "name": "Nicola Asuni",
  7769. "email": "info@tecnick.com",
  7770. "role": "lead"
  7771. }
  7772. ],
  7773. "description": "TCPDF is a PHP class for generating PDF documents and barcodes.",
  7774. "homepage": "http://www.tcpdf.org/",
  7775. "keywords": [
  7776. "PDFD32000-2008",
  7777. "TCPDF",
  7778. "barcodes",
  7779. "datamatrix",
  7780. "pdf",
  7781. "pdf417",
  7782. "qrcode"
  7783. ],
  7784. "support": {
  7785. "issues": "https://github.com/tecnickcom/TCPDF/issues",
  7786. "source": "https://github.com/tecnickcom/TCPDF/tree/6.9.0"
  7787. },
  7788. "funding": [
  7789. {
  7790. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_donations&currency_code=GBP&business=paypal@tecnick.com&item_name=donation%20for%20tcpdf%20project",
  7791. "type": "custom"
  7792. }
  7793. ],
  7794. "time": "2025-03-30T16:56:09+00:00"
  7795. },
  7796. {
  7797. "name": "thiagoalessio/tesseract_ocr",
  7798. "version": "2.12.0",
  7799. "source": {
  7800. "type": "git",
  7801. "url": "https://github.com/thiagoalessio/tesseract-ocr-for-php.git",
  7802. "reference": "0f10bd7b02bdcba59c4fbd98fbd93a56f93b09b7"
  7803. },
  7804. "dist": {
  7805. "type": "zip",
  7806. "url": "https://api.github.com/repos/thiagoalessio/tesseract-ocr-for-php/zipball/0f10bd7b02bdcba59c4fbd98fbd93a56f93b09b7",
  7807. "reference": "0f10bd7b02bdcba59c4fbd98fbd93a56f93b09b7",
  7808. "shasum": "",
  7809. "mirrors": [
  7810. {
  7811. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7812. "preferred": true
  7813. }
  7814. ]
  7815. },
  7816. "require": {
  7817. "php": "^5.3 || ^7.0 || ^8.0"
  7818. },
  7819. "require-dev": {
  7820. "phpunit/php-code-coverage": "^2.2.4 || ^9.0.0"
  7821. },
  7822. "type": "library",
  7823. "autoload": {
  7824. "psr-4": {
  7825. "thiagoalessio\\TesseractOCR\\": "src/"
  7826. }
  7827. },
  7828. "notification-url": "https://packagist.org/downloads/",
  7829. "license": [
  7830. "MIT"
  7831. ],
  7832. "authors": [
  7833. {
  7834. "name": "thiagoalessio",
  7835. "email": "thiagoalessio@me.com"
  7836. }
  7837. ],
  7838. "description": "A wrapper to work with Tesseract OCR inside PHP.",
  7839. "keywords": [
  7840. "OCR",
  7841. "Tesseract",
  7842. "text recognition"
  7843. ],
  7844. "support": {
  7845. "irc": "irc://irc.freenode.net/tesseract-ocr-for-php",
  7846. "issues": "https://github.com/thiagoalessio/tesseract-ocr-for-php/issues",
  7847. "source": "https://github.com/thiagoalessio/tesseract-ocr-for-php"
  7848. },
  7849. "time": "2021-06-04T21:21:33+00:00"
  7850. },
  7851. {
  7852. "name": "tijsverkoyen/css-to-inline-styles",
  7853. "version": "v2.3.0",
  7854. "source": {
  7855. "type": "git",
  7856. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7857. "reference": "0d72ac1c00084279c1816675284073c5a337c20d"
  7858. },
  7859. "dist": {
  7860. "type": "zip",
  7861. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/0d72ac1c00084279c1816675284073c5a337c20d",
  7862. "reference": "0d72ac1c00084279c1816675284073c5a337c20d",
  7863. "shasum": "",
  7864. "mirrors": [
  7865. {
  7866. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7867. "preferred": true
  7868. }
  7869. ]
  7870. },
  7871. "require": {
  7872. "ext-dom": "*",
  7873. "ext-libxml": "*",
  7874. "php": "^7.4 || ^8.0",
  7875. "symfony/css-selector": "^5.4 || ^6.0 || ^7.0"
  7876. },
  7877. "require-dev": {
  7878. "phpstan/phpstan": "^2.0",
  7879. "phpstan/phpstan-phpunit": "^2.0",
  7880. "phpunit/phpunit": "^8.5.21 || ^9.5.10"
  7881. },
  7882. "type": "library",
  7883. "extra": {
  7884. "branch-alias": {
  7885. "dev-master": "2.x-dev"
  7886. }
  7887. },
  7888. "autoload": {
  7889. "psr-4": {
  7890. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7891. }
  7892. },
  7893. "notification-url": "https://packagist.org/downloads/",
  7894. "license": [
  7895. "BSD-3-Clause"
  7896. ],
  7897. "authors": [
  7898. {
  7899. "name": "Tijs Verkoyen",
  7900. "email": "css_to_inline_styles@verkoyen.eu",
  7901. "role": "Developer"
  7902. }
  7903. ],
  7904. "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.",
  7905. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7906. "support": {
  7907. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7908. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.3.0"
  7909. },
  7910. "time": "2024-12-21T16:25:41+00:00"
  7911. },
  7912. {
  7913. "name": "vlucas/phpdotenv",
  7914. "version": "v5.6.1",
  7915. "source": {
  7916. "type": "git",
  7917. "url": "https://github.com/vlucas/phpdotenv.git",
  7918. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  7919. },
  7920. "dist": {
  7921. "type": "zip",
  7922. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7923. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7924. "shasum": "",
  7925. "mirrors": [
  7926. {
  7927. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7928. "preferred": true
  7929. }
  7930. ]
  7931. },
  7932. "require": {
  7933. "ext-pcre": "*",
  7934. "graham-campbell/result-type": "^1.1.3",
  7935. "php": "^7.2.5 || ^8.0",
  7936. "phpoption/phpoption": "^1.9.3",
  7937. "symfony/polyfill-ctype": "^1.24",
  7938. "symfony/polyfill-mbstring": "^1.24",
  7939. "symfony/polyfill-php80": "^1.24"
  7940. },
  7941. "require-dev": {
  7942. "bamarni/composer-bin-plugin": "^1.8.2",
  7943. "ext-filter": "*",
  7944. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  7945. },
  7946. "suggest": {
  7947. "ext-filter": "Required to use the boolean validator."
  7948. },
  7949. "type": "library",
  7950. "extra": {
  7951. "bamarni-bin": {
  7952. "bin-links": true,
  7953. "forward-command": false
  7954. },
  7955. "branch-alias": {
  7956. "dev-master": "5.6-dev"
  7957. }
  7958. },
  7959. "autoload": {
  7960. "psr-4": {
  7961. "Dotenv\\": "src/"
  7962. }
  7963. },
  7964. "notification-url": "https://packagist.org/downloads/",
  7965. "license": [
  7966. "BSD-3-Clause"
  7967. ],
  7968. "authors": [
  7969. {
  7970. "name": "Graham Campbell",
  7971. "email": "hello@gjcampbell.co.uk",
  7972. "homepage": "https://github.com/GrahamCampbell"
  7973. },
  7974. {
  7975. "name": "Vance Lucas",
  7976. "email": "vance@vancelucas.com",
  7977. "homepage": "https://github.com/vlucas"
  7978. }
  7979. ],
  7980. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7981. "keywords": [
  7982. "dotenv",
  7983. "env",
  7984. "environment"
  7985. ],
  7986. "support": {
  7987. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7988. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  7989. },
  7990. "funding": [
  7991. {
  7992. "url": "https://github.com/GrahamCampbell",
  7993. "type": "github"
  7994. },
  7995. {
  7996. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7997. "type": "tidelift"
  7998. }
  7999. ],
  8000. "time": "2024-07-20T21:52:34+00:00"
  8001. },
  8002. {
  8003. "name": "voku/portable-ascii",
  8004. "version": "1.6.1",
  8005. "source": {
  8006. "type": "git",
  8007. "url": "https://github.com/voku/portable-ascii.git",
  8008. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a"
  8009. },
  8010. "dist": {
  8011. "type": "zip",
  8012. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/87337c91b9dfacee02452244ee14ab3c43bc485a",
  8013. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a",
  8014. "shasum": "",
  8015. "mirrors": [
  8016. {
  8017. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8018. "preferred": true
  8019. }
  8020. ]
  8021. },
  8022. "require": {
  8023. "php": ">=7.0.0"
  8024. },
  8025. "require-dev": {
  8026. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  8027. },
  8028. "suggest": {
  8029. "ext-intl": "Use Intl for transliterator_transliterate() support"
  8030. },
  8031. "type": "library",
  8032. "autoload": {
  8033. "psr-4": {
  8034. "voku\\": "src/voku/"
  8035. }
  8036. },
  8037. "notification-url": "https://packagist.org/downloads/",
  8038. "license": [
  8039. "MIT"
  8040. ],
  8041. "authors": [
  8042. {
  8043. "name": "Lars Moelleken",
  8044. "homepage": "http://www.moelleken.org/"
  8045. }
  8046. ],
  8047. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  8048. "homepage": "https://github.com/voku/portable-ascii",
  8049. "keywords": [
  8050. "ascii",
  8051. "clean",
  8052. "php"
  8053. ],
  8054. "support": {
  8055. "issues": "https://github.com/voku/portable-ascii/issues",
  8056. "source": "https://github.com/voku/portable-ascii/tree/1.6.1"
  8057. },
  8058. "funding": [
  8059. {
  8060. "url": "https://www.paypal.me/moelleken",
  8061. "type": "custom"
  8062. },
  8063. {
  8064. "url": "https://github.com/voku",
  8065. "type": "github"
  8066. },
  8067. {
  8068. "url": "https://opencollective.com/portable-ascii",
  8069. "type": "open_collective"
  8070. },
  8071. {
  8072. "url": "https://www.patreon.com/voku",
  8073. "type": "patreon"
  8074. },
  8075. {
  8076. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  8077. "type": "tidelift"
  8078. }
  8079. ],
  8080. "time": "2022-01-24T18:55:24+00:00"
  8081. },
  8082. {
  8083. "name": "webmozart/assert",
  8084. "version": "1.11.0",
  8085. "source": {
  8086. "type": "git",
  8087. "url": "https://github.com/webmozarts/assert.git",
  8088. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  8089. },
  8090. "dist": {
  8091. "type": "zip",
  8092. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8093. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8094. "shasum": "",
  8095. "mirrors": [
  8096. {
  8097. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8098. "preferred": true
  8099. }
  8100. ]
  8101. },
  8102. "require": {
  8103. "ext-ctype": "*",
  8104. "php": "^7.2 || ^8.0"
  8105. },
  8106. "conflict": {
  8107. "phpstan/phpstan": "<0.12.20",
  8108. "vimeo/psalm": "<4.6.1 || 4.6.2"
  8109. },
  8110. "require-dev": {
  8111. "phpunit/phpunit": "^8.5.13"
  8112. },
  8113. "type": "library",
  8114. "extra": {
  8115. "branch-alias": {
  8116. "dev-master": "1.10-dev"
  8117. }
  8118. },
  8119. "autoload": {
  8120. "psr-4": {
  8121. "Webmozart\\Assert\\": "src/"
  8122. }
  8123. },
  8124. "notification-url": "https://packagist.org/downloads/",
  8125. "license": [
  8126. "MIT"
  8127. ],
  8128. "authors": [
  8129. {
  8130. "name": "Bernhard Schussek",
  8131. "email": "bschussek@gmail.com"
  8132. }
  8133. ],
  8134. "description": "Assertions to validate method input/output with nice error messages.",
  8135. "keywords": [
  8136. "assert",
  8137. "check",
  8138. "validate"
  8139. ],
  8140. "support": {
  8141. "issues": "https://github.com/webmozarts/assert/issues",
  8142. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  8143. },
  8144. "time": "2022-06-03T18:03:27+00:00"
  8145. },
  8146. {
  8147. "name": "wxkxklmyt/pscws4",
  8148. "version": "0.0.2",
  8149. "source": {
  8150. "type": "git",
  8151. "url": "https://github.com/wxkxklmyt/pscws4.git",
  8152. "reference": "b81e40fb8b5427eb5ed410f1e0f6adaaaa660b3f"
  8153. },
  8154. "dist": {
  8155. "type": "zip",
  8156. "url": "https://api.github.com/repos/wxkxklmyt/pscws4/zipball/b81e40fb8b5427eb5ed410f1e0f6adaaaa660b3f",
  8157. "reference": "b81e40fb8b5427eb5ed410f1e0f6adaaaa660b3f",
  8158. "shasum": "",
  8159. "mirrors": [
  8160. {
  8161. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8162. "preferred": true
  8163. }
  8164. ]
  8165. },
  8166. "require": {
  8167. "php": ">=5.4.0"
  8168. },
  8169. "type": "library",
  8170. "autoload": {
  8171. "psr-4": {
  8172. "wxkxklmyt\\": "src/"
  8173. }
  8174. },
  8175. "notification-url": "https://packagist.org/downloads/",
  8176. "authors": [
  8177. {
  8178. "name": "我的梦",
  8179. "email": "519468341@qq.com"
  8180. }
  8181. ],
  8182. "description": "基于PSCWS4的中文分词工具",
  8183. "support": {
  8184. "issues": "https://github.com/wxkxklmyt/pscws4/issues",
  8185. "source": "https://github.com/wxkxklmyt/pscws4/tree/0.0.2"
  8186. },
  8187. "time": "2017-12-22T08:56:36+00:00"
  8188. },
  8189. {
  8190. "name": "yansongda/pay",
  8191. "version": "v3.4.2",
  8192. "source": {
  8193. "type": "git",
  8194. "url": "https://github.com/yansongda/pay.git",
  8195. "reference": "de827f7a594ef02432432da1f873926662b478fc"
  8196. },
  8197. "dist": {
  8198. "type": "zip",
  8199. "url": "https://api.github.com/repos/yansongda/pay/zipball/de827f7a594ef02432432da1f873926662b478fc",
  8200. "reference": "de827f7a594ef02432432da1f873926662b478fc",
  8201. "shasum": "",
  8202. "mirrors": [
  8203. {
  8204. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8205. "preferred": true
  8206. }
  8207. ]
  8208. },
  8209. "require": {
  8210. "ext-bcmath": "*",
  8211. "ext-json": "*",
  8212. "ext-libxml": "*",
  8213. "ext-openssl": "*",
  8214. "ext-simplexml": "*",
  8215. "php": ">=8.0",
  8216. "psr/container": "^1.1 || ^2.0",
  8217. "psr/event-dispatcher": "^1.0",
  8218. "psr/http-client": "^1.0",
  8219. "psr/http-message": "^1.1 || ^2.0",
  8220. "psr/log": "^1.1 || ^2.0 || ^3.0",
  8221. "yansongda/supports": "~4.0.0"
  8222. },
  8223. "conflict": {
  8224. "hyperf/framework": "<3.0"
  8225. },
  8226. "require-dev": {
  8227. "friendsofphp/php-cs-fixer": "^3.0",
  8228. "guzzlehttp/guzzle": "^7.0",
  8229. "hyperf/pimple": "^2.2",
  8230. "mockery/mockery": "^1.4",
  8231. "monolog/monolog": "^2.2",
  8232. "phpstan/phpstan": "^1.0.0",
  8233. "phpunit/phpunit": "^9.0",
  8234. "symfony/event-dispatcher": "^5.2.0",
  8235. "symfony/http-foundation": "^5.2.0",
  8236. "symfony/psr-http-message-bridge": "^2.1",
  8237. "symfony/var-dumper": "^5.1"
  8238. },
  8239. "suggest": {
  8240. "hyperf/pimple": "其它/无框架下使用 SDK,请安装",
  8241. "hyperf/utils": "Hyperf 框架下使用 SDK,请安装",
  8242. "illuminate/container": "Laravel 框架下使用 SDK,请安装"
  8243. },
  8244. "type": "library",
  8245. "autoload": {
  8246. "files": [
  8247. "src/Functions.php"
  8248. ],
  8249. "psr-4": {
  8250. "Yansongda\\Pay\\": "src"
  8251. }
  8252. },
  8253. "notification-url": "https://packagist.org/downloads/",
  8254. "license": [
  8255. "MIT"
  8256. ],
  8257. "authors": [
  8258. {
  8259. "name": "yansongda",
  8260. "email": "me@yansongda.cn"
  8261. }
  8262. ],
  8263. "description": "可能是我用过的最优雅的 Alipay 和 WeChat 的支付 SDK 扩展包了",
  8264. "keywords": [
  8265. "alipay",
  8266. "pay",
  8267. "wechat"
  8268. ],
  8269. "support": {
  8270. "homepage": "https://pay.yansongda.cn",
  8271. "issues": "https://github.com/yansongda/pay/issues",
  8272. "source": "https://github.com/yansongda/pay"
  8273. },
  8274. "time": "2023-06-27T09:54:37+00:00"
  8275. },
  8276. {
  8277. "name": "yansongda/supports",
  8278. "version": "v4.0.10",
  8279. "source": {
  8280. "type": "git",
  8281. "url": "https://github.com/yansongda/supports.git",
  8282. "reference": "11cc73776e6d4d763a84c8c733f64820abdc44e5"
  8283. },
  8284. "dist": {
  8285. "type": "zip",
  8286. "url": "https://api.github.com/repos/yansongda/supports/zipball/11cc73776e6d4d763a84c8c733f64820abdc44e5",
  8287. "reference": "11cc73776e6d4d763a84c8c733f64820abdc44e5",
  8288. "shasum": "",
  8289. "mirrors": [
  8290. {
  8291. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8292. "preferred": true
  8293. }
  8294. ]
  8295. },
  8296. "require": {
  8297. "php": ">=8.0"
  8298. },
  8299. "require-dev": {
  8300. "friendsofphp/php-cs-fixer": "^3.0",
  8301. "mockery/mockery": "^1.4",
  8302. "phpstan/phpstan": "^1.1.0",
  8303. "phpunit/phpunit": "^9.0"
  8304. },
  8305. "suggest": {
  8306. "monolog/monolog": "Use logger",
  8307. "symfony/console": "Use stdout logger"
  8308. },
  8309. "type": "library",
  8310. "autoload": {
  8311. "files": [
  8312. "src/Functions.php"
  8313. ],
  8314. "psr-4": {
  8315. "Yansongda\\Supports\\": "src/"
  8316. }
  8317. },
  8318. "notification-url": "https://packagist.org/downloads/",
  8319. "license": [
  8320. "MIT"
  8321. ],
  8322. "authors": [
  8323. {
  8324. "name": "yansongda",
  8325. "email": "me@yansongda.cn"
  8326. }
  8327. ],
  8328. "description": "common components",
  8329. "keywords": [
  8330. "array",
  8331. "collection",
  8332. "config",
  8333. "support"
  8334. ],
  8335. "support": {
  8336. "issues": "https://github.com/yansongda/supports/issues",
  8337. "source": "https://github.com/yansongda/supports"
  8338. },
  8339. "time": "2024-06-09T15:49:21+00:00"
  8340. }
  8341. ],
  8342. "packages-dev": [
  8343. {
  8344. "name": "doctrine/instantiator",
  8345. "version": "1.5.0",
  8346. "source": {
  8347. "type": "git",
  8348. "url": "https://github.com/doctrine/instantiator.git",
  8349. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  8350. },
  8351. "dist": {
  8352. "type": "zip",
  8353. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  8354. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  8355. "shasum": "",
  8356. "mirrors": [
  8357. {
  8358. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8359. "preferred": true
  8360. }
  8361. ]
  8362. },
  8363. "require": {
  8364. "php": "^7.1 || ^8.0"
  8365. },
  8366. "require-dev": {
  8367. "doctrine/coding-standard": "^9 || ^11",
  8368. "ext-pdo": "*",
  8369. "ext-phar": "*",
  8370. "phpbench/phpbench": "^0.16 || ^1",
  8371. "phpstan/phpstan": "^1.4",
  8372. "phpstan/phpstan-phpunit": "^1",
  8373. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  8374. "vimeo/psalm": "^4.30 || ^5.4"
  8375. },
  8376. "type": "library",
  8377. "autoload": {
  8378. "psr-4": {
  8379. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8380. }
  8381. },
  8382. "notification-url": "https://packagist.org/downloads/",
  8383. "license": [
  8384. "MIT"
  8385. ],
  8386. "authors": [
  8387. {
  8388. "name": "Marco Pivetta",
  8389. "email": "ocramius@gmail.com",
  8390. "homepage": "https://ocramius.github.io/"
  8391. }
  8392. ],
  8393. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8394. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8395. "keywords": [
  8396. "constructor",
  8397. "instantiate"
  8398. ],
  8399. "support": {
  8400. "issues": "https://github.com/doctrine/instantiator/issues",
  8401. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  8402. },
  8403. "funding": [
  8404. {
  8405. "url": "https://www.doctrine-project.org/sponsorship.html",
  8406. "type": "custom"
  8407. },
  8408. {
  8409. "url": "https://www.patreon.com/phpdoctrine",
  8410. "type": "patreon"
  8411. },
  8412. {
  8413. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8414. "type": "tidelift"
  8415. }
  8416. ],
  8417. "time": "2022-12-30T00:15:36+00:00"
  8418. },
  8419. {
  8420. "name": "facade/flare-client-php",
  8421. "version": "1.10.0",
  8422. "source": {
  8423. "type": "git",
  8424. "url": "https://github.com/facade/flare-client-php.git",
  8425. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8"
  8426. },
  8427. "dist": {
  8428. "type": "zip",
  8429. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  8430. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  8431. "shasum": "",
  8432. "mirrors": [
  8433. {
  8434. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8435. "preferred": true
  8436. }
  8437. ]
  8438. },
  8439. "require": {
  8440. "facade/ignition-contracts": "~1.0",
  8441. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  8442. "php": "^7.1|^8.0",
  8443. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  8444. "symfony/mime": "^3.4|^4.0|^5.1",
  8445. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  8446. },
  8447. "require-dev": {
  8448. "friendsofphp/php-cs-fixer": "^2.14",
  8449. "phpunit/phpunit": "^7.5",
  8450. "spatie/phpunit-snapshot-assertions": "^2.0"
  8451. },
  8452. "type": "library",
  8453. "extra": {
  8454. "branch-alias": {
  8455. "dev-master": "1.0-dev"
  8456. }
  8457. },
  8458. "autoload": {
  8459. "files": [
  8460. "src/helpers.php"
  8461. ],
  8462. "psr-4": {
  8463. "Facade\\FlareClient\\": "src"
  8464. }
  8465. },
  8466. "notification-url": "https://packagist.org/downloads/",
  8467. "license": [
  8468. "MIT"
  8469. ],
  8470. "description": "Send PHP errors to Flare",
  8471. "homepage": "https://github.com/facade/flare-client-php",
  8472. "keywords": [
  8473. "exception",
  8474. "facade",
  8475. "flare",
  8476. "reporting"
  8477. ],
  8478. "support": {
  8479. "issues": "https://github.com/facade/flare-client-php/issues",
  8480. "source": "https://github.com/facade/flare-client-php/tree/1.10.0"
  8481. },
  8482. "funding": [
  8483. {
  8484. "url": "https://github.com/spatie",
  8485. "type": "github"
  8486. }
  8487. ],
  8488. "time": "2022-08-09T11:23:57+00:00"
  8489. },
  8490. {
  8491. "name": "facade/ignition",
  8492. "version": "2.17.7",
  8493. "source": {
  8494. "type": "git",
  8495. "url": "https://github.com/facade/ignition.git",
  8496. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9"
  8497. },
  8498. "dist": {
  8499. "type": "zip",
  8500. "url": "https://api.github.com/repos/facade/ignition/zipball/b4f5955825bb4b74cba0f94001761c46335c33e9",
  8501. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9",
  8502. "shasum": "",
  8503. "mirrors": [
  8504. {
  8505. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8506. "preferred": true
  8507. }
  8508. ]
  8509. },
  8510. "require": {
  8511. "ext-curl": "*",
  8512. "ext-json": "*",
  8513. "ext-mbstring": "*",
  8514. "facade/flare-client-php": "^1.9.1",
  8515. "facade/ignition-contracts": "^1.0.2",
  8516. "illuminate/support": "^7.0|^8.0",
  8517. "monolog/monolog": "^2.0",
  8518. "php": "^7.2.5|^8.0",
  8519. "symfony/console": "^5.0",
  8520. "symfony/var-dumper": "^5.0"
  8521. },
  8522. "require-dev": {
  8523. "friendsofphp/php-cs-fixer": "^2.14",
  8524. "livewire/livewire": "^2.4",
  8525. "mockery/mockery": "^1.3",
  8526. "orchestra/testbench": "^5.0|^6.0",
  8527. "psalm/plugin-laravel": "^1.2"
  8528. },
  8529. "suggest": {
  8530. "laravel/telescope": "^3.1"
  8531. },
  8532. "type": "library",
  8533. "extra": {
  8534. "branch-alias": {
  8535. "dev-master": "2.x-dev"
  8536. },
  8537. "laravel": {
  8538. "providers": [
  8539. "Facade\\Ignition\\IgnitionServiceProvider"
  8540. ],
  8541. "aliases": {
  8542. "Flare": "Facade\\Ignition\\Facades\\Flare"
  8543. }
  8544. }
  8545. },
  8546. "autoload": {
  8547. "files": [
  8548. "src/helpers.php"
  8549. ],
  8550. "psr-4": {
  8551. "Facade\\Ignition\\": "src"
  8552. }
  8553. },
  8554. "notification-url": "https://packagist.org/downloads/",
  8555. "license": [
  8556. "MIT"
  8557. ],
  8558. "description": "A beautiful error page for Laravel applications.",
  8559. "homepage": "https://github.com/facade/ignition",
  8560. "keywords": [
  8561. "error",
  8562. "flare",
  8563. "laravel",
  8564. "page"
  8565. ],
  8566. "support": {
  8567. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  8568. "forum": "https://twitter.com/flareappio",
  8569. "issues": "https://github.com/facade/ignition/issues",
  8570. "source": "https://github.com/facade/ignition"
  8571. },
  8572. "time": "2023-01-26T12:34:59+00:00"
  8573. },
  8574. {
  8575. "name": "facade/ignition-contracts",
  8576. "version": "1.0.2",
  8577. "source": {
  8578. "type": "git",
  8579. "url": "https://github.com/facade/ignition-contracts.git",
  8580. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  8581. },
  8582. "dist": {
  8583. "type": "zip",
  8584. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8585. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8586. "shasum": "",
  8587. "mirrors": [
  8588. {
  8589. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8590. "preferred": true
  8591. }
  8592. ]
  8593. },
  8594. "require": {
  8595. "php": "^7.3|^8.0"
  8596. },
  8597. "require-dev": {
  8598. "friendsofphp/php-cs-fixer": "^v2.15.8",
  8599. "phpunit/phpunit": "^9.3.11",
  8600. "vimeo/psalm": "^3.17.1"
  8601. },
  8602. "type": "library",
  8603. "autoload": {
  8604. "psr-4": {
  8605. "Facade\\IgnitionContracts\\": "src"
  8606. }
  8607. },
  8608. "notification-url": "https://packagist.org/downloads/",
  8609. "license": [
  8610. "MIT"
  8611. ],
  8612. "authors": [
  8613. {
  8614. "name": "Freek Van der Herten",
  8615. "email": "freek@spatie.be",
  8616. "homepage": "https://flareapp.io",
  8617. "role": "Developer"
  8618. }
  8619. ],
  8620. "description": "Solution contracts for Ignition",
  8621. "homepage": "https://github.com/facade/ignition-contracts",
  8622. "keywords": [
  8623. "contracts",
  8624. "flare",
  8625. "ignition"
  8626. ],
  8627. "support": {
  8628. "issues": "https://github.com/facade/ignition-contracts/issues",
  8629. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  8630. },
  8631. "time": "2020-10-16T08:27:54+00:00"
  8632. },
  8633. {
  8634. "name": "fakerphp/faker",
  8635. "version": "v1.23.1",
  8636. "source": {
  8637. "type": "git",
  8638. "url": "https://github.com/FakerPHP/Faker.git",
  8639. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b"
  8640. },
  8641. "dist": {
  8642. "type": "zip",
  8643. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/bfb4fe148adbf78eff521199619b93a52ae3554b",
  8644. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b",
  8645. "shasum": "",
  8646. "mirrors": [
  8647. {
  8648. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8649. "preferred": true
  8650. }
  8651. ]
  8652. },
  8653. "require": {
  8654. "php": "^7.4 || ^8.0",
  8655. "psr/container": "^1.0 || ^2.0",
  8656. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  8657. },
  8658. "conflict": {
  8659. "fzaninotto/faker": "*"
  8660. },
  8661. "require-dev": {
  8662. "bamarni/composer-bin-plugin": "^1.4.1",
  8663. "doctrine/persistence": "^1.3 || ^2.0",
  8664. "ext-intl": "*",
  8665. "phpunit/phpunit": "^9.5.26",
  8666. "symfony/phpunit-bridge": "^5.4.16"
  8667. },
  8668. "suggest": {
  8669. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  8670. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  8671. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  8672. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  8673. "ext-mbstring": "Required for multibyte Unicode string functionality."
  8674. },
  8675. "type": "library",
  8676. "autoload": {
  8677. "psr-4": {
  8678. "Faker\\": "src/Faker/"
  8679. }
  8680. },
  8681. "notification-url": "https://packagist.org/downloads/",
  8682. "license": [
  8683. "MIT"
  8684. ],
  8685. "authors": [
  8686. {
  8687. "name": "François Zaninotto"
  8688. }
  8689. ],
  8690. "description": "Faker is a PHP library that generates fake data for you.",
  8691. "keywords": [
  8692. "data",
  8693. "faker",
  8694. "fixtures"
  8695. ],
  8696. "support": {
  8697. "issues": "https://github.com/FakerPHP/Faker/issues",
  8698. "source": "https://github.com/FakerPHP/Faker/tree/v1.23.1"
  8699. },
  8700. "time": "2024-01-02T13:46:09+00:00"
  8701. },
  8702. {
  8703. "name": "filp/whoops",
  8704. "version": "2.16.0",
  8705. "source": {
  8706. "type": "git",
  8707. "url": "https://github.com/filp/whoops.git",
  8708. "reference": "befcdc0e5dce67252aa6322d82424be928214fa2"
  8709. },
  8710. "dist": {
  8711. "type": "zip",
  8712. "url": "https://api.github.com/repos/filp/whoops/zipball/befcdc0e5dce67252aa6322d82424be928214fa2",
  8713. "reference": "befcdc0e5dce67252aa6322d82424be928214fa2",
  8714. "shasum": "",
  8715. "mirrors": [
  8716. {
  8717. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8718. "preferred": true
  8719. }
  8720. ]
  8721. },
  8722. "require": {
  8723. "php": "^7.1 || ^8.0",
  8724. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  8725. },
  8726. "require-dev": {
  8727. "mockery/mockery": "^1.0",
  8728. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.3",
  8729. "symfony/var-dumper": "^4.0 || ^5.0"
  8730. },
  8731. "suggest": {
  8732. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8733. "whoops/soap": "Formats errors as SOAP responses"
  8734. },
  8735. "type": "library",
  8736. "extra": {
  8737. "branch-alias": {
  8738. "dev-master": "2.7-dev"
  8739. }
  8740. },
  8741. "autoload": {
  8742. "psr-4": {
  8743. "Whoops\\": "src/Whoops/"
  8744. }
  8745. },
  8746. "notification-url": "https://packagist.org/downloads/",
  8747. "license": [
  8748. "MIT"
  8749. ],
  8750. "authors": [
  8751. {
  8752. "name": "Filipe Dobreira",
  8753. "homepage": "https://github.com/filp",
  8754. "role": "Developer"
  8755. }
  8756. ],
  8757. "description": "php error handling for cool kids",
  8758. "homepage": "https://filp.github.io/whoops/",
  8759. "keywords": [
  8760. "error",
  8761. "exception",
  8762. "handling",
  8763. "library",
  8764. "throwable",
  8765. "whoops"
  8766. ],
  8767. "support": {
  8768. "issues": "https://github.com/filp/whoops/issues",
  8769. "source": "https://github.com/filp/whoops/tree/2.16.0"
  8770. },
  8771. "funding": [
  8772. {
  8773. "url": "https://github.com/denis-sokolov",
  8774. "type": "github"
  8775. }
  8776. ],
  8777. "time": "2024-09-25T12:00:00+00:00"
  8778. },
  8779. {
  8780. "name": "hamcrest/hamcrest-php",
  8781. "version": "v2.0.1",
  8782. "source": {
  8783. "type": "git",
  8784. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8785. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8786. },
  8787. "dist": {
  8788. "type": "zip",
  8789. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8790. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8791. "shasum": "",
  8792. "mirrors": [
  8793. {
  8794. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8795. "preferred": true
  8796. }
  8797. ]
  8798. },
  8799. "require": {
  8800. "php": "^5.3|^7.0|^8.0"
  8801. },
  8802. "replace": {
  8803. "cordoval/hamcrest-php": "*",
  8804. "davedevelopment/hamcrest-php": "*",
  8805. "kodova/hamcrest-php": "*"
  8806. },
  8807. "require-dev": {
  8808. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8809. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8810. },
  8811. "type": "library",
  8812. "extra": {
  8813. "branch-alias": {
  8814. "dev-master": "2.1-dev"
  8815. }
  8816. },
  8817. "autoload": {
  8818. "classmap": [
  8819. "hamcrest"
  8820. ]
  8821. },
  8822. "notification-url": "https://packagist.org/downloads/",
  8823. "license": [
  8824. "BSD-3-Clause"
  8825. ],
  8826. "description": "This is the PHP port of Hamcrest Matchers",
  8827. "keywords": [
  8828. "test"
  8829. ],
  8830. "support": {
  8831. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8832. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8833. },
  8834. "time": "2020-07-09T08:09:16+00:00"
  8835. },
  8836. {
  8837. "name": "mockery/mockery",
  8838. "version": "1.6.12",
  8839. "source": {
  8840. "type": "git",
  8841. "url": "https://github.com/mockery/mockery.git",
  8842. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  8843. },
  8844. "dist": {
  8845. "type": "zip",
  8846. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8847. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8848. "shasum": "",
  8849. "mirrors": [
  8850. {
  8851. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8852. "preferred": true
  8853. }
  8854. ]
  8855. },
  8856. "require": {
  8857. "hamcrest/hamcrest-php": "^2.0.1",
  8858. "lib-pcre": ">=7.0",
  8859. "php": ">=7.3"
  8860. },
  8861. "conflict": {
  8862. "phpunit/phpunit": "<8.0"
  8863. },
  8864. "require-dev": {
  8865. "phpunit/phpunit": "^8.5 || ^9.6.17",
  8866. "symplify/easy-coding-standard": "^12.1.14"
  8867. },
  8868. "type": "library",
  8869. "autoload": {
  8870. "files": [
  8871. "library/helpers.php",
  8872. "library/Mockery.php"
  8873. ],
  8874. "psr-4": {
  8875. "Mockery\\": "library/Mockery"
  8876. }
  8877. },
  8878. "notification-url": "https://packagist.org/downloads/",
  8879. "license": [
  8880. "BSD-3-Clause"
  8881. ],
  8882. "authors": [
  8883. {
  8884. "name": "Pádraic Brady",
  8885. "email": "padraic.brady@gmail.com",
  8886. "homepage": "https://github.com/padraic",
  8887. "role": "Author"
  8888. },
  8889. {
  8890. "name": "Dave Marshall",
  8891. "email": "dave.marshall@atstsolutions.co.uk",
  8892. "homepage": "https://davedevelopment.co.uk",
  8893. "role": "Developer"
  8894. },
  8895. {
  8896. "name": "Nathanael Esayeas",
  8897. "email": "nathanael.esayeas@protonmail.com",
  8898. "homepage": "https://github.com/ghostwriter",
  8899. "role": "Lead Developer"
  8900. }
  8901. ],
  8902. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8903. "homepage": "https://github.com/mockery/mockery",
  8904. "keywords": [
  8905. "BDD",
  8906. "TDD",
  8907. "library",
  8908. "mock",
  8909. "mock objects",
  8910. "mockery",
  8911. "stub",
  8912. "test",
  8913. "test double",
  8914. "testing"
  8915. ],
  8916. "support": {
  8917. "docs": "https://docs.mockery.io/",
  8918. "issues": "https://github.com/mockery/mockery/issues",
  8919. "rss": "https://github.com/mockery/mockery/releases.atom",
  8920. "security": "https://github.com/mockery/mockery/security/advisories",
  8921. "source": "https://github.com/mockery/mockery"
  8922. },
  8923. "time": "2024-05-16T03:13:13+00:00"
  8924. },
  8925. {
  8926. "name": "myclabs/deep-copy",
  8927. "version": "1.13.3",
  8928. "source": {
  8929. "type": "git",
  8930. "url": "https://github.com/myclabs/DeepCopy.git",
  8931. "reference": "faed855a7b5f4d4637717c2b3863e277116beb36"
  8932. },
  8933. "dist": {
  8934. "type": "zip",
  8935. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/faed855a7b5f4d4637717c2b3863e277116beb36",
  8936. "reference": "faed855a7b5f4d4637717c2b3863e277116beb36",
  8937. "shasum": "",
  8938. "mirrors": [
  8939. {
  8940. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8941. "preferred": true
  8942. }
  8943. ]
  8944. },
  8945. "require": {
  8946. "php": "^7.1 || ^8.0"
  8947. },
  8948. "conflict": {
  8949. "doctrine/collections": "<1.6.8",
  8950. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  8951. },
  8952. "require-dev": {
  8953. "doctrine/collections": "^1.6.8",
  8954. "doctrine/common": "^2.13.3 || ^3.2.2",
  8955. "phpspec/prophecy": "^1.10",
  8956. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8957. },
  8958. "type": "library",
  8959. "autoload": {
  8960. "files": [
  8961. "src/DeepCopy/deep_copy.php"
  8962. ],
  8963. "psr-4": {
  8964. "DeepCopy\\": "src/DeepCopy/"
  8965. }
  8966. },
  8967. "notification-url": "https://packagist.org/downloads/",
  8968. "license": [
  8969. "MIT"
  8970. ],
  8971. "description": "Create deep copies (clones) of your objects",
  8972. "keywords": [
  8973. "clone",
  8974. "copy",
  8975. "duplicate",
  8976. "object",
  8977. "object graph"
  8978. ],
  8979. "support": {
  8980. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8981. "source": "https://github.com/myclabs/DeepCopy/tree/1.13.3"
  8982. },
  8983. "funding": [
  8984. {
  8985. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8986. "type": "tidelift"
  8987. }
  8988. ],
  8989. "time": "2025-07-05T12:25:42+00:00"
  8990. },
  8991. {
  8992. "name": "nunomaduro/collision",
  8993. "version": "v5.11.0",
  8994. "source": {
  8995. "type": "git",
  8996. "url": "https://github.com/nunomaduro/collision.git",
  8997. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461"
  8998. },
  8999. "dist": {
  9000. "type": "zip",
  9001. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/8b610eef8582ccdc05d8f2ab23305e2d37049461",
  9002. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461",
  9003. "shasum": "",
  9004. "mirrors": [
  9005. {
  9006. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9007. "preferred": true
  9008. }
  9009. ]
  9010. },
  9011. "require": {
  9012. "facade/ignition-contracts": "^1.0",
  9013. "filp/whoops": "^2.14.3",
  9014. "php": "^7.3 || ^8.0",
  9015. "symfony/console": "^5.0"
  9016. },
  9017. "require-dev": {
  9018. "brianium/paratest": "^6.1",
  9019. "fideloper/proxy": "^4.4.1",
  9020. "fruitcake/laravel-cors": "^2.0.3",
  9021. "laravel/framework": "8.x-dev",
  9022. "nunomaduro/larastan": "^0.6.2",
  9023. "nunomaduro/mock-final-classes": "^1.0",
  9024. "orchestra/testbench": "^6.0",
  9025. "phpstan/phpstan": "^0.12.64",
  9026. "phpunit/phpunit": "^9.5.0"
  9027. },
  9028. "type": "library",
  9029. "extra": {
  9030. "laravel": {
  9031. "providers": [
  9032. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  9033. ]
  9034. }
  9035. },
  9036. "autoload": {
  9037. "psr-4": {
  9038. "NunoMaduro\\Collision\\": "src/"
  9039. }
  9040. },
  9041. "notification-url": "https://packagist.org/downloads/",
  9042. "license": [
  9043. "MIT"
  9044. ],
  9045. "authors": [
  9046. {
  9047. "name": "Nuno Maduro",
  9048. "email": "enunomaduro@gmail.com"
  9049. }
  9050. ],
  9051. "description": "Cli error handling for console/command-line PHP applications.",
  9052. "keywords": [
  9053. "artisan",
  9054. "cli",
  9055. "command-line",
  9056. "console",
  9057. "error",
  9058. "handling",
  9059. "laravel",
  9060. "laravel-zero",
  9061. "php",
  9062. "symfony"
  9063. ],
  9064. "support": {
  9065. "issues": "https://github.com/nunomaduro/collision/issues",
  9066. "source": "https://github.com/nunomaduro/collision"
  9067. },
  9068. "funding": [
  9069. {
  9070. "url": "https://www.paypal.com/paypalme/enunomaduro",
  9071. "type": "custom"
  9072. },
  9073. {
  9074. "url": "https://github.com/nunomaduro",
  9075. "type": "github"
  9076. },
  9077. {
  9078. "url": "https://www.patreon.com/nunomaduro",
  9079. "type": "patreon"
  9080. }
  9081. ],
  9082. "time": "2022-01-10T16:22:52+00:00"
  9083. },
  9084. {
  9085. "name": "phar-io/manifest",
  9086. "version": "dev-master",
  9087. "source": {
  9088. "type": "git",
  9089. "url": "https://github.com/phar-io/manifest.git",
  9090. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  9091. },
  9092. "dist": {
  9093. "type": "zip",
  9094. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  9095. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  9096. "shasum": "",
  9097. "mirrors": [
  9098. {
  9099. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9100. "preferred": true
  9101. }
  9102. ]
  9103. },
  9104. "require": {
  9105. "ext-dom": "*",
  9106. "ext-libxml": "*",
  9107. "ext-phar": "*",
  9108. "ext-xmlwriter": "*",
  9109. "phar-io/version": "^3.0.1",
  9110. "php": "^7.2 || ^8.0"
  9111. },
  9112. "default-branch": true,
  9113. "type": "library",
  9114. "extra": {
  9115. "branch-alias": {
  9116. "dev-master": "2.0.x-dev"
  9117. }
  9118. },
  9119. "autoload": {
  9120. "classmap": [
  9121. "src/"
  9122. ]
  9123. },
  9124. "notification-url": "https://packagist.org/downloads/",
  9125. "license": [
  9126. "BSD-3-Clause"
  9127. ],
  9128. "authors": [
  9129. {
  9130. "name": "Arne Blankerts",
  9131. "email": "arne@blankerts.de",
  9132. "role": "Developer"
  9133. },
  9134. {
  9135. "name": "Sebastian Heuer",
  9136. "email": "sebastian@phpeople.de",
  9137. "role": "Developer"
  9138. },
  9139. {
  9140. "name": "Sebastian Bergmann",
  9141. "email": "sebastian@phpunit.de",
  9142. "role": "Developer"
  9143. }
  9144. ],
  9145. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9146. "support": {
  9147. "issues": "https://github.com/phar-io/manifest/issues",
  9148. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  9149. },
  9150. "funding": [
  9151. {
  9152. "url": "https://github.com/theseer",
  9153. "type": "github"
  9154. }
  9155. ],
  9156. "time": "2024-03-03T12:33:53+00:00"
  9157. },
  9158. {
  9159. "name": "phar-io/version",
  9160. "version": "3.2.1",
  9161. "source": {
  9162. "type": "git",
  9163. "url": "https://github.com/phar-io/version.git",
  9164. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  9165. },
  9166. "dist": {
  9167. "type": "zip",
  9168. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9169. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9170. "shasum": "",
  9171. "mirrors": [
  9172. {
  9173. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9174. "preferred": true
  9175. }
  9176. ]
  9177. },
  9178. "require": {
  9179. "php": "^7.2 || ^8.0"
  9180. },
  9181. "type": "library",
  9182. "autoload": {
  9183. "classmap": [
  9184. "src/"
  9185. ]
  9186. },
  9187. "notification-url": "https://packagist.org/downloads/",
  9188. "license": [
  9189. "BSD-3-Clause"
  9190. ],
  9191. "authors": [
  9192. {
  9193. "name": "Arne Blankerts",
  9194. "email": "arne@blankerts.de",
  9195. "role": "Developer"
  9196. },
  9197. {
  9198. "name": "Sebastian Heuer",
  9199. "email": "sebastian@phpeople.de",
  9200. "role": "Developer"
  9201. },
  9202. {
  9203. "name": "Sebastian Bergmann",
  9204. "email": "sebastian@phpunit.de",
  9205. "role": "Developer"
  9206. }
  9207. ],
  9208. "description": "Library for handling version information and constraints",
  9209. "support": {
  9210. "issues": "https://github.com/phar-io/version/issues",
  9211. "source": "https://github.com/phar-io/version/tree/3.2.1"
  9212. },
  9213. "time": "2022-02-21T01:04:05+00:00"
  9214. },
  9215. {
  9216. "name": "phpunit/php-code-coverage",
  9217. "version": "9.2.32",
  9218. "source": {
  9219. "type": "git",
  9220. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9221. "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5"
  9222. },
  9223. "dist": {
  9224. "type": "zip",
  9225. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/85402a822d1ecf1db1096959413d35e1c37cf1a5",
  9226. "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5",
  9227. "shasum": "",
  9228. "mirrors": [
  9229. {
  9230. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9231. "preferred": true
  9232. }
  9233. ]
  9234. },
  9235. "require": {
  9236. "ext-dom": "*",
  9237. "ext-libxml": "*",
  9238. "ext-xmlwriter": "*",
  9239. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  9240. "php": ">=7.3",
  9241. "phpunit/php-file-iterator": "^3.0.6",
  9242. "phpunit/php-text-template": "^2.0.4",
  9243. "sebastian/code-unit-reverse-lookup": "^2.0.3",
  9244. "sebastian/complexity": "^2.0.3",
  9245. "sebastian/environment": "^5.1.5",
  9246. "sebastian/lines-of-code": "^1.0.4",
  9247. "sebastian/version": "^3.0.2",
  9248. "theseer/tokenizer": "^1.2.3"
  9249. },
  9250. "require-dev": {
  9251. "phpunit/phpunit": "^9.6"
  9252. },
  9253. "suggest": {
  9254. "ext-pcov": "PHP extension that provides line coverage",
  9255. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9256. },
  9257. "type": "library",
  9258. "extra": {
  9259. "branch-alias": {
  9260. "dev-main": "9.2.x-dev"
  9261. }
  9262. },
  9263. "autoload": {
  9264. "classmap": [
  9265. "src/"
  9266. ]
  9267. },
  9268. "notification-url": "https://packagist.org/downloads/",
  9269. "license": [
  9270. "BSD-3-Clause"
  9271. ],
  9272. "authors": [
  9273. {
  9274. "name": "Sebastian Bergmann",
  9275. "email": "sebastian@phpunit.de",
  9276. "role": "lead"
  9277. }
  9278. ],
  9279. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9280. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9281. "keywords": [
  9282. "coverage",
  9283. "testing",
  9284. "xunit"
  9285. ],
  9286. "support": {
  9287. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9288. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  9289. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.32"
  9290. },
  9291. "funding": [
  9292. {
  9293. "url": "https://github.com/sebastianbergmann",
  9294. "type": "github"
  9295. }
  9296. ],
  9297. "time": "2024-08-22T04:23:01+00:00"
  9298. },
  9299. {
  9300. "name": "phpunit/php-file-iterator",
  9301. "version": "3.0.6",
  9302. "source": {
  9303. "type": "git",
  9304. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9305. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  9306. },
  9307. "dist": {
  9308. "type": "zip",
  9309. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9310. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9311. "shasum": "",
  9312. "mirrors": [
  9313. {
  9314. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9315. "preferred": true
  9316. }
  9317. ]
  9318. },
  9319. "require": {
  9320. "php": ">=7.3"
  9321. },
  9322. "require-dev": {
  9323. "phpunit/phpunit": "^9.3"
  9324. },
  9325. "type": "library",
  9326. "extra": {
  9327. "branch-alias": {
  9328. "dev-master": "3.0-dev"
  9329. }
  9330. },
  9331. "autoload": {
  9332. "classmap": [
  9333. "src/"
  9334. ]
  9335. },
  9336. "notification-url": "https://packagist.org/downloads/",
  9337. "license": [
  9338. "BSD-3-Clause"
  9339. ],
  9340. "authors": [
  9341. {
  9342. "name": "Sebastian Bergmann",
  9343. "email": "sebastian@phpunit.de",
  9344. "role": "lead"
  9345. }
  9346. ],
  9347. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9348. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9349. "keywords": [
  9350. "filesystem",
  9351. "iterator"
  9352. ],
  9353. "support": {
  9354. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9355. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  9356. },
  9357. "funding": [
  9358. {
  9359. "url": "https://github.com/sebastianbergmann",
  9360. "type": "github"
  9361. }
  9362. ],
  9363. "time": "2021-12-02T12:48:52+00:00"
  9364. },
  9365. {
  9366. "name": "phpunit/php-invoker",
  9367. "version": "3.1.1",
  9368. "source": {
  9369. "type": "git",
  9370. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9371. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  9372. },
  9373. "dist": {
  9374. "type": "zip",
  9375. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9376. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9377. "shasum": "",
  9378. "mirrors": [
  9379. {
  9380. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9381. "preferred": true
  9382. }
  9383. ]
  9384. },
  9385. "require": {
  9386. "php": ">=7.3"
  9387. },
  9388. "require-dev": {
  9389. "ext-pcntl": "*",
  9390. "phpunit/phpunit": "^9.3"
  9391. },
  9392. "suggest": {
  9393. "ext-pcntl": "*"
  9394. },
  9395. "type": "library",
  9396. "extra": {
  9397. "branch-alias": {
  9398. "dev-master": "3.1-dev"
  9399. }
  9400. },
  9401. "autoload": {
  9402. "classmap": [
  9403. "src/"
  9404. ]
  9405. },
  9406. "notification-url": "https://packagist.org/downloads/",
  9407. "license": [
  9408. "BSD-3-Clause"
  9409. ],
  9410. "authors": [
  9411. {
  9412. "name": "Sebastian Bergmann",
  9413. "email": "sebastian@phpunit.de",
  9414. "role": "lead"
  9415. }
  9416. ],
  9417. "description": "Invoke callables with a timeout",
  9418. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9419. "keywords": [
  9420. "process"
  9421. ],
  9422. "support": {
  9423. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9424. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  9425. },
  9426. "funding": [
  9427. {
  9428. "url": "https://github.com/sebastianbergmann",
  9429. "type": "github"
  9430. }
  9431. ],
  9432. "time": "2020-09-28T05:58:55+00:00"
  9433. },
  9434. {
  9435. "name": "phpunit/php-text-template",
  9436. "version": "2.0.4",
  9437. "source": {
  9438. "type": "git",
  9439. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9440. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  9441. },
  9442. "dist": {
  9443. "type": "zip",
  9444. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9445. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9446. "shasum": "",
  9447. "mirrors": [
  9448. {
  9449. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9450. "preferred": true
  9451. }
  9452. ]
  9453. },
  9454. "require": {
  9455. "php": ">=7.3"
  9456. },
  9457. "require-dev": {
  9458. "phpunit/phpunit": "^9.3"
  9459. },
  9460. "type": "library",
  9461. "extra": {
  9462. "branch-alias": {
  9463. "dev-master": "2.0-dev"
  9464. }
  9465. },
  9466. "autoload": {
  9467. "classmap": [
  9468. "src/"
  9469. ]
  9470. },
  9471. "notification-url": "https://packagist.org/downloads/",
  9472. "license": [
  9473. "BSD-3-Clause"
  9474. ],
  9475. "authors": [
  9476. {
  9477. "name": "Sebastian Bergmann",
  9478. "email": "sebastian@phpunit.de",
  9479. "role": "lead"
  9480. }
  9481. ],
  9482. "description": "Simple template engine.",
  9483. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9484. "keywords": [
  9485. "template"
  9486. ],
  9487. "support": {
  9488. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9489. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  9490. },
  9491. "funding": [
  9492. {
  9493. "url": "https://github.com/sebastianbergmann",
  9494. "type": "github"
  9495. }
  9496. ],
  9497. "time": "2020-10-26T05:33:50+00:00"
  9498. },
  9499. {
  9500. "name": "phpunit/php-timer",
  9501. "version": "5.0.3",
  9502. "source": {
  9503. "type": "git",
  9504. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9505. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  9506. },
  9507. "dist": {
  9508. "type": "zip",
  9509. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9510. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9511. "shasum": "",
  9512. "mirrors": [
  9513. {
  9514. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9515. "preferred": true
  9516. }
  9517. ]
  9518. },
  9519. "require": {
  9520. "php": ">=7.3"
  9521. },
  9522. "require-dev": {
  9523. "phpunit/phpunit": "^9.3"
  9524. },
  9525. "type": "library",
  9526. "extra": {
  9527. "branch-alias": {
  9528. "dev-master": "5.0-dev"
  9529. }
  9530. },
  9531. "autoload": {
  9532. "classmap": [
  9533. "src/"
  9534. ]
  9535. },
  9536. "notification-url": "https://packagist.org/downloads/",
  9537. "license": [
  9538. "BSD-3-Clause"
  9539. ],
  9540. "authors": [
  9541. {
  9542. "name": "Sebastian Bergmann",
  9543. "email": "sebastian@phpunit.de",
  9544. "role": "lead"
  9545. }
  9546. ],
  9547. "description": "Utility class for timing",
  9548. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9549. "keywords": [
  9550. "timer"
  9551. ],
  9552. "support": {
  9553. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9554. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  9555. },
  9556. "funding": [
  9557. {
  9558. "url": "https://github.com/sebastianbergmann",
  9559. "type": "github"
  9560. }
  9561. ],
  9562. "time": "2020-10-26T13:16:10+00:00"
  9563. },
  9564. {
  9565. "name": "phpunit/phpunit",
  9566. "version": "9.6.22",
  9567. "source": {
  9568. "type": "git",
  9569. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9570. "reference": "f80235cb4d3caa59ae09be3adf1ded27521d1a9c"
  9571. },
  9572. "dist": {
  9573. "type": "zip",
  9574. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/f80235cb4d3caa59ae09be3adf1ded27521d1a9c",
  9575. "reference": "f80235cb4d3caa59ae09be3adf1ded27521d1a9c",
  9576. "shasum": "",
  9577. "mirrors": [
  9578. {
  9579. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9580. "preferred": true
  9581. }
  9582. ]
  9583. },
  9584. "require": {
  9585. "doctrine/instantiator": "^1.5.0 || ^2",
  9586. "ext-dom": "*",
  9587. "ext-json": "*",
  9588. "ext-libxml": "*",
  9589. "ext-mbstring": "*",
  9590. "ext-xml": "*",
  9591. "ext-xmlwriter": "*",
  9592. "myclabs/deep-copy": "^1.12.1",
  9593. "phar-io/manifest": "^2.0.4",
  9594. "phar-io/version": "^3.2.1",
  9595. "php": ">=7.3",
  9596. "phpunit/php-code-coverage": "^9.2.32",
  9597. "phpunit/php-file-iterator": "^3.0.6",
  9598. "phpunit/php-invoker": "^3.1.1",
  9599. "phpunit/php-text-template": "^2.0.4",
  9600. "phpunit/php-timer": "^5.0.3",
  9601. "sebastian/cli-parser": "^1.0.2",
  9602. "sebastian/code-unit": "^1.0.8",
  9603. "sebastian/comparator": "^4.0.8",
  9604. "sebastian/diff": "^4.0.6",
  9605. "sebastian/environment": "^5.1.5",
  9606. "sebastian/exporter": "^4.0.6",
  9607. "sebastian/global-state": "^5.0.7",
  9608. "sebastian/object-enumerator": "^4.0.4",
  9609. "sebastian/resource-operations": "^3.0.4",
  9610. "sebastian/type": "^3.2.1",
  9611. "sebastian/version": "^3.0.2"
  9612. },
  9613. "suggest": {
  9614. "ext-soap": "To be able to generate mocks based on WSDL files",
  9615. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9616. },
  9617. "bin": [
  9618. "phpunit"
  9619. ],
  9620. "type": "library",
  9621. "extra": {
  9622. "branch-alias": {
  9623. "dev-master": "9.6-dev"
  9624. }
  9625. },
  9626. "autoload": {
  9627. "files": [
  9628. "src/Framework/Assert/Functions.php"
  9629. ],
  9630. "classmap": [
  9631. "src/"
  9632. ]
  9633. },
  9634. "notification-url": "https://packagist.org/downloads/",
  9635. "license": [
  9636. "BSD-3-Clause"
  9637. ],
  9638. "authors": [
  9639. {
  9640. "name": "Sebastian Bergmann",
  9641. "email": "sebastian@phpunit.de",
  9642. "role": "lead"
  9643. }
  9644. ],
  9645. "description": "The PHP Unit Testing framework.",
  9646. "homepage": "https://phpunit.de/",
  9647. "keywords": [
  9648. "phpunit",
  9649. "testing",
  9650. "xunit"
  9651. ],
  9652. "support": {
  9653. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9654. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9655. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.22"
  9656. },
  9657. "funding": [
  9658. {
  9659. "url": "https://phpunit.de/sponsors.html",
  9660. "type": "custom"
  9661. },
  9662. {
  9663. "url": "https://github.com/sebastianbergmann",
  9664. "type": "github"
  9665. },
  9666. {
  9667. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9668. "type": "tidelift"
  9669. }
  9670. ],
  9671. "time": "2024-12-05T13:48:26+00:00"
  9672. },
  9673. {
  9674. "name": "sebastian/cli-parser",
  9675. "version": "1.0.2",
  9676. "source": {
  9677. "type": "git",
  9678. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9679. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b"
  9680. },
  9681. "dist": {
  9682. "type": "zip",
  9683. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  9684. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  9685. "shasum": "",
  9686. "mirrors": [
  9687. {
  9688. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9689. "preferred": true
  9690. }
  9691. ]
  9692. },
  9693. "require": {
  9694. "php": ">=7.3"
  9695. },
  9696. "require-dev": {
  9697. "phpunit/phpunit": "^9.3"
  9698. },
  9699. "type": "library",
  9700. "extra": {
  9701. "branch-alias": {
  9702. "dev-master": "1.0-dev"
  9703. }
  9704. },
  9705. "autoload": {
  9706. "classmap": [
  9707. "src/"
  9708. ]
  9709. },
  9710. "notification-url": "https://packagist.org/downloads/",
  9711. "license": [
  9712. "BSD-3-Clause"
  9713. ],
  9714. "authors": [
  9715. {
  9716. "name": "Sebastian Bergmann",
  9717. "email": "sebastian@phpunit.de",
  9718. "role": "lead"
  9719. }
  9720. ],
  9721. "description": "Library for parsing CLI options",
  9722. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9723. "support": {
  9724. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9725. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.2"
  9726. },
  9727. "funding": [
  9728. {
  9729. "url": "https://github.com/sebastianbergmann",
  9730. "type": "github"
  9731. }
  9732. ],
  9733. "time": "2024-03-02T06:27:43+00:00"
  9734. },
  9735. {
  9736. "name": "sebastian/code-unit",
  9737. "version": "1.0.8",
  9738. "source": {
  9739. "type": "git",
  9740. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9741. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  9742. },
  9743. "dist": {
  9744. "type": "zip",
  9745. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9746. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9747. "shasum": "",
  9748. "mirrors": [
  9749. {
  9750. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9751. "preferred": true
  9752. }
  9753. ]
  9754. },
  9755. "require": {
  9756. "php": ">=7.3"
  9757. },
  9758. "require-dev": {
  9759. "phpunit/phpunit": "^9.3"
  9760. },
  9761. "type": "library",
  9762. "extra": {
  9763. "branch-alias": {
  9764. "dev-master": "1.0-dev"
  9765. }
  9766. },
  9767. "autoload": {
  9768. "classmap": [
  9769. "src/"
  9770. ]
  9771. },
  9772. "notification-url": "https://packagist.org/downloads/",
  9773. "license": [
  9774. "BSD-3-Clause"
  9775. ],
  9776. "authors": [
  9777. {
  9778. "name": "Sebastian Bergmann",
  9779. "email": "sebastian@phpunit.de",
  9780. "role": "lead"
  9781. }
  9782. ],
  9783. "description": "Collection of value objects that represent the PHP code units",
  9784. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9785. "support": {
  9786. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9787. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  9788. },
  9789. "funding": [
  9790. {
  9791. "url": "https://github.com/sebastianbergmann",
  9792. "type": "github"
  9793. }
  9794. ],
  9795. "time": "2020-10-26T13:08:54+00:00"
  9796. },
  9797. {
  9798. "name": "sebastian/code-unit-reverse-lookup",
  9799. "version": "2.0.3",
  9800. "source": {
  9801. "type": "git",
  9802. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9803. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  9804. },
  9805. "dist": {
  9806. "type": "zip",
  9807. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9808. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9809. "shasum": "",
  9810. "mirrors": [
  9811. {
  9812. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9813. "preferred": true
  9814. }
  9815. ]
  9816. },
  9817. "require": {
  9818. "php": ">=7.3"
  9819. },
  9820. "require-dev": {
  9821. "phpunit/phpunit": "^9.3"
  9822. },
  9823. "type": "library",
  9824. "extra": {
  9825. "branch-alias": {
  9826. "dev-master": "2.0-dev"
  9827. }
  9828. },
  9829. "autoload": {
  9830. "classmap": [
  9831. "src/"
  9832. ]
  9833. },
  9834. "notification-url": "https://packagist.org/downloads/",
  9835. "license": [
  9836. "BSD-3-Clause"
  9837. ],
  9838. "authors": [
  9839. {
  9840. "name": "Sebastian Bergmann",
  9841. "email": "sebastian@phpunit.de"
  9842. }
  9843. ],
  9844. "description": "Looks up which function or method a line of code belongs to",
  9845. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9846. "support": {
  9847. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9848. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  9849. },
  9850. "funding": [
  9851. {
  9852. "url": "https://github.com/sebastianbergmann",
  9853. "type": "github"
  9854. }
  9855. ],
  9856. "time": "2020-09-28T05:30:19+00:00"
  9857. },
  9858. {
  9859. "name": "sebastian/comparator",
  9860. "version": "4.0.8",
  9861. "source": {
  9862. "type": "git",
  9863. "url": "https://github.com/sebastianbergmann/comparator.git",
  9864. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  9865. },
  9866. "dist": {
  9867. "type": "zip",
  9868. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  9869. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  9870. "shasum": "",
  9871. "mirrors": [
  9872. {
  9873. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9874. "preferred": true
  9875. }
  9876. ]
  9877. },
  9878. "require": {
  9879. "php": ">=7.3",
  9880. "sebastian/diff": "^4.0",
  9881. "sebastian/exporter": "^4.0"
  9882. },
  9883. "require-dev": {
  9884. "phpunit/phpunit": "^9.3"
  9885. },
  9886. "type": "library",
  9887. "extra": {
  9888. "branch-alias": {
  9889. "dev-master": "4.0-dev"
  9890. }
  9891. },
  9892. "autoload": {
  9893. "classmap": [
  9894. "src/"
  9895. ]
  9896. },
  9897. "notification-url": "https://packagist.org/downloads/",
  9898. "license": [
  9899. "BSD-3-Clause"
  9900. ],
  9901. "authors": [
  9902. {
  9903. "name": "Sebastian Bergmann",
  9904. "email": "sebastian@phpunit.de"
  9905. },
  9906. {
  9907. "name": "Jeff Welch",
  9908. "email": "whatthejeff@gmail.com"
  9909. },
  9910. {
  9911. "name": "Volker Dusch",
  9912. "email": "github@wallbash.com"
  9913. },
  9914. {
  9915. "name": "Bernhard Schussek",
  9916. "email": "bschussek@2bepublished.at"
  9917. }
  9918. ],
  9919. "description": "Provides the functionality to compare PHP values for equality",
  9920. "homepage": "https://github.com/sebastianbergmann/comparator",
  9921. "keywords": [
  9922. "comparator",
  9923. "compare",
  9924. "equality"
  9925. ],
  9926. "support": {
  9927. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9928. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  9929. },
  9930. "funding": [
  9931. {
  9932. "url": "https://github.com/sebastianbergmann",
  9933. "type": "github"
  9934. }
  9935. ],
  9936. "time": "2022-09-14T12:41:17+00:00"
  9937. },
  9938. {
  9939. "name": "sebastian/complexity",
  9940. "version": "2.0.3",
  9941. "source": {
  9942. "type": "git",
  9943. "url": "https://github.com/sebastianbergmann/complexity.git",
  9944. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a"
  9945. },
  9946. "dist": {
  9947. "type": "zip",
  9948. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a",
  9949. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a",
  9950. "shasum": "",
  9951. "mirrors": [
  9952. {
  9953. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9954. "preferred": true
  9955. }
  9956. ]
  9957. },
  9958. "require": {
  9959. "nikic/php-parser": "^4.18 || ^5.0",
  9960. "php": ">=7.3"
  9961. },
  9962. "require-dev": {
  9963. "phpunit/phpunit": "^9.3"
  9964. },
  9965. "type": "library",
  9966. "extra": {
  9967. "branch-alias": {
  9968. "dev-master": "2.0-dev"
  9969. }
  9970. },
  9971. "autoload": {
  9972. "classmap": [
  9973. "src/"
  9974. ]
  9975. },
  9976. "notification-url": "https://packagist.org/downloads/",
  9977. "license": [
  9978. "BSD-3-Clause"
  9979. ],
  9980. "authors": [
  9981. {
  9982. "name": "Sebastian Bergmann",
  9983. "email": "sebastian@phpunit.de",
  9984. "role": "lead"
  9985. }
  9986. ],
  9987. "description": "Library for calculating the complexity of PHP code units",
  9988. "homepage": "https://github.com/sebastianbergmann/complexity",
  9989. "support": {
  9990. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9991. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3"
  9992. },
  9993. "funding": [
  9994. {
  9995. "url": "https://github.com/sebastianbergmann",
  9996. "type": "github"
  9997. }
  9998. ],
  9999. "time": "2023-12-22T06:19:30+00:00"
  10000. },
  10001. {
  10002. "name": "sebastian/diff",
  10003. "version": "4.0.6",
  10004. "source": {
  10005. "type": "git",
  10006. "url": "https://github.com/sebastianbergmann/diff.git",
  10007. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  10008. },
  10009. "dist": {
  10010. "type": "zip",
  10011. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  10012. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  10013. "shasum": "",
  10014. "mirrors": [
  10015. {
  10016. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10017. "preferred": true
  10018. }
  10019. ]
  10020. },
  10021. "require": {
  10022. "php": ">=7.3"
  10023. },
  10024. "require-dev": {
  10025. "phpunit/phpunit": "^9.3",
  10026. "symfony/process": "^4.2 || ^5"
  10027. },
  10028. "type": "library",
  10029. "extra": {
  10030. "branch-alias": {
  10031. "dev-master": "4.0-dev"
  10032. }
  10033. },
  10034. "autoload": {
  10035. "classmap": [
  10036. "src/"
  10037. ]
  10038. },
  10039. "notification-url": "https://packagist.org/downloads/",
  10040. "license": [
  10041. "BSD-3-Clause"
  10042. ],
  10043. "authors": [
  10044. {
  10045. "name": "Sebastian Bergmann",
  10046. "email": "sebastian@phpunit.de"
  10047. },
  10048. {
  10049. "name": "Kore Nordmann",
  10050. "email": "mail@kore-nordmann.de"
  10051. }
  10052. ],
  10053. "description": "Diff implementation",
  10054. "homepage": "https://github.com/sebastianbergmann/diff",
  10055. "keywords": [
  10056. "diff",
  10057. "udiff",
  10058. "unidiff",
  10059. "unified diff"
  10060. ],
  10061. "support": {
  10062. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10063. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  10064. },
  10065. "funding": [
  10066. {
  10067. "url": "https://github.com/sebastianbergmann",
  10068. "type": "github"
  10069. }
  10070. ],
  10071. "time": "2024-03-02T06:30:58+00:00"
  10072. },
  10073. {
  10074. "name": "sebastian/environment",
  10075. "version": "5.1.5",
  10076. "source": {
  10077. "type": "git",
  10078. "url": "https://github.com/sebastianbergmann/environment.git",
  10079. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  10080. },
  10081. "dist": {
  10082. "type": "zip",
  10083. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  10084. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  10085. "shasum": "",
  10086. "mirrors": [
  10087. {
  10088. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10089. "preferred": true
  10090. }
  10091. ]
  10092. },
  10093. "require": {
  10094. "php": ">=7.3"
  10095. },
  10096. "require-dev": {
  10097. "phpunit/phpunit": "^9.3"
  10098. },
  10099. "suggest": {
  10100. "ext-posix": "*"
  10101. },
  10102. "type": "library",
  10103. "extra": {
  10104. "branch-alias": {
  10105. "dev-master": "5.1-dev"
  10106. }
  10107. },
  10108. "autoload": {
  10109. "classmap": [
  10110. "src/"
  10111. ]
  10112. },
  10113. "notification-url": "https://packagist.org/downloads/",
  10114. "license": [
  10115. "BSD-3-Clause"
  10116. ],
  10117. "authors": [
  10118. {
  10119. "name": "Sebastian Bergmann",
  10120. "email": "sebastian@phpunit.de"
  10121. }
  10122. ],
  10123. "description": "Provides functionality to handle HHVM/PHP environments",
  10124. "homepage": "http://www.github.com/sebastianbergmann/environment",
  10125. "keywords": [
  10126. "Xdebug",
  10127. "environment",
  10128. "hhvm"
  10129. ],
  10130. "support": {
  10131. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10132. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  10133. },
  10134. "funding": [
  10135. {
  10136. "url": "https://github.com/sebastianbergmann",
  10137. "type": "github"
  10138. }
  10139. ],
  10140. "time": "2023-02-03T06:03:51+00:00"
  10141. },
  10142. {
  10143. "name": "sebastian/exporter",
  10144. "version": "4.0.7",
  10145. "source": {
  10146. "type": "git",
  10147. "url": "https://github.com/sebastianbergmann/exporter.git",
  10148. "reference": "eb49b981ef0817890129cb70f774506bebe57740"
  10149. },
  10150. "dist": {
  10151. "type": "zip",
  10152. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/eb49b981ef0817890129cb70f774506bebe57740",
  10153. "reference": "eb49b981ef0817890129cb70f774506bebe57740",
  10154. "shasum": "",
  10155. "mirrors": [
  10156. {
  10157. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10158. "preferred": true
  10159. }
  10160. ]
  10161. },
  10162. "require": {
  10163. "php": ">=7.3",
  10164. "sebastian/recursion-context": "^4.0"
  10165. },
  10166. "require-dev": {
  10167. "ext-mbstring": "*",
  10168. "phpunit/phpunit": "^9.3"
  10169. },
  10170. "type": "library",
  10171. "extra": {
  10172. "branch-alias": {
  10173. "dev-master": "4.0-dev"
  10174. }
  10175. },
  10176. "autoload": {
  10177. "classmap": [
  10178. "src/"
  10179. ]
  10180. },
  10181. "notification-url": "https://packagist.org/downloads/",
  10182. "license": [
  10183. "BSD-3-Clause"
  10184. ],
  10185. "authors": [
  10186. {
  10187. "name": "Sebastian Bergmann",
  10188. "email": "sebastian@phpunit.de"
  10189. },
  10190. {
  10191. "name": "Jeff Welch",
  10192. "email": "whatthejeff@gmail.com"
  10193. },
  10194. {
  10195. "name": "Volker Dusch",
  10196. "email": "github@wallbash.com"
  10197. },
  10198. {
  10199. "name": "Adam Harvey",
  10200. "email": "aharvey@php.net"
  10201. },
  10202. {
  10203. "name": "Bernhard Schussek",
  10204. "email": "bschussek@gmail.com"
  10205. }
  10206. ],
  10207. "description": "Provides the functionality to export PHP variables for visualization",
  10208. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10209. "keywords": [
  10210. "export",
  10211. "exporter"
  10212. ],
  10213. "support": {
  10214. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10215. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.7"
  10216. },
  10217. "funding": [
  10218. {
  10219. "url": "https://github.com/sebastianbergmann",
  10220. "type": "github"
  10221. },
  10222. {
  10223. "url": "https://liberapay.com/sebastianbergmann",
  10224. "type": "liberapay"
  10225. },
  10226. {
  10227. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  10228. "type": "thanks_dev"
  10229. },
  10230. {
  10231. "url": "https://tidelift.com/funding/github/packagist/sebastian/exporter",
  10232. "type": "tidelift"
  10233. }
  10234. ],
  10235. "time": "2025-09-22T05:18:21+00:00"
  10236. },
  10237. {
  10238. "name": "sebastian/global-state",
  10239. "version": "5.0.8",
  10240. "source": {
  10241. "type": "git",
  10242. "url": "https://github.com/sebastianbergmann/global-state.git",
  10243. "reference": "b6781316bdcd28260904e7cc18ec983d0d2ef4f6"
  10244. },
  10245. "dist": {
  10246. "type": "zip",
  10247. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/b6781316bdcd28260904e7cc18ec983d0d2ef4f6",
  10248. "reference": "b6781316bdcd28260904e7cc18ec983d0d2ef4f6",
  10249. "shasum": "",
  10250. "mirrors": [
  10251. {
  10252. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10253. "preferred": true
  10254. }
  10255. ]
  10256. },
  10257. "require": {
  10258. "php": ">=7.3",
  10259. "sebastian/object-reflector": "^2.0",
  10260. "sebastian/recursion-context": "^4.0"
  10261. },
  10262. "require-dev": {
  10263. "ext-dom": "*",
  10264. "phpunit/phpunit": "^9.3"
  10265. },
  10266. "suggest": {
  10267. "ext-uopz": "*"
  10268. },
  10269. "type": "library",
  10270. "extra": {
  10271. "branch-alias": {
  10272. "dev-master": "5.0-dev"
  10273. }
  10274. },
  10275. "autoload": {
  10276. "classmap": [
  10277. "src/"
  10278. ]
  10279. },
  10280. "notification-url": "https://packagist.org/downloads/",
  10281. "license": [
  10282. "BSD-3-Clause"
  10283. ],
  10284. "authors": [
  10285. {
  10286. "name": "Sebastian Bergmann",
  10287. "email": "sebastian@phpunit.de"
  10288. }
  10289. ],
  10290. "description": "Snapshotting of global state",
  10291. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  10292. "keywords": [
  10293. "global state"
  10294. ],
  10295. "support": {
  10296. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10297. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.8"
  10298. },
  10299. "funding": [
  10300. {
  10301. "url": "https://github.com/sebastianbergmann",
  10302. "type": "github"
  10303. },
  10304. {
  10305. "url": "https://liberapay.com/sebastianbergmann",
  10306. "type": "liberapay"
  10307. },
  10308. {
  10309. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  10310. "type": "thanks_dev"
  10311. },
  10312. {
  10313. "url": "https://tidelift.com/funding/github/packagist/sebastian/global-state",
  10314. "type": "tidelift"
  10315. }
  10316. ],
  10317. "time": "2025-08-10T07:10:35+00:00"
  10318. },
  10319. {
  10320. "name": "sebastian/lines-of-code",
  10321. "version": "1.0.4",
  10322. "source": {
  10323. "type": "git",
  10324. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10325. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5"
  10326. },
  10327. "dist": {
  10328. "type": "zip",
  10329. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  10330. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  10331. "shasum": "",
  10332. "mirrors": [
  10333. {
  10334. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10335. "preferred": true
  10336. }
  10337. ]
  10338. },
  10339. "require": {
  10340. "nikic/php-parser": "^4.18 || ^5.0",
  10341. "php": ">=7.3"
  10342. },
  10343. "require-dev": {
  10344. "phpunit/phpunit": "^9.3"
  10345. },
  10346. "type": "library",
  10347. "extra": {
  10348. "branch-alias": {
  10349. "dev-master": "1.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. "role": "lead"
  10366. }
  10367. ],
  10368. "description": "Library for counting the lines of code in PHP source code",
  10369. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10370. "support": {
  10371. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10372. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4"
  10373. },
  10374. "funding": [
  10375. {
  10376. "url": "https://github.com/sebastianbergmann",
  10377. "type": "github"
  10378. }
  10379. ],
  10380. "time": "2023-12-22T06:20:34+00:00"
  10381. },
  10382. {
  10383. "name": "sebastian/object-enumerator",
  10384. "version": "4.0.4",
  10385. "source": {
  10386. "type": "git",
  10387. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10388. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  10389. },
  10390. "dist": {
  10391. "type": "zip",
  10392. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  10393. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  10394. "shasum": "",
  10395. "mirrors": [
  10396. {
  10397. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10398. "preferred": true
  10399. }
  10400. ]
  10401. },
  10402. "require": {
  10403. "php": ">=7.3",
  10404. "sebastian/object-reflector": "^2.0",
  10405. "sebastian/recursion-context": "^4.0"
  10406. },
  10407. "require-dev": {
  10408. "phpunit/phpunit": "^9.3"
  10409. },
  10410. "type": "library",
  10411. "extra": {
  10412. "branch-alias": {
  10413. "dev-master": "4.0-dev"
  10414. }
  10415. },
  10416. "autoload": {
  10417. "classmap": [
  10418. "src/"
  10419. ]
  10420. },
  10421. "notification-url": "https://packagist.org/downloads/",
  10422. "license": [
  10423. "BSD-3-Clause"
  10424. ],
  10425. "authors": [
  10426. {
  10427. "name": "Sebastian Bergmann",
  10428. "email": "sebastian@phpunit.de"
  10429. }
  10430. ],
  10431. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10432. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10433. "support": {
  10434. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10435. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  10436. },
  10437. "funding": [
  10438. {
  10439. "url": "https://github.com/sebastianbergmann",
  10440. "type": "github"
  10441. }
  10442. ],
  10443. "time": "2020-10-26T13:12:34+00:00"
  10444. },
  10445. {
  10446. "name": "sebastian/object-reflector",
  10447. "version": "2.0.4",
  10448. "source": {
  10449. "type": "git",
  10450. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10451. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  10452. },
  10453. "dist": {
  10454. "type": "zip",
  10455. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10456. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10457. "shasum": "",
  10458. "mirrors": [
  10459. {
  10460. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10461. "preferred": true
  10462. }
  10463. ]
  10464. },
  10465. "require": {
  10466. "php": ">=7.3"
  10467. },
  10468. "require-dev": {
  10469. "phpunit/phpunit": "^9.3"
  10470. },
  10471. "type": "library",
  10472. "extra": {
  10473. "branch-alias": {
  10474. "dev-master": "2.0-dev"
  10475. }
  10476. },
  10477. "autoload": {
  10478. "classmap": [
  10479. "src/"
  10480. ]
  10481. },
  10482. "notification-url": "https://packagist.org/downloads/",
  10483. "license": [
  10484. "BSD-3-Clause"
  10485. ],
  10486. "authors": [
  10487. {
  10488. "name": "Sebastian Bergmann",
  10489. "email": "sebastian@phpunit.de"
  10490. }
  10491. ],
  10492. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10493. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10494. "support": {
  10495. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10496. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  10497. },
  10498. "funding": [
  10499. {
  10500. "url": "https://github.com/sebastianbergmann",
  10501. "type": "github"
  10502. }
  10503. ],
  10504. "time": "2020-10-26T13:14:26+00:00"
  10505. },
  10506. {
  10507. "name": "sebastian/recursion-context",
  10508. "version": "4.0.5",
  10509. "source": {
  10510. "type": "git",
  10511. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10512. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  10513. },
  10514. "dist": {
  10515. "type": "zip",
  10516. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10517. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10518. "shasum": "",
  10519. "mirrors": [
  10520. {
  10521. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10522. "preferred": true
  10523. }
  10524. ]
  10525. },
  10526. "require": {
  10527. "php": ">=7.3"
  10528. },
  10529. "require-dev": {
  10530. "phpunit/phpunit": "^9.3"
  10531. },
  10532. "type": "library",
  10533. "extra": {
  10534. "branch-alias": {
  10535. "dev-master": "4.0-dev"
  10536. }
  10537. },
  10538. "autoload": {
  10539. "classmap": [
  10540. "src/"
  10541. ]
  10542. },
  10543. "notification-url": "https://packagist.org/downloads/",
  10544. "license": [
  10545. "BSD-3-Clause"
  10546. ],
  10547. "authors": [
  10548. {
  10549. "name": "Sebastian Bergmann",
  10550. "email": "sebastian@phpunit.de"
  10551. },
  10552. {
  10553. "name": "Jeff Welch",
  10554. "email": "whatthejeff@gmail.com"
  10555. },
  10556. {
  10557. "name": "Adam Harvey",
  10558. "email": "aharvey@php.net"
  10559. }
  10560. ],
  10561. "description": "Provides functionality to recursively process PHP variables",
  10562. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10563. "support": {
  10564. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10565. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  10566. },
  10567. "funding": [
  10568. {
  10569. "url": "https://github.com/sebastianbergmann",
  10570. "type": "github"
  10571. }
  10572. ],
  10573. "time": "2023-02-03T06:07:39+00:00"
  10574. },
  10575. {
  10576. "name": "sebastian/resource-operations",
  10577. "version": "3.0.4",
  10578. "source": {
  10579. "type": "git",
  10580. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10581. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e"
  10582. },
  10583. "dist": {
  10584. "type": "zip",
  10585. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  10586. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  10587. "shasum": "",
  10588. "mirrors": [
  10589. {
  10590. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10591. "preferred": true
  10592. }
  10593. ]
  10594. },
  10595. "require": {
  10596. "php": ">=7.3"
  10597. },
  10598. "require-dev": {
  10599. "phpunit/phpunit": "^9.0"
  10600. },
  10601. "type": "library",
  10602. "extra": {
  10603. "branch-alias": {
  10604. "dev-main": "3.0-dev"
  10605. }
  10606. },
  10607. "autoload": {
  10608. "classmap": [
  10609. "src/"
  10610. ]
  10611. },
  10612. "notification-url": "https://packagist.org/downloads/",
  10613. "license": [
  10614. "BSD-3-Clause"
  10615. ],
  10616. "authors": [
  10617. {
  10618. "name": "Sebastian Bergmann",
  10619. "email": "sebastian@phpunit.de"
  10620. }
  10621. ],
  10622. "description": "Provides a list of PHP built-in functions that operate on resources",
  10623. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10624. "support": {
  10625. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.4"
  10626. },
  10627. "funding": [
  10628. {
  10629. "url": "https://github.com/sebastianbergmann",
  10630. "type": "github"
  10631. }
  10632. ],
  10633. "abandoned": true,
  10634. "time": "2024-03-14T16:00:52+00:00"
  10635. },
  10636. {
  10637. "name": "sebastian/type",
  10638. "version": "3.2.1",
  10639. "source": {
  10640. "type": "git",
  10641. "url": "https://github.com/sebastianbergmann/type.git",
  10642. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  10643. },
  10644. "dist": {
  10645. "type": "zip",
  10646. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10647. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10648. "shasum": "",
  10649. "mirrors": [
  10650. {
  10651. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10652. "preferred": true
  10653. }
  10654. ]
  10655. },
  10656. "require": {
  10657. "php": ">=7.3"
  10658. },
  10659. "require-dev": {
  10660. "phpunit/phpunit": "^9.5"
  10661. },
  10662. "type": "library",
  10663. "extra": {
  10664. "branch-alias": {
  10665. "dev-master": "3.2-dev"
  10666. }
  10667. },
  10668. "autoload": {
  10669. "classmap": [
  10670. "src/"
  10671. ]
  10672. },
  10673. "notification-url": "https://packagist.org/downloads/",
  10674. "license": [
  10675. "BSD-3-Clause"
  10676. ],
  10677. "authors": [
  10678. {
  10679. "name": "Sebastian Bergmann",
  10680. "email": "sebastian@phpunit.de",
  10681. "role": "lead"
  10682. }
  10683. ],
  10684. "description": "Collection of value objects that represent the types of the PHP type system",
  10685. "homepage": "https://github.com/sebastianbergmann/type",
  10686. "support": {
  10687. "issues": "https://github.com/sebastianbergmann/type/issues",
  10688. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  10689. },
  10690. "funding": [
  10691. {
  10692. "url": "https://github.com/sebastianbergmann",
  10693. "type": "github"
  10694. }
  10695. ],
  10696. "time": "2023-02-03T06:13:03+00:00"
  10697. },
  10698. {
  10699. "name": "sebastian/version",
  10700. "version": "3.0.2",
  10701. "source": {
  10702. "type": "git",
  10703. "url": "https://github.com/sebastianbergmann/version.git",
  10704. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  10705. },
  10706. "dist": {
  10707. "type": "zip",
  10708. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  10709. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  10710. "shasum": "",
  10711. "mirrors": [
  10712. {
  10713. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10714. "preferred": true
  10715. }
  10716. ]
  10717. },
  10718. "require": {
  10719. "php": ">=7.3"
  10720. },
  10721. "type": "library",
  10722. "extra": {
  10723. "branch-alias": {
  10724. "dev-master": "3.0-dev"
  10725. }
  10726. },
  10727. "autoload": {
  10728. "classmap": [
  10729. "src/"
  10730. ]
  10731. },
  10732. "notification-url": "https://packagist.org/downloads/",
  10733. "license": [
  10734. "BSD-3-Clause"
  10735. ],
  10736. "authors": [
  10737. {
  10738. "name": "Sebastian Bergmann",
  10739. "email": "sebastian@phpunit.de",
  10740. "role": "lead"
  10741. }
  10742. ],
  10743. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10744. "homepage": "https://github.com/sebastianbergmann/version",
  10745. "support": {
  10746. "issues": "https://github.com/sebastianbergmann/version/issues",
  10747. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  10748. },
  10749. "funding": [
  10750. {
  10751. "url": "https://github.com/sebastianbergmann",
  10752. "type": "github"
  10753. }
  10754. ],
  10755. "time": "2020-09-28T06:39:44+00:00"
  10756. },
  10757. {
  10758. "name": "theseer/tokenizer",
  10759. "version": "1.2.3",
  10760. "source": {
  10761. "type": "git",
  10762. "url": "https://github.com/theseer/tokenizer.git",
  10763. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  10764. },
  10765. "dist": {
  10766. "type": "zip",
  10767. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10768. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10769. "shasum": "",
  10770. "mirrors": [
  10771. {
  10772. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10773. "preferred": true
  10774. }
  10775. ]
  10776. },
  10777. "require": {
  10778. "ext-dom": "*",
  10779. "ext-tokenizer": "*",
  10780. "ext-xmlwriter": "*",
  10781. "php": "^7.2 || ^8.0"
  10782. },
  10783. "type": "library",
  10784. "autoload": {
  10785. "classmap": [
  10786. "src/"
  10787. ]
  10788. },
  10789. "notification-url": "https://packagist.org/downloads/",
  10790. "license": [
  10791. "BSD-3-Clause"
  10792. ],
  10793. "authors": [
  10794. {
  10795. "name": "Arne Blankerts",
  10796. "email": "arne@blankerts.de",
  10797. "role": "Developer"
  10798. }
  10799. ],
  10800. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10801. "support": {
  10802. "issues": "https://github.com/theseer/tokenizer/issues",
  10803. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  10804. },
  10805. "funding": [
  10806. {
  10807. "url": "https://github.com/theseer",
  10808. "type": "github"
  10809. }
  10810. ],
  10811. "time": "2024-03-03T12:36:25+00:00"
  10812. }
  10813. ],
  10814. "aliases": [],
  10815. "minimum-stability": "dev",
  10816. "stability-flags": {
  10817. "fukuball/jieba-php": 20
  10818. },
  10819. "prefer-stable": true,
  10820. "prefer-lowest": false,
  10821. "platform": {
  10822. "php": "^8.0",
  10823. "ext-json": "*"
  10824. },
  10825. "platform-dev": {},
  10826. "plugin-api-version": "2.6.0"
  10827. }