composer.lock 322 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306
  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": "be3b9d766f321140954c93f9129e2ca7",
  8. "packages": [
  9. {
  10. "name": "aliyuncs/oss-sdk-php",
  11. "version": "v2.7.1",
  12. "dist": {
  13. "type": "zip",
  14. "url": "https://mirrors.tencent.com/repository/composer/aliyuncs/oss-sdk-php/v2.7.1/aliyuncs-oss-sdk-php-v2.7.1.zip",
  15. "reference": "ce5d34dae9868237a32248788ea175c7e9da14b1",
  16. "shasum": ""
  17. },
  18. "require": {
  19. "php": ">=5.3"
  20. },
  21. "require-dev": {
  22. "php-coveralls/php-coveralls": "*",
  23. "phpunit/phpunit": "*"
  24. },
  25. "type": "library",
  26. "autoload": {
  27. "psr-4": {
  28. "OSS\\": "src/OSS"
  29. }
  30. },
  31. "license": [
  32. "MIT"
  33. ],
  34. "authors": [
  35. {
  36. "name": "Aliyuncs",
  37. "homepage": "http://www.aliyun.com"
  38. }
  39. ],
  40. "description": "Aliyun OSS SDK for PHP",
  41. "homepage": "http://www.aliyun.com/product/oss/",
  42. "time": "2024-02-28T11:22:18+00:00"
  43. },
  44. {
  45. "name": "brick/math",
  46. "version": "0.12.1",
  47. "dist": {
  48. "type": "zip",
  49. "url": "https://mirrors.tencent.com/repository/composer/brick/math/0.12.1/brick-math-0.12.1.zip",
  50. "reference": "f510c0a40911935b77b86859eb5223d58d660df1",
  51. "shasum": ""
  52. },
  53. "require": {
  54. "php": "^8.1"
  55. },
  56. "require-dev": {
  57. "php-coveralls/php-coveralls": "^2.2",
  58. "phpunit/phpunit": "^10.1",
  59. "vimeo/psalm": "5.16.0"
  60. },
  61. "type": "library",
  62. "autoload": {
  63. "psr-4": {
  64. "Brick\\Math\\": "src/"
  65. }
  66. },
  67. "license": [
  68. "MIT"
  69. ],
  70. "description": "Arbitrary-precision arithmetic library",
  71. "keywords": [
  72. "Arbitrary-precision",
  73. "BigInteger",
  74. "BigRational",
  75. "arithmetic",
  76. "bigdecimal",
  77. "bignum",
  78. "bignumber",
  79. "brick",
  80. "decimal",
  81. "integer",
  82. "math",
  83. "mathematics",
  84. "rational"
  85. ],
  86. "time": "2023-11-29T23:19:16+00:00"
  87. },
  88. {
  89. "name": "carbonphp/carbon-doctrine-types",
  90. "version": "2.1.0",
  91. "dist": {
  92. "type": "zip",
  93. "url": "https://mirrors.tencent.com/repository/composer/carbonphp/carbon-doctrine-types/2.1.0/carbonphp-carbon-doctrine-types-2.1.0.zip",
  94. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  95. "shasum": ""
  96. },
  97. "require": {
  98. "php": "^7.4 || ^8.0"
  99. },
  100. "conflict": {
  101. "doctrine/dbal": "<3.7.0 || >=4.0.0"
  102. },
  103. "require-dev": {
  104. "doctrine/dbal": "^3.7.0",
  105. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  106. "phpunit/phpunit": "^10.3"
  107. },
  108. "type": "library",
  109. "autoload": {
  110. "psr-4": {
  111. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  112. }
  113. },
  114. "license": [
  115. "MIT"
  116. ],
  117. "authors": [
  118. {
  119. "name": "KyleKatarn",
  120. "email": "kylekatarnls@gmail.com"
  121. }
  122. ],
  123. "description": "Types to use Carbon in Doctrine",
  124. "keywords": [
  125. "carbon",
  126. "date",
  127. "datetime",
  128. "doctrine",
  129. "time"
  130. ],
  131. "time": "2023-12-11T17:09:12+00:00"
  132. },
  133. {
  134. "name": "composer/ca-bundle",
  135. "version": "1.5.2",
  136. "dist": {
  137. "type": "zip",
  138. "url": "https://mirrors.tencent.com/repository/composer/composer/ca-bundle/1.5.2/composer-ca-bundle-1.5.2.zip",
  139. "reference": "48a792895a2b7a6ee65dd5442c299d7b835b6137",
  140. "shasum": ""
  141. },
  142. "require": {
  143. "ext-openssl": "*",
  144. "ext-pcre": "*",
  145. "php": "^7.2 || ^8.0"
  146. },
  147. "require-dev": {
  148. "phpstan/phpstan": "^1.10",
  149. "phpunit/phpunit": "^8 || ^9",
  150. "psr/log": "^1.0 || ^2.0 || ^3.0",
  151. "symfony/process": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  152. },
  153. "type": "library",
  154. "extra": {
  155. "branch-alias": {
  156. "dev-main": "1.x-dev"
  157. }
  158. },
  159. "autoload": {
  160. "psr-4": {
  161. "Composer\\CaBundle\\": "src"
  162. }
  163. },
  164. "license": [
  165. "MIT"
  166. ],
  167. "authors": [
  168. {
  169. "name": "Jordi Boggiano",
  170. "email": "j.boggiano@seld.be",
  171. "homepage": "http://seld.be"
  172. }
  173. ],
  174. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  175. "keywords": [
  176. "cabundle",
  177. "cacert",
  178. "certificate",
  179. "ssl",
  180. "tls"
  181. ],
  182. "time": "2024-09-25T07:49:53+00:00"
  183. },
  184. {
  185. "name": "composer/semver",
  186. "version": "3.4.3",
  187. "dist": {
  188. "type": "zip",
  189. "url": "https://mirrors.tencent.com/repository/composer/composer/semver/3.4.3/composer-semver-3.4.3.zip",
  190. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  191. "shasum": ""
  192. },
  193. "require": {
  194. "php": "^5.3.2 || ^7.0 || ^8.0"
  195. },
  196. "require-dev": {
  197. "phpstan/phpstan": "^1.11",
  198. "symfony/phpunit-bridge": "^3 || ^7"
  199. },
  200. "type": "library",
  201. "extra": {
  202. "branch-alias": {
  203. "dev-main": "3.x-dev"
  204. }
  205. },
  206. "autoload": {
  207. "psr-4": {
  208. "Composer\\Semver\\": "src"
  209. }
  210. },
  211. "license": [
  212. "MIT"
  213. ],
  214. "authors": [
  215. {
  216. "name": "Nils Adermann",
  217. "email": "naderman@naderman.de",
  218. "homepage": "http://www.naderman.de"
  219. },
  220. {
  221. "name": "Jordi Boggiano",
  222. "email": "j.boggiano@seld.be",
  223. "homepage": "http://seld.be"
  224. },
  225. {
  226. "name": "Rob Bast",
  227. "email": "rob.bast@gmail.com",
  228. "homepage": "http://robbast.nl"
  229. }
  230. ],
  231. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  232. "keywords": [
  233. "semantic",
  234. "semver",
  235. "validation",
  236. "versioning"
  237. ],
  238. "time": "2024-09-19T14:15:21+00:00"
  239. },
  240. {
  241. "name": "dflydev/dot-access-data",
  242. "version": "v3.0.3",
  243. "dist": {
  244. "type": "zip",
  245. "url": "https://mirrors.tencent.com/repository/composer/dflydev/dot-access-data/v3.0.3/dflydev-dot-access-data-v3.0.3.zip",
  246. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  247. "shasum": ""
  248. },
  249. "require": {
  250. "php": "^7.1 || ^8.0"
  251. },
  252. "require-dev": {
  253. "phpstan/phpstan": "^0.12.42",
  254. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  255. "scrutinizer/ocular": "1.6.0",
  256. "squizlabs/php_codesniffer": "^3.5",
  257. "vimeo/psalm": "^4.0.0"
  258. },
  259. "type": "library",
  260. "extra": {
  261. "branch-alias": {
  262. "dev-main": "3.x-dev"
  263. }
  264. },
  265. "autoload": {
  266. "psr-4": {
  267. "Dflydev\\DotAccessData\\": "src/"
  268. }
  269. },
  270. "license": [
  271. "MIT"
  272. ],
  273. "authors": [
  274. {
  275. "name": "Dragonfly Development Inc.",
  276. "email": "info@dflydev.com",
  277. "homepage": "http://dflydev.com"
  278. },
  279. {
  280. "name": "Beau Simensen",
  281. "email": "beau@dflydev.com",
  282. "homepage": "http://beausimensen.com"
  283. },
  284. {
  285. "name": "Carlos Frutos",
  286. "email": "carlos@kiwing.it",
  287. "homepage": "https://github.com/cfrutos"
  288. },
  289. {
  290. "name": "Colin O'Dell",
  291. "email": "colinodell@gmail.com",
  292. "homepage": "https://www.colinodell.com"
  293. }
  294. ],
  295. "description": "Given a deep data structure, access data by dot notation.",
  296. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  297. "keywords": [
  298. "access",
  299. "data",
  300. "dot",
  301. "notation"
  302. ],
  303. "time": "2024-07-08T12:26:09+00:00"
  304. },
  305. {
  306. "name": "doctrine/inflector",
  307. "version": "2.0.10",
  308. "dist": {
  309. "type": "zip",
  310. "url": "https://mirrors.tencent.com/repository/composer/doctrine/inflector/2.0.10/doctrine-inflector-2.0.10.zip",
  311. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  312. "shasum": ""
  313. },
  314. "require": {
  315. "php": "^7.2 || ^8.0"
  316. },
  317. "require-dev": {
  318. "doctrine/coding-standard": "^11.0",
  319. "phpstan/phpstan": "^1.8",
  320. "phpstan/phpstan-phpunit": "^1.1",
  321. "phpstan/phpstan-strict-rules": "^1.3",
  322. "phpunit/phpunit": "^8.5 || ^9.5",
  323. "vimeo/psalm": "^4.25 || ^5.4"
  324. },
  325. "type": "library",
  326. "autoload": {
  327. "psr-4": {
  328. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  329. }
  330. },
  331. "license": [
  332. "MIT"
  333. ],
  334. "authors": [
  335. {
  336. "name": "Guilherme Blanco",
  337. "email": "guilhermeblanco@gmail.com"
  338. },
  339. {
  340. "name": "Roman Borschel",
  341. "email": "roman@code-factory.org"
  342. },
  343. {
  344. "name": "Benjamin Eberlei",
  345. "email": "kontakt@beberlei.de"
  346. },
  347. {
  348. "name": "Jonathan Wage",
  349. "email": "jonwage@gmail.com"
  350. },
  351. {
  352. "name": "Johannes Schmitt",
  353. "email": "schmittjoh@gmail.com"
  354. }
  355. ],
  356. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  357. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  358. "keywords": [
  359. "inflection",
  360. "inflector",
  361. "lowercase",
  362. "manipulation",
  363. "php",
  364. "plural",
  365. "singular",
  366. "strings",
  367. "uppercase",
  368. "words"
  369. ],
  370. "time": "2024-02-18T20:23:39+00:00"
  371. },
  372. {
  373. "name": "doctrine/lexer",
  374. "version": "3.0.1",
  375. "dist": {
  376. "type": "zip",
  377. "url": "https://mirrors.tencent.com/repository/composer/doctrine/lexer/3.0.1/doctrine-lexer-3.0.1.zip",
  378. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  379. "shasum": ""
  380. },
  381. "require": {
  382. "php": "^8.1"
  383. },
  384. "require-dev": {
  385. "doctrine/coding-standard": "^12",
  386. "phpstan/phpstan": "^1.10",
  387. "phpunit/phpunit": "^10.5",
  388. "psalm/plugin-phpunit": "^0.18.3",
  389. "vimeo/psalm": "^5.21"
  390. },
  391. "type": "library",
  392. "autoload": {
  393. "psr-4": {
  394. "Doctrine\\Common\\Lexer\\": "src"
  395. }
  396. },
  397. "license": [
  398. "MIT"
  399. ],
  400. "authors": [
  401. {
  402. "name": "Guilherme Blanco",
  403. "email": "guilhermeblanco@gmail.com"
  404. },
  405. {
  406. "name": "Roman Borschel",
  407. "email": "roman@code-factory.org"
  408. },
  409. {
  410. "name": "Johannes Schmitt",
  411. "email": "schmittjoh@gmail.com"
  412. }
  413. ],
  414. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  415. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  416. "keywords": [
  417. "annotations",
  418. "docblock",
  419. "lexer",
  420. "parser",
  421. "php"
  422. ],
  423. "time": "2024-02-05T11:56:58+00:00"
  424. },
  425. {
  426. "name": "dragonmantank/cron-expression",
  427. "version": "v3.4.0",
  428. "dist": {
  429. "type": "zip",
  430. "url": "https://mirrors.tencent.com/repository/composer/dragonmantank/cron-expression/v3.4.0/dragonmantank-cron-expression-v3.4.0.zip",
  431. "reference": "8c784d071debd117328803d86b2097615b457500",
  432. "shasum": ""
  433. },
  434. "require": {
  435. "php": "^7.2|^8.0",
  436. "webmozart/assert": "^1.0"
  437. },
  438. "replace": {
  439. "mtdowling/cron-expression": "^1.0"
  440. },
  441. "require-dev": {
  442. "phpstan/extension-installer": "^1.0",
  443. "phpstan/phpstan": "^1.0",
  444. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  445. },
  446. "type": "library",
  447. "extra": {
  448. "branch-alias": {
  449. "dev-master": "3.x-dev"
  450. }
  451. },
  452. "autoload": {
  453. "psr-4": {
  454. "Cron\\": "src/Cron/"
  455. }
  456. },
  457. "license": [
  458. "MIT"
  459. ],
  460. "authors": [
  461. {
  462. "name": "Chris Tankersley",
  463. "email": "chris@ctankersley.com",
  464. "homepage": "https://github.com/dragonmantank"
  465. }
  466. ],
  467. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  468. "keywords": [
  469. "cron",
  470. "schedule"
  471. ],
  472. "time": "2024-10-09T13:47:03+00:00"
  473. },
  474. {
  475. "name": "egulias/email-validator",
  476. "version": "4.0.2",
  477. "dist": {
  478. "type": "zip",
  479. "url": "https://mirrors.tencent.com/repository/composer/egulias/email-validator/4.0.2/egulias-email-validator-4.0.2.zip",
  480. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
  481. "shasum": ""
  482. },
  483. "require": {
  484. "doctrine/lexer": "^2.0 || ^3.0",
  485. "php": ">=8.1",
  486. "symfony/polyfill-intl-idn": "^1.26"
  487. },
  488. "require-dev": {
  489. "phpunit/phpunit": "^10.2",
  490. "vimeo/psalm": "^5.12"
  491. },
  492. "suggest": {
  493. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  494. },
  495. "type": "library",
  496. "extra": {
  497. "branch-alias": {
  498. "dev-master": "4.0.x-dev"
  499. }
  500. },
  501. "autoload": {
  502. "psr-4": {
  503. "Egulias\\EmailValidator\\": "src"
  504. }
  505. },
  506. "license": [
  507. "MIT"
  508. ],
  509. "authors": [
  510. {
  511. "name": "Eduardo Gulias Davis"
  512. }
  513. ],
  514. "description": "A library for validating emails against several RFCs",
  515. "homepage": "https://github.com/egulias/EmailValidator",
  516. "keywords": [
  517. "email",
  518. "emailvalidation",
  519. "emailvalidator",
  520. "validation",
  521. "validator"
  522. ],
  523. "time": "2023-10-06T06:47:41+00:00"
  524. },
  525. {
  526. "name": "ezyang/htmlpurifier",
  527. "version": "v4.17.0",
  528. "dist": {
  529. "type": "zip",
  530. "url": "https://mirrors.tencent.com/repository/composer/ezyang/htmlpurifier/v4.17.0/ezyang-htmlpurifier-v4.17.0.zip",
  531. "reference": "bbc513d79acf6691fa9cf10f192c90dd2957f18c",
  532. "shasum": ""
  533. },
  534. "require": {
  535. "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"
  536. },
  537. "require-dev": {
  538. "cerdic/css-tidy": "^1.7 || ^2.0",
  539. "simpletest/simpletest": "dev-master"
  540. },
  541. "suggest": {
  542. "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
  543. "ext-bcmath": "Used for unit conversion and imagecrash protection",
  544. "ext-iconv": "Converts text to and from non-UTF-8 encodings",
  545. "ext-tidy": "Used for pretty-printing HTML"
  546. },
  547. "type": "library",
  548. "autoload": {
  549. "files": [
  550. "library/HTMLPurifier.composer.php"
  551. ],
  552. "psr-0": {
  553. "HTMLPurifier": "library/"
  554. },
  555. "exclude-from-classmap": [
  556. "/library/HTMLPurifier/Language/"
  557. ]
  558. },
  559. "license": [
  560. "LGPL-2.1-or-later"
  561. ],
  562. "authors": [
  563. {
  564. "name": "Edward Z. Yang",
  565. "email": "admin@htmlpurifier.org",
  566. "homepage": "http://ezyang.com"
  567. }
  568. ],
  569. "description": "Standards compliant HTML filter written in PHP",
  570. "homepage": "http://htmlpurifier.org/",
  571. "keywords": [
  572. "html"
  573. ],
  574. "time": "2023-11-17T15:01:25+00:00"
  575. },
  576. {
  577. "name": "fruitcake/php-cors",
  578. "version": "v1.3.0",
  579. "dist": {
  580. "type": "zip",
  581. "url": "https://mirrors.tencent.com/repository/composer/fruitcake/php-cors/v1.3.0/fruitcake-php-cors-v1.3.0.zip",
  582. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b",
  583. "shasum": ""
  584. },
  585. "require": {
  586. "php": "^7.4|^8.0",
  587. "symfony/http-foundation": "^4.4|^5.4|^6|^7"
  588. },
  589. "require-dev": {
  590. "phpstan/phpstan": "^1.4",
  591. "phpunit/phpunit": "^9",
  592. "squizlabs/php_codesniffer": "^3.5"
  593. },
  594. "type": "library",
  595. "extra": {
  596. "branch-alias": {
  597. "dev-master": "1.2-dev"
  598. }
  599. },
  600. "autoload": {
  601. "psr-4": {
  602. "Fruitcake\\Cors\\": "src/"
  603. }
  604. },
  605. "license": [
  606. "MIT"
  607. ],
  608. "authors": [
  609. {
  610. "name": "Fruitcake",
  611. "homepage": "https://fruitcake.nl"
  612. },
  613. {
  614. "name": "Barryvdh",
  615. "email": "barryvdh@gmail.com"
  616. }
  617. ],
  618. "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
  619. "homepage": "https://github.com/fruitcake/php-cors",
  620. "keywords": [
  621. "cors",
  622. "laravel",
  623. "symfony"
  624. ],
  625. "time": "2023-10-12T05:21:21+00:00"
  626. },
  627. {
  628. "name": "graham-campbell/result-type",
  629. "version": "v1.1.3",
  630. "dist": {
  631. "type": "zip",
  632. "url": "https://mirrors.tencent.com/repository/composer/graham-campbell/result-type/v1.1.3/graham-campbell-result-type-v1.1.3.zip",
  633. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945",
  634. "shasum": ""
  635. },
  636. "require": {
  637. "php": "^7.2.5 || ^8.0",
  638. "phpoption/phpoption": "^1.9.3"
  639. },
  640. "require-dev": {
  641. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  642. },
  643. "type": "library",
  644. "autoload": {
  645. "psr-4": {
  646. "GrahamCampbell\\ResultType\\": "src/"
  647. }
  648. },
  649. "license": [
  650. "MIT"
  651. ],
  652. "authors": [
  653. {
  654. "name": "Graham Campbell",
  655. "email": "hello@gjcampbell.co.uk",
  656. "homepage": "https://github.com/GrahamCampbell"
  657. }
  658. ],
  659. "description": "An Implementation Of The Result Type",
  660. "keywords": [
  661. "Graham Campbell",
  662. "GrahamCampbell",
  663. "Result Type",
  664. "Result-Type",
  665. "result"
  666. ],
  667. "time": "2024-07-20T21:45:45+00:00"
  668. },
  669. {
  670. "name": "guzzlehttp/command",
  671. "version": "1.3.1",
  672. "dist": {
  673. "type": "zip",
  674. "url": "https://mirrors.tencent.com/repository/composer/guzzlehttp/command/1.3.1/guzzlehttp-command-1.3.1.zip",
  675. "reference": "0eebc653784f4902b3272e826fe8e88743d14e77",
  676. "shasum": ""
  677. },
  678. "require": {
  679. "guzzlehttp/guzzle": "^7.8",
  680. "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
  681. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  682. "php": "^7.2.5 || ^8.0"
  683. },
  684. "require-dev": {
  685. "bamarni/composer-bin-plugin": "^1.8.2",
  686. "phpunit/phpunit": "^8.5.19 || ^9.5.8"
  687. },
  688. "type": "library",
  689. "extra": {
  690. "bamarni-bin": {
  691. "bin-links": true,
  692. "forward-command": false
  693. }
  694. },
  695. "autoload": {
  696. "psr-4": {
  697. "GuzzleHttp\\Command\\": "src/"
  698. }
  699. },
  700. "license": [
  701. "MIT"
  702. ],
  703. "authors": [
  704. {
  705. "name": "Graham Campbell",
  706. "email": "hello@gjcampbell.co.uk",
  707. "homepage": "https://github.com/GrahamCampbell"
  708. },
  709. {
  710. "name": "Michael Dowling",
  711. "email": "mtdowling@gmail.com",
  712. "homepage": "https://github.com/mtdowling"
  713. },
  714. {
  715. "name": "Jeremy Lindblom",
  716. "email": "jeremeamia@gmail.com",
  717. "homepage": "https://github.com/jeremeamia"
  718. },
  719. {
  720. "name": "Tobias Nyholm",
  721. "email": "tobias.nyholm@gmail.com",
  722. "homepage": "https://github.com/Nyholm"
  723. }
  724. ],
  725. "description": "Provides the foundation for building command-based web service clients",
  726. "time": "2023-12-03T20:46:20+00:00"
  727. },
  728. {
  729. "name": "guzzlehttp/guzzle",
  730. "version": "7.9.2",
  731. "dist": {
  732. "type": "zip",
  733. "url": "https://mirrors.tencent.com/repository/composer/guzzlehttp/guzzle/7.9.2/guzzlehttp-guzzle-7.9.2.zip",
  734. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  735. "shasum": ""
  736. },
  737. "require": {
  738. "ext-json": "*",
  739. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  740. "guzzlehttp/psr7": "^2.7.0",
  741. "php": "^7.2.5 || ^8.0",
  742. "psr/http-client": "^1.0",
  743. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  744. },
  745. "provide": {
  746. "psr/http-client-implementation": "1.0"
  747. },
  748. "require-dev": {
  749. "bamarni/composer-bin-plugin": "^1.8.2",
  750. "ext-curl": "*",
  751. "guzzle/client-integration-tests": "3.0.2",
  752. "php-http/message-factory": "^1.1",
  753. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  754. "psr/log": "^1.1 || ^2.0 || ^3.0"
  755. },
  756. "suggest": {
  757. "ext-curl": "Required for CURL handler support",
  758. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  759. "psr/log": "Required for using the Log middleware"
  760. },
  761. "type": "library",
  762. "extra": {
  763. "bamarni-bin": {
  764. "bin-links": true,
  765. "forward-command": false
  766. }
  767. },
  768. "autoload": {
  769. "files": [
  770. "src/functions_include.php"
  771. ],
  772. "psr-4": {
  773. "GuzzleHttp\\": "src/"
  774. }
  775. },
  776. "license": [
  777. "MIT"
  778. ],
  779. "authors": [
  780. {
  781. "name": "Graham Campbell",
  782. "email": "hello@gjcampbell.co.uk",
  783. "homepage": "https://github.com/GrahamCampbell"
  784. },
  785. {
  786. "name": "Michael Dowling",
  787. "email": "mtdowling@gmail.com",
  788. "homepage": "https://github.com/mtdowling"
  789. },
  790. {
  791. "name": "Jeremy Lindblom",
  792. "email": "jeremeamia@gmail.com",
  793. "homepage": "https://github.com/jeremeamia"
  794. },
  795. {
  796. "name": "George Mponos",
  797. "email": "gmponos@gmail.com",
  798. "homepage": "https://github.com/gmponos"
  799. },
  800. {
  801. "name": "Tobias Nyholm",
  802. "email": "tobias.nyholm@gmail.com",
  803. "homepage": "https://github.com/Nyholm"
  804. },
  805. {
  806. "name": "Márk Sági-Kazár",
  807. "email": "mark.sagikazar@gmail.com",
  808. "homepage": "https://github.com/sagikazarmark"
  809. },
  810. {
  811. "name": "Tobias Schultze",
  812. "email": "webmaster@tubo-world.de",
  813. "homepage": "https://github.com/Tobion"
  814. }
  815. ],
  816. "description": "Guzzle is a PHP HTTP client library",
  817. "keywords": [
  818. "client",
  819. "curl",
  820. "framework",
  821. "http",
  822. "http client",
  823. "psr-18",
  824. "psr-7",
  825. "rest",
  826. "web service"
  827. ],
  828. "time": "2024-07-24T11:22:20+00:00"
  829. },
  830. {
  831. "name": "guzzlehttp/guzzle-services",
  832. "version": "1.4.1",
  833. "dist": {
  834. "type": "zip",
  835. "url": "https://mirrors.tencent.com/repository/composer/guzzlehttp/guzzle-services/1.4.1/guzzlehttp-guzzle-services-1.4.1.zip",
  836. "reference": "bcab7c0d61672b606510a6fe5af3039d04968c0f",
  837. "shasum": ""
  838. },
  839. "require": {
  840. "guzzlehttp/command": "^1.3.1",
  841. "guzzlehttp/guzzle": "^7.8",
  842. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  843. "guzzlehttp/uri-template": "^1.0.1",
  844. "php": "^7.2.5 || ^8.0"
  845. },
  846. "require-dev": {
  847. "bamarni/composer-bin-plugin": "^1.8.2",
  848. "phpunit/phpunit": "^8.5.19 || ^9.5.8"
  849. },
  850. "suggest": {
  851. "gimler/guzzle-description-loader": "^0.0.4"
  852. },
  853. "type": "library",
  854. "extra": {
  855. "bamarni-bin": {
  856. "bin-links": true,
  857. "forward-command": false
  858. }
  859. },
  860. "autoload": {
  861. "psr-4": {
  862. "GuzzleHttp\\Command\\Guzzle\\": "src/"
  863. }
  864. },
  865. "license": [
  866. "MIT"
  867. ],
  868. "authors": [
  869. {
  870. "name": "Graham Campbell",
  871. "email": "hello@gjcampbell.co.uk",
  872. "homepage": "https://github.com/GrahamCampbell"
  873. },
  874. {
  875. "name": "Michael Dowling",
  876. "email": "mtdowling@gmail.com",
  877. "homepage": "https://github.com/mtdowling"
  878. },
  879. {
  880. "name": "Stefano Kowalke",
  881. "email": "blueduck@mail.org",
  882. "homepage": "https://github.com/Konafets"
  883. },
  884. {
  885. "name": "Tobias Nyholm",
  886. "email": "tobias.nyholm@gmail.com",
  887. "homepage": "https://github.com/Nyholm"
  888. }
  889. ],
  890. "description": "Provides an implementation of the Guzzle Command library that uses Guzzle service descriptions to describe web services, serialize requests, and parse responses into easy to use model structures.",
  891. "time": "2023-12-03T20:48:14+00:00"
  892. },
  893. {
  894. "name": "guzzlehttp/promises",
  895. "version": "2.0.3",
  896. "dist": {
  897. "type": "zip",
  898. "url": "https://mirrors.tencent.com/repository/composer/guzzlehttp/promises/2.0.3/guzzlehttp-promises-2.0.3.zip",
  899. "reference": "6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8",
  900. "shasum": ""
  901. },
  902. "require": {
  903. "php": "^7.2.5 || ^8.0"
  904. },
  905. "require-dev": {
  906. "bamarni/composer-bin-plugin": "^1.8.2",
  907. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  908. },
  909. "type": "library",
  910. "extra": {
  911. "bamarni-bin": {
  912. "bin-links": true,
  913. "forward-command": false
  914. }
  915. },
  916. "autoload": {
  917. "psr-4": {
  918. "GuzzleHttp\\Promise\\": "src/"
  919. }
  920. },
  921. "license": [
  922. "MIT"
  923. ],
  924. "authors": [
  925. {
  926. "name": "Graham Campbell",
  927. "email": "hello@gjcampbell.co.uk",
  928. "homepage": "https://github.com/GrahamCampbell"
  929. },
  930. {
  931. "name": "Michael Dowling",
  932. "email": "mtdowling@gmail.com",
  933. "homepage": "https://github.com/mtdowling"
  934. },
  935. {
  936. "name": "Tobias Nyholm",
  937. "email": "tobias.nyholm@gmail.com",
  938. "homepage": "https://github.com/Nyholm"
  939. },
  940. {
  941. "name": "Tobias Schultze",
  942. "email": "webmaster@tubo-world.de",
  943. "homepage": "https://github.com/Tobion"
  944. }
  945. ],
  946. "description": "Guzzle promises library",
  947. "keywords": [
  948. "promise"
  949. ],
  950. "time": "2024-07-18T10:29:17+00:00"
  951. },
  952. {
  953. "name": "guzzlehttp/psr7",
  954. "version": "2.7.0",
  955. "dist": {
  956. "type": "zip",
  957. "url": "https://mirrors.tencent.com/repository/composer/guzzlehttp/psr7/2.7.0/guzzlehttp-psr7-2.7.0.zip",
  958. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  959. "shasum": ""
  960. },
  961. "require": {
  962. "php": "^7.2.5 || ^8.0",
  963. "psr/http-factory": "^1.0",
  964. "psr/http-message": "^1.1 || ^2.0",
  965. "ralouphie/getallheaders": "^3.0"
  966. },
  967. "provide": {
  968. "psr/http-factory-implementation": "1.0",
  969. "psr/http-message-implementation": "1.0"
  970. },
  971. "require-dev": {
  972. "bamarni/composer-bin-plugin": "^1.8.2",
  973. "http-interop/http-factory-tests": "0.9.0",
  974. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  975. },
  976. "suggest": {
  977. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  978. },
  979. "type": "library",
  980. "extra": {
  981. "bamarni-bin": {
  982. "bin-links": true,
  983. "forward-command": false
  984. }
  985. },
  986. "autoload": {
  987. "psr-4": {
  988. "GuzzleHttp\\Psr7\\": "src/"
  989. }
  990. },
  991. "license": [
  992. "MIT"
  993. ],
  994. "authors": [
  995. {
  996. "name": "Graham Campbell",
  997. "email": "hello@gjcampbell.co.uk",
  998. "homepage": "https://github.com/GrahamCampbell"
  999. },
  1000. {
  1001. "name": "Michael Dowling",
  1002. "email": "mtdowling@gmail.com",
  1003. "homepage": "https://github.com/mtdowling"
  1004. },
  1005. {
  1006. "name": "George Mponos",
  1007. "email": "gmponos@gmail.com",
  1008. "homepage": "https://github.com/gmponos"
  1009. },
  1010. {
  1011. "name": "Tobias Nyholm",
  1012. "email": "tobias.nyholm@gmail.com",
  1013. "homepage": "https://github.com/Nyholm"
  1014. },
  1015. {
  1016. "name": "Márk Sági-Kazár",
  1017. "email": "mark.sagikazar@gmail.com",
  1018. "homepage": "https://github.com/sagikazarmark"
  1019. },
  1020. {
  1021. "name": "Tobias Schultze",
  1022. "email": "webmaster@tubo-world.de",
  1023. "homepage": "https://github.com/Tobion"
  1024. },
  1025. {
  1026. "name": "Márk Sági-Kazár",
  1027. "email": "mark.sagikazar@gmail.com",
  1028. "homepage": "https://sagikazarmark.hu"
  1029. }
  1030. ],
  1031. "description": "PSR-7 message implementation that also provides common utility methods",
  1032. "keywords": [
  1033. "http",
  1034. "message",
  1035. "psr-7",
  1036. "request",
  1037. "response",
  1038. "stream",
  1039. "uri",
  1040. "url"
  1041. ],
  1042. "time": "2024-07-18T11:15:46+00:00"
  1043. },
  1044. {
  1045. "name": "guzzlehttp/uri-template",
  1046. "version": "v1.0.3",
  1047. "dist": {
  1048. "type": "zip",
  1049. "url": "https://mirrors.tencent.com/repository/composer/guzzlehttp/uri-template/v1.0.3/guzzlehttp-uri-template-v1.0.3.zip",
  1050. "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c",
  1051. "shasum": ""
  1052. },
  1053. "require": {
  1054. "php": "^7.2.5 || ^8.0",
  1055. "symfony/polyfill-php80": "^1.24"
  1056. },
  1057. "require-dev": {
  1058. "bamarni/composer-bin-plugin": "^1.8.2",
  1059. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  1060. "uri-template/tests": "1.0.0"
  1061. },
  1062. "type": "library",
  1063. "extra": {
  1064. "bamarni-bin": {
  1065. "bin-links": true,
  1066. "forward-command": false
  1067. }
  1068. },
  1069. "autoload": {
  1070. "psr-4": {
  1071. "GuzzleHttp\\UriTemplate\\": "src"
  1072. }
  1073. },
  1074. "license": [
  1075. "MIT"
  1076. ],
  1077. "authors": [
  1078. {
  1079. "name": "Graham Campbell",
  1080. "email": "hello@gjcampbell.co.uk",
  1081. "homepage": "https://github.com/GrahamCampbell"
  1082. },
  1083. {
  1084. "name": "Michael Dowling",
  1085. "email": "mtdowling@gmail.com",
  1086. "homepage": "https://github.com/mtdowling"
  1087. },
  1088. {
  1089. "name": "George Mponos",
  1090. "email": "gmponos@gmail.com",
  1091. "homepage": "https://github.com/gmponos"
  1092. },
  1093. {
  1094. "name": "Tobias Nyholm",
  1095. "email": "tobias.nyholm@gmail.com",
  1096. "homepage": "https://github.com/Nyholm"
  1097. }
  1098. ],
  1099. "description": "A polyfill class for uri_template of PHP",
  1100. "keywords": [
  1101. "guzzlehttp",
  1102. "uri-template"
  1103. ],
  1104. "time": "2023-12-03T19:50:20+00:00"
  1105. },
  1106. {
  1107. "name": "hisorange/browser-detect",
  1108. "version": "5.0.3",
  1109. "dist": {
  1110. "type": "zip",
  1111. "url": "https://mirrors.tencent.com/repository/composer/hisorange/browser-detect/5.0.3/hisorange-browser-detect-5.0.3.zip",
  1112. "reference": "6460325a81460d912131c0b943a00e76f8847cdb",
  1113. "shasum": ""
  1114. },
  1115. "require": {
  1116. "jaybizzle/crawler-detect": "~1.2",
  1117. "league/pipeline": "^1.0",
  1118. "matomo/device-detector": "^6.0",
  1119. "mobiledetect/mobiledetectlib": "~4.0",
  1120. "php": "^8.1",
  1121. "ua-parser/uap-php": "~3.9"
  1122. },
  1123. "require-dev": {
  1124. "orchestra/testbench": "~7.0 || ~8.0",
  1125. "php-coveralls/php-coveralls": "~2.0",
  1126. "phpunit/phpunit": "~9.0 || ~10.0"
  1127. },
  1128. "type": "library",
  1129. "extra": {
  1130. "laravel": {
  1131. "providers": [
  1132. "hisorange\\BrowserDetect\\ServiceProvider"
  1133. ],
  1134. "aliases": {
  1135. "Browser": "hisorange\\BrowserDetect\\Facade"
  1136. }
  1137. }
  1138. },
  1139. "autoload": {
  1140. "psr-4": {
  1141. "hisorange\\BrowserDetect\\": "src/"
  1142. }
  1143. },
  1144. "license": [
  1145. "MIT"
  1146. ],
  1147. "authors": [
  1148. {
  1149. "name": "Varga Zsolt",
  1150. "email": "hello@hisorange.me"
  1151. }
  1152. ],
  1153. "description": "Browser & Mobile detection package for Laravel.",
  1154. "homepage": "https://github.com/hisorange/browser-detect",
  1155. "keywords": [
  1156. "analyse",
  1157. "browser",
  1158. "detect",
  1159. "hisorange",
  1160. "laravel",
  1161. "mobile",
  1162. "tablet",
  1163. "user agent",
  1164. "user-agent"
  1165. ],
  1166. "time": "2024-02-05T08:21:06+00:00"
  1167. },
  1168. {
  1169. "name": "iidestiny/flysystem-oss",
  1170. "version": "4.3",
  1171. "dist": {
  1172. "type": "zip",
  1173. "url": "https://mirrors.tencent.com/repository/composer/iidestiny/flysystem-oss/4.3/iidestiny-flysystem-oss-4.3.zip",
  1174. "reference": "15447c3367cb8a36a64bc2881c13ee2b6ae3fa26",
  1175. "shasum": ""
  1176. },
  1177. "require": {
  1178. "aliyuncs/oss-sdk-php": "^2.4",
  1179. "ext-curl": "*",
  1180. "ext-json": "*",
  1181. "ext-openssl": "*",
  1182. "league/flysystem": "^3.0",
  1183. "php": "^8.0.2"
  1184. },
  1185. "require-dev": {
  1186. "mockery/mockery": "^1.5",
  1187. "phpunit/phpunit": "^9.5",
  1188. "symfony/var-dumper": "^3.4"
  1189. },
  1190. "type": "library",
  1191. "autoload": {
  1192. "psr-4": {
  1193. "Iidestiny\\Flysystem\\Oss\\": "src"
  1194. }
  1195. },
  1196. "license": [
  1197. "MIT"
  1198. ],
  1199. "authors": [
  1200. {
  1201. "name": "iidestiny",
  1202. "email": "iidestiny@vip.qq.com"
  1203. }
  1204. ],
  1205. "description": "Flysystem adapter for the Oss storage.",
  1206. "keywords": [
  1207. "alioss",
  1208. "laravel",
  1209. "oss",
  1210. "阿里oss"
  1211. ],
  1212. "time": "2023-09-09T11:59:47+00:00"
  1213. },
  1214. {
  1215. "name": "iidestiny/laravel-filesystem-oss",
  1216. "version": "3.3",
  1217. "dist": {
  1218. "type": "zip",
  1219. "url": "https://mirrors.tencent.com/repository/composer/iidestiny/laravel-filesystem-oss/3.3/iidestiny-laravel-filesystem-oss-3.3.zip",
  1220. "reference": "30e788109accab282c106121bf1977754511e973",
  1221. "shasum": ""
  1222. },
  1223. "require": {
  1224. "iidestiny/flysystem-oss": "^4.1",
  1225. "laravel/framework": "^9.0 | ^10.0",
  1226. "php": "^8.0.2"
  1227. },
  1228. "type": "library",
  1229. "extra": {
  1230. "laravel": {
  1231. "providers": [
  1232. "Iidestiny\\LaravelFilesystemOss\\OssStorageServiceProvider"
  1233. ]
  1234. }
  1235. },
  1236. "autoload": {
  1237. "psr-4": {
  1238. "Iidestiny\\LaravelFilesystemOss\\": "src"
  1239. }
  1240. },
  1241. "license": [
  1242. "MIT"
  1243. ],
  1244. "authors": [
  1245. {
  1246. "name": "iidestiny",
  1247. "email": "iidestiny@vip.qq.com"
  1248. }
  1249. ],
  1250. "description": "Oss storage filesystem for Laravel.",
  1251. "time": "2023-08-25T03:00:39+00:00"
  1252. },
  1253. {
  1254. "name": "jaybizzle/crawler-detect",
  1255. "version": "v1.2.120",
  1256. "dist": {
  1257. "type": "zip",
  1258. "url": "https://mirrors.tencent.com/repository/composer/jaybizzle/crawler-detect/v1.2.120/jaybizzle-crawler-detect-v1.2.120.zip",
  1259. "reference": "2b325bdce46bbb8a2e96dc740ad37c743c9d8617",
  1260. "shasum": ""
  1261. },
  1262. "require": {
  1263. "php": ">=5.3.0"
  1264. },
  1265. "require-dev": {
  1266. "phpunit/phpunit": "^4.8|^5.5|^6.5|^9.4"
  1267. },
  1268. "type": "library",
  1269. "autoload": {
  1270. "psr-4": {
  1271. "Jaybizzle\\CrawlerDetect\\": "src/"
  1272. }
  1273. },
  1274. "license": [
  1275. "MIT"
  1276. ],
  1277. "authors": [
  1278. {
  1279. "name": "Mark Beech",
  1280. "email": "m@rkbee.ch",
  1281. "role": "Developer"
  1282. }
  1283. ],
  1284. "description": "CrawlerDetect is a PHP class for detecting bots/crawlers/spiders via the user agent",
  1285. "homepage": "https://github.com/JayBizzle/Crawler-Detect/",
  1286. "keywords": [
  1287. "crawler",
  1288. "crawler detect",
  1289. "crawler detector",
  1290. "crawlerdetect",
  1291. "php crawler detect"
  1292. ],
  1293. "time": "2024-09-15T14:31:21+00:00"
  1294. },
  1295. {
  1296. "name": "laravel/framework",
  1297. "version": "v10.48.22",
  1298. "dist": {
  1299. "type": "zip",
  1300. "url": "https://mirrors.tencent.com/repository/composer/laravel/framework/v10.48.22/laravel-framework-v10.48.22.zip",
  1301. "reference": "c4ea52bb044faef4a103d7dd81746c01b2ec860e",
  1302. "shasum": ""
  1303. },
  1304. "require": {
  1305. "brick/math": "^0.9.3|^0.10.2|^0.11|^0.12",
  1306. "composer-runtime-api": "^2.2",
  1307. "doctrine/inflector": "^2.0.5",
  1308. "dragonmantank/cron-expression": "^3.3.2",
  1309. "egulias/email-validator": "^3.2.1|^4.0",
  1310. "ext-ctype": "*",
  1311. "ext-filter": "*",
  1312. "ext-hash": "*",
  1313. "ext-mbstring": "*",
  1314. "ext-openssl": "*",
  1315. "ext-session": "*",
  1316. "ext-tokenizer": "*",
  1317. "fruitcake/php-cors": "^1.2",
  1318. "guzzlehttp/uri-template": "^1.0",
  1319. "laravel/prompts": "^0.1.9",
  1320. "laravel/serializable-closure": "^1.3",
  1321. "league/commonmark": "^2.2.1",
  1322. "league/flysystem": "^3.8.0",
  1323. "monolog/monolog": "^3.0",
  1324. "nesbot/carbon": "^2.67",
  1325. "nunomaduro/termwind": "^1.13",
  1326. "php": "^8.1",
  1327. "psr/container": "^1.1.1|^2.0.1",
  1328. "psr/log": "^1.0|^2.0|^3.0",
  1329. "psr/simple-cache": "^1.0|^2.0|^3.0",
  1330. "ramsey/uuid": "^4.7",
  1331. "symfony/console": "^6.2",
  1332. "symfony/error-handler": "^6.2",
  1333. "symfony/finder": "^6.2",
  1334. "symfony/http-foundation": "^6.4",
  1335. "symfony/http-kernel": "^6.2",
  1336. "symfony/mailer": "^6.2",
  1337. "symfony/mime": "^6.2",
  1338. "symfony/process": "^6.2",
  1339. "symfony/routing": "^6.2",
  1340. "symfony/uid": "^6.2",
  1341. "symfony/var-dumper": "^6.2",
  1342. "tijsverkoyen/css-to-inline-styles": "^2.2.5",
  1343. "vlucas/phpdotenv": "^5.4.1",
  1344. "voku/portable-ascii": "^2.0"
  1345. },
  1346. "conflict": {
  1347. "carbonphp/carbon-doctrine-types": ">=3.0",
  1348. "doctrine/dbal": ">=4.0",
  1349. "mockery/mockery": "1.6.8",
  1350. "phpunit/phpunit": ">=11.0.0",
  1351. "tightenco/collect": "<5.5.33"
  1352. },
  1353. "provide": {
  1354. "psr/container-implementation": "1.1|2.0",
  1355. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  1356. },
  1357. "replace": {
  1358. "illuminate/auth": "self.version",
  1359. "illuminate/broadcasting": "self.version",
  1360. "illuminate/bus": "self.version",
  1361. "illuminate/cache": "self.version",
  1362. "illuminate/collections": "self.version",
  1363. "illuminate/conditionable": "self.version",
  1364. "illuminate/config": "self.version",
  1365. "illuminate/console": "self.version",
  1366. "illuminate/container": "self.version",
  1367. "illuminate/contracts": "self.version",
  1368. "illuminate/cookie": "self.version",
  1369. "illuminate/database": "self.version",
  1370. "illuminate/encryption": "self.version",
  1371. "illuminate/events": "self.version",
  1372. "illuminate/filesystem": "self.version",
  1373. "illuminate/hashing": "self.version",
  1374. "illuminate/http": "self.version",
  1375. "illuminate/log": "self.version",
  1376. "illuminate/macroable": "self.version",
  1377. "illuminate/mail": "self.version",
  1378. "illuminate/notifications": "self.version",
  1379. "illuminate/pagination": "self.version",
  1380. "illuminate/pipeline": "self.version",
  1381. "illuminate/process": "self.version",
  1382. "illuminate/queue": "self.version",
  1383. "illuminate/redis": "self.version",
  1384. "illuminate/routing": "self.version",
  1385. "illuminate/session": "self.version",
  1386. "illuminate/support": "self.version",
  1387. "illuminate/testing": "self.version",
  1388. "illuminate/translation": "self.version",
  1389. "illuminate/validation": "self.version",
  1390. "illuminate/view": "self.version"
  1391. },
  1392. "require-dev": {
  1393. "ably/ably-php": "^1.0",
  1394. "aws/aws-sdk-php": "^3.235.5",
  1395. "doctrine/dbal": "^3.5.1",
  1396. "ext-gmp": "*",
  1397. "fakerphp/faker": "^1.21",
  1398. "guzzlehttp/guzzle": "^7.5",
  1399. "league/flysystem-aws-s3-v3": "^3.0",
  1400. "league/flysystem-ftp": "^3.0",
  1401. "league/flysystem-path-prefixing": "^3.3",
  1402. "league/flysystem-read-only": "^3.3",
  1403. "league/flysystem-sftp-v3": "^3.0",
  1404. "mockery/mockery": "^1.5.1",
  1405. "nyholm/psr7": "^1.2",
  1406. "orchestra/testbench-core": "^8.23.4",
  1407. "pda/pheanstalk": "^4.0",
  1408. "phpstan/phpstan": "^1.4.7",
  1409. "phpunit/phpunit": "^10.0.7",
  1410. "predis/predis": "^2.0.2",
  1411. "symfony/cache": "^6.2",
  1412. "symfony/http-client": "^6.2.4",
  1413. "symfony/psr-http-message-bridge": "^2.0"
  1414. },
  1415. "suggest": {
  1416. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  1417. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.235.5).",
  1418. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  1419. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^3.5.1).",
  1420. "ext-apcu": "Required to use the APC cache driver.",
  1421. "ext-fileinfo": "Required to use the Filesystem class.",
  1422. "ext-ftp": "Required to use the Flysystem FTP driver.",
  1423. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1424. "ext-memcached": "Required to use the memcache cache driver.",
  1425. "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.",
  1426. "ext-pdo": "Required to use all database features.",
  1427. "ext-posix": "Required to use all features of the queue worker.",
  1428. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  1429. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  1430. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  1431. "guzzlehttp/guzzle": "Required to use the HTTP Client and the ping methods on schedules (^7.5).",
  1432. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  1433. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).",
  1434. "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.0).",
  1435. "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.3).",
  1436. "league/flysystem-read-only": "Required to use read-only disks (^3.3)",
  1437. "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.0).",
  1438. "mockery/mockery": "Required to use mocking (^1.5.1).",
  1439. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  1440. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  1441. "phpunit/phpunit": "Required to use assertions and run tests (^9.5.8|^10.0.7).",
  1442. "predis/predis": "Required to use the predis connector (^2.0.2).",
  1443. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  1444. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
  1445. "symfony/cache": "Required to PSR-6 cache bridge (^6.2).",
  1446. "symfony/filesystem": "Required to enable support for relative symbolic links (^6.2).",
  1447. "symfony/http-client": "Required to enable support for the Symfony API mail transports (^6.2).",
  1448. "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^6.2).",
  1449. "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^6.2).",
  1450. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0)."
  1451. },
  1452. "type": "library",
  1453. "extra": {
  1454. "branch-alias": {
  1455. "dev-master": "10.x-dev"
  1456. }
  1457. },
  1458. "autoload": {
  1459. "files": [
  1460. "src/Illuminate/Collections/helpers.php",
  1461. "src/Illuminate/Events/functions.php",
  1462. "src/Illuminate/Filesystem/functions.php",
  1463. "src/Illuminate/Foundation/helpers.php",
  1464. "src/Illuminate/Support/helpers.php"
  1465. ],
  1466. "psr-4": {
  1467. "Illuminate\\": "src/Illuminate/",
  1468. "Illuminate\\Support\\": [
  1469. "src/Illuminate/Macroable/",
  1470. "src/Illuminate/Collections/",
  1471. "src/Illuminate/Conditionable/"
  1472. ]
  1473. }
  1474. },
  1475. "license": [
  1476. "MIT"
  1477. ],
  1478. "authors": [
  1479. {
  1480. "name": "Taylor Otwell",
  1481. "email": "taylor@laravel.com"
  1482. }
  1483. ],
  1484. "description": "The Laravel Framework.",
  1485. "homepage": "https://laravel.com",
  1486. "keywords": [
  1487. "framework",
  1488. "laravel"
  1489. ],
  1490. "time": "2024-09-12T15:00:09+00:00"
  1491. },
  1492. {
  1493. "name": "laravel/prompts",
  1494. "version": "v0.1.25",
  1495. "dist": {
  1496. "type": "zip",
  1497. "url": "https://mirrors.tencent.com/repository/composer/laravel/prompts/v0.1.25/laravel-prompts-v0.1.25.zip",
  1498. "reference": "7b4029a84c37cb2725fc7f011586e2997040bc95",
  1499. "shasum": ""
  1500. },
  1501. "require": {
  1502. "ext-mbstring": "*",
  1503. "illuminate/collections": "^10.0|^11.0",
  1504. "php": "^8.1",
  1505. "symfony/console": "^6.2|^7.0"
  1506. },
  1507. "conflict": {
  1508. "illuminate/console": ">=10.17.0 <10.25.0",
  1509. "laravel/framework": ">=10.17.0 <10.25.0"
  1510. },
  1511. "require-dev": {
  1512. "mockery/mockery": "^1.5",
  1513. "pestphp/pest": "^2.3",
  1514. "phpstan/phpstan": "^1.11",
  1515. "phpstan/phpstan-mockery": "^1.1"
  1516. },
  1517. "suggest": {
  1518. "ext-pcntl": "Required for the spinner to be animated."
  1519. },
  1520. "type": "library",
  1521. "extra": {
  1522. "branch-alias": {
  1523. "dev-main": "0.1.x-dev"
  1524. }
  1525. },
  1526. "autoload": {
  1527. "files": [
  1528. "src/helpers.php"
  1529. ],
  1530. "psr-4": {
  1531. "Laravel\\Prompts\\": "src/"
  1532. }
  1533. },
  1534. "license": [
  1535. "MIT"
  1536. ],
  1537. "description": "Add beautiful and user-friendly forms to your command-line applications.",
  1538. "time": "2024-08-12T22:06:33+00:00"
  1539. },
  1540. {
  1541. "name": "laravel/sanctum",
  1542. "version": "v3.3.3",
  1543. "dist": {
  1544. "type": "zip",
  1545. "url": "https://mirrors.tencent.com/repository/composer/laravel/sanctum/v3.3.3/laravel-sanctum-v3.3.3.zip",
  1546. "reference": "8c104366459739f3ada0e994bcd3e6fd681ce3d5",
  1547. "shasum": ""
  1548. },
  1549. "require": {
  1550. "ext-json": "*",
  1551. "illuminate/console": "^9.21|^10.0",
  1552. "illuminate/contracts": "^9.21|^10.0",
  1553. "illuminate/database": "^9.21|^10.0",
  1554. "illuminate/support": "^9.21|^10.0",
  1555. "php": "^8.0.2"
  1556. },
  1557. "require-dev": {
  1558. "mockery/mockery": "^1.0",
  1559. "orchestra/testbench": "^7.28.2|^8.8.3",
  1560. "phpstan/phpstan": "^1.10",
  1561. "phpunit/phpunit": "^9.6"
  1562. },
  1563. "type": "library",
  1564. "extra": {
  1565. "branch-alias": {
  1566. "dev-master": "3.x-dev"
  1567. },
  1568. "laravel": {
  1569. "providers": [
  1570. "Laravel\\Sanctum\\SanctumServiceProvider"
  1571. ]
  1572. }
  1573. },
  1574. "autoload": {
  1575. "psr-4": {
  1576. "Laravel\\Sanctum\\": "src/"
  1577. }
  1578. },
  1579. "license": [
  1580. "MIT"
  1581. ],
  1582. "authors": [
  1583. {
  1584. "name": "Taylor Otwell",
  1585. "email": "taylor@laravel.com"
  1586. }
  1587. ],
  1588. "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.",
  1589. "keywords": [
  1590. "auth",
  1591. "laravel",
  1592. "sanctum"
  1593. ],
  1594. "time": "2023-12-19T18:44:48+00:00"
  1595. },
  1596. {
  1597. "name": "laravel/serializable-closure",
  1598. "version": "v1.3.5",
  1599. "dist": {
  1600. "type": "zip",
  1601. "url": "https://mirrors.tencent.com/repository/composer/laravel/serializable-closure/v1.3.5/laravel-serializable-closure-v1.3.5.zip",
  1602. "reference": "1dc4a3dbfa2b7628a3114e43e32120cce7cdda9c",
  1603. "shasum": ""
  1604. },
  1605. "require": {
  1606. "php": "^7.3|^8.0"
  1607. },
  1608. "require-dev": {
  1609. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  1610. "nesbot/carbon": "^2.61|^3.0",
  1611. "pestphp/pest": "^1.21.3",
  1612. "phpstan/phpstan": "^1.8.2",
  1613. "symfony/var-dumper": "^5.4.11|^6.2.0|^7.0.0"
  1614. },
  1615. "type": "library",
  1616. "extra": {
  1617. "branch-alias": {
  1618. "dev-master": "1.x-dev"
  1619. }
  1620. },
  1621. "autoload": {
  1622. "psr-4": {
  1623. "Laravel\\SerializableClosure\\": "src/"
  1624. }
  1625. },
  1626. "license": [
  1627. "MIT"
  1628. ],
  1629. "authors": [
  1630. {
  1631. "name": "Taylor Otwell",
  1632. "email": "taylor@laravel.com"
  1633. },
  1634. {
  1635. "name": "Nuno Maduro",
  1636. "email": "nuno@laravel.com"
  1637. }
  1638. ],
  1639. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  1640. "keywords": [
  1641. "closure",
  1642. "laravel",
  1643. "serializable"
  1644. ],
  1645. "time": "2024-09-23T13:33:08+00:00"
  1646. },
  1647. {
  1648. "name": "laravel/tinker",
  1649. "version": "v2.10.0",
  1650. "dist": {
  1651. "type": "zip",
  1652. "url": "https://mirrors.tencent.com/repository/composer/laravel/tinker/v2.10.0/laravel-tinker-v2.10.0.zip",
  1653. "reference": "ba4d51eb56de7711b3a37d63aa0643e99a339ae5",
  1654. "shasum": ""
  1655. },
  1656. "require": {
  1657. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  1658. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  1659. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  1660. "php": "^7.2.5|^8.0",
  1661. "psy/psysh": "^0.11.1|^0.12.0",
  1662. "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0"
  1663. },
  1664. "require-dev": {
  1665. "mockery/mockery": "~1.3.3|^1.4.2",
  1666. "phpstan/phpstan": "^1.10",
  1667. "phpunit/phpunit": "^8.5.8|^9.3.3"
  1668. },
  1669. "suggest": {
  1670. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0)."
  1671. },
  1672. "type": "library",
  1673. "extra": {
  1674. "laravel": {
  1675. "providers": [
  1676. "Laravel\\Tinker\\TinkerServiceProvider"
  1677. ]
  1678. }
  1679. },
  1680. "autoload": {
  1681. "psr-4": {
  1682. "Laravel\\Tinker\\": "src/"
  1683. }
  1684. },
  1685. "license": [
  1686. "MIT"
  1687. ],
  1688. "authors": [
  1689. {
  1690. "name": "Taylor Otwell",
  1691. "email": "taylor@laravel.com"
  1692. }
  1693. ],
  1694. "description": "Powerful REPL for the Laravel framework.",
  1695. "keywords": [
  1696. "REPL",
  1697. "Tinker",
  1698. "laravel",
  1699. "psysh"
  1700. ],
  1701. "time": "2024-09-23T13:32:56+00:00"
  1702. },
  1703. {
  1704. "name": "league/commonmark",
  1705. "version": "2.5.3",
  1706. "dist": {
  1707. "type": "zip",
  1708. "url": "https://mirrors.tencent.com/repository/composer/league/commonmark/2.5.3/league-commonmark-2.5.3.zip",
  1709. "reference": "b650144166dfa7703e62a22e493b853b58d874b0",
  1710. "shasum": ""
  1711. },
  1712. "require": {
  1713. "ext-mbstring": "*",
  1714. "league/config": "^1.1.1",
  1715. "php": "^7.4 || ^8.0",
  1716. "psr/event-dispatcher": "^1.0",
  1717. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  1718. "symfony/polyfill-php80": "^1.16"
  1719. },
  1720. "require-dev": {
  1721. "cebe/markdown": "^1.0",
  1722. "commonmark/cmark": "0.31.1",
  1723. "commonmark/commonmark.js": "0.31.1",
  1724. "composer/package-versions-deprecated": "^1.8",
  1725. "embed/embed": "^4.4",
  1726. "erusev/parsedown": "^1.0",
  1727. "ext-json": "*",
  1728. "github/gfm": "0.29.0",
  1729. "michelf/php-markdown": "^1.4 || ^2.0",
  1730. "nyholm/psr7": "^1.5",
  1731. "phpstan/phpstan": "^1.8.2",
  1732. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  1733. "scrutinizer/ocular": "^1.8.1",
  1734. "symfony/finder": "^5.3 | ^6.0 || ^7.0",
  1735. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 || ^7.0",
  1736. "unleashedtech/php-coding-standard": "^3.1.1",
  1737. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  1738. },
  1739. "suggest": {
  1740. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  1741. },
  1742. "type": "library",
  1743. "extra": {
  1744. "branch-alias": {
  1745. "dev-main": "2.6-dev"
  1746. }
  1747. },
  1748. "autoload": {
  1749. "psr-4": {
  1750. "League\\CommonMark\\": "src"
  1751. }
  1752. },
  1753. "license": [
  1754. "BSD-3-Clause"
  1755. ],
  1756. "authors": [
  1757. {
  1758. "name": "Colin O'Dell",
  1759. "email": "colinodell@gmail.com",
  1760. "homepage": "https://www.colinodell.com",
  1761. "role": "Lead Developer"
  1762. }
  1763. ],
  1764. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  1765. "homepage": "https://commonmark.thephpleague.com",
  1766. "keywords": [
  1767. "commonmark",
  1768. "flavored",
  1769. "gfm",
  1770. "github",
  1771. "github-flavored",
  1772. "markdown",
  1773. "md",
  1774. "parser"
  1775. ],
  1776. "time": "2024-08-16T11:46:16+00:00"
  1777. },
  1778. {
  1779. "name": "league/config",
  1780. "version": "v1.2.0",
  1781. "dist": {
  1782. "type": "zip",
  1783. "url": "https://mirrors.tencent.com/repository/composer/league/config/v1.2.0/league-config-v1.2.0.zip",
  1784. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1785. "shasum": ""
  1786. },
  1787. "require": {
  1788. "dflydev/dot-access-data": "^3.0.1",
  1789. "nette/schema": "^1.2",
  1790. "php": "^7.4 || ^8.0"
  1791. },
  1792. "require-dev": {
  1793. "phpstan/phpstan": "^1.8.2",
  1794. "phpunit/phpunit": "^9.5.5",
  1795. "scrutinizer/ocular": "^1.8.1",
  1796. "unleashedtech/php-coding-standard": "^3.1",
  1797. "vimeo/psalm": "^4.7.3"
  1798. },
  1799. "type": "library",
  1800. "extra": {
  1801. "branch-alias": {
  1802. "dev-main": "1.2-dev"
  1803. }
  1804. },
  1805. "autoload": {
  1806. "psr-4": {
  1807. "League\\Config\\": "src"
  1808. }
  1809. },
  1810. "license": [
  1811. "BSD-3-Clause"
  1812. ],
  1813. "authors": [
  1814. {
  1815. "name": "Colin O'Dell",
  1816. "email": "colinodell@gmail.com",
  1817. "homepage": "https://www.colinodell.com",
  1818. "role": "Lead Developer"
  1819. }
  1820. ],
  1821. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  1822. "homepage": "https://config.thephpleague.com",
  1823. "keywords": [
  1824. "array",
  1825. "config",
  1826. "configuration",
  1827. "dot",
  1828. "dot-access",
  1829. "nested",
  1830. "schema"
  1831. ],
  1832. "time": "2022-12-11T20:36:23+00:00"
  1833. },
  1834. {
  1835. "name": "league/flysystem",
  1836. "version": "3.29.1",
  1837. "dist": {
  1838. "type": "zip",
  1839. "url": "https://mirrors.tencent.com/repository/composer/league/flysystem/3.29.1/league-flysystem-3.29.1.zip",
  1840. "reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319",
  1841. "shasum": ""
  1842. },
  1843. "require": {
  1844. "league/flysystem-local": "^3.0.0",
  1845. "league/mime-type-detection": "^1.0.0",
  1846. "php": "^8.0.2"
  1847. },
  1848. "conflict": {
  1849. "async-aws/core": "<1.19.0",
  1850. "async-aws/s3": "<1.14.0",
  1851. "aws/aws-sdk-php": "3.209.31 || 3.210.0",
  1852. "guzzlehttp/guzzle": "<7.0",
  1853. "guzzlehttp/ringphp": "<1.1.1",
  1854. "phpseclib/phpseclib": "3.0.15",
  1855. "symfony/http-client": "<5.2"
  1856. },
  1857. "require-dev": {
  1858. "async-aws/s3": "^1.5 || ^2.0",
  1859. "async-aws/simple-s3": "^1.1 || ^2.0",
  1860. "aws/aws-sdk-php": "^3.295.10",
  1861. "composer/semver": "^3.0",
  1862. "ext-fileinfo": "*",
  1863. "ext-ftp": "*",
  1864. "ext-mongodb": "^1.3",
  1865. "ext-zip": "*",
  1866. "friendsofphp/php-cs-fixer": "^3.5",
  1867. "google/cloud-storage": "^1.23",
  1868. "guzzlehttp/psr7": "^2.6",
  1869. "microsoft/azure-storage-blob": "^1.1",
  1870. "mongodb/mongodb": "^1.2",
  1871. "phpseclib/phpseclib": "^3.0.36",
  1872. "phpstan/phpstan": "^1.10",
  1873. "phpunit/phpunit": "^9.5.11|^10.0",
  1874. "sabre/dav": "^4.6.0"
  1875. },
  1876. "type": "library",
  1877. "autoload": {
  1878. "psr-4": {
  1879. "League\\Flysystem\\": "src"
  1880. }
  1881. },
  1882. "license": [
  1883. "MIT"
  1884. ],
  1885. "authors": [
  1886. {
  1887. "name": "Frank de Jonge",
  1888. "email": "info@frankdejonge.nl"
  1889. }
  1890. ],
  1891. "description": "File storage abstraction for PHP",
  1892. "keywords": [
  1893. "WebDAV",
  1894. "aws",
  1895. "cloud",
  1896. "file",
  1897. "files",
  1898. "filesystem",
  1899. "filesystems",
  1900. "ftp",
  1901. "s3",
  1902. "sftp",
  1903. "storage"
  1904. ],
  1905. "time": "2024-10-08T08:58:34+00:00"
  1906. },
  1907. {
  1908. "name": "league/flysystem-local",
  1909. "version": "3.29.0",
  1910. "dist": {
  1911. "type": "zip",
  1912. "url": "https://mirrors.tencent.com/repository/composer/league/flysystem-local/3.29.0/league-flysystem-local-3.29.0.zip",
  1913. "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27",
  1914. "shasum": ""
  1915. },
  1916. "require": {
  1917. "ext-fileinfo": "*",
  1918. "league/flysystem": "^3.0.0",
  1919. "league/mime-type-detection": "^1.0.0",
  1920. "php": "^8.0.2"
  1921. },
  1922. "type": "library",
  1923. "autoload": {
  1924. "psr-4": {
  1925. "League\\Flysystem\\Local\\": ""
  1926. }
  1927. },
  1928. "license": [
  1929. "MIT"
  1930. ],
  1931. "authors": [
  1932. {
  1933. "name": "Frank de Jonge",
  1934. "email": "info@frankdejonge.nl"
  1935. }
  1936. ],
  1937. "description": "Local filesystem adapter for Flysystem.",
  1938. "keywords": [
  1939. "Flysystem",
  1940. "file",
  1941. "files",
  1942. "filesystem",
  1943. "local"
  1944. ],
  1945. "time": "2024-08-09T21:24:39+00:00"
  1946. },
  1947. {
  1948. "name": "league/mime-type-detection",
  1949. "version": "1.16.0",
  1950. "dist": {
  1951. "type": "zip",
  1952. "url": "https://mirrors.tencent.com/repository/composer/league/mime-type-detection/1.16.0/league-mime-type-detection-1.16.0.zip",
  1953. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9",
  1954. "shasum": ""
  1955. },
  1956. "require": {
  1957. "ext-fileinfo": "*",
  1958. "php": "^7.4 || ^8.0"
  1959. },
  1960. "require-dev": {
  1961. "friendsofphp/php-cs-fixer": "^3.2",
  1962. "phpstan/phpstan": "^0.12.68",
  1963. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  1964. },
  1965. "type": "library",
  1966. "autoload": {
  1967. "psr-4": {
  1968. "League\\MimeTypeDetection\\": "src"
  1969. }
  1970. },
  1971. "license": [
  1972. "MIT"
  1973. ],
  1974. "authors": [
  1975. {
  1976. "name": "Frank de Jonge",
  1977. "email": "info@frankdejonge.nl"
  1978. }
  1979. ],
  1980. "description": "Mime-type detection for Flysystem",
  1981. "time": "2024-09-21T08:32:55+00:00"
  1982. },
  1983. {
  1984. "name": "league/pipeline",
  1985. "version": "1.0.0",
  1986. "dist": {
  1987. "type": "zip",
  1988. "url": "https://mirrors.tencent.com/repository/composer/league/pipeline/1.0.0/league-pipeline-1.0.0.zip",
  1989. "reference": "aa14b0e3133121f8be39e9a3b6ddd011fc5bb9a8",
  1990. "shasum": ""
  1991. },
  1992. "require": {
  1993. "php": ">=7.1"
  1994. },
  1995. "require-dev": {
  1996. "leanphp/phpspec-code-coverage": "^4.2",
  1997. "phpspec/phpspec": "^4.3"
  1998. },
  1999. "type": "library",
  2000. "autoload": {
  2001. "psr-4": {
  2002. "League\\Pipeline\\": "src"
  2003. }
  2004. },
  2005. "license": [
  2006. "MIT"
  2007. ],
  2008. "authors": [
  2009. {
  2010. "name": "Frank de Jonge",
  2011. "email": "info@frenky.net",
  2012. "role": "Author"
  2013. },
  2014. {
  2015. "name": "Woody Gilk",
  2016. "email": "woody.gilk@gmail.com",
  2017. "role": "Maintainer"
  2018. }
  2019. ],
  2020. "description": "A plug and play pipeline implementation.",
  2021. "keywords": [
  2022. "composition",
  2023. "design pattern",
  2024. "pattern",
  2025. "pipeline",
  2026. "sequential"
  2027. ],
  2028. "time": "2018-06-05T21:06:51+00:00"
  2029. },
  2030. {
  2031. "name": "maatwebsite/excel",
  2032. "version": "3.1.58",
  2033. "dist": {
  2034. "type": "zip",
  2035. "url": "https://mirrors.tencent.com/repository/composer/maatwebsite/excel/3.1.58/maatwebsite-excel-3.1.58.zip",
  2036. "reference": "18495a71b112f43af8ffab35111a58b4e4ba4a4d",
  2037. "shasum": ""
  2038. },
  2039. "require": {
  2040. "composer/semver": "^3.3",
  2041. "ext-json": "*",
  2042. "illuminate/support": "5.8.*||^6.0||^7.0||^8.0||^9.0||^10.0||^11.0",
  2043. "php": "^7.0||^8.0",
  2044. "phpoffice/phpspreadsheet": "^1.29.1",
  2045. "psr/simple-cache": "^1.0||^2.0||^3.0"
  2046. },
  2047. "require-dev": {
  2048. "laravel/scout": "^7.0||^8.0||^9.0||^10.0",
  2049. "orchestra/testbench": "^6.0||^7.0||^8.0||^9.0",
  2050. "predis/predis": "^1.1"
  2051. },
  2052. "type": "library",
  2053. "extra": {
  2054. "laravel": {
  2055. "providers": [
  2056. "Maatwebsite\\Excel\\ExcelServiceProvider"
  2057. ],
  2058. "aliases": {
  2059. "Excel": "Maatwebsite\\Excel\\Facades\\Excel"
  2060. }
  2061. }
  2062. },
  2063. "autoload": {
  2064. "psr-4": {
  2065. "Maatwebsite\\Excel\\": "src/"
  2066. }
  2067. },
  2068. "license": [
  2069. "MIT"
  2070. ],
  2071. "authors": [
  2072. {
  2073. "name": "Patrick Brouwers",
  2074. "email": "patrick@spartner.nl"
  2075. }
  2076. ],
  2077. "description": "Supercharged Excel exports and imports in Laravel",
  2078. "keywords": [
  2079. "PHPExcel",
  2080. "batch",
  2081. "csv",
  2082. "excel",
  2083. "export",
  2084. "import",
  2085. "laravel",
  2086. "php",
  2087. "phpspreadsheet"
  2088. ],
  2089. "time": "2024-09-07T13:53:36+00:00"
  2090. },
  2091. {
  2092. "name": "maennchen/zipstream-php",
  2093. "version": "3.1.1",
  2094. "dist": {
  2095. "type": "zip",
  2096. "url": "https://mirrors.tencent.com/repository/composer/maennchen/zipstream-php/3.1.1/maennchen-zipstream-php-3.1.1.zip",
  2097. "reference": "6187e9cc4493da94b9b63eb2315821552015fca9",
  2098. "shasum": ""
  2099. },
  2100. "require": {
  2101. "ext-mbstring": "*",
  2102. "ext-zlib": "*",
  2103. "php-64bit": "^8.1"
  2104. },
  2105. "require-dev": {
  2106. "ext-zip": "*",
  2107. "friendsofphp/php-cs-fixer": "^3.16",
  2108. "guzzlehttp/guzzle": "^7.5",
  2109. "mikey179/vfsstream": "^1.6",
  2110. "php-coveralls/php-coveralls": "^2.5",
  2111. "phpunit/phpunit": "^10.0",
  2112. "vimeo/psalm": "^5.0"
  2113. },
  2114. "suggest": {
  2115. "guzzlehttp/psr7": "^2.4",
  2116. "psr/http-message": "^2.0"
  2117. },
  2118. "type": "library",
  2119. "autoload": {
  2120. "psr-4": {
  2121. "ZipStream\\": "src/"
  2122. }
  2123. },
  2124. "license": [
  2125. "MIT"
  2126. ],
  2127. "authors": [
  2128. {
  2129. "name": "Paul Duncan",
  2130. "email": "pabs@pablotron.org"
  2131. },
  2132. {
  2133. "name": "Jonatan Männchen",
  2134. "email": "jonatan@maennchen.ch"
  2135. },
  2136. {
  2137. "name": "Jesse Donat",
  2138. "email": "donatj@gmail.com"
  2139. },
  2140. {
  2141. "name": "András Kolesár",
  2142. "email": "kolesar@kolesar.hu"
  2143. }
  2144. ],
  2145. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  2146. "keywords": [
  2147. "stream",
  2148. "zip"
  2149. ],
  2150. "time": "2024-10-10T12:33:01+00:00"
  2151. },
  2152. {
  2153. "name": "markbaker/complex",
  2154. "version": "3.0.2",
  2155. "dist": {
  2156. "type": "zip",
  2157. "url": "https://mirrors.tencent.com/repository/composer/markbaker/complex/3.0.2/markbaker-complex-3.0.2.zip",
  2158. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  2159. "shasum": ""
  2160. },
  2161. "require": {
  2162. "php": "^7.2 || ^8.0"
  2163. },
  2164. "require-dev": {
  2165. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  2166. "phpcompatibility/php-compatibility": "^9.3",
  2167. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  2168. "squizlabs/php_codesniffer": "^3.7"
  2169. },
  2170. "type": "library",
  2171. "autoload": {
  2172. "psr-4": {
  2173. "Complex\\": "classes/src/"
  2174. }
  2175. },
  2176. "license": [
  2177. "MIT"
  2178. ],
  2179. "authors": [
  2180. {
  2181. "name": "Mark Baker",
  2182. "email": "mark@lange.demon.co.uk"
  2183. }
  2184. ],
  2185. "description": "PHP Class for working with complex numbers",
  2186. "homepage": "https://github.com/MarkBaker/PHPComplex",
  2187. "keywords": [
  2188. "complex",
  2189. "mathematics"
  2190. ],
  2191. "time": "2022-12-06T16:21:08+00:00"
  2192. },
  2193. {
  2194. "name": "markbaker/matrix",
  2195. "version": "3.0.1",
  2196. "dist": {
  2197. "type": "zip",
  2198. "url": "https://mirrors.tencent.com/repository/composer/markbaker/matrix/3.0.1/markbaker-matrix-3.0.1.zip",
  2199. "reference": "728434227fe21be27ff6d86621a1b13107a2562c",
  2200. "shasum": ""
  2201. },
  2202. "require": {
  2203. "php": "^7.1 || ^8.0"
  2204. },
  2205. "require-dev": {
  2206. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  2207. "phpcompatibility/php-compatibility": "^9.3",
  2208. "phpdocumentor/phpdocumentor": "2.*",
  2209. "phploc/phploc": "^4.0",
  2210. "phpmd/phpmd": "2.*",
  2211. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  2212. "sebastian/phpcpd": "^4.0",
  2213. "squizlabs/php_codesniffer": "^3.7"
  2214. },
  2215. "type": "library",
  2216. "autoload": {
  2217. "psr-4": {
  2218. "Matrix\\": "classes/src/"
  2219. }
  2220. },
  2221. "license": [
  2222. "MIT"
  2223. ],
  2224. "authors": [
  2225. {
  2226. "name": "Mark Baker",
  2227. "email": "mark@demon-angel.eu"
  2228. }
  2229. ],
  2230. "description": "PHP Class for working with matrices",
  2231. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  2232. "keywords": [
  2233. "mathematics",
  2234. "matrix",
  2235. "vector"
  2236. ],
  2237. "time": "2022-12-02T22:17:43+00:00"
  2238. },
  2239. {
  2240. "name": "matomo/device-detector",
  2241. "version": "6.4.1",
  2242. "dist": {
  2243. "type": "zip",
  2244. "url": "https://mirrors.tencent.com/repository/composer/matomo/device-detector/6.4.1/matomo-device-detector-6.4.1.zip",
  2245. "reference": "0d364e0dd6c177da3c24cd4049178026324fd7ac",
  2246. "shasum": ""
  2247. },
  2248. "require": {
  2249. "mustangostang/spyc": "*",
  2250. "php": "^7.2|^8.0"
  2251. },
  2252. "replace": {
  2253. "piwik/device-detector": "self.version"
  2254. },
  2255. "require-dev": {
  2256. "matthiasmullie/scrapbook": "^1.4.7",
  2257. "mayflower/mo4-coding-standard": "^v9.0.0",
  2258. "phpstan/phpstan": "^1.10.44",
  2259. "phpunit/phpunit": "^8.5.8",
  2260. "psr/cache": "^1.0.1",
  2261. "psr/simple-cache": "^1.0.1",
  2262. "symfony/yaml": "^5.1.7"
  2263. },
  2264. "suggest": {
  2265. "doctrine/cache": "Can directly be used for caching purpose",
  2266. "ext-yaml": "Necessary for using the Pecl YAML parser"
  2267. },
  2268. "type": "library",
  2269. "autoload": {
  2270. "psr-4": {
  2271. "DeviceDetector\\": ""
  2272. },
  2273. "exclude-from-classmap": [
  2274. "Tests/"
  2275. ]
  2276. },
  2277. "license": [
  2278. "LGPL-3.0-or-later"
  2279. ],
  2280. "authors": [
  2281. {
  2282. "name": "The Matomo Team",
  2283. "email": "hello@matomo.org",
  2284. "homepage": "https://matomo.org/team/"
  2285. }
  2286. ],
  2287. "description": "The Universal Device Detection library, that parses User Agents and detects devices (desktop, tablet, mobile, tv, cars, console, etc.), clients (browsers, media players, mobile apps, feed readers, libraries, etc), operating systems, devices, brands and models.",
  2288. "homepage": "https://matomo.org",
  2289. "keywords": [
  2290. "devicedetection",
  2291. "parser",
  2292. "useragent"
  2293. ],
  2294. "time": "2024-09-24T13:50:04+00:00"
  2295. },
  2296. {
  2297. "name": "mobiledetect/mobiledetectlib",
  2298. "version": "4.8.06",
  2299. "dist": {
  2300. "type": "zip",
  2301. "url": "https://mirrors.tencent.com/repository/composer/mobiledetect/mobiledetectlib/4.8.06/mobiledetect-mobiledetectlib-4.8.06.zip",
  2302. "reference": "af088b54cecc13b3264edca7da93a89ba7aa2d9e",
  2303. "shasum": ""
  2304. },
  2305. "require": {
  2306. "php": ">=8.0",
  2307. "psr/simple-cache": "^2 || ^3"
  2308. },
  2309. "require-dev": {
  2310. "friendsofphp/php-cs-fixer": "^v3.35.1",
  2311. "phpbench/phpbench": "^1.2",
  2312. "phpstan/phpstan": "^1.10",
  2313. "phpunit/phpunit": "^9.6",
  2314. "squizlabs/php_codesniffer": "^3.7"
  2315. },
  2316. "type": "library",
  2317. "autoload": {
  2318. "psr-4": {
  2319. "Detection\\": "src/"
  2320. }
  2321. },
  2322. "license": [
  2323. "MIT"
  2324. ],
  2325. "authors": [
  2326. {
  2327. "name": "Serban Ghita",
  2328. "email": "serbanghita@gmail.com",
  2329. "homepage": "http://mobiledetect.net",
  2330. "role": "Developer"
  2331. }
  2332. ],
  2333. "description": "Mobile_Detect is a lightweight PHP class for detecting mobile devices. It uses the User-Agent string combined with specific HTTP headers to detect the mobile environment.",
  2334. "homepage": "https://github.com/serbanghita/Mobile-Detect",
  2335. "keywords": [
  2336. "detect mobile devices",
  2337. "mobile",
  2338. "mobile detect",
  2339. "mobile detector",
  2340. "php mobile detect"
  2341. ],
  2342. "time": "2024-03-01T22:28:42+00:00"
  2343. },
  2344. {
  2345. "name": "monolog/monolog",
  2346. "version": "3.7.0",
  2347. "dist": {
  2348. "type": "zip",
  2349. "url": "https://mirrors.tencent.com/repository/composer/monolog/monolog/3.7.0/monolog-monolog-3.7.0.zip",
  2350. "reference": "f4393b648b78a5408747de94fca38beb5f7e9ef8",
  2351. "shasum": ""
  2352. },
  2353. "require": {
  2354. "php": ">=8.1",
  2355. "psr/log": "^2.0 || ^3.0"
  2356. },
  2357. "provide": {
  2358. "psr/log-implementation": "3.0.0"
  2359. },
  2360. "require-dev": {
  2361. "aws/aws-sdk-php": "^3.0",
  2362. "doctrine/couchdb": "~1.0@dev",
  2363. "elasticsearch/elasticsearch": "^7 || ^8",
  2364. "ext-json": "*",
  2365. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  2366. "guzzlehttp/guzzle": "^7.4.5",
  2367. "guzzlehttp/psr7": "^2.2",
  2368. "mongodb/mongodb": "^1.8",
  2369. "php-amqplib/php-amqplib": "~2.4 || ^3",
  2370. "phpstan/phpstan": "^1.9",
  2371. "phpstan/phpstan-deprecation-rules": "^1.0",
  2372. "phpstan/phpstan-strict-rules": "^1.4",
  2373. "phpunit/phpunit": "^10.5.17",
  2374. "predis/predis": "^1.1 || ^2",
  2375. "ruflin/elastica": "^7",
  2376. "symfony/mailer": "^5.4 || ^6",
  2377. "symfony/mime": "^5.4 || ^6"
  2378. },
  2379. "suggest": {
  2380. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2381. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2382. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2383. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2384. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  2385. "ext-mbstring": "Allow to work properly with unicode symbols",
  2386. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2387. "ext-openssl": "Required to send log messages using SSL",
  2388. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  2389. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2390. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2391. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2392. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2393. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2394. },
  2395. "type": "library",
  2396. "extra": {
  2397. "branch-alias": {
  2398. "dev-main": "3.x-dev"
  2399. }
  2400. },
  2401. "autoload": {
  2402. "psr-4": {
  2403. "Monolog\\": "src/Monolog"
  2404. }
  2405. },
  2406. "license": [
  2407. "MIT"
  2408. ],
  2409. "authors": [
  2410. {
  2411. "name": "Jordi Boggiano",
  2412. "email": "j.boggiano@seld.be",
  2413. "homepage": "https://seld.be"
  2414. }
  2415. ],
  2416. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2417. "homepage": "https://github.com/Seldaek/monolog",
  2418. "keywords": [
  2419. "log",
  2420. "logging",
  2421. "psr-3"
  2422. ],
  2423. "time": "2024-06-28T09:40:51+00:00"
  2424. },
  2425. {
  2426. "name": "mustangostang/spyc",
  2427. "version": "0.6.3",
  2428. "dist": {
  2429. "type": "zip",
  2430. "url": "https://mirrors.tencent.com/repository/composer/mustangostang/spyc/0.6.3/mustangostang-spyc-0.6.3.zip",
  2431. "reference": "4627c838b16550b666d15aeae1e5289dd5b77da0",
  2432. "shasum": ""
  2433. },
  2434. "require": {
  2435. "php": ">=5.3.1"
  2436. },
  2437. "require-dev": {
  2438. "phpunit/phpunit": "4.3.*@dev"
  2439. },
  2440. "type": "library",
  2441. "extra": {
  2442. "branch-alias": {
  2443. "dev-master": "0.5.x-dev"
  2444. }
  2445. },
  2446. "autoload": {
  2447. "files": [
  2448. "Spyc.php"
  2449. ]
  2450. },
  2451. "license": [
  2452. "MIT"
  2453. ],
  2454. "authors": [
  2455. {
  2456. "name": "mustangostang",
  2457. "email": "vlad.andersen@gmail.com"
  2458. }
  2459. ],
  2460. "description": "A simple YAML loader/dumper class for PHP",
  2461. "homepage": "https://github.com/mustangostang/spyc/",
  2462. "keywords": [
  2463. "spyc",
  2464. "yaml",
  2465. "yml"
  2466. ],
  2467. "time": "2019-09-10T13:16:29+00:00"
  2468. },
  2469. {
  2470. "name": "nesbot/carbon",
  2471. "version": "2.72.5",
  2472. "dist": {
  2473. "type": "zip",
  2474. "url": "https://mirrors.tencent.com/repository/composer/nesbot/carbon/2.72.5/nesbot-carbon-2.72.5.zip",
  2475. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed",
  2476. "shasum": ""
  2477. },
  2478. "require": {
  2479. "carbonphp/carbon-doctrine-types": "*",
  2480. "ext-json": "*",
  2481. "php": "^7.1.8 || ^8.0",
  2482. "psr/clock": "^1.0",
  2483. "symfony/polyfill-mbstring": "^1.0",
  2484. "symfony/polyfill-php80": "^1.16",
  2485. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  2486. },
  2487. "provide": {
  2488. "psr/clock-implementation": "1.0"
  2489. },
  2490. "require-dev": {
  2491. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  2492. "doctrine/orm": "^2.7 || ^3.0",
  2493. "friendsofphp/php-cs-fixer": "^3.0",
  2494. "kylekatarnls/multi-tester": "^2.0",
  2495. "ondrejmirtes/better-reflection": "*",
  2496. "phpmd/phpmd": "^2.9",
  2497. "phpstan/extension-installer": "^1.0",
  2498. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  2499. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  2500. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  2501. "squizlabs/php_codesniffer": "^3.4"
  2502. },
  2503. "bin": [
  2504. "bin/carbon"
  2505. ],
  2506. "type": "library",
  2507. "extra": {
  2508. "branch-alias": {
  2509. "dev-master": "3.x-dev",
  2510. "dev-2.x": "2.x-dev"
  2511. },
  2512. "laravel": {
  2513. "providers": [
  2514. "Carbon\\Laravel\\ServiceProvider"
  2515. ]
  2516. },
  2517. "phpstan": {
  2518. "includes": [
  2519. "extension.neon"
  2520. ]
  2521. }
  2522. },
  2523. "autoload": {
  2524. "psr-4": {
  2525. "Carbon\\": "src/Carbon/"
  2526. }
  2527. },
  2528. "license": [
  2529. "MIT"
  2530. ],
  2531. "authors": [
  2532. {
  2533. "name": "Brian Nesbitt",
  2534. "email": "brian@nesbot.com",
  2535. "homepage": "https://markido.com"
  2536. },
  2537. {
  2538. "name": "kylekatarnls",
  2539. "homepage": "https://github.com/kylekatarnls"
  2540. }
  2541. ],
  2542. "description": "An API extension for DateTime that supports 281 different languages.",
  2543. "homepage": "https://carbon.nesbot.com",
  2544. "keywords": [
  2545. "date",
  2546. "datetime",
  2547. "time"
  2548. ],
  2549. "time": "2024-06-03T19:18:41+00:00"
  2550. },
  2551. {
  2552. "name": "nette/schema",
  2553. "version": "v1.3.2",
  2554. "dist": {
  2555. "type": "zip",
  2556. "url": "https://mirrors.tencent.com/repository/composer/nette/schema/v1.3.2/nette-schema-v1.3.2.zip",
  2557. "reference": "da801d52f0354f70a638673c4a0f04e16529431d",
  2558. "shasum": ""
  2559. },
  2560. "require": {
  2561. "nette/utils": "^4.0",
  2562. "php": "8.1 - 8.4"
  2563. },
  2564. "require-dev": {
  2565. "nette/tester": "^2.5.2",
  2566. "phpstan/phpstan-nette": "^1.0",
  2567. "tracy/tracy": "^2.8"
  2568. },
  2569. "type": "library",
  2570. "extra": {
  2571. "branch-alias": {
  2572. "dev-master": "1.3-dev"
  2573. }
  2574. },
  2575. "autoload": {
  2576. "classmap": [
  2577. "src/"
  2578. ]
  2579. },
  2580. "license": [
  2581. "BSD-3-Clause",
  2582. "GPL-2.0-only",
  2583. "GPL-3.0-only"
  2584. ],
  2585. "authors": [
  2586. {
  2587. "name": "David Grudl",
  2588. "homepage": "https://davidgrudl.com"
  2589. },
  2590. {
  2591. "name": "Nette Community",
  2592. "homepage": "https://nette.org/contributors"
  2593. }
  2594. ],
  2595. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  2596. "homepage": "https://nette.org",
  2597. "keywords": [
  2598. "config",
  2599. "nette"
  2600. ],
  2601. "time": "2024-10-06T23:10:23+00:00"
  2602. },
  2603. {
  2604. "name": "nette/utils",
  2605. "version": "v4.0.5",
  2606. "dist": {
  2607. "type": "zip",
  2608. "url": "https://mirrors.tencent.com/repository/composer/nette/utils/v4.0.5/nette-utils-v4.0.5.zip",
  2609. "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96",
  2610. "shasum": ""
  2611. },
  2612. "require": {
  2613. "php": "8.0 - 8.4"
  2614. },
  2615. "conflict": {
  2616. "nette/finder": "<3",
  2617. "nette/schema": "<1.2.2"
  2618. },
  2619. "require-dev": {
  2620. "jetbrains/phpstorm-attributes": "dev-master",
  2621. "nette/tester": "^2.5",
  2622. "phpstan/phpstan": "^1.0",
  2623. "tracy/tracy": "^2.9"
  2624. },
  2625. "suggest": {
  2626. "ext-gd": "to use Image",
  2627. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  2628. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  2629. "ext-json": "to use Nette\\Utils\\Json",
  2630. "ext-mbstring": "to use Strings::lower() etc...",
  2631. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  2632. },
  2633. "type": "library",
  2634. "extra": {
  2635. "branch-alias": {
  2636. "dev-master": "4.0-dev"
  2637. }
  2638. },
  2639. "autoload": {
  2640. "classmap": [
  2641. "src/"
  2642. ]
  2643. },
  2644. "license": [
  2645. "BSD-3-Clause",
  2646. "GPL-2.0-only",
  2647. "GPL-3.0-only"
  2648. ],
  2649. "authors": [
  2650. {
  2651. "name": "David Grudl",
  2652. "homepage": "https://davidgrudl.com"
  2653. },
  2654. {
  2655. "name": "Nette Community",
  2656. "homepage": "https://nette.org/contributors"
  2657. }
  2658. ],
  2659. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  2660. "homepage": "https://nette.org",
  2661. "keywords": [
  2662. "array",
  2663. "core",
  2664. "datetime",
  2665. "images",
  2666. "json",
  2667. "nette",
  2668. "paginator",
  2669. "password",
  2670. "slugify",
  2671. "string",
  2672. "unicode",
  2673. "utf-8",
  2674. "utility",
  2675. "validation"
  2676. ],
  2677. "time": "2024-08-07T15:39:19+00:00"
  2678. },
  2679. {
  2680. "name": "nikic/php-parser",
  2681. "version": "v5.3.1",
  2682. "dist": {
  2683. "type": "zip",
  2684. "url": "https://mirrors.tencent.com/repository/composer/nikic/php-parser/v5.3.1/nikic-php-parser-v5.3.1.zip",
  2685. "reference": "8eea230464783aa9671db8eea6f8c6ac5285794b",
  2686. "shasum": ""
  2687. },
  2688. "require": {
  2689. "ext-ctype": "*",
  2690. "ext-json": "*",
  2691. "ext-tokenizer": "*",
  2692. "php": ">=7.4"
  2693. },
  2694. "require-dev": {
  2695. "ircmaxell/php-yacc": "^0.0.7",
  2696. "phpunit/phpunit": "^9.0"
  2697. },
  2698. "bin": [
  2699. "bin/php-parse"
  2700. ],
  2701. "type": "library",
  2702. "extra": {
  2703. "branch-alias": {
  2704. "dev-master": "5.0-dev"
  2705. }
  2706. },
  2707. "autoload": {
  2708. "psr-4": {
  2709. "PhpParser\\": "lib/PhpParser"
  2710. }
  2711. },
  2712. "license": [
  2713. "BSD-3-Clause"
  2714. ],
  2715. "authors": [
  2716. {
  2717. "name": "Nikita Popov"
  2718. }
  2719. ],
  2720. "description": "A PHP parser written in PHP",
  2721. "keywords": [
  2722. "parser",
  2723. "php"
  2724. ],
  2725. "time": "2024-10-08T18:51:32+00:00"
  2726. },
  2727. {
  2728. "name": "nunomaduro/termwind",
  2729. "version": "v1.15.1",
  2730. "dist": {
  2731. "type": "zip",
  2732. "url": "https://mirrors.tencent.com/repository/composer/nunomaduro/termwind/v1.15.1/nunomaduro-termwind-v1.15.1.zip",
  2733. "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc",
  2734. "shasum": ""
  2735. },
  2736. "require": {
  2737. "ext-mbstring": "*",
  2738. "php": "^8.0",
  2739. "symfony/console": "^5.3.0|^6.0.0"
  2740. },
  2741. "require-dev": {
  2742. "ergebnis/phpstan-rules": "^1.0.",
  2743. "illuminate/console": "^8.0|^9.0",
  2744. "illuminate/support": "^8.0|^9.0",
  2745. "laravel/pint": "^1.0.0",
  2746. "pestphp/pest": "^1.21.0",
  2747. "pestphp/pest-plugin-mock": "^1.0",
  2748. "phpstan/phpstan": "^1.4.6",
  2749. "phpstan/phpstan-strict-rules": "^1.1.0",
  2750. "symfony/var-dumper": "^5.2.7|^6.0.0",
  2751. "thecodingmachine/phpstan-strict-rules": "^1.0.0"
  2752. },
  2753. "type": "library",
  2754. "extra": {
  2755. "laravel": {
  2756. "providers": [
  2757. "Termwind\\Laravel\\TermwindServiceProvider"
  2758. ]
  2759. }
  2760. },
  2761. "autoload": {
  2762. "files": [
  2763. "src/Functions.php"
  2764. ],
  2765. "psr-4": {
  2766. "Termwind\\": "src/"
  2767. }
  2768. },
  2769. "license": [
  2770. "MIT"
  2771. ],
  2772. "authors": [
  2773. {
  2774. "name": "Nuno Maduro",
  2775. "email": "enunomaduro@gmail.com"
  2776. }
  2777. ],
  2778. "description": "Its like Tailwind CSS, but for the console.",
  2779. "keywords": [
  2780. "cli",
  2781. "console",
  2782. "css",
  2783. "package",
  2784. "php",
  2785. "style"
  2786. ],
  2787. "time": "2023-02-08T01:06:31+00:00"
  2788. },
  2789. {
  2790. "name": "overtrue/flysystem-cos",
  2791. "version": "5.1.12",
  2792. "dist": {
  2793. "type": "zip",
  2794. "url": "https://mirrors.tencent.com/repository/composer/overtrue/flysystem-cos/5.1.12/overtrue-flysystem-cos-5.1.12.zip",
  2795. "reference": "5d5a8cd4855e9eccd0632424e673fc87465314d6",
  2796. "shasum": ""
  2797. },
  2798. "require": {
  2799. "league/flysystem": "^3.0",
  2800. "overtrue/qcloud-cos-client": "^2.1.4",
  2801. "php": ">=8.0.2"
  2802. },
  2803. "require-dev": {
  2804. "laravel/pint": "^1.6",
  2805. "league/flysystem-adapter-test-utilities": "^3.0",
  2806. "mockery/mockery": "^1.0",
  2807. "phpunit/phpunit": "^9.5"
  2808. },
  2809. "type": "library",
  2810. "autoload": {
  2811. "psr-4": {
  2812. "Overtrue\\Flysystem\\Cos\\": "src"
  2813. }
  2814. },
  2815. "license": [
  2816. "MIT"
  2817. ],
  2818. "authors": [
  2819. {
  2820. "name": "overtrue",
  2821. "email": "i@overtrue.me"
  2822. }
  2823. ],
  2824. "description": "Flysystem adapter for the QCloud COS storage.",
  2825. "time": "2024-09-19T02:28:37+00:00"
  2826. },
  2827. {
  2828. "name": "overtrue/laravel-filesystem-cos",
  2829. "version": "3.5.0",
  2830. "dist": {
  2831. "type": "zip",
  2832. "url": "https://mirrors.tencent.com/repository/composer/overtrue/laravel-filesystem-cos/3.5.0/overtrue-laravel-filesystem-cos-3.5.0.zip",
  2833. "reference": "16f1030331969a34eb11c0cd27aa339a4f42f69c",
  2834. "shasum": ""
  2835. },
  2836. "require": {
  2837. "laravel/framework": "^9.0|^10.0|^11.0",
  2838. "overtrue/flysystem-cos": "^5.1"
  2839. },
  2840. "require-dev": {
  2841. "brainmaestro/composer-git-hooks": "dev-master",
  2842. "laravel/pint": "^1.5",
  2843. "mockery/mockery": "^1.0"
  2844. },
  2845. "type": "library",
  2846. "extra": {
  2847. "laravel": {
  2848. "providers": [
  2849. "Overtrue\\LaravelFilesystem\\Cos\\CosStorageServiceProvider"
  2850. ]
  2851. },
  2852. "hooks": {
  2853. "pre-commit": [
  2854. "composer check-style"
  2855. ],
  2856. "pre-push": [
  2857. "composer check-style"
  2858. ]
  2859. }
  2860. },
  2861. "autoload": {
  2862. "psr-4": {
  2863. "Overtrue\\LaravelFilesystem\\Cos\\": "src"
  2864. }
  2865. },
  2866. "license": [
  2867. "MIT"
  2868. ],
  2869. "authors": [
  2870. {
  2871. "name": "overtrue",
  2872. "email": "i@overtrue.me"
  2873. }
  2874. ],
  2875. "description": "A Cos storage filesystem for Laravel.",
  2876. "time": "2024-03-13T05:14:00+00:00"
  2877. },
  2878. {
  2879. "name": "overtrue/laravel-query-logger",
  2880. "version": "3.3.0",
  2881. "dist": {
  2882. "type": "zip",
  2883. "url": "https://mirrors.tencent.com/repository/composer/overtrue/laravel-query-logger/3.3.0/overtrue-laravel-query-logger-3.3.0.zip",
  2884. "reference": "5fdcbf00a0463341e56839c58d67ce142315c07f",
  2885. "shasum": ""
  2886. },
  2887. "require": {
  2888. "laravel/framework": "^9.0|^10.0|^11.0"
  2889. },
  2890. "require-dev": {
  2891. "brainmaestro/composer-git-hooks": "dev-master",
  2892. "laravel/pint": "^1.5"
  2893. },
  2894. "type": "library",
  2895. "extra": {
  2896. "laravel": {
  2897. "providers": [
  2898. "Overtrue\\LaravelQueryLogger\\ServiceProvider"
  2899. ]
  2900. },
  2901. "hooks": {
  2902. "pre-commit": [
  2903. "composer check-style"
  2904. ],
  2905. "pre-push": [
  2906. "composer check-style"
  2907. ]
  2908. }
  2909. },
  2910. "autoload": {
  2911. "psr-4": {
  2912. "Overtrue\\LaravelQueryLogger\\": "src"
  2913. }
  2914. },
  2915. "license": [
  2916. "MIT"
  2917. ],
  2918. "authors": [
  2919. {
  2920. "name": "overtrue",
  2921. "email": "anzhengchao@gmail.com"
  2922. }
  2923. ],
  2924. "description": "A dev tool to log all queries for laravel application.",
  2925. "time": "2024-09-26T08:29:21+00:00"
  2926. },
  2927. {
  2928. "name": "overtrue/qcloud-cos-client",
  2929. "version": "2.1.6",
  2930. "dist": {
  2931. "type": "zip",
  2932. "url": "https://mirrors.tencent.com/repository/composer/overtrue/qcloud-cos-client/2.1.6/overtrue-qcloud-cos-client-2.1.6.zip",
  2933. "reference": "5cb1f14dc5d6848c0d899606c0a59e878b836583",
  2934. "shasum": ""
  2935. },
  2936. "require": {
  2937. "ext-dom": "*",
  2938. "ext-json": "*",
  2939. "ext-libxml": "*",
  2940. "ext-simplexml": "*",
  2941. "guzzlehttp/guzzle": "^7.4",
  2942. "php": ">=8.0.2",
  2943. "psr/http-message": "^1.0|^2.0",
  2944. "thenorthmemory/xml": "^1.0"
  2945. },
  2946. "require-dev": {
  2947. "brainmaestro/composer-git-hooks": "^2.8",
  2948. "friendsofphp/php-cs-fixer": "^3.5",
  2949. "laravel/pint": "^1.2",
  2950. "mockery/mockery": "^1.0",
  2951. "monolog/monolog": "^2.5",
  2952. "phpunit/phpunit": "^9.5"
  2953. },
  2954. "type": "library",
  2955. "extra": {
  2956. "hooks": {
  2957. "pre-commit": [
  2958. "composer test",
  2959. "composer check-style"
  2960. ],
  2961. "pre-push": [
  2962. "composer test",
  2963. "composer check-style"
  2964. ]
  2965. }
  2966. },
  2967. "autoload": {
  2968. "psr-4": {
  2969. "Overtrue\\CosClient\\": "src"
  2970. }
  2971. },
  2972. "license": [
  2973. "MIT"
  2974. ],
  2975. "authors": [
  2976. {
  2977. "name": "overtrue",
  2978. "email": "anzhengchao@gmail.com"
  2979. }
  2980. ],
  2981. "description": "Client of QCloud.com COS",
  2982. "time": "2024-09-04T13:58:12+00:00"
  2983. },
  2984. {
  2985. "name": "paragonie/constant_time_encoding",
  2986. "version": "v3.0.0",
  2987. "dist": {
  2988. "type": "zip",
  2989. "url": "https://mirrors.tencent.com/repository/composer/paragonie/constant_time_encoding/v3.0.0/paragonie-constant_time_encoding-v3.0.0.zip",
  2990. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512",
  2991. "shasum": ""
  2992. },
  2993. "require": {
  2994. "php": "^8"
  2995. },
  2996. "require-dev": {
  2997. "phpunit/phpunit": "^9",
  2998. "vimeo/psalm": "^4|^5"
  2999. },
  3000. "type": "library",
  3001. "autoload": {
  3002. "psr-4": {
  3003. "ParagonIE\\ConstantTime\\": "src/"
  3004. }
  3005. },
  3006. "license": [
  3007. "MIT"
  3008. ],
  3009. "authors": [
  3010. {
  3011. "name": "Paragon Initiative Enterprises",
  3012. "email": "security@paragonie.com",
  3013. "homepage": "https://paragonie.com",
  3014. "role": "Maintainer"
  3015. },
  3016. {
  3017. "name": "Steve 'Sc00bz' Thomas",
  3018. "email": "steve@tobtu.com",
  3019. "homepage": "https://www.tobtu.com",
  3020. "role": "Original Developer"
  3021. }
  3022. ],
  3023. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  3024. "keywords": [
  3025. "base16",
  3026. "base32",
  3027. "base32_decode",
  3028. "base32_encode",
  3029. "base64",
  3030. "base64_decode",
  3031. "base64_encode",
  3032. "bin2hex",
  3033. "encoding",
  3034. "hex",
  3035. "hex2bin",
  3036. "rfc4648"
  3037. ],
  3038. "time": "2024-05-08T12:36:18+00:00"
  3039. },
  3040. {
  3041. "name": "paragonie/random_compat",
  3042. "version": "v9.99.100",
  3043. "dist": {
  3044. "type": "zip",
  3045. "url": "https://mirrors.tencent.com/repository/composer/paragonie/random_compat/v9.99.100/paragonie-random_compat-v9.99.100.zip",
  3046. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  3047. "shasum": ""
  3048. },
  3049. "require": {
  3050. "php": ">= 7"
  3051. },
  3052. "require-dev": {
  3053. "phpunit/phpunit": "4.*|5.*",
  3054. "vimeo/psalm": "^1"
  3055. },
  3056. "suggest": {
  3057. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  3058. },
  3059. "type": "library",
  3060. "license": [
  3061. "MIT"
  3062. ],
  3063. "authors": [
  3064. {
  3065. "name": "Paragon Initiative Enterprises",
  3066. "email": "security@paragonie.com",
  3067. "homepage": "https://paragonie.com"
  3068. }
  3069. ],
  3070. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  3071. "keywords": [
  3072. "csprng",
  3073. "polyfill",
  3074. "pseudorandom",
  3075. "random"
  3076. ],
  3077. "time": "2020-10-15T08:29:30+00:00"
  3078. },
  3079. {
  3080. "name": "php-amqplib/php-amqplib",
  3081. "version": "v3.7.1",
  3082. "dist": {
  3083. "type": "zip",
  3084. "url": "https://mirrors.tencent.com/repository/composer/php-amqplib/php-amqplib/v3.7.1/php-amqplib-php-amqplib-v3.7.1.zip",
  3085. "reference": "5db9a68435fdde9ba4248a8fd2fae6d07b442b65",
  3086. "shasum": ""
  3087. },
  3088. "require": {
  3089. "ext-mbstring": "*",
  3090. "ext-sockets": "*",
  3091. "php": "^7.2||^8.0",
  3092. "phpseclib/phpseclib": "^2.0|^3.0"
  3093. },
  3094. "conflict": {
  3095. "php": "7.4.0 - 7.4.1"
  3096. },
  3097. "replace": {
  3098. "videlalvaro/php-amqplib": "self.version"
  3099. },
  3100. "require-dev": {
  3101. "ext-curl": "*",
  3102. "nategood/httpful": "^0.2.20",
  3103. "phpunit/phpunit": "^7.5|^9.5",
  3104. "squizlabs/php_codesniffer": "^3.6"
  3105. },
  3106. "type": "library",
  3107. "extra": {
  3108. "branch-alias": {
  3109. "dev-master": "3.0-dev"
  3110. }
  3111. },
  3112. "autoload": {
  3113. "psr-4": {
  3114. "PhpAmqpLib\\": "PhpAmqpLib/"
  3115. }
  3116. },
  3117. "license": [
  3118. "LGPL-2.1-or-later"
  3119. ],
  3120. "authors": [
  3121. {
  3122. "name": "Alvaro Videla",
  3123. "role": "Original Maintainer"
  3124. },
  3125. {
  3126. "name": "Raúl Araya",
  3127. "email": "nubeiro@gmail.com",
  3128. "role": "Maintainer"
  3129. },
  3130. {
  3131. "name": "Luke Bakken",
  3132. "email": "luke@bakken.io",
  3133. "role": "Maintainer"
  3134. },
  3135. {
  3136. "name": "Ramūnas Dronga",
  3137. "email": "github@ramuno.lt",
  3138. "role": "Maintainer"
  3139. }
  3140. ],
  3141. "description": "Formerly videlalvaro/php-amqplib. This library is a pure PHP implementation of the AMQP protocol. It's been tested against RabbitMQ.",
  3142. "homepage": "https://github.com/php-amqplib/php-amqplib/",
  3143. "keywords": [
  3144. "message",
  3145. "queue",
  3146. "rabbitmq"
  3147. ],
  3148. "time": "2024-09-03T19:18:03+00:00"
  3149. },
  3150. {
  3151. "name": "phpoffice/phpspreadsheet",
  3152. "version": "1.29.2",
  3153. "dist": {
  3154. "type": "zip",
  3155. "url": "https://mirrors.tencent.com/repository/composer/phpoffice/phpspreadsheet/1.29.2/phpoffice-phpspreadsheet-1.29.2.zip",
  3156. "reference": "3a5a818d7d3e4b5bd2e56fb9de44dbded6eae07f",
  3157. "shasum": ""
  3158. },
  3159. "require": {
  3160. "ext-ctype": "*",
  3161. "ext-dom": "*",
  3162. "ext-fileinfo": "*",
  3163. "ext-gd": "*",
  3164. "ext-iconv": "*",
  3165. "ext-libxml": "*",
  3166. "ext-mbstring": "*",
  3167. "ext-simplexml": "*",
  3168. "ext-xml": "*",
  3169. "ext-xmlreader": "*",
  3170. "ext-xmlwriter": "*",
  3171. "ext-zip": "*",
  3172. "ext-zlib": "*",
  3173. "ezyang/htmlpurifier": "^4.15",
  3174. "maennchen/zipstream-php": "^2.1 || ^3.0",
  3175. "markbaker/complex": "^3.0",
  3176. "markbaker/matrix": "^3.0",
  3177. "php": "^7.4 || ^8.0",
  3178. "psr/http-client": "^1.0",
  3179. "psr/http-factory": "^1.0",
  3180. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  3181. },
  3182. "require-dev": {
  3183. "dealerdirect/phpcodesniffer-composer-installer": "dev-main",
  3184. "dompdf/dompdf": "^1.0 || ^2.0",
  3185. "friendsofphp/php-cs-fixer": "^3.2",
  3186. "mitoteam/jpgraph": "^10.3",
  3187. "mpdf/mpdf": "^8.1.1",
  3188. "phpcompatibility/php-compatibility": "^9.3",
  3189. "phpstan/phpstan": "^1.1",
  3190. "phpstan/phpstan-phpunit": "^1.0",
  3191. "phpunit/phpunit": "^8.5 || ^9.0",
  3192. "squizlabs/php_codesniffer": "^3.7",
  3193. "tecnickcom/tcpdf": "^6.5"
  3194. },
  3195. "suggest": {
  3196. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  3197. "ext-intl": "PHP Internationalization Functions",
  3198. "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  3199. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  3200. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  3201. },
  3202. "type": "library",
  3203. "autoload": {
  3204. "psr-4": {
  3205. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  3206. }
  3207. },
  3208. "license": [
  3209. "MIT"
  3210. ],
  3211. "authors": [
  3212. {
  3213. "name": "Maarten Balliauw",
  3214. "homepage": "https://blog.maartenballiauw.be"
  3215. },
  3216. {
  3217. "name": "Mark Baker",
  3218. "homepage": "https://markbakeruk.net"
  3219. },
  3220. {
  3221. "name": "Franck Lefevre",
  3222. "homepage": "https://rootslabs.net"
  3223. },
  3224. {
  3225. "name": "Erik Tilt"
  3226. },
  3227. {
  3228. "name": "Adrien Crivelli"
  3229. }
  3230. ],
  3231. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3232. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  3233. "keywords": [
  3234. "OpenXML",
  3235. "excel",
  3236. "gnumeric",
  3237. "ods",
  3238. "php",
  3239. "spreadsheet",
  3240. "xls",
  3241. "xlsx"
  3242. ],
  3243. "time": "2024-09-29T07:04:47+00:00"
  3244. },
  3245. {
  3246. "name": "phpoption/phpoption",
  3247. "version": "1.9.3",
  3248. "dist": {
  3249. "type": "zip",
  3250. "url": "https://mirrors.tencent.com/repository/composer/phpoption/phpoption/1.9.3/phpoption-phpoption-1.9.3.zip",
  3251. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  3252. "shasum": ""
  3253. },
  3254. "require": {
  3255. "php": "^7.2.5 || ^8.0"
  3256. },
  3257. "require-dev": {
  3258. "bamarni/composer-bin-plugin": "^1.8.2",
  3259. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  3260. },
  3261. "type": "library",
  3262. "extra": {
  3263. "bamarni-bin": {
  3264. "bin-links": true,
  3265. "forward-command": false
  3266. },
  3267. "branch-alias": {
  3268. "dev-master": "1.9-dev"
  3269. }
  3270. },
  3271. "autoload": {
  3272. "psr-4": {
  3273. "PhpOption\\": "src/PhpOption/"
  3274. }
  3275. },
  3276. "license": [
  3277. "Apache-2.0"
  3278. ],
  3279. "authors": [
  3280. {
  3281. "name": "Johannes M. Schmitt",
  3282. "email": "schmittjoh@gmail.com",
  3283. "homepage": "https://github.com/schmittjoh"
  3284. },
  3285. {
  3286. "name": "Graham Campbell",
  3287. "email": "hello@gjcampbell.co.uk",
  3288. "homepage": "https://github.com/GrahamCampbell"
  3289. }
  3290. ],
  3291. "description": "Option Type for PHP",
  3292. "keywords": [
  3293. "language",
  3294. "option",
  3295. "php",
  3296. "type"
  3297. ],
  3298. "time": "2024-07-20T21:41:07+00:00"
  3299. },
  3300. {
  3301. "name": "phpseclib/phpseclib",
  3302. "version": "3.0.42",
  3303. "dist": {
  3304. "type": "zip",
  3305. "url": "https://mirrors.tencent.com/repository/composer/phpseclib/phpseclib/3.0.42/phpseclib-phpseclib-3.0.42.zip",
  3306. "reference": "db92f1b1987b12b13f248fe76c3a52cadb67bb98",
  3307. "shasum": ""
  3308. },
  3309. "require": {
  3310. "paragonie/constant_time_encoding": "^1|^2|^3",
  3311. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  3312. "php": ">=5.6.1"
  3313. },
  3314. "require-dev": {
  3315. "phpunit/phpunit": "*"
  3316. },
  3317. "suggest": {
  3318. "ext-dom": "Install the DOM extension to load XML formatted public keys.",
  3319. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  3320. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  3321. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  3322. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  3323. },
  3324. "type": "library",
  3325. "autoload": {
  3326. "files": [
  3327. "phpseclib/bootstrap.php"
  3328. ],
  3329. "psr-4": {
  3330. "phpseclib3\\": "phpseclib/"
  3331. }
  3332. },
  3333. "license": [
  3334. "MIT"
  3335. ],
  3336. "authors": [
  3337. {
  3338. "name": "Jim Wigginton",
  3339. "email": "terrafrost@php.net",
  3340. "role": "Lead Developer"
  3341. },
  3342. {
  3343. "name": "Patrick Monnerat",
  3344. "email": "pm@datasphere.ch",
  3345. "role": "Developer"
  3346. },
  3347. {
  3348. "name": "Andreas Fischer",
  3349. "email": "bantu@phpbb.com",
  3350. "role": "Developer"
  3351. },
  3352. {
  3353. "name": "Hans-Jürgen Petrich",
  3354. "email": "petrich@tronic-media.com",
  3355. "role": "Developer"
  3356. },
  3357. {
  3358. "name": "Graham Campbell",
  3359. "email": "graham@alt-three.com",
  3360. "role": "Developer"
  3361. }
  3362. ],
  3363. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  3364. "homepage": "http://phpseclib.sourceforge.net",
  3365. "keywords": [
  3366. "BigInteger",
  3367. "aes",
  3368. "asn.1",
  3369. "asn1",
  3370. "blowfish",
  3371. "crypto",
  3372. "cryptography",
  3373. "encryption",
  3374. "rsa",
  3375. "security",
  3376. "sftp",
  3377. "signature",
  3378. "signing",
  3379. "ssh",
  3380. "twofish",
  3381. "x.509",
  3382. "x509"
  3383. ],
  3384. "time": "2024-09-16T03:06:04+00:00"
  3385. },
  3386. {
  3387. "name": "predis/predis",
  3388. "version": "v2.2.2",
  3389. "dist": {
  3390. "type": "zip",
  3391. "url": "https://mirrors.tencent.com/repository/composer/predis/predis/v2.2.2/predis-predis-v2.2.2.zip",
  3392. "reference": "b1d3255ed9ad4d7254f9f9bba386c99f4bb983d1",
  3393. "shasum": ""
  3394. },
  3395. "require": {
  3396. "php": "^7.2 || ^8.0"
  3397. },
  3398. "require-dev": {
  3399. "friendsofphp/php-cs-fixer": "^3.3",
  3400. "phpstan/phpstan": "^1.9",
  3401. "phpunit/phpunit": "^8.0 || ~9.4.4"
  3402. },
  3403. "suggest": {
  3404. "ext-relay": "Faster connection with in-memory caching (>=0.6.2)"
  3405. },
  3406. "type": "library",
  3407. "autoload": {
  3408. "psr-4": {
  3409. "Predis\\": "src/"
  3410. }
  3411. },
  3412. "license": [
  3413. "MIT"
  3414. ],
  3415. "authors": [
  3416. {
  3417. "name": "Till Krüss",
  3418. "homepage": "https://till.im",
  3419. "role": "Maintainer"
  3420. }
  3421. ],
  3422. "description": "A flexible and feature-complete Redis client for PHP.",
  3423. "homepage": "http://github.com/predis/predis",
  3424. "keywords": [
  3425. "nosql",
  3426. "predis",
  3427. "redis"
  3428. ],
  3429. "time": "2023-09-13T16:42:03+00:00"
  3430. },
  3431. {
  3432. "name": "psr/clock",
  3433. "version": "1.0.0",
  3434. "dist": {
  3435. "type": "zip",
  3436. "url": "https://mirrors.tencent.com/repository/composer/psr/clock/1.0.0/psr-clock-1.0.0.zip",
  3437. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  3438. "shasum": ""
  3439. },
  3440. "require": {
  3441. "php": "^7.0 || ^8.0"
  3442. },
  3443. "type": "library",
  3444. "autoload": {
  3445. "psr-4": {
  3446. "Psr\\Clock\\": "src/"
  3447. }
  3448. },
  3449. "license": [
  3450. "MIT"
  3451. ],
  3452. "authors": [
  3453. {
  3454. "name": "PHP-FIG",
  3455. "homepage": "https://www.php-fig.org/"
  3456. }
  3457. ],
  3458. "description": "Common interface for reading the clock.",
  3459. "homepage": "https://github.com/php-fig/clock",
  3460. "keywords": [
  3461. "clock",
  3462. "now",
  3463. "psr",
  3464. "psr-20",
  3465. "time"
  3466. ],
  3467. "time": "2022-11-25T14:36:26+00:00"
  3468. },
  3469. {
  3470. "name": "psr/container",
  3471. "version": "2.0.2",
  3472. "dist": {
  3473. "type": "zip",
  3474. "url": "https://mirrors.tencent.com/repository/composer/psr/container/2.0.2/psr-container-2.0.2.zip",
  3475. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  3476. "shasum": ""
  3477. },
  3478. "require": {
  3479. "php": ">=7.4.0"
  3480. },
  3481. "type": "library",
  3482. "extra": {
  3483. "branch-alias": {
  3484. "dev-master": "2.0.x-dev"
  3485. }
  3486. },
  3487. "autoload": {
  3488. "psr-4": {
  3489. "Psr\\Container\\": "src/"
  3490. }
  3491. },
  3492. "license": [
  3493. "MIT"
  3494. ],
  3495. "authors": [
  3496. {
  3497. "name": "PHP-FIG",
  3498. "homepage": "https://www.php-fig.org/"
  3499. }
  3500. ],
  3501. "description": "Common Container Interface (PHP FIG PSR-11)",
  3502. "homepage": "https://github.com/php-fig/container",
  3503. "keywords": [
  3504. "PSR-11",
  3505. "container",
  3506. "container-interface",
  3507. "container-interop",
  3508. "psr"
  3509. ],
  3510. "time": "2021-11-05T16:47:00+00:00"
  3511. },
  3512. {
  3513. "name": "psr/event-dispatcher",
  3514. "version": "1.0.0",
  3515. "dist": {
  3516. "type": "zip",
  3517. "url": "https://mirrors.tencent.com/repository/composer/psr/event-dispatcher/1.0.0/psr-event-dispatcher-1.0.0.zip",
  3518. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3519. "shasum": ""
  3520. },
  3521. "require": {
  3522. "php": ">=7.2.0"
  3523. },
  3524. "type": "library",
  3525. "extra": {
  3526. "branch-alias": {
  3527. "dev-master": "1.0.x-dev"
  3528. }
  3529. },
  3530. "autoload": {
  3531. "psr-4": {
  3532. "Psr\\EventDispatcher\\": "src/"
  3533. }
  3534. },
  3535. "license": [
  3536. "MIT"
  3537. ],
  3538. "authors": [
  3539. {
  3540. "name": "PHP-FIG",
  3541. "homepage": "http://www.php-fig.org/"
  3542. }
  3543. ],
  3544. "description": "Standard interfaces for event handling.",
  3545. "keywords": [
  3546. "events",
  3547. "psr",
  3548. "psr-14"
  3549. ],
  3550. "time": "2019-01-08T18:20:26+00:00"
  3551. },
  3552. {
  3553. "name": "psr/http-client",
  3554. "version": "1.0.3",
  3555. "dist": {
  3556. "type": "zip",
  3557. "url": "https://mirrors.tencent.com/repository/composer/psr/http-client/1.0.3/psr-http-client-1.0.3.zip",
  3558. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  3559. "shasum": ""
  3560. },
  3561. "require": {
  3562. "php": "^7.0 || ^8.0",
  3563. "psr/http-message": "^1.0 || ^2.0"
  3564. },
  3565. "type": "library",
  3566. "extra": {
  3567. "branch-alias": {
  3568. "dev-master": "1.0.x-dev"
  3569. }
  3570. },
  3571. "autoload": {
  3572. "psr-4": {
  3573. "Psr\\Http\\Client\\": "src/"
  3574. }
  3575. },
  3576. "license": [
  3577. "MIT"
  3578. ],
  3579. "authors": [
  3580. {
  3581. "name": "PHP-FIG",
  3582. "homepage": "https://www.php-fig.org/"
  3583. }
  3584. ],
  3585. "description": "Common interface for HTTP clients",
  3586. "homepage": "https://github.com/php-fig/http-client",
  3587. "keywords": [
  3588. "http",
  3589. "http-client",
  3590. "psr",
  3591. "psr-18"
  3592. ],
  3593. "time": "2023-09-23T14:17:50+00:00"
  3594. },
  3595. {
  3596. "name": "psr/http-factory",
  3597. "version": "1.1.0",
  3598. "dist": {
  3599. "type": "zip",
  3600. "url": "https://mirrors.tencent.com/repository/composer/psr/http-factory/1.1.0/psr-http-factory-1.1.0.zip",
  3601. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  3602. "shasum": ""
  3603. },
  3604. "require": {
  3605. "php": ">=7.1",
  3606. "psr/http-message": "^1.0 || ^2.0"
  3607. },
  3608. "type": "library",
  3609. "extra": {
  3610. "branch-alias": {
  3611. "dev-master": "1.0.x-dev"
  3612. }
  3613. },
  3614. "autoload": {
  3615. "psr-4": {
  3616. "Psr\\Http\\Message\\": "src/"
  3617. }
  3618. },
  3619. "license": [
  3620. "MIT"
  3621. ],
  3622. "authors": [
  3623. {
  3624. "name": "PHP-FIG",
  3625. "homepage": "https://www.php-fig.org/"
  3626. }
  3627. ],
  3628. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  3629. "keywords": [
  3630. "factory",
  3631. "http",
  3632. "message",
  3633. "psr",
  3634. "psr-17",
  3635. "psr-7",
  3636. "request",
  3637. "response"
  3638. ],
  3639. "time": "2024-04-15T12:06:14+00:00"
  3640. },
  3641. {
  3642. "name": "psr/http-message",
  3643. "version": "2.0",
  3644. "dist": {
  3645. "type": "zip",
  3646. "url": "https://mirrors.tencent.com/repository/composer/psr/http-message/2.0/psr-http-message-2.0.zip",
  3647. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  3648. "shasum": ""
  3649. },
  3650. "require": {
  3651. "php": "^7.2 || ^8.0"
  3652. },
  3653. "type": "library",
  3654. "extra": {
  3655. "branch-alias": {
  3656. "dev-master": "2.0.x-dev"
  3657. }
  3658. },
  3659. "autoload": {
  3660. "psr-4": {
  3661. "Psr\\Http\\Message\\": "src/"
  3662. }
  3663. },
  3664. "license": [
  3665. "MIT"
  3666. ],
  3667. "authors": [
  3668. {
  3669. "name": "PHP-FIG",
  3670. "homepage": "https://www.php-fig.org/"
  3671. }
  3672. ],
  3673. "description": "Common interface for HTTP messages",
  3674. "homepage": "https://github.com/php-fig/http-message",
  3675. "keywords": [
  3676. "http",
  3677. "http-message",
  3678. "psr",
  3679. "psr-7",
  3680. "request",
  3681. "response"
  3682. ],
  3683. "time": "2023-04-04T09:54:51+00:00"
  3684. },
  3685. {
  3686. "name": "psr/log",
  3687. "version": "3.0.2",
  3688. "dist": {
  3689. "type": "zip",
  3690. "url": "https://mirrors.tencent.com/repository/composer/psr/log/3.0.2/psr-log-3.0.2.zip",
  3691. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  3692. "shasum": ""
  3693. },
  3694. "require": {
  3695. "php": ">=8.0.0"
  3696. },
  3697. "type": "library",
  3698. "extra": {
  3699. "branch-alias": {
  3700. "dev-master": "3.x-dev"
  3701. }
  3702. },
  3703. "autoload": {
  3704. "psr-4": {
  3705. "Psr\\Log\\": "src"
  3706. }
  3707. },
  3708. "license": [
  3709. "MIT"
  3710. ],
  3711. "authors": [
  3712. {
  3713. "name": "PHP-FIG",
  3714. "homepage": "https://www.php-fig.org/"
  3715. }
  3716. ],
  3717. "description": "Common interface for logging libraries",
  3718. "homepage": "https://github.com/php-fig/log",
  3719. "keywords": [
  3720. "log",
  3721. "psr",
  3722. "psr-3"
  3723. ],
  3724. "time": "2024-09-11T13:17:53+00:00"
  3725. },
  3726. {
  3727. "name": "psr/simple-cache",
  3728. "version": "3.0.0",
  3729. "dist": {
  3730. "type": "zip",
  3731. "url": "https://mirrors.tencent.com/repository/composer/psr/simple-cache/3.0.0/psr-simple-cache-3.0.0.zip",
  3732. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  3733. "shasum": ""
  3734. },
  3735. "require": {
  3736. "php": ">=8.0.0"
  3737. },
  3738. "type": "library",
  3739. "extra": {
  3740. "branch-alias": {
  3741. "dev-master": "3.0.x-dev"
  3742. }
  3743. },
  3744. "autoload": {
  3745. "psr-4": {
  3746. "Psr\\SimpleCache\\": "src/"
  3747. }
  3748. },
  3749. "license": [
  3750. "MIT"
  3751. ],
  3752. "authors": [
  3753. {
  3754. "name": "PHP-FIG",
  3755. "homepage": "https://www.php-fig.org/"
  3756. }
  3757. ],
  3758. "description": "Common interfaces for simple caching",
  3759. "keywords": [
  3760. "cache",
  3761. "caching",
  3762. "psr",
  3763. "psr-16",
  3764. "simple-cache"
  3765. ],
  3766. "time": "2021-10-29T13:26:27+00:00"
  3767. },
  3768. {
  3769. "name": "psy/psysh",
  3770. "version": "v0.12.4",
  3771. "dist": {
  3772. "type": "zip",
  3773. "url": "https://mirrors.tencent.com/repository/composer/psy/psysh/v0.12.4/psy-psysh-v0.12.4.zip",
  3774. "reference": "2fd717afa05341b4f8152547f142cd2f130f6818",
  3775. "shasum": ""
  3776. },
  3777. "require": {
  3778. "ext-json": "*",
  3779. "ext-tokenizer": "*",
  3780. "nikic/php-parser": "^5.0 || ^4.0",
  3781. "php": "^8.0 || ^7.4",
  3782. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  3783. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  3784. },
  3785. "conflict": {
  3786. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  3787. },
  3788. "require-dev": {
  3789. "bamarni/composer-bin-plugin": "^1.2"
  3790. },
  3791. "suggest": {
  3792. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  3793. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  3794. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  3795. },
  3796. "bin": [
  3797. "bin/psysh"
  3798. ],
  3799. "type": "library",
  3800. "extra": {
  3801. "branch-alias": {
  3802. "dev-main": "0.12.x-dev"
  3803. },
  3804. "bamarni-bin": {
  3805. "bin-links": false,
  3806. "forward-command": false
  3807. }
  3808. },
  3809. "autoload": {
  3810. "files": [
  3811. "src/functions.php"
  3812. ],
  3813. "psr-4": {
  3814. "Psy\\": "src/"
  3815. }
  3816. },
  3817. "license": [
  3818. "MIT"
  3819. ],
  3820. "authors": [
  3821. {
  3822. "name": "Justin Hileman",
  3823. "email": "justin@justinhileman.info",
  3824. "homepage": "http://justinhileman.com"
  3825. }
  3826. ],
  3827. "description": "An interactive shell for modern PHP.",
  3828. "homepage": "http://psysh.org",
  3829. "keywords": [
  3830. "REPL",
  3831. "console",
  3832. "interactive",
  3833. "shell"
  3834. ],
  3835. "time": "2024-06-10T01:18:23+00:00"
  3836. },
  3837. {
  3838. "name": "qcloud/cos-sdk-v5",
  3839. "version": "v2.6.14",
  3840. "dist": {
  3841. "type": "zip",
  3842. "url": "https://mirrors.tencent.com/repository/composer/qcloud/cos-sdk-v5/v2.6.14/qcloud-cos-sdk-v5-v2.6.14.zip",
  3843. "reference": "f59af74e7a45de259786e378e6b45cc61039caa3",
  3844. "shasum": ""
  3845. },
  3846. "require": {
  3847. "ext-curl": "*",
  3848. "ext-json": "*",
  3849. "ext-libxml": "*",
  3850. "ext-mbstring": "*",
  3851. "ext-simplexml": "*",
  3852. "guzzlehttp/guzzle": "^6.2.1 || ^7.0",
  3853. "guzzlehttp/guzzle-services": "^1.1",
  3854. "guzzlehttp/psr7": "^1.3.1 || ^2.0",
  3855. "php": ">=5.6"
  3856. },
  3857. "type": "library",
  3858. "extra": {
  3859. "branch-alias": {
  3860. "dev-master": "2.4-dev"
  3861. }
  3862. },
  3863. "autoload": {
  3864. "files": [
  3865. "src/Common.php"
  3866. ],
  3867. "psr-4": {
  3868. "Qcloud\\Cos\\": "src/"
  3869. }
  3870. },
  3871. "license": [
  3872. "MIT"
  3873. ],
  3874. "authors": [
  3875. {
  3876. "name": "yaozongyou",
  3877. "email": "yaozongyou@vip.qq.com"
  3878. },
  3879. {
  3880. "name": "lewzylu",
  3881. "email": "327874225@qq.com"
  3882. },
  3883. {
  3884. "name": "tuunalai",
  3885. "email": "550566181@qq.com"
  3886. }
  3887. ],
  3888. "description": "PHP SDK for QCloud COS",
  3889. "keywords": [
  3890. "cos",
  3891. "php",
  3892. "qcloud"
  3893. ],
  3894. "time": "2024-07-29T14:10:31+00:00"
  3895. },
  3896. {
  3897. "name": "qcloud_sts/qcloud-sts-sdk",
  3898. "version": "3.0.12",
  3899. "dist": {
  3900. "type": "zip",
  3901. "url": "https://mirrors.tencent.com/repository/composer/qcloud_sts/qcloud-sts-sdk/3.0.12/qcloud_sts-qcloud-sts-sdk-3.0.12.zip",
  3902. "reference": "16ebb03f1079ef71c272180fc015cc809ce8320b",
  3903. "shasum": ""
  3904. },
  3905. "require": {
  3906. "ext-curl": "*",
  3907. "php": ">=5.3.0"
  3908. },
  3909. "type": "library",
  3910. "autoload": {
  3911. "psr-4": {
  3912. "QCloud\\COSSTS\\": "src"
  3913. }
  3914. },
  3915. "license": [
  3916. "MIT"
  3917. ],
  3918. "authors": [
  3919. {
  3920. "name": "qcloudterminal",
  3921. "email": "qcloudterminal@gmail.com"
  3922. },
  3923. {
  3924. "name": "tuunalai",
  3925. "email": "550566181@qq.com"
  3926. }
  3927. ],
  3928. "description": "PHP SDK for QCloud STS",
  3929. "homepage": "https://github.com/tencentyun/qcloud-cos-sts-sdk",
  3930. "keywords": [
  3931. "cos",
  3932. "php",
  3933. "qcloud",
  3934. "sts"
  3935. ],
  3936. "time": "2023-12-20T06:42:36+00:00"
  3937. },
  3938. {
  3939. "name": "ralouphie/getallheaders",
  3940. "version": "3.0.3",
  3941. "dist": {
  3942. "type": "zip",
  3943. "url": "https://mirrors.tencent.com/repository/composer/ralouphie/getallheaders/3.0.3/ralouphie-getallheaders-3.0.3.zip",
  3944. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  3945. "shasum": ""
  3946. },
  3947. "require": {
  3948. "php": ">=5.6"
  3949. },
  3950. "require-dev": {
  3951. "php-coveralls/php-coveralls": "^2.1",
  3952. "phpunit/phpunit": "^5 || ^6.5"
  3953. },
  3954. "type": "library",
  3955. "autoload": {
  3956. "files": [
  3957. "src/getallheaders.php"
  3958. ]
  3959. },
  3960. "license": [
  3961. "MIT"
  3962. ],
  3963. "authors": [
  3964. {
  3965. "name": "Ralph Khattar",
  3966. "email": "ralph.khattar@gmail.com"
  3967. }
  3968. ],
  3969. "description": "A polyfill for getallheaders.",
  3970. "time": "2019-03-08T08:55:37+00:00"
  3971. },
  3972. {
  3973. "name": "ramsey/collection",
  3974. "version": "2.0.0",
  3975. "dist": {
  3976. "type": "zip",
  3977. "url": "https://mirrors.tencent.com/repository/composer/ramsey/collection/2.0.0/ramsey-collection-2.0.0.zip",
  3978. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  3979. "shasum": ""
  3980. },
  3981. "require": {
  3982. "php": "^8.1"
  3983. },
  3984. "require-dev": {
  3985. "captainhook/plugin-composer": "^5.3",
  3986. "ergebnis/composer-normalize": "^2.28.3",
  3987. "fakerphp/faker": "^1.21",
  3988. "hamcrest/hamcrest-php": "^2.0",
  3989. "jangregor/phpstan-prophecy": "^1.0",
  3990. "mockery/mockery": "^1.5",
  3991. "php-parallel-lint/php-console-highlighter": "^1.0",
  3992. "php-parallel-lint/php-parallel-lint": "^1.3",
  3993. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  3994. "phpspec/prophecy-phpunit": "^2.0",
  3995. "phpstan/extension-installer": "^1.2",
  3996. "phpstan/phpstan": "^1.9",
  3997. "phpstan/phpstan-mockery": "^1.1",
  3998. "phpstan/phpstan-phpunit": "^1.3",
  3999. "phpunit/phpunit": "^9.5",
  4000. "psalm/plugin-mockery": "^1.1",
  4001. "psalm/plugin-phpunit": "^0.18.4",
  4002. "ramsey/coding-standard": "^2.0.3",
  4003. "ramsey/conventional-commits": "^1.3",
  4004. "vimeo/psalm": "^5.4"
  4005. },
  4006. "type": "library",
  4007. "extra": {
  4008. "captainhook": {
  4009. "force-install": true
  4010. },
  4011. "ramsey/conventional-commits": {
  4012. "configFile": "conventional-commits.json"
  4013. }
  4014. },
  4015. "autoload": {
  4016. "psr-4": {
  4017. "Ramsey\\Collection\\": "src/"
  4018. }
  4019. },
  4020. "license": [
  4021. "MIT"
  4022. ],
  4023. "authors": [
  4024. {
  4025. "name": "Ben Ramsey",
  4026. "email": "ben@benramsey.com",
  4027. "homepage": "https://benramsey.com"
  4028. }
  4029. ],
  4030. "description": "A PHP library for representing and manipulating collections.",
  4031. "keywords": [
  4032. "array",
  4033. "collection",
  4034. "hash",
  4035. "map",
  4036. "queue",
  4037. "set"
  4038. ],
  4039. "time": "2022-12-31T21:50:55+00:00"
  4040. },
  4041. {
  4042. "name": "ramsey/uuid",
  4043. "version": "4.7.6",
  4044. "dist": {
  4045. "type": "zip",
  4046. "url": "https://mirrors.tencent.com/repository/composer/ramsey/uuid/4.7.6/ramsey-uuid-4.7.6.zip",
  4047. "reference": "91039bc1faa45ba123c4328958e620d382ec7088",
  4048. "shasum": ""
  4049. },
  4050. "require": {
  4051. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12",
  4052. "ext-json": "*",
  4053. "php": "^8.0",
  4054. "ramsey/collection": "^1.2 || ^2.0"
  4055. },
  4056. "replace": {
  4057. "rhumsaa/uuid": "self.version"
  4058. },
  4059. "require-dev": {
  4060. "captainhook/captainhook": "^5.10",
  4061. "captainhook/plugin-composer": "^5.3",
  4062. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4063. "doctrine/annotations": "^1.8",
  4064. "ergebnis/composer-normalize": "^2.15",
  4065. "mockery/mockery": "^1.3",
  4066. "paragonie/random-lib": "^2",
  4067. "php-mock/php-mock": "^2.2",
  4068. "php-mock/php-mock-mockery": "^1.3",
  4069. "php-parallel-lint/php-parallel-lint": "^1.1",
  4070. "phpbench/phpbench": "^1.0",
  4071. "phpstan/extension-installer": "^1.1",
  4072. "phpstan/phpstan": "^1.8",
  4073. "phpstan/phpstan-mockery": "^1.1",
  4074. "phpstan/phpstan-phpunit": "^1.1",
  4075. "phpunit/phpunit": "^8.5 || ^9",
  4076. "ramsey/composer-repl": "^1.4",
  4077. "slevomat/coding-standard": "^8.4",
  4078. "squizlabs/php_codesniffer": "^3.5",
  4079. "vimeo/psalm": "^4.9"
  4080. },
  4081. "suggest": {
  4082. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4083. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4084. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4085. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4086. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4087. },
  4088. "type": "library",
  4089. "extra": {
  4090. "captainhook": {
  4091. "force-install": true
  4092. }
  4093. },
  4094. "autoload": {
  4095. "files": [
  4096. "src/functions.php"
  4097. ],
  4098. "psr-4": {
  4099. "Ramsey\\Uuid\\": "src/"
  4100. }
  4101. },
  4102. "license": [
  4103. "MIT"
  4104. ],
  4105. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4106. "keywords": [
  4107. "guid",
  4108. "identifier",
  4109. "uuid"
  4110. ],
  4111. "time": "2024-04-27T21:32:50+00:00"
  4112. },
  4113. {
  4114. "name": "spatie/laravel-permission",
  4115. "version": "6.9.0",
  4116. "dist": {
  4117. "type": "zip",
  4118. "url": "https://mirrors.tencent.com/repository/composer/spatie/laravel-permission/6.9.0/spatie-laravel-permission-6.9.0.zip",
  4119. "reference": "fe973a58b44380d0e8620107259b7bda22f70408",
  4120. "shasum": ""
  4121. },
  4122. "require": {
  4123. "illuminate/auth": "^8.12|^9.0|^10.0|^11.0",
  4124. "illuminate/container": "^8.12|^9.0|^10.0|^11.0",
  4125. "illuminate/contracts": "^8.12|^9.0|^10.0|^11.0",
  4126. "illuminate/database": "^8.12|^9.0|^10.0|^11.0",
  4127. "php": "^8.0"
  4128. },
  4129. "require-dev": {
  4130. "laravel/passport": "^11.0|^12.0",
  4131. "orchestra/testbench": "^6.23|^7.0|^8.0|^9.0",
  4132. "phpunit/phpunit": "^9.4|^10.1"
  4133. },
  4134. "type": "library",
  4135. "extra": {
  4136. "branch-alias": {
  4137. "dev-main": "6.x-dev",
  4138. "dev-master": "6.x-dev"
  4139. },
  4140. "laravel": {
  4141. "providers": [
  4142. "Spatie\\Permission\\PermissionServiceProvider"
  4143. ]
  4144. }
  4145. },
  4146. "autoload": {
  4147. "files": [
  4148. "src/helpers.php"
  4149. ],
  4150. "psr-4": {
  4151. "Spatie\\Permission\\": "src"
  4152. }
  4153. },
  4154. "license": [
  4155. "MIT"
  4156. ],
  4157. "authors": [
  4158. {
  4159. "name": "Freek Van der Herten",
  4160. "email": "freek@spatie.be",
  4161. "homepage": "https://spatie.be",
  4162. "role": "Developer"
  4163. }
  4164. ],
  4165. "description": "Permission handling for Laravel 8.0 and up",
  4166. "homepage": "https://github.com/spatie/laravel-permission",
  4167. "keywords": [
  4168. "acl",
  4169. "laravel",
  4170. "permission",
  4171. "permissions",
  4172. "rbac",
  4173. "roles",
  4174. "security",
  4175. "spatie"
  4176. ],
  4177. "time": "2024-06-22T23:04:52+00:00"
  4178. },
  4179. {
  4180. "name": "symfony/console",
  4181. "version": "v6.4.12",
  4182. "dist": {
  4183. "type": "zip",
  4184. "url": "https://mirrors.tencent.com/repository/composer/symfony/console/v6.4.12/symfony-console-v6.4.12.zip",
  4185. "reference": "72d080eb9edf80e36c19be61f72c98ed8273b765",
  4186. "shasum": ""
  4187. },
  4188. "require": {
  4189. "php": ">=8.1",
  4190. "symfony/deprecation-contracts": "^2.5|^3",
  4191. "symfony/polyfill-mbstring": "~1.0",
  4192. "symfony/service-contracts": "^2.5|^3",
  4193. "symfony/string": "^5.4|^6.0|^7.0"
  4194. },
  4195. "conflict": {
  4196. "symfony/dependency-injection": "<5.4",
  4197. "symfony/dotenv": "<5.4",
  4198. "symfony/event-dispatcher": "<5.4",
  4199. "symfony/lock": "<5.4",
  4200. "symfony/process": "<5.4"
  4201. },
  4202. "provide": {
  4203. "psr/log-implementation": "1.0|2.0|3.0"
  4204. },
  4205. "require-dev": {
  4206. "psr/log": "^1|^2|^3",
  4207. "symfony/config": "^5.4|^6.0|^7.0",
  4208. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  4209. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  4210. "symfony/http-foundation": "^6.4|^7.0",
  4211. "symfony/http-kernel": "^6.4|^7.0",
  4212. "symfony/lock": "^5.4|^6.0|^7.0",
  4213. "symfony/messenger": "^5.4|^6.0|^7.0",
  4214. "symfony/process": "^5.4|^6.0|^7.0",
  4215. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  4216. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  4217. },
  4218. "type": "library",
  4219. "autoload": {
  4220. "psr-4": {
  4221. "Symfony\\Component\\Console\\": ""
  4222. },
  4223. "exclude-from-classmap": [
  4224. "/Tests/"
  4225. ]
  4226. },
  4227. "license": [
  4228. "MIT"
  4229. ],
  4230. "authors": [
  4231. {
  4232. "name": "Fabien Potencier",
  4233. "email": "fabien@symfony.com"
  4234. },
  4235. {
  4236. "name": "Symfony Community",
  4237. "homepage": "https://symfony.com/contributors"
  4238. }
  4239. ],
  4240. "description": "Eases the creation of beautiful and testable command line interfaces",
  4241. "homepage": "https://symfony.com",
  4242. "keywords": [
  4243. "cli",
  4244. "command-line",
  4245. "console",
  4246. "terminal"
  4247. ],
  4248. "time": "2024-09-20T08:15:52+00:00"
  4249. },
  4250. {
  4251. "name": "symfony/css-selector",
  4252. "version": "v7.1.1",
  4253. "dist": {
  4254. "type": "zip",
  4255. "url": "https://mirrors.tencent.com/repository/composer/symfony/css-selector/v7.1.1/symfony-css-selector-v7.1.1.zip",
  4256. "reference": "1c7cee86c6f812896af54434f8ce29c8d94f9ff4",
  4257. "shasum": ""
  4258. },
  4259. "require": {
  4260. "php": ">=8.2"
  4261. },
  4262. "type": "library",
  4263. "autoload": {
  4264. "psr-4": {
  4265. "Symfony\\Component\\CssSelector\\": ""
  4266. },
  4267. "exclude-from-classmap": [
  4268. "/Tests/"
  4269. ]
  4270. },
  4271. "license": [
  4272. "MIT"
  4273. ],
  4274. "authors": [
  4275. {
  4276. "name": "Fabien Potencier",
  4277. "email": "fabien@symfony.com"
  4278. },
  4279. {
  4280. "name": "Jean-François Simon",
  4281. "email": "jeanfrancois.simon@sensiolabs.com"
  4282. },
  4283. {
  4284. "name": "Symfony Community",
  4285. "homepage": "https://symfony.com/contributors"
  4286. }
  4287. ],
  4288. "description": "Converts CSS selectors to XPath expressions",
  4289. "homepage": "https://symfony.com",
  4290. "time": "2024-05-31T14:57:53+00:00"
  4291. },
  4292. {
  4293. "name": "symfony/deprecation-contracts",
  4294. "version": "v3.5.0",
  4295. "dist": {
  4296. "type": "zip",
  4297. "url": "https://mirrors.tencent.com/repository/composer/symfony/deprecation-contracts/v3.5.0/symfony-deprecation-contracts-v3.5.0.zip",
  4298. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  4299. "shasum": ""
  4300. },
  4301. "require": {
  4302. "php": ">=8.1"
  4303. },
  4304. "type": "library",
  4305. "extra": {
  4306. "branch-alias": {
  4307. "dev-main": "3.5-dev"
  4308. },
  4309. "thanks": {
  4310. "name": "symfony/contracts",
  4311. "url": "https://github.com/symfony/contracts"
  4312. }
  4313. },
  4314. "autoload": {
  4315. "files": [
  4316. "function.php"
  4317. ]
  4318. },
  4319. "license": [
  4320. "MIT"
  4321. ],
  4322. "authors": [
  4323. {
  4324. "name": "Nicolas Grekas",
  4325. "email": "p@tchwork.com"
  4326. },
  4327. {
  4328. "name": "Symfony Community",
  4329. "homepage": "https://symfony.com/contributors"
  4330. }
  4331. ],
  4332. "description": "A generic function and convention to trigger deprecation notices",
  4333. "homepage": "https://symfony.com",
  4334. "time": "2024-04-18T09:32:20+00:00"
  4335. },
  4336. {
  4337. "name": "symfony/error-handler",
  4338. "version": "v6.4.10",
  4339. "dist": {
  4340. "type": "zip",
  4341. "url": "https://mirrors.tencent.com/repository/composer/symfony/error-handler/v6.4.10/symfony-error-handler-v6.4.10.zip",
  4342. "reference": "231f1b2ee80f72daa1972f7340297d67439224f0",
  4343. "shasum": ""
  4344. },
  4345. "require": {
  4346. "php": ">=8.1",
  4347. "psr/log": "^1|^2|^3",
  4348. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  4349. },
  4350. "conflict": {
  4351. "symfony/deprecation-contracts": "<2.5",
  4352. "symfony/http-kernel": "<6.4"
  4353. },
  4354. "require-dev": {
  4355. "symfony/deprecation-contracts": "^2.5|^3",
  4356. "symfony/http-kernel": "^6.4|^7.0",
  4357. "symfony/serializer": "^5.4|^6.0|^7.0"
  4358. },
  4359. "bin": [
  4360. "Resources/bin/patch-type-declarations"
  4361. ],
  4362. "type": "library",
  4363. "autoload": {
  4364. "psr-4": {
  4365. "Symfony\\Component\\ErrorHandler\\": ""
  4366. },
  4367. "exclude-from-classmap": [
  4368. "/Tests/"
  4369. ]
  4370. },
  4371. "license": [
  4372. "MIT"
  4373. ],
  4374. "authors": [
  4375. {
  4376. "name": "Fabien Potencier",
  4377. "email": "fabien@symfony.com"
  4378. },
  4379. {
  4380. "name": "Symfony Community",
  4381. "homepage": "https://symfony.com/contributors"
  4382. }
  4383. ],
  4384. "description": "Provides tools to manage errors and ease debugging PHP code",
  4385. "homepage": "https://symfony.com",
  4386. "time": "2024-07-26T12:30:32+00:00"
  4387. },
  4388. {
  4389. "name": "symfony/event-dispatcher",
  4390. "version": "v7.1.1",
  4391. "dist": {
  4392. "type": "zip",
  4393. "url": "https://mirrors.tencent.com/repository/composer/symfony/event-dispatcher/v7.1.1/symfony-event-dispatcher-v7.1.1.zip",
  4394. "reference": "9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7",
  4395. "shasum": ""
  4396. },
  4397. "require": {
  4398. "php": ">=8.2",
  4399. "symfony/event-dispatcher-contracts": "^2.5|^3"
  4400. },
  4401. "conflict": {
  4402. "symfony/dependency-injection": "<6.4",
  4403. "symfony/service-contracts": "<2.5"
  4404. },
  4405. "provide": {
  4406. "psr/event-dispatcher-implementation": "1.0",
  4407. "symfony/event-dispatcher-implementation": "2.0|3.0"
  4408. },
  4409. "require-dev": {
  4410. "psr/log": "^1|^2|^3",
  4411. "symfony/config": "^6.4|^7.0",
  4412. "symfony/dependency-injection": "^6.4|^7.0",
  4413. "symfony/error-handler": "^6.4|^7.0",
  4414. "symfony/expression-language": "^6.4|^7.0",
  4415. "symfony/http-foundation": "^6.4|^7.0",
  4416. "symfony/service-contracts": "^2.5|^3",
  4417. "symfony/stopwatch": "^6.4|^7.0"
  4418. },
  4419. "type": "library",
  4420. "autoload": {
  4421. "psr-4": {
  4422. "Symfony\\Component\\EventDispatcher\\": ""
  4423. },
  4424. "exclude-from-classmap": [
  4425. "/Tests/"
  4426. ]
  4427. },
  4428. "license": [
  4429. "MIT"
  4430. ],
  4431. "authors": [
  4432. {
  4433. "name": "Fabien Potencier",
  4434. "email": "fabien@symfony.com"
  4435. },
  4436. {
  4437. "name": "Symfony Community",
  4438. "homepage": "https://symfony.com/contributors"
  4439. }
  4440. ],
  4441. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  4442. "homepage": "https://symfony.com",
  4443. "time": "2024-05-31T14:57:53+00:00"
  4444. },
  4445. {
  4446. "name": "symfony/event-dispatcher-contracts",
  4447. "version": "v3.5.0",
  4448. "dist": {
  4449. "type": "zip",
  4450. "url": "https://mirrors.tencent.com/repository/composer/symfony/event-dispatcher-contracts/v3.5.0/symfony-event-dispatcher-contracts-v3.5.0.zip",
  4451. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  4452. "shasum": ""
  4453. },
  4454. "require": {
  4455. "php": ">=8.1",
  4456. "psr/event-dispatcher": "^1"
  4457. },
  4458. "type": "library",
  4459. "extra": {
  4460. "branch-alias": {
  4461. "dev-main": "3.5-dev"
  4462. },
  4463. "thanks": {
  4464. "name": "symfony/contracts",
  4465. "url": "https://github.com/symfony/contracts"
  4466. }
  4467. },
  4468. "autoload": {
  4469. "psr-4": {
  4470. "Symfony\\Contracts\\EventDispatcher\\": ""
  4471. }
  4472. },
  4473. "license": [
  4474. "MIT"
  4475. ],
  4476. "authors": [
  4477. {
  4478. "name": "Nicolas Grekas",
  4479. "email": "p@tchwork.com"
  4480. },
  4481. {
  4482. "name": "Symfony Community",
  4483. "homepage": "https://symfony.com/contributors"
  4484. }
  4485. ],
  4486. "description": "Generic abstractions related to dispatching event",
  4487. "homepage": "https://symfony.com",
  4488. "keywords": [
  4489. "abstractions",
  4490. "contracts",
  4491. "decoupling",
  4492. "interfaces",
  4493. "interoperability",
  4494. "standards"
  4495. ],
  4496. "time": "2024-04-18T09:32:20+00:00"
  4497. },
  4498. {
  4499. "name": "symfony/finder",
  4500. "version": "v6.4.11",
  4501. "dist": {
  4502. "type": "zip",
  4503. "url": "https://mirrors.tencent.com/repository/composer/symfony/finder/v6.4.11/symfony-finder-v6.4.11.zip",
  4504. "reference": "d7eb6daf8cd7e9ac4976e9576b32042ef7253453",
  4505. "shasum": ""
  4506. },
  4507. "require": {
  4508. "php": ">=8.1"
  4509. },
  4510. "require-dev": {
  4511. "symfony/filesystem": "^6.0|^7.0"
  4512. },
  4513. "type": "library",
  4514. "autoload": {
  4515. "psr-4": {
  4516. "Symfony\\Component\\Finder\\": ""
  4517. },
  4518. "exclude-from-classmap": [
  4519. "/Tests/"
  4520. ]
  4521. },
  4522. "license": [
  4523. "MIT"
  4524. ],
  4525. "authors": [
  4526. {
  4527. "name": "Fabien Potencier",
  4528. "email": "fabien@symfony.com"
  4529. },
  4530. {
  4531. "name": "Symfony Community",
  4532. "homepage": "https://symfony.com/contributors"
  4533. }
  4534. ],
  4535. "description": "Finds files and directories via an intuitive fluent interface",
  4536. "homepage": "https://symfony.com",
  4537. "time": "2024-08-13T14:27:37+00:00"
  4538. },
  4539. {
  4540. "name": "symfony/http-foundation",
  4541. "version": "v6.4.12",
  4542. "dist": {
  4543. "type": "zip",
  4544. "url": "https://mirrors.tencent.com/repository/composer/symfony/http-foundation/v6.4.12/symfony-http-foundation-v6.4.12.zip",
  4545. "reference": "133ac043875f59c26c55e79cf074562127cce4d2",
  4546. "shasum": ""
  4547. },
  4548. "require": {
  4549. "php": ">=8.1",
  4550. "symfony/deprecation-contracts": "^2.5|^3",
  4551. "symfony/polyfill-mbstring": "~1.1",
  4552. "symfony/polyfill-php83": "^1.27"
  4553. },
  4554. "conflict": {
  4555. "symfony/cache": "<6.3"
  4556. },
  4557. "require-dev": {
  4558. "doctrine/dbal": "^2.13.1|^3|^4",
  4559. "predis/predis": "^1.1|^2.0",
  4560. "symfony/cache": "^6.3|^7.0",
  4561. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  4562. "symfony/expression-language": "^5.4|^6.0|^7.0",
  4563. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  4564. "symfony/mime": "^5.4|^6.0|^7.0",
  4565. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  4566. },
  4567. "type": "library",
  4568. "autoload": {
  4569. "psr-4": {
  4570. "Symfony\\Component\\HttpFoundation\\": ""
  4571. },
  4572. "exclude-from-classmap": [
  4573. "/Tests/"
  4574. ]
  4575. },
  4576. "license": [
  4577. "MIT"
  4578. ],
  4579. "authors": [
  4580. {
  4581. "name": "Fabien Potencier",
  4582. "email": "fabien@symfony.com"
  4583. },
  4584. {
  4585. "name": "Symfony Community",
  4586. "homepage": "https://symfony.com/contributors"
  4587. }
  4588. ],
  4589. "description": "Defines an object-oriented layer for the HTTP specification",
  4590. "homepage": "https://symfony.com",
  4591. "time": "2024-09-20T08:18:25+00:00"
  4592. },
  4593. {
  4594. "name": "symfony/http-kernel",
  4595. "version": "v6.4.12",
  4596. "dist": {
  4597. "type": "zip",
  4598. "url": "https://mirrors.tencent.com/repository/composer/symfony/http-kernel/v6.4.12/symfony-http-kernel-v6.4.12.zip",
  4599. "reference": "96df83d51b5f78804f70c093b97310794fd6257b",
  4600. "shasum": ""
  4601. },
  4602. "require": {
  4603. "php": ">=8.1",
  4604. "psr/log": "^1|^2|^3",
  4605. "symfony/deprecation-contracts": "^2.5|^3",
  4606. "symfony/error-handler": "^6.4|^7.0",
  4607. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  4608. "symfony/http-foundation": "^6.4|^7.0",
  4609. "symfony/polyfill-ctype": "^1.8"
  4610. },
  4611. "conflict": {
  4612. "symfony/browser-kit": "<5.4",
  4613. "symfony/cache": "<5.4",
  4614. "symfony/config": "<6.1",
  4615. "symfony/console": "<5.4",
  4616. "symfony/dependency-injection": "<6.4",
  4617. "symfony/doctrine-bridge": "<5.4",
  4618. "symfony/form": "<5.4",
  4619. "symfony/http-client": "<5.4",
  4620. "symfony/http-client-contracts": "<2.5",
  4621. "symfony/mailer": "<5.4",
  4622. "symfony/messenger": "<5.4",
  4623. "symfony/translation": "<5.4",
  4624. "symfony/translation-contracts": "<2.5",
  4625. "symfony/twig-bridge": "<5.4",
  4626. "symfony/validator": "<6.4",
  4627. "symfony/var-dumper": "<6.3",
  4628. "twig/twig": "<2.13"
  4629. },
  4630. "provide": {
  4631. "psr/log-implementation": "1.0|2.0|3.0"
  4632. },
  4633. "require-dev": {
  4634. "psr/cache": "^1.0|^2.0|^3.0",
  4635. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  4636. "symfony/clock": "^6.2|^7.0",
  4637. "symfony/config": "^6.1|^7.0",
  4638. "symfony/console": "^5.4|^6.0|^7.0",
  4639. "symfony/css-selector": "^5.4|^6.0|^7.0",
  4640. "symfony/dependency-injection": "^6.4|^7.0",
  4641. "symfony/dom-crawler": "^5.4|^6.0|^7.0",
  4642. "symfony/expression-language": "^5.4|^6.0|^7.0",
  4643. "symfony/finder": "^5.4|^6.0|^7.0",
  4644. "symfony/http-client-contracts": "^2.5|^3",
  4645. "symfony/process": "^5.4|^6.0|^7.0",
  4646. "symfony/property-access": "^5.4.5|^6.0.5|^7.0",
  4647. "symfony/routing": "^5.4|^6.0|^7.0",
  4648. "symfony/serializer": "^6.4.4|^7.0.4",
  4649. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  4650. "symfony/translation": "^5.4|^6.0|^7.0",
  4651. "symfony/translation-contracts": "^2.5|^3",
  4652. "symfony/uid": "^5.4|^6.0|^7.0",
  4653. "symfony/validator": "^6.4|^7.0",
  4654. "symfony/var-dumper": "^5.4|^6.4|^7.0",
  4655. "symfony/var-exporter": "^6.2|^7.0",
  4656. "twig/twig": "^2.13|^3.0.4"
  4657. },
  4658. "type": "library",
  4659. "autoload": {
  4660. "psr-4": {
  4661. "Symfony\\Component\\HttpKernel\\": ""
  4662. },
  4663. "exclude-from-classmap": [
  4664. "/Tests/"
  4665. ]
  4666. },
  4667. "license": [
  4668. "MIT"
  4669. ],
  4670. "authors": [
  4671. {
  4672. "name": "Fabien Potencier",
  4673. "email": "fabien@symfony.com"
  4674. },
  4675. {
  4676. "name": "Symfony Community",
  4677. "homepage": "https://symfony.com/contributors"
  4678. }
  4679. ],
  4680. "description": "Provides a structured process for converting a Request into a Response",
  4681. "homepage": "https://symfony.com",
  4682. "time": "2024-09-21T06:02:57+00:00"
  4683. },
  4684. {
  4685. "name": "symfony/mailer",
  4686. "version": "v6.4.12",
  4687. "dist": {
  4688. "type": "zip",
  4689. "url": "https://mirrors.tencent.com/repository/composer/symfony/mailer/v6.4.12/symfony-mailer-v6.4.12.zip",
  4690. "reference": "b6a25408c569ae2366b3f663a4edad19420a9c26",
  4691. "shasum": ""
  4692. },
  4693. "require": {
  4694. "egulias/email-validator": "^2.1.10|^3|^4",
  4695. "php": ">=8.1",
  4696. "psr/event-dispatcher": "^1",
  4697. "psr/log": "^1|^2|^3",
  4698. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  4699. "symfony/mime": "^6.2|^7.0",
  4700. "symfony/service-contracts": "^2.5|^3"
  4701. },
  4702. "conflict": {
  4703. "symfony/http-client-contracts": "<2.5",
  4704. "symfony/http-kernel": "<5.4",
  4705. "symfony/messenger": "<6.2",
  4706. "symfony/mime": "<6.2",
  4707. "symfony/twig-bridge": "<6.2.1"
  4708. },
  4709. "require-dev": {
  4710. "symfony/console": "^5.4|^6.0|^7.0",
  4711. "symfony/http-client": "^5.4|^6.0|^7.0",
  4712. "symfony/messenger": "^6.2|^7.0",
  4713. "symfony/twig-bridge": "^6.2|^7.0"
  4714. },
  4715. "type": "library",
  4716. "autoload": {
  4717. "psr-4": {
  4718. "Symfony\\Component\\Mailer\\": ""
  4719. },
  4720. "exclude-from-classmap": [
  4721. "/Tests/"
  4722. ]
  4723. },
  4724. "license": [
  4725. "MIT"
  4726. ],
  4727. "authors": [
  4728. {
  4729. "name": "Fabien Potencier",
  4730. "email": "fabien@symfony.com"
  4731. },
  4732. {
  4733. "name": "Symfony Community",
  4734. "homepage": "https://symfony.com/contributors"
  4735. }
  4736. ],
  4737. "description": "Helps sending emails",
  4738. "homepage": "https://symfony.com",
  4739. "time": "2024-09-08T12:30:05+00:00"
  4740. },
  4741. {
  4742. "name": "symfony/mime",
  4743. "version": "v6.4.12",
  4744. "dist": {
  4745. "type": "zip",
  4746. "url": "https://mirrors.tencent.com/repository/composer/symfony/mime/v6.4.12/symfony-mime-v6.4.12.zip",
  4747. "reference": "abe16ee7790b16aa525877419deb0f113953f0e1",
  4748. "shasum": ""
  4749. },
  4750. "require": {
  4751. "php": ">=8.1",
  4752. "symfony/deprecation-contracts": "^2.5|^3",
  4753. "symfony/polyfill-intl-idn": "^1.10",
  4754. "symfony/polyfill-mbstring": "^1.0"
  4755. },
  4756. "conflict": {
  4757. "egulias/email-validator": "~3.0.0",
  4758. "phpdocumentor/reflection-docblock": "<3.2.2",
  4759. "phpdocumentor/type-resolver": "<1.4.0",
  4760. "symfony/mailer": "<5.4",
  4761. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  4762. },
  4763. "require-dev": {
  4764. "egulias/email-validator": "^2.1.10|^3.1|^4",
  4765. "league/html-to-markdown": "^5.0",
  4766. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  4767. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  4768. "symfony/process": "^5.4|^6.4|^7.0",
  4769. "symfony/property-access": "^5.4|^6.0|^7.0",
  4770. "symfony/property-info": "^5.4|^6.0|^7.0",
  4771. "symfony/serializer": "^6.4.3|^7.0.3"
  4772. },
  4773. "type": "library",
  4774. "autoload": {
  4775. "psr-4": {
  4776. "Symfony\\Component\\Mime\\": ""
  4777. },
  4778. "exclude-from-classmap": [
  4779. "/Tests/"
  4780. ]
  4781. },
  4782. "license": [
  4783. "MIT"
  4784. ],
  4785. "authors": [
  4786. {
  4787. "name": "Fabien Potencier",
  4788. "email": "fabien@symfony.com"
  4789. },
  4790. {
  4791. "name": "Symfony Community",
  4792. "homepage": "https://symfony.com/contributors"
  4793. }
  4794. ],
  4795. "description": "Allows manipulating MIME messages",
  4796. "homepage": "https://symfony.com",
  4797. "keywords": [
  4798. "mime",
  4799. "mime-type"
  4800. ],
  4801. "time": "2024-09-20T08:18:25+00:00"
  4802. },
  4803. {
  4804. "name": "symfony/polyfill-ctype",
  4805. "version": "v1.31.0",
  4806. "dist": {
  4807. "type": "zip",
  4808. "url": "https://mirrors.tencent.com/repository/composer/symfony/polyfill-ctype/v1.31.0/symfony-polyfill-ctype-v1.31.0.zip",
  4809. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  4810. "shasum": ""
  4811. },
  4812. "require": {
  4813. "php": ">=7.2"
  4814. },
  4815. "provide": {
  4816. "ext-ctype": "*"
  4817. },
  4818. "suggest": {
  4819. "ext-ctype": "For best performance"
  4820. },
  4821. "type": "library",
  4822. "extra": {
  4823. "thanks": {
  4824. "name": "symfony/polyfill",
  4825. "url": "https://github.com/symfony/polyfill"
  4826. }
  4827. },
  4828. "autoload": {
  4829. "files": [
  4830. "bootstrap.php"
  4831. ],
  4832. "psr-4": {
  4833. "Symfony\\Polyfill\\Ctype\\": ""
  4834. }
  4835. },
  4836. "license": [
  4837. "MIT"
  4838. ],
  4839. "authors": [
  4840. {
  4841. "name": "Gert de Pagter",
  4842. "email": "BackEndTea@gmail.com"
  4843. },
  4844. {
  4845. "name": "Symfony Community",
  4846. "homepage": "https://symfony.com/contributors"
  4847. }
  4848. ],
  4849. "description": "Symfony polyfill for ctype functions",
  4850. "homepage": "https://symfony.com",
  4851. "keywords": [
  4852. "compatibility",
  4853. "ctype",
  4854. "polyfill",
  4855. "portable"
  4856. ],
  4857. "time": "2024-09-09T11:45:10+00:00"
  4858. },
  4859. {
  4860. "name": "symfony/polyfill-intl-grapheme",
  4861. "version": "v1.31.0",
  4862. "dist": {
  4863. "type": "zip",
  4864. "url": "https://mirrors.tencent.com/repository/composer/symfony/polyfill-intl-grapheme/v1.31.0/symfony-polyfill-intl-grapheme-v1.31.0.zip",
  4865. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  4866. "shasum": ""
  4867. },
  4868. "require": {
  4869. "php": ">=7.2"
  4870. },
  4871. "suggest": {
  4872. "ext-intl": "For best performance"
  4873. },
  4874. "type": "library",
  4875. "extra": {
  4876. "thanks": {
  4877. "name": "symfony/polyfill",
  4878. "url": "https://github.com/symfony/polyfill"
  4879. }
  4880. },
  4881. "autoload": {
  4882. "files": [
  4883. "bootstrap.php"
  4884. ],
  4885. "psr-4": {
  4886. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  4887. }
  4888. },
  4889. "license": [
  4890. "MIT"
  4891. ],
  4892. "authors": [
  4893. {
  4894. "name": "Nicolas Grekas",
  4895. "email": "p@tchwork.com"
  4896. },
  4897. {
  4898. "name": "Symfony Community",
  4899. "homepage": "https://symfony.com/contributors"
  4900. }
  4901. ],
  4902. "description": "Symfony polyfill for intl's grapheme_* functions",
  4903. "homepage": "https://symfony.com",
  4904. "keywords": [
  4905. "compatibility",
  4906. "grapheme",
  4907. "intl",
  4908. "polyfill",
  4909. "portable",
  4910. "shim"
  4911. ],
  4912. "time": "2024-09-09T11:45:10+00:00"
  4913. },
  4914. {
  4915. "name": "symfony/polyfill-intl-idn",
  4916. "version": "v1.31.0",
  4917. "dist": {
  4918. "type": "zip",
  4919. "url": "https://mirrors.tencent.com/repository/composer/symfony/polyfill-intl-idn/v1.31.0/symfony-polyfill-intl-idn-v1.31.0.zip",
  4920. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
  4921. "shasum": ""
  4922. },
  4923. "require": {
  4924. "php": ">=7.2",
  4925. "symfony/polyfill-intl-normalizer": "^1.10"
  4926. },
  4927. "suggest": {
  4928. "ext-intl": "For best performance"
  4929. },
  4930. "type": "library",
  4931. "extra": {
  4932. "thanks": {
  4933. "name": "symfony/polyfill",
  4934. "url": "https://github.com/symfony/polyfill"
  4935. }
  4936. },
  4937. "autoload": {
  4938. "files": [
  4939. "bootstrap.php"
  4940. ],
  4941. "psr-4": {
  4942. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  4943. }
  4944. },
  4945. "license": [
  4946. "MIT"
  4947. ],
  4948. "authors": [
  4949. {
  4950. "name": "Laurent Bassin",
  4951. "email": "laurent@bassin.info"
  4952. },
  4953. {
  4954. "name": "Trevor Rowbotham",
  4955. "email": "trevor.rowbotham@pm.me"
  4956. },
  4957. {
  4958. "name": "Symfony Community",
  4959. "homepage": "https://symfony.com/contributors"
  4960. }
  4961. ],
  4962. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  4963. "homepage": "https://symfony.com",
  4964. "keywords": [
  4965. "compatibility",
  4966. "idn",
  4967. "intl",
  4968. "polyfill",
  4969. "portable",
  4970. "shim"
  4971. ],
  4972. "time": "2024-09-09T11:45:10+00:00"
  4973. },
  4974. {
  4975. "name": "symfony/polyfill-intl-normalizer",
  4976. "version": "v1.31.0",
  4977. "dist": {
  4978. "type": "zip",
  4979. "url": "https://mirrors.tencent.com/repository/composer/symfony/polyfill-intl-normalizer/v1.31.0/symfony-polyfill-intl-normalizer-v1.31.0.zip",
  4980. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  4981. "shasum": ""
  4982. },
  4983. "require": {
  4984. "php": ">=7.2"
  4985. },
  4986. "suggest": {
  4987. "ext-intl": "For best performance"
  4988. },
  4989. "type": "library",
  4990. "extra": {
  4991. "thanks": {
  4992. "name": "symfony/polyfill",
  4993. "url": "https://github.com/symfony/polyfill"
  4994. }
  4995. },
  4996. "autoload": {
  4997. "files": [
  4998. "bootstrap.php"
  4999. ],
  5000. "psr-4": {
  5001. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5002. },
  5003. "classmap": [
  5004. "Resources/stubs"
  5005. ]
  5006. },
  5007. "license": [
  5008. "MIT"
  5009. ],
  5010. "authors": [
  5011. {
  5012. "name": "Nicolas Grekas",
  5013. "email": "p@tchwork.com"
  5014. },
  5015. {
  5016. "name": "Symfony Community",
  5017. "homepage": "https://symfony.com/contributors"
  5018. }
  5019. ],
  5020. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5021. "homepage": "https://symfony.com",
  5022. "keywords": [
  5023. "compatibility",
  5024. "intl",
  5025. "normalizer",
  5026. "polyfill",
  5027. "portable",
  5028. "shim"
  5029. ],
  5030. "time": "2024-09-09T11:45:10+00:00"
  5031. },
  5032. {
  5033. "name": "symfony/polyfill-mbstring",
  5034. "version": "v1.31.0",
  5035. "dist": {
  5036. "type": "zip",
  5037. "url": "https://mirrors.tencent.com/repository/composer/symfony/polyfill-mbstring/v1.31.0/symfony-polyfill-mbstring-v1.31.0.zip",
  5038. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  5039. "shasum": ""
  5040. },
  5041. "require": {
  5042. "php": ">=7.2"
  5043. },
  5044. "provide": {
  5045. "ext-mbstring": "*"
  5046. },
  5047. "suggest": {
  5048. "ext-mbstring": "For best performance"
  5049. },
  5050. "type": "library",
  5051. "extra": {
  5052. "thanks": {
  5053. "name": "symfony/polyfill",
  5054. "url": "https://github.com/symfony/polyfill"
  5055. }
  5056. },
  5057. "autoload": {
  5058. "files": [
  5059. "bootstrap.php"
  5060. ],
  5061. "psr-4": {
  5062. "Symfony\\Polyfill\\Mbstring\\": ""
  5063. }
  5064. },
  5065. "license": [
  5066. "MIT"
  5067. ],
  5068. "authors": [
  5069. {
  5070. "name": "Nicolas Grekas",
  5071. "email": "p@tchwork.com"
  5072. },
  5073. {
  5074. "name": "Symfony Community",
  5075. "homepage": "https://symfony.com/contributors"
  5076. }
  5077. ],
  5078. "description": "Symfony polyfill for the Mbstring extension",
  5079. "homepage": "https://symfony.com",
  5080. "keywords": [
  5081. "compatibility",
  5082. "mbstring",
  5083. "polyfill",
  5084. "portable",
  5085. "shim"
  5086. ],
  5087. "time": "2024-09-09T11:45:10+00:00"
  5088. },
  5089. {
  5090. "name": "symfony/polyfill-php80",
  5091. "version": "v1.31.0",
  5092. "dist": {
  5093. "type": "zip",
  5094. "url": "https://mirrors.tencent.com/repository/composer/symfony/polyfill-php80/v1.31.0/symfony-polyfill-php80-v1.31.0.zip",
  5095. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  5096. "shasum": ""
  5097. },
  5098. "require": {
  5099. "php": ">=7.2"
  5100. },
  5101. "type": "library",
  5102. "extra": {
  5103. "thanks": {
  5104. "name": "symfony/polyfill",
  5105. "url": "https://github.com/symfony/polyfill"
  5106. }
  5107. },
  5108. "autoload": {
  5109. "files": [
  5110. "bootstrap.php"
  5111. ],
  5112. "psr-4": {
  5113. "Symfony\\Polyfill\\Php80\\": ""
  5114. },
  5115. "classmap": [
  5116. "Resources/stubs"
  5117. ]
  5118. },
  5119. "license": [
  5120. "MIT"
  5121. ],
  5122. "authors": [
  5123. {
  5124. "name": "Ion Bazan",
  5125. "email": "ion.bazan@gmail.com"
  5126. },
  5127. {
  5128. "name": "Nicolas Grekas",
  5129. "email": "p@tchwork.com"
  5130. },
  5131. {
  5132. "name": "Symfony Community",
  5133. "homepage": "https://symfony.com/contributors"
  5134. }
  5135. ],
  5136. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  5137. "homepage": "https://symfony.com",
  5138. "keywords": [
  5139. "compatibility",
  5140. "polyfill",
  5141. "portable",
  5142. "shim"
  5143. ],
  5144. "time": "2024-09-09T11:45:10+00:00"
  5145. },
  5146. {
  5147. "name": "symfony/polyfill-php83",
  5148. "version": "v1.31.0",
  5149. "dist": {
  5150. "type": "zip",
  5151. "url": "https://mirrors.tencent.com/repository/composer/symfony/polyfill-php83/v1.31.0/symfony-polyfill-php83-v1.31.0.zip",
  5152. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  5153. "shasum": ""
  5154. },
  5155. "require": {
  5156. "php": ">=7.2"
  5157. },
  5158. "type": "library",
  5159. "extra": {
  5160. "thanks": {
  5161. "name": "symfony/polyfill",
  5162. "url": "https://github.com/symfony/polyfill"
  5163. }
  5164. },
  5165. "autoload": {
  5166. "files": [
  5167. "bootstrap.php"
  5168. ],
  5169. "psr-4": {
  5170. "Symfony\\Polyfill\\Php83\\": ""
  5171. },
  5172. "classmap": [
  5173. "Resources/stubs"
  5174. ]
  5175. },
  5176. "license": [
  5177. "MIT"
  5178. ],
  5179. "authors": [
  5180. {
  5181. "name": "Nicolas Grekas",
  5182. "email": "p@tchwork.com"
  5183. },
  5184. {
  5185. "name": "Symfony Community",
  5186. "homepage": "https://symfony.com/contributors"
  5187. }
  5188. ],
  5189. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  5190. "homepage": "https://symfony.com",
  5191. "keywords": [
  5192. "compatibility",
  5193. "polyfill",
  5194. "portable",
  5195. "shim"
  5196. ],
  5197. "time": "2024-09-09T11:45:10+00:00"
  5198. },
  5199. {
  5200. "name": "symfony/polyfill-uuid",
  5201. "version": "v1.31.0",
  5202. "dist": {
  5203. "type": "zip",
  5204. "url": "https://mirrors.tencent.com/repository/composer/symfony/polyfill-uuid/v1.31.0/symfony-polyfill-uuid-v1.31.0.zip",
  5205. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  5206. "shasum": ""
  5207. },
  5208. "require": {
  5209. "php": ">=7.2"
  5210. },
  5211. "provide": {
  5212. "ext-uuid": "*"
  5213. },
  5214. "suggest": {
  5215. "ext-uuid": "For best performance"
  5216. },
  5217. "type": "library",
  5218. "extra": {
  5219. "thanks": {
  5220. "name": "symfony/polyfill",
  5221. "url": "https://github.com/symfony/polyfill"
  5222. }
  5223. },
  5224. "autoload": {
  5225. "files": [
  5226. "bootstrap.php"
  5227. ],
  5228. "psr-4": {
  5229. "Symfony\\Polyfill\\Uuid\\": ""
  5230. }
  5231. },
  5232. "license": [
  5233. "MIT"
  5234. ],
  5235. "authors": [
  5236. {
  5237. "name": "Grégoire Pineau",
  5238. "email": "lyrixx@lyrixx.info"
  5239. },
  5240. {
  5241. "name": "Symfony Community",
  5242. "homepage": "https://symfony.com/contributors"
  5243. }
  5244. ],
  5245. "description": "Symfony polyfill for uuid functions",
  5246. "homepage": "https://symfony.com",
  5247. "keywords": [
  5248. "compatibility",
  5249. "polyfill",
  5250. "portable",
  5251. "uuid"
  5252. ],
  5253. "time": "2024-09-09T11:45:10+00:00"
  5254. },
  5255. {
  5256. "name": "symfony/process",
  5257. "version": "v6.4.12",
  5258. "dist": {
  5259. "type": "zip",
  5260. "url": "https://mirrors.tencent.com/repository/composer/symfony/process/v6.4.12/symfony-process-v6.4.12.zip",
  5261. "reference": "3f94e5f13ff58df371a7ead461b6e8068900fbb3",
  5262. "shasum": ""
  5263. },
  5264. "require": {
  5265. "php": ">=8.1"
  5266. },
  5267. "type": "library",
  5268. "autoload": {
  5269. "psr-4": {
  5270. "Symfony\\Component\\Process\\": ""
  5271. },
  5272. "exclude-from-classmap": [
  5273. "/Tests/"
  5274. ]
  5275. },
  5276. "license": [
  5277. "MIT"
  5278. ],
  5279. "authors": [
  5280. {
  5281. "name": "Fabien Potencier",
  5282. "email": "fabien@symfony.com"
  5283. },
  5284. {
  5285. "name": "Symfony Community",
  5286. "homepage": "https://symfony.com/contributors"
  5287. }
  5288. ],
  5289. "description": "Executes commands in sub-processes",
  5290. "homepage": "https://symfony.com",
  5291. "time": "2024-09-17T12:47:12+00:00"
  5292. },
  5293. {
  5294. "name": "symfony/routing",
  5295. "version": "v6.4.12",
  5296. "dist": {
  5297. "type": "zip",
  5298. "url": "https://mirrors.tencent.com/repository/composer/symfony/routing/v6.4.12/symfony-routing-v6.4.12.zip",
  5299. "reference": "a7c8036bd159486228dc9be3e846a00a0dda9f9f",
  5300. "shasum": ""
  5301. },
  5302. "require": {
  5303. "php": ">=8.1",
  5304. "symfony/deprecation-contracts": "^2.5|^3"
  5305. },
  5306. "conflict": {
  5307. "doctrine/annotations": "<1.12",
  5308. "symfony/config": "<6.2",
  5309. "symfony/dependency-injection": "<5.4",
  5310. "symfony/yaml": "<5.4"
  5311. },
  5312. "require-dev": {
  5313. "doctrine/annotations": "^1.12|^2",
  5314. "psr/log": "^1|^2|^3",
  5315. "symfony/config": "^6.2|^7.0",
  5316. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  5317. "symfony/expression-language": "^5.4|^6.0|^7.0",
  5318. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  5319. "symfony/yaml": "^5.4|^6.0|^7.0"
  5320. },
  5321. "type": "library",
  5322. "autoload": {
  5323. "psr-4": {
  5324. "Symfony\\Component\\Routing\\": ""
  5325. },
  5326. "exclude-from-classmap": [
  5327. "/Tests/"
  5328. ]
  5329. },
  5330. "license": [
  5331. "MIT"
  5332. ],
  5333. "authors": [
  5334. {
  5335. "name": "Fabien Potencier",
  5336. "email": "fabien@symfony.com"
  5337. },
  5338. {
  5339. "name": "Symfony Community",
  5340. "homepage": "https://symfony.com/contributors"
  5341. }
  5342. ],
  5343. "description": "Maps an HTTP request to a set of configuration variables",
  5344. "homepage": "https://symfony.com",
  5345. "keywords": [
  5346. "router",
  5347. "routing",
  5348. "uri",
  5349. "url"
  5350. ],
  5351. "time": "2024-09-20T08:32:26+00:00"
  5352. },
  5353. {
  5354. "name": "symfony/service-contracts",
  5355. "version": "v3.5.0",
  5356. "dist": {
  5357. "type": "zip",
  5358. "url": "https://mirrors.tencent.com/repository/composer/symfony/service-contracts/v3.5.0/symfony-service-contracts-v3.5.0.zip",
  5359. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  5360. "shasum": ""
  5361. },
  5362. "require": {
  5363. "php": ">=8.1",
  5364. "psr/container": "^1.1|^2.0",
  5365. "symfony/deprecation-contracts": "^2.5|^3"
  5366. },
  5367. "conflict": {
  5368. "ext-psr": "<1.1|>=2"
  5369. },
  5370. "type": "library",
  5371. "extra": {
  5372. "branch-alias": {
  5373. "dev-main": "3.5-dev"
  5374. },
  5375. "thanks": {
  5376. "name": "symfony/contracts",
  5377. "url": "https://github.com/symfony/contracts"
  5378. }
  5379. },
  5380. "autoload": {
  5381. "psr-4": {
  5382. "Symfony\\Contracts\\Service\\": ""
  5383. },
  5384. "exclude-from-classmap": [
  5385. "/Test/"
  5386. ]
  5387. },
  5388. "license": [
  5389. "MIT"
  5390. ],
  5391. "authors": [
  5392. {
  5393. "name": "Nicolas Grekas",
  5394. "email": "p@tchwork.com"
  5395. },
  5396. {
  5397. "name": "Symfony Community",
  5398. "homepage": "https://symfony.com/contributors"
  5399. }
  5400. ],
  5401. "description": "Generic abstractions related to writing services",
  5402. "homepage": "https://symfony.com",
  5403. "keywords": [
  5404. "abstractions",
  5405. "contracts",
  5406. "decoupling",
  5407. "interfaces",
  5408. "interoperability",
  5409. "standards"
  5410. ],
  5411. "time": "2024-04-18T09:32:20+00:00"
  5412. },
  5413. {
  5414. "name": "symfony/string",
  5415. "version": "v7.1.5",
  5416. "dist": {
  5417. "type": "zip",
  5418. "url": "https://mirrors.tencent.com/repository/composer/symfony/string/v7.1.5/symfony-string-v7.1.5.zip",
  5419. "reference": "d66f9c343fa894ec2037cc928381df90a7ad4306",
  5420. "shasum": ""
  5421. },
  5422. "require": {
  5423. "php": ">=8.2",
  5424. "symfony/polyfill-ctype": "~1.8",
  5425. "symfony/polyfill-intl-grapheme": "~1.0",
  5426. "symfony/polyfill-intl-normalizer": "~1.0",
  5427. "symfony/polyfill-mbstring": "~1.0"
  5428. },
  5429. "conflict": {
  5430. "symfony/translation-contracts": "<2.5"
  5431. },
  5432. "require-dev": {
  5433. "symfony/emoji": "^7.1",
  5434. "symfony/error-handler": "^6.4|^7.0",
  5435. "symfony/http-client": "^6.4|^7.0",
  5436. "symfony/intl": "^6.4|^7.0",
  5437. "symfony/translation-contracts": "^2.5|^3.0",
  5438. "symfony/var-exporter": "^6.4|^7.0"
  5439. },
  5440. "type": "library",
  5441. "autoload": {
  5442. "files": [
  5443. "Resources/functions.php"
  5444. ],
  5445. "psr-4": {
  5446. "Symfony\\Component\\String\\": ""
  5447. },
  5448. "exclude-from-classmap": [
  5449. "/Tests/"
  5450. ]
  5451. },
  5452. "license": [
  5453. "MIT"
  5454. ],
  5455. "authors": [
  5456. {
  5457. "name": "Nicolas Grekas",
  5458. "email": "p@tchwork.com"
  5459. },
  5460. {
  5461. "name": "Symfony Community",
  5462. "homepage": "https://symfony.com/contributors"
  5463. }
  5464. ],
  5465. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  5466. "homepage": "https://symfony.com",
  5467. "keywords": [
  5468. "grapheme",
  5469. "i18n",
  5470. "string",
  5471. "unicode",
  5472. "utf-8",
  5473. "utf8"
  5474. ],
  5475. "time": "2024-09-20T08:28:38+00:00"
  5476. },
  5477. {
  5478. "name": "symfony/translation",
  5479. "version": "v6.4.12",
  5480. "dist": {
  5481. "type": "zip",
  5482. "url": "https://mirrors.tencent.com/repository/composer/symfony/translation/v6.4.12/symfony-translation-v6.4.12.zip",
  5483. "reference": "cf8360b8352b086be620fae8342c4d96e391a489",
  5484. "shasum": ""
  5485. },
  5486. "require": {
  5487. "php": ">=8.1",
  5488. "symfony/deprecation-contracts": "^2.5|^3",
  5489. "symfony/polyfill-mbstring": "~1.0",
  5490. "symfony/translation-contracts": "^2.5|^3.0"
  5491. },
  5492. "conflict": {
  5493. "symfony/config": "<5.4",
  5494. "symfony/console": "<5.4",
  5495. "symfony/dependency-injection": "<5.4",
  5496. "symfony/http-client-contracts": "<2.5",
  5497. "symfony/http-kernel": "<5.4",
  5498. "symfony/service-contracts": "<2.5",
  5499. "symfony/twig-bundle": "<5.4",
  5500. "symfony/yaml": "<5.4"
  5501. },
  5502. "provide": {
  5503. "symfony/translation-implementation": "2.3|3.0"
  5504. },
  5505. "require-dev": {
  5506. "nikic/php-parser": "^4.18|^5.0",
  5507. "psr/log": "^1|^2|^3",
  5508. "symfony/config": "^5.4|^6.0|^7.0",
  5509. "symfony/console": "^5.4|^6.0|^7.0",
  5510. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  5511. "symfony/finder": "^5.4|^6.0|^7.0",
  5512. "symfony/http-client-contracts": "^2.5|^3.0",
  5513. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  5514. "symfony/intl": "^5.4|^6.0|^7.0",
  5515. "symfony/polyfill-intl-icu": "^1.21",
  5516. "symfony/routing": "^5.4|^6.0|^7.0",
  5517. "symfony/service-contracts": "^2.5|^3",
  5518. "symfony/yaml": "^5.4|^6.0|^7.0"
  5519. },
  5520. "type": "library",
  5521. "autoload": {
  5522. "files": [
  5523. "Resources/functions.php"
  5524. ],
  5525. "psr-4": {
  5526. "Symfony\\Component\\Translation\\": ""
  5527. },
  5528. "exclude-from-classmap": [
  5529. "/Tests/"
  5530. ]
  5531. },
  5532. "license": [
  5533. "MIT"
  5534. ],
  5535. "authors": [
  5536. {
  5537. "name": "Fabien Potencier",
  5538. "email": "fabien@symfony.com"
  5539. },
  5540. {
  5541. "name": "Symfony Community",
  5542. "homepage": "https://symfony.com/contributors"
  5543. }
  5544. ],
  5545. "description": "Provides tools to internationalize your application",
  5546. "homepage": "https://symfony.com",
  5547. "time": "2024-09-16T06:02:54+00:00"
  5548. },
  5549. {
  5550. "name": "symfony/translation-contracts",
  5551. "version": "v3.5.0",
  5552. "dist": {
  5553. "type": "zip",
  5554. "url": "https://mirrors.tencent.com/repository/composer/symfony/translation-contracts/v3.5.0/symfony-translation-contracts-v3.5.0.zip",
  5555. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  5556. "shasum": ""
  5557. },
  5558. "require": {
  5559. "php": ">=8.1"
  5560. },
  5561. "type": "library",
  5562. "extra": {
  5563. "branch-alias": {
  5564. "dev-main": "3.5-dev"
  5565. },
  5566. "thanks": {
  5567. "name": "symfony/contracts",
  5568. "url": "https://github.com/symfony/contracts"
  5569. }
  5570. },
  5571. "autoload": {
  5572. "psr-4": {
  5573. "Symfony\\Contracts\\Translation\\": ""
  5574. },
  5575. "exclude-from-classmap": [
  5576. "/Test/"
  5577. ]
  5578. },
  5579. "license": [
  5580. "MIT"
  5581. ],
  5582. "authors": [
  5583. {
  5584. "name": "Nicolas Grekas",
  5585. "email": "p@tchwork.com"
  5586. },
  5587. {
  5588. "name": "Symfony Community",
  5589. "homepage": "https://symfony.com/contributors"
  5590. }
  5591. ],
  5592. "description": "Generic abstractions related to translation",
  5593. "homepage": "https://symfony.com",
  5594. "keywords": [
  5595. "abstractions",
  5596. "contracts",
  5597. "decoupling",
  5598. "interfaces",
  5599. "interoperability",
  5600. "standards"
  5601. ],
  5602. "time": "2024-04-18T09:32:20+00:00"
  5603. },
  5604. {
  5605. "name": "symfony/uid",
  5606. "version": "v6.4.12",
  5607. "dist": {
  5608. "type": "zip",
  5609. "url": "https://mirrors.tencent.com/repository/composer/symfony/uid/v6.4.12/symfony-uid-v6.4.12.zip",
  5610. "reference": "2f16054e0a9b194b8ca581d4a64eee3f7d4a9d4d",
  5611. "shasum": ""
  5612. },
  5613. "require": {
  5614. "php": ">=8.1",
  5615. "symfony/polyfill-uuid": "^1.15"
  5616. },
  5617. "require-dev": {
  5618. "symfony/console": "^5.4|^6.0|^7.0"
  5619. },
  5620. "type": "library",
  5621. "autoload": {
  5622. "psr-4": {
  5623. "Symfony\\Component\\Uid\\": ""
  5624. },
  5625. "exclude-from-classmap": [
  5626. "/Tests/"
  5627. ]
  5628. },
  5629. "license": [
  5630. "MIT"
  5631. ],
  5632. "authors": [
  5633. {
  5634. "name": "Grégoire Pineau",
  5635. "email": "lyrixx@lyrixx.info"
  5636. },
  5637. {
  5638. "name": "Nicolas Grekas",
  5639. "email": "p@tchwork.com"
  5640. },
  5641. {
  5642. "name": "Symfony Community",
  5643. "homepage": "https://symfony.com/contributors"
  5644. }
  5645. ],
  5646. "description": "Provides an object-oriented API to generate and represent UIDs",
  5647. "homepage": "https://symfony.com",
  5648. "keywords": [
  5649. "UID",
  5650. "ulid",
  5651. "uuid"
  5652. ],
  5653. "time": "2024-09-20T08:32:26+00:00"
  5654. },
  5655. {
  5656. "name": "symfony/var-dumper",
  5657. "version": "v6.4.11",
  5658. "dist": {
  5659. "type": "zip",
  5660. "url": "https://mirrors.tencent.com/repository/composer/symfony/var-dumper/v6.4.11/symfony-var-dumper-v6.4.11.zip",
  5661. "reference": "ee14c8254a480913268b1e3b1cba8045ed122694",
  5662. "shasum": ""
  5663. },
  5664. "require": {
  5665. "php": ">=8.1",
  5666. "symfony/deprecation-contracts": "^2.5|^3",
  5667. "symfony/polyfill-mbstring": "~1.0"
  5668. },
  5669. "conflict": {
  5670. "symfony/console": "<5.4"
  5671. },
  5672. "require-dev": {
  5673. "ext-iconv": "*",
  5674. "symfony/console": "^5.4|^6.0|^7.0",
  5675. "symfony/error-handler": "^6.3|^7.0",
  5676. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  5677. "symfony/process": "^5.4|^6.0|^7.0",
  5678. "symfony/uid": "^5.4|^6.0|^7.0",
  5679. "twig/twig": "^2.13|^3.0.4"
  5680. },
  5681. "bin": [
  5682. "Resources/bin/var-dump-server"
  5683. ],
  5684. "type": "library",
  5685. "autoload": {
  5686. "files": [
  5687. "Resources/functions/dump.php"
  5688. ],
  5689. "psr-4": {
  5690. "Symfony\\Component\\VarDumper\\": ""
  5691. },
  5692. "exclude-from-classmap": [
  5693. "/Tests/"
  5694. ]
  5695. },
  5696. "license": [
  5697. "MIT"
  5698. ],
  5699. "authors": [
  5700. {
  5701. "name": "Nicolas Grekas",
  5702. "email": "p@tchwork.com"
  5703. },
  5704. {
  5705. "name": "Symfony Community",
  5706. "homepage": "https://symfony.com/contributors"
  5707. }
  5708. ],
  5709. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  5710. "homepage": "https://symfony.com",
  5711. "keywords": [
  5712. "debug",
  5713. "dump"
  5714. ],
  5715. "time": "2024-08-30T16:03:21+00:00"
  5716. },
  5717. {
  5718. "name": "thenorthmemory/xml",
  5719. "version": "1.1.1",
  5720. "dist": {
  5721. "type": "zip",
  5722. "url": "https://mirrors.tencent.com/repository/composer/thenorthmemory/xml/1.1.1/thenorthmemory-xml-1.1.1.zip",
  5723. "reference": "6f50c63450a0b098772423f8bdc3c4ad2c4c30bb",
  5724. "shasum": ""
  5725. },
  5726. "require": {
  5727. "ext-libxml": "*",
  5728. "ext-simplexml": "*",
  5729. "php": ">=7.1.2"
  5730. },
  5731. "require-dev": {
  5732. "phpstan/phpstan": "^0.12.89 || ^1.0",
  5733. "phpunit/phpunit": "^7.5 || ^8.5.16 || ^9.3.5"
  5734. },
  5735. "type": "library",
  5736. "autoload": {
  5737. "psr-4": {
  5738. "TheNorthMemory\\Xml\\": "src/"
  5739. }
  5740. },
  5741. "license": [
  5742. "Apache-2.0"
  5743. ],
  5744. "authors": [
  5745. {
  5746. "name": "James ZHANG",
  5747. "homepage": "https://github.com/TheNorthMemory"
  5748. }
  5749. ],
  5750. "description": "A wrapper of the XML parser and builder",
  5751. "homepage": "https://github.com/TheNorthMemory/xml",
  5752. "keywords": [
  5753. "xml-builder",
  5754. "xml-parser"
  5755. ],
  5756. "time": "2023-01-15T06:01:13+00:00"
  5757. },
  5758. {
  5759. "name": "tijsverkoyen/css-to-inline-styles",
  5760. "version": "v2.2.7",
  5761. "dist": {
  5762. "type": "zip",
  5763. "url": "https://mirrors.tencent.com/repository/composer/tijsverkoyen/css-to-inline-styles/v2.2.7/tijsverkoyen-css-to-inline-styles-v2.2.7.zip",
  5764. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb",
  5765. "shasum": ""
  5766. },
  5767. "require": {
  5768. "ext-dom": "*",
  5769. "ext-libxml": "*",
  5770. "php": "^5.5 || ^7.0 || ^8.0",
  5771. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0"
  5772. },
  5773. "require-dev": {
  5774. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  5775. },
  5776. "type": "library",
  5777. "extra": {
  5778. "branch-alias": {
  5779. "dev-master": "2.2.x-dev"
  5780. }
  5781. },
  5782. "autoload": {
  5783. "psr-4": {
  5784. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  5785. }
  5786. },
  5787. "license": [
  5788. "BSD-3-Clause"
  5789. ],
  5790. "authors": [
  5791. {
  5792. "name": "Tijs Verkoyen",
  5793. "email": "css_to_inline_styles@verkoyen.eu",
  5794. "role": "Developer"
  5795. }
  5796. ],
  5797. "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.",
  5798. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  5799. "time": "2023-12-08T13:03:43+00:00"
  5800. },
  5801. {
  5802. "name": "tucker-eric/eloquentfilter",
  5803. "version": "3.4.0",
  5804. "dist": {
  5805. "type": "zip",
  5806. "url": "https://mirrors.tencent.com/repository/composer/tucker-eric/eloquentfilter/3.4.0/tucker-eric-eloquentfilter-3.4.0.zip",
  5807. "reference": "38c1dee5ce2a1fd13d47e7c5567ff4c2e517603e",
  5808. "shasum": ""
  5809. },
  5810. "require": {
  5811. "illuminate/config": "~6.0|~7.0|~8.0|~9.0|~10.0|~11.0",
  5812. "illuminate/console": "~6.0|~7.0|~8.0|~9.0|~10.0|~11.0",
  5813. "illuminate/database": "~6.0|~7.0|~8.0|~9.0|~10.0|~11.0",
  5814. "illuminate/filesystem": "~6.0|~7.0|~8.0|~9.0|~10.0|~11.0",
  5815. "illuminate/pagination": "~6.0|~7.0|~8.0|~9.0|~10.0|~11.0",
  5816. "illuminate/support": "~6.0|~7.0|~8.0|~9.0|~10.0|~11.0",
  5817. "php": ">=7.2"
  5818. },
  5819. "require-dev": {
  5820. "mockery/mockery": "^1.3",
  5821. "phpunit/phpunit": "^8"
  5822. },
  5823. "type": "library",
  5824. "extra": {
  5825. "laravel": {
  5826. "providers": [
  5827. "EloquentFilter\\ServiceProvider"
  5828. ]
  5829. }
  5830. },
  5831. "autoload": {
  5832. "psr-4": {
  5833. "EloquentFilter\\": "src/"
  5834. }
  5835. },
  5836. "license": [
  5837. "MIT"
  5838. ],
  5839. "authors": [
  5840. {
  5841. "name": "Eric Tucker",
  5842. "email": "tucker.ericm@gmail.com"
  5843. }
  5844. ],
  5845. "description": "An Eloquent way to filter Eloquent Models",
  5846. "keywords": [
  5847. "eloquent",
  5848. "filter",
  5849. "laravel",
  5850. "model",
  5851. "query",
  5852. "search"
  5853. ],
  5854. "time": "2024-05-07T20:28:58+00:00"
  5855. },
  5856. {
  5857. "name": "ua-parser/uap-php",
  5858. "version": "v3.9.14",
  5859. "dist": {
  5860. "type": "zip",
  5861. "url": "https://mirrors.tencent.com/repository/composer/ua-parser/uap-php/v3.9.14/ua-parser-uap-php-v3.9.14.zip",
  5862. "reference": "b796c5ea5df588e65aeb4e2c6cce3811dec4fed6",
  5863. "shasum": ""
  5864. },
  5865. "require": {
  5866. "composer/ca-bundle": "^1.1",
  5867. "php": "^7.2 || ^8.0"
  5868. },
  5869. "require-dev": {
  5870. "phpstan/phpstan": "^0.12.33",
  5871. "phpunit/phpunit": "^8 || ^9",
  5872. "symfony/console": "^3.4 || ^4.2 || ^4.3 || ^5.0",
  5873. "symfony/filesystem": "^3.4 || ^4.2 || ^4.3 || ^5.0",
  5874. "symfony/finder": "^3.4 || ^4.2 || ^4.3 || ^5.0",
  5875. "symfony/yaml": "^3.4 || ^4.2 || ^4.3 || ^5.0",
  5876. "vimeo/psalm": "^3.12"
  5877. },
  5878. "suggest": {
  5879. "symfony/console": "Required for CLI usage - ^3.4 || ^4.3 || ^5.0",
  5880. "symfony/filesystem": "Required for CLI usage - ^3.4 || ^4.3 || ^5.0",
  5881. "symfony/finder": "Required for CLI usage - ^3.4 || ^4.3 || ^5.0",
  5882. "symfony/yaml": "Required for CLI usage - ^3.4 || ^4.3 || ^5.0"
  5883. },
  5884. "bin": [
  5885. "bin/uaparser"
  5886. ],
  5887. "type": "library",
  5888. "autoload": {
  5889. "psr-4": {
  5890. "UAParser\\": "src"
  5891. }
  5892. },
  5893. "license": [
  5894. "MIT"
  5895. ],
  5896. "authors": [
  5897. {
  5898. "name": "Dave Olsen",
  5899. "email": "dmolsen@gmail.com"
  5900. },
  5901. {
  5902. "name": "Lars Strojny",
  5903. "email": "lars@strojny.net"
  5904. }
  5905. ],
  5906. "description": "A multi-language port of Browserscope's user agent parser.",
  5907. "time": "2020-10-02T23:36:20+00:00"
  5908. },
  5909. {
  5910. "name": "vladimir-yuldashev/laravel-queue-rabbitmq",
  5911. "version": "v14.1.0",
  5912. "dist": {
  5913. "type": "zip",
  5914. "url": "https://mirrors.tencent.com/repository/composer/vladimir-yuldashev/laravel-queue-rabbitmq/v14.1.0/vladimir-yuldashev-laravel-queue-rabbitmq-v14.1.0.zip",
  5915. "reference": "3d58891479582ebe988df7c3303efa4784dabccd",
  5916. "shasum": ""
  5917. },
  5918. "require": {
  5919. "ext-json": "*",
  5920. "illuminate/queue": "^10.0|^11.0",
  5921. "php": "^8.0",
  5922. "php-amqplib/php-amqplib": "^v3.6"
  5923. },
  5924. "require-dev": {
  5925. "laravel/framework": "^9.0|^10.0|^11.0",
  5926. "laravel/horizon": "^5.0",
  5927. "laravel/pint": "^1.2",
  5928. "mockery/mockery": "^1.0",
  5929. "orchestra/testbench": "^7.0|^8.0|^9.0",
  5930. "phpunit/phpunit": "^10.0|^11.0"
  5931. },
  5932. "suggest": {
  5933. "ext-pcntl": "Required to use all features of the queue consumer."
  5934. },
  5935. "type": "library",
  5936. "extra": {
  5937. "branch-alias": {
  5938. "dev-master": "13.0-dev"
  5939. },
  5940. "laravel": {
  5941. "providers": [
  5942. "VladimirYuldashev\\LaravelQueueRabbitMQ\\LaravelQueueRabbitMQServiceProvider"
  5943. ]
  5944. }
  5945. },
  5946. "autoload": {
  5947. "psr-4": {
  5948. "VladimirYuldashev\\LaravelQueueRabbitMQ\\": "src/"
  5949. }
  5950. },
  5951. "license": [
  5952. "MIT"
  5953. ],
  5954. "authors": [
  5955. {
  5956. "name": "Vladimir Yuldashev",
  5957. "email": "misterio92@gmail.com"
  5958. }
  5959. ],
  5960. "description": "RabbitMQ driver for Laravel Queue. Supports Laravel Horizon.",
  5961. "time": "2024-04-26T22:36:00+00:00"
  5962. },
  5963. {
  5964. "name": "vlucas/phpdotenv",
  5965. "version": "v5.6.1",
  5966. "dist": {
  5967. "type": "zip",
  5968. "url": "https://mirrors.tencent.com/repository/composer/vlucas/phpdotenv/v5.6.1/vlucas-phpdotenv-v5.6.1.zip",
  5969. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  5970. "shasum": ""
  5971. },
  5972. "require": {
  5973. "ext-pcre": "*",
  5974. "graham-campbell/result-type": "^1.1.3",
  5975. "php": "^7.2.5 || ^8.0",
  5976. "phpoption/phpoption": "^1.9.3",
  5977. "symfony/polyfill-ctype": "^1.24",
  5978. "symfony/polyfill-mbstring": "^1.24",
  5979. "symfony/polyfill-php80": "^1.24"
  5980. },
  5981. "require-dev": {
  5982. "bamarni/composer-bin-plugin": "^1.8.2",
  5983. "ext-filter": "*",
  5984. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  5985. },
  5986. "suggest": {
  5987. "ext-filter": "Required to use the boolean validator."
  5988. },
  5989. "type": "library",
  5990. "extra": {
  5991. "bamarni-bin": {
  5992. "bin-links": true,
  5993. "forward-command": false
  5994. },
  5995. "branch-alias": {
  5996. "dev-master": "5.6-dev"
  5997. }
  5998. },
  5999. "autoload": {
  6000. "psr-4": {
  6001. "Dotenv\\": "src/"
  6002. }
  6003. },
  6004. "license": [
  6005. "BSD-3-Clause"
  6006. ],
  6007. "authors": [
  6008. {
  6009. "name": "Graham Campbell",
  6010. "email": "hello@gjcampbell.co.uk",
  6011. "homepage": "https://github.com/GrahamCampbell"
  6012. },
  6013. {
  6014. "name": "Vance Lucas",
  6015. "email": "vance@vancelucas.com",
  6016. "homepage": "https://github.com/vlucas"
  6017. }
  6018. ],
  6019. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  6020. "keywords": [
  6021. "dotenv",
  6022. "env",
  6023. "environment"
  6024. ],
  6025. "time": "2024-07-20T21:52:34+00:00"
  6026. },
  6027. {
  6028. "name": "voku/portable-ascii",
  6029. "version": "2.0.1",
  6030. "dist": {
  6031. "type": "zip",
  6032. "url": "https://mirrors.tencent.com/repository/composer/voku/portable-ascii/2.0.1/voku-portable-ascii-2.0.1.zip",
  6033. "reference": "b56450eed252f6801410d810c8e1727224ae0743",
  6034. "shasum": ""
  6035. },
  6036. "require": {
  6037. "php": ">=7.0.0"
  6038. },
  6039. "require-dev": {
  6040. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  6041. },
  6042. "suggest": {
  6043. "ext-intl": "Use Intl for transliterator_transliterate() support"
  6044. },
  6045. "type": "library",
  6046. "autoload": {
  6047. "psr-4": {
  6048. "voku\\": "src/voku/"
  6049. }
  6050. },
  6051. "license": [
  6052. "MIT"
  6053. ],
  6054. "authors": [
  6055. {
  6056. "name": "Lars Moelleken",
  6057. "homepage": "http://www.moelleken.org/"
  6058. }
  6059. ],
  6060. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  6061. "homepage": "https://github.com/voku/portable-ascii",
  6062. "keywords": [
  6063. "ascii",
  6064. "clean",
  6065. "php"
  6066. ],
  6067. "time": "2022-03-08T17:03:00+00:00"
  6068. },
  6069. {
  6070. "name": "webmozart/assert",
  6071. "version": "1.11.0",
  6072. "dist": {
  6073. "type": "zip",
  6074. "url": "https://mirrors.tencent.com/repository/composer/webmozart/assert/1.11.0/webmozart-assert-1.11.0.zip",
  6075. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  6076. "shasum": ""
  6077. },
  6078. "require": {
  6079. "ext-ctype": "*",
  6080. "php": "^7.2 || ^8.0"
  6081. },
  6082. "conflict": {
  6083. "phpstan/phpstan": "<0.12.20",
  6084. "vimeo/psalm": "<4.6.1 || 4.6.2"
  6085. },
  6086. "require-dev": {
  6087. "phpunit/phpunit": "^8.5.13"
  6088. },
  6089. "type": "library",
  6090. "extra": {
  6091. "branch-alias": {
  6092. "dev-master": "1.10-dev"
  6093. }
  6094. },
  6095. "autoload": {
  6096. "psr-4": {
  6097. "Webmozart\\Assert\\": "src/"
  6098. }
  6099. },
  6100. "license": [
  6101. "MIT"
  6102. ],
  6103. "authors": [
  6104. {
  6105. "name": "Bernhard Schussek",
  6106. "email": "bschussek@gmail.com"
  6107. }
  6108. ],
  6109. "description": "Assertions to validate method input/output with nice error messages.",
  6110. "keywords": [
  6111. "assert",
  6112. "check",
  6113. "validate"
  6114. ],
  6115. "time": "2022-06-03T18:03:27+00:00"
  6116. }
  6117. ],
  6118. "packages-dev": [
  6119. {
  6120. "name": "archtechx/enums",
  6121. "version": "v1.1.0",
  6122. "dist": {
  6123. "type": "zip",
  6124. "url": "https://mirrors.tencent.com/repository/composer/archtechx/enums/v1.1.0/archtechx-enums-v1.1.0.zip",
  6125. "reference": "37326d5e26cdfcc2810f4664cdd625ea4fd528d7",
  6126. "shasum": ""
  6127. },
  6128. "require": {
  6129. "php": "^8.1"
  6130. },
  6131. "require-dev": {
  6132. "larastan/larastan": "^2.4",
  6133. "orchestra/testbench": "^8.0",
  6134. "pestphp/pest": "^2.0",
  6135. "pestphp/pest-plugin-laravel": "^2.0"
  6136. },
  6137. "type": "library",
  6138. "autoload": {
  6139. "psr-4": {
  6140. "ArchTech\\Enums\\": "src/"
  6141. }
  6142. },
  6143. "license": [
  6144. "MIT"
  6145. ],
  6146. "authors": [
  6147. {
  6148. "name": "Samuel Štancl",
  6149. "email": "samuel@archte.ch"
  6150. }
  6151. ],
  6152. "description": "Helpers for making PHP enums more lovable.",
  6153. "time": "2024-07-15T14:28:34+00:00"
  6154. },
  6155. {
  6156. "name": "composer/class-map-generator",
  6157. "version": "1.4.0",
  6158. "dist": {
  6159. "type": "zip",
  6160. "url": "https://mirrors.tencent.com/repository/composer/composer/class-map-generator/1.4.0/composer-class-map-generator-1.4.0.zip",
  6161. "reference": "98bbf6780e56e0fd2404fe4b82eb665a0f93b783",
  6162. "shasum": ""
  6163. },
  6164. "require": {
  6165. "composer/pcre": "^2.1 || ^3.1",
  6166. "php": "^7.2 || ^8.0",
  6167. "symfony/finder": "^4.4 || ^5.3 || ^6 || ^7"
  6168. },
  6169. "require-dev": {
  6170. "phpstan/phpstan": "^1.6",
  6171. "phpstan/phpstan-deprecation-rules": "^1",
  6172. "phpstan/phpstan-phpunit": "^1",
  6173. "phpstan/phpstan-strict-rules": "^1.1",
  6174. "phpunit/phpunit": "^8",
  6175. "symfony/filesystem": "^5.4 || ^6"
  6176. },
  6177. "type": "library",
  6178. "extra": {
  6179. "branch-alias": {
  6180. "dev-main": "1.x-dev"
  6181. }
  6182. },
  6183. "autoload": {
  6184. "psr-4": {
  6185. "Composer\\ClassMapGenerator\\": "src"
  6186. }
  6187. },
  6188. "license": [
  6189. "MIT"
  6190. ],
  6191. "authors": [
  6192. {
  6193. "name": "Jordi Boggiano",
  6194. "email": "j.boggiano@seld.be",
  6195. "homepage": "https://seld.be"
  6196. }
  6197. ],
  6198. "description": "Utilities to scan PHP code and generate class maps.",
  6199. "keywords": [
  6200. "classmap"
  6201. ],
  6202. "time": "2024-10-03T18:14:00+00:00"
  6203. },
  6204. {
  6205. "name": "composer/pcre",
  6206. "version": "3.3.1",
  6207. "dist": {
  6208. "type": "zip",
  6209. "url": "https://mirrors.tencent.com/repository/composer/composer/pcre/3.3.1/composer-pcre-3.3.1.zip",
  6210. "reference": "63aaeac21d7e775ff9bc9d45021e1745c97521c4",
  6211. "shasum": ""
  6212. },
  6213. "require": {
  6214. "php": "^7.4 || ^8.0"
  6215. },
  6216. "conflict": {
  6217. "phpstan/phpstan": "<1.11.10"
  6218. },
  6219. "require-dev": {
  6220. "phpstan/phpstan": "^1.11.10",
  6221. "phpstan/phpstan-strict-rules": "^1.1",
  6222. "phpunit/phpunit": "^8 || ^9"
  6223. },
  6224. "type": "library",
  6225. "extra": {
  6226. "branch-alias": {
  6227. "dev-main": "3.x-dev"
  6228. },
  6229. "phpstan": {
  6230. "includes": [
  6231. "extension.neon"
  6232. ]
  6233. }
  6234. },
  6235. "autoload": {
  6236. "psr-4": {
  6237. "Composer\\Pcre\\": "src"
  6238. }
  6239. },
  6240. "license": [
  6241. "MIT"
  6242. ],
  6243. "authors": [
  6244. {
  6245. "name": "Jordi Boggiano",
  6246. "email": "j.boggiano@seld.be",
  6247. "homepage": "http://seld.be"
  6248. }
  6249. ],
  6250. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  6251. "keywords": [
  6252. "PCRE",
  6253. "preg",
  6254. "regex",
  6255. "regular expression"
  6256. ],
  6257. "time": "2024-08-27T18:44:43+00:00"
  6258. },
  6259. {
  6260. "name": "dragon-code/contracts",
  6261. "version": "2.23.0",
  6262. "dist": {
  6263. "type": "zip",
  6264. "url": "https://mirrors.tencent.com/repository/composer/dragon-code/contracts/2.23.0/dragon-code-contracts-2.23.0.zip",
  6265. "reference": "44dbad923f152e0dc2699fbac2d33b65dd6a8f7d",
  6266. "shasum": ""
  6267. },
  6268. "require": {
  6269. "php": "^7.2.5 || ^8.0",
  6270. "psr/http-message": "^1.0.1 || ^2.0",
  6271. "symfony/http-kernel": "^4.0 || ^5.0 || ^6.0 || ^7.0",
  6272. "symfony/polyfill-php80": "^1.23"
  6273. },
  6274. "conflict": {
  6275. "andrey-helldar/contracts": "*"
  6276. },
  6277. "require-dev": {
  6278. "illuminate/database": "^10.0 || ^11.0",
  6279. "phpdocumentor/reflection-docblock": "^5.0"
  6280. },
  6281. "type": "library",
  6282. "autoload": {
  6283. "psr-4": {
  6284. "DragonCode\\Contracts\\": "src"
  6285. }
  6286. },
  6287. "license": [
  6288. "MIT"
  6289. ],
  6290. "authors": [
  6291. {
  6292. "name": "Andrey Helldar",
  6293. "email": "helldar@dragon-code.pro",
  6294. "homepage": "https://dragon-code.pro"
  6295. }
  6296. ],
  6297. "description": "A set of contracts for any project",
  6298. "keywords": [
  6299. "contracts",
  6300. "interfaces"
  6301. ],
  6302. "time": "2024-03-11T20:15:12+00:00"
  6303. },
  6304. {
  6305. "name": "dragon-code/pretty-array",
  6306. "version": "v4.1.0",
  6307. "dist": {
  6308. "type": "zip",
  6309. "url": "https://mirrors.tencent.com/repository/composer/dragon-code/pretty-array/v4.1.0/dragon-code-pretty-array-v4.1.0.zip",
  6310. "reference": "6c84e2454491b414efbd37985c322712cdf9012f",
  6311. "shasum": ""
  6312. },
  6313. "require": {
  6314. "dragon-code/contracts": "^2.20",
  6315. "dragon-code/support": "^6.11.2",
  6316. "ext-dom": "*",
  6317. "ext-mbstring": "*",
  6318. "php": "^8.0"
  6319. },
  6320. "require-dev": {
  6321. "phpunit/phpunit": "^9.6 || ^10.2"
  6322. },
  6323. "suggest": {
  6324. "symfony/thanks": "Give thanks (in the form of a GitHub) to your fellow PHP package maintainers"
  6325. },
  6326. "type": "library",
  6327. "autoload": {
  6328. "psr-4": {
  6329. "DragonCode\\PrettyArray\\": "src"
  6330. }
  6331. },
  6332. "license": [
  6333. "MIT"
  6334. ],
  6335. "authors": [
  6336. {
  6337. "name": "Andrey Helldar",
  6338. "email": "helldar@dragon-code.pro",
  6339. "homepage": "https://github.com/andrey-helldar"
  6340. }
  6341. ],
  6342. "description": "Simple conversion of an array to a pretty view",
  6343. "keywords": [
  6344. "andrey helldar",
  6345. "array",
  6346. "dragon",
  6347. "dragon code",
  6348. "pretty",
  6349. "pretty array"
  6350. ],
  6351. "time": "2023-06-02T11:37:44+00:00"
  6352. },
  6353. {
  6354. "name": "dragon-code/support",
  6355. "version": "6.15.0",
  6356. "dist": {
  6357. "type": "zip",
  6358. "url": "https://mirrors.tencent.com/repository/composer/dragon-code/support/6.15.0/dragon-code-support-6.15.0.zip",
  6359. "reference": "087d7baaa963cdbb24e901dc27e10cdc31c2529c",
  6360. "shasum": ""
  6361. },
  6362. "require": {
  6363. "dragon-code/contracts": "^2.22.0",
  6364. "ext-bcmath": "*",
  6365. "ext-ctype": "*",
  6366. "ext-dom": "*",
  6367. "ext-json": "*",
  6368. "ext-mbstring": "*",
  6369. "php": "^8.1",
  6370. "psr/http-message": "^1.0.1 || ^2.0",
  6371. "symfony/polyfill-php81": "^1.25",
  6372. "voku/portable-ascii": "^1.4.8 || ^2.0.1"
  6373. },
  6374. "conflict": {
  6375. "andrey-helldar/support": "*"
  6376. },
  6377. "require-dev": {
  6378. "illuminate/contracts": "^9.0 || ^10.0 || ^11.0",
  6379. "phpunit/phpunit": "^9.6 || ^11.0",
  6380. "symfony/var-dumper": "^6.0 || ^7.0"
  6381. },
  6382. "suggest": {
  6383. "dragon-code/laravel-support": "Various helper files for the Laravel and Lumen frameworks",
  6384. "symfony/thanks": "Give thanks (in the form of a GitHub) to your fellow PHP package maintainers"
  6385. },
  6386. "type": "library",
  6387. "extra": {
  6388. "dragon-code": {
  6389. "docs-generator": {
  6390. "preview": {
  6391. "brand": "php",
  6392. "vendor": "The Dragon Code"
  6393. }
  6394. }
  6395. }
  6396. },
  6397. "autoload": {
  6398. "psr-4": {
  6399. "DragonCode\\Support\\": "src"
  6400. }
  6401. },
  6402. "license": [
  6403. "MIT"
  6404. ],
  6405. "authors": [
  6406. {
  6407. "name": "Andrey Helldar",
  6408. "email": "helldar@dragon-code.pro",
  6409. "homepage": "https://dragon-code.pro"
  6410. }
  6411. ],
  6412. "description": "Support package is a collection of helpers and tools for any project.",
  6413. "keywords": [
  6414. "dragon",
  6415. "dragon-code",
  6416. "framework",
  6417. "helper",
  6418. "helpers",
  6419. "laravel",
  6420. "php",
  6421. "support",
  6422. "symfony",
  6423. "yii",
  6424. "yii2"
  6425. ],
  6426. "time": "2024-09-07T13:27:37+00:00"
  6427. },
  6428. {
  6429. "name": "fakerphp/faker",
  6430. "version": "v1.23.1",
  6431. "dist": {
  6432. "type": "zip",
  6433. "url": "https://mirrors.tencent.com/repository/composer/fakerphp/faker/v1.23.1/fakerphp-faker-v1.23.1.zip",
  6434. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b",
  6435. "shasum": ""
  6436. },
  6437. "require": {
  6438. "php": "^7.4 || ^8.0",
  6439. "psr/container": "^1.0 || ^2.0",
  6440. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  6441. },
  6442. "conflict": {
  6443. "fzaninotto/faker": "*"
  6444. },
  6445. "require-dev": {
  6446. "bamarni/composer-bin-plugin": "^1.4.1",
  6447. "doctrine/persistence": "^1.3 || ^2.0",
  6448. "ext-intl": "*",
  6449. "phpunit/phpunit": "^9.5.26",
  6450. "symfony/phpunit-bridge": "^5.4.16"
  6451. },
  6452. "suggest": {
  6453. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  6454. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  6455. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  6456. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  6457. "ext-mbstring": "Required for multibyte Unicode string functionality."
  6458. },
  6459. "type": "library",
  6460. "autoload": {
  6461. "psr-4": {
  6462. "Faker\\": "src/Faker/"
  6463. }
  6464. },
  6465. "license": [
  6466. "MIT"
  6467. ],
  6468. "authors": [
  6469. {
  6470. "name": "François Zaninotto"
  6471. }
  6472. ],
  6473. "description": "Faker is a PHP library that generates fake data for you.",
  6474. "keywords": [
  6475. "data",
  6476. "faker",
  6477. "fixtures"
  6478. ],
  6479. "time": "2024-01-02T13:46:09+00:00"
  6480. },
  6481. {
  6482. "name": "filp/whoops",
  6483. "version": "2.16.0",
  6484. "dist": {
  6485. "type": "zip",
  6486. "url": "https://mirrors.tencent.com/repository/composer/filp/whoops/2.16.0/filp-whoops-2.16.0.zip",
  6487. "reference": "befcdc0e5dce67252aa6322d82424be928214fa2",
  6488. "shasum": ""
  6489. },
  6490. "require": {
  6491. "php": "^7.1 || ^8.0",
  6492. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  6493. },
  6494. "require-dev": {
  6495. "mockery/mockery": "^1.0",
  6496. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.3",
  6497. "symfony/var-dumper": "^4.0 || ^5.0"
  6498. },
  6499. "suggest": {
  6500. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  6501. "whoops/soap": "Formats errors as SOAP responses"
  6502. },
  6503. "type": "library",
  6504. "extra": {
  6505. "branch-alias": {
  6506. "dev-master": "2.7-dev"
  6507. }
  6508. },
  6509. "autoload": {
  6510. "psr-4": {
  6511. "Whoops\\": "src/Whoops/"
  6512. }
  6513. },
  6514. "license": [
  6515. "MIT"
  6516. ],
  6517. "authors": [
  6518. {
  6519. "name": "Filipe Dobreira",
  6520. "homepage": "https://github.com/filp",
  6521. "role": "Developer"
  6522. }
  6523. ],
  6524. "description": "php error handling for cool kids",
  6525. "homepage": "https://filp.github.io/whoops/",
  6526. "keywords": [
  6527. "error",
  6528. "exception",
  6529. "handling",
  6530. "library",
  6531. "throwable",
  6532. "whoops"
  6533. ],
  6534. "time": "2024-09-25T12:00:00+00:00"
  6535. },
  6536. {
  6537. "name": "hamcrest/hamcrest-php",
  6538. "version": "v2.0.1",
  6539. "dist": {
  6540. "type": "zip",
  6541. "url": "https://mirrors.tencent.com/repository/composer/hamcrest/hamcrest-php/v2.0.1/hamcrest-hamcrest-php-v2.0.1.zip",
  6542. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  6543. "shasum": ""
  6544. },
  6545. "require": {
  6546. "php": "^5.3|^7.0|^8.0"
  6547. },
  6548. "replace": {
  6549. "cordoval/hamcrest-php": "*",
  6550. "davedevelopment/hamcrest-php": "*",
  6551. "kodova/hamcrest-php": "*"
  6552. },
  6553. "require-dev": {
  6554. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  6555. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  6556. },
  6557. "type": "library",
  6558. "extra": {
  6559. "branch-alias": {
  6560. "dev-master": "2.1-dev"
  6561. }
  6562. },
  6563. "autoload": {
  6564. "classmap": [
  6565. "hamcrest"
  6566. ]
  6567. },
  6568. "license": [
  6569. "BSD-3-Clause"
  6570. ],
  6571. "description": "This is the PHP port of Hamcrest Matchers",
  6572. "keywords": [
  6573. "test"
  6574. ],
  6575. "time": "2020-07-09T08:09:16+00:00"
  6576. },
  6577. {
  6578. "name": "laravel-lang/actions",
  6579. "version": "1.8.5",
  6580. "dist": {
  6581. "type": "zip",
  6582. "url": "https://mirrors.tencent.com/repository/composer/laravel-lang/actions/1.8.5/laravel-lang-actions-1.8.5.zip",
  6583. "reference": "bc59d4a92e13d35d07a45265552a830c47fbe878",
  6584. "shasum": ""
  6585. },
  6586. "require": {
  6587. "ext-json": "*",
  6588. "laravel-lang/publisher": "^14.0 || ^15.0 || ^16.0",
  6589. "php": "^8.1"
  6590. },
  6591. "require-dev": {
  6592. "laravel-lang/status-generator": "^2.3.1",
  6593. "phpunit/phpunit": "^10.0",
  6594. "symfony/var-dumper": "^6.3 || ^7.0"
  6595. },
  6596. "type": "library",
  6597. "extra": {
  6598. "laravel": {
  6599. "providers": [
  6600. "LaravelLang\\Actions\\ServiceProvider"
  6601. ]
  6602. }
  6603. },
  6604. "autoload": {
  6605. "psr-4": {
  6606. "LaravelLang\\Actions\\": "src/"
  6607. }
  6608. },
  6609. "license": [
  6610. "MIT"
  6611. ],
  6612. "authors": [
  6613. {
  6614. "name": "Andrey Helldar",
  6615. "email": "helldar@dragon-code.pro",
  6616. "homepage": "https://dragon-code.pro"
  6617. },
  6618. {
  6619. "name": "Laravel Lang Team",
  6620. "homepage": "https://laravel-lang.com"
  6621. }
  6622. ],
  6623. "description": "Translation of buttons and other action elements",
  6624. "keywords": [
  6625. "actions",
  6626. "buttons",
  6627. "lang",
  6628. "languages",
  6629. "laravel",
  6630. "translations"
  6631. ],
  6632. "time": "2024-09-07T11:55:41+00:00"
  6633. },
  6634. {
  6635. "name": "laravel-lang/attributes",
  6636. "version": "2.11.1",
  6637. "dist": {
  6638. "type": "zip",
  6639. "url": "https://mirrors.tencent.com/repository/composer/laravel-lang/attributes/2.11.1/laravel-lang-attributes-2.11.1.zip",
  6640. "reference": "b60817d0361ec2fe29f100f76cc9bd0c13a36ec9",
  6641. "shasum": ""
  6642. },
  6643. "require": {
  6644. "ext-json": "*",
  6645. "laravel-lang/publisher": "^14.0 || ^15.0 || ^16.0",
  6646. "php": "^8.1"
  6647. },
  6648. "require-dev": {
  6649. "laravel-lang/status-generator": "^1.19 || ^2.0",
  6650. "phpunit/phpunit": "^10.0",
  6651. "symfony/var-dumper": "^6.0 || ^7.0"
  6652. },
  6653. "type": "library",
  6654. "extra": {
  6655. "laravel": {
  6656. "providers": [
  6657. "LaravelLang\\Attributes\\ServiceProvider"
  6658. ]
  6659. }
  6660. },
  6661. "autoload": {
  6662. "psr-4": {
  6663. "LaravelLang\\Attributes\\": "src/"
  6664. }
  6665. },
  6666. "license": [
  6667. "MIT"
  6668. ],
  6669. "authors": [
  6670. {
  6671. "name": "Andrey Helldar",
  6672. "email": "helldar@dragon-code.pro"
  6673. },
  6674. {
  6675. "name": "Laravel-Lang Team",
  6676. "homepage": "https://github.com/Laravel-Lang"
  6677. }
  6678. ],
  6679. "description": "List of 126 languages for form field names",
  6680. "keywords": [
  6681. "attributes",
  6682. "fields",
  6683. "form",
  6684. "lang",
  6685. "languages",
  6686. "laravel",
  6687. "messages",
  6688. "translations",
  6689. "validation"
  6690. ],
  6691. "time": "2024-10-02T14:07:29+00:00"
  6692. },
  6693. {
  6694. "name": "laravel-lang/common",
  6695. "version": "6.4.0",
  6696. "dist": {
  6697. "type": "zip",
  6698. "url": "https://mirrors.tencent.com/repository/composer/laravel-lang/common/6.4.0/laravel-lang-common-6.4.0.zip",
  6699. "reference": "36c0270180f71420c1166c26f38dc25e1c8b7f64",
  6700. "shasum": ""
  6701. },
  6702. "require": {
  6703. "laravel-lang/actions": "^1.8.3",
  6704. "laravel-lang/attributes": "^2.10.7",
  6705. "laravel-lang/http-statuses": "^3.8.3",
  6706. "laravel-lang/json-fallback": "^2.1",
  6707. "laravel-lang/lang": "^13.12 || ^14.0 || ^15.5.1",
  6708. "laravel-lang/locales": "^2.8",
  6709. "laravel-lang/models": "^1.0",
  6710. "laravel-lang/publisher": "^16.4",
  6711. "laravel-lang/routes": "^1.0",
  6712. "php": "^8.1"
  6713. },
  6714. "require-dev": {
  6715. "dragon-code/support": "^6.13",
  6716. "orchestra/testbench": "^8.17 || ^9.1.2",
  6717. "phpunit/phpunit": "^10.5.20",
  6718. "symfony/var-dumper": "^6.4 || ^7.1.1"
  6719. },
  6720. "type": "library",
  6721. "license": [
  6722. "MIT"
  6723. ],
  6724. "authors": [
  6725. {
  6726. "name": "Laravel-Lang Team",
  6727. "homepage": "https://github.com/Laravel-Lang"
  6728. },
  6729. {
  6730. "name": "Andrey Helldar",
  6731. "email": "helldar@dragon-code.pro",
  6732. "homepage": "https://dragon-code.pro"
  6733. }
  6734. ],
  6735. "description": "Easily connect the necessary language packs to the application",
  6736. "keywords": [
  6737. "Laravel-lang",
  6738. "actions",
  6739. "attribute",
  6740. "attributes",
  6741. "breeze",
  6742. "buttons",
  6743. "cashier",
  6744. "fortify",
  6745. "framework",
  6746. "http",
  6747. "http-status",
  6748. "http-status-code",
  6749. "i18n",
  6750. "jetstream",
  6751. "lang",
  6752. "language",
  6753. "languages",
  6754. "laravel",
  6755. "locale",
  6756. "locales",
  6757. "localization",
  6758. "localizations",
  6759. "nova",
  6760. "publisher",
  6761. "spark",
  6762. "translation",
  6763. "translations",
  6764. "ui"
  6765. ],
  6766. "time": "2024-07-06T16:48:35+00:00"
  6767. },
  6768. {
  6769. "name": "laravel-lang/config",
  6770. "version": "1.10.0",
  6771. "dist": {
  6772. "type": "zip",
  6773. "url": "https://mirrors.tencent.com/repository/composer/laravel-lang/config/1.10.0/laravel-lang-config-1.10.0.zip",
  6774. "reference": "67c9273a2e5487441a7034c2422bb1527200bce5",
  6775. "shasum": ""
  6776. },
  6777. "require": {
  6778. "archtechx/enums": "^1.0",
  6779. "illuminate/config": "^10.0 || ^11.0",
  6780. "illuminate/support": "^10.0 || ^11.0",
  6781. "laravel-lang/locale-list": "^1.4",
  6782. "php": "^8.1"
  6783. },
  6784. "require-dev": {
  6785. "orchestra/testbench": "^8.23 || ^9.1",
  6786. "pestphp/pest": "^2.34"
  6787. },
  6788. "type": "library",
  6789. "extra": {
  6790. "laravel": {
  6791. "providers": [
  6792. "LaravelLang\\Config\\ServiceProvider"
  6793. ]
  6794. }
  6795. },
  6796. "autoload": {
  6797. "psr-4": {
  6798. "LaravelLang\\Config\\": "src/"
  6799. }
  6800. },
  6801. "license": [
  6802. "MIT"
  6803. ],
  6804. "authors": [
  6805. {
  6806. "name": "Andrey Helldar",
  6807. "email": "helldar@dragon-code.pro",
  6808. "homepage": "https://dragon-code.pro"
  6809. },
  6810. {
  6811. "name": "Laravel-Lang Team",
  6812. "homepage": "https://laravel-lang.com"
  6813. }
  6814. ],
  6815. "description": "The Laravel-Lang config package",
  6816. "keywords": [
  6817. "Laravel-lang",
  6818. "Settings",
  6819. "config",
  6820. "lang",
  6821. "languages",
  6822. "laravel",
  6823. "locale",
  6824. "locales",
  6825. "localization",
  6826. "localizations",
  6827. "translation",
  6828. "translations"
  6829. ],
  6830. "time": "2024-09-07T11:28:53+00:00"
  6831. },
  6832. {
  6833. "name": "laravel-lang/http-statuses",
  6834. "version": "3.8.5",
  6835. "dist": {
  6836. "type": "zip",
  6837. "url": "https://mirrors.tencent.com/repository/composer/laravel-lang/http-statuses/3.8.5/laravel-lang-http-statuses-3.8.5.zip",
  6838. "reference": "d5ddb3c6cfafadb3a2e9d2d5d96d8d11a9130544",
  6839. "shasum": ""
  6840. },
  6841. "require": {
  6842. "ext-json": "*",
  6843. "laravel-lang/publisher": "^14.1 || ^15.0 || ^16.0",
  6844. "php": "^8.1"
  6845. },
  6846. "require-dev": {
  6847. "laravel-lang/status-generator": "^1.19 || ^2.0",
  6848. "phpunit/phpunit": "^10.0",
  6849. "symfony/var-dumper": "^6.0 || ^7.0"
  6850. },
  6851. "type": "library",
  6852. "extra": {
  6853. "laravel": {
  6854. "providers": [
  6855. "LaravelLang\\HttpStatuses\\ServiceProvider"
  6856. ]
  6857. }
  6858. },
  6859. "autoload": {
  6860. "psr-4": {
  6861. "LaravelLang\\HttpStatuses\\": "src"
  6862. }
  6863. },
  6864. "license": [
  6865. "MIT"
  6866. ],
  6867. "authors": [
  6868. {
  6869. "name": "Andrey Helldar",
  6870. "email": "helldar@dragon-code.pro"
  6871. },
  6872. {
  6873. "name": "Laravel-Lang Team",
  6874. "homepage": "https://github.com/Laravel-Lang"
  6875. }
  6876. ],
  6877. "description": "List of 126 languages for HTTP statuses",
  6878. "keywords": [
  6879. "http",
  6880. "lang",
  6881. "languages",
  6882. "laravel",
  6883. "messages",
  6884. "status",
  6885. "translations"
  6886. ],
  6887. "time": "2024-09-30T19:56:37+00:00"
  6888. },
  6889. {
  6890. "name": "laravel-lang/json-fallback",
  6891. "version": "2.1.0",
  6892. "dist": {
  6893. "type": "zip",
  6894. "url": "https://mirrors.tencent.com/repository/composer/laravel-lang/json-fallback/2.1.0/laravel-lang-json-fallback-2.1.0.zip",
  6895. "reference": "597865ffcef81b7e92227ea73ff3a9a3372fb91a",
  6896. "shasum": ""
  6897. },
  6898. "require": {
  6899. "illuminate/support": "^10.0 || ^11.0",
  6900. "illuminate/translation": "^10.0 || ^11.0",
  6901. "php": "^8.1"
  6902. },
  6903. "require-dev": {
  6904. "orchestra/testbench": "^8.0 || ^9.0",
  6905. "phpunit/phpunit": "^10.0"
  6906. },
  6907. "type": "library",
  6908. "autoload": {
  6909. "psr-4": {
  6910. "LaravelLang\\JsonFallback\\": "src"
  6911. }
  6912. },
  6913. "license": [
  6914. "MIT"
  6915. ],
  6916. "authors": [
  6917. {
  6918. "name": "Andrey Helldar",
  6919. "email": "helldar@dragon-code.pro",
  6920. "homepage": "https://github.com/andrey-helldar"
  6921. },
  6922. {
  6923. "name": "Felipe Dsdev",
  6924. "homepage": "https://github.com/felipe-dsdev"
  6925. }
  6926. ],
  6927. "description": "Adds support for fallback JSON string translation",
  6928. "time": "2024-03-13T09:18:03+00:00"
  6929. },
  6930. {
  6931. "name": "laravel-lang/lang",
  6932. "version": "14.8.0",
  6933. "dist": {
  6934. "type": "zip",
  6935. "url": "https://mirrors.tencent.com/repository/composer/laravel-lang/lang/14.8.0/laravel-lang-lang-14.8.0.zip",
  6936. "reference": "7318bd6dc8299d62fcee1109489bfb0ec82d1e25",
  6937. "shasum": ""
  6938. },
  6939. "require": {
  6940. "ext-json": "*",
  6941. "laravel-lang/publisher": "^14.0 || ^15.0 || ^16.0",
  6942. "php": "^8.1"
  6943. },
  6944. "conflict": {
  6945. "laravel/framework": "<10 || >=11.0.7"
  6946. },
  6947. "require-dev": {
  6948. "laravel-lang/status-generator": "^1.19 || ^2.0",
  6949. "phpunit/phpunit": "^10.0",
  6950. "symfony/var-dumper": "^6.0 || ^7.0"
  6951. },
  6952. "type": "library",
  6953. "extra": {
  6954. "laravel": {
  6955. "providers": [
  6956. "LaravelLang\\Lang\\ServiceProvider"
  6957. ]
  6958. }
  6959. },
  6960. "autoload": {
  6961. "psr-4": {
  6962. "LaravelLang\\Lang\\": "src/"
  6963. }
  6964. },
  6965. "license": [
  6966. "MIT"
  6967. ],
  6968. "authors": [
  6969. {
  6970. "name": "Laravel-Lang Team",
  6971. "homepage": "https://github.com/Laravel-Lang"
  6972. }
  6973. ],
  6974. "description": "List of 126 languages for Laravel Framework, Laravel Jetstream, Laravel Fortify, Laravel Breeze, Laravel Cashier, Laravel Nova, Laravel Spark and Laravel UI",
  6975. "keywords": [
  6976. "lang",
  6977. "languages",
  6978. "laravel",
  6979. "lpm"
  6980. ],
  6981. "time": "2024-05-11T11:06:53+00:00"
  6982. },
  6983. {
  6984. "name": "laravel-lang/locale-list",
  6985. "version": "1.4.0",
  6986. "dist": {
  6987. "type": "zip",
  6988. "url": "https://mirrors.tencent.com/repository/composer/laravel-lang/locale-list/1.4.0/laravel-lang-locale-list-1.4.0.zip",
  6989. "reference": "48b8e4304f8b1ad34456270d35d44ca0c3e6ea0d",
  6990. "shasum": ""
  6991. },
  6992. "require": {
  6993. "archtechx/enums": "^0.3.2 || ^1.0",
  6994. "php": "^8.1"
  6995. },
  6996. "type": "library",
  6997. "autoload": {
  6998. "psr-4": {
  6999. "LaravelLang\\LocaleList\\": "src/"
  7000. }
  7001. },
  7002. "license": [
  7003. "MIT"
  7004. ],
  7005. "authors": [
  7006. {
  7007. "name": "Andrey Helldar",
  7008. "email": "helldar@dragon-code.pro",
  7009. "homepage": "https://dragon-code.pro"
  7010. },
  7011. {
  7012. "name": "Laravel-Lang Team",
  7013. "homepage": "https://laravel-lang.com"
  7014. }
  7015. ],
  7016. "description": "List of localizations available in Laravel Lang projects",
  7017. "keywords": [
  7018. "Laravel-lang",
  7019. "lang",
  7020. "languages",
  7021. "laravel",
  7022. "locale",
  7023. "locales",
  7024. "localization",
  7025. "translation",
  7026. "translations"
  7027. ],
  7028. "time": "2024-06-01T00:24:42+00:00"
  7029. },
  7030. {
  7031. "name": "laravel-lang/locales",
  7032. "version": "2.9.2",
  7033. "dist": {
  7034. "type": "zip",
  7035. "url": "https://mirrors.tencent.com/repository/composer/laravel-lang/locales/2.9.2/laravel-lang-locales-2.9.2.zip",
  7036. "reference": "e7914ccfb91432ebebacf46697b573a330d702c7",
  7037. "shasum": ""
  7038. },
  7039. "require": {
  7040. "archtechx/enums": "^0.3.2 || ^1.0",
  7041. "dragon-code/support": "^6.11.3",
  7042. "ext-json": "*",
  7043. "illuminate/collections": "^10.0 || ^11.0",
  7044. "laravel-lang/config": "^1.0.2",
  7045. "laravel-lang/locale-list": "^1.2",
  7046. "laravel-lang/native-country-names": "^1.3",
  7047. "laravel-lang/native-currency-names": "^1.3",
  7048. "laravel-lang/native-locale-names": "^2.2",
  7049. "php": "^8.1"
  7050. },
  7051. "require-dev": {
  7052. "orchestra/testbench": "^8.0 || ^9.0",
  7053. "pestphp/pest": "^2.24.1",
  7054. "symfony/var-dumper": "^6.0 || ^7.0"
  7055. },
  7056. "type": "library",
  7057. "extra": {
  7058. "laravel": {
  7059. "providers": [
  7060. "LaravelLang\\Locales\\ServiceProvider"
  7061. ]
  7062. }
  7063. },
  7064. "autoload": {
  7065. "psr-4": {
  7066. "LaravelLang\\Locales\\": "src/"
  7067. }
  7068. },
  7069. "license": [
  7070. "MIT"
  7071. ],
  7072. "authors": [
  7073. {
  7074. "name": "Andrey Helldar",
  7075. "email": "helldar@dragon-code.pro"
  7076. },
  7077. {
  7078. "name": "Laravel-Lang Team",
  7079. "homepage": "https://laravel-lang.com"
  7080. }
  7081. ],
  7082. "description": "Basic functionality for working with localizations",
  7083. "keywords": [
  7084. "laravel",
  7085. "locale",
  7086. "locales",
  7087. "localization",
  7088. "translation",
  7089. "translations"
  7090. ],
  7091. "time": "2024-06-24T09:56:41+00:00"
  7092. },
  7093. {
  7094. "name": "laravel-lang/models",
  7095. "version": "1.2.0",
  7096. "dist": {
  7097. "type": "zip",
  7098. "url": "https://mirrors.tencent.com/repository/composer/laravel-lang/models/1.2.0/laravel-lang-models-1.2.0.zip",
  7099. "reference": "7dd4578c45fe88e56a723bcb5ad045232c0a86b7",
  7100. "shasum": ""
  7101. },
  7102. "require": {
  7103. "composer/class-map-generator": "^1.3",
  7104. "dragon-code/support": "^6.13",
  7105. "illuminate/database": "^10.0 || ^11.0",
  7106. "illuminate/support": "^10.0 || ^11.0",
  7107. "laravel-lang/config": "^1.9",
  7108. "laravel-lang/locales": "^2.9.2",
  7109. "laravel/prompts": "^0.1.24",
  7110. "php": "^8.1"
  7111. },
  7112. "require-dev": {
  7113. "orchestra/testbench": "^8.0 || ^9.0",
  7114. "pestphp/pest": "^2.34",
  7115. "pestphp/pest-plugin-laravel": "^2.4",
  7116. "symfony/var-dumper": "^6.0 || ^7.0"
  7117. },
  7118. "type": "library",
  7119. "extra": {
  7120. "laravel": {
  7121. "providers": [
  7122. "LaravelLang\\Models\\ServiceProvider"
  7123. ]
  7124. }
  7125. },
  7126. "autoload": {
  7127. "psr-4": {
  7128. "LaravelLang\\Models\\": "src/"
  7129. }
  7130. },
  7131. "license": [
  7132. "MIT"
  7133. ],
  7134. "authors": [
  7135. {
  7136. "name": "Andrey Helldar",
  7137. "email": "helldar@dragon-code.pro",
  7138. "homepage": "https://dragon-code.pro",
  7139. "role": "Maintainer"
  7140. },
  7141. {
  7142. "name": "Andrey Sokolov",
  7143. "email": "walfireru@gmail.com",
  7144. "homepage": "https://github.com/Quiss",
  7145. "role": "Usability consultant"
  7146. },
  7147. {
  7148. "name": "Laravel-Lang Team",
  7149. "homepage": "https://github.com/Laravel-Lang"
  7150. }
  7151. ],
  7152. "description": "Easy and fast way to localize models",
  7153. "keywords": [
  7154. "database",
  7155. "l18n",
  7156. "languages",
  7157. "laravel",
  7158. "locales",
  7159. "localization",
  7160. "models",
  7161. "translate",
  7162. "translations"
  7163. ],
  7164. "time": "2024-09-27T12:25:25+00:00"
  7165. },
  7166. {
  7167. "name": "laravel-lang/native-country-names",
  7168. "version": "1.4.0",
  7169. "dist": {
  7170. "type": "zip",
  7171. "url": "https://mirrors.tencent.com/repository/composer/laravel-lang/native-country-names/1.4.0/laravel-lang-native-country-names-1.4.0.zip",
  7172. "reference": "cddca6627c8732770a2e2c11c921753b6d0adb66",
  7173. "shasum": ""
  7174. },
  7175. "require": {
  7176. "dragon-code/support": "^6.11",
  7177. "ext-json": "*",
  7178. "illuminate/collections": "^10.0 || ^11.0",
  7179. "php": "^8.1"
  7180. },
  7181. "require-dev": {
  7182. "illuminate/support": "^10.0 || ^11.0",
  7183. "laravel-lang/locale-list": "^1.2",
  7184. "pestphp/pest": "^2.24.3",
  7185. "punic/punic": "^3.8",
  7186. "symfony/console": "^6.3 || ^7.0",
  7187. "symfony/process": "^6.3 || ^7.0",
  7188. "symfony/var-dumper": "^6.3 || ^7.0",
  7189. "vlucas/phpdotenv": "^5.6"
  7190. },
  7191. "type": "library",
  7192. "autoload": {
  7193. "psr-4": {
  7194. "LaravelLang\\NativeCountryNames\\": "src/"
  7195. }
  7196. },
  7197. "license": [
  7198. "MIT"
  7199. ],
  7200. "authors": [
  7201. {
  7202. "name": "Andrey Helldar",
  7203. "email": "helldar@dragon-code.pro"
  7204. },
  7205. {
  7206. "name": "Laravel-Lang Team",
  7207. "homepage": "https://laravel-lang.com"
  7208. }
  7209. ],
  7210. "description": "The project contains native translations of country names",
  7211. "keywords": [
  7212. "Laravel-lang",
  7213. "countries",
  7214. "country",
  7215. "lang",
  7216. "languages",
  7217. "laravel",
  7218. "locale",
  7219. "locales",
  7220. "localization",
  7221. "territories",
  7222. "territory",
  7223. "translation",
  7224. "translations"
  7225. ],
  7226. "time": "2024-03-13T09:34:55+00:00"
  7227. },
  7228. {
  7229. "name": "laravel-lang/native-currency-names",
  7230. "version": "1.4.0",
  7231. "dist": {
  7232. "type": "zip",
  7233. "url": "https://mirrors.tencent.com/repository/composer/laravel-lang/native-currency-names/1.4.0/laravel-lang-native-currency-names-1.4.0.zip",
  7234. "reference": "2e0fbe039421ac753b4fd5256bd239147a0a88fe",
  7235. "shasum": ""
  7236. },
  7237. "require": {
  7238. "dragon-code/support": "^6.11",
  7239. "ext-json": "*",
  7240. "illuminate/collections": "^10.0 || ^11.0",
  7241. "php": "^8.1"
  7242. },
  7243. "require-dev": {
  7244. "illuminate/support": "^10.0 || ^11.0",
  7245. "laravel-lang/locale-list": "^1.2",
  7246. "pestphp/pest": "^2.24.3",
  7247. "punic/punic": "^3.8",
  7248. "symfony/console": "^6.3 || ^7.0",
  7249. "symfony/process": "^6.3 || ^7.0",
  7250. "symfony/var-dumper": "^6.3 || ^7.0",
  7251. "vlucas/phpdotenv": "^5.6"
  7252. },
  7253. "type": "library",
  7254. "autoload": {
  7255. "psr-4": {
  7256. "LaravelLang\\NativeCurrencyNames\\": "src/"
  7257. }
  7258. },
  7259. "license": [
  7260. "MIT"
  7261. ],
  7262. "authors": [
  7263. {
  7264. "name": "Andrey Helldar",
  7265. "email": "helldar@dragon-code.pro"
  7266. },
  7267. {
  7268. "name": "Laravel-Lang Team",
  7269. "homepage": "https://laravel-lang.com"
  7270. }
  7271. ],
  7272. "description": "The project contains native translations of currency names",
  7273. "keywords": [
  7274. "Laravel-lang",
  7275. "currency",
  7276. "lang",
  7277. "languages",
  7278. "laravel",
  7279. "locale",
  7280. "locales",
  7281. "localization",
  7282. "translation",
  7283. "translations"
  7284. ],
  7285. "time": "2024-03-13T09:40:02+00:00"
  7286. },
  7287. {
  7288. "name": "laravel-lang/native-locale-names",
  7289. "version": "2.3.0",
  7290. "dist": {
  7291. "type": "zip",
  7292. "url": "https://mirrors.tencent.com/repository/composer/laravel-lang/native-locale-names/2.3.0/laravel-lang-native-locale-names-2.3.0.zip",
  7293. "reference": "39ef3330938b74277456049bf386453109e4d05c",
  7294. "shasum": ""
  7295. },
  7296. "require": {
  7297. "dragon-code/support": "^6.11",
  7298. "ext-json": "*",
  7299. "php": "^8.1"
  7300. },
  7301. "require-dev": {
  7302. "illuminate/support": "^10.31 || ^11.0",
  7303. "laravel-lang/locale-list": "^1.2",
  7304. "pestphp/pest": "^2.24.3",
  7305. "punic/punic": "^3.8",
  7306. "symfony/console": "^6.3 || ^7.0",
  7307. "symfony/process": "^6.3 || ^7.0",
  7308. "symfony/var-dumper": "^6.3 || ^7.0"
  7309. },
  7310. "type": "library",
  7311. "autoload": {
  7312. "psr-4": {
  7313. "LaravelLang\\NativeLocaleNames\\": "src/"
  7314. }
  7315. },
  7316. "license": [
  7317. "MIT"
  7318. ],
  7319. "authors": [
  7320. {
  7321. "name": "Andrey Helldar",
  7322. "email": "helldar@dragon-code.pro"
  7323. },
  7324. {
  7325. "name": "Laravel-Lang Team",
  7326. "homepage": "https://laravel-lang.com"
  7327. }
  7328. ],
  7329. "description": "The project contains native translations of locale names",
  7330. "keywords": [
  7331. "Laravel-lang",
  7332. "lang",
  7333. "languages",
  7334. "laravel",
  7335. "locale",
  7336. "locales",
  7337. "localization",
  7338. "translation",
  7339. "translations"
  7340. ],
  7341. "time": "2024-03-13T09:28:19+00:00"
  7342. },
  7343. {
  7344. "name": "laravel-lang/publisher",
  7345. "version": "16.4.0",
  7346. "dist": {
  7347. "type": "zip",
  7348. "url": "https://mirrors.tencent.com/repository/composer/laravel-lang/publisher/16.4.0/laravel-lang-publisher-16.4.0.zip",
  7349. "reference": "7812e7a07e6f2fdb7d258f3ab1d481d1cbf7f32c",
  7350. "shasum": ""
  7351. },
  7352. "require": {
  7353. "composer/semver": "^3.4",
  7354. "dragon-code/pretty-array": "^4.1",
  7355. "dragon-code/support": "^6.11.3",
  7356. "ext-json": "*",
  7357. "illuminate/collections": "^10.0 || ^11.0",
  7358. "illuminate/console": "^10.0 || ^11.0",
  7359. "illuminate/support": "^10.0 || ^11.0",
  7360. "laravel-lang/config": "^1.0",
  7361. "laravel-lang/locales": "^2.3",
  7362. "league/commonmark": "^2.4.1",
  7363. "league/config": "^1.2",
  7364. "php": "^8.1"
  7365. },
  7366. "conflict": {
  7367. "laravel-lang/attributes": "<2.0",
  7368. "laravel-lang/http-statuses": "<3.0",
  7369. "laravel-lang/lang": "<11.0"
  7370. },
  7371. "require-dev": {
  7372. "laravel-lang/json-fallback": "^2.0",
  7373. "orchestra/testbench": "^8.14 || ^9.0",
  7374. "phpunit/phpunit": "^10.4.2",
  7375. "symfony/var-dumper": "^6.3.6 || ^7.0"
  7376. },
  7377. "type": "library",
  7378. "extra": {
  7379. "laravel": {
  7380. "providers": [
  7381. "LaravelLang\\Publisher\\ServiceProvider"
  7382. ]
  7383. }
  7384. },
  7385. "autoload": {
  7386. "psr-4": {
  7387. "LaravelLang\\Publisher\\": "src/"
  7388. }
  7389. },
  7390. "license": [
  7391. "MIT"
  7392. ],
  7393. "authors": [
  7394. {
  7395. "name": "Andrey Helldar",
  7396. "email": "helldar@dragon-code.pro"
  7397. },
  7398. {
  7399. "name": "Laravel-Lang Team",
  7400. "homepage": "https://laravel-lang.com"
  7401. }
  7402. ],
  7403. "description": "Publisher lang files for the Laravel and Lumen Frameworks, Jetstream, Fortify, Cashier, Spark and Nova from Laravel-Lang/lang",
  7404. "keywords": [
  7405. "Laravel-lang",
  7406. "breeze",
  7407. "cashier",
  7408. "fortify",
  7409. "framework",
  7410. "i18n",
  7411. "jetstream",
  7412. "lang",
  7413. "languages",
  7414. "laravel",
  7415. "locale",
  7416. "locales",
  7417. "localization",
  7418. "localizations",
  7419. "lpm",
  7420. "lumen",
  7421. "nova",
  7422. "publisher",
  7423. "spark",
  7424. "trans",
  7425. "translation",
  7426. "translations",
  7427. "validations"
  7428. ],
  7429. "time": "2024-06-02T00:22:33+00:00"
  7430. },
  7431. {
  7432. "name": "laravel-lang/routes",
  7433. "version": "1.5.0",
  7434. "dist": {
  7435. "type": "zip",
  7436. "url": "https://mirrors.tencent.com/repository/composer/laravel-lang/routes/1.5.0/laravel-lang-routes-1.5.0.zip",
  7437. "reference": "addc4438fac481389e66e349ac3b93670aa4301b",
  7438. "shasum": ""
  7439. },
  7440. "require": {
  7441. "dragon-code/support": "^6.13",
  7442. "illuminate/config": "^10.0 || ^11.0",
  7443. "illuminate/http": "^10.0 || ^11.0",
  7444. "illuminate/routing": "^10.0 || ^11.0",
  7445. "illuminate/support": "^10.0 || ^11.0",
  7446. "laravel-lang/config": "^1.6",
  7447. "laravel-lang/locales": "^2.8",
  7448. "php": "^8.1"
  7449. },
  7450. "require-dev": {
  7451. "orchestra/testbench": "^8.23 || ^9.1",
  7452. "pestphp/pest": "^2.34",
  7453. "pestphp/pest-plugin-laravel": "^2.4",
  7454. "symfony/var-dumper": "^6.0 || ^7.0"
  7455. },
  7456. "type": "library",
  7457. "extra": {
  7458. "laravel": {
  7459. "providers": [
  7460. "LaravelLang\\Routes\\ServiceProvider"
  7461. ]
  7462. }
  7463. },
  7464. "autoload": {
  7465. "files": [
  7466. "helpers/functions.php"
  7467. ],
  7468. "psr-4": {
  7469. "LaravelLang\\Routes\\": "src/"
  7470. }
  7471. },
  7472. "license": [
  7473. "MIT"
  7474. ],
  7475. "authors": [
  7476. {
  7477. "name": "Andrey Helldar",
  7478. "email": "helldar@dragon-code.pro",
  7479. "homepage": "https://dragon-code.pro"
  7480. },
  7481. {
  7482. "name": "Laravel-Lang Team",
  7483. "homepage": "https://github.com/Laravel-Lang"
  7484. }
  7485. ],
  7486. "description": "Easy and fast way to localize routes",
  7487. "keywords": [
  7488. "l18n",
  7489. "languages",
  7490. "laravel",
  7491. "localization",
  7492. "routes",
  7493. "translate",
  7494. "translations"
  7495. ],
  7496. "time": "2024-07-10T10:28:26+00:00"
  7497. },
  7498. {
  7499. "name": "laravel/pint",
  7500. "version": "v1.18.1",
  7501. "dist": {
  7502. "type": "zip",
  7503. "url": "https://mirrors.tencent.com/repository/composer/laravel/pint/v1.18.1/laravel-pint-v1.18.1.zip",
  7504. "reference": "35c00c05ec43e6b46d295efc0f4386ceb30d50d9",
  7505. "shasum": ""
  7506. },
  7507. "require": {
  7508. "ext-json": "*",
  7509. "ext-mbstring": "*",
  7510. "ext-tokenizer": "*",
  7511. "ext-xml": "*",
  7512. "php": "^8.1.0"
  7513. },
  7514. "require-dev": {
  7515. "friendsofphp/php-cs-fixer": "^3.64.0",
  7516. "illuminate/view": "^10.48.20",
  7517. "larastan/larastan": "^2.9.8",
  7518. "laravel-zero/framework": "^10.4.0",
  7519. "mockery/mockery": "^1.6.12",
  7520. "nunomaduro/termwind": "^1.15.1",
  7521. "pestphp/pest": "^2.35.1"
  7522. },
  7523. "bin": [
  7524. "builds/pint"
  7525. ],
  7526. "type": "project",
  7527. "autoload": {
  7528. "psr-4": {
  7529. "App\\": "app/",
  7530. "Database\\Seeders\\": "database/seeders/",
  7531. "Database\\Factories\\": "database/factories/"
  7532. }
  7533. },
  7534. "license": [
  7535. "MIT"
  7536. ],
  7537. "authors": [
  7538. {
  7539. "name": "Nuno Maduro",
  7540. "email": "enunomaduro@gmail.com"
  7541. }
  7542. ],
  7543. "description": "An opinionated code formatter for PHP.",
  7544. "homepage": "https://laravel.com",
  7545. "keywords": [
  7546. "format",
  7547. "formatter",
  7548. "lint",
  7549. "linter",
  7550. "php"
  7551. ],
  7552. "time": "2024-09-24T17:22:50+00:00"
  7553. },
  7554. {
  7555. "name": "laravel/sail",
  7556. "version": "v1.36.0",
  7557. "dist": {
  7558. "type": "zip",
  7559. "url": "https://mirrors.tencent.com/repository/composer/laravel/sail/v1.36.0/laravel-sail-v1.36.0.zip",
  7560. "reference": "f184d3d687155d06bc8cb9ff6dc48596a138460c",
  7561. "shasum": ""
  7562. },
  7563. "require": {
  7564. "illuminate/console": "^9.52.16|^10.0|^11.0",
  7565. "illuminate/contracts": "^9.52.16|^10.0|^11.0",
  7566. "illuminate/support": "^9.52.16|^10.0|^11.0",
  7567. "php": "^8.0",
  7568. "symfony/console": "^6.0|^7.0",
  7569. "symfony/yaml": "^6.0|^7.0"
  7570. },
  7571. "require-dev": {
  7572. "orchestra/testbench": "^7.0|^8.0|^9.0",
  7573. "phpstan/phpstan": "^1.10"
  7574. },
  7575. "bin": [
  7576. "bin/sail"
  7577. ],
  7578. "type": "library",
  7579. "extra": {
  7580. "laravel": {
  7581. "providers": [
  7582. "Laravel\\Sail\\SailServiceProvider"
  7583. ]
  7584. }
  7585. },
  7586. "autoload": {
  7587. "psr-4": {
  7588. "Laravel\\Sail\\": "src/"
  7589. }
  7590. },
  7591. "license": [
  7592. "MIT"
  7593. ],
  7594. "authors": [
  7595. {
  7596. "name": "Taylor Otwell",
  7597. "email": "taylor@laravel.com"
  7598. }
  7599. ],
  7600. "description": "Docker files for running a basic Laravel application.",
  7601. "keywords": [
  7602. "docker",
  7603. "laravel"
  7604. ],
  7605. "time": "2024-10-10T13:26:02+00:00"
  7606. },
  7607. {
  7608. "name": "mockery/mockery",
  7609. "version": "1.6.12",
  7610. "dist": {
  7611. "type": "zip",
  7612. "url": "https://mirrors.tencent.com/repository/composer/mockery/mockery/1.6.12/mockery-mockery-1.6.12.zip",
  7613. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  7614. "shasum": ""
  7615. },
  7616. "require": {
  7617. "hamcrest/hamcrest-php": "^2.0.1",
  7618. "lib-pcre": ">=7.0",
  7619. "php": ">=7.3"
  7620. },
  7621. "conflict": {
  7622. "phpunit/phpunit": "<8.0"
  7623. },
  7624. "require-dev": {
  7625. "phpunit/phpunit": "^8.5 || ^9.6.17",
  7626. "symplify/easy-coding-standard": "^12.1.14"
  7627. },
  7628. "type": "library",
  7629. "autoload": {
  7630. "files": [
  7631. "library/helpers.php",
  7632. "library/Mockery.php"
  7633. ],
  7634. "psr-4": {
  7635. "Mockery\\": "library/Mockery"
  7636. }
  7637. },
  7638. "license": [
  7639. "BSD-3-Clause"
  7640. ],
  7641. "authors": [
  7642. {
  7643. "name": "Pádraic Brady",
  7644. "email": "padraic.brady@gmail.com",
  7645. "homepage": "https://github.com/padraic",
  7646. "role": "Author"
  7647. },
  7648. {
  7649. "name": "Dave Marshall",
  7650. "email": "dave.marshall@atstsolutions.co.uk",
  7651. "homepage": "https://davedevelopment.co.uk",
  7652. "role": "Developer"
  7653. },
  7654. {
  7655. "name": "Nathanael Esayeas",
  7656. "email": "nathanael.esayeas@protonmail.com",
  7657. "homepage": "https://github.com/ghostwriter",
  7658. "role": "Lead Developer"
  7659. }
  7660. ],
  7661. "description": "Mockery is a simple yet flexible PHP mock object framework",
  7662. "homepage": "https://github.com/mockery/mockery",
  7663. "keywords": [
  7664. "BDD",
  7665. "TDD",
  7666. "library",
  7667. "mock",
  7668. "mock objects",
  7669. "mockery",
  7670. "stub",
  7671. "test",
  7672. "test double",
  7673. "testing"
  7674. ],
  7675. "time": "2024-05-16T03:13:13+00:00"
  7676. },
  7677. {
  7678. "name": "myclabs/deep-copy",
  7679. "version": "1.12.0",
  7680. "dist": {
  7681. "type": "zip",
  7682. "url": "https://mirrors.tencent.com/repository/composer/myclabs/deep-copy/1.12.0/myclabs-deep-copy-1.12.0.zip",
  7683. "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c",
  7684. "shasum": ""
  7685. },
  7686. "require": {
  7687. "php": "^7.1 || ^8.0"
  7688. },
  7689. "conflict": {
  7690. "doctrine/collections": "<1.6.8",
  7691. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  7692. },
  7693. "require-dev": {
  7694. "doctrine/collections": "^1.6.8",
  7695. "doctrine/common": "^2.13.3 || ^3.2.2",
  7696. "phpspec/prophecy": "^1.10",
  7697. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  7698. },
  7699. "type": "library",
  7700. "autoload": {
  7701. "files": [
  7702. "src/DeepCopy/deep_copy.php"
  7703. ],
  7704. "psr-4": {
  7705. "DeepCopy\\": "src/DeepCopy/"
  7706. }
  7707. },
  7708. "license": [
  7709. "MIT"
  7710. ],
  7711. "description": "Create deep copies (clones) of your objects",
  7712. "keywords": [
  7713. "clone",
  7714. "copy",
  7715. "duplicate",
  7716. "object",
  7717. "object graph"
  7718. ],
  7719. "time": "2024-06-12T14:39:25+00:00"
  7720. },
  7721. {
  7722. "name": "nunomaduro/collision",
  7723. "version": "v7.10.0",
  7724. "dist": {
  7725. "type": "zip",
  7726. "url": "https://mirrors.tencent.com/repository/composer/nunomaduro/collision/v7.10.0/nunomaduro-collision-v7.10.0.zip",
  7727. "reference": "49ec67fa7b002712da8526678abd651c09f375b2",
  7728. "shasum": ""
  7729. },
  7730. "require": {
  7731. "filp/whoops": "^2.15.3",
  7732. "nunomaduro/termwind": "^1.15.1",
  7733. "php": "^8.1.0",
  7734. "symfony/console": "^6.3.4"
  7735. },
  7736. "conflict": {
  7737. "laravel/framework": ">=11.0.0"
  7738. },
  7739. "require-dev": {
  7740. "brianium/paratest": "^7.3.0",
  7741. "laravel/framework": "^10.28.0",
  7742. "laravel/pint": "^1.13.3",
  7743. "laravel/sail": "^1.25.0",
  7744. "laravel/sanctum": "^3.3.1",
  7745. "laravel/tinker": "^2.8.2",
  7746. "nunomaduro/larastan": "^2.6.4",
  7747. "orchestra/testbench-core": "^8.13.0",
  7748. "pestphp/pest": "^2.23.2",
  7749. "phpunit/phpunit": "^10.4.1",
  7750. "sebastian/environment": "^6.0.1",
  7751. "spatie/laravel-ignition": "^2.3.1"
  7752. },
  7753. "type": "library",
  7754. "extra": {
  7755. "laravel": {
  7756. "providers": [
  7757. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  7758. ]
  7759. }
  7760. },
  7761. "autoload": {
  7762. "files": [
  7763. "./src/Adapters/Phpunit/Autoload.php"
  7764. ],
  7765. "psr-4": {
  7766. "NunoMaduro\\Collision\\": "src/"
  7767. }
  7768. },
  7769. "license": [
  7770. "MIT"
  7771. ],
  7772. "authors": [
  7773. {
  7774. "name": "Nuno Maduro",
  7775. "email": "enunomaduro@gmail.com"
  7776. }
  7777. ],
  7778. "description": "Cli error handling for console/command-line PHP applications.",
  7779. "keywords": [
  7780. "artisan",
  7781. "cli",
  7782. "command-line",
  7783. "console",
  7784. "error",
  7785. "handling",
  7786. "laravel",
  7787. "laravel-zero",
  7788. "php",
  7789. "symfony"
  7790. ],
  7791. "time": "2023-10-11T15:45:01+00:00"
  7792. },
  7793. {
  7794. "name": "phar-io/manifest",
  7795. "version": "2.0.4",
  7796. "dist": {
  7797. "type": "zip",
  7798. "url": "https://mirrors.tencent.com/repository/composer/phar-io/manifest/2.0.4/phar-io-manifest-2.0.4.zip",
  7799. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  7800. "shasum": ""
  7801. },
  7802. "require": {
  7803. "ext-dom": "*",
  7804. "ext-libxml": "*",
  7805. "ext-phar": "*",
  7806. "ext-xmlwriter": "*",
  7807. "phar-io/version": "^3.0.1",
  7808. "php": "^7.2 || ^8.0"
  7809. },
  7810. "type": "library",
  7811. "extra": {
  7812. "branch-alias": {
  7813. "dev-master": "2.0.x-dev"
  7814. }
  7815. },
  7816. "autoload": {
  7817. "classmap": [
  7818. "src/"
  7819. ]
  7820. },
  7821. "license": [
  7822. "BSD-3-Clause"
  7823. ],
  7824. "authors": [
  7825. {
  7826. "name": "Arne Blankerts",
  7827. "email": "arne@blankerts.de",
  7828. "role": "Developer"
  7829. },
  7830. {
  7831. "name": "Sebastian Heuer",
  7832. "email": "sebastian@phpeople.de",
  7833. "role": "Developer"
  7834. },
  7835. {
  7836. "name": "Sebastian Bergmann",
  7837. "email": "sebastian@phpunit.de",
  7838. "role": "Developer"
  7839. }
  7840. ],
  7841. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  7842. "time": "2024-03-03T12:33:53+00:00"
  7843. },
  7844. {
  7845. "name": "phar-io/version",
  7846. "version": "3.2.1",
  7847. "dist": {
  7848. "type": "zip",
  7849. "url": "https://mirrors.tencent.com/repository/composer/phar-io/version/3.2.1/phar-io-version-3.2.1.zip",
  7850. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  7851. "shasum": ""
  7852. },
  7853. "require": {
  7854. "php": "^7.2 || ^8.0"
  7855. },
  7856. "type": "library",
  7857. "autoload": {
  7858. "classmap": [
  7859. "src/"
  7860. ]
  7861. },
  7862. "license": [
  7863. "BSD-3-Clause"
  7864. ],
  7865. "authors": [
  7866. {
  7867. "name": "Arne Blankerts",
  7868. "email": "arne@blankerts.de",
  7869. "role": "Developer"
  7870. },
  7871. {
  7872. "name": "Sebastian Heuer",
  7873. "email": "sebastian@phpeople.de",
  7874. "role": "Developer"
  7875. },
  7876. {
  7877. "name": "Sebastian Bergmann",
  7878. "email": "sebastian@phpunit.de",
  7879. "role": "Developer"
  7880. }
  7881. ],
  7882. "description": "Library for handling version information and constraints",
  7883. "time": "2022-02-21T01:04:05+00:00"
  7884. },
  7885. {
  7886. "name": "phpunit/php-code-coverage",
  7887. "version": "10.1.16",
  7888. "dist": {
  7889. "type": "zip",
  7890. "url": "https://mirrors.tencent.com/repository/composer/phpunit/php-code-coverage/10.1.16/phpunit-php-code-coverage-10.1.16.zip",
  7891. "reference": "7e308268858ed6baedc8704a304727d20bc07c77",
  7892. "shasum": ""
  7893. },
  7894. "require": {
  7895. "ext-dom": "*",
  7896. "ext-libxml": "*",
  7897. "ext-xmlwriter": "*",
  7898. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  7899. "php": ">=8.1",
  7900. "phpunit/php-file-iterator": "^4.1.0",
  7901. "phpunit/php-text-template": "^3.0.1",
  7902. "sebastian/code-unit-reverse-lookup": "^3.0.0",
  7903. "sebastian/complexity": "^3.2.0",
  7904. "sebastian/environment": "^6.1.0",
  7905. "sebastian/lines-of-code": "^2.0.2",
  7906. "sebastian/version": "^4.0.1",
  7907. "theseer/tokenizer": "^1.2.3"
  7908. },
  7909. "require-dev": {
  7910. "phpunit/phpunit": "^10.1"
  7911. },
  7912. "suggest": {
  7913. "ext-pcov": "PHP extension that provides line coverage",
  7914. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  7915. },
  7916. "type": "library",
  7917. "extra": {
  7918. "branch-alias": {
  7919. "dev-main": "10.1.x-dev"
  7920. }
  7921. },
  7922. "autoload": {
  7923. "classmap": [
  7924. "src/"
  7925. ]
  7926. },
  7927. "license": [
  7928. "BSD-3-Clause"
  7929. ],
  7930. "authors": [
  7931. {
  7932. "name": "Sebastian Bergmann",
  7933. "email": "sebastian@phpunit.de",
  7934. "role": "lead"
  7935. }
  7936. ],
  7937. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  7938. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  7939. "keywords": [
  7940. "coverage",
  7941. "testing",
  7942. "xunit"
  7943. ],
  7944. "time": "2024-08-22T04:31:57+00:00"
  7945. },
  7946. {
  7947. "name": "phpunit/php-file-iterator",
  7948. "version": "4.1.0",
  7949. "dist": {
  7950. "type": "zip",
  7951. "url": "https://mirrors.tencent.com/repository/composer/phpunit/php-file-iterator/4.1.0/phpunit-php-file-iterator-4.1.0.zip",
  7952. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  7953. "shasum": ""
  7954. },
  7955. "require": {
  7956. "php": ">=8.1"
  7957. },
  7958. "require-dev": {
  7959. "phpunit/phpunit": "^10.0"
  7960. },
  7961. "type": "library",
  7962. "extra": {
  7963. "branch-alias": {
  7964. "dev-main": "4.0-dev"
  7965. }
  7966. },
  7967. "autoload": {
  7968. "classmap": [
  7969. "src/"
  7970. ]
  7971. },
  7972. "license": [
  7973. "BSD-3-Clause"
  7974. ],
  7975. "authors": [
  7976. {
  7977. "name": "Sebastian Bergmann",
  7978. "email": "sebastian@phpunit.de",
  7979. "role": "lead"
  7980. }
  7981. ],
  7982. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  7983. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  7984. "keywords": [
  7985. "filesystem",
  7986. "iterator"
  7987. ],
  7988. "time": "2023-08-31T06:24:48+00:00"
  7989. },
  7990. {
  7991. "name": "phpunit/php-invoker",
  7992. "version": "4.0.0",
  7993. "dist": {
  7994. "type": "zip",
  7995. "url": "https://mirrors.tencent.com/repository/composer/phpunit/php-invoker/4.0.0/phpunit-php-invoker-4.0.0.zip",
  7996. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  7997. "shasum": ""
  7998. },
  7999. "require": {
  8000. "php": ">=8.1"
  8001. },
  8002. "require-dev": {
  8003. "ext-pcntl": "*",
  8004. "phpunit/phpunit": "^10.0"
  8005. },
  8006. "suggest": {
  8007. "ext-pcntl": "*"
  8008. },
  8009. "type": "library",
  8010. "extra": {
  8011. "branch-alias": {
  8012. "dev-main": "4.0-dev"
  8013. }
  8014. },
  8015. "autoload": {
  8016. "classmap": [
  8017. "src/"
  8018. ]
  8019. },
  8020. "license": [
  8021. "BSD-3-Clause"
  8022. ],
  8023. "authors": [
  8024. {
  8025. "name": "Sebastian Bergmann",
  8026. "email": "sebastian@phpunit.de",
  8027. "role": "lead"
  8028. }
  8029. ],
  8030. "description": "Invoke callables with a timeout",
  8031. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8032. "keywords": [
  8033. "process"
  8034. ],
  8035. "time": "2023-02-03T06:56:09+00:00"
  8036. },
  8037. {
  8038. "name": "phpunit/php-text-template",
  8039. "version": "3.0.1",
  8040. "dist": {
  8041. "type": "zip",
  8042. "url": "https://mirrors.tencent.com/repository/composer/phpunit/php-text-template/3.0.1/phpunit-php-text-template-3.0.1.zip",
  8043. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  8044. "shasum": ""
  8045. },
  8046. "require": {
  8047. "php": ">=8.1"
  8048. },
  8049. "require-dev": {
  8050. "phpunit/phpunit": "^10.0"
  8051. },
  8052. "type": "library",
  8053. "extra": {
  8054. "branch-alias": {
  8055. "dev-main": "3.0-dev"
  8056. }
  8057. },
  8058. "autoload": {
  8059. "classmap": [
  8060. "src/"
  8061. ]
  8062. },
  8063. "license": [
  8064. "BSD-3-Clause"
  8065. ],
  8066. "authors": [
  8067. {
  8068. "name": "Sebastian Bergmann",
  8069. "email": "sebastian@phpunit.de",
  8070. "role": "lead"
  8071. }
  8072. ],
  8073. "description": "Simple template engine.",
  8074. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8075. "keywords": [
  8076. "template"
  8077. ],
  8078. "time": "2023-08-31T14:07:24+00:00"
  8079. },
  8080. {
  8081. "name": "phpunit/php-timer",
  8082. "version": "6.0.0",
  8083. "dist": {
  8084. "type": "zip",
  8085. "url": "https://mirrors.tencent.com/repository/composer/phpunit/php-timer/6.0.0/phpunit-php-timer-6.0.0.zip",
  8086. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  8087. "shasum": ""
  8088. },
  8089. "require": {
  8090. "php": ">=8.1"
  8091. },
  8092. "require-dev": {
  8093. "phpunit/phpunit": "^10.0"
  8094. },
  8095. "type": "library",
  8096. "extra": {
  8097. "branch-alias": {
  8098. "dev-main": "6.0-dev"
  8099. }
  8100. },
  8101. "autoload": {
  8102. "classmap": [
  8103. "src/"
  8104. ]
  8105. },
  8106. "license": [
  8107. "BSD-3-Clause"
  8108. ],
  8109. "authors": [
  8110. {
  8111. "name": "Sebastian Bergmann",
  8112. "email": "sebastian@phpunit.de",
  8113. "role": "lead"
  8114. }
  8115. ],
  8116. "description": "Utility class for timing",
  8117. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8118. "keywords": [
  8119. "timer"
  8120. ],
  8121. "time": "2023-02-03T06:57:52+00:00"
  8122. },
  8123. {
  8124. "name": "phpunit/phpunit",
  8125. "version": "10.5.36",
  8126. "dist": {
  8127. "type": "zip",
  8128. "url": "https://mirrors.tencent.com/repository/composer/phpunit/phpunit/10.5.36/phpunit-phpunit-10.5.36.zip",
  8129. "reference": "aa0a8ce701ea7ee314b0dfaa8970dc94f3f8c870",
  8130. "shasum": ""
  8131. },
  8132. "require": {
  8133. "ext-dom": "*",
  8134. "ext-json": "*",
  8135. "ext-libxml": "*",
  8136. "ext-mbstring": "*",
  8137. "ext-xml": "*",
  8138. "ext-xmlwriter": "*",
  8139. "myclabs/deep-copy": "^1.12.0",
  8140. "phar-io/manifest": "^2.0.4",
  8141. "phar-io/version": "^3.2.1",
  8142. "php": ">=8.1",
  8143. "phpunit/php-code-coverage": "^10.1.16",
  8144. "phpunit/php-file-iterator": "^4.1.0",
  8145. "phpunit/php-invoker": "^4.0.0",
  8146. "phpunit/php-text-template": "^3.0.1",
  8147. "phpunit/php-timer": "^6.0.0",
  8148. "sebastian/cli-parser": "^2.0.1",
  8149. "sebastian/code-unit": "^2.0.0",
  8150. "sebastian/comparator": "^5.0.2",
  8151. "sebastian/diff": "^5.1.1",
  8152. "sebastian/environment": "^6.1.0",
  8153. "sebastian/exporter": "^5.1.2",
  8154. "sebastian/global-state": "^6.0.2",
  8155. "sebastian/object-enumerator": "^5.0.0",
  8156. "sebastian/recursion-context": "^5.0.0",
  8157. "sebastian/type": "^4.0.0",
  8158. "sebastian/version": "^4.0.1"
  8159. },
  8160. "suggest": {
  8161. "ext-soap": "To be able to generate mocks based on WSDL files"
  8162. },
  8163. "bin": [
  8164. "phpunit"
  8165. ],
  8166. "type": "library",
  8167. "extra": {
  8168. "branch-alias": {
  8169. "dev-main": "10.5-dev"
  8170. }
  8171. },
  8172. "autoload": {
  8173. "files": [
  8174. "src/Framework/Assert/Functions.php"
  8175. ],
  8176. "classmap": [
  8177. "src/"
  8178. ]
  8179. },
  8180. "license": [
  8181. "BSD-3-Clause"
  8182. ],
  8183. "authors": [
  8184. {
  8185. "name": "Sebastian Bergmann",
  8186. "email": "sebastian@phpunit.de",
  8187. "role": "lead"
  8188. }
  8189. ],
  8190. "description": "The PHP Unit Testing framework.",
  8191. "homepage": "https://phpunit.de/",
  8192. "keywords": [
  8193. "phpunit",
  8194. "testing",
  8195. "xunit"
  8196. ],
  8197. "time": "2024-10-08T15:36:51+00:00"
  8198. },
  8199. {
  8200. "name": "sebastian/cli-parser",
  8201. "version": "2.0.1",
  8202. "dist": {
  8203. "type": "zip",
  8204. "url": "https://mirrors.tencent.com/repository/composer/sebastian/cli-parser/2.0.1/sebastian-cli-parser-2.0.1.zip",
  8205. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  8206. "shasum": ""
  8207. },
  8208. "require": {
  8209. "php": ">=8.1"
  8210. },
  8211. "require-dev": {
  8212. "phpunit/phpunit": "^10.0"
  8213. },
  8214. "type": "library",
  8215. "extra": {
  8216. "branch-alias": {
  8217. "dev-main": "2.0-dev"
  8218. }
  8219. },
  8220. "autoload": {
  8221. "classmap": [
  8222. "src/"
  8223. ]
  8224. },
  8225. "license": [
  8226. "BSD-3-Clause"
  8227. ],
  8228. "authors": [
  8229. {
  8230. "name": "Sebastian Bergmann",
  8231. "email": "sebastian@phpunit.de",
  8232. "role": "lead"
  8233. }
  8234. ],
  8235. "description": "Library for parsing CLI options",
  8236. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  8237. "time": "2024-03-02T07:12:49+00:00"
  8238. },
  8239. {
  8240. "name": "sebastian/code-unit",
  8241. "version": "2.0.0",
  8242. "dist": {
  8243. "type": "zip",
  8244. "url": "https://mirrors.tencent.com/repository/composer/sebastian/code-unit/2.0.0/sebastian-code-unit-2.0.0.zip",
  8245. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  8246. "shasum": ""
  8247. },
  8248. "require": {
  8249. "php": ">=8.1"
  8250. },
  8251. "require-dev": {
  8252. "phpunit/phpunit": "^10.0"
  8253. },
  8254. "type": "library",
  8255. "extra": {
  8256. "branch-alias": {
  8257. "dev-main": "2.0-dev"
  8258. }
  8259. },
  8260. "autoload": {
  8261. "classmap": [
  8262. "src/"
  8263. ]
  8264. },
  8265. "license": [
  8266. "BSD-3-Clause"
  8267. ],
  8268. "authors": [
  8269. {
  8270. "name": "Sebastian Bergmann",
  8271. "email": "sebastian@phpunit.de",
  8272. "role": "lead"
  8273. }
  8274. ],
  8275. "description": "Collection of value objects that represent the PHP code units",
  8276. "homepage": "https://github.com/sebastianbergmann/code-unit",
  8277. "time": "2023-02-03T06:58:43+00:00"
  8278. },
  8279. {
  8280. "name": "sebastian/code-unit-reverse-lookup",
  8281. "version": "3.0.0",
  8282. "dist": {
  8283. "type": "zip",
  8284. "url": "https://mirrors.tencent.com/repository/composer/sebastian/code-unit-reverse-lookup/3.0.0/sebastian-code-unit-reverse-lookup-3.0.0.zip",
  8285. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  8286. "shasum": ""
  8287. },
  8288. "require": {
  8289. "php": ">=8.1"
  8290. },
  8291. "require-dev": {
  8292. "phpunit/phpunit": "^10.0"
  8293. },
  8294. "type": "library",
  8295. "extra": {
  8296. "branch-alias": {
  8297. "dev-main": "3.0-dev"
  8298. }
  8299. },
  8300. "autoload": {
  8301. "classmap": [
  8302. "src/"
  8303. ]
  8304. },
  8305. "license": [
  8306. "BSD-3-Clause"
  8307. ],
  8308. "authors": [
  8309. {
  8310. "name": "Sebastian Bergmann",
  8311. "email": "sebastian@phpunit.de"
  8312. }
  8313. ],
  8314. "description": "Looks up which function or method a line of code belongs to",
  8315. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  8316. "time": "2023-02-03T06:59:15+00:00"
  8317. },
  8318. {
  8319. "name": "sebastian/comparator",
  8320. "version": "5.0.2",
  8321. "dist": {
  8322. "type": "zip",
  8323. "url": "https://mirrors.tencent.com/repository/composer/sebastian/comparator/5.0.2/sebastian-comparator-5.0.2.zip",
  8324. "reference": "2d3e04c3b4c1e84a5e7382221ad8883c8fbc4f53",
  8325. "shasum": ""
  8326. },
  8327. "require": {
  8328. "ext-dom": "*",
  8329. "ext-mbstring": "*",
  8330. "php": ">=8.1",
  8331. "sebastian/diff": "^5.0",
  8332. "sebastian/exporter": "^5.0"
  8333. },
  8334. "require-dev": {
  8335. "phpunit/phpunit": "^10.4"
  8336. },
  8337. "type": "library",
  8338. "extra": {
  8339. "branch-alias": {
  8340. "dev-main": "5.0-dev"
  8341. }
  8342. },
  8343. "autoload": {
  8344. "classmap": [
  8345. "src/"
  8346. ]
  8347. },
  8348. "license": [
  8349. "BSD-3-Clause"
  8350. ],
  8351. "authors": [
  8352. {
  8353. "name": "Sebastian Bergmann",
  8354. "email": "sebastian@phpunit.de"
  8355. },
  8356. {
  8357. "name": "Jeff Welch",
  8358. "email": "whatthejeff@gmail.com"
  8359. },
  8360. {
  8361. "name": "Volker Dusch",
  8362. "email": "github@wallbash.com"
  8363. },
  8364. {
  8365. "name": "Bernhard Schussek",
  8366. "email": "bschussek@2bepublished.at"
  8367. }
  8368. ],
  8369. "description": "Provides the functionality to compare PHP values for equality",
  8370. "homepage": "https://github.com/sebastianbergmann/comparator",
  8371. "keywords": [
  8372. "comparator",
  8373. "compare",
  8374. "equality"
  8375. ],
  8376. "time": "2024-08-12T06:03:08+00:00"
  8377. },
  8378. {
  8379. "name": "sebastian/complexity",
  8380. "version": "3.2.0",
  8381. "dist": {
  8382. "type": "zip",
  8383. "url": "https://mirrors.tencent.com/repository/composer/sebastian/complexity/3.2.0/sebastian-complexity-3.2.0.zip",
  8384. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  8385. "shasum": ""
  8386. },
  8387. "require": {
  8388. "nikic/php-parser": "^4.18 || ^5.0",
  8389. "php": ">=8.1"
  8390. },
  8391. "require-dev": {
  8392. "phpunit/phpunit": "^10.0"
  8393. },
  8394. "type": "library",
  8395. "extra": {
  8396. "branch-alias": {
  8397. "dev-main": "3.2-dev"
  8398. }
  8399. },
  8400. "autoload": {
  8401. "classmap": [
  8402. "src/"
  8403. ]
  8404. },
  8405. "license": [
  8406. "BSD-3-Clause"
  8407. ],
  8408. "authors": [
  8409. {
  8410. "name": "Sebastian Bergmann",
  8411. "email": "sebastian@phpunit.de",
  8412. "role": "lead"
  8413. }
  8414. ],
  8415. "description": "Library for calculating the complexity of PHP code units",
  8416. "homepage": "https://github.com/sebastianbergmann/complexity",
  8417. "time": "2023-12-21T08:37:17+00:00"
  8418. },
  8419. {
  8420. "name": "sebastian/diff",
  8421. "version": "5.1.1",
  8422. "dist": {
  8423. "type": "zip",
  8424. "url": "https://mirrors.tencent.com/repository/composer/sebastian/diff/5.1.1/sebastian-diff-5.1.1.zip",
  8425. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  8426. "shasum": ""
  8427. },
  8428. "require": {
  8429. "php": ">=8.1"
  8430. },
  8431. "require-dev": {
  8432. "phpunit/phpunit": "^10.0",
  8433. "symfony/process": "^6.4"
  8434. },
  8435. "type": "library",
  8436. "extra": {
  8437. "branch-alias": {
  8438. "dev-main": "5.1-dev"
  8439. }
  8440. },
  8441. "autoload": {
  8442. "classmap": [
  8443. "src/"
  8444. ]
  8445. },
  8446. "license": [
  8447. "BSD-3-Clause"
  8448. ],
  8449. "authors": [
  8450. {
  8451. "name": "Sebastian Bergmann",
  8452. "email": "sebastian@phpunit.de"
  8453. },
  8454. {
  8455. "name": "Kore Nordmann",
  8456. "email": "mail@kore-nordmann.de"
  8457. }
  8458. ],
  8459. "description": "Diff implementation",
  8460. "homepage": "https://github.com/sebastianbergmann/diff",
  8461. "keywords": [
  8462. "diff",
  8463. "udiff",
  8464. "unidiff",
  8465. "unified diff"
  8466. ],
  8467. "time": "2024-03-02T07:15:17+00:00"
  8468. },
  8469. {
  8470. "name": "sebastian/environment",
  8471. "version": "6.1.0",
  8472. "dist": {
  8473. "type": "zip",
  8474. "url": "https://mirrors.tencent.com/repository/composer/sebastian/environment/6.1.0/sebastian-environment-6.1.0.zip",
  8475. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
  8476. "shasum": ""
  8477. },
  8478. "require": {
  8479. "php": ">=8.1"
  8480. },
  8481. "require-dev": {
  8482. "phpunit/phpunit": "^10.0"
  8483. },
  8484. "suggest": {
  8485. "ext-posix": "*"
  8486. },
  8487. "type": "library",
  8488. "extra": {
  8489. "branch-alias": {
  8490. "dev-main": "6.1-dev"
  8491. }
  8492. },
  8493. "autoload": {
  8494. "classmap": [
  8495. "src/"
  8496. ]
  8497. },
  8498. "license": [
  8499. "BSD-3-Clause"
  8500. ],
  8501. "authors": [
  8502. {
  8503. "name": "Sebastian Bergmann",
  8504. "email": "sebastian@phpunit.de"
  8505. }
  8506. ],
  8507. "description": "Provides functionality to handle HHVM/PHP environments",
  8508. "homepage": "https://github.com/sebastianbergmann/environment",
  8509. "keywords": [
  8510. "Xdebug",
  8511. "environment",
  8512. "hhvm"
  8513. ],
  8514. "time": "2024-03-23T08:47:14+00:00"
  8515. },
  8516. {
  8517. "name": "sebastian/exporter",
  8518. "version": "5.1.2",
  8519. "dist": {
  8520. "type": "zip",
  8521. "url": "https://mirrors.tencent.com/repository/composer/sebastian/exporter/5.1.2/sebastian-exporter-5.1.2.zip",
  8522. "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
  8523. "shasum": ""
  8524. },
  8525. "require": {
  8526. "ext-mbstring": "*",
  8527. "php": ">=8.1",
  8528. "sebastian/recursion-context": "^5.0"
  8529. },
  8530. "require-dev": {
  8531. "phpunit/phpunit": "^10.0"
  8532. },
  8533. "type": "library",
  8534. "extra": {
  8535. "branch-alias": {
  8536. "dev-main": "5.1-dev"
  8537. }
  8538. },
  8539. "autoload": {
  8540. "classmap": [
  8541. "src/"
  8542. ]
  8543. },
  8544. "license": [
  8545. "BSD-3-Clause"
  8546. ],
  8547. "authors": [
  8548. {
  8549. "name": "Sebastian Bergmann",
  8550. "email": "sebastian@phpunit.de"
  8551. },
  8552. {
  8553. "name": "Jeff Welch",
  8554. "email": "whatthejeff@gmail.com"
  8555. },
  8556. {
  8557. "name": "Volker Dusch",
  8558. "email": "github@wallbash.com"
  8559. },
  8560. {
  8561. "name": "Adam Harvey",
  8562. "email": "aharvey@php.net"
  8563. },
  8564. {
  8565. "name": "Bernhard Schussek",
  8566. "email": "bschussek@gmail.com"
  8567. }
  8568. ],
  8569. "description": "Provides the functionality to export PHP variables for visualization",
  8570. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  8571. "keywords": [
  8572. "export",
  8573. "exporter"
  8574. ],
  8575. "time": "2024-03-02T07:17:12+00:00"
  8576. },
  8577. {
  8578. "name": "sebastian/global-state",
  8579. "version": "6.0.2",
  8580. "dist": {
  8581. "type": "zip",
  8582. "url": "https://mirrors.tencent.com/repository/composer/sebastian/global-state/6.0.2/sebastian-global-state-6.0.2.zip",
  8583. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  8584. "shasum": ""
  8585. },
  8586. "require": {
  8587. "php": ">=8.1",
  8588. "sebastian/object-reflector": "^3.0",
  8589. "sebastian/recursion-context": "^5.0"
  8590. },
  8591. "require-dev": {
  8592. "ext-dom": "*",
  8593. "phpunit/phpunit": "^10.0"
  8594. },
  8595. "type": "library",
  8596. "extra": {
  8597. "branch-alias": {
  8598. "dev-main": "6.0-dev"
  8599. }
  8600. },
  8601. "autoload": {
  8602. "classmap": [
  8603. "src/"
  8604. ]
  8605. },
  8606. "license": [
  8607. "BSD-3-Clause"
  8608. ],
  8609. "authors": [
  8610. {
  8611. "name": "Sebastian Bergmann",
  8612. "email": "sebastian@phpunit.de"
  8613. }
  8614. ],
  8615. "description": "Snapshotting of global state",
  8616. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  8617. "keywords": [
  8618. "global state"
  8619. ],
  8620. "time": "2024-03-02T07:19:19+00:00"
  8621. },
  8622. {
  8623. "name": "sebastian/lines-of-code",
  8624. "version": "2.0.2",
  8625. "dist": {
  8626. "type": "zip",
  8627. "url": "https://mirrors.tencent.com/repository/composer/sebastian/lines-of-code/2.0.2/sebastian-lines-of-code-2.0.2.zip",
  8628. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  8629. "shasum": ""
  8630. },
  8631. "require": {
  8632. "nikic/php-parser": "^4.18 || ^5.0",
  8633. "php": ">=8.1"
  8634. },
  8635. "require-dev": {
  8636. "phpunit/phpunit": "^10.0"
  8637. },
  8638. "type": "library",
  8639. "extra": {
  8640. "branch-alias": {
  8641. "dev-main": "2.0-dev"
  8642. }
  8643. },
  8644. "autoload": {
  8645. "classmap": [
  8646. "src/"
  8647. ]
  8648. },
  8649. "license": [
  8650. "BSD-3-Clause"
  8651. ],
  8652. "authors": [
  8653. {
  8654. "name": "Sebastian Bergmann",
  8655. "email": "sebastian@phpunit.de",
  8656. "role": "lead"
  8657. }
  8658. ],
  8659. "description": "Library for counting the lines of code in PHP source code",
  8660. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  8661. "time": "2023-12-21T08:38:20+00:00"
  8662. },
  8663. {
  8664. "name": "sebastian/object-enumerator",
  8665. "version": "5.0.0",
  8666. "dist": {
  8667. "type": "zip",
  8668. "url": "https://mirrors.tencent.com/repository/composer/sebastian/object-enumerator/5.0.0/sebastian-object-enumerator-5.0.0.zip",
  8669. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  8670. "shasum": ""
  8671. },
  8672. "require": {
  8673. "php": ">=8.1",
  8674. "sebastian/object-reflector": "^3.0",
  8675. "sebastian/recursion-context": "^5.0"
  8676. },
  8677. "require-dev": {
  8678. "phpunit/phpunit": "^10.0"
  8679. },
  8680. "type": "library",
  8681. "extra": {
  8682. "branch-alias": {
  8683. "dev-main": "5.0-dev"
  8684. }
  8685. },
  8686. "autoload": {
  8687. "classmap": [
  8688. "src/"
  8689. ]
  8690. },
  8691. "license": [
  8692. "BSD-3-Clause"
  8693. ],
  8694. "authors": [
  8695. {
  8696. "name": "Sebastian Bergmann",
  8697. "email": "sebastian@phpunit.de"
  8698. }
  8699. ],
  8700. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  8701. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  8702. "time": "2023-02-03T07:08:32+00:00"
  8703. },
  8704. {
  8705. "name": "sebastian/object-reflector",
  8706. "version": "3.0.0",
  8707. "dist": {
  8708. "type": "zip",
  8709. "url": "https://mirrors.tencent.com/repository/composer/sebastian/object-reflector/3.0.0/sebastian-object-reflector-3.0.0.zip",
  8710. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  8711. "shasum": ""
  8712. },
  8713. "require": {
  8714. "php": ">=8.1"
  8715. },
  8716. "require-dev": {
  8717. "phpunit/phpunit": "^10.0"
  8718. },
  8719. "type": "library",
  8720. "extra": {
  8721. "branch-alias": {
  8722. "dev-main": "3.0-dev"
  8723. }
  8724. },
  8725. "autoload": {
  8726. "classmap": [
  8727. "src/"
  8728. ]
  8729. },
  8730. "license": [
  8731. "BSD-3-Clause"
  8732. ],
  8733. "authors": [
  8734. {
  8735. "name": "Sebastian Bergmann",
  8736. "email": "sebastian@phpunit.de"
  8737. }
  8738. ],
  8739. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  8740. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  8741. "time": "2023-02-03T07:06:18+00:00"
  8742. },
  8743. {
  8744. "name": "sebastian/recursion-context",
  8745. "version": "5.0.0",
  8746. "dist": {
  8747. "type": "zip",
  8748. "url": "https://mirrors.tencent.com/repository/composer/sebastian/recursion-context/5.0.0/sebastian-recursion-context-5.0.0.zip",
  8749. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  8750. "shasum": ""
  8751. },
  8752. "require": {
  8753. "php": ">=8.1"
  8754. },
  8755. "require-dev": {
  8756. "phpunit/phpunit": "^10.0"
  8757. },
  8758. "type": "library",
  8759. "extra": {
  8760. "branch-alias": {
  8761. "dev-main": "5.0-dev"
  8762. }
  8763. },
  8764. "autoload": {
  8765. "classmap": [
  8766. "src/"
  8767. ]
  8768. },
  8769. "license": [
  8770. "BSD-3-Clause"
  8771. ],
  8772. "authors": [
  8773. {
  8774. "name": "Sebastian Bergmann",
  8775. "email": "sebastian@phpunit.de"
  8776. },
  8777. {
  8778. "name": "Jeff Welch",
  8779. "email": "whatthejeff@gmail.com"
  8780. },
  8781. {
  8782. "name": "Adam Harvey",
  8783. "email": "aharvey@php.net"
  8784. }
  8785. ],
  8786. "description": "Provides functionality to recursively process PHP variables",
  8787. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  8788. "time": "2023-02-03T07:05:40+00:00"
  8789. },
  8790. {
  8791. "name": "sebastian/type",
  8792. "version": "4.0.0",
  8793. "dist": {
  8794. "type": "zip",
  8795. "url": "https://mirrors.tencent.com/repository/composer/sebastian/type/4.0.0/sebastian-type-4.0.0.zip",
  8796. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  8797. "shasum": ""
  8798. },
  8799. "require": {
  8800. "php": ">=8.1"
  8801. },
  8802. "require-dev": {
  8803. "phpunit/phpunit": "^10.0"
  8804. },
  8805. "type": "library",
  8806. "extra": {
  8807. "branch-alias": {
  8808. "dev-main": "4.0-dev"
  8809. }
  8810. },
  8811. "autoload": {
  8812. "classmap": [
  8813. "src/"
  8814. ]
  8815. },
  8816. "license": [
  8817. "BSD-3-Clause"
  8818. ],
  8819. "authors": [
  8820. {
  8821. "name": "Sebastian Bergmann",
  8822. "email": "sebastian@phpunit.de",
  8823. "role": "lead"
  8824. }
  8825. ],
  8826. "description": "Collection of value objects that represent the types of the PHP type system",
  8827. "homepage": "https://github.com/sebastianbergmann/type",
  8828. "time": "2023-02-03T07:10:45+00:00"
  8829. },
  8830. {
  8831. "name": "sebastian/version",
  8832. "version": "4.0.1",
  8833. "dist": {
  8834. "type": "zip",
  8835. "url": "https://mirrors.tencent.com/repository/composer/sebastian/version/4.0.1/sebastian-version-4.0.1.zip",
  8836. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  8837. "shasum": ""
  8838. },
  8839. "require": {
  8840. "php": ">=8.1"
  8841. },
  8842. "type": "library",
  8843. "extra": {
  8844. "branch-alias": {
  8845. "dev-main": "4.0-dev"
  8846. }
  8847. },
  8848. "autoload": {
  8849. "classmap": [
  8850. "src/"
  8851. ]
  8852. },
  8853. "license": [
  8854. "BSD-3-Clause"
  8855. ],
  8856. "authors": [
  8857. {
  8858. "name": "Sebastian Bergmann",
  8859. "email": "sebastian@phpunit.de",
  8860. "role": "lead"
  8861. }
  8862. ],
  8863. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  8864. "homepage": "https://github.com/sebastianbergmann/version",
  8865. "time": "2023-02-07T11:34:05+00:00"
  8866. },
  8867. {
  8868. "name": "spatie/backtrace",
  8869. "version": "1.6.2",
  8870. "dist": {
  8871. "type": "zip",
  8872. "url": "https://mirrors.tencent.com/repository/composer/spatie/backtrace/1.6.2/spatie-backtrace-1.6.2.zip",
  8873. "reference": "1a9a145b044677ae3424693f7b06479fc8c137a9",
  8874. "shasum": ""
  8875. },
  8876. "require": {
  8877. "php": "^7.3|^8.0"
  8878. },
  8879. "require-dev": {
  8880. "ext-json": "*",
  8881. "laravel/serializable-closure": "^1.3",
  8882. "phpunit/phpunit": "^9.3",
  8883. "spatie/phpunit-snapshot-assertions": "^4.2",
  8884. "symfony/var-dumper": "^5.1"
  8885. },
  8886. "type": "library",
  8887. "autoload": {
  8888. "psr-4": {
  8889. "Spatie\\Backtrace\\": "src"
  8890. }
  8891. },
  8892. "license": [
  8893. "MIT"
  8894. ],
  8895. "authors": [
  8896. {
  8897. "name": "Freek Van de Herten",
  8898. "email": "freek@spatie.be",
  8899. "homepage": "https://spatie.be",
  8900. "role": "Developer"
  8901. }
  8902. ],
  8903. "description": "A better backtrace",
  8904. "homepage": "https://github.com/spatie/backtrace",
  8905. "keywords": [
  8906. "Backtrace",
  8907. "spatie"
  8908. ],
  8909. "time": "2024-07-22T08:21:24+00:00"
  8910. },
  8911. {
  8912. "name": "spatie/error-solutions",
  8913. "version": "1.1.1",
  8914. "dist": {
  8915. "type": "zip",
  8916. "url": "https://mirrors.tencent.com/repository/composer/spatie/error-solutions/1.1.1/spatie-error-solutions-1.1.1.zip",
  8917. "reference": "ae7393122eda72eed7cc4f176d1e96ea444f2d67",
  8918. "shasum": ""
  8919. },
  8920. "require": {
  8921. "php": "^8.0"
  8922. },
  8923. "require-dev": {
  8924. "illuminate/broadcasting": "^10.0|^11.0",
  8925. "illuminate/cache": "^10.0|^11.0",
  8926. "illuminate/support": "^10.0|^11.0",
  8927. "livewire/livewire": "^2.11|^3.3.5",
  8928. "openai-php/client": "^0.10.1",
  8929. "orchestra/testbench": "^7.0|8.22.3|^9.0",
  8930. "pestphp/pest": "^2.20",
  8931. "phpstan/phpstan": "^1.11",
  8932. "psr/simple-cache": "^3.0",
  8933. "psr/simple-cache-implementation": "^3.0",
  8934. "spatie/ray": "^1.28",
  8935. "symfony/cache": "^5.4|^6.0|^7.0",
  8936. "symfony/process": "^5.4|^6.0|^7.0",
  8937. "vlucas/phpdotenv": "^5.5"
  8938. },
  8939. "suggest": {
  8940. "openai-php/client": "Require get solutions from OpenAI",
  8941. "simple-cache-implementation": "To cache solutions from OpenAI"
  8942. },
  8943. "type": "library",
  8944. "autoload": {
  8945. "psr-4": {
  8946. "Spatie\\Ignition\\": "legacy/ignition",
  8947. "Spatie\\ErrorSolutions\\": "src",
  8948. "Spatie\\LaravelIgnition\\": "legacy/laravel-ignition"
  8949. }
  8950. },
  8951. "license": [
  8952. "MIT"
  8953. ],
  8954. "authors": [
  8955. {
  8956. "name": "Ruben Van Assche",
  8957. "email": "ruben@spatie.be",
  8958. "role": "Developer"
  8959. }
  8960. ],
  8961. "description": "This is my package error-solutions",
  8962. "homepage": "https://github.com/spatie/error-solutions",
  8963. "keywords": [
  8964. "error-solutions",
  8965. "spatie"
  8966. ],
  8967. "time": "2024-07-25T11:06:04+00:00"
  8968. },
  8969. {
  8970. "name": "spatie/flare-client-php",
  8971. "version": "1.8.0",
  8972. "dist": {
  8973. "type": "zip",
  8974. "url": "https://mirrors.tencent.com/repository/composer/spatie/flare-client-php/1.8.0/spatie-flare-client-php-1.8.0.zip",
  8975. "reference": "180f8ca4c0d0d6fc51477bd8c53ce37ab5a96122",
  8976. "shasum": ""
  8977. },
  8978. "require": {
  8979. "illuminate/pipeline": "^8.0|^9.0|^10.0|^11.0",
  8980. "php": "^8.0",
  8981. "spatie/backtrace": "^1.6.1",
  8982. "symfony/http-foundation": "^5.2|^6.0|^7.0",
  8983. "symfony/mime": "^5.2|^6.0|^7.0",
  8984. "symfony/process": "^5.2|^6.0|^7.0",
  8985. "symfony/var-dumper": "^5.2|^6.0|^7.0"
  8986. },
  8987. "require-dev": {
  8988. "dms/phpunit-arraysubset-asserts": "^0.5.0",
  8989. "pestphp/pest": "^1.20|^2.0",
  8990. "phpstan/extension-installer": "^1.1",
  8991. "phpstan/phpstan-deprecation-rules": "^1.0",
  8992. "phpstan/phpstan-phpunit": "^1.0",
  8993. "spatie/pest-plugin-snapshots": "^1.0|^2.0"
  8994. },
  8995. "type": "library",
  8996. "extra": {
  8997. "branch-alias": {
  8998. "dev-main": "1.3.x-dev"
  8999. }
  9000. },
  9001. "autoload": {
  9002. "files": [
  9003. "src/helpers.php"
  9004. ],
  9005. "psr-4": {
  9006. "Spatie\\FlareClient\\": "src"
  9007. }
  9008. },
  9009. "license": [
  9010. "MIT"
  9011. ],
  9012. "description": "Send PHP errors to Flare",
  9013. "homepage": "https://github.com/spatie/flare-client-php",
  9014. "keywords": [
  9015. "exception",
  9016. "flare",
  9017. "reporting",
  9018. "spatie"
  9019. ],
  9020. "time": "2024-08-01T08:27:26+00:00"
  9021. },
  9022. {
  9023. "name": "spatie/ignition",
  9024. "version": "1.15.0",
  9025. "dist": {
  9026. "type": "zip",
  9027. "url": "https://mirrors.tencent.com/repository/composer/spatie/ignition/1.15.0/spatie-ignition-1.15.0.zip",
  9028. "reference": "e3a68e137371e1eb9edc7f78ffa733f3b98991d2",
  9029. "shasum": ""
  9030. },
  9031. "require": {
  9032. "ext-json": "*",
  9033. "ext-mbstring": "*",
  9034. "php": "^8.0",
  9035. "spatie/error-solutions": "^1.0",
  9036. "spatie/flare-client-php": "^1.7",
  9037. "symfony/console": "^5.4|^6.0|^7.0",
  9038. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  9039. },
  9040. "require-dev": {
  9041. "illuminate/cache": "^9.52|^10.0|^11.0",
  9042. "mockery/mockery": "^1.4",
  9043. "pestphp/pest": "^1.20|^2.0",
  9044. "phpstan/extension-installer": "^1.1",
  9045. "phpstan/phpstan-deprecation-rules": "^1.0",
  9046. "phpstan/phpstan-phpunit": "^1.0",
  9047. "psr/simple-cache-implementation": "*",
  9048. "symfony/cache": "^5.4|^6.0|^7.0",
  9049. "symfony/process": "^5.4|^6.0|^7.0",
  9050. "vlucas/phpdotenv": "^5.5"
  9051. },
  9052. "suggest": {
  9053. "openai-php/client": "Require get solutions from OpenAI",
  9054. "simple-cache-implementation": "To cache solutions from OpenAI"
  9055. },
  9056. "type": "library",
  9057. "extra": {
  9058. "branch-alias": {
  9059. "dev-main": "1.5.x-dev"
  9060. }
  9061. },
  9062. "autoload": {
  9063. "psr-4": {
  9064. "Spatie\\Ignition\\": "src"
  9065. }
  9066. },
  9067. "license": [
  9068. "MIT"
  9069. ],
  9070. "authors": [
  9071. {
  9072. "name": "Spatie",
  9073. "email": "info@spatie.be",
  9074. "role": "Developer"
  9075. }
  9076. ],
  9077. "description": "A beautiful error page for PHP applications.",
  9078. "homepage": "https://flareapp.io/ignition",
  9079. "keywords": [
  9080. "error",
  9081. "flare",
  9082. "laravel",
  9083. "page"
  9084. ],
  9085. "time": "2024-06-12T14:55:22+00:00"
  9086. },
  9087. {
  9088. "name": "spatie/laravel-ignition",
  9089. "version": "2.8.0",
  9090. "dist": {
  9091. "type": "zip",
  9092. "url": "https://mirrors.tencent.com/repository/composer/spatie/laravel-ignition/2.8.0/spatie-laravel-ignition-2.8.0.zip",
  9093. "reference": "3c067b75bfb50574db8f7e2c3978c65eed71126c",
  9094. "shasum": ""
  9095. },
  9096. "require": {
  9097. "ext-curl": "*",
  9098. "ext-json": "*",
  9099. "ext-mbstring": "*",
  9100. "illuminate/support": "^10.0|^11.0",
  9101. "php": "^8.1",
  9102. "spatie/ignition": "^1.15",
  9103. "symfony/console": "^6.2.3|^7.0",
  9104. "symfony/var-dumper": "^6.2.3|^7.0"
  9105. },
  9106. "require-dev": {
  9107. "livewire/livewire": "^2.11|^3.3.5",
  9108. "mockery/mockery": "^1.5.1",
  9109. "openai-php/client": "^0.8.1",
  9110. "orchestra/testbench": "8.22.3|^9.0",
  9111. "pestphp/pest": "^2.34",
  9112. "phpstan/extension-installer": "^1.3.1",
  9113. "phpstan/phpstan-deprecation-rules": "^1.1.1",
  9114. "phpstan/phpstan-phpunit": "^1.3.16",
  9115. "vlucas/phpdotenv": "^5.5"
  9116. },
  9117. "suggest": {
  9118. "openai-php/client": "Require get solutions from OpenAI",
  9119. "psr/simple-cache-implementation": "Needed to cache solutions from OpenAI"
  9120. },
  9121. "type": "library",
  9122. "extra": {
  9123. "laravel": {
  9124. "providers": [
  9125. "Spatie\\LaravelIgnition\\IgnitionServiceProvider"
  9126. ],
  9127. "aliases": {
  9128. "Flare": "Spatie\\LaravelIgnition\\Facades\\Flare"
  9129. }
  9130. }
  9131. },
  9132. "autoload": {
  9133. "files": [
  9134. "src/helpers.php"
  9135. ],
  9136. "psr-4": {
  9137. "Spatie\\LaravelIgnition\\": "src"
  9138. }
  9139. },
  9140. "license": [
  9141. "MIT"
  9142. ],
  9143. "authors": [
  9144. {
  9145. "name": "Spatie",
  9146. "email": "info@spatie.be",
  9147. "role": "Developer"
  9148. }
  9149. ],
  9150. "description": "A beautiful error page for Laravel applications.",
  9151. "homepage": "https://flareapp.io/ignition",
  9152. "keywords": [
  9153. "error",
  9154. "flare",
  9155. "laravel",
  9156. "page"
  9157. ],
  9158. "time": "2024-06-12T15:01:18+00:00"
  9159. },
  9160. {
  9161. "name": "symfony/polyfill-php81",
  9162. "version": "v1.31.0",
  9163. "dist": {
  9164. "type": "zip",
  9165. "url": "https://mirrors.tencent.com/repository/composer/symfony/polyfill-php81/v1.31.0/symfony-polyfill-php81-v1.31.0.zip",
  9166. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  9167. "shasum": ""
  9168. },
  9169. "require": {
  9170. "php": ">=7.2"
  9171. },
  9172. "type": "library",
  9173. "extra": {
  9174. "thanks": {
  9175. "name": "symfony/polyfill",
  9176. "url": "https://github.com/symfony/polyfill"
  9177. }
  9178. },
  9179. "autoload": {
  9180. "files": [
  9181. "bootstrap.php"
  9182. ],
  9183. "psr-4": {
  9184. "Symfony\\Polyfill\\Php81\\": ""
  9185. },
  9186. "classmap": [
  9187. "Resources/stubs"
  9188. ]
  9189. },
  9190. "license": [
  9191. "MIT"
  9192. ],
  9193. "authors": [
  9194. {
  9195. "name": "Nicolas Grekas",
  9196. "email": "p@tchwork.com"
  9197. },
  9198. {
  9199. "name": "Symfony Community",
  9200. "homepage": "https://symfony.com/contributors"
  9201. }
  9202. ],
  9203. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  9204. "homepage": "https://symfony.com",
  9205. "keywords": [
  9206. "compatibility",
  9207. "polyfill",
  9208. "portable",
  9209. "shim"
  9210. ],
  9211. "time": "2024-09-09T11:45:10+00:00"
  9212. },
  9213. {
  9214. "name": "symfony/yaml",
  9215. "version": "v7.1.5",
  9216. "dist": {
  9217. "type": "zip",
  9218. "url": "https://mirrors.tencent.com/repository/composer/symfony/yaml/v7.1.5/symfony-yaml-v7.1.5.zip",
  9219. "reference": "4e561c316e135e053bd758bf3b3eb291d9919de4",
  9220. "shasum": ""
  9221. },
  9222. "require": {
  9223. "php": ">=8.2",
  9224. "symfony/polyfill-ctype": "^1.8"
  9225. },
  9226. "conflict": {
  9227. "symfony/console": "<6.4"
  9228. },
  9229. "require-dev": {
  9230. "symfony/console": "^6.4|^7.0"
  9231. },
  9232. "bin": [
  9233. "Resources/bin/yaml-lint"
  9234. ],
  9235. "type": "library",
  9236. "autoload": {
  9237. "psr-4": {
  9238. "Symfony\\Component\\Yaml\\": ""
  9239. },
  9240. "exclude-from-classmap": [
  9241. "/Tests/"
  9242. ]
  9243. },
  9244. "license": [
  9245. "MIT"
  9246. ],
  9247. "authors": [
  9248. {
  9249. "name": "Fabien Potencier",
  9250. "email": "fabien@symfony.com"
  9251. },
  9252. {
  9253. "name": "Symfony Community",
  9254. "homepage": "https://symfony.com/contributors"
  9255. }
  9256. ],
  9257. "description": "Loads and dumps YAML files",
  9258. "homepage": "https://symfony.com",
  9259. "time": "2024-09-17T12:49:58+00:00"
  9260. },
  9261. {
  9262. "name": "theseer/tokenizer",
  9263. "version": "1.2.3",
  9264. "dist": {
  9265. "type": "zip",
  9266. "url": "https://mirrors.tencent.com/repository/composer/theseer/tokenizer/1.2.3/theseer-tokenizer-1.2.3.zip",
  9267. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  9268. "shasum": ""
  9269. },
  9270. "require": {
  9271. "ext-dom": "*",
  9272. "ext-tokenizer": "*",
  9273. "ext-xmlwriter": "*",
  9274. "php": "^7.2 || ^8.0"
  9275. },
  9276. "type": "library",
  9277. "autoload": {
  9278. "classmap": [
  9279. "src/"
  9280. ]
  9281. },
  9282. "license": [
  9283. "BSD-3-Clause"
  9284. ],
  9285. "authors": [
  9286. {
  9287. "name": "Arne Blankerts",
  9288. "email": "arne@blankerts.de",
  9289. "role": "Developer"
  9290. }
  9291. ],
  9292. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  9293. "time": "2024-03-03T12:36:25+00:00"
  9294. }
  9295. ],
  9296. "aliases": [],
  9297. "minimum-stability": "stable",
  9298. "stability-flags": [],
  9299. "prefer-stable": true,
  9300. "prefer-lowest": false,
  9301. "platform": {
  9302. "php": "^8.1"
  9303. },
  9304. "platform-dev": [],
  9305. "plugin-api-version": "2.6.0"
  9306. }