composer.lock 319 KB

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