composer.lock 316 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147
  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": "977e12174fa6d3b6dd7d261ce1c4cedf",
  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": "predis/predis",
  3243. "version": "v2.2.2",
  3244. "dist": {
  3245. "type": "zip",
  3246. "url": "https://mirrors.tencent.com/repository/composer/predis/predis/v2.2.2/predis-predis-v2.2.2.zip",
  3247. "reference": "b1d3255ed9ad4d7254f9f9bba386c99f4bb983d1",
  3248. "shasum": ""
  3249. },
  3250. "require": {
  3251. "php": "^7.2 || ^8.0"
  3252. },
  3253. "require-dev": {
  3254. "friendsofphp/php-cs-fixer": "^3.3",
  3255. "phpstan/phpstan": "^1.9",
  3256. "phpunit/phpunit": "^8.0 || ~9.4.4"
  3257. },
  3258. "suggest": {
  3259. "ext-relay": "Faster connection with in-memory caching (>=0.6.2)"
  3260. },
  3261. "type": "library",
  3262. "autoload": {
  3263. "psr-4": {
  3264. "Predis\\": "src/"
  3265. }
  3266. },
  3267. "license": [
  3268. "MIT"
  3269. ],
  3270. "authors": [
  3271. {
  3272. "name": "Till Krüss",
  3273. "homepage": "https://till.im",
  3274. "role": "Maintainer"
  3275. }
  3276. ],
  3277. "description": "A flexible and feature-complete Redis client for PHP.",
  3278. "homepage": "http://github.com/predis/predis",
  3279. "keywords": [
  3280. "nosql",
  3281. "predis",
  3282. "redis"
  3283. ],
  3284. "time": "2023-09-13T16:42:03+00:00"
  3285. },
  3286. {
  3287. "name": "psr/cache",
  3288. "version": "3.0.0",
  3289. "dist": {
  3290. "type": "zip",
  3291. "url": "https://mirrors.tencent.com/repository/composer/psr/cache/3.0.0/psr-cache-3.0.0.zip",
  3292. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  3293. "shasum": ""
  3294. },
  3295. "require": {
  3296. "php": ">=8.0.0"
  3297. },
  3298. "type": "library",
  3299. "extra": {
  3300. "branch-alias": {
  3301. "dev-master": "1.0.x-dev"
  3302. }
  3303. },
  3304. "autoload": {
  3305. "psr-4": {
  3306. "Psr\\Cache\\": "src/"
  3307. }
  3308. },
  3309. "license": [
  3310. "MIT"
  3311. ],
  3312. "authors": [
  3313. {
  3314. "name": "PHP-FIG",
  3315. "homepage": "https://www.php-fig.org/"
  3316. }
  3317. ],
  3318. "description": "Common interface for caching libraries",
  3319. "keywords": [
  3320. "cache",
  3321. "psr",
  3322. "psr-6"
  3323. ],
  3324. "time": "2021-02-03T23:26:27+00:00"
  3325. },
  3326. {
  3327. "name": "psr/clock",
  3328. "version": "1.0.0",
  3329. "dist": {
  3330. "type": "zip",
  3331. "url": "https://mirrors.tencent.com/repository/composer/psr/clock/1.0.0/psr-clock-1.0.0.zip",
  3332. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  3333. "shasum": ""
  3334. },
  3335. "require": {
  3336. "php": "^7.0 || ^8.0"
  3337. },
  3338. "type": "library",
  3339. "autoload": {
  3340. "psr-4": {
  3341. "Psr\\Clock\\": "src/"
  3342. }
  3343. },
  3344. "license": [
  3345. "MIT"
  3346. ],
  3347. "authors": [
  3348. {
  3349. "name": "PHP-FIG",
  3350. "homepage": "https://www.php-fig.org/"
  3351. }
  3352. ],
  3353. "description": "Common interface for reading the clock.",
  3354. "homepage": "https://github.com/php-fig/clock",
  3355. "keywords": [
  3356. "clock",
  3357. "now",
  3358. "psr",
  3359. "psr-20",
  3360. "time"
  3361. ],
  3362. "time": "2022-11-25T14:36:26+00:00"
  3363. },
  3364. {
  3365. "name": "psr/container",
  3366. "version": "2.0.2",
  3367. "dist": {
  3368. "type": "zip",
  3369. "url": "https://mirrors.tencent.com/repository/composer/psr/container/2.0.2/psr-container-2.0.2.zip",
  3370. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  3371. "shasum": ""
  3372. },
  3373. "require": {
  3374. "php": ">=7.4.0"
  3375. },
  3376. "type": "library",
  3377. "extra": {
  3378. "branch-alias": {
  3379. "dev-master": "2.0.x-dev"
  3380. }
  3381. },
  3382. "autoload": {
  3383. "psr-4": {
  3384. "Psr\\Container\\": "src/"
  3385. }
  3386. },
  3387. "license": [
  3388. "MIT"
  3389. ],
  3390. "authors": [
  3391. {
  3392. "name": "PHP-FIG",
  3393. "homepage": "https://www.php-fig.org/"
  3394. }
  3395. ],
  3396. "description": "Common Container Interface (PHP FIG PSR-11)",
  3397. "homepage": "https://github.com/php-fig/container",
  3398. "keywords": [
  3399. "PSR-11",
  3400. "container",
  3401. "container-interface",
  3402. "container-interop",
  3403. "psr"
  3404. ],
  3405. "time": "2021-11-05T16:47:00+00:00"
  3406. },
  3407. {
  3408. "name": "psr/event-dispatcher",
  3409. "version": "1.0.0",
  3410. "dist": {
  3411. "type": "zip",
  3412. "url": "https://mirrors.tencent.com/repository/composer/psr/event-dispatcher/1.0.0/psr-event-dispatcher-1.0.0.zip",
  3413. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3414. "shasum": ""
  3415. },
  3416. "require": {
  3417. "php": ">=7.2.0"
  3418. },
  3419. "type": "library",
  3420. "extra": {
  3421. "branch-alias": {
  3422. "dev-master": "1.0.x-dev"
  3423. }
  3424. },
  3425. "autoload": {
  3426. "psr-4": {
  3427. "Psr\\EventDispatcher\\": "src/"
  3428. }
  3429. },
  3430. "license": [
  3431. "MIT"
  3432. ],
  3433. "authors": [
  3434. {
  3435. "name": "PHP-FIG",
  3436. "homepage": "http://www.php-fig.org/"
  3437. }
  3438. ],
  3439. "description": "Standard interfaces for event handling.",
  3440. "keywords": [
  3441. "events",
  3442. "psr",
  3443. "psr-14"
  3444. ],
  3445. "time": "2019-01-08T18:20:26+00:00"
  3446. },
  3447. {
  3448. "name": "psr/http-client",
  3449. "version": "1.0.3",
  3450. "dist": {
  3451. "type": "zip",
  3452. "url": "https://mirrors.tencent.com/repository/composer/psr/http-client/1.0.3/psr-http-client-1.0.3.zip",
  3453. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  3454. "shasum": ""
  3455. },
  3456. "require": {
  3457. "php": "^7.0 || ^8.0",
  3458. "psr/http-message": "^1.0 || ^2.0"
  3459. },
  3460. "type": "library",
  3461. "extra": {
  3462. "branch-alias": {
  3463. "dev-master": "1.0.x-dev"
  3464. }
  3465. },
  3466. "autoload": {
  3467. "psr-4": {
  3468. "Psr\\Http\\Client\\": "src/"
  3469. }
  3470. },
  3471. "license": [
  3472. "MIT"
  3473. ],
  3474. "authors": [
  3475. {
  3476. "name": "PHP-FIG",
  3477. "homepage": "https://www.php-fig.org/"
  3478. }
  3479. ],
  3480. "description": "Common interface for HTTP clients",
  3481. "homepage": "https://github.com/php-fig/http-client",
  3482. "keywords": [
  3483. "http",
  3484. "http-client",
  3485. "psr",
  3486. "psr-18"
  3487. ],
  3488. "time": "2023-09-23T14:17:50+00:00"
  3489. },
  3490. {
  3491. "name": "psr/http-factory",
  3492. "version": "1.1.0",
  3493. "dist": {
  3494. "type": "zip",
  3495. "url": "https://mirrors.tencent.com/repository/composer/psr/http-factory/1.1.0/psr-http-factory-1.1.0.zip",
  3496. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  3497. "shasum": ""
  3498. },
  3499. "require": {
  3500. "php": ">=7.1",
  3501. "psr/http-message": "^1.0 || ^2.0"
  3502. },
  3503. "type": "library",
  3504. "extra": {
  3505. "branch-alias": {
  3506. "dev-master": "1.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": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  3524. "keywords": [
  3525. "factory",
  3526. "http",
  3527. "message",
  3528. "psr",
  3529. "psr-17",
  3530. "psr-7",
  3531. "request",
  3532. "response"
  3533. ],
  3534. "time": "2024-04-15T12:06:14+00:00"
  3535. },
  3536. {
  3537. "name": "psr/http-message",
  3538. "version": "2.0",
  3539. "dist": {
  3540. "type": "zip",
  3541. "url": "https://mirrors.tencent.com/repository/composer/psr/http-message/2.0/psr-http-message-2.0.zip",
  3542. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  3543. "shasum": ""
  3544. },
  3545. "require": {
  3546. "php": "^7.2 || ^8.0"
  3547. },
  3548. "type": "library",
  3549. "extra": {
  3550. "branch-alias": {
  3551. "dev-master": "2.0.x-dev"
  3552. }
  3553. },
  3554. "autoload": {
  3555. "psr-4": {
  3556. "Psr\\Http\\Message\\": "src/"
  3557. }
  3558. },
  3559. "license": [
  3560. "MIT"
  3561. ],
  3562. "authors": [
  3563. {
  3564. "name": "PHP-FIG",
  3565. "homepage": "https://www.php-fig.org/"
  3566. }
  3567. ],
  3568. "description": "Common interface for HTTP messages",
  3569. "homepage": "https://github.com/php-fig/http-message",
  3570. "keywords": [
  3571. "http",
  3572. "http-message",
  3573. "psr",
  3574. "psr-7",
  3575. "request",
  3576. "response"
  3577. ],
  3578. "time": "2023-04-04T09:54:51+00:00"
  3579. },
  3580. {
  3581. "name": "psr/log",
  3582. "version": "3.0.2",
  3583. "dist": {
  3584. "type": "zip",
  3585. "url": "https://mirrors.tencent.com/repository/composer/psr/log/3.0.2/psr-log-3.0.2.zip",
  3586. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  3587. "shasum": ""
  3588. },
  3589. "require": {
  3590. "php": ">=8.0.0"
  3591. },
  3592. "type": "library",
  3593. "extra": {
  3594. "branch-alias": {
  3595. "dev-master": "3.x-dev"
  3596. }
  3597. },
  3598. "autoload": {
  3599. "psr-4": {
  3600. "Psr\\Log\\": "src"
  3601. }
  3602. },
  3603. "license": [
  3604. "MIT"
  3605. ],
  3606. "authors": [
  3607. {
  3608. "name": "PHP-FIG",
  3609. "homepage": "https://www.php-fig.org/"
  3610. }
  3611. ],
  3612. "description": "Common interface for logging libraries",
  3613. "homepage": "https://github.com/php-fig/log",
  3614. "keywords": [
  3615. "log",
  3616. "psr",
  3617. "psr-3"
  3618. ],
  3619. "time": "2024-09-11T13:17:53+00:00"
  3620. },
  3621. {
  3622. "name": "psr/simple-cache",
  3623. "version": "3.0.0",
  3624. "dist": {
  3625. "type": "zip",
  3626. "url": "https://mirrors.tencent.com/repository/composer/psr/simple-cache/3.0.0/psr-simple-cache-3.0.0.zip",
  3627. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  3628. "shasum": ""
  3629. },
  3630. "require": {
  3631. "php": ">=8.0.0"
  3632. },
  3633. "type": "library",
  3634. "extra": {
  3635. "branch-alias": {
  3636. "dev-master": "3.0.x-dev"
  3637. }
  3638. },
  3639. "autoload": {
  3640. "psr-4": {
  3641. "Psr\\SimpleCache\\": "src/"
  3642. }
  3643. },
  3644. "license": [
  3645. "MIT"
  3646. ],
  3647. "authors": [
  3648. {
  3649. "name": "PHP-FIG",
  3650. "homepage": "https://www.php-fig.org/"
  3651. }
  3652. ],
  3653. "description": "Common interfaces for simple caching",
  3654. "keywords": [
  3655. "cache",
  3656. "caching",
  3657. "psr",
  3658. "psr-16",
  3659. "simple-cache"
  3660. ],
  3661. "time": "2021-10-29T13:26:27+00:00"
  3662. },
  3663. {
  3664. "name": "psy/psysh",
  3665. "version": "v0.12.4",
  3666. "dist": {
  3667. "type": "zip",
  3668. "url": "https://mirrors.tencent.com/repository/composer/psy/psysh/v0.12.4/psy-psysh-v0.12.4.zip",
  3669. "reference": "2fd717afa05341b4f8152547f142cd2f130f6818",
  3670. "shasum": ""
  3671. },
  3672. "require": {
  3673. "ext-json": "*",
  3674. "ext-tokenizer": "*",
  3675. "nikic/php-parser": "^5.0 || ^4.0",
  3676. "php": "^8.0 || ^7.4",
  3677. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  3678. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  3679. },
  3680. "conflict": {
  3681. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  3682. },
  3683. "require-dev": {
  3684. "bamarni/composer-bin-plugin": "^1.2"
  3685. },
  3686. "suggest": {
  3687. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  3688. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  3689. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  3690. },
  3691. "bin": [
  3692. "bin/psysh"
  3693. ],
  3694. "type": "library",
  3695. "extra": {
  3696. "branch-alias": {
  3697. "dev-main": "0.12.x-dev"
  3698. },
  3699. "bamarni-bin": {
  3700. "bin-links": false,
  3701. "forward-command": false
  3702. }
  3703. },
  3704. "autoload": {
  3705. "files": [
  3706. "src/functions.php"
  3707. ],
  3708. "psr-4": {
  3709. "Psy\\": "src/"
  3710. }
  3711. },
  3712. "license": [
  3713. "MIT"
  3714. ],
  3715. "authors": [
  3716. {
  3717. "name": "Justin Hileman",
  3718. "email": "justin@justinhileman.info",
  3719. "homepage": "http://justinhileman.com"
  3720. }
  3721. ],
  3722. "description": "An interactive shell for modern PHP.",
  3723. "homepage": "http://psysh.org",
  3724. "keywords": [
  3725. "REPL",
  3726. "console",
  3727. "interactive",
  3728. "shell"
  3729. ],
  3730. "time": "2024-06-10T01:18:23+00:00"
  3731. },
  3732. {
  3733. "name": "qcloud/cos-sdk-v5",
  3734. "version": "v2.6.14",
  3735. "dist": {
  3736. "type": "zip",
  3737. "url": "https://mirrors.tencent.com/repository/composer/qcloud/cos-sdk-v5/v2.6.14/qcloud-cos-sdk-v5-v2.6.14.zip",
  3738. "reference": "f59af74e7a45de259786e378e6b45cc61039caa3",
  3739. "shasum": ""
  3740. },
  3741. "require": {
  3742. "ext-curl": "*",
  3743. "ext-json": "*",
  3744. "ext-libxml": "*",
  3745. "ext-mbstring": "*",
  3746. "ext-simplexml": "*",
  3747. "guzzlehttp/guzzle": "^6.2.1 || ^7.0",
  3748. "guzzlehttp/guzzle-services": "^1.1",
  3749. "guzzlehttp/psr7": "^1.3.1 || ^2.0",
  3750. "php": ">=5.6"
  3751. },
  3752. "type": "library",
  3753. "extra": {
  3754. "branch-alias": {
  3755. "dev-master": "2.4-dev"
  3756. }
  3757. },
  3758. "autoload": {
  3759. "files": [
  3760. "src/Common.php"
  3761. ],
  3762. "psr-4": {
  3763. "Qcloud\\Cos\\": "src/"
  3764. }
  3765. },
  3766. "license": [
  3767. "MIT"
  3768. ],
  3769. "authors": [
  3770. {
  3771. "name": "yaozongyou",
  3772. "email": "yaozongyou@vip.qq.com"
  3773. },
  3774. {
  3775. "name": "lewzylu",
  3776. "email": "327874225@qq.com"
  3777. },
  3778. {
  3779. "name": "tuunalai",
  3780. "email": "550566181@qq.com"
  3781. }
  3782. ],
  3783. "description": "PHP SDK for QCloud COS",
  3784. "keywords": [
  3785. "cos",
  3786. "php",
  3787. "qcloud"
  3788. ],
  3789. "time": "2024-07-29T14:10:31+00:00"
  3790. },
  3791. {
  3792. "name": "qcloud_sts/qcloud-sts-sdk",
  3793. "version": "3.0.12",
  3794. "dist": {
  3795. "type": "zip",
  3796. "url": "https://mirrors.tencent.com/repository/composer/qcloud_sts/qcloud-sts-sdk/3.0.12/qcloud_sts-qcloud-sts-sdk-3.0.12.zip",
  3797. "reference": "16ebb03f1079ef71c272180fc015cc809ce8320b",
  3798. "shasum": ""
  3799. },
  3800. "require": {
  3801. "ext-curl": "*",
  3802. "php": ">=5.3.0"
  3803. },
  3804. "type": "library",
  3805. "autoload": {
  3806. "psr-4": {
  3807. "QCloud\\COSSTS\\": "src"
  3808. }
  3809. },
  3810. "license": [
  3811. "MIT"
  3812. ],
  3813. "authors": [
  3814. {
  3815. "name": "qcloudterminal",
  3816. "email": "qcloudterminal@gmail.com"
  3817. },
  3818. {
  3819. "name": "tuunalai",
  3820. "email": "550566181@qq.com"
  3821. }
  3822. ],
  3823. "description": "PHP SDK for QCloud STS",
  3824. "homepage": "https://github.com/tencentyun/qcloud-cos-sts-sdk",
  3825. "keywords": [
  3826. "cos",
  3827. "php",
  3828. "qcloud",
  3829. "sts"
  3830. ],
  3831. "time": "2023-12-20T06:42:36+00:00"
  3832. },
  3833. {
  3834. "name": "ralouphie/getallheaders",
  3835. "version": "3.0.3",
  3836. "dist": {
  3837. "type": "zip",
  3838. "url": "https://mirrors.tencent.com/repository/composer/ralouphie/getallheaders/3.0.3/ralouphie-getallheaders-3.0.3.zip",
  3839. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  3840. "shasum": ""
  3841. },
  3842. "require": {
  3843. "php": ">=5.6"
  3844. },
  3845. "require-dev": {
  3846. "php-coveralls/php-coveralls": "^2.1",
  3847. "phpunit/phpunit": "^5 || ^6.5"
  3848. },
  3849. "type": "library",
  3850. "autoload": {
  3851. "files": [
  3852. "src/getallheaders.php"
  3853. ]
  3854. },
  3855. "license": [
  3856. "MIT"
  3857. ],
  3858. "authors": [
  3859. {
  3860. "name": "Ralph Khattar",
  3861. "email": "ralph.khattar@gmail.com"
  3862. }
  3863. ],
  3864. "description": "A polyfill for getallheaders.",
  3865. "time": "2019-03-08T08:55:37+00:00"
  3866. },
  3867. {
  3868. "name": "ramsey/collection",
  3869. "version": "2.0.0",
  3870. "dist": {
  3871. "type": "zip",
  3872. "url": "https://mirrors.tencent.com/repository/composer/ramsey/collection/2.0.0/ramsey-collection-2.0.0.zip",
  3873. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  3874. "shasum": ""
  3875. },
  3876. "require": {
  3877. "php": "^8.1"
  3878. },
  3879. "require-dev": {
  3880. "captainhook/plugin-composer": "^5.3",
  3881. "ergebnis/composer-normalize": "^2.28.3",
  3882. "fakerphp/faker": "^1.21",
  3883. "hamcrest/hamcrest-php": "^2.0",
  3884. "jangregor/phpstan-prophecy": "^1.0",
  3885. "mockery/mockery": "^1.5",
  3886. "php-parallel-lint/php-console-highlighter": "^1.0",
  3887. "php-parallel-lint/php-parallel-lint": "^1.3",
  3888. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  3889. "phpspec/prophecy-phpunit": "^2.0",
  3890. "phpstan/extension-installer": "^1.2",
  3891. "phpstan/phpstan": "^1.9",
  3892. "phpstan/phpstan-mockery": "^1.1",
  3893. "phpstan/phpstan-phpunit": "^1.3",
  3894. "phpunit/phpunit": "^9.5",
  3895. "psalm/plugin-mockery": "^1.1",
  3896. "psalm/plugin-phpunit": "^0.18.4",
  3897. "ramsey/coding-standard": "^2.0.3",
  3898. "ramsey/conventional-commits": "^1.3",
  3899. "vimeo/psalm": "^5.4"
  3900. },
  3901. "type": "library",
  3902. "extra": {
  3903. "captainhook": {
  3904. "force-install": true
  3905. },
  3906. "ramsey/conventional-commits": {
  3907. "configFile": "conventional-commits.json"
  3908. }
  3909. },
  3910. "autoload": {
  3911. "psr-4": {
  3912. "Ramsey\\Collection\\": "src/"
  3913. }
  3914. },
  3915. "license": [
  3916. "MIT"
  3917. ],
  3918. "authors": [
  3919. {
  3920. "name": "Ben Ramsey",
  3921. "email": "ben@benramsey.com",
  3922. "homepage": "https://benramsey.com"
  3923. }
  3924. ],
  3925. "description": "A PHP library for representing and manipulating collections.",
  3926. "keywords": [
  3927. "array",
  3928. "collection",
  3929. "hash",
  3930. "map",
  3931. "queue",
  3932. "set"
  3933. ],
  3934. "time": "2022-12-31T21:50:55+00:00"
  3935. },
  3936. {
  3937. "name": "ramsey/uuid",
  3938. "version": "4.7.6",
  3939. "dist": {
  3940. "type": "zip",
  3941. "url": "https://mirrors.tencent.com/repository/composer/ramsey/uuid/4.7.6/ramsey-uuid-4.7.6.zip",
  3942. "reference": "91039bc1faa45ba123c4328958e620d382ec7088",
  3943. "shasum": ""
  3944. },
  3945. "require": {
  3946. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12",
  3947. "ext-json": "*",
  3948. "php": "^8.0",
  3949. "ramsey/collection": "^1.2 || ^2.0"
  3950. },
  3951. "replace": {
  3952. "rhumsaa/uuid": "self.version"
  3953. },
  3954. "require-dev": {
  3955. "captainhook/captainhook": "^5.10",
  3956. "captainhook/plugin-composer": "^5.3",
  3957. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  3958. "doctrine/annotations": "^1.8",
  3959. "ergebnis/composer-normalize": "^2.15",
  3960. "mockery/mockery": "^1.3",
  3961. "paragonie/random-lib": "^2",
  3962. "php-mock/php-mock": "^2.2",
  3963. "php-mock/php-mock-mockery": "^1.3",
  3964. "php-parallel-lint/php-parallel-lint": "^1.1",
  3965. "phpbench/phpbench": "^1.0",
  3966. "phpstan/extension-installer": "^1.1",
  3967. "phpstan/phpstan": "^1.8",
  3968. "phpstan/phpstan-mockery": "^1.1",
  3969. "phpstan/phpstan-phpunit": "^1.1",
  3970. "phpunit/phpunit": "^8.5 || ^9",
  3971. "ramsey/composer-repl": "^1.4",
  3972. "slevomat/coding-standard": "^8.4",
  3973. "squizlabs/php_codesniffer": "^3.5",
  3974. "vimeo/psalm": "^4.9"
  3975. },
  3976. "suggest": {
  3977. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  3978. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  3979. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  3980. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  3981. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  3982. },
  3983. "type": "library",
  3984. "extra": {
  3985. "captainhook": {
  3986. "force-install": true
  3987. }
  3988. },
  3989. "autoload": {
  3990. "files": [
  3991. "src/functions.php"
  3992. ],
  3993. "psr-4": {
  3994. "Ramsey\\Uuid\\": "src/"
  3995. }
  3996. },
  3997. "license": [
  3998. "MIT"
  3999. ],
  4000. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4001. "keywords": [
  4002. "guid",
  4003. "identifier",
  4004. "uuid"
  4005. ],
  4006. "time": "2024-04-27T21:32:50+00:00"
  4007. },
  4008. {
  4009. "name": "spatie/laravel-permission",
  4010. "version": "6.9.0",
  4011. "dist": {
  4012. "type": "zip",
  4013. "url": "https://mirrors.tencent.com/repository/composer/spatie/laravel-permission/6.9.0/spatie-laravel-permission-6.9.0.zip",
  4014. "reference": "fe973a58b44380d0e8620107259b7bda22f70408",
  4015. "shasum": ""
  4016. },
  4017. "require": {
  4018. "illuminate/auth": "^8.12|^9.0|^10.0|^11.0",
  4019. "illuminate/container": "^8.12|^9.0|^10.0|^11.0",
  4020. "illuminate/contracts": "^8.12|^9.0|^10.0|^11.0",
  4021. "illuminate/database": "^8.12|^9.0|^10.0|^11.0",
  4022. "php": "^8.0"
  4023. },
  4024. "require-dev": {
  4025. "laravel/passport": "^11.0|^12.0",
  4026. "orchestra/testbench": "^6.23|^7.0|^8.0|^9.0",
  4027. "phpunit/phpunit": "^9.4|^10.1"
  4028. },
  4029. "type": "library",
  4030. "extra": {
  4031. "branch-alias": {
  4032. "dev-main": "6.x-dev",
  4033. "dev-master": "6.x-dev"
  4034. },
  4035. "laravel": {
  4036. "providers": [
  4037. "Spatie\\Permission\\PermissionServiceProvider"
  4038. ]
  4039. }
  4040. },
  4041. "autoload": {
  4042. "files": [
  4043. "src/helpers.php"
  4044. ],
  4045. "psr-4": {
  4046. "Spatie\\Permission\\": "src"
  4047. }
  4048. },
  4049. "license": [
  4050. "MIT"
  4051. ],
  4052. "authors": [
  4053. {
  4054. "name": "Freek Van der Herten",
  4055. "email": "freek@spatie.be",
  4056. "homepage": "https://spatie.be",
  4057. "role": "Developer"
  4058. }
  4059. ],
  4060. "description": "Permission handling for Laravel 8.0 and up",
  4061. "homepage": "https://github.com/spatie/laravel-permission",
  4062. "keywords": [
  4063. "acl",
  4064. "laravel",
  4065. "permission",
  4066. "permissions",
  4067. "rbac",
  4068. "roles",
  4069. "security",
  4070. "spatie"
  4071. ],
  4072. "time": "2024-06-22T23:04:52+00:00"
  4073. },
  4074. {
  4075. "name": "symfony/console",
  4076. "version": "v6.4.12",
  4077. "dist": {
  4078. "type": "zip",
  4079. "url": "https://mirrors.tencent.com/repository/composer/symfony/console/v6.4.12/symfony-console-v6.4.12.zip",
  4080. "reference": "72d080eb9edf80e36c19be61f72c98ed8273b765",
  4081. "shasum": ""
  4082. },
  4083. "require": {
  4084. "php": ">=8.1",
  4085. "symfony/deprecation-contracts": "^2.5|^3",
  4086. "symfony/polyfill-mbstring": "~1.0",
  4087. "symfony/service-contracts": "^2.5|^3",
  4088. "symfony/string": "^5.4|^6.0|^7.0"
  4089. },
  4090. "conflict": {
  4091. "symfony/dependency-injection": "<5.4",
  4092. "symfony/dotenv": "<5.4",
  4093. "symfony/event-dispatcher": "<5.4",
  4094. "symfony/lock": "<5.4",
  4095. "symfony/process": "<5.4"
  4096. },
  4097. "provide": {
  4098. "psr/log-implementation": "1.0|2.0|3.0"
  4099. },
  4100. "require-dev": {
  4101. "psr/log": "^1|^2|^3",
  4102. "symfony/config": "^5.4|^6.0|^7.0",
  4103. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  4104. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  4105. "symfony/http-foundation": "^6.4|^7.0",
  4106. "symfony/http-kernel": "^6.4|^7.0",
  4107. "symfony/lock": "^5.4|^6.0|^7.0",
  4108. "symfony/messenger": "^5.4|^6.0|^7.0",
  4109. "symfony/process": "^5.4|^6.0|^7.0",
  4110. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  4111. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  4112. },
  4113. "type": "library",
  4114. "autoload": {
  4115. "psr-4": {
  4116. "Symfony\\Component\\Console\\": ""
  4117. },
  4118. "exclude-from-classmap": [
  4119. "/Tests/"
  4120. ]
  4121. },
  4122. "license": [
  4123. "MIT"
  4124. ],
  4125. "authors": [
  4126. {
  4127. "name": "Fabien Potencier",
  4128. "email": "fabien@symfony.com"
  4129. },
  4130. {
  4131. "name": "Symfony Community",
  4132. "homepage": "https://symfony.com/contributors"
  4133. }
  4134. ],
  4135. "description": "Eases the creation of beautiful and testable command line interfaces",
  4136. "homepage": "https://symfony.com",
  4137. "keywords": [
  4138. "cli",
  4139. "command-line",
  4140. "console",
  4141. "terminal"
  4142. ],
  4143. "time": "2024-09-20T08:15:52+00:00"
  4144. },
  4145. {
  4146. "name": "symfony/css-selector",
  4147. "version": "v7.1.1",
  4148. "dist": {
  4149. "type": "zip",
  4150. "url": "https://mirrors.tencent.com/repository/composer/symfony/css-selector/v7.1.1/symfony-css-selector-v7.1.1.zip",
  4151. "reference": "1c7cee86c6f812896af54434f8ce29c8d94f9ff4",
  4152. "shasum": ""
  4153. },
  4154. "require": {
  4155. "php": ">=8.2"
  4156. },
  4157. "type": "library",
  4158. "autoload": {
  4159. "psr-4": {
  4160. "Symfony\\Component\\CssSelector\\": ""
  4161. },
  4162. "exclude-from-classmap": [
  4163. "/Tests/"
  4164. ]
  4165. },
  4166. "license": [
  4167. "MIT"
  4168. ],
  4169. "authors": [
  4170. {
  4171. "name": "Fabien Potencier",
  4172. "email": "fabien@symfony.com"
  4173. },
  4174. {
  4175. "name": "Jean-François Simon",
  4176. "email": "jeanfrancois.simon@sensiolabs.com"
  4177. },
  4178. {
  4179. "name": "Symfony Community",
  4180. "homepage": "https://symfony.com/contributors"
  4181. }
  4182. ],
  4183. "description": "Converts CSS selectors to XPath expressions",
  4184. "homepage": "https://symfony.com",
  4185. "time": "2024-05-31T14:57:53+00:00"
  4186. },
  4187. {
  4188. "name": "symfony/deprecation-contracts",
  4189. "version": "v3.5.0",
  4190. "dist": {
  4191. "type": "zip",
  4192. "url": "https://mirrors.tencent.com/repository/composer/symfony/deprecation-contracts/v3.5.0/symfony-deprecation-contracts-v3.5.0.zip",
  4193. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  4194. "shasum": ""
  4195. },
  4196. "require": {
  4197. "php": ">=8.1"
  4198. },
  4199. "type": "library",
  4200. "extra": {
  4201. "branch-alias": {
  4202. "dev-main": "3.5-dev"
  4203. },
  4204. "thanks": {
  4205. "name": "symfony/contracts",
  4206. "url": "https://github.com/symfony/contracts"
  4207. }
  4208. },
  4209. "autoload": {
  4210. "files": [
  4211. "function.php"
  4212. ]
  4213. },
  4214. "license": [
  4215. "MIT"
  4216. ],
  4217. "authors": [
  4218. {
  4219. "name": "Nicolas Grekas",
  4220. "email": "p@tchwork.com"
  4221. },
  4222. {
  4223. "name": "Symfony Community",
  4224. "homepage": "https://symfony.com/contributors"
  4225. }
  4226. ],
  4227. "description": "A generic function and convention to trigger deprecation notices",
  4228. "homepage": "https://symfony.com",
  4229. "time": "2024-04-18T09:32:20+00:00"
  4230. },
  4231. {
  4232. "name": "symfony/error-handler",
  4233. "version": "v6.4.10",
  4234. "dist": {
  4235. "type": "zip",
  4236. "url": "https://mirrors.tencent.com/repository/composer/symfony/error-handler/v6.4.10/symfony-error-handler-v6.4.10.zip",
  4237. "reference": "231f1b2ee80f72daa1972f7340297d67439224f0",
  4238. "shasum": ""
  4239. },
  4240. "require": {
  4241. "php": ">=8.1",
  4242. "psr/log": "^1|^2|^3",
  4243. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  4244. },
  4245. "conflict": {
  4246. "symfony/deprecation-contracts": "<2.5",
  4247. "symfony/http-kernel": "<6.4"
  4248. },
  4249. "require-dev": {
  4250. "symfony/deprecation-contracts": "^2.5|^3",
  4251. "symfony/http-kernel": "^6.4|^7.0",
  4252. "symfony/serializer": "^5.4|^6.0|^7.0"
  4253. },
  4254. "bin": [
  4255. "Resources/bin/patch-type-declarations"
  4256. ],
  4257. "type": "library",
  4258. "autoload": {
  4259. "psr-4": {
  4260. "Symfony\\Component\\ErrorHandler\\": ""
  4261. },
  4262. "exclude-from-classmap": [
  4263. "/Tests/"
  4264. ]
  4265. },
  4266. "license": [
  4267. "MIT"
  4268. ],
  4269. "authors": [
  4270. {
  4271. "name": "Fabien Potencier",
  4272. "email": "fabien@symfony.com"
  4273. },
  4274. {
  4275. "name": "Symfony Community",
  4276. "homepage": "https://symfony.com/contributors"
  4277. }
  4278. ],
  4279. "description": "Provides tools to manage errors and ease debugging PHP code",
  4280. "homepage": "https://symfony.com",
  4281. "time": "2024-07-26T12:30:32+00:00"
  4282. },
  4283. {
  4284. "name": "symfony/event-dispatcher",
  4285. "version": "v7.1.1",
  4286. "dist": {
  4287. "type": "zip",
  4288. "url": "https://mirrors.tencent.com/repository/composer/symfony/event-dispatcher/v7.1.1/symfony-event-dispatcher-v7.1.1.zip",
  4289. "reference": "9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7",
  4290. "shasum": ""
  4291. },
  4292. "require": {
  4293. "php": ">=8.2",
  4294. "symfony/event-dispatcher-contracts": "^2.5|^3"
  4295. },
  4296. "conflict": {
  4297. "symfony/dependency-injection": "<6.4",
  4298. "symfony/service-contracts": "<2.5"
  4299. },
  4300. "provide": {
  4301. "psr/event-dispatcher-implementation": "1.0",
  4302. "symfony/event-dispatcher-implementation": "2.0|3.0"
  4303. },
  4304. "require-dev": {
  4305. "psr/log": "^1|^2|^3",
  4306. "symfony/config": "^6.4|^7.0",
  4307. "symfony/dependency-injection": "^6.4|^7.0",
  4308. "symfony/error-handler": "^6.4|^7.0",
  4309. "symfony/expression-language": "^6.4|^7.0",
  4310. "symfony/http-foundation": "^6.4|^7.0",
  4311. "symfony/service-contracts": "^2.5|^3",
  4312. "symfony/stopwatch": "^6.4|^7.0"
  4313. },
  4314. "type": "library",
  4315. "autoload": {
  4316. "psr-4": {
  4317. "Symfony\\Component\\EventDispatcher\\": ""
  4318. },
  4319. "exclude-from-classmap": [
  4320. "/Tests/"
  4321. ]
  4322. },
  4323. "license": [
  4324. "MIT"
  4325. ],
  4326. "authors": [
  4327. {
  4328. "name": "Fabien Potencier",
  4329. "email": "fabien@symfony.com"
  4330. },
  4331. {
  4332. "name": "Symfony Community",
  4333. "homepage": "https://symfony.com/contributors"
  4334. }
  4335. ],
  4336. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  4337. "homepage": "https://symfony.com",
  4338. "time": "2024-05-31T14:57:53+00:00"
  4339. },
  4340. {
  4341. "name": "symfony/event-dispatcher-contracts",
  4342. "version": "v3.5.0",
  4343. "dist": {
  4344. "type": "zip",
  4345. "url": "https://mirrors.tencent.com/repository/composer/symfony/event-dispatcher-contracts/v3.5.0/symfony-event-dispatcher-contracts-v3.5.0.zip",
  4346. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  4347. "shasum": ""
  4348. },
  4349. "require": {
  4350. "php": ">=8.1",
  4351. "psr/event-dispatcher": "^1"
  4352. },
  4353. "type": "library",
  4354. "extra": {
  4355. "branch-alias": {
  4356. "dev-main": "3.5-dev"
  4357. },
  4358. "thanks": {
  4359. "name": "symfony/contracts",
  4360. "url": "https://github.com/symfony/contracts"
  4361. }
  4362. },
  4363. "autoload": {
  4364. "psr-4": {
  4365. "Symfony\\Contracts\\EventDispatcher\\": ""
  4366. }
  4367. },
  4368. "license": [
  4369. "MIT"
  4370. ],
  4371. "authors": [
  4372. {
  4373. "name": "Nicolas Grekas",
  4374. "email": "p@tchwork.com"
  4375. },
  4376. {
  4377. "name": "Symfony Community",
  4378. "homepage": "https://symfony.com/contributors"
  4379. }
  4380. ],
  4381. "description": "Generic abstractions related to dispatching event",
  4382. "homepage": "https://symfony.com",
  4383. "keywords": [
  4384. "abstractions",
  4385. "contracts",
  4386. "decoupling",
  4387. "interfaces",
  4388. "interoperability",
  4389. "standards"
  4390. ],
  4391. "time": "2024-04-18T09:32:20+00:00"
  4392. },
  4393. {
  4394. "name": "symfony/finder",
  4395. "version": "v6.4.11",
  4396. "dist": {
  4397. "type": "zip",
  4398. "url": "https://mirrors.tencent.com/repository/composer/symfony/finder/v6.4.11/symfony-finder-v6.4.11.zip",
  4399. "reference": "d7eb6daf8cd7e9ac4976e9576b32042ef7253453",
  4400. "shasum": ""
  4401. },
  4402. "require": {
  4403. "php": ">=8.1"
  4404. },
  4405. "require-dev": {
  4406. "symfony/filesystem": "^6.0|^7.0"
  4407. },
  4408. "type": "library",
  4409. "autoload": {
  4410. "psr-4": {
  4411. "Symfony\\Component\\Finder\\": ""
  4412. },
  4413. "exclude-from-classmap": [
  4414. "/Tests/"
  4415. ]
  4416. },
  4417. "license": [
  4418. "MIT"
  4419. ],
  4420. "authors": [
  4421. {
  4422. "name": "Fabien Potencier",
  4423. "email": "fabien@symfony.com"
  4424. },
  4425. {
  4426. "name": "Symfony Community",
  4427. "homepage": "https://symfony.com/contributors"
  4428. }
  4429. ],
  4430. "description": "Finds files and directories via an intuitive fluent interface",
  4431. "homepage": "https://symfony.com",
  4432. "time": "2024-08-13T14:27:37+00:00"
  4433. },
  4434. {
  4435. "name": "symfony/http-foundation",
  4436. "version": "v6.4.12",
  4437. "dist": {
  4438. "type": "zip",
  4439. "url": "https://mirrors.tencent.com/repository/composer/symfony/http-foundation/v6.4.12/symfony-http-foundation-v6.4.12.zip",
  4440. "reference": "133ac043875f59c26c55e79cf074562127cce4d2",
  4441. "shasum": ""
  4442. },
  4443. "require": {
  4444. "php": ">=8.1",
  4445. "symfony/deprecation-contracts": "^2.5|^3",
  4446. "symfony/polyfill-mbstring": "~1.1",
  4447. "symfony/polyfill-php83": "^1.27"
  4448. },
  4449. "conflict": {
  4450. "symfony/cache": "<6.3"
  4451. },
  4452. "require-dev": {
  4453. "doctrine/dbal": "^2.13.1|^3|^4",
  4454. "predis/predis": "^1.1|^2.0",
  4455. "symfony/cache": "^6.3|^7.0",
  4456. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  4457. "symfony/expression-language": "^5.4|^6.0|^7.0",
  4458. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  4459. "symfony/mime": "^5.4|^6.0|^7.0",
  4460. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  4461. },
  4462. "type": "library",
  4463. "autoload": {
  4464. "psr-4": {
  4465. "Symfony\\Component\\HttpFoundation\\": ""
  4466. },
  4467. "exclude-from-classmap": [
  4468. "/Tests/"
  4469. ]
  4470. },
  4471. "license": [
  4472. "MIT"
  4473. ],
  4474. "authors": [
  4475. {
  4476. "name": "Fabien Potencier",
  4477. "email": "fabien@symfony.com"
  4478. },
  4479. {
  4480. "name": "Symfony Community",
  4481. "homepage": "https://symfony.com/contributors"
  4482. }
  4483. ],
  4484. "description": "Defines an object-oriented layer for the HTTP specification",
  4485. "homepage": "https://symfony.com",
  4486. "time": "2024-09-20T08:18:25+00:00"
  4487. },
  4488. {
  4489. "name": "symfony/http-kernel",
  4490. "version": "v6.4.12",
  4491. "dist": {
  4492. "type": "zip",
  4493. "url": "https://mirrors.tencent.com/repository/composer/symfony/http-kernel/v6.4.12/symfony-http-kernel-v6.4.12.zip",
  4494. "reference": "96df83d51b5f78804f70c093b97310794fd6257b",
  4495. "shasum": ""
  4496. },
  4497. "require": {
  4498. "php": ">=8.1",
  4499. "psr/log": "^1|^2|^3",
  4500. "symfony/deprecation-contracts": "^2.5|^3",
  4501. "symfony/error-handler": "^6.4|^7.0",
  4502. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  4503. "symfony/http-foundation": "^6.4|^7.0",
  4504. "symfony/polyfill-ctype": "^1.8"
  4505. },
  4506. "conflict": {
  4507. "symfony/browser-kit": "<5.4",
  4508. "symfony/cache": "<5.4",
  4509. "symfony/config": "<6.1",
  4510. "symfony/console": "<5.4",
  4511. "symfony/dependency-injection": "<6.4",
  4512. "symfony/doctrine-bridge": "<5.4",
  4513. "symfony/form": "<5.4",
  4514. "symfony/http-client": "<5.4",
  4515. "symfony/http-client-contracts": "<2.5",
  4516. "symfony/mailer": "<5.4",
  4517. "symfony/messenger": "<5.4",
  4518. "symfony/translation": "<5.4",
  4519. "symfony/translation-contracts": "<2.5",
  4520. "symfony/twig-bridge": "<5.4",
  4521. "symfony/validator": "<6.4",
  4522. "symfony/var-dumper": "<6.3",
  4523. "twig/twig": "<2.13"
  4524. },
  4525. "provide": {
  4526. "psr/log-implementation": "1.0|2.0|3.0"
  4527. },
  4528. "require-dev": {
  4529. "psr/cache": "^1.0|^2.0|^3.0",
  4530. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  4531. "symfony/clock": "^6.2|^7.0",
  4532. "symfony/config": "^6.1|^7.0",
  4533. "symfony/console": "^5.4|^6.0|^7.0",
  4534. "symfony/css-selector": "^5.4|^6.0|^7.0",
  4535. "symfony/dependency-injection": "^6.4|^7.0",
  4536. "symfony/dom-crawler": "^5.4|^6.0|^7.0",
  4537. "symfony/expression-language": "^5.4|^6.0|^7.0",
  4538. "symfony/finder": "^5.4|^6.0|^7.0",
  4539. "symfony/http-client-contracts": "^2.5|^3",
  4540. "symfony/process": "^5.4|^6.0|^7.0",
  4541. "symfony/property-access": "^5.4.5|^6.0.5|^7.0",
  4542. "symfony/routing": "^5.4|^6.0|^7.0",
  4543. "symfony/serializer": "^6.4.4|^7.0.4",
  4544. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  4545. "symfony/translation": "^5.4|^6.0|^7.0",
  4546. "symfony/translation-contracts": "^2.5|^3",
  4547. "symfony/uid": "^5.4|^6.0|^7.0",
  4548. "symfony/validator": "^6.4|^7.0",
  4549. "symfony/var-dumper": "^5.4|^6.4|^7.0",
  4550. "symfony/var-exporter": "^6.2|^7.0",
  4551. "twig/twig": "^2.13|^3.0.4"
  4552. },
  4553. "type": "library",
  4554. "autoload": {
  4555. "psr-4": {
  4556. "Symfony\\Component\\HttpKernel\\": ""
  4557. },
  4558. "exclude-from-classmap": [
  4559. "/Tests/"
  4560. ]
  4561. },
  4562. "license": [
  4563. "MIT"
  4564. ],
  4565. "authors": [
  4566. {
  4567. "name": "Fabien Potencier",
  4568. "email": "fabien@symfony.com"
  4569. },
  4570. {
  4571. "name": "Symfony Community",
  4572. "homepage": "https://symfony.com/contributors"
  4573. }
  4574. ],
  4575. "description": "Provides a structured process for converting a Request into a Response",
  4576. "homepage": "https://symfony.com",
  4577. "time": "2024-09-21T06:02:57+00:00"
  4578. },
  4579. {
  4580. "name": "symfony/mailer",
  4581. "version": "v6.4.12",
  4582. "dist": {
  4583. "type": "zip",
  4584. "url": "https://mirrors.tencent.com/repository/composer/symfony/mailer/v6.4.12/symfony-mailer-v6.4.12.zip",
  4585. "reference": "b6a25408c569ae2366b3f663a4edad19420a9c26",
  4586. "shasum": ""
  4587. },
  4588. "require": {
  4589. "egulias/email-validator": "^2.1.10|^3|^4",
  4590. "php": ">=8.1",
  4591. "psr/event-dispatcher": "^1",
  4592. "psr/log": "^1|^2|^3",
  4593. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  4594. "symfony/mime": "^6.2|^7.0",
  4595. "symfony/service-contracts": "^2.5|^3"
  4596. },
  4597. "conflict": {
  4598. "symfony/http-client-contracts": "<2.5",
  4599. "symfony/http-kernel": "<5.4",
  4600. "symfony/messenger": "<6.2",
  4601. "symfony/mime": "<6.2",
  4602. "symfony/twig-bridge": "<6.2.1"
  4603. },
  4604. "require-dev": {
  4605. "symfony/console": "^5.4|^6.0|^7.0",
  4606. "symfony/http-client": "^5.4|^6.0|^7.0",
  4607. "symfony/messenger": "^6.2|^7.0",
  4608. "symfony/twig-bridge": "^6.2|^7.0"
  4609. },
  4610. "type": "library",
  4611. "autoload": {
  4612. "psr-4": {
  4613. "Symfony\\Component\\Mailer\\": ""
  4614. },
  4615. "exclude-from-classmap": [
  4616. "/Tests/"
  4617. ]
  4618. },
  4619. "license": [
  4620. "MIT"
  4621. ],
  4622. "authors": [
  4623. {
  4624. "name": "Fabien Potencier",
  4625. "email": "fabien@symfony.com"
  4626. },
  4627. {
  4628. "name": "Symfony Community",
  4629. "homepage": "https://symfony.com/contributors"
  4630. }
  4631. ],
  4632. "description": "Helps sending emails",
  4633. "homepage": "https://symfony.com",
  4634. "time": "2024-09-08T12:30:05+00:00"
  4635. },
  4636. {
  4637. "name": "symfony/mime",
  4638. "version": "v6.4.12",
  4639. "dist": {
  4640. "type": "zip",
  4641. "url": "https://mirrors.tencent.com/repository/composer/symfony/mime/v6.4.12/symfony-mime-v6.4.12.zip",
  4642. "reference": "abe16ee7790b16aa525877419deb0f113953f0e1",
  4643. "shasum": ""
  4644. },
  4645. "require": {
  4646. "php": ">=8.1",
  4647. "symfony/deprecation-contracts": "^2.5|^3",
  4648. "symfony/polyfill-intl-idn": "^1.10",
  4649. "symfony/polyfill-mbstring": "^1.0"
  4650. },
  4651. "conflict": {
  4652. "egulias/email-validator": "~3.0.0",
  4653. "phpdocumentor/reflection-docblock": "<3.2.2",
  4654. "phpdocumentor/type-resolver": "<1.4.0",
  4655. "symfony/mailer": "<5.4",
  4656. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  4657. },
  4658. "require-dev": {
  4659. "egulias/email-validator": "^2.1.10|^3.1|^4",
  4660. "league/html-to-markdown": "^5.0",
  4661. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  4662. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  4663. "symfony/process": "^5.4|^6.4|^7.0",
  4664. "symfony/property-access": "^5.4|^6.0|^7.0",
  4665. "symfony/property-info": "^5.4|^6.0|^7.0",
  4666. "symfony/serializer": "^6.4.3|^7.0.3"
  4667. },
  4668. "type": "library",
  4669. "autoload": {
  4670. "psr-4": {
  4671. "Symfony\\Component\\Mime\\": ""
  4672. },
  4673. "exclude-from-classmap": [
  4674. "/Tests/"
  4675. ]
  4676. },
  4677. "license": [
  4678. "MIT"
  4679. ],
  4680. "authors": [
  4681. {
  4682. "name": "Fabien Potencier",
  4683. "email": "fabien@symfony.com"
  4684. },
  4685. {
  4686. "name": "Symfony Community",
  4687. "homepage": "https://symfony.com/contributors"
  4688. }
  4689. ],
  4690. "description": "Allows manipulating MIME messages",
  4691. "homepage": "https://symfony.com",
  4692. "keywords": [
  4693. "mime",
  4694. "mime-type"
  4695. ],
  4696. "time": "2024-09-20T08:18:25+00:00"
  4697. },
  4698. {
  4699. "name": "symfony/polyfill-ctype",
  4700. "version": "v1.31.0",
  4701. "dist": {
  4702. "type": "zip",
  4703. "url": "https://mirrors.tencent.com/repository/composer/symfony/polyfill-ctype/v1.31.0/symfony-polyfill-ctype-v1.31.0.zip",
  4704. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  4705. "shasum": ""
  4706. },
  4707. "require": {
  4708. "php": ">=7.2"
  4709. },
  4710. "provide": {
  4711. "ext-ctype": "*"
  4712. },
  4713. "suggest": {
  4714. "ext-ctype": "For best performance"
  4715. },
  4716. "type": "library",
  4717. "extra": {
  4718. "thanks": {
  4719. "name": "symfony/polyfill",
  4720. "url": "https://github.com/symfony/polyfill"
  4721. }
  4722. },
  4723. "autoload": {
  4724. "files": [
  4725. "bootstrap.php"
  4726. ],
  4727. "psr-4": {
  4728. "Symfony\\Polyfill\\Ctype\\": ""
  4729. }
  4730. },
  4731. "license": [
  4732. "MIT"
  4733. ],
  4734. "authors": [
  4735. {
  4736. "name": "Gert de Pagter",
  4737. "email": "BackEndTea@gmail.com"
  4738. },
  4739. {
  4740. "name": "Symfony Community",
  4741. "homepage": "https://symfony.com/contributors"
  4742. }
  4743. ],
  4744. "description": "Symfony polyfill for ctype functions",
  4745. "homepage": "https://symfony.com",
  4746. "keywords": [
  4747. "compatibility",
  4748. "ctype",
  4749. "polyfill",
  4750. "portable"
  4751. ],
  4752. "time": "2024-09-09T11:45:10+00:00"
  4753. },
  4754. {
  4755. "name": "symfony/polyfill-intl-grapheme",
  4756. "version": "v1.31.0",
  4757. "dist": {
  4758. "type": "zip",
  4759. "url": "https://mirrors.tencent.com/repository/composer/symfony/polyfill-intl-grapheme/v1.31.0/symfony-polyfill-intl-grapheme-v1.31.0.zip",
  4760. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  4761. "shasum": ""
  4762. },
  4763. "require": {
  4764. "php": ">=7.2"
  4765. },
  4766. "suggest": {
  4767. "ext-intl": "For best performance"
  4768. },
  4769. "type": "library",
  4770. "extra": {
  4771. "thanks": {
  4772. "name": "symfony/polyfill",
  4773. "url": "https://github.com/symfony/polyfill"
  4774. }
  4775. },
  4776. "autoload": {
  4777. "files": [
  4778. "bootstrap.php"
  4779. ],
  4780. "psr-4": {
  4781. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  4782. }
  4783. },
  4784. "license": [
  4785. "MIT"
  4786. ],
  4787. "authors": [
  4788. {
  4789. "name": "Nicolas Grekas",
  4790. "email": "p@tchwork.com"
  4791. },
  4792. {
  4793. "name": "Symfony Community",
  4794. "homepage": "https://symfony.com/contributors"
  4795. }
  4796. ],
  4797. "description": "Symfony polyfill for intl's grapheme_* functions",
  4798. "homepage": "https://symfony.com",
  4799. "keywords": [
  4800. "compatibility",
  4801. "grapheme",
  4802. "intl",
  4803. "polyfill",
  4804. "portable",
  4805. "shim"
  4806. ],
  4807. "time": "2024-09-09T11:45:10+00:00"
  4808. },
  4809. {
  4810. "name": "symfony/polyfill-intl-idn",
  4811. "version": "v1.31.0",
  4812. "dist": {
  4813. "type": "zip",
  4814. "url": "https://mirrors.tencent.com/repository/composer/symfony/polyfill-intl-idn/v1.31.0/symfony-polyfill-intl-idn-v1.31.0.zip",
  4815. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
  4816. "shasum": ""
  4817. },
  4818. "require": {
  4819. "php": ">=7.2",
  4820. "symfony/polyfill-intl-normalizer": "^1.10"
  4821. },
  4822. "suggest": {
  4823. "ext-intl": "For best performance"
  4824. },
  4825. "type": "library",
  4826. "extra": {
  4827. "thanks": {
  4828. "name": "symfony/polyfill",
  4829. "url": "https://github.com/symfony/polyfill"
  4830. }
  4831. },
  4832. "autoload": {
  4833. "files": [
  4834. "bootstrap.php"
  4835. ],
  4836. "psr-4": {
  4837. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  4838. }
  4839. },
  4840. "license": [
  4841. "MIT"
  4842. ],
  4843. "authors": [
  4844. {
  4845. "name": "Laurent Bassin",
  4846. "email": "laurent@bassin.info"
  4847. },
  4848. {
  4849. "name": "Trevor Rowbotham",
  4850. "email": "trevor.rowbotham@pm.me"
  4851. },
  4852. {
  4853. "name": "Symfony Community",
  4854. "homepage": "https://symfony.com/contributors"
  4855. }
  4856. ],
  4857. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  4858. "homepage": "https://symfony.com",
  4859. "keywords": [
  4860. "compatibility",
  4861. "idn",
  4862. "intl",
  4863. "polyfill",
  4864. "portable",
  4865. "shim"
  4866. ],
  4867. "time": "2024-09-09T11:45:10+00:00"
  4868. },
  4869. {
  4870. "name": "symfony/polyfill-intl-normalizer",
  4871. "version": "v1.31.0",
  4872. "dist": {
  4873. "type": "zip",
  4874. "url": "https://mirrors.tencent.com/repository/composer/symfony/polyfill-intl-normalizer/v1.31.0/symfony-polyfill-intl-normalizer-v1.31.0.zip",
  4875. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  4876. "shasum": ""
  4877. },
  4878. "require": {
  4879. "php": ">=7.2"
  4880. },
  4881. "suggest": {
  4882. "ext-intl": "For best performance"
  4883. },
  4884. "type": "library",
  4885. "extra": {
  4886. "thanks": {
  4887. "name": "symfony/polyfill",
  4888. "url": "https://github.com/symfony/polyfill"
  4889. }
  4890. },
  4891. "autoload": {
  4892. "files": [
  4893. "bootstrap.php"
  4894. ],
  4895. "psr-4": {
  4896. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  4897. },
  4898. "classmap": [
  4899. "Resources/stubs"
  4900. ]
  4901. },
  4902. "license": [
  4903. "MIT"
  4904. ],
  4905. "authors": [
  4906. {
  4907. "name": "Nicolas Grekas",
  4908. "email": "p@tchwork.com"
  4909. },
  4910. {
  4911. "name": "Symfony Community",
  4912. "homepage": "https://symfony.com/contributors"
  4913. }
  4914. ],
  4915. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  4916. "homepage": "https://symfony.com",
  4917. "keywords": [
  4918. "compatibility",
  4919. "intl",
  4920. "normalizer",
  4921. "polyfill",
  4922. "portable",
  4923. "shim"
  4924. ],
  4925. "time": "2024-09-09T11:45:10+00:00"
  4926. },
  4927. {
  4928. "name": "symfony/polyfill-mbstring",
  4929. "version": "v1.31.0",
  4930. "dist": {
  4931. "type": "zip",
  4932. "url": "https://mirrors.tencent.com/repository/composer/symfony/polyfill-mbstring/v1.31.0/symfony-polyfill-mbstring-v1.31.0.zip",
  4933. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  4934. "shasum": ""
  4935. },
  4936. "require": {
  4937. "php": ">=7.2"
  4938. },
  4939. "provide": {
  4940. "ext-mbstring": "*"
  4941. },
  4942. "suggest": {
  4943. "ext-mbstring": "For best performance"
  4944. },
  4945. "type": "library",
  4946. "extra": {
  4947. "thanks": {
  4948. "name": "symfony/polyfill",
  4949. "url": "https://github.com/symfony/polyfill"
  4950. }
  4951. },
  4952. "autoload": {
  4953. "files": [
  4954. "bootstrap.php"
  4955. ],
  4956. "psr-4": {
  4957. "Symfony\\Polyfill\\Mbstring\\": ""
  4958. }
  4959. },
  4960. "license": [
  4961. "MIT"
  4962. ],
  4963. "authors": [
  4964. {
  4965. "name": "Nicolas Grekas",
  4966. "email": "p@tchwork.com"
  4967. },
  4968. {
  4969. "name": "Symfony Community",
  4970. "homepage": "https://symfony.com/contributors"
  4971. }
  4972. ],
  4973. "description": "Symfony polyfill for the Mbstring extension",
  4974. "homepage": "https://symfony.com",
  4975. "keywords": [
  4976. "compatibility",
  4977. "mbstring",
  4978. "polyfill",
  4979. "portable",
  4980. "shim"
  4981. ],
  4982. "time": "2024-09-09T11:45:10+00:00"
  4983. },
  4984. {
  4985. "name": "symfony/polyfill-php80",
  4986. "version": "v1.31.0",
  4987. "dist": {
  4988. "type": "zip",
  4989. "url": "https://mirrors.tencent.com/repository/composer/symfony/polyfill-php80/v1.31.0/symfony-polyfill-php80-v1.31.0.zip",
  4990. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  4991. "shasum": ""
  4992. },
  4993. "require": {
  4994. "php": ">=7.2"
  4995. },
  4996. "type": "library",
  4997. "extra": {
  4998. "thanks": {
  4999. "name": "symfony/polyfill",
  5000. "url": "https://github.com/symfony/polyfill"
  5001. }
  5002. },
  5003. "autoload": {
  5004. "files": [
  5005. "bootstrap.php"
  5006. ],
  5007. "psr-4": {
  5008. "Symfony\\Polyfill\\Php80\\": ""
  5009. },
  5010. "classmap": [
  5011. "Resources/stubs"
  5012. ]
  5013. },
  5014. "license": [
  5015. "MIT"
  5016. ],
  5017. "authors": [
  5018. {
  5019. "name": "Ion Bazan",
  5020. "email": "ion.bazan@gmail.com"
  5021. },
  5022. {
  5023. "name": "Nicolas Grekas",
  5024. "email": "p@tchwork.com"
  5025. },
  5026. {
  5027. "name": "Symfony Community",
  5028. "homepage": "https://symfony.com/contributors"
  5029. }
  5030. ],
  5031. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  5032. "homepage": "https://symfony.com",
  5033. "keywords": [
  5034. "compatibility",
  5035. "polyfill",
  5036. "portable",
  5037. "shim"
  5038. ],
  5039. "time": "2024-09-09T11:45:10+00:00"
  5040. },
  5041. {
  5042. "name": "symfony/polyfill-php83",
  5043. "version": "v1.31.0",
  5044. "dist": {
  5045. "type": "zip",
  5046. "url": "https://mirrors.tencent.com/repository/composer/symfony/polyfill-php83/v1.31.0/symfony-polyfill-php83-v1.31.0.zip",
  5047. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  5048. "shasum": ""
  5049. },
  5050. "require": {
  5051. "php": ">=7.2"
  5052. },
  5053. "type": "library",
  5054. "extra": {
  5055. "thanks": {
  5056. "name": "symfony/polyfill",
  5057. "url": "https://github.com/symfony/polyfill"
  5058. }
  5059. },
  5060. "autoload": {
  5061. "files": [
  5062. "bootstrap.php"
  5063. ],
  5064. "psr-4": {
  5065. "Symfony\\Polyfill\\Php83\\": ""
  5066. },
  5067. "classmap": [
  5068. "Resources/stubs"
  5069. ]
  5070. },
  5071. "license": [
  5072. "MIT"
  5073. ],
  5074. "authors": [
  5075. {
  5076. "name": "Nicolas Grekas",
  5077. "email": "p@tchwork.com"
  5078. },
  5079. {
  5080. "name": "Symfony Community",
  5081. "homepage": "https://symfony.com/contributors"
  5082. }
  5083. ],
  5084. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  5085. "homepage": "https://symfony.com",
  5086. "keywords": [
  5087. "compatibility",
  5088. "polyfill",
  5089. "portable",
  5090. "shim"
  5091. ],
  5092. "time": "2024-09-09T11:45:10+00:00"
  5093. },
  5094. {
  5095. "name": "symfony/polyfill-uuid",
  5096. "version": "v1.31.0",
  5097. "dist": {
  5098. "type": "zip",
  5099. "url": "https://mirrors.tencent.com/repository/composer/symfony/polyfill-uuid/v1.31.0/symfony-polyfill-uuid-v1.31.0.zip",
  5100. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  5101. "shasum": ""
  5102. },
  5103. "require": {
  5104. "php": ">=7.2"
  5105. },
  5106. "provide": {
  5107. "ext-uuid": "*"
  5108. },
  5109. "suggest": {
  5110. "ext-uuid": "For best performance"
  5111. },
  5112. "type": "library",
  5113. "extra": {
  5114. "thanks": {
  5115. "name": "symfony/polyfill",
  5116. "url": "https://github.com/symfony/polyfill"
  5117. }
  5118. },
  5119. "autoload": {
  5120. "files": [
  5121. "bootstrap.php"
  5122. ],
  5123. "psr-4": {
  5124. "Symfony\\Polyfill\\Uuid\\": ""
  5125. }
  5126. },
  5127. "license": [
  5128. "MIT"
  5129. ],
  5130. "authors": [
  5131. {
  5132. "name": "Grégoire Pineau",
  5133. "email": "lyrixx@lyrixx.info"
  5134. },
  5135. {
  5136. "name": "Symfony Community",
  5137. "homepage": "https://symfony.com/contributors"
  5138. }
  5139. ],
  5140. "description": "Symfony polyfill for uuid functions",
  5141. "homepage": "https://symfony.com",
  5142. "keywords": [
  5143. "compatibility",
  5144. "polyfill",
  5145. "portable",
  5146. "uuid"
  5147. ],
  5148. "time": "2024-09-09T11:45:10+00:00"
  5149. },
  5150. {
  5151. "name": "symfony/process",
  5152. "version": "v6.4.12",
  5153. "dist": {
  5154. "type": "zip",
  5155. "url": "https://mirrors.tencent.com/repository/composer/symfony/process/v6.4.12/symfony-process-v6.4.12.zip",
  5156. "reference": "3f94e5f13ff58df371a7ead461b6e8068900fbb3",
  5157. "shasum": ""
  5158. },
  5159. "require": {
  5160. "php": ">=8.1"
  5161. },
  5162. "type": "library",
  5163. "autoload": {
  5164. "psr-4": {
  5165. "Symfony\\Component\\Process\\": ""
  5166. },
  5167. "exclude-from-classmap": [
  5168. "/Tests/"
  5169. ]
  5170. },
  5171. "license": [
  5172. "MIT"
  5173. ],
  5174. "authors": [
  5175. {
  5176. "name": "Fabien Potencier",
  5177. "email": "fabien@symfony.com"
  5178. },
  5179. {
  5180. "name": "Symfony Community",
  5181. "homepage": "https://symfony.com/contributors"
  5182. }
  5183. ],
  5184. "description": "Executes commands in sub-processes",
  5185. "homepage": "https://symfony.com",
  5186. "time": "2024-09-17T12:47:12+00:00"
  5187. },
  5188. {
  5189. "name": "symfony/routing",
  5190. "version": "v6.4.12",
  5191. "dist": {
  5192. "type": "zip",
  5193. "url": "https://mirrors.tencent.com/repository/composer/symfony/routing/v6.4.12/symfony-routing-v6.4.12.zip",
  5194. "reference": "a7c8036bd159486228dc9be3e846a00a0dda9f9f",
  5195. "shasum": ""
  5196. },
  5197. "require": {
  5198. "php": ">=8.1",
  5199. "symfony/deprecation-contracts": "^2.5|^3"
  5200. },
  5201. "conflict": {
  5202. "doctrine/annotations": "<1.12",
  5203. "symfony/config": "<6.2",
  5204. "symfony/dependency-injection": "<5.4",
  5205. "symfony/yaml": "<5.4"
  5206. },
  5207. "require-dev": {
  5208. "doctrine/annotations": "^1.12|^2",
  5209. "psr/log": "^1|^2|^3",
  5210. "symfony/config": "^6.2|^7.0",
  5211. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  5212. "symfony/expression-language": "^5.4|^6.0|^7.0",
  5213. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  5214. "symfony/yaml": "^5.4|^6.0|^7.0"
  5215. },
  5216. "type": "library",
  5217. "autoload": {
  5218. "psr-4": {
  5219. "Symfony\\Component\\Routing\\": ""
  5220. },
  5221. "exclude-from-classmap": [
  5222. "/Tests/"
  5223. ]
  5224. },
  5225. "license": [
  5226. "MIT"
  5227. ],
  5228. "authors": [
  5229. {
  5230. "name": "Fabien Potencier",
  5231. "email": "fabien@symfony.com"
  5232. },
  5233. {
  5234. "name": "Symfony Community",
  5235. "homepage": "https://symfony.com/contributors"
  5236. }
  5237. ],
  5238. "description": "Maps an HTTP request to a set of configuration variables",
  5239. "homepage": "https://symfony.com",
  5240. "keywords": [
  5241. "router",
  5242. "routing",
  5243. "uri",
  5244. "url"
  5245. ],
  5246. "time": "2024-09-20T08:32:26+00:00"
  5247. },
  5248. {
  5249. "name": "symfony/service-contracts",
  5250. "version": "v3.5.0",
  5251. "dist": {
  5252. "type": "zip",
  5253. "url": "https://mirrors.tencent.com/repository/composer/symfony/service-contracts/v3.5.0/symfony-service-contracts-v3.5.0.zip",
  5254. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  5255. "shasum": ""
  5256. },
  5257. "require": {
  5258. "php": ">=8.1",
  5259. "psr/container": "^1.1|^2.0",
  5260. "symfony/deprecation-contracts": "^2.5|^3"
  5261. },
  5262. "conflict": {
  5263. "ext-psr": "<1.1|>=2"
  5264. },
  5265. "type": "library",
  5266. "extra": {
  5267. "branch-alias": {
  5268. "dev-main": "3.5-dev"
  5269. },
  5270. "thanks": {
  5271. "name": "symfony/contracts",
  5272. "url": "https://github.com/symfony/contracts"
  5273. }
  5274. },
  5275. "autoload": {
  5276. "psr-4": {
  5277. "Symfony\\Contracts\\Service\\": ""
  5278. },
  5279. "exclude-from-classmap": [
  5280. "/Test/"
  5281. ]
  5282. },
  5283. "license": [
  5284. "MIT"
  5285. ],
  5286. "authors": [
  5287. {
  5288. "name": "Nicolas Grekas",
  5289. "email": "p@tchwork.com"
  5290. },
  5291. {
  5292. "name": "Symfony Community",
  5293. "homepage": "https://symfony.com/contributors"
  5294. }
  5295. ],
  5296. "description": "Generic abstractions related to writing services",
  5297. "homepage": "https://symfony.com",
  5298. "keywords": [
  5299. "abstractions",
  5300. "contracts",
  5301. "decoupling",
  5302. "interfaces",
  5303. "interoperability",
  5304. "standards"
  5305. ],
  5306. "time": "2024-04-18T09:32:20+00:00"
  5307. },
  5308. {
  5309. "name": "symfony/string",
  5310. "version": "v7.1.5",
  5311. "dist": {
  5312. "type": "zip",
  5313. "url": "https://mirrors.tencent.com/repository/composer/symfony/string/v7.1.5/symfony-string-v7.1.5.zip",
  5314. "reference": "d66f9c343fa894ec2037cc928381df90a7ad4306",
  5315. "shasum": ""
  5316. },
  5317. "require": {
  5318. "php": ">=8.2",
  5319. "symfony/polyfill-ctype": "~1.8",
  5320. "symfony/polyfill-intl-grapheme": "~1.0",
  5321. "symfony/polyfill-intl-normalizer": "~1.0",
  5322. "symfony/polyfill-mbstring": "~1.0"
  5323. },
  5324. "conflict": {
  5325. "symfony/translation-contracts": "<2.5"
  5326. },
  5327. "require-dev": {
  5328. "symfony/emoji": "^7.1",
  5329. "symfony/error-handler": "^6.4|^7.0",
  5330. "symfony/http-client": "^6.4|^7.0",
  5331. "symfony/intl": "^6.4|^7.0",
  5332. "symfony/translation-contracts": "^2.5|^3.0",
  5333. "symfony/var-exporter": "^6.4|^7.0"
  5334. },
  5335. "type": "library",
  5336. "autoload": {
  5337. "files": [
  5338. "Resources/functions.php"
  5339. ],
  5340. "psr-4": {
  5341. "Symfony\\Component\\String\\": ""
  5342. },
  5343. "exclude-from-classmap": [
  5344. "/Tests/"
  5345. ]
  5346. },
  5347. "license": [
  5348. "MIT"
  5349. ],
  5350. "authors": [
  5351. {
  5352. "name": "Nicolas Grekas",
  5353. "email": "p@tchwork.com"
  5354. },
  5355. {
  5356. "name": "Symfony Community",
  5357. "homepage": "https://symfony.com/contributors"
  5358. }
  5359. ],
  5360. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  5361. "homepage": "https://symfony.com",
  5362. "keywords": [
  5363. "grapheme",
  5364. "i18n",
  5365. "string",
  5366. "unicode",
  5367. "utf-8",
  5368. "utf8"
  5369. ],
  5370. "time": "2024-09-20T08:28:38+00:00"
  5371. },
  5372. {
  5373. "name": "symfony/translation",
  5374. "version": "v6.4.12",
  5375. "dist": {
  5376. "type": "zip",
  5377. "url": "https://mirrors.tencent.com/repository/composer/symfony/translation/v6.4.12/symfony-translation-v6.4.12.zip",
  5378. "reference": "cf8360b8352b086be620fae8342c4d96e391a489",
  5379. "shasum": ""
  5380. },
  5381. "require": {
  5382. "php": ">=8.1",
  5383. "symfony/deprecation-contracts": "^2.5|^3",
  5384. "symfony/polyfill-mbstring": "~1.0",
  5385. "symfony/translation-contracts": "^2.5|^3.0"
  5386. },
  5387. "conflict": {
  5388. "symfony/config": "<5.4",
  5389. "symfony/console": "<5.4",
  5390. "symfony/dependency-injection": "<5.4",
  5391. "symfony/http-client-contracts": "<2.5",
  5392. "symfony/http-kernel": "<5.4",
  5393. "symfony/service-contracts": "<2.5",
  5394. "symfony/twig-bundle": "<5.4",
  5395. "symfony/yaml": "<5.4"
  5396. },
  5397. "provide": {
  5398. "symfony/translation-implementation": "2.3|3.0"
  5399. },
  5400. "require-dev": {
  5401. "nikic/php-parser": "^4.18|^5.0",
  5402. "psr/log": "^1|^2|^3",
  5403. "symfony/config": "^5.4|^6.0|^7.0",
  5404. "symfony/console": "^5.4|^6.0|^7.0",
  5405. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  5406. "symfony/finder": "^5.4|^6.0|^7.0",
  5407. "symfony/http-client-contracts": "^2.5|^3.0",
  5408. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  5409. "symfony/intl": "^5.4|^6.0|^7.0",
  5410. "symfony/polyfill-intl-icu": "^1.21",
  5411. "symfony/routing": "^5.4|^6.0|^7.0",
  5412. "symfony/service-contracts": "^2.5|^3",
  5413. "symfony/yaml": "^5.4|^6.0|^7.0"
  5414. },
  5415. "type": "library",
  5416. "autoload": {
  5417. "files": [
  5418. "Resources/functions.php"
  5419. ],
  5420. "psr-4": {
  5421. "Symfony\\Component\\Translation\\": ""
  5422. },
  5423. "exclude-from-classmap": [
  5424. "/Tests/"
  5425. ]
  5426. },
  5427. "license": [
  5428. "MIT"
  5429. ],
  5430. "authors": [
  5431. {
  5432. "name": "Fabien Potencier",
  5433. "email": "fabien@symfony.com"
  5434. },
  5435. {
  5436. "name": "Symfony Community",
  5437. "homepage": "https://symfony.com/contributors"
  5438. }
  5439. ],
  5440. "description": "Provides tools to internationalize your application",
  5441. "homepage": "https://symfony.com",
  5442. "time": "2024-09-16T06:02:54+00:00"
  5443. },
  5444. {
  5445. "name": "symfony/translation-contracts",
  5446. "version": "v3.5.0",
  5447. "dist": {
  5448. "type": "zip",
  5449. "url": "https://mirrors.tencent.com/repository/composer/symfony/translation-contracts/v3.5.0/symfony-translation-contracts-v3.5.0.zip",
  5450. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  5451. "shasum": ""
  5452. },
  5453. "require": {
  5454. "php": ">=8.1"
  5455. },
  5456. "type": "library",
  5457. "extra": {
  5458. "branch-alias": {
  5459. "dev-main": "3.5-dev"
  5460. },
  5461. "thanks": {
  5462. "name": "symfony/contracts",
  5463. "url": "https://github.com/symfony/contracts"
  5464. }
  5465. },
  5466. "autoload": {
  5467. "psr-4": {
  5468. "Symfony\\Contracts\\Translation\\": ""
  5469. },
  5470. "exclude-from-classmap": [
  5471. "/Test/"
  5472. ]
  5473. },
  5474. "license": [
  5475. "MIT"
  5476. ],
  5477. "authors": [
  5478. {
  5479. "name": "Nicolas Grekas",
  5480. "email": "p@tchwork.com"
  5481. },
  5482. {
  5483. "name": "Symfony Community",
  5484. "homepage": "https://symfony.com/contributors"
  5485. }
  5486. ],
  5487. "description": "Generic abstractions related to translation",
  5488. "homepage": "https://symfony.com",
  5489. "keywords": [
  5490. "abstractions",
  5491. "contracts",
  5492. "decoupling",
  5493. "interfaces",
  5494. "interoperability",
  5495. "standards"
  5496. ],
  5497. "time": "2024-04-18T09:32:20+00:00"
  5498. },
  5499. {
  5500. "name": "symfony/uid",
  5501. "version": "v6.4.12",
  5502. "dist": {
  5503. "type": "zip",
  5504. "url": "https://mirrors.tencent.com/repository/composer/symfony/uid/v6.4.12/symfony-uid-v6.4.12.zip",
  5505. "reference": "2f16054e0a9b194b8ca581d4a64eee3f7d4a9d4d",
  5506. "shasum": ""
  5507. },
  5508. "require": {
  5509. "php": ">=8.1",
  5510. "symfony/polyfill-uuid": "^1.15"
  5511. },
  5512. "require-dev": {
  5513. "symfony/console": "^5.4|^6.0|^7.0"
  5514. },
  5515. "type": "library",
  5516. "autoload": {
  5517. "psr-4": {
  5518. "Symfony\\Component\\Uid\\": ""
  5519. },
  5520. "exclude-from-classmap": [
  5521. "/Tests/"
  5522. ]
  5523. },
  5524. "license": [
  5525. "MIT"
  5526. ],
  5527. "authors": [
  5528. {
  5529. "name": "Grégoire Pineau",
  5530. "email": "lyrixx@lyrixx.info"
  5531. },
  5532. {
  5533. "name": "Nicolas Grekas",
  5534. "email": "p@tchwork.com"
  5535. },
  5536. {
  5537. "name": "Symfony Community",
  5538. "homepage": "https://symfony.com/contributors"
  5539. }
  5540. ],
  5541. "description": "Provides an object-oriented API to generate and represent UIDs",
  5542. "homepage": "https://symfony.com",
  5543. "keywords": [
  5544. "UID",
  5545. "ulid",
  5546. "uuid"
  5547. ],
  5548. "time": "2024-09-20T08:32:26+00:00"
  5549. },
  5550. {
  5551. "name": "symfony/var-dumper",
  5552. "version": "v6.4.11",
  5553. "dist": {
  5554. "type": "zip",
  5555. "url": "https://mirrors.tencent.com/repository/composer/symfony/var-dumper/v6.4.11/symfony-var-dumper-v6.4.11.zip",
  5556. "reference": "ee14c8254a480913268b1e3b1cba8045ed122694",
  5557. "shasum": ""
  5558. },
  5559. "require": {
  5560. "php": ">=8.1",
  5561. "symfony/deprecation-contracts": "^2.5|^3",
  5562. "symfony/polyfill-mbstring": "~1.0"
  5563. },
  5564. "conflict": {
  5565. "symfony/console": "<5.4"
  5566. },
  5567. "require-dev": {
  5568. "ext-iconv": "*",
  5569. "symfony/console": "^5.4|^6.0|^7.0",
  5570. "symfony/error-handler": "^6.3|^7.0",
  5571. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  5572. "symfony/process": "^5.4|^6.0|^7.0",
  5573. "symfony/uid": "^5.4|^6.0|^7.0",
  5574. "twig/twig": "^2.13|^3.0.4"
  5575. },
  5576. "bin": [
  5577. "Resources/bin/var-dump-server"
  5578. ],
  5579. "type": "library",
  5580. "autoload": {
  5581. "files": [
  5582. "Resources/functions/dump.php"
  5583. ],
  5584. "psr-4": {
  5585. "Symfony\\Component\\VarDumper\\": ""
  5586. },
  5587. "exclude-from-classmap": [
  5588. "/Tests/"
  5589. ]
  5590. },
  5591. "license": [
  5592. "MIT"
  5593. ],
  5594. "authors": [
  5595. {
  5596. "name": "Nicolas Grekas",
  5597. "email": "p@tchwork.com"
  5598. },
  5599. {
  5600. "name": "Symfony Community",
  5601. "homepage": "https://symfony.com/contributors"
  5602. }
  5603. ],
  5604. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  5605. "homepage": "https://symfony.com",
  5606. "keywords": [
  5607. "debug",
  5608. "dump"
  5609. ],
  5610. "time": "2024-08-30T16:03:21+00:00"
  5611. },
  5612. {
  5613. "name": "thenorthmemory/xml",
  5614. "version": "1.1.1",
  5615. "dist": {
  5616. "type": "zip",
  5617. "url": "https://mirrors.tencent.com/repository/composer/thenorthmemory/xml/1.1.1/thenorthmemory-xml-1.1.1.zip",
  5618. "reference": "6f50c63450a0b098772423f8bdc3c4ad2c4c30bb",
  5619. "shasum": ""
  5620. },
  5621. "require": {
  5622. "ext-libxml": "*",
  5623. "ext-simplexml": "*",
  5624. "php": ">=7.1.2"
  5625. },
  5626. "require-dev": {
  5627. "phpstan/phpstan": "^0.12.89 || ^1.0",
  5628. "phpunit/phpunit": "^7.5 || ^8.5.16 || ^9.3.5"
  5629. },
  5630. "type": "library",
  5631. "autoload": {
  5632. "psr-4": {
  5633. "TheNorthMemory\\Xml\\": "src/"
  5634. }
  5635. },
  5636. "license": [
  5637. "Apache-2.0"
  5638. ],
  5639. "authors": [
  5640. {
  5641. "name": "James ZHANG",
  5642. "homepage": "https://github.com/TheNorthMemory"
  5643. }
  5644. ],
  5645. "description": "A wrapper of the XML parser and builder",
  5646. "homepage": "https://github.com/TheNorthMemory/xml",
  5647. "keywords": [
  5648. "xml-builder",
  5649. "xml-parser"
  5650. ],
  5651. "time": "2023-01-15T06:01:13+00:00"
  5652. },
  5653. {
  5654. "name": "tijsverkoyen/css-to-inline-styles",
  5655. "version": "v2.2.7",
  5656. "dist": {
  5657. "type": "zip",
  5658. "url": "https://mirrors.tencent.com/repository/composer/tijsverkoyen/css-to-inline-styles/v2.2.7/tijsverkoyen-css-to-inline-styles-v2.2.7.zip",
  5659. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb",
  5660. "shasum": ""
  5661. },
  5662. "require": {
  5663. "ext-dom": "*",
  5664. "ext-libxml": "*",
  5665. "php": "^5.5 || ^7.0 || ^8.0",
  5666. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0"
  5667. },
  5668. "require-dev": {
  5669. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  5670. },
  5671. "type": "library",
  5672. "extra": {
  5673. "branch-alias": {
  5674. "dev-master": "2.2.x-dev"
  5675. }
  5676. },
  5677. "autoload": {
  5678. "psr-4": {
  5679. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  5680. }
  5681. },
  5682. "license": [
  5683. "BSD-3-Clause"
  5684. ],
  5685. "authors": [
  5686. {
  5687. "name": "Tijs Verkoyen",
  5688. "email": "css_to_inline_styles@verkoyen.eu",
  5689. "role": "Developer"
  5690. }
  5691. ],
  5692. "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.",
  5693. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  5694. "time": "2023-12-08T13:03:43+00:00"
  5695. },
  5696. {
  5697. "name": "tucker-eric/eloquentfilter",
  5698. "version": "3.4.0",
  5699. "dist": {
  5700. "type": "zip",
  5701. "url": "https://mirrors.tencent.com/repository/composer/tucker-eric/eloquentfilter/3.4.0/tucker-eric-eloquentfilter-3.4.0.zip",
  5702. "reference": "38c1dee5ce2a1fd13d47e7c5567ff4c2e517603e",
  5703. "shasum": ""
  5704. },
  5705. "require": {
  5706. "illuminate/config": "~6.0|~7.0|~8.0|~9.0|~10.0|~11.0",
  5707. "illuminate/console": "~6.0|~7.0|~8.0|~9.0|~10.0|~11.0",
  5708. "illuminate/database": "~6.0|~7.0|~8.0|~9.0|~10.0|~11.0",
  5709. "illuminate/filesystem": "~6.0|~7.0|~8.0|~9.0|~10.0|~11.0",
  5710. "illuminate/pagination": "~6.0|~7.0|~8.0|~9.0|~10.0|~11.0",
  5711. "illuminate/support": "~6.0|~7.0|~8.0|~9.0|~10.0|~11.0",
  5712. "php": ">=7.2"
  5713. },
  5714. "require-dev": {
  5715. "mockery/mockery": "^1.3",
  5716. "phpunit/phpunit": "^8"
  5717. },
  5718. "type": "library",
  5719. "extra": {
  5720. "laravel": {
  5721. "providers": [
  5722. "EloquentFilter\\ServiceProvider"
  5723. ]
  5724. }
  5725. },
  5726. "autoload": {
  5727. "psr-4": {
  5728. "EloquentFilter\\": "src/"
  5729. }
  5730. },
  5731. "license": [
  5732. "MIT"
  5733. ],
  5734. "authors": [
  5735. {
  5736. "name": "Eric Tucker",
  5737. "email": "tucker.ericm@gmail.com"
  5738. }
  5739. ],
  5740. "description": "An Eloquent way to filter Eloquent Models",
  5741. "keywords": [
  5742. "eloquent",
  5743. "filter",
  5744. "laravel",
  5745. "model",
  5746. "query",
  5747. "search"
  5748. ],
  5749. "time": "2024-05-07T20:28:58+00:00"
  5750. },
  5751. {
  5752. "name": "ua-parser/uap-php",
  5753. "version": "v3.9.14",
  5754. "dist": {
  5755. "type": "zip",
  5756. "url": "https://mirrors.tencent.com/repository/composer/ua-parser/uap-php/v3.9.14/ua-parser-uap-php-v3.9.14.zip",
  5757. "reference": "b796c5ea5df588e65aeb4e2c6cce3811dec4fed6",
  5758. "shasum": ""
  5759. },
  5760. "require": {
  5761. "composer/ca-bundle": "^1.1",
  5762. "php": "^7.2 || ^8.0"
  5763. },
  5764. "require-dev": {
  5765. "phpstan/phpstan": "^0.12.33",
  5766. "phpunit/phpunit": "^8 || ^9",
  5767. "symfony/console": "^3.4 || ^4.2 || ^4.3 || ^5.0",
  5768. "symfony/filesystem": "^3.4 || ^4.2 || ^4.3 || ^5.0",
  5769. "symfony/finder": "^3.4 || ^4.2 || ^4.3 || ^5.0",
  5770. "symfony/yaml": "^3.4 || ^4.2 || ^4.3 || ^5.0",
  5771. "vimeo/psalm": "^3.12"
  5772. },
  5773. "suggest": {
  5774. "symfony/console": "Required for CLI usage - ^3.4 || ^4.3 || ^5.0",
  5775. "symfony/filesystem": "Required for CLI usage - ^3.4 || ^4.3 || ^5.0",
  5776. "symfony/finder": "Required for CLI usage - ^3.4 || ^4.3 || ^5.0",
  5777. "symfony/yaml": "Required for CLI usage - ^3.4 || ^4.3 || ^5.0"
  5778. },
  5779. "bin": [
  5780. "bin/uaparser"
  5781. ],
  5782. "type": "library",
  5783. "autoload": {
  5784. "psr-4": {
  5785. "UAParser\\": "src"
  5786. }
  5787. },
  5788. "license": [
  5789. "MIT"
  5790. ],
  5791. "authors": [
  5792. {
  5793. "name": "Dave Olsen",
  5794. "email": "dmolsen@gmail.com"
  5795. },
  5796. {
  5797. "name": "Lars Strojny",
  5798. "email": "lars@strojny.net"
  5799. }
  5800. ],
  5801. "description": "A multi-language port of Browserscope's user agent parser.",
  5802. "time": "2020-10-02T23:36:20+00:00"
  5803. },
  5804. {
  5805. "name": "vlucas/phpdotenv",
  5806. "version": "v5.6.1",
  5807. "dist": {
  5808. "type": "zip",
  5809. "url": "https://mirrors.tencent.com/repository/composer/vlucas/phpdotenv/v5.6.1/vlucas-phpdotenv-v5.6.1.zip",
  5810. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  5811. "shasum": ""
  5812. },
  5813. "require": {
  5814. "ext-pcre": "*",
  5815. "graham-campbell/result-type": "^1.1.3",
  5816. "php": "^7.2.5 || ^8.0",
  5817. "phpoption/phpoption": "^1.9.3",
  5818. "symfony/polyfill-ctype": "^1.24",
  5819. "symfony/polyfill-mbstring": "^1.24",
  5820. "symfony/polyfill-php80": "^1.24"
  5821. },
  5822. "require-dev": {
  5823. "bamarni/composer-bin-plugin": "^1.8.2",
  5824. "ext-filter": "*",
  5825. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  5826. },
  5827. "suggest": {
  5828. "ext-filter": "Required to use the boolean validator."
  5829. },
  5830. "type": "library",
  5831. "extra": {
  5832. "bamarni-bin": {
  5833. "bin-links": true,
  5834. "forward-command": false
  5835. },
  5836. "branch-alias": {
  5837. "dev-master": "5.6-dev"
  5838. }
  5839. },
  5840. "autoload": {
  5841. "psr-4": {
  5842. "Dotenv\\": "src/"
  5843. }
  5844. },
  5845. "license": [
  5846. "BSD-3-Clause"
  5847. ],
  5848. "authors": [
  5849. {
  5850. "name": "Graham Campbell",
  5851. "email": "hello@gjcampbell.co.uk",
  5852. "homepage": "https://github.com/GrahamCampbell"
  5853. },
  5854. {
  5855. "name": "Vance Lucas",
  5856. "email": "vance@vancelucas.com",
  5857. "homepage": "https://github.com/vlucas"
  5858. }
  5859. ],
  5860. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  5861. "keywords": [
  5862. "dotenv",
  5863. "env",
  5864. "environment"
  5865. ],
  5866. "time": "2024-07-20T21:52:34+00:00"
  5867. },
  5868. {
  5869. "name": "voku/portable-ascii",
  5870. "version": "2.0.1",
  5871. "dist": {
  5872. "type": "zip",
  5873. "url": "https://mirrors.tencent.com/repository/composer/voku/portable-ascii/2.0.1/voku-portable-ascii-2.0.1.zip",
  5874. "reference": "b56450eed252f6801410d810c8e1727224ae0743",
  5875. "shasum": ""
  5876. },
  5877. "require": {
  5878. "php": ">=7.0.0"
  5879. },
  5880. "require-dev": {
  5881. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  5882. },
  5883. "suggest": {
  5884. "ext-intl": "Use Intl for transliterator_transliterate() support"
  5885. },
  5886. "type": "library",
  5887. "autoload": {
  5888. "psr-4": {
  5889. "voku\\": "src/voku/"
  5890. }
  5891. },
  5892. "license": [
  5893. "MIT"
  5894. ],
  5895. "authors": [
  5896. {
  5897. "name": "Lars Moelleken",
  5898. "homepage": "http://www.moelleken.org/"
  5899. }
  5900. ],
  5901. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  5902. "homepage": "https://github.com/voku/portable-ascii",
  5903. "keywords": [
  5904. "ascii",
  5905. "clean",
  5906. "php"
  5907. ],
  5908. "time": "2022-03-08T17:03:00+00:00"
  5909. },
  5910. {
  5911. "name": "webmozart/assert",
  5912. "version": "1.11.0",
  5913. "dist": {
  5914. "type": "zip",
  5915. "url": "https://mirrors.tencent.com/repository/composer/webmozart/assert/1.11.0/webmozart-assert-1.11.0.zip",
  5916. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  5917. "shasum": ""
  5918. },
  5919. "require": {
  5920. "ext-ctype": "*",
  5921. "php": "^7.2 || ^8.0"
  5922. },
  5923. "conflict": {
  5924. "phpstan/phpstan": "<0.12.20",
  5925. "vimeo/psalm": "<4.6.1 || 4.6.2"
  5926. },
  5927. "require-dev": {
  5928. "phpunit/phpunit": "^8.5.13"
  5929. },
  5930. "type": "library",
  5931. "extra": {
  5932. "branch-alias": {
  5933. "dev-master": "1.10-dev"
  5934. }
  5935. },
  5936. "autoload": {
  5937. "psr-4": {
  5938. "Webmozart\\Assert\\": "src/"
  5939. }
  5940. },
  5941. "license": [
  5942. "MIT"
  5943. ],
  5944. "authors": [
  5945. {
  5946. "name": "Bernhard Schussek",
  5947. "email": "bschussek@gmail.com"
  5948. }
  5949. ],
  5950. "description": "Assertions to validate method input/output with nice error messages.",
  5951. "keywords": [
  5952. "assert",
  5953. "check",
  5954. "validate"
  5955. ],
  5956. "time": "2022-06-03T18:03:27+00:00"
  5957. }
  5958. ],
  5959. "packages-dev": [
  5960. {
  5961. "name": "archtechx/enums",
  5962. "version": "v1.1.0",
  5963. "dist": {
  5964. "type": "zip",
  5965. "url": "https://mirrors.tencent.com/repository/composer/archtechx/enums/v1.1.0/archtechx-enums-v1.1.0.zip",
  5966. "reference": "37326d5e26cdfcc2810f4664cdd625ea4fd528d7",
  5967. "shasum": ""
  5968. },
  5969. "require": {
  5970. "php": "^8.1"
  5971. },
  5972. "require-dev": {
  5973. "larastan/larastan": "^2.4",
  5974. "orchestra/testbench": "^8.0",
  5975. "pestphp/pest": "^2.0",
  5976. "pestphp/pest-plugin-laravel": "^2.0"
  5977. },
  5978. "type": "library",
  5979. "autoload": {
  5980. "psr-4": {
  5981. "ArchTech\\Enums\\": "src/"
  5982. }
  5983. },
  5984. "license": [
  5985. "MIT"
  5986. ],
  5987. "authors": [
  5988. {
  5989. "name": "Samuel Štancl",
  5990. "email": "samuel@archte.ch"
  5991. }
  5992. ],
  5993. "description": "Helpers for making PHP enums more lovable.",
  5994. "time": "2024-07-15T14:28:34+00:00"
  5995. },
  5996. {
  5997. "name": "composer/class-map-generator",
  5998. "version": "1.3.4",
  5999. "dist": {
  6000. "type": "zip",
  6001. "url": "https://mirrors.tencent.com/repository/composer/composer/class-map-generator/1.3.4/composer-class-map-generator-1.3.4.zip",
  6002. "reference": "b1b3fd0b4eaf3ddf3ee230bc340bf3fff454a1a3",
  6003. "shasum": ""
  6004. },
  6005. "require": {
  6006. "composer/pcre": "^2.1 || ^3.1",
  6007. "php": "^7.2 || ^8.0",
  6008. "symfony/finder": "^4.4 || ^5.3 || ^6 || ^7"
  6009. },
  6010. "require-dev": {
  6011. "phpstan/phpstan": "^1.6",
  6012. "phpstan/phpstan-deprecation-rules": "^1",
  6013. "phpstan/phpstan-phpunit": "^1",
  6014. "phpstan/phpstan-strict-rules": "^1.1",
  6015. "symfony/filesystem": "^5.4 || ^6",
  6016. "symfony/phpunit-bridge": "^5"
  6017. },
  6018. "type": "library",
  6019. "extra": {
  6020. "branch-alias": {
  6021. "dev-main": "1.x-dev"
  6022. }
  6023. },
  6024. "autoload": {
  6025. "psr-4": {
  6026. "Composer\\ClassMapGenerator\\": "src"
  6027. }
  6028. },
  6029. "license": [
  6030. "MIT"
  6031. ],
  6032. "authors": [
  6033. {
  6034. "name": "Jordi Boggiano",
  6035. "email": "j.boggiano@seld.be",
  6036. "homepage": "https://seld.be"
  6037. }
  6038. ],
  6039. "description": "Utilities to scan PHP code and generate class maps.",
  6040. "keywords": [
  6041. "classmap"
  6042. ],
  6043. "time": "2024-06-12T14:13:04+00:00"
  6044. },
  6045. {
  6046. "name": "composer/pcre",
  6047. "version": "3.3.1",
  6048. "dist": {
  6049. "type": "zip",
  6050. "url": "https://mirrors.tencent.com/repository/composer/composer/pcre/3.3.1/composer-pcre-3.3.1.zip",
  6051. "reference": "63aaeac21d7e775ff9bc9d45021e1745c97521c4",
  6052. "shasum": ""
  6053. },
  6054. "require": {
  6055. "php": "^7.4 || ^8.0"
  6056. },
  6057. "conflict": {
  6058. "phpstan/phpstan": "<1.11.10"
  6059. },
  6060. "require-dev": {
  6061. "phpstan/phpstan": "^1.11.10",
  6062. "phpstan/phpstan-strict-rules": "^1.1",
  6063. "phpunit/phpunit": "^8 || ^9"
  6064. },
  6065. "type": "library",
  6066. "extra": {
  6067. "branch-alias": {
  6068. "dev-main": "3.x-dev"
  6069. },
  6070. "phpstan": {
  6071. "includes": [
  6072. "extension.neon"
  6073. ]
  6074. }
  6075. },
  6076. "autoload": {
  6077. "psr-4": {
  6078. "Composer\\Pcre\\": "src"
  6079. }
  6080. },
  6081. "license": [
  6082. "MIT"
  6083. ],
  6084. "authors": [
  6085. {
  6086. "name": "Jordi Boggiano",
  6087. "email": "j.boggiano@seld.be",
  6088. "homepage": "http://seld.be"
  6089. }
  6090. ],
  6091. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  6092. "keywords": [
  6093. "PCRE",
  6094. "preg",
  6095. "regex",
  6096. "regular expression"
  6097. ],
  6098. "time": "2024-08-27T18:44:43+00:00"
  6099. },
  6100. {
  6101. "name": "dragon-code/contracts",
  6102. "version": "2.23.0",
  6103. "dist": {
  6104. "type": "zip",
  6105. "url": "https://mirrors.tencent.com/repository/composer/dragon-code/contracts/2.23.0/dragon-code-contracts-2.23.0.zip",
  6106. "reference": "44dbad923f152e0dc2699fbac2d33b65dd6a8f7d",
  6107. "shasum": ""
  6108. },
  6109. "require": {
  6110. "php": "^7.2.5 || ^8.0",
  6111. "psr/http-message": "^1.0.1 || ^2.0",
  6112. "symfony/http-kernel": "^4.0 || ^5.0 || ^6.0 || ^7.0",
  6113. "symfony/polyfill-php80": "^1.23"
  6114. },
  6115. "conflict": {
  6116. "andrey-helldar/contracts": "*"
  6117. },
  6118. "require-dev": {
  6119. "illuminate/database": "^10.0 || ^11.0",
  6120. "phpdocumentor/reflection-docblock": "^5.0"
  6121. },
  6122. "type": "library",
  6123. "autoload": {
  6124. "psr-4": {
  6125. "DragonCode\\Contracts\\": "src"
  6126. }
  6127. },
  6128. "license": [
  6129. "MIT"
  6130. ],
  6131. "authors": [
  6132. {
  6133. "name": "Andrey Helldar",
  6134. "email": "helldar@dragon-code.pro",
  6135. "homepage": "https://dragon-code.pro"
  6136. }
  6137. ],
  6138. "description": "A set of contracts for any project",
  6139. "keywords": [
  6140. "contracts",
  6141. "interfaces"
  6142. ],
  6143. "time": "2024-03-11T20:15:12+00:00"
  6144. },
  6145. {
  6146. "name": "dragon-code/pretty-array",
  6147. "version": "v4.1.0",
  6148. "dist": {
  6149. "type": "zip",
  6150. "url": "https://mirrors.tencent.com/repository/composer/dragon-code/pretty-array/v4.1.0/dragon-code-pretty-array-v4.1.0.zip",
  6151. "reference": "6c84e2454491b414efbd37985c322712cdf9012f",
  6152. "shasum": ""
  6153. },
  6154. "require": {
  6155. "dragon-code/contracts": "^2.20",
  6156. "dragon-code/support": "^6.11.2",
  6157. "ext-dom": "*",
  6158. "ext-mbstring": "*",
  6159. "php": "^8.0"
  6160. },
  6161. "require-dev": {
  6162. "phpunit/phpunit": "^9.6 || ^10.2"
  6163. },
  6164. "suggest": {
  6165. "symfony/thanks": "Give thanks (in the form of a GitHub) to your fellow PHP package maintainers"
  6166. },
  6167. "type": "library",
  6168. "autoload": {
  6169. "psr-4": {
  6170. "DragonCode\\PrettyArray\\": "src"
  6171. }
  6172. },
  6173. "license": [
  6174. "MIT"
  6175. ],
  6176. "authors": [
  6177. {
  6178. "name": "Andrey Helldar",
  6179. "email": "helldar@dragon-code.pro",
  6180. "homepage": "https://github.com/andrey-helldar"
  6181. }
  6182. ],
  6183. "description": "Simple conversion of an array to a pretty view",
  6184. "keywords": [
  6185. "andrey helldar",
  6186. "array",
  6187. "dragon",
  6188. "dragon code",
  6189. "pretty",
  6190. "pretty array"
  6191. ],
  6192. "time": "2023-06-02T11:37:44+00:00"
  6193. },
  6194. {
  6195. "name": "dragon-code/support",
  6196. "version": "6.15.0",
  6197. "dist": {
  6198. "type": "zip",
  6199. "url": "https://mirrors.tencent.com/repository/composer/dragon-code/support/6.15.0/dragon-code-support-6.15.0.zip",
  6200. "reference": "087d7baaa963cdbb24e901dc27e10cdc31c2529c",
  6201. "shasum": ""
  6202. },
  6203. "require": {
  6204. "dragon-code/contracts": "^2.22.0",
  6205. "ext-bcmath": "*",
  6206. "ext-ctype": "*",
  6207. "ext-dom": "*",
  6208. "ext-json": "*",
  6209. "ext-mbstring": "*",
  6210. "php": "^8.1",
  6211. "psr/http-message": "^1.0.1 || ^2.0",
  6212. "symfony/polyfill-php81": "^1.25",
  6213. "voku/portable-ascii": "^1.4.8 || ^2.0.1"
  6214. },
  6215. "conflict": {
  6216. "andrey-helldar/support": "*"
  6217. },
  6218. "require-dev": {
  6219. "illuminate/contracts": "^9.0 || ^10.0 || ^11.0",
  6220. "phpunit/phpunit": "^9.6 || ^11.0",
  6221. "symfony/var-dumper": "^6.0 || ^7.0"
  6222. },
  6223. "suggest": {
  6224. "dragon-code/laravel-support": "Various helper files for the Laravel and Lumen frameworks",
  6225. "symfony/thanks": "Give thanks (in the form of a GitHub) to your fellow PHP package maintainers"
  6226. },
  6227. "type": "library",
  6228. "extra": {
  6229. "dragon-code": {
  6230. "docs-generator": {
  6231. "preview": {
  6232. "brand": "php",
  6233. "vendor": "The Dragon Code"
  6234. }
  6235. }
  6236. }
  6237. },
  6238. "autoload": {
  6239. "psr-4": {
  6240. "DragonCode\\Support\\": "src"
  6241. }
  6242. },
  6243. "license": [
  6244. "MIT"
  6245. ],
  6246. "authors": [
  6247. {
  6248. "name": "Andrey Helldar",
  6249. "email": "helldar@dragon-code.pro",
  6250. "homepage": "https://dragon-code.pro"
  6251. }
  6252. ],
  6253. "description": "Support package is a collection of helpers and tools for any project.",
  6254. "keywords": [
  6255. "dragon",
  6256. "dragon-code",
  6257. "framework",
  6258. "helper",
  6259. "helpers",
  6260. "laravel",
  6261. "php",
  6262. "support",
  6263. "symfony",
  6264. "yii",
  6265. "yii2"
  6266. ],
  6267. "time": "2024-09-07T13:27:37+00:00"
  6268. },
  6269. {
  6270. "name": "fakerphp/faker",
  6271. "version": "v1.23.1",
  6272. "dist": {
  6273. "type": "zip",
  6274. "url": "https://mirrors.tencent.com/repository/composer/fakerphp/faker/v1.23.1/fakerphp-faker-v1.23.1.zip",
  6275. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b",
  6276. "shasum": ""
  6277. },
  6278. "require": {
  6279. "php": "^7.4 || ^8.0",
  6280. "psr/container": "^1.0 || ^2.0",
  6281. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  6282. },
  6283. "conflict": {
  6284. "fzaninotto/faker": "*"
  6285. },
  6286. "require-dev": {
  6287. "bamarni/composer-bin-plugin": "^1.4.1",
  6288. "doctrine/persistence": "^1.3 || ^2.0",
  6289. "ext-intl": "*",
  6290. "phpunit/phpunit": "^9.5.26",
  6291. "symfony/phpunit-bridge": "^5.4.16"
  6292. },
  6293. "suggest": {
  6294. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  6295. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  6296. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  6297. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  6298. "ext-mbstring": "Required for multibyte Unicode string functionality."
  6299. },
  6300. "type": "library",
  6301. "autoload": {
  6302. "psr-4": {
  6303. "Faker\\": "src/Faker/"
  6304. }
  6305. },
  6306. "license": [
  6307. "MIT"
  6308. ],
  6309. "authors": [
  6310. {
  6311. "name": "François Zaninotto"
  6312. }
  6313. ],
  6314. "description": "Faker is a PHP library that generates fake data for you.",
  6315. "keywords": [
  6316. "data",
  6317. "faker",
  6318. "fixtures"
  6319. ],
  6320. "time": "2024-01-02T13:46:09+00:00"
  6321. },
  6322. {
  6323. "name": "filp/whoops",
  6324. "version": "2.16.0",
  6325. "dist": {
  6326. "type": "zip",
  6327. "url": "https://mirrors.tencent.com/repository/composer/filp/whoops/2.16.0/filp-whoops-2.16.0.zip",
  6328. "reference": "befcdc0e5dce67252aa6322d82424be928214fa2",
  6329. "shasum": ""
  6330. },
  6331. "require": {
  6332. "php": "^7.1 || ^8.0",
  6333. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  6334. },
  6335. "require-dev": {
  6336. "mockery/mockery": "^1.0",
  6337. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.3",
  6338. "symfony/var-dumper": "^4.0 || ^5.0"
  6339. },
  6340. "suggest": {
  6341. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  6342. "whoops/soap": "Formats errors as SOAP responses"
  6343. },
  6344. "type": "library",
  6345. "extra": {
  6346. "branch-alias": {
  6347. "dev-master": "2.7-dev"
  6348. }
  6349. },
  6350. "autoload": {
  6351. "psr-4": {
  6352. "Whoops\\": "src/Whoops/"
  6353. }
  6354. },
  6355. "license": [
  6356. "MIT"
  6357. ],
  6358. "authors": [
  6359. {
  6360. "name": "Filipe Dobreira",
  6361. "homepage": "https://github.com/filp",
  6362. "role": "Developer"
  6363. }
  6364. ],
  6365. "description": "php error handling for cool kids",
  6366. "homepage": "https://filp.github.io/whoops/",
  6367. "keywords": [
  6368. "error",
  6369. "exception",
  6370. "handling",
  6371. "library",
  6372. "throwable",
  6373. "whoops"
  6374. ],
  6375. "time": "2024-09-25T12:00:00+00:00"
  6376. },
  6377. {
  6378. "name": "hamcrest/hamcrest-php",
  6379. "version": "v2.0.1",
  6380. "dist": {
  6381. "type": "zip",
  6382. "url": "https://mirrors.tencent.com/repository/composer/hamcrest/hamcrest-php/v2.0.1/hamcrest-hamcrest-php-v2.0.1.zip",
  6383. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  6384. "shasum": ""
  6385. },
  6386. "require": {
  6387. "php": "^5.3|^7.0|^8.0"
  6388. },
  6389. "replace": {
  6390. "cordoval/hamcrest-php": "*",
  6391. "davedevelopment/hamcrest-php": "*",
  6392. "kodova/hamcrest-php": "*"
  6393. },
  6394. "require-dev": {
  6395. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  6396. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  6397. },
  6398. "type": "library",
  6399. "extra": {
  6400. "branch-alias": {
  6401. "dev-master": "2.1-dev"
  6402. }
  6403. },
  6404. "autoload": {
  6405. "classmap": [
  6406. "hamcrest"
  6407. ]
  6408. },
  6409. "license": [
  6410. "BSD-3-Clause"
  6411. ],
  6412. "description": "This is the PHP port of Hamcrest Matchers",
  6413. "keywords": [
  6414. "test"
  6415. ],
  6416. "time": "2020-07-09T08:09:16+00:00"
  6417. },
  6418. {
  6419. "name": "laravel-lang/actions",
  6420. "version": "1.8.5",
  6421. "dist": {
  6422. "type": "zip",
  6423. "url": "https://mirrors.tencent.com/repository/composer/laravel-lang/actions/1.8.5/laravel-lang-actions-1.8.5.zip",
  6424. "reference": "bc59d4a92e13d35d07a45265552a830c47fbe878",
  6425. "shasum": ""
  6426. },
  6427. "require": {
  6428. "ext-json": "*",
  6429. "laravel-lang/publisher": "^14.0 || ^15.0 || ^16.0",
  6430. "php": "^8.1"
  6431. },
  6432. "require-dev": {
  6433. "laravel-lang/status-generator": "^2.3.1",
  6434. "phpunit/phpunit": "^10.0",
  6435. "symfony/var-dumper": "^6.3 || ^7.0"
  6436. },
  6437. "type": "library",
  6438. "extra": {
  6439. "laravel": {
  6440. "providers": [
  6441. "LaravelLang\\Actions\\ServiceProvider"
  6442. ]
  6443. }
  6444. },
  6445. "autoload": {
  6446. "psr-4": {
  6447. "LaravelLang\\Actions\\": "src/"
  6448. }
  6449. },
  6450. "license": [
  6451. "MIT"
  6452. ],
  6453. "authors": [
  6454. {
  6455. "name": "Andrey Helldar",
  6456. "email": "helldar@dragon-code.pro",
  6457. "homepage": "https://dragon-code.pro"
  6458. },
  6459. {
  6460. "name": "Laravel Lang Team",
  6461. "homepage": "https://laravel-lang.com"
  6462. }
  6463. ],
  6464. "description": "Translation of buttons and other action elements",
  6465. "keywords": [
  6466. "actions",
  6467. "buttons",
  6468. "lang",
  6469. "languages",
  6470. "laravel",
  6471. "translations"
  6472. ],
  6473. "time": "2024-09-07T11:55:41+00:00"
  6474. },
  6475. {
  6476. "name": "laravel-lang/attributes",
  6477. "version": "2.10.8",
  6478. "dist": {
  6479. "type": "zip",
  6480. "url": "https://mirrors.tencent.com/repository/composer/laravel-lang/attributes/2.10.8/laravel-lang-attributes-2.10.8.zip",
  6481. "reference": "cf53eb18a47692045ac135e5be1e3fa979232504",
  6482. "shasum": ""
  6483. },
  6484. "require": {
  6485. "ext-json": "*",
  6486. "laravel-lang/publisher": "^14.0 || ^15.0 || ^16.0",
  6487. "php": "^8.1"
  6488. },
  6489. "require-dev": {
  6490. "laravel-lang/status-generator": "^1.19 || ^2.0",
  6491. "phpunit/phpunit": "^10.0",
  6492. "symfony/var-dumper": "^6.0 || ^7.0"
  6493. },
  6494. "type": "library",
  6495. "extra": {
  6496. "laravel": {
  6497. "providers": [
  6498. "LaravelLang\\Attributes\\ServiceProvider"
  6499. ]
  6500. }
  6501. },
  6502. "autoload": {
  6503. "psr-4": {
  6504. "LaravelLang\\Attributes\\": "src/"
  6505. }
  6506. },
  6507. "license": [
  6508. "MIT"
  6509. ],
  6510. "authors": [
  6511. {
  6512. "name": "Andrey Helldar",
  6513. "email": "helldar@dragon-code.pro"
  6514. },
  6515. {
  6516. "name": "Laravel-Lang Team",
  6517. "homepage": "https://github.com/Laravel-Lang"
  6518. }
  6519. ],
  6520. "description": "List of 126 languages for form field names",
  6521. "keywords": [
  6522. "attributes",
  6523. "fields",
  6524. "form",
  6525. "lang",
  6526. "languages",
  6527. "laravel",
  6528. "messages",
  6529. "translations",
  6530. "validation"
  6531. ],
  6532. "time": "2024-08-30T09:34:14+00:00"
  6533. },
  6534. {
  6535. "name": "laravel-lang/common",
  6536. "version": "6.4.0",
  6537. "dist": {
  6538. "type": "zip",
  6539. "url": "https://mirrors.tencent.com/repository/composer/laravel-lang/common/6.4.0/laravel-lang-common-6.4.0.zip",
  6540. "reference": "36c0270180f71420c1166c26f38dc25e1c8b7f64",
  6541. "shasum": ""
  6542. },
  6543. "require": {
  6544. "laravel-lang/actions": "^1.8.3",
  6545. "laravel-lang/attributes": "^2.10.7",
  6546. "laravel-lang/http-statuses": "^3.8.3",
  6547. "laravel-lang/json-fallback": "^2.1",
  6548. "laravel-lang/lang": "^13.12 || ^14.0 || ^15.5.1",
  6549. "laravel-lang/locales": "^2.8",
  6550. "laravel-lang/models": "^1.0",
  6551. "laravel-lang/publisher": "^16.4",
  6552. "laravel-lang/routes": "^1.0",
  6553. "php": "^8.1"
  6554. },
  6555. "require-dev": {
  6556. "dragon-code/support": "^6.13",
  6557. "orchestra/testbench": "^8.17 || ^9.1.2",
  6558. "phpunit/phpunit": "^10.5.20",
  6559. "symfony/var-dumper": "^6.4 || ^7.1.1"
  6560. },
  6561. "type": "library",
  6562. "license": [
  6563. "MIT"
  6564. ],
  6565. "authors": [
  6566. {
  6567. "name": "Laravel-Lang Team",
  6568. "homepage": "https://github.com/Laravel-Lang"
  6569. },
  6570. {
  6571. "name": "Andrey Helldar",
  6572. "email": "helldar@dragon-code.pro",
  6573. "homepage": "https://dragon-code.pro"
  6574. }
  6575. ],
  6576. "description": "Easily connect the necessary language packs to the application",
  6577. "keywords": [
  6578. "Laravel-lang",
  6579. "actions",
  6580. "attribute",
  6581. "attributes",
  6582. "breeze",
  6583. "buttons",
  6584. "cashier",
  6585. "fortify",
  6586. "framework",
  6587. "http",
  6588. "http-status",
  6589. "http-status-code",
  6590. "i18n",
  6591. "jetstream",
  6592. "lang",
  6593. "language",
  6594. "languages",
  6595. "laravel",
  6596. "locale",
  6597. "locales",
  6598. "localization",
  6599. "localizations",
  6600. "nova",
  6601. "publisher",
  6602. "spark",
  6603. "translation",
  6604. "translations",
  6605. "ui"
  6606. ],
  6607. "time": "2024-07-06T16:48:35+00:00"
  6608. },
  6609. {
  6610. "name": "laravel-lang/config",
  6611. "version": "1.10.0",
  6612. "dist": {
  6613. "type": "zip",
  6614. "url": "https://mirrors.tencent.com/repository/composer/laravel-lang/config/1.10.0/laravel-lang-config-1.10.0.zip",
  6615. "reference": "67c9273a2e5487441a7034c2422bb1527200bce5",
  6616. "shasum": ""
  6617. },
  6618. "require": {
  6619. "archtechx/enums": "^1.0",
  6620. "illuminate/config": "^10.0 || ^11.0",
  6621. "illuminate/support": "^10.0 || ^11.0",
  6622. "laravel-lang/locale-list": "^1.4",
  6623. "php": "^8.1"
  6624. },
  6625. "require-dev": {
  6626. "orchestra/testbench": "^8.23 || ^9.1",
  6627. "pestphp/pest": "^2.34"
  6628. },
  6629. "type": "library",
  6630. "extra": {
  6631. "laravel": {
  6632. "providers": [
  6633. "LaravelLang\\Config\\ServiceProvider"
  6634. ]
  6635. }
  6636. },
  6637. "autoload": {
  6638. "psr-4": {
  6639. "LaravelLang\\Config\\": "src/"
  6640. }
  6641. },
  6642. "license": [
  6643. "MIT"
  6644. ],
  6645. "authors": [
  6646. {
  6647. "name": "Andrey Helldar",
  6648. "email": "helldar@dragon-code.pro",
  6649. "homepage": "https://dragon-code.pro"
  6650. },
  6651. {
  6652. "name": "Laravel-Lang Team",
  6653. "homepage": "https://laravel-lang.com"
  6654. }
  6655. ],
  6656. "description": "The Laravel-Lang config package",
  6657. "keywords": [
  6658. "Laravel-lang",
  6659. "Settings",
  6660. "config",
  6661. "lang",
  6662. "languages",
  6663. "laravel",
  6664. "locale",
  6665. "locales",
  6666. "localization",
  6667. "localizations",
  6668. "translation",
  6669. "translations"
  6670. ],
  6671. "time": "2024-09-07T11:28:53+00:00"
  6672. },
  6673. {
  6674. "name": "laravel-lang/http-statuses",
  6675. "version": "3.8.4",
  6676. "dist": {
  6677. "type": "zip",
  6678. "url": "https://mirrors.tencent.com/repository/composer/laravel-lang/http-statuses/3.8.4/laravel-lang-http-statuses-3.8.4.zip",
  6679. "reference": "0e8b1af2835f951f5587f6c635ea6b929f275415",
  6680. "shasum": ""
  6681. },
  6682. "require": {
  6683. "ext-json": "*",
  6684. "laravel-lang/publisher": "^14.1 || ^15.0 || ^16.0",
  6685. "php": "^8.1"
  6686. },
  6687. "require-dev": {
  6688. "laravel-lang/status-generator": "^1.19 || ^2.0",
  6689. "phpunit/phpunit": "^10.0",
  6690. "symfony/var-dumper": "^6.0 || ^7.0"
  6691. },
  6692. "type": "library",
  6693. "extra": {
  6694. "laravel": {
  6695. "providers": [
  6696. "LaravelLang\\HttpStatuses\\ServiceProvider"
  6697. ]
  6698. }
  6699. },
  6700. "autoload": {
  6701. "psr-4": {
  6702. "LaravelLang\\HttpStatuses\\": "src"
  6703. }
  6704. },
  6705. "license": [
  6706. "MIT"
  6707. ],
  6708. "authors": [
  6709. {
  6710. "name": "Andrey Helldar",
  6711. "email": "helldar@dragon-code.pro"
  6712. },
  6713. {
  6714. "name": "Laravel-Lang Team",
  6715. "homepage": "https://github.com/Laravel-Lang"
  6716. }
  6717. ],
  6718. "description": "List of 126 languages for HTTP statuses",
  6719. "keywords": [
  6720. "http",
  6721. "lang",
  6722. "languages",
  6723. "laravel",
  6724. "messages",
  6725. "status",
  6726. "translations"
  6727. ],
  6728. "time": "2024-07-20T18:15:58+00:00"
  6729. },
  6730. {
  6731. "name": "laravel-lang/json-fallback",
  6732. "version": "2.1.0",
  6733. "dist": {
  6734. "type": "zip",
  6735. "url": "https://mirrors.tencent.com/repository/composer/laravel-lang/json-fallback/2.1.0/laravel-lang-json-fallback-2.1.0.zip",
  6736. "reference": "597865ffcef81b7e92227ea73ff3a9a3372fb91a",
  6737. "shasum": ""
  6738. },
  6739. "require": {
  6740. "illuminate/support": "^10.0 || ^11.0",
  6741. "illuminate/translation": "^10.0 || ^11.0",
  6742. "php": "^8.1"
  6743. },
  6744. "require-dev": {
  6745. "orchestra/testbench": "^8.0 || ^9.0",
  6746. "phpunit/phpunit": "^10.0"
  6747. },
  6748. "type": "library",
  6749. "autoload": {
  6750. "psr-4": {
  6751. "LaravelLang\\JsonFallback\\": "src"
  6752. }
  6753. },
  6754. "license": [
  6755. "MIT"
  6756. ],
  6757. "authors": [
  6758. {
  6759. "name": "Andrey Helldar",
  6760. "email": "helldar@dragon-code.pro",
  6761. "homepage": "https://github.com/andrey-helldar"
  6762. },
  6763. {
  6764. "name": "Felipe Dsdev",
  6765. "homepage": "https://github.com/felipe-dsdev"
  6766. }
  6767. ],
  6768. "description": "Adds support for fallback JSON string translation",
  6769. "time": "2024-03-13T09:18:03+00:00"
  6770. },
  6771. {
  6772. "name": "laravel-lang/lang",
  6773. "version": "14.8.0",
  6774. "dist": {
  6775. "type": "zip",
  6776. "url": "https://mirrors.tencent.com/repository/composer/laravel-lang/lang/14.8.0/laravel-lang-lang-14.8.0.zip",
  6777. "reference": "7318bd6dc8299d62fcee1109489bfb0ec82d1e25",
  6778. "shasum": ""
  6779. },
  6780. "require": {
  6781. "ext-json": "*",
  6782. "laravel-lang/publisher": "^14.0 || ^15.0 || ^16.0",
  6783. "php": "^8.1"
  6784. },
  6785. "conflict": {
  6786. "laravel/framework": "<10 || >=11.0.7"
  6787. },
  6788. "require-dev": {
  6789. "laravel-lang/status-generator": "^1.19 || ^2.0",
  6790. "phpunit/phpunit": "^10.0",
  6791. "symfony/var-dumper": "^6.0 || ^7.0"
  6792. },
  6793. "type": "library",
  6794. "extra": {
  6795. "laravel": {
  6796. "providers": [
  6797. "LaravelLang\\Lang\\ServiceProvider"
  6798. ]
  6799. }
  6800. },
  6801. "autoload": {
  6802. "psr-4": {
  6803. "LaravelLang\\Lang\\": "src/"
  6804. }
  6805. },
  6806. "license": [
  6807. "MIT"
  6808. ],
  6809. "authors": [
  6810. {
  6811. "name": "Laravel-Lang Team",
  6812. "homepage": "https://github.com/Laravel-Lang"
  6813. }
  6814. ],
  6815. "description": "List of 126 languages for Laravel Framework, Laravel Jetstream, Laravel Fortify, Laravel Breeze, Laravel Cashier, Laravel Nova, Laravel Spark and Laravel UI",
  6816. "keywords": [
  6817. "lang",
  6818. "languages",
  6819. "laravel",
  6820. "lpm"
  6821. ],
  6822. "time": "2024-05-11T11:06:53+00:00"
  6823. },
  6824. {
  6825. "name": "laravel-lang/locale-list",
  6826. "version": "1.4.0",
  6827. "dist": {
  6828. "type": "zip",
  6829. "url": "https://mirrors.tencent.com/repository/composer/laravel-lang/locale-list/1.4.0/laravel-lang-locale-list-1.4.0.zip",
  6830. "reference": "48b8e4304f8b1ad34456270d35d44ca0c3e6ea0d",
  6831. "shasum": ""
  6832. },
  6833. "require": {
  6834. "archtechx/enums": "^0.3.2 || ^1.0",
  6835. "php": "^8.1"
  6836. },
  6837. "type": "library",
  6838. "autoload": {
  6839. "psr-4": {
  6840. "LaravelLang\\LocaleList\\": "src/"
  6841. }
  6842. },
  6843. "license": [
  6844. "MIT"
  6845. ],
  6846. "authors": [
  6847. {
  6848. "name": "Andrey Helldar",
  6849. "email": "helldar@dragon-code.pro",
  6850. "homepage": "https://dragon-code.pro"
  6851. },
  6852. {
  6853. "name": "Laravel-Lang Team",
  6854. "homepage": "https://laravel-lang.com"
  6855. }
  6856. ],
  6857. "description": "List of localizations available in Laravel Lang projects",
  6858. "keywords": [
  6859. "Laravel-lang",
  6860. "lang",
  6861. "languages",
  6862. "laravel",
  6863. "locale",
  6864. "locales",
  6865. "localization",
  6866. "translation",
  6867. "translations"
  6868. ],
  6869. "time": "2024-06-01T00:24:42+00:00"
  6870. },
  6871. {
  6872. "name": "laravel-lang/locales",
  6873. "version": "2.9.2",
  6874. "dist": {
  6875. "type": "zip",
  6876. "url": "https://mirrors.tencent.com/repository/composer/laravel-lang/locales/2.9.2/laravel-lang-locales-2.9.2.zip",
  6877. "reference": "e7914ccfb91432ebebacf46697b573a330d702c7",
  6878. "shasum": ""
  6879. },
  6880. "require": {
  6881. "archtechx/enums": "^0.3.2 || ^1.0",
  6882. "dragon-code/support": "^6.11.3",
  6883. "ext-json": "*",
  6884. "illuminate/collections": "^10.0 || ^11.0",
  6885. "laravel-lang/config": "^1.0.2",
  6886. "laravel-lang/locale-list": "^1.2",
  6887. "laravel-lang/native-country-names": "^1.3",
  6888. "laravel-lang/native-currency-names": "^1.3",
  6889. "laravel-lang/native-locale-names": "^2.2",
  6890. "php": "^8.1"
  6891. },
  6892. "require-dev": {
  6893. "orchestra/testbench": "^8.0 || ^9.0",
  6894. "pestphp/pest": "^2.24.1",
  6895. "symfony/var-dumper": "^6.0 || ^7.0"
  6896. },
  6897. "type": "library",
  6898. "extra": {
  6899. "laravel": {
  6900. "providers": [
  6901. "LaravelLang\\Locales\\ServiceProvider"
  6902. ]
  6903. }
  6904. },
  6905. "autoload": {
  6906. "psr-4": {
  6907. "LaravelLang\\Locales\\": "src/"
  6908. }
  6909. },
  6910. "license": [
  6911. "MIT"
  6912. ],
  6913. "authors": [
  6914. {
  6915. "name": "Andrey Helldar",
  6916. "email": "helldar@dragon-code.pro"
  6917. },
  6918. {
  6919. "name": "Laravel-Lang Team",
  6920. "homepage": "https://laravel-lang.com"
  6921. }
  6922. ],
  6923. "description": "Basic functionality for working with localizations",
  6924. "keywords": [
  6925. "laravel",
  6926. "locale",
  6927. "locales",
  6928. "localization",
  6929. "translation",
  6930. "translations"
  6931. ],
  6932. "time": "2024-06-24T09:56:41+00:00"
  6933. },
  6934. {
  6935. "name": "laravel-lang/models",
  6936. "version": "1.2.0",
  6937. "dist": {
  6938. "type": "zip",
  6939. "url": "https://mirrors.tencent.com/repository/composer/laravel-lang/models/1.2.0/laravel-lang-models-1.2.0.zip",
  6940. "reference": "7dd4578c45fe88e56a723bcb5ad045232c0a86b7",
  6941. "shasum": ""
  6942. },
  6943. "require": {
  6944. "composer/class-map-generator": "^1.3",
  6945. "dragon-code/support": "^6.13",
  6946. "illuminate/database": "^10.0 || ^11.0",
  6947. "illuminate/support": "^10.0 || ^11.0",
  6948. "laravel-lang/config": "^1.9",
  6949. "laravel-lang/locales": "^2.9.2",
  6950. "laravel/prompts": "^0.1.24",
  6951. "php": "^8.1"
  6952. },
  6953. "require-dev": {
  6954. "orchestra/testbench": "^8.0 || ^9.0",
  6955. "pestphp/pest": "^2.34",
  6956. "pestphp/pest-plugin-laravel": "^2.4",
  6957. "symfony/var-dumper": "^6.0 || ^7.0"
  6958. },
  6959. "type": "library",
  6960. "extra": {
  6961. "laravel": {
  6962. "providers": [
  6963. "LaravelLang\\Models\\ServiceProvider"
  6964. ]
  6965. }
  6966. },
  6967. "autoload": {
  6968. "psr-4": {
  6969. "LaravelLang\\Models\\": "src/"
  6970. }
  6971. },
  6972. "license": [
  6973. "MIT"
  6974. ],
  6975. "authors": [
  6976. {
  6977. "name": "Andrey Helldar",
  6978. "email": "helldar@dragon-code.pro",
  6979. "homepage": "https://dragon-code.pro",
  6980. "role": "Maintainer"
  6981. },
  6982. {
  6983. "name": "Andrey Sokolov",
  6984. "email": "walfireru@gmail.com",
  6985. "homepage": "https://github.com/Quiss",
  6986. "role": "Usability consultant"
  6987. },
  6988. {
  6989. "name": "Laravel-Lang Team",
  6990. "homepage": "https://github.com/Laravel-Lang"
  6991. }
  6992. ],
  6993. "description": "Easy and fast way to localize models",
  6994. "keywords": [
  6995. "database",
  6996. "l18n",
  6997. "languages",
  6998. "laravel",
  6999. "locales",
  7000. "localization",
  7001. "models",
  7002. "translate",
  7003. "translations"
  7004. ],
  7005. "time": "2024-09-27T12:25:25+00:00"
  7006. },
  7007. {
  7008. "name": "laravel-lang/native-country-names",
  7009. "version": "1.4.0",
  7010. "dist": {
  7011. "type": "zip",
  7012. "url": "https://mirrors.tencent.com/repository/composer/laravel-lang/native-country-names/1.4.0/laravel-lang-native-country-names-1.4.0.zip",
  7013. "reference": "cddca6627c8732770a2e2c11c921753b6d0adb66",
  7014. "shasum": ""
  7015. },
  7016. "require": {
  7017. "dragon-code/support": "^6.11",
  7018. "ext-json": "*",
  7019. "illuminate/collections": "^10.0 || ^11.0",
  7020. "php": "^8.1"
  7021. },
  7022. "require-dev": {
  7023. "illuminate/support": "^10.0 || ^11.0",
  7024. "laravel-lang/locale-list": "^1.2",
  7025. "pestphp/pest": "^2.24.3",
  7026. "punic/punic": "^3.8",
  7027. "symfony/console": "^6.3 || ^7.0",
  7028. "symfony/process": "^6.3 || ^7.0",
  7029. "symfony/var-dumper": "^6.3 || ^7.0",
  7030. "vlucas/phpdotenv": "^5.6"
  7031. },
  7032. "type": "library",
  7033. "autoload": {
  7034. "psr-4": {
  7035. "LaravelLang\\NativeCountryNames\\": "src/"
  7036. }
  7037. },
  7038. "license": [
  7039. "MIT"
  7040. ],
  7041. "authors": [
  7042. {
  7043. "name": "Andrey Helldar",
  7044. "email": "helldar@dragon-code.pro"
  7045. },
  7046. {
  7047. "name": "Laravel-Lang Team",
  7048. "homepage": "https://laravel-lang.com"
  7049. }
  7050. ],
  7051. "description": "The project contains native translations of country names",
  7052. "keywords": [
  7053. "Laravel-lang",
  7054. "countries",
  7055. "country",
  7056. "lang",
  7057. "languages",
  7058. "laravel",
  7059. "locale",
  7060. "locales",
  7061. "localization",
  7062. "territories",
  7063. "territory",
  7064. "translation",
  7065. "translations"
  7066. ],
  7067. "time": "2024-03-13T09:34:55+00:00"
  7068. },
  7069. {
  7070. "name": "laravel-lang/native-currency-names",
  7071. "version": "1.4.0",
  7072. "dist": {
  7073. "type": "zip",
  7074. "url": "https://mirrors.tencent.com/repository/composer/laravel-lang/native-currency-names/1.4.0/laravel-lang-native-currency-names-1.4.0.zip",
  7075. "reference": "2e0fbe039421ac753b4fd5256bd239147a0a88fe",
  7076. "shasum": ""
  7077. },
  7078. "require": {
  7079. "dragon-code/support": "^6.11",
  7080. "ext-json": "*",
  7081. "illuminate/collections": "^10.0 || ^11.0",
  7082. "php": "^8.1"
  7083. },
  7084. "require-dev": {
  7085. "illuminate/support": "^10.0 || ^11.0",
  7086. "laravel-lang/locale-list": "^1.2",
  7087. "pestphp/pest": "^2.24.3",
  7088. "punic/punic": "^3.8",
  7089. "symfony/console": "^6.3 || ^7.0",
  7090. "symfony/process": "^6.3 || ^7.0",
  7091. "symfony/var-dumper": "^6.3 || ^7.0",
  7092. "vlucas/phpdotenv": "^5.6"
  7093. },
  7094. "type": "library",
  7095. "autoload": {
  7096. "psr-4": {
  7097. "LaravelLang\\NativeCurrencyNames\\": "src/"
  7098. }
  7099. },
  7100. "license": [
  7101. "MIT"
  7102. ],
  7103. "authors": [
  7104. {
  7105. "name": "Andrey Helldar",
  7106. "email": "helldar@dragon-code.pro"
  7107. },
  7108. {
  7109. "name": "Laravel-Lang Team",
  7110. "homepage": "https://laravel-lang.com"
  7111. }
  7112. ],
  7113. "description": "The project contains native translations of currency names",
  7114. "keywords": [
  7115. "Laravel-lang",
  7116. "currency",
  7117. "lang",
  7118. "languages",
  7119. "laravel",
  7120. "locale",
  7121. "locales",
  7122. "localization",
  7123. "translation",
  7124. "translations"
  7125. ],
  7126. "time": "2024-03-13T09:40:02+00:00"
  7127. },
  7128. {
  7129. "name": "laravel-lang/native-locale-names",
  7130. "version": "2.3.0",
  7131. "dist": {
  7132. "type": "zip",
  7133. "url": "https://mirrors.tencent.com/repository/composer/laravel-lang/native-locale-names/2.3.0/laravel-lang-native-locale-names-2.3.0.zip",
  7134. "reference": "39ef3330938b74277456049bf386453109e4d05c",
  7135. "shasum": ""
  7136. },
  7137. "require": {
  7138. "dragon-code/support": "^6.11",
  7139. "ext-json": "*",
  7140. "php": "^8.1"
  7141. },
  7142. "require-dev": {
  7143. "illuminate/support": "^10.31 || ^11.0",
  7144. "laravel-lang/locale-list": "^1.2",
  7145. "pestphp/pest": "^2.24.3",
  7146. "punic/punic": "^3.8",
  7147. "symfony/console": "^6.3 || ^7.0",
  7148. "symfony/process": "^6.3 || ^7.0",
  7149. "symfony/var-dumper": "^6.3 || ^7.0"
  7150. },
  7151. "type": "library",
  7152. "autoload": {
  7153. "psr-4": {
  7154. "LaravelLang\\NativeLocaleNames\\": "src/"
  7155. }
  7156. },
  7157. "license": [
  7158. "MIT"
  7159. ],
  7160. "authors": [
  7161. {
  7162. "name": "Andrey Helldar",
  7163. "email": "helldar@dragon-code.pro"
  7164. },
  7165. {
  7166. "name": "Laravel-Lang Team",
  7167. "homepage": "https://laravel-lang.com"
  7168. }
  7169. ],
  7170. "description": "The project contains native translations of locale names",
  7171. "keywords": [
  7172. "Laravel-lang",
  7173. "lang",
  7174. "languages",
  7175. "laravel",
  7176. "locale",
  7177. "locales",
  7178. "localization",
  7179. "translation",
  7180. "translations"
  7181. ],
  7182. "time": "2024-03-13T09:28:19+00:00"
  7183. },
  7184. {
  7185. "name": "laravel-lang/publisher",
  7186. "version": "16.4.0",
  7187. "dist": {
  7188. "type": "zip",
  7189. "url": "https://mirrors.tencent.com/repository/composer/laravel-lang/publisher/16.4.0/laravel-lang-publisher-16.4.0.zip",
  7190. "reference": "7812e7a07e6f2fdb7d258f3ab1d481d1cbf7f32c",
  7191. "shasum": ""
  7192. },
  7193. "require": {
  7194. "composer/semver": "^3.4",
  7195. "dragon-code/pretty-array": "^4.1",
  7196. "dragon-code/support": "^6.11.3",
  7197. "ext-json": "*",
  7198. "illuminate/collections": "^10.0 || ^11.0",
  7199. "illuminate/console": "^10.0 || ^11.0",
  7200. "illuminate/support": "^10.0 || ^11.0",
  7201. "laravel-lang/config": "^1.0",
  7202. "laravel-lang/locales": "^2.3",
  7203. "league/commonmark": "^2.4.1",
  7204. "league/config": "^1.2",
  7205. "php": "^8.1"
  7206. },
  7207. "conflict": {
  7208. "laravel-lang/attributes": "<2.0",
  7209. "laravel-lang/http-statuses": "<3.0",
  7210. "laravel-lang/lang": "<11.0"
  7211. },
  7212. "require-dev": {
  7213. "laravel-lang/json-fallback": "^2.0",
  7214. "orchestra/testbench": "^8.14 || ^9.0",
  7215. "phpunit/phpunit": "^10.4.2",
  7216. "symfony/var-dumper": "^6.3.6 || ^7.0"
  7217. },
  7218. "type": "library",
  7219. "extra": {
  7220. "laravel": {
  7221. "providers": [
  7222. "LaravelLang\\Publisher\\ServiceProvider"
  7223. ]
  7224. }
  7225. },
  7226. "autoload": {
  7227. "psr-4": {
  7228. "LaravelLang\\Publisher\\": "src/"
  7229. }
  7230. },
  7231. "license": [
  7232. "MIT"
  7233. ],
  7234. "authors": [
  7235. {
  7236. "name": "Andrey Helldar",
  7237. "email": "helldar@dragon-code.pro"
  7238. },
  7239. {
  7240. "name": "Laravel-Lang Team",
  7241. "homepage": "https://laravel-lang.com"
  7242. }
  7243. ],
  7244. "description": "Publisher lang files for the Laravel and Lumen Frameworks, Jetstream, Fortify, Cashier, Spark and Nova from Laravel-Lang/lang",
  7245. "keywords": [
  7246. "Laravel-lang",
  7247. "breeze",
  7248. "cashier",
  7249. "fortify",
  7250. "framework",
  7251. "i18n",
  7252. "jetstream",
  7253. "lang",
  7254. "languages",
  7255. "laravel",
  7256. "locale",
  7257. "locales",
  7258. "localization",
  7259. "localizations",
  7260. "lpm",
  7261. "lumen",
  7262. "nova",
  7263. "publisher",
  7264. "spark",
  7265. "trans",
  7266. "translation",
  7267. "translations",
  7268. "validations"
  7269. ],
  7270. "time": "2024-06-02T00:22:33+00:00"
  7271. },
  7272. {
  7273. "name": "laravel-lang/routes",
  7274. "version": "1.5.0",
  7275. "dist": {
  7276. "type": "zip",
  7277. "url": "https://mirrors.tencent.com/repository/composer/laravel-lang/routes/1.5.0/laravel-lang-routes-1.5.0.zip",
  7278. "reference": "addc4438fac481389e66e349ac3b93670aa4301b",
  7279. "shasum": ""
  7280. },
  7281. "require": {
  7282. "dragon-code/support": "^6.13",
  7283. "illuminate/config": "^10.0 || ^11.0",
  7284. "illuminate/http": "^10.0 || ^11.0",
  7285. "illuminate/routing": "^10.0 || ^11.0",
  7286. "illuminate/support": "^10.0 || ^11.0",
  7287. "laravel-lang/config": "^1.6",
  7288. "laravel-lang/locales": "^2.8",
  7289. "php": "^8.1"
  7290. },
  7291. "require-dev": {
  7292. "orchestra/testbench": "^8.23 || ^9.1",
  7293. "pestphp/pest": "^2.34",
  7294. "pestphp/pest-plugin-laravel": "^2.4",
  7295. "symfony/var-dumper": "^6.0 || ^7.0"
  7296. },
  7297. "type": "library",
  7298. "extra": {
  7299. "laravel": {
  7300. "providers": [
  7301. "LaravelLang\\Routes\\ServiceProvider"
  7302. ]
  7303. }
  7304. },
  7305. "autoload": {
  7306. "files": [
  7307. "helpers/functions.php"
  7308. ],
  7309. "psr-4": {
  7310. "LaravelLang\\Routes\\": "src/"
  7311. }
  7312. },
  7313. "license": [
  7314. "MIT"
  7315. ],
  7316. "authors": [
  7317. {
  7318. "name": "Andrey Helldar",
  7319. "email": "helldar@dragon-code.pro",
  7320. "homepage": "https://dragon-code.pro"
  7321. },
  7322. {
  7323. "name": "Laravel-Lang Team",
  7324. "homepage": "https://github.com/Laravel-Lang"
  7325. }
  7326. ],
  7327. "description": "Easy and fast way to localize routes",
  7328. "keywords": [
  7329. "l18n",
  7330. "languages",
  7331. "laravel",
  7332. "localization",
  7333. "routes",
  7334. "translate",
  7335. "translations"
  7336. ],
  7337. "time": "2024-07-10T10:28:26+00:00"
  7338. },
  7339. {
  7340. "name": "laravel/pint",
  7341. "version": "v1.18.1",
  7342. "dist": {
  7343. "type": "zip",
  7344. "url": "https://mirrors.tencent.com/repository/composer/laravel/pint/v1.18.1/laravel-pint-v1.18.1.zip",
  7345. "reference": "35c00c05ec43e6b46d295efc0f4386ceb30d50d9",
  7346. "shasum": ""
  7347. },
  7348. "require": {
  7349. "ext-json": "*",
  7350. "ext-mbstring": "*",
  7351. "ext-tokenizer": "*",
  7352. "ext-xml": "*",
  7353. "php": "^8.1.0"
  7354. },
  7355. "require-dev": {
  7356. "friendsofphp/php-cs-fixer": "^3.64.0",
  7357. "illuminate/view": "^10.48.20",
  7358. "larastan/larastan": "^2.9.8",
  7359. "laravel-zero/framework": "^10.4.0",
  7360. "mockery/mockery": "^1.6.12",
  7361. "nunomaduro/termwind": "^1.15.1",
  7362. "pestphp/pest": "^2.35.1"
  7363. },
  7364. "bin": [
  7365. "builds/pint"
  7366. ],
  7367. "type": "project",
  7368. "autoload": {
  7369. "psr-4": {
  7370. "App\\": "app/",
  7371. "Database\\Seeders\\": "database/seeders/",
  7372. "Database\\Factories\\": "database/factories/"
  7373. }
  7374. },
  7375. "license": [
  7376. "MIT"
  7377. ],
  7378. "authors": [
  7379. {
  7380. "name": "Nuno Maduro",
  7381. "email": "enunomaduro@gmail.com"
  7382. }
  7383. ],
  7384. "description": "An opinionated code formatter for PHP.",
  7385. "homepage": "https://laravel.com",
  7386. "keywords": [
  7387. "format",
  7388. "formatter",
  7389. "lint",
  7390. "linter",
  7391. "php"
  7392. ],
  7393. "time": "2024-09-24T17:22:50+00:00"
  7394. },
  7395. {
  7396. "name": "laravel/sail",
  7397. "version": "v1.33.0",
  7398. "dist": {
  7399. "type": "zip",
  7400. "url": "https://mirrors.tencent.com/repository/composer/laravel/sail/v1.33.0/laravel-sail-v1.33.0.zip",
  7401. "reference": "d54af9d5745e3680d8a6463ffd9f314aa53eb2d1",
  7402. "shasum": ""
  7403. },
  7404. "require": {
  7405. "illuminate/console": "^9.52.16|^10.0|^11.0",
  7406. "illuminate/contracts": "^9.52.16|^10.0|^11.0",
  7407. "illuminate/support": "^9.52.16|^10.0|^11.0",
  7408. "php": "^8.0",
  7409. "symfony/console": "^6.0|^7.0",
  7410. "symfony/yaml": "^6.0|^7.0"
  7411. },
  7412. "require-dev": {
  7413. "orchestra/testbench": "^7.0|^8.0|^9.0",
  7414. "phpstan/phpstan": "^1.10"
  7415. },
  7416. "bin": [
  7417. "bin/sail"
  7418. ],
  7419. "type": "library",
  7420. "extra": {
  7421. "laravel": {
  7422. "providers": [
  7423. "Laravel\\Sail\\SailServiceProvider"
  7424. ]
  7425. }
  7426. },
  7427. "autoload": {
  7428. "psr-4": {
  7429. "Laravel\\Sail\\": "src/"
  7430. }
  7431. },
  7432. "license": [
  7433. "MIT"
  7434. ],
  7435. "authors": [
  7436. {
  7437. "name": "Taylor Otwell",
  7438. "email": "taylor@laravel.com"
  7439. }
  7440. ],
  7441. "description": "Docker files for running a basic Laravel application.",
  7442. "keywords": [
  7443. "docker",
  7444. "laravel"
  7445. ],
  7446. "time": "2024-09-22T19:04:21+00:00"
  7447. },
  7448. {
  7449. "name": "mockery/mockery",
  7450. "version": "1.6.12",
  7451. "dist": {
  7452. "type": "zip",
  7453. "url": "https://mirrors.tencent.com/repository/composer/mockery/mockery/1.6.12/mockery-mockery-1.6.12.zip",
  7454. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  7455. "shasum": ""
  7456. },
  7457. "require": {
  7458. "hamcrest/hamcrest-php": "^2.0.1",
  7459. "lib-pcre": ">=7.0",
  7460. "php": ">=7.3"
  7461. },
  7462. "conflict": {
  7463. "phpunit/phpunit": "<8.0"
  7464. },
  7465. "require-dev": {
  7466. "phpunit/phpunit": "^8.5 || ^9.6.17",
  7467. "symplify/easy-coding-standard": "^12.1.14"
  7468. },
  7469. "type": "library",
  7470. "autoload": {
  7471. "files": [
  7472. "library/helpers.php",
  7473. "library/Mockery.php"
  7474. ],
  7475. "psr-4": {
  7476. "Mockery\\": "library/Mockery"
  7477. }
  7478. },
  7479. "license": [
  7480. "BSD-3-Clause"
  7481. ],
  7482. "authors": [
  7483. {
  7484. "name": "Pádraic Brady",
  7485. "email": "padraic.brady@gmail.com",
  7486. "homepage": "https://github.com/padraic",
  7487. "role": "Author"
  7488. },
  7489. {
  7490. "name": "Dave Marshall",
  7491. "email": "dave.marshall@atstsolutions.co.uk",
  7492. "homepage": "https://davedevelopment.co.uk",
  7493. "role": "Developer"
  7494. },
  7495. {
  7496. "name": "Nathanael Esayeas",
  7497. "email": "nathanael.esayeas@protonmail.com",
  7498. "homepage": "https://github.com/ghostwriter",
  7499. "role": "Lead Developer"
  7500. }
  7501. ],
  7502. "description": "Mockery is a simple yet flexible PHP mock object framework",
  7503. "homepage": "https://github.com/mockery/mockery",
  7504. "keywords": [
  7505. "BDD",
  7506. "TDD",
  7507. "library",
  7508. "mock",
  7509. "mock objects",
  7510. "mockery",
  7511. "stub",
  7512. "test",
  7513. "test double",
  7514. "testing"
  7515. ],
  7516. "time": "2024-05-16T03:13:13+00:00"
  7517. },
  7518. {
  7519. "name": "myclabs/deep-copy",
  7520. "version": "1.12.0",
  7521. "dist": {
  7522. "type": "zip",
  7523. "url": "https://mirrors.tencent.com/repository/composer/myclabs/deep-copy/1.12.0/myclabs-deep-copy-1.12.0.zip",
  7524. "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c",
  7525. "shasum": ""
  7526. },
  7527. "require": {
  7528. "php": "^7.1 || ^8.0"
  7529. },
  7530. "conflict": {
  7531. "doctrine/collections": "<1.6.8",
  7532. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  7533. },
  7534. "require-dev": {
  7535. "doctrine/collections": "^1.6.8",
  7536. "doctrine/common": "^2.13.3 || ^3.2.2",
  7537. "phpspec/prophecy": "^1.10",
  7538. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  7539. },
  7540. "type": "library",
  7541. "autoload": {
  7542. "files": [
  7543. "src/DeepCopy/deep_copy.php"
  7544. ],
  7545. "psr-4": {
  7546. "DeepCopy\\": "src/DeepCopy/"
  7547. }
  7548. },
  7549. "license": [
  7550. "MIT"
  7551. ],
  7552. "description": "Create deep copies (clones) of your objects",
  7553. "keywords": [
  7554. "clone",
  7555. "copy",
  7556. "duplicate",
  7557. "object",
  7558. "object graph"
  7559. ],
  7560. "time": "2024-06-12T14:39:25+00:00"
  7561. },
  7562. {
  7563. "name": "nunomaduro/collision",
  7564. "version": "v7.10.0",
  7565. "dist": {
  7566. "type": "zip",
  7567. "url": "https://mirrors.tencent.com/repository/composer/nunomaduro/collision/v7.10.0/nunomaduro-collision-v7.10.0.zip",
  7568. "reference": "49ec67fa7b002712da8526678abd651c09f375b2",
  7569. "shasum": ""
  7570. },
  7571. "require": {
  7572. "filp/whoops": "^2.15.3",
  7573. "nunomaduro/termwind": "^1.15.1",
  7574. "php": "^8.1.0",
  7575. "symfony/console": "^6.3.4"
  7576. },
  7577. "conflict": {
  7578. "laravel/framework": ">=11.0.0"
  7579. },
  7580. "require-dev": {
  7581. "brianium/paratest": "^7.3.0",
  7582. "laravel/framework": "^10.28.0",
  7583. "laravel/pint": "^1.13.3",
  7584. "laravel/sail": "^1.25.0",
  7585. "laravel/sanctum": "^3.3.1",
  7586. "laravel/tinker": "^2.8.2",
  7587. "nunomaduro/larastan": "^2.6.4",
  7588. "orchestra/testbench-core": "^8.13.0",
  7589. "pestphp/pest": "^2.23.2",
  7590. "phpunit/phpunit": "^10.4.1",
  7591. "sebastian/environment": "^6.0.1",
  7592. "spatie/laravel-ignition": "^2.3.1"
  7593. },
  7594. "type": "library",
  7595. "extra": {
  7596. "laravel": {
  7597. "providers": [
  7598. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  7599. ]
  7600. }
  7601. },
  7602. "autoload": {
  7603. "files": [
  7604. "./src/Adapters/Phpunit/Autoload.php"
  7605. ],
  7606. "psr-4": {
  7607. "NunoMaduro\\Collision\\": "src/"
  7608. }
  7609. },
  7610. "license": [
  7611. "MIT"
  7612. ],
  7613. "authors": [
  7614. {
  7615. "name": "Nuno Maduro",
  7616. "email": "enunomaduro@gmail.com"
  7617. }
  7618. ],
  7619. "description": "Cli error handling for console/command-line PHP applications.",
  7620. "keywords": [
  7621. "artisan",
  7622. "cli",
  7623. "command-line",
  7624. "console",
  7625. "error",
  7626. "handling",
  7627. "laravel",
  7628. "laravel-zero",
  7629. "php",
  7630. "symfony"
  7631. ],
  7632. "time": "2023-10-11T15:45:01+00:00"
  7633. },
  7634. {
  7635. "name": "phar-io/manifest",
  7636. "version": "2.0.4",
  7637. "dist": {
  7638. "type": "zip",
  7639. "url": "https://mirrors.tencent.com/repository/composer/phar-io/manifest/2.0.4/phar-io-manifest-2.0.4.zip",
  7640. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  7641. "shasum": ""
  7642. },
  7643. "require": {
  7644. "ext-dom": "*",
  7645. "ext-libxml": "*",
  7646. "ext-phar": "*",
  7647. "ext-xmlwriter": "*",
  7648. "phar-io/version": "^3.0.1",
  7649. "php": "^7.2 || ^8.0"
  7650. },
  7651. "type": "library",
  7652. "extra": {
  7653. "branch-alias": {
  7654. "dev-master": "2.0.x-dev"
  7655. }
  7656. },
  7657. "autoload": {
  7658. "classmap": [
  7659. "src/"
  7660. ]
  7661. },
  7662. "license": [
  7663. "BSD-3-Clause"
  7664. ],
  7665. "authors": [
  7666. {
  7667. "name": "Arne Blankerts",
  7668. "email": "arne@blankerts.de",
  7669. "role": "Developer"
  7670. },
  7671. {
  7672. "name": "Sebastian Heuer",
  7673. "email": "sebastian@phpeople.de",
  7674. "role": "Developer"
  7675. },
  7676. {
  7677. "name": "Sebastian Bergmann",
  7678. "email": "sebastian@phpunit.de",
  7679. "role": "Developer"
  7680. }
  7681. ],
  7682. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  7683. "time": "2024-03-03T12:33:53+00:00"
  7684. },
  7685. {
  7686. "name": "phar-io/version",
  7687. "version": "3.2.1",
  7688. "dist": {
  7689. "type": "zip",
  7690. "url": "https://mirrors.tencent.com/repository/composer/phar-io/version/3.2.1/phar-io-version-3.2.1.zip",
  7691. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  7692. "shasum": ""
  7693. },
  7694. "require": {
  7695. "php": "^7.2 || ^8.0"
  7696. },
  7697. "type": "library",
  7698. "autoload": {
  7699. "classmap": [
  7700. "src/"
  7701. ]
  7702. },
  7703. "license": [
  7704. "BSD-3-Clause"
  7705. ],
  7706. "authors": [
  7707. {
  7708. "name": "Arne Blankerts",
  7709. "email": "arne@blankerts.de",
  7710. "role": "Developer"
  7711. },
  7712. {
  7713. "name": "Sebastian Heuer",
  7714. "email": "sebastian@phpeople.de",
  7715. "role": "Developer"
  7716. },
  7717. {
  7718. "name": "Sebastian Bergmann",
  7719. "email": "sebastian@phpunit.de",
  7720. "role": "Developer"
  7721. }
  7722. ],
  7723. "description": "Library for handling version information and constraints",
  7724. "time": "2022-02-21T01:04:05+00:00"
  7725. },
  7726. {
  7727. "name": "phpunit/php-code-coverage",
  7728. "version": "10.1.16",
  7729. "dist": {
  7730. "type": "zip",
  7731. "url": "https://mirrors.tencent.com/repository/composer/phpunit/php-code-coverage/10.1.16/phpunit-php-code-coverage-10.1.16.zip",
  7732. "reference": "7e308268858ed6baedc8704a304727d20bc07c77",
  7733. "shasum": ""
  7734. },
  7735. "require": {
  7736. "ext-dom": "*",
  7737. "ext-libxml": "*",
  7738. "ext-xmlwriter": "*",
  7739. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  7740. "php": ">=8.1",
  7741. "phpunit/php-file-iterator": "^4.1.0",
  7742. "phpunit/php-text-template": "^3.0.1",
  7743. "sebastian/code-unit-reverse-lookup": "^3.0.0",
  7744. "sebastian/complexity": "^3.2.0",
  7745. "sebastian/environment": "^6.1.0",
  7746. "sebastian/lines-of-code": "^2.0.2",
  7747. "sebastian/version": "^4.0.1",
  7748. "theseer/tokenizer": "^1.2.3"
  7749. },
  7750. "require-dev": {
  7751. "phpunit/phpunit": "^10.1"
  7752. },
  7753. "suggest": {
  7754. "ext-pcov": "PHP extension that provides line coverage",
  7755. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  7756. },
  7757. "type": "library",
  7758. "extra": {
  7759. "branch-alias": {
  7760. "dev-main": "10.1.x-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": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  7779. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  7780. "keywords": [
  7781. "coverage",
  7782. "testing",
  7783. "xunit"
  7784. ],
  7785. "time": "2024-08-22T04:31:57+00:00"
  7786. },
  7787. {
  7788. "name": "phpunit/php-file-iterator",
  7789. "version": "4.1.0",
  7790. "dist": {
  7791. "type": "zip",
  7792. "url": "https://mirrors.tencent.com/repository/composer/phpunit/php-file-iterator/4.1.0/phpunit-php-file-iterator-4.1.0.zip",
  7793. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  7794. "shasum": ""
  7795. },
  7796. "require": {
  7797. "php": ">=8.1"
  7798. },
  7799. "require-dev": {
  7800. "phpunit/phpunit": "^10.0"
  7801. },
  7802. "type": "library",
  7803. "extra": {
  7804. "branch-alias": {
  7805. "dev-main": "4.0-dev"
  7806. }
  7807. },
  7808. "autoload": {
  7809. "classmap": [
  7810. "src/"
  7811. ]
  7812. },
  7813. "license": [
  7814. "BSD-3-Clause"
  7815. ],
  7816. "authors": [
  7817. {
  7818. "name": "Sebastian Bergmann",
  7819. "email": "sebastian@phpunit.de",
  7820. "role": "lead"
  7821. }
  7822. ],
  7823. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  7824. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  7825. "keywords": [
  7826. "filesystem",
  7827. "iterator"
  7828. ],
  7829. "time": "2023-08-31T06:24:48+00:00"
  7830. },
  7831. {
  7832. "name": "phpunit/php-invoker",
  7833. "version": "4.0.0",
  7834. "dist": {
  7835. "type": "zip",
  7836. "url": "https://mirrors.tencent.com/repository/composer/phpunit/php-invoker/4.0.0/phpunit-php-invoker-4.0.0.zip",
  7837. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  7838. "shasum": ""
  7839. },
  7840. "require": {
  7841. "php": ">=8.1"
  7842. },
  7843. "require-dev": {
  7844. "ext-pcntl": "*",
  7845. "phpunit/phpunit": "^10.0"
  7846. },
  7847. "suggest": {
  7848. "ext-pcntl": "*"
  7849. },
  7850. "type": "library",
  7851. "extra": {
  7852. "branch-alias": {
  7853. "dev-main": "4.0-dev"
  7854. }
  7855. },
  7856. "autoload": {
  7857. "classmap": [
  7858. "src/"
  7859. ]
  7860. },
  7861. "license": [
  7862. "BSD-3-Clause"
  7863. ],
  7864. "authors": [
  7865. {
  7866. "name": "Sebastian Bergmann",
  7867. "email": "sebastian@phpunit.de",
  7868. "role": "lead"
  7869. }
  7870. ],
  7871. "description": "Invoke callables with a timeout",
  7872. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  7873. "keywords": [
  7874. "process"
  7875. ],
  7876. "time": "2023-02-03T06:56:09+00:00"
  7877. },
  7878. {
  7879. "name": "phpunit/php-text-template",
  7880. "version": "3.0.1",
  7881. "dist": {
  7882. "type": "zip",
  7883. "url": "https://mirrors.tencent.com/repository/composer/phpunit/php-text-template/3.0.1/phpunit-php-text-template-3.0.1.zip",
  7884. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  7885. "shasum": ""
  7886. },
  7887. "require": {
  7888. "php": ">=8.1"
  7889. },
  7890. "require-dev": {
  7891. "phpunit/phpunit": "^10.0"
  7892. },
  7893. "type": "library",
  7894. "extra": {
  7895. "branch-alias": {
  7896. "dev-main": "3.0-dev"
  7897. }
  7898. },
  7899. "autoload": {
  7900. "classmap": [
  7901. "src/"
  7902. ]
  7903. },
  7904. "license": [
  7905. "BSD-3-Clause"
  7906. ],
  7907. "authors": [
  7908. {
  7909. "name": "Sebastian Bergmann",
  7910. "email": "sebastian@phpunit.de",
  7911. "role": "lead"
  7912. }
  7913. ],
  7914. "description": "Simple template engine.",
  7915. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  7916. "keywords": [
  7917. "template"
  7918. ],
  7919. "time": "2023-08-31T14:07:24+00:00"
  7920. },
  7921. {
  7922. "name": "phpunit/php-timer",
  7923. "version": "6.0.0",
  7924. "dist": {
  7925. "type": "zip",
  7926. "url": "https://mirrors.tencent.com/repository/composer/phpunit/php-timer/6.0.0/phpunit-php-timer-6.0.0.zip",
  7927. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  7928. "shasum": ""
  7929. },
  7930. "require": {
  7931. "php": ">=8.1"
  7932. },
  7933. "require-dev": {
  7934. "phpunit/phpunit": "^10.0"
  7935. },
  7936. "type": "library",
  7937. "extra": {
  7938. "branch-alias": {
  7939. "dev-main": "6.0-dev"
  7940. }
  7941. },
  7942. "autoload": {
  7943. "classmap": [
  7944. "src/"
  7945. ]
  7946. },
  7947. "license": [
  7948. "BSD-3-Clause"
  7949. ],
  7950. "authors": [
  7951. {
  7952. "name": "Sebastian Bergmann",
  7953. "email": "sebastian@phpunit.de",
  7954. "role": "lead"
  7955. }
  7956. ],
  7957. "description": "Utility class for timing",
  7958. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  7959. "keywords": [
  7960. "timer"
  7961. ],
  7962. "time": "2023-02-03T06:57:52+00:00"
  7963. },
  7964. {
  7965. "name": "phpunit/phpunit",
  7966. "version": "10.5.35",
  7967. "dist": {
  7968. "type": "zip",
  7969. "url": "https://mirrors.tencent.com/repository/composer/phpunit/phpunit/10.5.35/phpunit-phpunit-10.5.35.zip",
  7970. "reference": "7ac8b4e63f456046dcb4c9787da9382831a1874b",
  7971. "shasum": ""
  7972. },
  7973. "require": {
  7974. "ext-dom": "*",
  7975. "ext-json": "*",
  7976. "ext-libxml": "*",
  7977. "ext-mbstring": "*",
  7978. "ext-xml": "*",
  7979. "ext-xmlwriter": "*",
  7980. "myclabs/deep-copy": "^1.12.0",
  7981. "phar-io/manifest": "^2.0.4",
  7982. "phar-io/version": "^3.2.1",
  7983. "php": ">=8.1",
  7984. "phpunit/php-code-coverage": "^10.1.16",
  7985. "phpunit/php-file-iterator": "^4.1.0",
  7986. "phpunit/php-invoker": "^4.0.0",
  7987. "phpunit/php-text-template": "^3.0.1",
  7988. "phpunit/php-timer": "^6.0.0",
  7989. "sebastian/cli-parser": "^2.0.1",
  7990. "sebastian/code-unit": "^2.0.0",
  7991. "sebastian/comparator": "^5.0.2",
  7992. "sebastian/diff": "^5.1.1",
  7993. "sebastian/environment": "^6.1.0",
  7994. "sebastian/exporter": "^5.1.2",
  7995. "sebastian/global-state": "^6.0.2",
  7996. "sebastian/object-enumerator": "^5.0.0",
  7997. "sebastian/recursion-context": "^5.0.0",
  7998. "sebastian/type": "^4.0.0",
  7999. "sebastian/version": "^4.0.1"
  8000. },
  8001. "suggest": {
  8002. "ext-soap": "To be able to generate mocks based on WSDL files"
  8003. },
  8004. "bin": [
  8005. "phpunit"
  8006. ],
  8007. "type": "library",
  8008. "extra": {
  8009. "branch-alias": {
  8010. "dev-main": "10.5-dev"
  8011. }
  8012. },
  8013. "autoload": {
  8014. "files": [
  8015. "src/Framework/Assert/Functions.php"
  8016. ],
  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": "The PHP Unit Testing framework.",
  8032. "homepage": "https://phpunit.de/",
  8033. "keywords": [
  8034. "phpunit",
  8035. "testing",
  8036. "xunit"
  8037. ],
  8038. "time": "2024-09-19T10:52:21+00:00"
  8039. },
  8040. {
  8041. "name": "sebastian/cli-parser",
  8042. "version": "2.0.1",
  8043. "dist": {
  8044. "type": "zip",
  8045. "url": "https://mirrors.tencent.com/repository/composer/sebastian/cli-parser/2.0.1/sebastian-cli-parser-2.0.1.zip",
  8046. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  8047. "shasum": ""
  8048. },
  8049. "require": {
  8050. "php": ">=8.1"
  8051. },
  8052. "require-dev": {
  8053. "phpunit/phpunit": "^10.0"
  8054. },
  8055. "type": "library",
  8056. "extra": {
  8057. "branch-alias": {
  8058. "dev-main": "2.0-dev"
  8059. }
  8060. },
  8061. "autoload": {
  8062. "classmap": [
  8063. "src/"
  8064. ]
  8065. },
  8066. "license": [
  8067. "BSD-3-Clause"
  8068. ],
  8069. "authors": [
  8070. {
  8071. "name": "Sebastian Bergmann",
  8072. "email": "sebastian@phpunit.de",
  8073. "role": "lead"
  8074. }
  8075. ],
  8076. "description": "Library for parsing CLI options",
  8077. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  8078. "time": "2024-03-02T07:12:49+00:00"
  8079. },
  8080. {
  8081. "name": "sebastian/code-unit",
  8082. "version": "2.0.0",
  8083. "dist": {
  8084. "type": "zip",
  8085. "url": "https://mirrors.tencent.com/repository/composer/sebastian/code-unit/2.0.0/sebastian-code-unit-2.0.0.zip",
  8086. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  8087. "shasum": ""
  8088. },
  8089. "require": {
  8090. "php": ">=8.1"
  8091. },
  8092. "require-dev": {
  8093. "phpunit/phpunit": "^10.0"
  8094. },
  8095. "type": "library",
  8096. "extra": {
  8097. "branch-alias": {
  8098. "dev-main": "2.0-dev"
  8099. }
  8100. },
  8101. "autoload": {
  8102. "classmap": [
  8103. "src/"
  8104. ]
  8105. },
  8106. "license": [
  8107. "BSD-3-Clause"
  8108. ],
  8109. "authors": [
  8110. {
  8111. "name": "Sebastian Bergmann",
  8112. "email": "sebastian@phpunit.de",
  8113. "role": "lead"
  8114. }
  8115. ],
  8116. "description": "Collection of value objects that represent the PHP code units",
  8117. "homepage": "https://github.com/sebastianbergmann/code-unit",
  8118. "time": "2023-02-03T06:58:43+00:00"
  8119. },
  8120. {
  8121. "name": "sebastian/code-unit-reverse-lookup",
  8122. "version": "3.0.0",
  8123. "dist": {
  8124. "type": "zip",
  8125. "url": "https://mirrors.tencent.com/repository/composer/sebastian/code-unit-reverse-lookup/3.0.0/sebastian-code-unit-reverse-lookup-3.0.0.zip",
  8126. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  8127. "shasum": ""
  8128. },
  8129. "require": {
  8130. "php": ">=8.1"
  8131. },
  8132. "require-dev": {
  8133. "phpunit/phpunit": "^10.0"
  8134. },
  8135. "type": "library",
  8136. "extra": {
  8137. "branch-alias": {
  8138. "dev-main": "3.0-dev"
  8139. }
  8140. },
  8141. "autoload": {
  8142. "classmap": [
  8143. "src/"
  8144. ]
  8145. },
  8146. "license": [
  8147. "BSD-3-Clause"
  8148. ],
  8149. "authors": [
  8150. {
  8151. "name": "Sebastian Bergmann",
  8152. "email": "sebastian@phpunit.de"
  8153. }
  8154. ],
  8155. "description": "Looks up which function or method a line of code belongs to",
  8156. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  8157. "time": "2023-02-03T06:59:15+00:00"
  8158. },
  8159. {
  8160. "name": "sebastian/comparator",
  8161. "version": "5.0.2",
  8162. "dist": {
  8163. "type": "zip",
  8164. "url": "https://mirrors.tencent.com/repository/composer/sebastian/comparator/5.0.2/sebastian-comparator-5.0.2.zip",
  8165. "reference": "2d3e04c3b4c1e84a5e7382221ad8883c8fbc4f53",
  8166. "shasum": ""
  8167. },
  8168. "require": {
  8169. "ext-dom": "*",
  8170. "ext-mbstring": "*",
  8171. "php": ">=8.1",
  8172. "sebastian/diff": "^5.0",
  8173. "sebastian/exporter": "^5.0"
  8174. },
  8175. "require-dev": {
  8176. "phpunit/phpunit": "^10.4"
  8177. },
  8178. "type": "library",
  8179. "extra": {
  8180. "branch-alias": {
  8181. "dev-main": "5.0-dev"
  8182. }
  8183. },
  8184. "autoload": {
  8185. "classmap": [
  8186. "src/"
  8187. ]
  8188. },
  8189. "license": [
  8190. "BSD-3-Clause"
  8191. ],
  8192. "authors": [
  8193. {
  8194. "name": "Sebastian Bergmann",
  8195. "email": "sebastian@phpunit.de"
  8196. },
  8197. {
  8198. "name": "Jeff Welch",
  8199. "email": "whatthejeff@gmail.com"
  8200. },
  8201. {
  8202. "name": "Volker Dusch",
  8203. "email": "github@wallbash.com"
  8204. },
  8205. {
  8206. "name": "Bernhard Schussek",
  8207. "email": "bschussek@2bepublished.at"
  8208. }
  8209. ],
  8210. "description": "Provides the functionality to compare PHP values for equality",
  8211. "homepage": "https://github.com/sebastianbergmann/comparator",
  8212. "keywords": [
  8213. "comparator",
  8214. "compare",
  8215. "equality"
  8216. ],
  8217. "time": "2024-08-12T06:03:08+00:00"
  8218. },
  8219. {
  8220. "name": "sebastian/complexity",
  8221. "version": "3.2.0",
  8222. "dist": {
  8223. "type": "zip",
  8224. "url": "https://mirrors.tencent.com/repository/composer/sebastian/complexity/3.2.0/sebastian-complexity-3.2.0.zip",
  8225. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  8226. "shasum": ""
  8227. },
  8228. "require": {
  8229. "nikic/php-parser": "^4.18 || ^5.0",
  8230. "php": ">=8.1"
  8231. },
  8232. "require-dev": {
  8233. "phpunit/phpunit": "^10.0"
  8234. },
  8235. "type": "library",
  8236. "extra": {
  8237. "branch-alias": {
  8238. "dev-main": "3.2-dev"
  8239. }
  8240. },
  8241. "autoload": {
  8242. "classmap": [
  8243. "src/"
  8244. ]
  8245. },
  8246. "license": [
  8247. "BSD-3-Clause"
  8248. ],
  8249. "authors": [
  8250. {
  8251. "name": "Sebastian Bergmann",
  8252. "email": "sebastian@phpunit.de",
  8253. "role": "lead"
  8254. }
  8255. ],
  8256. "description": "Library for calculating the complexity of PHP code units",
  8257. "homepage": "https://github.com/sebastianbergmann/complexity",
  8258. "time": "2023-12-21T08:37:17+00:00"
  8259. },
  8260. {
  8261. "name": "sebastian/diff",
  8262. "version": "5.1.1",
  8263. "dist": {
  8264. "type": "zip",
  8265. "url": "https://mirrors.tencent.com/repository/composer/sebastian/diff/5.1.1/sebastian-diff-5.1.1.zip",
  8266. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  8267. "shasum": ""
  8268. },
  8269. "require": {
  8270. "php": ">=8.1"
  8271. },
  8272. "require-dev": {
  8273. "phpunit/phpunit": "^10.0",
  8274. "symfony/process": "^6.4"
  8275. },
  8276. "type": "library",
  8277. "extra": {
  8278. "branch-alias": {
  8279. "dev-main": "5.1-dev"
  8280. }
  8281. },
  8282. "autoload": {
  8283. "classmap": [
  8284. "src/"
  8285. ]
  8286. },
  8287. "license": [
  8288. "BSD-3-Clause"
  8289. ],
  8290. "authors": [
  8291. {
  8292. "name": "Sebastian Bergmann",
  8293. "email": "sebastian@phpunit.de"
  8294. },
  8295. {
  8296. "name": "Kore Nordmann",
  8297. "email": "mail@kore-nordmann.de"
  8298. }
  8299. ],
  8300. "description": "Diff implementation",
  8301. "homepage": "https://github.com/sebastianbergmann/diff",
  8302. "keywords": [
  8303. "diff",
  8304. "udiff",
  8305. "unidiff",
  8306. "unified diff"
  8307. ],
  8308. "time": "2024-03-02T07:15:17+00:00"
  8309. },
  8310. {
  8311. "name": "sebastian/environment",
  8312. "version": "6.1.0",
  8313. "dist": {
  8314. "type": "zip",
  8315. "url": "https://mirrors.tencent.com/repository/composer/sebastian/environment/6.1.0/sebastian-environment-6.1.0.zip",
  8316. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
  8317. "shasum": ""
  8318. },
  8319. "require": {
  8320. "php": ">=8.1"
  8321. },
  8322. "require-dev": {
  8323. "phpunit/phpunit": "^10.0"
  8324. },
  8325. "suggest": {
  8326. "ext-posix": "*"
  8327. },
  8328. "type": "library",
  8329. "extra": {
  8330. "branch-alias": {
  8331. "dev-main": "6.1-dev"
  8332. }
  8333. },
  8334. "autoload": {
  8335. "classmap": [
  8336. "src/"
  8337. ]
  8338. },
  8339. "license": [
  8340. "BSD-3-Clause"
  8341. ],
  8342. "authors": [
  8343. {
  8344. "name": "Sebastian Bergmann",
  8345. "email": "sebastian@phpunit.de"
  8346. }
  8347. ],
  8348. "description": "Provides functionality to handle HHVM/PHP environments",
  8349. "homepage": "https://github.com/sebastianbergmann/environment",
  8350. "keywords": [
  8351. "Xdebug",
  8352. "environment",
  8353. "hhvm"
  8354. ],
  8355. "time": "2024-03-23T08:47:14+00:00"
  8356. },
  8357. {
  8358. "name": "sebastian/exporter",
  8359. "version": "5.1.2",
  8360. "dist": {
  8361. "type": "zip",
  8362. "url": "https://mirrors.tencent.com/repository/composer/sebastian/exporter/5.1.2/sebastian-exporter-5.1.2.zip",
  8363. "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
  8364. "shasum": ""
  8365. },
  8366. "require": {
  8367. "ext-mbstring": "*",
  8368. "php": ">=8.1",
  8369. "sebastian/recursion-context": "^5.0"
  8370. },
  8371. "require-dev": {
  8372. "phpunit/phpunit": "^10.0"
  8373. },
  8374. "type": "library",
  8375. "extra": {
  8376. "branch-alias": {
  8377. "dev-main": "5.1-dev"
  8378. }
  8379. },
  8380. "autoload": {
  8381. "classmap": [
  8382. "src/"
  8383. ]
  8384. },
  8385. "license": [
  8386. "BSD-3-Clause"
  8387. ],
  8388. "authors": [
  8389. {
  8390. "name": "Sebastian Bergmann",
  8391. "email": "sebastian@phpunit.de"
  8392. },
  8393. {
  8394. "name": "Jeff Welch",
  8395. "email": "whatthejeff@gmail.com"
  8396. },
  8397. {
  8398. "name": "Volker Dusch",
  8399. "email": "github@wallbash.com"
  8400. },
  8401. {
  8402. "name": "Adam Harvey",
  8403. "email": "aharvey@php.net"
  8404. },
  8405. {
  8406. "name": "Bernhard Schussek",
  8407. "email": "bschussek@gmail.com"
  8408. }
  8409. ],
  8410. "description": "Provides the functionality to export PHP variables for visualization",
  8411. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  8412. "keywords": [
  8413. "export",
  8414. "exporter"
  8415. ],
  8416. "time": "2024-03-02T07:17:12+00:00"
  8417. },
  8418. {
  8419. "name": "sebastian/global-state",
  8420. "version": "6.0.2",
  8421. "dist": {
  8422. "type": "zip",
  8423. "url": "https://mirrors.tencent.com/repository/composer/sebastian/global-state/6.0.2/sebastian-global-state-6.0.2.zip",
  8424. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  8425. "shasum": ""
  8426. },
  8427. "require": {
  8428. "php": ">=8.1",
  8429. "sebastian/object-reflector": "^3.0",
  8430. "sebastian/recursion-context": "^5.0"
  8431. },
  8432. "require-dev": {
  8433. "ext-dom": "*",
  8434. "phpunit/phpunit": "^10.0"
  8435. },
  8436. "type": "library",
  8437. "extra": {
  8438. "branch-alias": {
  8439. "dev-main": "6.0-dev"
  8440. }
  8441. },
  8442. "autoload": {
  8443. "classmap": [
  8444. "src/"
  8445. ]
  8446. },
  8447. "license": [
  8448. "BSD-3-Clause"
  8449. ],
  8450. "authors": [
  8451. {
  8452. "name": "Sebastian Bergmann",
  8453. "email": "sebastian@phpunit.de"
  8454. }
  8455. ],
  8456. "description": "Snapshotting of global state",
  8457. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  8458. "keywords": [
  8459. "global state"
  8460. ],
  8461. "time": "2024-03-02T07:19:19+00:00"
  8462. },
  8463. {
  8464. "name": "sebastian/lines-of-code",
  8465. "version": "2.0.2",
  8466. "dist": {
  8467. "type": "zip",
  8468. "url": "https://mirrors.tencent.com/repository/composer/sebastian/lines-of-code/2.0.2/sebastian-lines-of-code-2.0.2.zip",
  8469. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  8470. "shasum": ""
  8471. },
  8472. "require": {
  8473. "nikic/php-parser": "^4.18 || ^5.0",
  8474. "php": ">=8.1"
  8475. },
  8476. "require-dev": {
  8477. "phpunit/phpunit": "^10.0"
  8478. },
  8479. "type": "library",
  8480. "extra": {
  8481. "branch-alias": {
  8482. "dev-main": "2.0-dev"
  8483. }
  8484. },
  8485. "autoload": {
  8486. "classmap": [
  8487. "src/"
  8488. ]
  8489. },
  8490. "license": [
  8491. "BSD-3-Clause"
  8492. ],
  8493. "authors": [
  8494. {
  8495. "name": "Sebastian Bergmann",
  8496. "email": "sebastian@phpunit.de",
  8497. "role": "lead"
  8498. }
  8499. ],
  8500. "description": "Library for counting the lines of code in PHP source code",
  8501. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  8502. "time": "2023-12-21T08:38:20+00:00"
  8503. },
  8504. {
  8505. "name": "sebastian/object-enumerator",
  8506. "version": "5.0.0",
  8507. "dist": {
  8508. "type": "zip",
  8509. "url": "https://mirrors.tencent.com/repository/composer/sebastian/object-enumerator/5.0.0/sebastian-object-enumerator-5.0.0.zip",
  8510. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  8511. "shasum": ""
  8512. },
  8513. "require": {
  8514. "php": ">=8.1",
  8515. "sebastian/object-reflector": "^3.0",
  8516. "sebastian/recursion-context": "^5.0"
  8517. },
  8518. "require-dev": {
  8519. "phpunit/phpunit": "^10.0"
  8520. },
  8521. "type": "library",
  8522. "extra": {
  8523. "branch-alias": {
  8524. "dev-main": "5.0-dev"
  8525. }
  8526. },
  8527. "autoload": {
  8528. "classmap": [
  8529. "src/"
  8530. ]
  8531. },
  8532. "license": [
  8533. "BSD-3-Clause"
  8534. ],
  8535. "authors": [
  8536. {
  8537. "name": "Sebastian Bergmann",
  8538. "email": "sebastian@phpunit.de"
  8539. }
  8540. ],
  8541. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  8542. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  8543. "time": "2023-02-03T07:08:32+00:00"
  8544. },
  8545. {
  8546. "name": "sebastian/object-reflector",
  8547. "version": "3.0.0",
  8548. "dist": {
  8549. "type": "zip",
  8550. "url": "https://mirrors.tencent.com/repository/composer/sebastian/object-reflector/3.0.0/sebastian-object-reflector-3.0.0.zip",
  8551. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  8552. "shasum": ""
  8553. },
  8554. "require": {
  8555. "php": ">=8.1"
  8556. },
  8557. "require-dev": {
  8558. "phpunit/phpunit": "^10.0"
  8559. },
  8560. "type": "library",
  8561. "extra": {
  8562. "branch-alias": {
  8563. "dev-main": "3.0-dev"
  8564. }
  8565. },
  8566. "autoload": {
  8567. "classmap": [
  8568. "src/"
  8569. ]
  8570. },
  8571. "license": [
  8572. "BSD-3-Clause"
  8573. ],
  8574. "authors": [
  8575. {
  8576. "name": "Sebastian Bergmann",
  8577. "email": "sebastian@phpunit.de"
  8578. }
  8579. ],
  8580. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  8581. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  8582. "time": "2023-02-03T07:06:18+00:00"
  8583. },
  8584. {
  8585. "name": "sebastian/recursion-context",
  8586. "version": "5.0.0",
  8587. "dist": {
  8588. "type": "zip",
  8589. "url": "https://mirrors.tencent.com/repository/composer/sebastian/recursion-context/5.0.0/sebastian-recursion-context-5.0.0.zip",
  8590. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  8591. "shasum": ""
  8592. },
  8593. "require": {
  8594. "php": ">=8.1"
  8595. },
  8596. "require-dev": {
  8597. "phpunit/phpunit": "^10.0"
  8598. },
  8599. "type": "library",
  8600. "extra": {
  8601. "branch-alias": {
  8602. "dev-main": "5.0-dev"
  8603. }
  8604. },
  8605. "autoload": {
  8606. "classmap": [
  8607. "src/"
  8608. ]
  8609. },
  8610. "license": [
  8611. "BSD-3-Clause"
  8612. ],
  8613. "authors": [
  8614. {
  8615. "name": "Sebastian Bergmann",
  8616. "email": "sebastian@phpunit.de"
  8617. },
  8618. {
  8619. "name": "Jeff Welch",
  8620. "email": "whatthejeff@gmail.com"
  8621. },
  8622. {
  8623. "name": "Adam Harvey",
  8624. "email": "aharvey@php.net"
  8625. }
  8626. ],
  8627. "description": "Provides functionality to recursively process PHP variables",
  8628. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  8629. "time": "2023-02-03T07:05:40+00:00"
  8630. },
  8631. {
  8632. "name": "sebastian/type",
  8633. "version": "4.0.0",
  8634. "dist": {
  8635. "type": "zip",
  8636. "url": "https://mirrors.tencent.com/repository/composer/sebastian/type/4.0.0/sebastian-type-4.0.0.zip",
  8637. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  8638. "shasum": ""
  8639. },
  8640. "require": {
  8641. "php": ">=8.1"
  8642. },
  8643. "require-dev": {
  8644. "phpunit/phpunit": "^10.0"
  8645. },
  8646. "type": "library",
  8647. "extra": {
  8648. "branch-alias": {
  8649. "dev-main": "4.0-dev"
  8650. }
  8651. },
  8652. "autoload": {
  8653. "classmap": [
  8654. "src/"
  8655. ]
  8656. },
  8657. "license": [
  8658. "BSD-3-Clause"
  8659. ],
  8660. "authors": [
  8661. {
  8662. "name": "Sebastian Bergmann",
  8663. "email": "sebastian@phpunit.de",
  8664. "role": "lead"
  8665. }
  8666. ],
  8667. "description": "Collection of value objects that represent the types of the PHP type system",
  8668. "homepage": "https://github.com/sebastianbergmann/type",
  8669. "time": "2023-02-03T07:10:45+00:00"
  8670. },
  8671. {
  8672. "name": "sebastian/version",
  8673. "version": "4.0.1",
  8674. "dist": {
  8675. "type": "zip",
  8676. "url": "https://mirrors.tencent.com/repository/composer/sebastian/version/4.0.1/sebastian-version-4.0.1.zip",
  8677. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  8678. "shasum": ""
  8679. },
  8680. "require": {
  8681. "php": ">=8.1"
  8682. },
  8683. "type": "library",
  8684. "extra": {
  8685. "branch-alias": {
  8686. "dev-main": "4.0-dev"
  8687. }
  8688. },
  8689. "autoload": {
  8690. "classmap": [
  8691. "src/"
  8692. ]
  8693. },
  8694. "license": [
  8695. "BSD-3-Clause"
  8696. ],
  8697. "authors": [
  8698. {
  8699. "name": "Sebastian Bergmann",
  8700. "email": "sebastian@phpunit.de",
  8701. "role": "lead"
  8702. }
  8703. ],
  8704. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  8705. "homepage": "https://github.com/sebastianbergmann/version",
  8706. "time": "2023-02-07T11:34:05+00:00"
  8707. },
  8708. {
  8709. "name": "spatie/backtrace",
  8710. "version": "1.6.2",
  8711. "dist": {
  8712. "type": "zip",
  8713. "url": "https://mirrors.tencent.com/repository/composer/spatie/backtrace/1.6.2/spatie-backtrace-1.6.2.zip",
  8714. "reference": "1a9a145b044677ae3424693f7b06479fc8c137a9",
  8715. "shasum": ""
  8716. },
  8717. "require": {
  8718. "php": "^7.3|^8.0"
  8719. },
  8720. "require-dev": {
  8721. "ext-json": "*",
  8722. "laravel/serializable-closure": "^1.3",
  8723. "phpunit/phpunit": "^9.3",
  8724. "spatie/phpunit-snapshot-assertions": "^4.2",
  8725. "symfony/var-dumper": "^5.1"
  8726. },
  8727. "type": "library",
  8728. "autoload": {
  8729. "psr-4": {
  8730. "Spatie\\Backtrace\\": "src"
  8731. }
  8732. },
  8733. "license": [
  8734. "MIT"
  8735. ],
  8736. "authors": [
  8737. {
  8738. "name": "Freek Van de Herten",
  8739. "email": "freek@spatie.be",
  8740. "homepage": "https://spatie.be",
  8741. "role": "Developer"
  8742. }
  8743. ],
  8744. "description": "A better backtrace",
  8745. "homepage": "https://github.com/spatie/backtrace",
  8746. "keywords": [
  8747. "Backtrace",
  8748. "spatie"
  8749. ],
  8750. "time": "2024-07-22T08:21:24+00:00"
  8751. },
  8752. {
  8753. "name": "spatie/error-solutions",
  8754. "version": "1.1.1",
  8755. "dist": {
  8756. "type": "zip",
  8757. "url": "https://mirrors.tencent.com/repository/composer/spatie/error-solutions/1.1.1/spatie-error-solutions-1.1.1.zip",
  8758. "reference": "ae7393122eda72eed7cc4f176d1e96ea444f2d67",
  8759. "shasum": ""
  8760. },
  8761. "require": {
  8762. "php": "^8.0"
  8763. },
  8764. "require-dev": {
  8765. "illuminate/broadcasting": "^10.0|^11.0",
  8766. "illuminate/cache": "^10.0|^11.0",
  8767. "illuminate/support": "^10.0|^11.0",
  8768. "livewire/livewire": "^2.11|^3.3.5",
  8769. "openai-php/client": "^0.10.1",
  8770. "orchestra/testbench": "^7.0|8.22.3|^9.0",
  8771. "pestphp/pest": "^2.20",
  8772. "phpstan/phpstan": "^1.11",
  8773. "psr/simple-cache": "^3.0",
  8774. "psr/simple-cache-implementation": "^3.0",
  8775. "spatie/ray": "^1.28",
  8776. "symfony/cache": "^5.4|^6.0|^7.0",
  8777. "symfony/process": "^5.4|^6.0|^7.0",
  8778. "vlucas/phpdotenv": "^5.5"
  8779. },
  8780. "suggest": {
  8781. "openai-php/client": "Require get solutions from OpenAI",
  8782. "simple-cache-implementation": "To cache solutions from OpenAI"
  8783. },
  8784. "type": "library",
  8785. "autoload": {
  8786. "psr-4": {
  8787. "Spatie\\Ignition\\": "legacy/ignition",
  8788. "Spatie\\ErrorSolutions\\": "src",
  8789. "Spatie\\LaravelIgnition\\": "legacy/laravel-ignition"
  8790. }
  8791. },
  8792. "license": [
  8793. "MIT"
  8794. ],
  8795. "authors": [
  8796. {
  8797. "name": "Ruben Van Assche",
  8798. "email": "ruben@spatie.be",
  8799. "role": "Developer"
  8800. }
  8801. ],
  8802. "description": "This is my package error-solutions",
  8803. "homepage": "https://github.com/spatie/error-solutions",
  8804. "keywords": [
  8805. "error-solutions",
  8806. "spatie"
  8807. ],
  8808. "time": "2024-07-25T11:06:04+00:00"
  8809. },
  8810. {
  8811. "name": "spatie/flare-client-php",
  8812. "version": "1.8.0",
  8813. "dist": {
  8814. "type": "zip",
  8815. "url": "https://mirrors.tencent.com/repository/composer/spatie/flare-client-php/1.8.0/spatie-flare-client-php-1.8.0.zip",
  8816. "reference": "180f8ca4c0d0d6fc51477bd8c53ce37ab5a96122",
  8817. "shasum": ""
  8818. },
  8819. "require": {
  8820. "illuminate/pipeline": "^8.0|^9.0|^10.0|^11.0",
  8821. "php": "^8.0",
  8822. "spatie/backtrace": "^1.6.1",
  8823. "symfony/http-foundation": "^5.2|^6.0|^7.0",
  8824. "symfony/mime": "^5.2|^6.0|^7.0",
  8825. "symfony/process": "^5.2|^6.0|^7.0",
  8826. "symfony/var-dumper": "^5.2|^6.0|^7.0"
  8827. },
  8828. "require-dev": {
  8829. "dms/phpunit-arraysubset-asserts": "^0.5.0",
  8830. "pestphp/pest": "^1.20|^2.0",
  8831. "phpstan/extension-installer": "^1.1",
  8832. "phpstan/phpstan-deprecation-rules": "^1.0",
  8833. "phpstan/phpstan-phpunit": "^1.0",
  8834. "spatie/pest-plugin-snapshots": "^1.0|^2.0"
  8835. },
  8836. "type": "library",
  8837. "extra": {
  8838. "branch-alias": {
  8839. "dev-main": "1.3.x-dev"
  8840. }
  8841. },
  8842. "autoload": {
  8843. "files": [
  8844. "src/helpers.php"
  8845. ],
  8846. "psr-4": {
  8847. "Spatie\\FlareClient\\": "src"
  8848. }
  8849. },
  8850. "license": [
  8851. "MIT"
  8852. ],
  8853. "description": "Send PHP errors to Flare",
  8854. "homepage": "https://github.com/spatie/flare-client-php",
  8855. "keywords": [
  8856. "exception",
  8857. "flare",
  8858. "reporting",
  8859. "spatie"
  8860. ],
  8861. "time": "2024-08-01T08:27:26+00:00"
  8862. },
  8863. {
  8864. "name": "spatie/ignition",
  8865. "version": "1.15.0",
  8866. "dist": {
  8867. "type": "zip",
  8868. "url": "https://mirrors.tencent.com/repository/composer/spatie/ignition/1.15.0/spatie-ignition-1.15.0.zip",
  8869. "reference": "e3a68e137371e1eb9edc7f78ffa733f3b98991d2",
  8870. "shasum": ""
  8871. },
  8872. "require": {
  8873. "ext-json": "*",
  8874. "ext-mbstring": "*",
  8875. "php": "^8.0",
  8876. "spatie/error-solutions": "^1.0",
  8877. "spatie/flare-client-php": "^1.7",
  8878. "symfony/console": "^5.4|^6.0|^7.0",
  8879. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  8880. },
  8881. "require-dev": {
  8882. "illuminate/cache": "^9.52|^10.0|^11.0",
  8883. "mockery/mockery": "^1.4",
  8884. "pestphp/pest": "^1.20|^2.0",
  8885. "phpstan/extension-installer": "^1.1",
  8886. "phpstan/phpstan-deprecation-rules": "^1.0",
  8887. "phpstan/phpstan-phpunit": "^1.0",
  8888. "psr/simple-cache-implementation": "*",
  8889. "symfony/cache": "^5.4|^6.0|^7.0",
  8890. "symfony/process": "^5.4|^6.0|^7.0",
  8891. "vlucas/phpdotenv": "^5.5"
  8892. },
  8893. "suggest": {
  8894. "openai-php/client": "Require get solutions from OpenAI",
  8895. "simple-cache-implementation": "To cache solutions from OpenAI"
  8896. },
  8897. "type": "library",
  8898. "extra": {
  8899. "branch-alias": {
  8900. "dev-main": "1.5.x-dev"
  8901. }
  8902. },
  8903. "autoload": {
  8904. "psr-4": {
  8905. "Spatie\\Ignition\\": "src"
  8906. }
  8907. },
  8908. "license": [
  8909. "MIT"
  8910. ],
  8911. "authors": [
  8912. {
  8913. "name": "Spatie",
  8914. "email": "info@spatie.be",
  8915. "role": "Developer"
  8916. }
  8917. ],
  8918. "description": "A beautiful error page for PHP applications.",
  8919. "homepage": "https://flareapp.io/ignition",
  8920. "keywords": [
  8921. "error",
  8922. "flare",
  8923. "laravel",
  8924. "page"
  8925. ],
  8926. "time": "2024-06-12T14:55:22+00:00"
  8927. },
  8928. {
  8929. "name": "spatie/laravel-ignition",
  8930. "version": "2.8.0",
  8931. "dist": {
  8932. "type": "zip",
  8933. "url": "https://mirrors.tencent.com/repository/composer/spatie/laravel-ignition/2.8.0/spatie-laravel-ignition-2.8.0.zip",
  8934. "reference": "3c067b75bfb50574db8f7e2c3978c65eed71126c",
  8935. "shasum": ""
  8936. },
  8937. "require": {
  8938. "ext-curl": "*",
  8939. "ext-json": "*",
  8940. "ext-mbstring": "*",
  8941. "illuminate/support": "^10.0|^11.0",
  8942. "php": "^8.1",
  8943. "spatie/ignition": "^1.15",
  8944. "symfony/console": "^6.2.3|^7.0",
  8945. "symfony/var-dumper": "^6.2.3|^7.0"
  8946. },
  8947. "require-dev": {
  8948. "livewire/livewire": "^2.11|^3.3.5",
  8949. "mockery/mockery": "^1.5.1",
  8950. "openai-php/client": "^0.8.1",
  8951. "orchestra/testbench": "8.22.3|^9.0",
  8952. "pestphp/pest": "^2.34",
  8953. "phpstan/extension-installer": "^1.3.1",
  8954. "phpstan/phpstan-deprecation-rules": "^1.1.1",
  8955. "phpstan/phpstan-phpunit": "^1.3.16",
  8956. "vlucas/phpdotenv": "^5.5"
  8957. },
  8958. "suggest": {
  8959. "openai-php/client": "Require get solutions from OpenAI",
  8960. "psr/simple-cache-implementation": "Needed to cache solutions from OpenAI"
  8961. },
  8962. "type": "library",
  8963. "extra": {
  8964. "laravel": {
  8965. "providers": [
  8966. "Spatie\\LaravelIgnition\\IgnitionServiceProvider"
  8967. ],
  8968. "aliases": {
  8969. "Flare": "Spatie\\LaravelIgnition\\Facades\\Flare"
  8970. }
  8971. }
  8972. },
  8973. "autoload": {
  8974. "files": [
  8975. "src/helpers.php"
  8976. ],
  8977. "psr-4": {
  8978. "Spatie\\LaravelIgnition\\": "src"
  8979. }
  8980. },
  8981. "license": [
  8982. "MIT"
  8983. ],
  8984. "authors": [
  8985. {
  8986. "name": "Spatie",
  8987. "email": "info@spatie.be",
  8988. "role": "Developer"
  8989. }
  8990. ],
  8991. "description": "A beautiful error page for Laravel applications.",
  8992. "homepage": "https://flareapp.io/ignition",
  8993. "keywords": [
  8994. "error",
  8995. "flare",
  8996. "laravel",
  8997. "page"
  8998. ],
  8999. "time": "2024-06-12T15:01:18+00:00"
  9000. },
  9001. {
  9002. "name": "symfony/polyfill-php81",
  9003. "version": "v1.31.0",
  9004. "dist": {
  9005. "type": "zip",
  9006. "url": "https://mirrors.tencent.com/repository/composer/symfony/polyfill-php81/v1.31.0/symfony-polyfill-php81-v1.31.0.zip",
  9007. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  9008. "shasum": ""
  9009. },
  9010. "require": {
  9011. "php": ">=7.2"
  9012. },
  9013. "type": "library",
  9014. "extra": {
  9015. "thanks": {
  9016. "name": "symfony/polyfill",
  9017. "url": "https://github.com/symfony/polyfill"
  9018. }
  9019. },
  9020. "autoload": {
  9021. "files": [
  9022. "bootstrap.php"
  9023. ],
  9024. "psr-4": {
  9025. "Symfony\\Polyfill\\Php81\\": ""
  9026. },
  9027. "classmap": [
  9028. "Resources/stubs"
  9029. ]
  9030. },
  9031. "license": [
  9032. "MIT"
  9033. ],
  9034. "authors": [
  9035. {
  9036. "name": "Nicolas Grekas",
  9037. "email": "p@tchwork.com"
  9038. },
  9039. {
  9040. "name": "Symfony Community",
  9041. "homepage": "https://symfony.com/contributors"
  9042. }
  9043. ],
  9044. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  9045. "homepage": "https://symfony.com",
  9046. "keywords": [
  9047. "compatibility",
  9048. "polyfill",
  9049. "portable",
  9050. "shim"
  9051. ],
  9052. "time": "2024-09-09T11:45:10+00:00"
  9053. },
  9054. {
  9055. "name": "symfony/yaml",
  9056. "version": "v7.1.5",
  9057. "dist": {
  9058. "type": "zip",
  9059. "url": "https://mirrors.tencent.com/repository/composer/symfony/yaml/v7.1.5/symfony-yaml-v7.1.5.zip",
  9060. "reference": "4e561c316e135e053bd758bf3b3eb291d9919de4",
  9061. "shasum": ""
  9062. },
  9063. "require": {
  9064. "php": ">=8.2",
  9065. "symfony/polyfill-ctype": "^1.8"
  9066. },
  9067. "conflict": {
  9068. "symfony/console": "<6.4"
  9069. },
  9070. "require-dev": {
  9071. "symfony/console": "^6.4|^7.0"
  9072. },
  9073. "bin": [
  9074. "Resources/bin/yaml-lint"
  9075. ],
  9076. "type": "library",
  9077. "autoload": {
  9078. "psr-4": {
  9079. "Symfony\\Component\\Yaml\\": ""
  9080. },
  9081. "exclude-from-classmap": [
  9082. "/Tests/"
  9083. ]
  9084. },
  9085. "license": [
  9086. "MIT"
  9087. ],
  9088. "authors": [
  9089. {
  9090. "name": "Fabien Potencier",
  9091. "email": "fabien@symfony.com"
  9092. },
  9093. {
  9094. "name": "Symfony Community",
  9095. "homepage": "https://symfony.com/contributors"
  9096. }
  9097. ],
  9098. "description": "Loads and dumps YAML files",
  9099. "homepage": "https://symfony.com",
  9100. "time": "2024-09-17T12:49:58+00:00"
  9101. },
  9102. {
  9103. "name": "theseer/tokenizer",
  9104. "version": "1.2.3",
  9105. "dist": {
  9106. "type": "zip",
  9107. "url": "https://mirrors.tencent.com/repository/composer/theseer/tokenizer/1.2.3/theseer-tokenizer-1.2.3.zip",
  9108. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  9109. "shasum": ""
  9110. },
  9111. "require": {
  9112. "ext-dom": "*",
  9113. "ext-tokenizer": "*",
  9114. "ext-xmlwriter": "*",
  9115. "php": "^7.2 || ^8.0"
  9116. },
  9117. "type": "library",
  9118. "autoload": {
  9119. "classmap": [
  9120. "src/"
  9121. ]
  9122. },
  9123. "license": [
  9124. "BSD-3-Clause"
  9125. ],
  9126. "authors": [
  9127. {
  9128. "name": "Arne Blankerts",
  9129. "email": "arne@blankerts.de",
  9130. "role": "Developer"
  9131. }
  9132. ],
  9133. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  9134. "time": "2024-03-03T12:36:25+00:00"
  9135. }
  9136. ],
  9137. "aliases": [],
  9138. "minimum-stability": "stable",
  9139. "stability-flags": [],
  9140. "prefer-stable": true,
  9141. "prefer-lowest": false,
  9142. "platform": {
  9143. "php": "^8.1"
  9144. },
  9145. "platform-dev": [],
  9146. "plugin-api-version": "2.6.0"
  9147. }