composer.lock 311 KB

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