composer.lock 355 KB

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