composer.lock 314 KB

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