composer.lock 324 KB

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