composer.lock 239 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666
  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": "0a203f495637ce301d46b27519f3acbd",
  8. "packages": [
  9. {
  10. "name": "adbario/php-dot-notation",
  11. "version": "2.5.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/adbario/php-dot-notation.git",
  15. "reference": "081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/adbario/php-dot-notation/zipball/081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae",
  20. "reference": "081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae",
  21. "shasum": "",
  22. "mirrors": [
  23. {
  24. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  25. "preferred": true
  26. }
  27. ]
  28. },
  29. "require": {
  30. "ext-json": "*",
  31. "php": "^5.5 || ^7.0 || ^8.0"
  32. },
  33. "require-dev": {
  34. "phpunit/phpunit": "^4.8|^5.7|^6.6|^7.5|^8.5|^9.5",
  35. "squizlabs/php_codesniffer": "^3.6"
  36. },
  37. "type": "library",
  38. "autoload": {
  39. "files": [
  40. "src/helpers.php"
  41. ],
  42. "psr-4": {
  43. "Adbar\\": "src"
  44. }
  45. },
  46. "notification-url": "https://packagist.org/downloads/",
  47. "license": [
  48. "MIT"
  49. ],
  50. "authors": [
  51. {
  52. "name": "Riku Särkinen",
  53. "email": "riku@adbar.io"
  54. }
  55. ],
  56. "description": "PHP dot notation access to arrays",
  57. "homepage": "https://github.com/adbario/php-dot-notation",
  58. "keywords": [
  59. "ArrayAccess",
  60. "dotnotation"
  61. ],
  62. "support": {
  63. "issues": "https://github.com/adbario/php-dot-notation/issues",
  64. "source": "https://github.com/adbario/php-dot-notation/tree/2.5.0"
  65. },
  66. "time": "2022-10-14T20:31:46+00:00"
  67. },
  68. {
  69. "name": "alchemy/binary-driver",
  70. "version": "v5.2.0",
  71. "source": {
  72. "type": "git",
  73. "url": "https://github.com/alchemy-fr/BinaryDriver.git",
  74. "reference": "e0615cdff315e6b4b05ada67906df6262a020d22"
  75. },
  76. "dist": {
  77. "type": "zip",
  78. "url": "https://api.github.com/repos/alchemy-fr/BinaryDriver/zipball/e0615cdff315e6b4b05ada67906df6262a020d22",
  79. "reference": "e0615cdff315e6b4b05ada67906df6262a020d22",
  80. "shasum": "",
  81. "mirrors": [
  82. {
  83. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  84. "preferred": true
  85. }
  86. ]
  87. },
  88. "require": {
  89. "evenement/evenement": "^3.0|^2.0|^1.0",
  90. "php": ">=5.5",
  91. "psr/log": "^1.0",
  92. "symfony/process": "^2.3|^3.0|^4.0|^5.0"
  93. },
  94. "require-dev": {
  95. "phpunit/phpunit": "^4.0|^5.0"
  96. },
  97. "type": "library",
  98. "autoload": {
  99. "psr-0": {
  100. "Alchemy": "src"
  101. }
  102. },
  103. "notification-url": "https://packagist.org/downloads/",
  104. "license": [
  105. "MIT"
  106. ],
  107. "authors": [
  108. {
  109. "name": "Nicolas Le Goff",
  110. "email": "legoff.n@gmail.com"
  111. },
  112. {
  113. "name": "Romain Neutron",
  114. "email": "imprec@gmail.com",
  115. "homepage": "http://www.lickmychip.com/"
  116. },
  117. {
  118. "name": "Phraseanet Team",
  119. "email": "info@alchemy.fr",
  120. "homepage": "http://www.phraseanet.com/"
  121. },
  122. {
  123. "name": "Jens Hausdorf",
  124. "email": "mail@jens-hausdorf.de",
  125. "homepage": "https://jens-hausdorf.de",
  126. "role": "Maintainer"
  127. }
  128. ],
  129. "description": "A set of tools to build binary drivers",
  130. "keywords": [
  131. "binary",
  132. "driver"
  133. ],
  134. "support": {
  135. "issues": "https://github.com/alchemy-fr/BinaryDriver/issues",
  136. "source": "https://github.com/alchemy-fr/BinaryDriver/tree/master"
  137. },
  138. "time": "2020-02-12T19:35:11+00:00"
  139. },
  140. {
  141. "name": "alibabacloud/client",
  142. "version": "1.5.32",
  143. "source": {
  144. "type": "git",
  145. "url": "https://github.com/aliyun/openapi-sdk-php-client.git",
  146. "reference": "5bc6f6d660797dcee2c3aef29700ab41ee764f4d"
  147. },
  148. "dist": {
  149. "type": "zip",
  150. "url": "https://api.github.com/repos/aliyun/openapi-sdk-php-client/zipball/5bc6f6d660797dcee2c3aef29700ab41ee764f4d",
  151. "reference": "5bc6f6d660797dcee2c3aef29700ab41ee764f4d",
  152. "shasum": "",
  153. "mirrors": [
  154. {
  155. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  156. "preferred": true
  157. }
  158. ]
  159. },
  160. "require": {
  161. "adbario/php-dot-notation": "^2.4.1",
  162. "clagiordano/weblibs-configmanager": "^1.0",
  163. "ext-curl": "*",
  164. "ext-json": "*",
  165. "ext-libxml": "*",
  166. "ext-mbstring": "*",
  167. "ext-openssl": "*",
  168. "ext-simplexml": "*",
  169. "ext-xmlwriter": "*",
  170. "guzzlehttp/guzzle": "^6.3|^7.0",
  171. "mtdowling/jmespath.php": "^2.5",
  172. "php": ">=5.5"
  173. },
  174. "require-dev": {
  175. "composer/composer": "^1.8",
  176. "drupal/coder": "^8.3",
  177. "ext-dom": "*",
  178. "ext-pcre": "*",
  179. "ext-sockets": "*",
  180. "ext-spl": "*",
  181. "league/climate": "^3.2.4",
  182. "mikey179/vfsstream": "^1.6",
  183. "monolog/monolog": "^1.24",
  184. "phpunit/phpunit": "^5.7|^6.6|^7.5|^8.5|^9.5",
  185. "psr/cache": "^1.0",
  186. "symfony/dotenv": "^3.4",
  187. "symfony/var-dumper": "^3.4"
  188. },
  189. "suggest": {
  190. "ext-sockets": "To use client-side monitoring"
  191. },
  192. "type": "library",
  193. "autoload": {
  194. "files": [
  195. "src/Functions.php"
  196. ],
  197. "psr-4": {
  198. "AlibabaCloud\\Client\\": "src"
  199. }
  200. },
  201. "notification-url": "https://packagist.org/downloads/",
  202. "license": [
  203. "Apache-2.0"
  204. ],
  205. "authors": [
  206. {
  207. "name": "Alibaba Cloud SDK",
  208. "email": "sdk-team@alibabacloud.com",
  209. "homepage": "http://www.alibabacloud.com"
  210. }
  211. ],
  212. "description": "Alibaba Cloud Client for PHP - Use Alibaba Cloud in your PHP project",
  213. "homepage": "https://www.alibabacloud.com/",
  214. "keywords": [
  215. "alibaba",
  216. "alibabacloud",
  217. "aliyun",
  218. "client",
  219. "cloud",
  220. "library",
  221. "sdk",
  222. "tool"
  223. ],
  224. "support": {
  225. "issues": "https://github.com/aliyun/openapi-sdk-php-client/issues",
  226. "source": "https://github.com/aliyun/openapi-sdk-php-client"
  227. },
  228. "time": "2022-12-09T04:05:55+00:00"
  229. },
  230. {
  231. "name": "aliyuncs/oss-sdk-php",
  232. "version": "v2.7.2",
  233. "source": {
  234. "type": "git",
  235. "url": "https://github.com/aliyun/aliyun-oss-php-sdk.git",
  236. "reference": "483dd0b8bff5d47f0e4ffc99f6077a295c5ccbb5"
  237. },
  238. "dist": {
  239. "type": "zip",
  240. "url": "https://api.github.com/repos/aliyun/aliyun-oss-php-sdk/zipball/483dd0b8bff5d47f0e4ffc99f6077a295c5ccbb5",
  241. "reference": "483dd0b8bff5d47f0e4ffc99f6077a295c5ccbb5",
  242. "shasum": "",
  243. "mirrors": [
  244. {
  245. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  246. "preferred": true
  247. }
  248. ]
  249. },
  250. "require": {
  251. "php": ">=5.3"
  252. },
  253. "require-dev": {
  254. "php-coveralls/php-coveralls": "*",
  255. "phpunit/phpunit": "*"
  256. },
  257. "type": "library",
  258. "autoload": {
  259. "psr-4": {
  260. "OSS\\": "src/OSS"
  261. }
  262. },
  263. "notification-url": "https://packagist.org/downloads/",
  264. "license": [
  265. "MIT"
  266. ],
  267. "authors": [
  268. {
  269. "name": "Aliyuncs",
  270. "homepage": "http://www.aliyun.com"
  271. }
  272. ],
  273. "description": "Aliyun OSS SDK for PHP",
  274. "homepage": "http://www.aliyun.com/product/oss/",
  275. "support": {
  276. "issues": "https://github.com/aliyun/aliyun-oss-php-sdk/issues",
  277. "source": "https://github.com/aliyun/aliyun-oss-php-sdk/tree/v2.7.2"
  278. },
  279. "time": "2024-10-28T10:41:12+00:00"
  280. },
  281. {
  282. "name": "carbonphp/carbon-doctrine-types",
  283. "version": "3.2.0",
  284. "source": {
  285. "type": "git",
  286. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  287. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  288. },
  289. "dist": {
  290. "type": "zip",
  291. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  292. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  293. "shasum": "",
  294. "mirrors": [
  295. {
  296. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  297. "preferred": true
  298. }
  299. ]
  300. },
  301. "require": {
  302. "php": "^8.1"
  303. },
  304. "conflict": {
  305. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  306. },
  307. "require-dev": {
  308. "doctrine/dbal": "^4.0.0",
  309. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  310. "phpunit/phpunit": "^10.3"
  311. },
  312. "type": "library",
  313. "autoload": {
  314. "psr-4": {
  315. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  316. }
  317. },
  318. "notification-url": "https://packagist.org/downloads/",
  319. "license": [
  320. "MIT"
  321. ],
  322. "authors": [
  323. {
  324. "name": "KyleKatarn",
  325. "email": "kylekatarnls@gmail.com"
  326. }
  327. ],
  328. "description": "Types to use Carbon in Doctrine",
  329. "keywords": [
  330. "carbon",
  331. "date",
  332. "datetime",
  333. "doctrine",
  334. "time"
  335. ],
  336. "support": {
  337. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  338. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  339. },
  340. "funding": [
  341. {
  342. "url": "https://github.com/kylekatarnls",
  343. "type": "github"
  344. },
  345. {
  346. "url": "https://opencollective.com/Carbon",
  347. "type": "open_collective"
  348. },
  349. {
  350. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  351. "type": "tidelift"
  352. }
  353. ],
  354. "time": "2024-02-09T16:56:22+00:00"
  355. },
  356. {
  357. "name": "clagiordano/weblibs-configmanager",
  358. "version": "v1.2.0",
  359. "source": {
  360. "type": "git",
  361. "url": "https://github.com/clagiordano/weblibs-configmanager.git",
  362. "reference": "5c8ebcc62782313b1278afe802b120d18c07a059"
  363. },
  364. "dist": {
  365. "type": "zip",
  366. "url": "https://api.github.com/repos/clagiordano/weblibs-configmanager/zipball/5c8ebcc62782313b1278afe802b120d18c07a059",
  367. "reference": "5c8ebcc62782313b1278afe802b120d18c07a059",
  368. "shasum": "",
  369. "mirrors": [
  370. {
  371. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  372. "preferred": true
  373. }
  374. ]
  375. },
  376. "require": {
  377. "php": ">=5.4"
  378. },
  379. "require-dev": {
  380. "clagiordano/phpunit-result-printer": "^1",
  381. "phpunit/phpunit": "^4.8"
  382. },
  383. "type": "library",
  384. "autoload": {
  385. "psr-4": {
  386. "clagiordano\\weblibs\\configmanager\\": "src/"
  387. }
  388. },
  389. "notification-url": "https://packagist.org/downloads/",
  390. "license": [
  391. "LGPL-3.0-or-later"
  392. ],
  393. "authors": [
  394. {
  395. "name": "Claudio Giordano",
  396. "email": "claudio.giordano@autistici.org",
  397. "role": "Developer"
  398. }
  399. ],
  400. "description": "weblibs-configmanager is a tool library for easily read and access to php config array file and direct read/write configuration file / object",
  401. "keywords": [
  402. "clagiordano",
  403. "configuration",
  404. "manager",
  405. "tool",
  406. "weblibs"
  407. ],
  408. "support": {
  409. "issues": "https://github.com/clagiordano/weblibs-configmanager/issues",
  410. "source": "https://github.com/clagiordano/weblibs-configmanager/tree/v1.2.0"
  411. },
  412. "time": "2021-05-18T17:55:57+00:00"
  413. },
  414. {
  415. "name": "desarrolla2/cache",
  416. "version": "v2.1.3",
  417. "source": {
  418. "type": "git",
  419. "url": "https://github.com/desarrolla2/Cache.git",
  420. "reference": "cbc42cae703e6f8cc9e17231f083304f0038318e"
  421. },
  422. "dist": {
  423. "type": "zip",
  424. "url": "https://api.github.com/repos/desarrolla2/Cache/zipball/cbc42cae703e6f8cc9e17231f083304f0038318e",
  425. "reference": "cbc42cae703e6f8cc9e17231f083304f0038318e",
  426. "shasum": "",
  427. "mirrors": [
  428. {
  429. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  430. "preferred": true
  431. }
  432. ]
  433. },
  434. "require": {
  435. "php": ">=5.4.0"
  436. },
  437. "require-dev": {
  438. "predis/predis": "~1.0.0"
  439. },
  440. "suggest": {
  441. "predis/predis": "Predis support"
  442. },
  443. "type": "library",
  444. "autoload": {
  445. "psr-4": {
  446. "Desarrolla2\\Cache\\": "src/",
  447. "Desarrolla2\\Test\\Cache\\": "test/"
  448. }
  449. },
  450. "notification-url": "https://packagist.org/downloads/",
  451. "license": [
  452. "MIT"
  453. ],
  454. "authors": [
  455. {
  456. "name": "Daniel González",
  457. "homepage": "http://desarrolla2.com/"
  458. }
  459. ],
  460. "description": "Provides an cache interface for several adapters Apc, Apcu, File, Mongo, Memcache, Memcached, Mysql, Mongo, Redis is supported. New adapters is comming!",
  461. "homepage": "https://github.com/desarrolla2/Cache/",
  462. "keywords": [
  463. "apc",
  464. "apcu",
  465. "cache",
  466. "file",
  467. "memcache",
  468. "memcached",
  469. "mongo",
  470. "mysql",
  471. "redis"
  472. ],
  473. "support": {
  474. "issues": "https://github.com/desarrolla2/Cache/issues",
  475. "source": "https://github.com/desarrolla2/Cache/tree/v2.1.3"
  476. },
  477. "time": "2023-05-04T14:59:36+00:00"
  478. },
  479. {
  480. "name": "doctrine/deprecations",
  481. "version": "1.1.4",
  482. "source": {
  483. "type": "git",
  484. "url": "https://github.com/doctrine/deprecations.git",
  485. "reference": "31610dbb31faa98e6b5447b62340826f54fbc4e9"
  486. },
  487. "dist": {
  488. "type": "zip",
  489. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/31610dbb31faa98e6b5447b62340826f54fbc4e9",
  490. "reference": "31610dbb31faa98e6b5447b62340826f54fbc4e9",
  491. "shasum": "",
  492. "mirrors": [
  493. {
  494. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  495. "preferred": true
  496. }
  497. ]
  498. },
  499. "require": {
  500. "php": "^7.1 || ^8.0"
  501. },
  502. "require-dev": {
  503. "doctrine/coding-standard": "^9 || ^12",
  504. "phpstan/phpstan": "1.4.10 || 2.0.3",
  505. "phpstan/phpstan-phpunit": "^1.0 || ^2",
  506. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  507. "psr/log": "^1 || ^2 || ^3"
  508. },
  509. "suggest": {
  510. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  511. },
  512. "type": "library",
  513. "autoload": {
  514. "psr-4": {
  515. "Doctrine\\Deprecations\\": "src"
  516. }
  517. },
  518. "notification-url": "https://packagist.org/downloads/",
  519. "license": [
  520. "MIT"
  521. ],
  522. "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.",
  523. "homepage": "https://www.doctrine-project.org/",
  524. "support": {
  525. "issues": "https://github.com/doctrine/deprecations/issues",
  526. "source": "https://github.com/doctrine/deprecations/tree/1.1.4"
  527. },
  528. "time": "2024-12-07T21:18:45+00:00"
  529. },
  530. {
  531. "name": "doctrine/lexer",
  532. "version": "2.1.1",
  533. "source": {
  534. "type": "git",
  535. "url": "https://github.com/doctrine/lexer.git",
  536. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6"
  537. },
  538. "dist": {
  539. "type": "zip",
  540. "url": "https://api.github.com/repos/doctrine/lexer/zipball/861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  541. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  542. "shasum": "",
  543. "mirrors": [
  544. {
  545. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  546. "preferred": true
  547. }
  548. ]
  549. },
  550. "require": {
  551. "doctrine/deprecations": "^1.0",
  552. "php": "^7.1 || ^8.0"
  553. },
  554. "require-dev": {
  555. "doctrine/coding-standard": "^9 || ^12",
  556. "phpstan/phpstan": "^1.3",
  557. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6",
  558. "psalm/plugin-phpunit": "^0.18.3",
  559. "vimeo/psalm": "^4.11 || ^5.21"
  560. },
  561. "type": "library",
  562. "autoload": {
  563. "psr-4": {
  564. "Doctrine\\Common\\Lexer\\": "src"
  565. }
  566. },
  567. "notification-url": "https://packagist.org/downloads/",
  568. "license": [
  569. "MIT"
  570. ],
  571. "authors": [
  572. {
  573. "name": "Guilherme Blanco",
  574. "email": "guilhermeblanco@gmail.com"
  575. },
  576. {
  577. "name": "Roman Borschel",
  578. "email": "roman@code-factory.org"
  579. },
  580. {
  581. "name": "Johannes Schmitt",
  582. "email": "schmittjoh@gmail.com"
  583. }
  584. ],
  585. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  586. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  587. "keywords": [
  588. "annotations",
  589. "docblock",
  590. "lexer",
  591. "parser",
  592. "php"
  593. ],
  594. "support": {
  595. "issues": "https://github.com/doctrine/lexer/issues",
  596. "source": "https://github.com/doctrine/lexer/tree/2.1.1"
  597. },
  598. "funding": [
  599. {
  600. "url": "https://www.doctrine-project.org/sponsorship.html",
  601. "type": "custom"
  602. },
  603. {
  604. "url": "https://www.patreon.com/phpdoctrine",
  605. "type": "patreon"
  606. },
  607. {
  608. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  609. "type": "tidelift"
  610. }
  611. ],
  612. "time": "2024-02-05T11:35:39+00:00"
  613. },
  614. {
  615. "name": "dragonmantank/cron-expression",
  616. "version": "v3.6.0",
  617. "source": {
  618. "type": "git",
  619. "url": "https://github.com/dragonmantank/cron-expression.git",
  620. "reference": "d61a8a9604ec1f8c3d150d09db6ce98b32675013"
  621. },
  622. "dist": {
  623. "type": "zip",
  624. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/d61a8a9604ec1f8c3d150d09db6ce98b32675013",
  625. "reference": "d61a8a9604ec1f8c3d150d09db6ce98b32675013",
  626. "shasum": "",
  627. "mirrors": [
  628. {
  629. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  630. "preferred": true
  631. }
  632. ]
  633. },
  634. "require": {
  635. "php": "^8.2|^8.3|^8.4|^8.5"
  636. },
  637. "replace": {
  638. "mtdowling/cron-expression": "^1.0"
  639. },
  640. "require-dev": {
  641. "phpstan/extension-installer": "^1.4.3",
  642. "phpstan/phpstan": "^1.12.32|^2.1.31",
  643. "phpunit/phpunit": "^8.5.48|^9.0"
  644. },
  645. "type": "library",
  646. "extra": {
  647. "branch-alias": {
  648. "dev-master": "3.x-dev"
  649. }
  650. },
  651. "autoload": {
  652. "psr-4": {
  653. "Cron\\": "src/Cron/"
  654. }
  655. },
  656. "notification-url": "https://packagist.org/downloads/",
  657. "license": [
  658. "MIT"
  659. ],
  660. "authors": [
  661. {
  662. "name": "Chris Tankersley",
  663. "email": "chris@ctankersley.com",
  664. "homepage": "https://github.com/dragonmantank"
  665. }
  666. ],
  667. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  668. "keywords": [
  669. "cron",
  670. "schedule"
  671. ],
  672. "support": {
  673. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  674. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.6.0"
  675. },
  676. "funding": [
  677. {
  678. "url": "https://github.com/dragonmantank",
  679. "type": "github"
  680. }
  681. ],
  682. "time": "2025-10-31T18:51:33+00:00"
  683. },
  684. {
  685. "name": "egulias/email-validator",
  686. "version": "3.2.6",
  687. "source": {
  688. "type": "git",
  689. "url": "https://github.com/egulias/EmailValidator.git",
  690. "reference": "e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7"
  691. },
  692. "dist": {
  693. "type": "zip",
  694. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7",
  695. "reference": "e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7",
  696. "shasum": "",
  697. "mirrors": [
  698. {
  699. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  700. "preferred": true
  701. }
  702. ]
  703. },
  704. "require": {
  705. "doctrine/lexer": "^1.2|^2",
  706. "php": ">=7.2",
  707. "symfony/polyfill-intl-idn": "^1.15"
  708. },
  709. "require-dev": {
  710. "phpunit/phpunit": "^8.5.8|^9.3.3",
  711. "vimeo/psalm": "^4"
  712. },
  713. "suggest": {
  714. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  715. },
  716. "type": "library",
  717. "extra": {
  718. "branch-alias": {
  719. "dev-master": "3.0.x-dev"
  720. }
  721. },
  722. "autoload": {
  723. "psr-4": {
  724. "Egulias\\EmailValidator\\": "src"
  725. }
  726. },
  727. "notification-url": "https://packagist.org/downloads/",
  728. "license": [
  729. "MIT"
  730. ],
  731. "authors": [
  732. {
  733. "name": "Eduardo Gulias Davis"
  734. }
  735. ],
  736. "description": "A library for validating emails against several RFCs",
  737. "homepage": "https://github.com/egulias/EmailValidator",
  738. "keywords": [
  739. "email",
  740. "emailvalidation",
  741. "emailvalidator",
  742. "validation",
  743. "validator"
  744. ],
  745. "support": {
  746. "issues": "https://github.com/egulias/EmailValidator/issues",
  747. "source": "https://github.com/egulias/EmailValidator/tree/3.2.6"
  748. },
  749. "funding": [
  750. {
  751. "url": "https://github.com/egulias",
  752. "type": "github"
  753. }
  754. ],
  755. "time": "2023-06-01T07:04:22+00:00"
  756. },
  757. {
  758. "name": "evenement/evenement",
  759. "version": "v3.0.2",
  760. "source": {
  761. "type": "git",
  762. "url": "https://github.com/igorw/evenement.git",
  763. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  764. },
  765. "dist": {
  766. "type": "zip",
  767. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  768. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  769. "shasum": "",
  770. "mirrors": [
  771. {
  772. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  773. "preferred": true
  774. }
  775. ]
  776. },
  777. "require": {
  778. "php": ">=7.0"
  779. },
  780. "require-dev": {
  781. "phpunit/phpunit": "^9 || ^6"
  782. },
  783. "type": "library",
  784. "autoload": {
  785. "psr-4": {
  786. "Evenement\\": "src/"
  787. }
  788. },
  789. "notification-url": "https://packagist.org/downloads/",
  790. "license": [
  791. "MIT"
  792. ],
  793. "authors": [
  794. {
  795. "name": "Igor Wiedler",
  796. "email": "igor@wiedler.ch"
  797. }
  798. ],
  799. "description": "Événement is a very simple event dispatching library for PHP",
  800. "keywords": [
  801. "event-dispatcher",
  802. "event-emitter"
  803. ],
  804. "support": {
  805. "issues": "https://github.com/igorw/evenement/issues",
  806. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  807. },
  808. "time": "2023-08-08T05:53:35+00:00"
  809. },
  810. {
  811. "name": "firebase/php-jwt",
  812. "version": "v6.11.0",
  813. "source": {
  814. "type": "git",
  815. "url": "https://github.com/firebase/php-jwt.git",
  816. "reference": "8f718f4dfc9c5d5f0c994cdfd103921b43592712"
  817. },
  818. "dist": {
  819. "type": "zip",
  820. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/8f718f4dfc9c5d5f0c994cdfd103921b43592712",
  821. "reference": "8f718f4dfc9c5d5f0c994cdfd103921b43592712",
  822. "shasum": "",
  823. "mirrors": [
  824. {
  825. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  826. "preferred": true
  827. }
  828. ]
  829. },
  830. "require": {
  831. "php": "^8.0"
  832. },
  833. "require-dev": {
  834. "guzzlehttp/guzzle": "^7.4",
  835. "phpspec/prophecy-phpunit": "^2.0",
  836. "phpunit/phpunit": "^9.5",
  837. "psr/cache": "^2.0||^3.0",
  838. "psr/http-client": "^1.0",
  839. "psr/http-factory": "^1.0"
  840. },
  841. "suggest": {
  842. "ext-sodium": "Support EdDSA (Ed25519) signatures",
  843. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  844. },
  845. "type": "library",
  846. "autoload": {
  847. "psr-4": {
  848. "Firebase\\JWT\\": "src"
  849. }
  850. },
  851. "notification-url": "https://packagist.org/downloads/",
  852. "license": [
  853. "BSD-3-Clause"
  854. ],
  855. "authors": [
  856. {
  857. "name": "Neuman Vong",
  858. "email": "neuman+pear@twilio.com",
  859. "role": "Developer"
  860. },
  861. {
  862. "name": "Anant Narayanan",
  863. "email": "anant@php.net",
  864. "role": "Developer"
  865. }
  866. ],
  867. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  868. "homepage": "https://github.com/firebase/php-jwt",
  869. "keywords": [
  870. "jwt",
  871. "php"
  872. ],
  873. "support": {
  874. "issues": "https://github.com/firebase/php-jwt/issues",
  875. "source": "https://github.com/firebase/php-jwt/tree/v6.11.0"
  876. },
  877. "time": "2025-01-23T05:11:06+00:00"
  878. },
  879. {
  880. "name": "google/auth",
  881. "version": "v1.26.0",
  882. "source": {
  883. "type": "git",
  884. "url": "https://github.com/googleapis/google-auth-library-php.git",
  885. "reference": "f1f0d0319e2e7750ebfaa523c78819792a9ed9f7"
  886. },
  887. "dist": {
  888. "type": "zip",
  889. "url": "https://api.github.com/repos/googleapis/google-auth-library-php/zipball/f1f0d0319e2e7750ebfaa523c78819792a9ed9f7",
  890. "reference": "f1f0d0319e2e7750ebfaa523c78819792a9ed9f7",
  891. "shasum": "",
  892. "mirrors": [
  893. {
  894. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  895. "preferred": true
  896. }
  897. ]
  898. },
  899. "require": {
  900. "firebase/php-jwt": "^5.5||^6.0",
  901. "guzzlehttp/guzzle": "^6.2.1|^7.0",
  902. "guzzlehttp/psr7": "^1.7|^2.0",
  903. "php": "^7.1||^8.0",
  904. "psr/cache": "^1.0|^2.0|^3.0",
  905. "psr/http-message": "^1.0"
  906. },
  907. "require-dev": {
  908. "guzzlehttp/promises": "0.1.1|^1.3",
  909. "kelvinmo/simplejwt": "0.7.0",
  910. "phpseclib/phpseclib": "^2.0.31||^3.0",
  911. "phpspec/prophecy-phpunit": "^1.1||^2.0",
  912. "phpunit/phpunit": "^7.5||^9.0.0",
  913. "sebastian/comparator": ">=1.2.3",
  914. "squizlabs/php_codesniffer": "^3.5"
  915. },
  916. "suggest": {
  917. "phpseclib/phpseclib": "May be used in place of OpenSSL for signing strings or for token management. Please require version ^2."
  918. },
  919. "type": "library",
  920. "autoload": {
  921. "psr-4": {
  922. "Google\\Auth\\": "src"
  923. }
  924. },
  925. "notification-url": "https://packagist.org/downloads/",
  926. "license": [
  927. "Apache-2.0"
  928. ],
  929. "description": "Google Auth Library for PHP",
  930. "homepage": "http://github.com/google/google-auth-library-php",
  931. "keywords": [
  932. "Authentication",
  933. "google",
  934. "oauth2"
  935. ],
  936. "support": {
  937. "docs": "https://googleapis.github.io/google-auth-library-php/main/",
  938. "issues": "https://github.com/googleapis/google-auth-library-php/issues",
  939. "source": "https://github.com/googleapis/google-auth-library-php/tree/v1.26.0"
  940. },
  941. "time": "2023-04-05T15:11:57+00:00"
  942. },
  943. {
  944. "name": "google/cloud-core",
  945. "version": "v1.52.10",
  946. "source": {
  947. "type": "git",
  948. "url": "https://github.com/googleapis/google-cloud-php-core.git",
  949. "reference": "5e34556498ecadee2161402fd1024bec7ce33186"
  950. },
  951. "dist": {
  952. "type": "zip",
  953. "url": "https://api.github.com/repos/googleapis/google-cloud-php-core/zipball/5e34556498ecadee2161402fd1024bec7ce33186",
  954. "reference": "5e34556498ecadee2161402fd1024bec7ce33186",
  955. "shasum": "",
  956. "mirrors": [
  957. {
  958. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  959. "preferred": true
  960. }
  961. ]
  962. },
  963. "require": {
  964. "google/auth": "^1.18",
  965. "guzzlehttp/guzzle": "^6.5.8|^7.4.4",
  966. "guzzlehttp/promises": "^1.4||^2.0",
  967. "guzzlehttp/psr7": "^1.7|^2.0",
  968. "monolog/monolog": "^1.1|^2.0|^3.0",
  969. "php": ">=7.4",
  970. "psr/http-message": "^1.0|^2.0",
  971. "rize/uri-template": "~0.3"
  972. },
  973. "require-dev": {
  974. "erusev/parsedown": "^1.6",
  975. "google/cloud-common-protos": "^0.4",
  976. "google/gax": "^1.24.0",
  977. "opis/closure": "^3",
  978. "phpdocumentor/reflection": "^5.0",
  979. "phpspec/prophecy-phpunit": "^2.0",
  980. "phpunit/phpunit": "^9.0",
  981. "squizlabs/php_codesniffer": "2.*"
  982. },
  983. "suggest": {
  984. "opis/closure": "May be used to serialize closures to process jobs in the batch daemon. Please require version ^3.",
  985. "symfony/lock": "Required for the Spanner cached based session pool. Please require the following commit: 3.3.x-dev#1ba6ac9"
  986. },
  987. "bin": [
  988. "bin/google-cloud-batch"
  989. ],
  990. "type": "library",
  991. "extra": {
  992. "component": {
  993. "id": "cloud-core",
  994. "path": "Core",
  995. "entry": "src/ServiceBuilder.php",
  996. "target": "googleapis/google-cloud-php-core.git"
  997. }
  998. },
  999. "autoload": {
  1000. "psr-4": {
  1001. "Google\\Cloud\\Core\\": "src"
  1002. }
  1003. },
  1004. "notification-url": "https://packagist.org/downloads/",
  1005. "license": [
  1006. "Apache-2.0"
  1007. ],
  1008. "description": "Google Cloud PHP shared dependency, providing functionality useful to all components.",
  1009. "support": {
  1010. "source": "https://github.com/googleapis/google-cloud-php-core/tree/v1.52.10"
  1011. },
  1012. "time": "2023-12-08T22:36:35+00:00"
  1013. },
  1014. {
  1015. "name": "google/cloud-translate",
  1016. "version": "v1.11.0",
  1017. "source": {
  1018. "type": "git",
  1019. "url": "https://github.com/googleapis/google-cloud-php-translate.git",
  1020. "reference": "a840c101c2469da1d07f1082bbc6805d3eba8a46"
  1021. },
  1022. "dist": {
  1023. "type": "zip",
  1024. "url": "https://api.github.com/repos/googleapis/google-cloud-php-translate/zipball/a840c101c2469da1d07f1082bbc6805d3eba8a46",
  1025. "reference": "a840c101c2469da1d07f1082bbc6805d3eba8a46",
  1026. "shasum": "",
  1027. "mirrors": [
  1028. {
  1029. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1030. "preferred": true
  1031. }
  1032. ]
  1033. },
  1034. "require": {
  1035. "google/cloud-core": "^1.39",
  1036. "google/gax": "^1.1"
  1037. },
  1038. "require-dev": {
  1039. "erusev/parsedown": "^1.6",
  1040. "phpdocumentor/reflection": "^3.0",
  1041. "phpunit/phpunit": "^4.8|^5.0",
  1042. "squizlabs/php_codesniffer": "2.*"
  1043. },
  1044. "suggest": {
  1045. "ext-grpc": "The gRPC extension enables use of the performant gRPC transport",
  1046. "ext-protobuf": "Provides a significant increase in throughput over the pure PHP protobuf implementation. See https://cloud.google.com/php/grpc for installation instructions."
  1047. },
  1048. "type": "library",
  1049. "extra": {
  1050. "component": {
  1051. "id": "cloud-translate",
  1052. "path": "Translate",
  1053. "entry": "src/TranslateClient.php",
  1054. "target": "googleapis/google-cloud-php-translate.git"
  1055. }
  1056. },
  1057. "autoload": {
  1058. "psr-4": {
  1059. "Google\\Cloud\\Translate\\": "src",
  1060. "GPBMetadata\\Google\\Cloud\\Translate\\": "metadata"
  1061. }
  1062. },
  1063. "notification-url": "https://packagist.org/downloads/",
  1064. "license": [
  1065. "Apache-2.0"
  1066. ],
  1067. "description": "Cloud Translation Client for PHP",
  1068. "support": {
  1069. "source": "https://github.com/googleapis/google-cloud-php-translate/tree/v1.11.0"
  1070. },
  1071. "time": "2021-09-15T00:52:58+00:00"
  1072. },
  1073. {
  1074. "name": "google/common-protos",
  1075. "version": "v3.2.0",
  1076. "source": {
  1077. "type": "git",
  1078. "url": "https://github.com/googleapis/common-protos-php.git",
  1079. "reference": "57d4ad36cc48cc0369123042908013ef2a86bb98"
  1080. },
  1081. "dist": {
  1082. "type": "zip",
  1083. "url": "https://api.github.com/repos/googleapis/common-protos-php/zipball/57d4ad36cc48cc0369123042908013ef2a86bb98",
  1084. "reference": "57d4ad36cc48cc0369123042908013ef2a86bb98",
  1085. "shasum": "",
  1086. "mirrors": [
  1087. {
  1088. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1089. "preferred": true
  1090. }
  1091. ]
  1092. },
  1093. "require": {
  1094. "google/protobuf": "^3.6.1"
  1095. },
  1096. "require-dev": {
  1097. "phpunit/phpunit": "^4.8.36||^8.5",
  1098. "sami/sami": "*"
  1099. },
  1100. "type": "library",
  1101. "autoload": {
  1102. "psr-4": {
  1103. "Google\\Api\\": "src/Api",
  1104. "Google\\Iam\\": "src/Iam",
  1105. "Google\\Rpc\\": "src/Rpc",
  1106. "Google\\Type\\": "src/Type",
  1107. "Google\\Cloud\\": "src/Cloud",
  1108. "GPBMetadata\\Google\\Api\\": "metadata/Api",
  1109. "GPBMetadata\\Google\\Iam\\": "metadata/Iam",
  1110. "GPBMetadata\\Google\\Rpc\\": "metadata/Rpc",
  1111. "GPBMetadata\\Google\\Type\\": "metadata/Type",
  1112. "GPBMetadata\\Google\\Cloud\\": "metadata/Cloud",
  1113. "GPBMetadata\\Google\\Logging\\": "metadata/Logging"
  1114. }
  1115. },
  1116. "notification-url": "https://packagist.org/downloads/",
  1117. "license": [
  1118. "Apache-2.0"
  1119. ],
  1120. "description": "Google API Common Protos for PHP",
  1121. "homepage": "https://github.com/googleapis/common-protos-php",
  1122. "keywords": [
  1123. "google"
  1124. ],
  1125. "support": {
  1126. "issues": "https://github.com/googleapis/common-protos-php/issues",
  1127. "source": "https://github.com/googleapis/common-protos-php/tree/v3.2.0"
  1128. },
  1129. "time": "2023-01-12T16:51:46+00:00"
  1130. },
  1131. {
  1132. "name": "google/gax",
  1133. "version": "v1.19.1",
  1134. "source": {
  1135. "type": "git",
  1136. "url": "https://github.com/googleapis/gax-php.git",
  1137. "reference": "30f6b307faa9858bf58d967664467098dbbc354f"
  1138. },
  1139. "dist": {
  1140. "type": "zip",
  1141. "url": "https://api.github.com/repos/googleapis/gax-php/zipball/30f6b307faa9858bf58d967664467098dbbc354f",
  1142. "reference": "30f6b307faa9858bf58d967664467098dbbc354f",
  1143. "shasum": "",
  1144. "mirrors": [
  1145. {
  1146. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1147. "preferred": true
  1148. }
  1149. ]
  1150. },
  1151. "require": {
  1152. "google/auth": "1.19.1||^1.25.0",
  1153. "google/common-protos": "^1.3.1||^2.0||^3.0",
  1154. "google/grpc-gcp": "^0.2",
  1155. "google/longrunning": "^0.2",
  1156. "google/protobuf": "^3.21.4",
  1157. "grpc/grpc": "^1.13",
  1158. "guzzlehttp/promises": "^1.3",
  1159. "guzzlehttp/psr7": "^1.7.0||^2",
  1160. "php": ">=7.0"
  1161. },
  1162. "conflict": {
  1163. "ext-protobuf": "<3.7.0"
  1164. },
  1165. "require-dev": {
  1166. "phpspec/prophecy": "^1.10",
  1167. "phpunit/phpunit": "^5.5||^8.5",
  1168. "squizlabs/php_codesniffer": "3.*",
  1169. "yoast/phpunit-polyfills": "^1.0"
  1170. },
  1171. "type": "library",
  1172. "autoload": {
  1173. "psr-4": {
  1174. "Google\\ApiCore\\": "src",
  1175. "GPBMetadata\\ApiCore\\": "metadata/ApiCore"
  1176. }
  1177. },
  1178. "notification-url": "https://packagist.org/downloads/",
  1179. "license": [
  1180. "BSD-3-Clause"
  1181. ],
  1182. "description": "Google API Core for PHP",
  1183. "homepage": "https://github.com/googleapis/gax-php",
  1184. "keywords": [
  1185. "google"
  1186. ],
  1187. "support": {
  1188. "issues": "https://github.com/googleapis/gax-php/issues",
  1189. "source": "https://github.com/googleapis/gax-php/tree/v1.19.1"
  1190. },
  1191. "time": "2023-03-16T19:58:19+00:00"
  1192. },
  1193. {
  1194. "name": "google/grpc-gcp",
  1195. "version": "v0.2.1",
  1196. "source": {
  1197. "type": "git",
  1198. "url": "https://github.com/GoogleCloudPlatform/grpc-gcp-php.git",
  1199. "reference": "899d0112812a812df7692617a59f4076f0d01719"
  1200. },
  1201. "dist": {
  1202. "type": "zip",
  1203. "url": "https://api.github.com/repos/GoogleCloudPlatform/grpc-gcp-php/zipball/899d0112812a812df7692617a59f4076f0d01719",
  1204. "reference": "899d0112812a812df7692617a59f4076f0d01719",
  1205. "shasum": "",
  1206. "mirrors": [
  1207. {
  1208. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1209. "preferred": true
  1210. }
  1211. ]
  1212. },
  1213. "require": {
  1214. "google/auth": "^1.3",
  1215. "google/protobuf": "^v3.3.0",
  1216. "grpc/grpc": "^v1.13.0",
  1217. "php": ">=5.5.0",
  1218. "psr/cache": "^1.0.1||^2.0.0||^3.0.0"
  1219. },
  1220. "require-dev": {
  1221. "google/cloud-spanner": "^1.7",
  1222. "phpunit/phpunit": "4.8.36"
  1223. },
  1224. "type": "library",
  1225. "autoload": {
  1226. "psr-4": {
  1227. "Grpc\\Gcp\\": "src/"
  1228. },
  1229. "classmap": [
  1230. "src/generated/"
  1231. ]
  1232. },
  1233. "notification-url": "https://packagist.org/downloads/",
  1234. "license": [
  1235. "Apache-2.0"
  1236. ],
  1237. "description": "gRPC GCP library for channel management",
  1238. "support": {
  1239. "issues": "https://github.com/GoogleCloudPlatform/grpc-gcp-php/issues",
  1240. "source": "https://github.com/GoogleCloudPlatform/grpc-gcp-php/tree/v0.2.1"
  1241. },
  1242. "time": "2022-10-11T15:54:47+00:00"
  1243. },
  1244. {
  1245. "name": "google/longrunning",
  1246. "version": "v0.2.6",
  1247. "source": {
  1248. "type": "git",
  1249. "url": "https://github.com/googleapis/php-longrunning.git",
  1250. "reference": "9689b4db54cf4cf8186118d9d59aa9ba35bb5842"
  1251. },
  1252. "dist": {
  1253. "type": "zip",
  1254. "url": "https://api.github.com/repos/googleapis/php-longrunning/zipball/9689b4db54cf4cf8186118d9d59aa9ba35bb5842",
  1255. "reference": "9689b4db54cf4cf8186118d9d59aa9ba35bb5842",
  1256. "shasum": "",
  1257. "mirrors": [
  1258. {
  1259. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1260. "preferred": true
  1261. }
  1262. ]
  1263. },
  1264. "require-dev": {
  1265. "google/gax": "^1.13.0",
  1266. "phpunit/phpunit": "^9.0"
  1267. },
  1268. "type": "library",
  1269. "extra": {
  1270. "component": {
  1271. "id": "longrunning",
  1272. "path": "LongRunning",
  1273. "entry": null,
  1274. "target": "googleapis/php-longrunning"
  1275. }
  1276. },
  1277. "autoload": {
  1278. "psr-4": {
  1279. "Google\\LongRunning\\": "src/LongRunning",
  1280. "Google\\ApiCore\\LongRunning\\": "src/ApiCore/LongRunning",
  1281. "GPBMetadata\\Google\\Longrunning\\": "metadata/Longrunning"
  1282. }
  1283. },
  1284. "notification-url": "https://packagist.org/downloads/",
  1285. "license": [
  1286. "Apache-2.0"
  1287. ],
  1288. "description": "Google LongRunning Client for PHP",
  1289. "support": {
  1290. "source": "https://github.com/googleapis/php-longrunning/tree/v0.2.6"
  1291. },
  1292. "time": "2023-04-21T14:12:59+00:00"
  1293. },
  1294. {
  1295. "name": "google/protobuf",
  1296. "version": "v3.25.8",
  1297. "source": {
  1298. "type": "git",
  1299. "url": "https://github.com/protocolbuffers/protobuf-php.git",
  1300. "reference": "57d440fc54a00fda5b8781e8d9bf0140ea6d8e52"
  1301. },
  1302. "dist": {
  1303. "type": "zip",
  1304. "url": "https://api.github.com/repos/protocolbuffers/protobuf-php/zipball/57d440fc54a00fda5b8781e8d9bf0140ea6d8e52",
  1305. "reference": "57d440fc54a00fda5b8781e8d9bf0140ea6d8e52",
  1306. "shasum": "",
  1307. "mirrors": [
  1308. {
  1309. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1310. "preferred": true
  1311. }
  1312. ]
  1313. },
  1314. "require": {
  1315. "php": ">=7.0.0"
  1316. },
  1317. "require-dev": {
  1318. "phpunit/phpunit": ">=5.0.0"
  1319. },
  1320. "suggest": {
  1321. "ext-bcmath": "Need to support JSON deserialization"
  1322. },
  1323. "type": "library",
  1324. "autoload": {
  1325. "psr-4": {
  1326. "Google\\Protobuf\\": "src/Google/Protobuf",
  1327. "GPBMetadata\\Google\\Protobuf\\": "src/GPBMetadata/Google/Protobuf"
  1328. }
  1329. },
  1330. "notification-url": "https://packagist.org/downloads/",
  1331. "license": [
  1332. "BSD-3-Clause"
  1333. ],
  1334. "description": "proto library for PHP",
  1335. "homepage": "https://developers.google.com/protocol-buffers/",
  1336. "keywords": [
  1337. "proto"
  1338. ],
  1339. "support": {
  1340. "source": "https://github.com/protocolbuffers/protobuf-php/tree/v3.25.8"
  1341. },
  1342. "time": "2025-05-27T21:04:40+00:00"
  1343. },
  1344. {
  1345. "name": "grpc/grpc",
  1346. "version": "1.57.0",
  1347. "source": {
  1348. "type": "git",
  1349. "url": "https://github.com/grpc/grpc-php.git",
  1350. "reference": "b610c42022ed3a22f831439cb93802f2a4502fdf"
  1351. },
  1352. "dist": {
  1353. "type": "zip",
  1354. "url": "https://api.github.com/repos/grpc/grpc-php/zipball/b610c42022ed3a22f831439cb93802f2a4502fdf",
  1355. "reference": "b610c42022ed3a22f831439cb93802f2a4502fdf",
  1356. "shasum": "",
  1357. "mirrors": [
  1358. {
  1359. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1360. "preferred": true
  1361. }
  1362. ]
  1363. },
  1364. "require": {
  1365. "php": ">=7.0.0"
  1366. },
  1367. "require-dev": {
  1368. "google/auth": "^v1.3.0"
  1369. },
  1370. "suggest": {
  1371. "ext-protobuf": "For better performance, install the protobuf C extension.",
  1372. "google/protobuf": "To get started using grpc quickly, install the native protobuf library."
  1373. },
  1374. "type": "library",
  1375. "autoload": {
  1376. "psr-4": {
  1377. "Grpc\\": "src/lib/"
  1378. }
  1379. },
  1380. "notification-url": "https://packagist.org/downloads/",
  1381. "license": [
  1382. "Apache-2.0"
  1383. ],
  1384. "description": "gRPC library for PHP",
  1385. "homepage": "https://grpc.io",
  1386. "keywords": [
  1387. "rpc"
  1388. ],
  1389. "support": {
  1390. "source": "https://github.com/grpc/grpc-php/tree/v1.57.0"
  1391. },
  1392. "time": "2023-08-14T23:57:54+00:00"
  1393. },
  1394. {
  1395. "name": "guzzlehttp/command",
  1396. "version": "1.0.0",
  1397. "source": {
  1398. "type": "git",
  1399. "url": "https://github.com/guzzle/command.git",
  1400. "reference": "2aaa2521a8f8269d6f5dfc13fe2af12c76921034"
  1401. },
  1402. "dist": {
  1403. "type": "zip",
  1404. "url": "https://api.github.com/repos/guzzle/command/zipball/2aaa2521a8f8269d6f5dfc13fe2af12c76921034",
  1405. "reference": "2aaa2521a8f8269d6f5dfc13fe2af12c76921034",
  1406. "shasum": "",
  1407. "mirrors": [
  1408. {
  1409. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1410. "preferred": true
  1411. }
  1412. ]
  1413. },
  1414. "require": {
  1415. "guzzlehttp/guzzle": "^6.2",
  1416. "guzzlehttp/promises": "~1.3",
  1417. "guzzlehttp/psr7": "~1.0",
  1418. "php": ">=5.5.0"
  1419. },
  1420. "require-dev": {
  1421. "phpunit/phpunit": "~4.0|~5.0"
  1422. },
  1423. "type": "library",
  1424. "extra": {
  1425. "branch-alias": {
  1426. "dev-master": "0.9-dev"
  1427. }
  1428. },
  1429. "autoload": {
  1430. "psr-4": {
  1431. "GuzzleHttp\\Command\\": "src/"
  1432. }
  1433. },
  1434. "notification-url": "https://packagist.org/downloads/",
  1435. "license": [
  1436. "MIT"
  1437. ],
  1438. "authors": [
  1439. {
  1440. "name": "Michael Dowling",
  1441. "email": "mtdowling@gmail.com",
  1442. "homepage": "https://github.com/mtdowling"
  1443. },
  1444. {
  1445. "name": "Jeremy Lindblom",
  1446. "email": "jeremeamia@gmail.com",
  1447. "homepage": "https://github.com/jeremeamia"
  1448. }
  1449. ],
  1450. "description": "Provides the foundation for building command-based web service clients",
  1451. "support": {
  1452. "issues": "https://github.com/guzzle/command/issues",
  1453. "source": "https://github.com/guzzle/command/tree/1.0.0"
  1454. },
  1455. "time": "2016-11-24T13:34:15+00:00"
  1456. },
  1457. {
  1458. "name": "guzzlehttp/guzzle",
  1459. "version": "6.5.8",
  1460. "source": {
  1461. "type": "git",
  1462. "url": "https://github.com/guzzle/guzzle.git",
  1463. "reference": "a52f0440530b54fa079ce76e8c5d196a42cad981"
  1464. },
  1465. "dist": {
  1466. "type": "zip",
  1467. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/a52f0440530b54fa079ce76e8c5d196a42cad981",
  1468. "reference": "a52f0440530b54fa079ce76e8c5d196a42cad981",
  1469. "shasum": "",
  1470. "mirrors": [
  1471. {
  1472. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1473. "preferred": true
  1474. }
  1475. ]
  1476. },
  1477. "require": {
  1478. "ext-json": "*",
  1479. "guzzlehttp/promises": "^1.0",
  1480. "guzzlehttp/psr7": "^1.9",
  1481. "php": ">=5.5",
  1482. "symfony/polyfill-intl-idn": "^1.17"
  1483. },
  1484. "require-dev": {
  1485. "ext-curl": "*",
  1486. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  1487. "psr/log": "^1.1"
  1488. },
  1489. "suggest": {
  1490. "psr/log": "Required for using the Log middleware"
  1491. },
  1492. "type": "library",
  1493. "extra": {
  1494. "branch-alias": {
  1495. "dev-master": "6.5-dev"
  1496. }
  1497. },
  1498. "autoload": {
  1499. "files": [
  1500. "src/functions_include.php"
  1501. ],
  1502. "psr-4": {
  1503. "GuzzleHttp\\": "src/"
  1504. }
  1505. },
  1506. "notification-url": "https://packagist.org/downloads/",
  1507. "license": [
  1508. "MIT"
  1509. ],
  1510. "authors": [
  1511. {
  1512. "name": "Graham Campbell",
  1513. "email": "hello@gjcampbell.co.uk",
  1514. "homepage": "https://github.com/GrahamCampbell"
  1515. },
  1516. {
  1517. "name": "Michael Dowling",
  1518. "email": "mtdowling@gmail.com",
  1519. "homepage": "https://github.com/mtdowling"
  1520. },
  1521. {
  1522. "name": "Jeremy Lindblom",
  1523. "email": "jeremeamia@gmail.com",
  1524. "homepage": "https://github.com/jeremeamia"
  1525. },
  1526. {
  1527. "name": "George Mponos",
  1528. "email": "gmponos@gmail.com",
  1529. "homepage": "https://github.com/gmponos"
  1530. },
  1531. {
  1532. "name": "Tobias Nyholm",
  1533. "email": "tobias.nyholm@gmail.com",
  1534. "homepage": "https://github.com/Nyholm"
  1535. },
  1536. {
  1537. "name": "Márk Sági-Kazár",
  1538. "email": "mark.sagikazar@gmail.com",
  1539. "homepage": "https://github.com/sagikazarmark"
  1540. },
  1541. {
  1542. "name": "Tobias Schultze",
  1543. "email": "webmaster@tubo-world.de",
  1544. "homepage": "https://github.com/Tobion"
  1545. }
  1546. ],
  1547. "description": "Guzzle is a PHP HTTP client library",
  1548. "homepage": "http://guzzlephp.org/",
  1549. "keywords": [
  1550. "client",
  1551. "curl",
  1552. "framework",
  1553. "http",
  1554. "http client",
  1555. "rest",
  1556. "web service"
  1557. ],
  1558. "support": {
  1559. "issues": "https://github.com/guzzle/guzzle/issues",
  1560. "source": "https://github.com/guzzle/guzzle/tree/6.5.8"
  1561. },
  1562. "funding": [
  1563. {
  1564. "url": "https://github.com/GrahamCampbell",
  1565. "type": "github"
  1566. },
  1567. {
  1568. "url": "https://github.com/Nyholm",
  1569. "type": "github"
  1570. },
  1571. {
  1572. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1573. "type": "tidelift"
  1574. }
  1575. ],
  1576. "time": "2022-06-20T22:16:07+00:00"
  1577. },
  1578. {
  1579. "name": "guzzlehttp/guzzle-services",
  1580. "version": "1.1.3",
  1581. "source": {
  1582. "type": "git",
  1583. "url": "https://github.com/guzzle/guzzle-services.git",
  1584. "reference": "9e3abf20161cbf662d616cbb995f2811771759f7"
  1585. },
  1586. "dist": {
  1587. "type": "zip",
  1588. "url": "https://api.github.com/repos/guzzle/guzzle-services/zipball/9e3abf20161cbf662d616cbb995f2811771759f7",
  1589. "reference": "9e3abf20161cbf662d616cbb995f2811771759f7",
  1590. "shasum": "",
  1591. "mirrors": [
  1592. {
  1593. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1594. "preferred": true
  1595. }
  1596. ]
  1597. },
  1598. "require": {
  1599. "guzzlehttp/command": "~1.0",
  1600. "guzzlehttp/guzzle": "^6.2",
  1601. "php": ">=5.5"
  1602. },
  1603. "require-dev": {
  1604. "phpunit/phpunit": "~4.0"
  1605. },
  1606. "suggest": {
  1607. "gimler/guzzle-description-loader": "^0.0.4"
  1608. },
  1609. "type": "library",
  1610. "extra": {
  1611. "branch-alias": {
  1612. "dev-master": "1.0.x-dev"
  1613. }
  1614. },
  1615. "autoload": {
  1616. "psr-4": {
  1617. "GuzzleHttp\\Command\\Guzzle\\": "src/"
  1618. }
  1619. },
  1620. "notification-url": "https://packagist.org/downloads/",
  1621. "license": [
  1622. "MIT"
  1623. ],
  1624. "authors": [
  1625. {
  1626. "name": "Michael Dowling",
  1627. "email": "mtdowling@gmail.com",
  1628. "homepage": "https://github.com/mtdowling"
  1629. },
  1630. {
  1631. "name": "Jeremy Lindblom",
  1632. "email": "jeremeamia@gmail.com",
  1633. "homepage": "https://github.com/jeremeamia"
  1634. },
  1635. {
  1636. "name": "Stefano Kowalke",
  1637. "email": "blueduck@mail.org",
  1638. "homepage": "https://github.com/konafets"
  1639. }
  1640. ],
  1641. "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.",
  1642. "support": {
  1643. "issues": "https://github.com/guzzle/guzzle-services/issues",
  1644. "source": "https://github.com/guzzle/guzzle-services/tree/1.1.3"
  1645. },
  1646. "time": "2017-10-06T14:32:02+00:00"
  1647. },
  1648. {
  1649. "name": "guzzlehttp/promises",
  1650. "version": "1.5.3",
  1651. "source": {
  1652. "type": "git",
  1653. "url": "https://github.com/guzzle/promises.git",
  1654. "reference": "67ab6e18aaa14d753cc148911d273f6e6cb6721e"
  1655. },
  1656. "dist": {
  1657. "type": "zip",
  1658. "url": "https://api.github.com/repos/guzzle/promises/zipball/67ab6e18aaa14d753cc148911d273f6e6cb6721e",
  1659. "reference": "67ab6e18aaa14d753cc148911d273f6e6cb6721e",
  1660. "shasum": "",
  1661. "mirrors": [
  1662. {
  1663. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1664. "preferred": true
  1665. }
  1666. ]
  1667. },
  1668. "require": {
  1669. "php": ">=5.5"
  1670. },
  1671. "require-dev": {
  1672. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1673. },
  1674. "type": "library",
  1675. "autoload": {
  1676. "files": [
  1677. "src/functions_include.php"
  1678. ],
  1679. "psr-4": {
  1680. "GuzzleHttp\\Promise\\": "src/"
  1681. }
  1682. },
  1683. "notification-url": "https://packagist.org/downloads/",
  1684. "license": [
  1685. "MIT"
  1686. ],
  1687. "authors": [
  1688. {
  1689. "name": "Graham Campbell",
  1690. "email": "hello@gjcampbell.co.uk",
  1691. "homepage": "https://github.com/GrahamCampbell"
  1692. },
  1693. {
  1694. "name": "Michael Dowling",
  1695. "email": "mtdowling@gmail.com",
  1696. "homepage": "https://github.com/mtdowling"
  1697. },
  1698. {
  1699. "name": "Tobias Nyholm",
  1700. "email": "tobias.nyholm@gmail.com",
  1701. "homepage": "https://github.com/Nyholm"
  1702. },
  1703. {
  1704. "name": "Tobias Schultze",
  1705. "email": "webmaster@tubo-world.de",
  1706. "homepage": "https://github.com/Tobion"
  1707. }
  1708. ],
  1709. "description": "Guzzle promises library",
  1710. "keywords": [
  1711. "promise"
  1712. ],
  1713. "support": {
  1714. "issues": "https://github.com/guzzle/promises/issues",
  1715. "source": "https://github.com/guzzle/promises/tree/1.5.3"
  1716. },
  1717. "funding": [
  1718. {
  1719. "url": "https://github.com/GrahamCampbell",
  1720. "type": "github"
  1721. },
  1722. {
  1723. "url": "https://github.com/Nyholm",
  1724. "type": "github"
  1725. },
  1726. {
  1727. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1728. "type": "tidelift"
  1729. }
  1730. ],
  1731. "time": "2023-05-21T12:31:43+00:00"
  1732. },
  1733. {
  1734. "name": "guzzlehttp/psr7",
  1735. "version": "1.9.1",
  1736. "source": {
  1737. "type": "git",
  1738. "url": "https://github.com/guzzle/psr7.git",
  1739. "reference": "e4490cabc77465aaee90b20cfc9a770f8c04be6b"
  1740. },
  1741. "dist": {
  1742. "type": "zip",
  1743. "url": "https://api.github.com/repos/guzzle/psr7/zipball/e4490cabc77465aaee90b20cfc9a770f8c04be6b",
  1744. "reference": "e4490cabc77465aaee90b20cfc9a770f8c04be6b",
  1745. "shasum": "",
  1746. "mirrors": [
  1747. {
  1748. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1749. "preferred": true
  1750. }
  1751. ]
  1752. },
  1753. "require": {
  1754. "php": ">=5.4.0",
  1755. "psr/http-message": "~1.0",
  1756. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  1757. },
  1758. "provide": {
  1759. "psr/http-message-implementation": "1.0"
  1760. },
  1761. "require-dev": {
  1762. "ext-zlib": "*",
  1763. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  1764. },
  1765. "suggest": {
  1766. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1767. },
  1768. "type": "library",
  1769. "autoload": {
  1770. "files": [
  1771. "src/functions_include.php"
  1772. ],
  1773. "psr-4": {
  1774. "GuzzleHttp\\Psr7\\": "src/"
  1775. }
  1776. },
  1777. "notification-url": "https://packagist.org/downloads/",
  1778. "license": [
  1779. "MIT"
  1780. ],
  1781. "authors": [
  1782. {
  1783. "name": "Graham Campbell",
  1784. "email": "hello@gjcampbell.co.uk",
  1785. "homepage": "https://github.com/GrahamCampbell"
  1786. },
  1787. {
  1788. "name": "Michael Dowling",
  1789. "email": "mtdowling@gmail.com",
  1790. "homepage": "https://github.com/mtdowling"
  1791. },
  1792. {
  1793. "name": "George Mponos",
  1794. "email": "gmponos@gmail.com",
  1795. "homepage": "https://github.com/gmponos"
  1796. },
  1797. {
  1798. "name": "Tobias Nyholm",
  1799. "email": "tobias.nyholm@gmail.com",
  1800. "homepage": "https://github.com/Nyholm"
  1801. },
  1802. {
  1803. "name": "Márk Sági-Kazár",
  1804. "email": "mark.sagikazar@gmail.com",
  1805. "homepage": "https://github.com/sagikazarmark"
  1806. },
  1807. {
  1808. "name": "Tobias Schultze",
  1809. "email": "webmaster@tubo-world.de",
  1810. "homepage": "https://github.com/Tobion"
  1811. }
  1812. ],
  1813. "description": "PSR-7 message implementation that also provides common utility methods",
  1814. "keywords": [
  1815. "http",
  1816. "message",
  1817. "psr-7",
  1818. "request",
  1819. "response",
  1820. "stream",
  1821. "uri",
  1822. "url"
  1823. ],
  1824. "support": {
  1825. "issues": "https://github.com/guzzle/psr7/issues",
  1826. "source": "https://github.com/guzzle/psr7/tree/1.9.1"
  1827. },
  1828. "funding": [
  1829. {
  1830. "url": "https://github.com/GrahamCampbell",
  1831. "type": "github"
  1832. },
  1833. {
  1834. "url": "https://github.com/Nyholm",
  1835. "type": "github"
  1836. },
  1837. {
  1838. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1839. "type": "tidelift"
  1840. }
  1841. ],
  1842. "time": "2023-04-17T16:00:37+00:00"
  1843. },
  1844. {
  1845. "name": "jasny/sso",
  1846. "version": "v0.3.0",
  1847. "source": {
  1848. "type": "git",
  1849. "url": "https://github.com/jasny/sso.git",
  1850. "reference": "0cb18c072e7b14db3d2d2549c051f41ca837e5e9"
  1851. },
  1852. "dist": {
  1853. "type": "zip",
  1854. "url": "https://api.github.com/repos/jasny/sso/zipball/0cb18c072e7b14db3d2d2549c051f41ca837e5e9",
  1855. "reference": "0cb18c072e7b14db3d2d2549c051f41ca837e5e9",
  1856. "shasum": "",
  1857. "mirrors": [
  1858. {
  1859. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1860. "preferred": true
  1861. }
  1862. ]
  1863. },
  1864. "require": {
  1865. "desarrolla2/cache": "^2.0.0",
  1866. "jasny/validation-result": "^1.0.0",
  1867. "php": ">=5.5.0"
  1868. },
  1869. "require-dev": {
  1870. "codeception/codeception": "^2.1.0",
  1871. "jasny/php-code-quality": "^1.1.0"
  1872. },
  1873. "type": "library",
  1874. "autoload": {
  1875. "psr-4": {
  1876. "Jasny\\SSO\\": "src/"
  1877. }
  1878. },
  1879. "notification-url": "https://packagist.org/downloads/",
  1880. "license": [
  1881. "MIT"
  1882. ],
  1883. "authors": [
  1884. {
  1885. "name": "Arnold Daniels",
  1886. "email": "arnold@jasny.net",
  1887. "homepage": "http://www.jasny.net"
  1888. }
  1889. ],
  1890. "description": "Simple Single Sign-On",
  1891. "homepage": "http://www.jasny.net/articles/simple-single-sign-on-for-php/",
  1892. "keywords": [
  1893. "SSO",
  1894. "auth"
  1895. ],
  1896. "support": {
  1897. "issues": "https://github.com/jasny/sso/issues",
  1898. "source": "https://github.com/jasny/sso"
  1899. },
  1900. "time": "2017-02-24T22:44:27+00:00"
  1901. },
  1902. {
  1903. "name": "jasny/validation-result",
  1904. "version": "v1.1.2",
  1905. "source": {
  1906. "type": "git",
  1907. "url": "https://github.com/jasny/validation-result.git",
  1908. "reference": "fbce54837c8414cf5af22981ac33b26eb13b2a51"
  1909. },
  1910. "dist": {
  1911. "type": "zip",
  1912. "url": "https://api.github.com/repos/jasny/validation-result/zipball/fbce54837c8414cf5af22981ac33b26eb13b2a51",
  1913. "reference": "fbce54837c8414cf5af22981ac33b26eb13b2a51",
  1914. "shasum": "",
  1915. "mirrors": [
  1916. {
  1917. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1918. "preferred": true
  1919. }
  1920. ]
  1921. },
  1922. "require": {
  1923. "php": ">=5.6.0"
  1924. },
  1925. "require-dev": {
  1926. "jasny/php-code-quality": "^1.2"
  1927. },
  1928. "type": "library",
  1929. "autoload": {
  1930. "psr-4": {
  1931. "Jasny\\": "src/"
  1932. }
  1933. },
  1934. "notification-url": "https://packagist.org/downloads/",
  1935. "license": [
  1936. "MIT"
  1937. ],
  1938. "authors": [
  1939. {
  1940. "name": "Arnold Daniels",
  1941. "email": "arnold@jasny.net",
  1942. "homepage": "http://www.jasny.net"
  1943. }
  1944. ],
  1945. "description": "A result object for validation",
  1946. "keywords": [
  1947. "validation"
  1948. ],
  1949. "support": {
  1950. "issues": "https://github.com/jasny/validation-result/issues",
  1951. "source": "https://github.com/jasny/validation-result"
  1952. },
  1953. "time": "2019-02-12T12:51:58+00:00"
  1954. },
  1955. {
  1956. "name": "league/flysystem",
  1957. "version": "1.1.10",
  1958. "source": {
  1959. "type": "git",
  1960. "url": "https://github.com/thephpleague/flysystem.git",
  1961. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1"
  1962. },
  1963. "dist": {
  1964. "type": "zip",
  1965. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/3239285c825c152bcc315fe0e87d6b55f5972ed1",
  1966. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1",
  1967. "shasum": "",
  1968. "mirrors": [
  1969. {
  1970. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1971. "preferred": true
  1972. }
  1973. ]
  1974. },
  1975. "require": {
  1976. "ext-fileinfo": "*",
  1977. "league/mime-type-detection": "^1.3",
  1978. "php": "^7.2.5 || ^8.0"
  1979. },
  1980. "conflict": {
  1981. "league/flysystem-sftp": "<1.0.6"
  1982. },
  1983. "require-dev": {
  1984. "phpspec/prophecy": "^1.11.1",
  1985. "phpunit/phpunit": "^8.5.8"
  1986. },
  1987. "suggest": {
  1988. "ext-ftp": "Allows you to use FTP server storage",
  1989. "ext-openssl": "Allows you to use FTPS server storage",
  1990. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  1991. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  1992. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  1993. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  1994. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  1995. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  1996. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  1997. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  1998. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  1999. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2000. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2001. },
  2002. "type": "library",
  2003. "extra": {
  2004. "branch-alias": {
  2005. "dev-master": "1.1-dev"
  2006. }
  2007. },
  2008. "autoload": {
  2009. "psr-4": {
  2010. "League\\Flysystem\\": "src/"
  2011. }
  2012. },
  2013. "notification-url": "https://packagist.org/downloads/",
  2014. "license": [
  2015. "MIT"
  2016. ],
  2017. "authors": [
  2018. {
  2019. "name": "Frank de Jonge",
  2020. "email": "info@frenky.net"
  2021. }
  2022. ],
  2023. "description": "Filesystem abstraction: Many filesystems, one API.",
  2024. "keywords": [
  2025. "Cloud Files",
  2026. "WebDAV",
  2027. "abstraction",
  2028. "aws",
  2029. "cloud",
  2030. "copy.com",
  2031. "dropbox",
  2032. "file systems",
  2033. "files",
  2034. "filesystem",
  2035. "filesystems",
  2036. "ftp",
  2037. "rackspace",
  2038. "remote",
  2039. "s3",
  2040. "sftp",
  2041. "storage"
  2042. ],
  2043. "support": {
  2044. "issues": "https://github.com/thephpleague/flysystem/issues",
  2045. "source": "https://github.com/thephpleague/flysystem/tree/1.1.10"
  2046. },
  2047. "funding": [
  2048. {
  2049. "url": "https://offset.earth/frankdejonge",
  2050. "type": "other"
  2051. }
  2052. ],
  2053. "time": "2022-10-04T09:16:37+00:00"
  2054. },
  2055. {
  2056. "name": "league/flysystem-cached-adapter",
  2057. "version": "1.1.0",
  2058. "source": {
  2059. "type": "git",
  2060. "url": "https://github.com/thephpleague/flysystem-cached-adapter.git",
  2061. "reference": "d1925efb2207ac4be3ad0c40b8277175f99ffaff"
  2062. },
  2063. "dist": {
  2064. "type": "zip",
  2065. "url": "https://api.github.com/repos/thephpleague/flysystem-cached-adapter/zipball/d1925efb2207ac4be3ad0c40b8277175f99ffaff",
  2066. "reference": "d1925efb2207ac4be3ad0c40b8277175f99ffaff",
  2067. "shasum": "",
  2068. "mirrors": [
  2069. {
  2070. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2071. "preferred": true
  2072. }
  2073. ]
  2074. },
  2075. "require": {
  2076. "league/flysystem": "~1.0",
  2077. "psr/cache": "^1.0.0"
  2078. },
  2079. "require-dev": {
  2080. "mockery/mockery": "~0.9",
  2081. "phpspec/phpspec": "^3.4",
  2082. "phpunit/phpunit": "^5.7",
  2083. "predis/predis": "~1.0",
  2084. "tedivm/stash": "~0.12"
  2085. },
  2086. "suggest": {
  2087. "ext-phpredis": "Pure C implemented extension for PHP"
  2088. },
  2089. "type": "library",
  2090. "autoload": {
  2091. "psr-4": {
  2092. "League\\Flysystem\\Cached\\": "src/"
  2093. }
  2094. },
  2095. "notification-url": "https://packagist.org/downloads/",
  2096. "license": [
  2097. "MIT"
  2098. ],
  2099. "authors": [
  2100. {
  2101. "name": "frankdejonge",
  2102. "email": "info@frenky.net"
  2103. }
  2104. ],
  2105. "description": "An adapter decorator to enable meta-data caching.",
  2106. "support": {
  2107. "issues": "https://github.com/thephpleague/flysystem-cached-adapter/issues",
  2108. "source": "https://github.com/thephpleague/flysystem-cached-adapter/tree/master"
  2109. },
  2110. "time": "2020-07-25T15:56:04+00:00"
  2111. },
  2112. {
  2113. "name": "league/mime-type-detection",
  2114. "version": "1.15.0",
  2115. "source": {
  2116. "type": "git",
  2117. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2118. "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301"
  2119. },
  2120. "dist": {
  2121. "type": "zip",
  2122. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301",
  2123. "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301",
  2124. "shasum": "",
  2125. "mirrors": [
  2126. {
  2127. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2128. "preferred": true
  2129. }
  2130. ]
  2131. },
  2132. "require": {
  2133. "ext-fileinfo": "*",
  2134. "php": "^7.4 || ^8.0"
  2135. },
  2136. "require-dev": {
  2137. "friendsofphp/php-cs-fixer": "^3.2",
  2138. "phpstan/phpstan": "^0.12.68",
  2139. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  2140. },
  2141. "type": "library",
  2142. "autoload": {
  2143. "psr-4": {
  2144. "League\\MimeTypeDetection\\": "src"
  2145. }
  2146. },
  2147. "notification-url": "https://packagist.org/downloads/",
  2148. "license": [
  2149. "MIT"
  2150. ],
  2151. "authors": [
  2152. {
  2153. "name": "Frank de Jonge",
  2154. "email": "info@frankdejonge.nl"
  2155. }
  2156. ],
  2157. "description": "Mime-type detection for Flysystem",
  2158. "support": {
  2159. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2160. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.15.0"
  2161. },
  2162. "funding": [
  2163. {
  2164. "url": "https://github.com/frankdejonge",
  2165. "type": "github"
  2166. },
  2167. {
  2168. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2169. "type": "tidelift"
  2170. }
  2171. ],
  2172. "time": "2024-01-28T23:22:08+00:00"
  2173. },
  2174. {
  2175. "name": "liz/flysystem-qiniu",
  2176. "version": "v1.23",
  2177. "source": {
  2178. "type": "git",
  2179. "url": "https://github.com/l396635210/flysystem-qiniu.git",
  2180. "reference": "24af0f95644fcf66e82cc04ce840f31f6450e026"
  2181. },
  2182. "dist": {
  2183. "type": "zip",
  2184. "url": "https://api.github.com/repos/l396635210/flysystem-qiniu/zipball/24af0f95644fcf66e82cc04ce840f31f6450e026",
  2185. "reference": "24af0f95644fcf66e82cc04ce840f31f6450e026",
  2186. "shasum": "",
  2187. "mirrors": [
  2188. {
  2189. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2190. "preferred": true
  2191. }
  2192. ]
  2193. },
  2194. "require": {
  2195. "league/flysystem": "^1.0",
  2196. "php": "^7.0 || ^8.0",
  2197. "qiniu/php-sdk": "^7.2"
  2198. },
  2199. "type": "library",
  2200. "autoload": {
  2201. "psr-4": {
  2202. "Liz\\Flysystem\\QiNiu\\": "src"
  2203. }
  2204. },
  2205. "notification-url": "https://packagist.org/downloads/",
  2206. "license": [
  2207. "MIT"
  2208. ],
  2209. "authors": [
  2210. {
  2211. "name": "liz in company",
  2212. "email": "396635210@qq.com"
  2213. }
  2214. ],
  2215. "description": "QiNiu oss adapter for flysystem",
  2216. "support": {
  2217. "issues": "https://github.com/l396635210/flysystem-qiniu/issues",
  2218. "source": "https://github.com/l396635210/flysystem-qiniu/tree/v1.23"
  2219. },
  2220. "time": "2021-01-12T12:50:38+00:00"
  2221. },
  2222. {
  2223. "name": "monolog/monolog",
  2224. "version": "2.10.0",
  2225. "source": {
  2226. "type": "git",
  2227. "url": "https://github.com/Seldaek/monolog.git",
  2228. "reference": "5cf826f2991858b54d5c3809bee745560a1042a7"
  2229. },
  2230. "dist": {
  2231. "type": "zip",
  2232. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/5cf826f2991858b54d5c3809bee745560a1042a7",
  2233. "reference": "5cf826f2991858b54d5c3809bee745560a1042a7",
  2234. "shasum": "",
  2235. "mirrors": [
  2236. {
  2237. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2238. "preferred": true
  2239. }
  2240. ]
  2241. },
  2242. "require": {
  2243. "php": ">=7.2",
  2244. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  2245. },
  2246. "provide": {
  2247. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  2248. },
  2249. "require-dev": {
  2250. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2251. "doctrine/couchdb": "~1.0@dev",
  2252. "elasticsearch/elasticsearch": "^7 || ^8",
  2253. "ext-json": "*",
  2254. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  2255. "guzzlehttp/guzzle": "^7.4",
  2256. "guzzlehttp/psr7": "^2.2",
  2257. "mongodb/mongodb": "^1.8",
  2258. "php-amqplib/php-amqplib": "~2.4 || ^3",
  2259. "phpspec/prophecy": "^1.15",
  2260. "phpstan/phpstan": "^1.10",
  2261. "phpunit/phpunit": "^8.5.38 || ^9.6.19",
  2262. "predis/predis": "^1.1 || ^2.0",
  2263. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  2264. "ruflin/elastica": "^7",
  2265. "swiftmailer/swiftmailer": "^5.3|^6.0",
  2266. "symfony/mailer": "^5.4 || ^6",
  2267. "symfony/mime": "^5.4 || ^6"
  2268. },
  2269. "suggest": {
  2270. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2271. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2272. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2273. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2274. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  2275. "ext-mbstring": "Allow to work properly with unicode symbols",
  2276. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2277. "ext-openssl": "Required to send log messages using SSL",
  2278. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  2279. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2280. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2281. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2282. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2283. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2284. },
  2285. "type": "library",
  2286. "extra": {
  2287. "branch-alias": {
  2288. "dev-main": "2.x-dev"
  2289. }
  2290. },
  2291. "autoload": {
  2292. "psr-4": {
  2293. "Monolog\\": "src/Monolog"
  2294. }
  2295. },
  2296. "notification-url": "https://packagist.org/downloads/",
  2297. "license": [
  2298. "MIT"
  2299. ],
  2300. "authors": [
  2301. {
  2302. "name": "Jordi Boggiano",
  2303. "email": "j.boggiano@seld.be",
  2304. "homepage": "https://seld.be"
  2305. }
  2306. ],
  2307. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2308. "homepage": "https://github.com/Seldaek/monolog",
  2309. "keywords": [
  2310. "log",
  2311. "logging",
  2312. "psr-3"
  2313. ],
  2314. "support": {
  2315. "issues": "https://github.com/Seldaek/monolog/issues",
  2316. "source": "https://github.com/Seldaek/monolog/tree/2.10.0"
  2317. },
  2318. "funding": [
  2319. {
  2320. "url": "https://github.com/Seldaek",
  2321. "type": "github"
  2322. },
  2323. {
  2324. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2325. "type": "tidelift"
  2326. }
  2327. ],
  2328. "time": "2024-11-12T12:43:37+00:00"
  2329. },
  2330. {
  2331. "name": "mtdowling/jmespath.php",
  2332. "version": "2.7.0",
  2333. "source": {
  2334. "type": "git",
  2335. "url": "https://github.com/jmespath/jmespath.php.git",
  2336. "reference": "bbb69a935c2cbb0c03d7f481a238027430f6440b"
  2337. },
  2338. "dist": {
  2339. "type": "zip",
  2340. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/bbb69a935c2cbb0c03d7f481a238027430f6440b",
  2341. "reference": "bbb69a935c2cbb0c03d7f481a238027430f6440b",
  2342. "shasum": "",
  2343. "mirrors": [
  2344. {
  2345. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2346. "preferred": true
  2347. }
  2348. ]
  2349. },
  2350. "require": {
  2351. "php": "^7.2.5 || ^8.0",
  2352. "symfony/polyfill-mbstring": "^1.17"
  2353. },
  2354. "require-dev": {
  2355. "composer/xdebug-handler": "^3.0.3",
  2356. "phpunit/phpunit": "^8.5.33"
  2357. },
  2358. "bin": [
  2359. "bin/jp.php"
  2360. ],
  2361. "type": "library",
  2362. "extra": {
  2363. "branch-alias": {
  2364. "dev-master": "2.7-dev"
  2365. }
  2366. },
  2367. "autoload": {
  2368. "files": [
  2369. "src/JmesPath.php"
  2370. ],
  2371. "psr-4": {
  2372. "JmesPath\\": "src/"
  2373. }
  2374. },
  2375. "notification-url": "https://packagist.org/downloads/",
  2376. "license": [
  2377. "MIT"
  2378. ],
  2379. "authors": [
  2380. {
  2381. "name": "Graham Campbell",
  2382. "email": "hello@gjcampbell.co.uk",
  2383. "homepage": "https://github.com/GrahamCampbell"
  2384. },
  2385. {
  2386. "name": "Michael Dowling",
  2387. "email": "mtdowling@gmail.com",
  2388. "homepage": "https://github.com/mtdowling"
  2389. }
  2390. ],
  2391. "description": "Declaratively specify how to extract elements from a JSON document",
  2392. "keywords": [
  2393. "json",
  2394. "jsonpath"
  2395. ],
  2396. "support": {
  2397. "issues": "https://github.com/jmespath/jmespath.php/issues",
  2398. "source": "https://github.com/jmespath/jmespath.php/tree/2.7.0"
  2399. },
  2400. "time": "2023-08-25T10:54:48+00:00"
  2401. },
  2402. {
  2403. "name": "myclabs/php-enum",
  2404. "version": "1.8.4",
  2405. "source": {
  2406. "type": "git",
  2407. "url": "https://github.com/myclabs/php-enum.git",
  2408. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483"
  2409. },
  2410. "dist": {
  2411. "type": "zip",
  2412. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/a867478eae49c9f59ece437ae7f9506bfaa27483",
  2413. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483",
  2414. "shasum": "",
  2415. "mirrors": [
  2416. {
  2417. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2418. "preferred": true
  2419. }
  2420. ]
  2421. },
  2422. "require": {
  2423. "ext-json": "*",
  2424. "php": "^7.3 || ^8.0"
  2425. },
  2426. "require-dev": {
  2427. "phpunit/phpunit": "^9.5",
  2428. "squizlabs/php_codesniffer": "1.*",
  2429. "vimeo/psalm": "^4.6.2"
  2430. },
  2431. "type": "library",
  2432. "autoload": {
  2433. "psr-4": {
  2434. "MyCLabs\\Enum\\": "src/"
  2435. },
  2436. "classmap": [
  2437. "stubs/Stringable.php"
  2438. ]
  2439. },
  2440. "notification-url": "https://packagist.org/downloads/",
  2441. "license": [
  2442. "MIT"
  2443. ],
  2444. "authors": [
  2445. {
  2446. "name": "PHP Enum contributors",
  2447. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  2448. }
  2449. ],
  2450. "description": "PHP Enum implementation",
  2451. "homepage": "http://github.com/myclabs/php-enum",
  2452. "keywords": [
  2453. "enum"
  2454. ],
  2455. "support": {
  2456. "issues": "https://github.com/myclabs/php-enum/issues",
  2457. "source": "https://github.com/myclabs/php-enum/tree/1.8.4"
  2458. },
  2459. "funding": [
  2460. {
  2461. "url": "https://github.com/mnapoli",
  2462. "type": "github"
  2463. },
  2464. {
  2465. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  2466. "type": "tidelift"
  2467. }
  2468. ],
  2469. "time": "2022-08-04T09:53:51+00:00"
  2470. },
  2471. {
  2472. "name": "nesbot/carbon",
  2473. "version": "3.9.1",
  2474. "source": {
  2475. "type": "git",
  2476. "url": "https://github.com/CarbonPHP/carbon.git",
  2477. "reference": "ced71f79398ece168e24f7f7710462f462310d4d"
  2478. },
  2479. "dist": {
  2480. "type": "zip",
  2481. "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/ced71f79398ece168e24f7f7710462f462310d4d",
  2482. "reference": "ced71f79398ece168e24f7f7710462f462310d4d",
  2483. "shasum": "",
  2484. "mirrors": [
  2485. {
  2486. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2487. "preferred": true
  2488. }
  2489. ]
  2490. },
  2491. "require": {
  2492. "carbonphp/carbon-doctrine-types": "<100.0",
  2493. "ext-json": "*",
  2494. "php": "^8.1",
  2495. "psr/clock": "^1.0",
  2496. "symfony/clock": "^6.3 || ^7.0",
  2497. "symfony/polyfill-mbstring": "^1.0",
  2498. "symfony/translation": "^4.4.18 || ^5.2.1|| ^6.0 || ^7.0"
  2499. },
  2500. "provide": {
  2501. "psr/clock-implementation": "1.0"
  2502. },
  2503. "require-dev": {
  2504. "doctrine/dbal": "^3.6.3 || ^4.0",
  2505. "doctrine/orm": "^2.15.2 || ^3.0",
  2506. "friendsofphp/php-cs-fixer": "^3.57.2",
  2507. "kylekatarnls/multi-tester": "^2.5.3",
  2508. "ondrejmirtes/better-reflection": "^6.25.0.4",
  2509. "phpmd/phpmd": "^2.15.0",
  2510. "phpstan/extension-installer": "^1.3.1",
  2511. "phpstan/phpstan": "^1.11.2",
  2512. "phpunit/phpunit": "^10.5.20",
  2513. "squizlabs/php_codesniffer": "^3.9.0"
  2514. },
  2515. "bin": [
  2516. "bin/carbon"
  2517. ],
  2518. "type": "library",
  2519. "extra": {
  2520. "laravel": {
  2521. "providers": [
  2522. "Carbon\\Laravel\\ServiceProvider"
  2523. ]
  2524. },
  2525. "phpstan": {
  2526. "includes": [
  2527. "extension.neon"
  2528. ]
  2529. },
  2530. "branch-alias": {
  2531. "dev-2.x": "2.x-dev",
  2532. "dev-master": "3.x-dev"
  2533. }
  2534. },
  2535. "autoload": {
  2536. "psr-4": {
  2537. "Carbon\\": "src/Carbon/"
  2538. }
  2539. },
  2540. "notification-url": "https://packagist.org/downloads/",
  2541. "license": [
  2542. "MIT"
  2543. ],
  2544. "authors": [
  2545. {
  2546. "name": "Brian Nesbitt",
  2547. "email": "brian@nesbot.com",
  2548. "homepage": "https://markido.com"
  2549. },
  2550. {
  2551. "name": "kylekatarnls",
  2552. "homepage": "https://github.com/kylekatarnls"
  2553. }
  2554. ],
  2555. "description": "An API extension for DateTime that supports 281 different languages.",
  2556. "homepage": "https://carbon.nesbot.com",
  2557. "keywords": [
  2558. "date",
  2559. "datetime",
  2560. "time"
  2561. ],
  2562. "support": {
  2563. "docs": "https://carbon.nesbot.com/docs",
  2564. "issues": "https://github.com/CarbonPHP/carbon/issues",
  2565. "source": "https://github.com/CarbonPHP/carbon"
  2566. },
  2567. "funding": [
  2568. {
  2569. "url": "https://github.com/sponsors/kylekatarnls",
  2570. "type": "github"
  2571. },
  2572. {
  2573. "url": "https://opencollective.com/Carbon#sponsor",
  2574. "type": "opencollective"
  2575. },
  2576. {
  2577. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  2578. "type": "tidelift"
  2579. }
  2580. ],
  2581. "time": "2025-05-01T19:51:51+00:00"
  2582. },
  2583. {
  2584. "name": "neutron/temporary-filesystem",
  2585. "version": "3.0.1",
  2586. "source": {
  2587. "type": "git",
  2588. "url": "https://github.com/romainneutron/Temporary-Filesystem.git",
  2589. "reference": "55f3d4896eff3bf070e491916e6c564db5e640b5"
  2590. },
  2591. "dist": {
  2592. "type": "zip",
  2593. "url": "https://api.github.com/repos/romainneutron/Temporary-Filesystem/zipball/55f3d4896eff3bf070e491916e6c564db5e640b5",
  2594. "reference": "55f3d4896eff3bf070e491916e6c564db5e640b5",
  2595. "shasum": "",
  2596. "mirrors": [
  2597. {
  2598. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2599. "preferred": true
  2600. }
  2601. ]
  2602. },
  2603. "require": {
  2604. "php": ">=5.6",
  2605. "symfony/filesystem": "^2.3 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  2606. },
  2607. "require-dev": {
  2608. "symfony/phpunit-bridge": "^5.0.4 || ^6.0"
  2609. },
  2610. "type": "library",
  2611. "autoload": {
  2612. "psr-0": {
  2613. "Neutron": "src"
  2614. }
  2615. },
  2616. "notification-url": "https://packagist.org/downloads/",
  2617. "license": [
  2618. "MIT"
  2619. ],
  2620. "authors": [
  2621. {
  2622. "name": "Romain Neutron",
  2623. "email": "imprec@gmail.com"
  2624. }
  2625. ],
  2626. "description": "Symfony filesystem extension to handle temporary files",
  2627. "support": {
  2628. "issues": "https://github.com/romainneutron/Temporary-Filesystem/issues",
  2629. "source": "https://github.com/romainneutron/Temporary-Filesystem/tree/3.0.1"
  2630. },
  2631. "time": "2021-12-14T07:30:33+00:00"
  2632. },
  2633. {
  2634. "name": "overtrue/flysystem-cos",
  2635. "version": "2.1.2",
  2636. "source": {
  2637. "type": "git",
  2638. "url": "https://github.com/overtrue/flysystem-cos.git",
  2639. "reference": "f6985f38f3c76a9be962f404f127b7222a9b5fff"
  2640. },
  2641. "dist": {
  2642. "type": "zip",
  2643. "url": "https://api.github.com/repos/overtrue/flysystem-cos/zipball/f6985f38f3c76a9be962f404f127b7222a9b5fff",
  2644. "reference": "f6985f38f3c76a9be962f404f127b7222a9b5fff",
  2645. "shasum": "",
  2646. "mirrors": [
  2647. {
  2648. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2649. "preferred": true
  2650. }
  2651. ]
  2652. },
  2653. "require": {
  2654. "guzzlehttp/guzzle": "^6.3|^7.0",
  2655. "league/flysystem": "^1.0",
  2656. "php": ">=7.0",
  2657. "qcloud/cos-sdk-v5": "^2.0.0"
  2658. },
  2659. "require-dev": {
  2660. "mockery/mockery": "~1.0",
  2661. "php": ">=7.1",
  2662. "phpunit/phpunit": "^8.0"
  2663. },
  2664. "type": "library",
  2665. "autoload": {
  2666. "psr-4": {
  2667. "Overtrue\\Flysystem\\Cos\\": "src"
  2668. }
  2669. },
  2670. "notification-url": "https://packagist.org/downloads/",
  2671. "license": [
  2672. "MIT"
  2673. ],
  2674. "authors": [
  2675. {
  2676. "name": "overtrue",
  2677. "email": "i@overtrue.me"
  2678. }
  2679. ],
  2680. "description": "Flysystem adapter for the QCloud COS storage.",
  2681. "support": {
  2682. "issues": "https://github.com/overtrue/flysystem-cos/issues",
  2683. "source": "https://github.com/overtrue/flysystem-cos/tree/2.1.2"
  2684. },
  2685. "time": "2020-10-22T10:28:58+00:00"
  2686. },
  2687. {
  2688. "name": "overtrue/pinyin",
  2689. "version": "4.1.0",
  2690. "source": {
  2691. "type": "git",
  2692. "url": "https://github.com/overtrue/pinyin.git",
  2693. "reference": "4d0fb4f27f0c79e81c9489e0c0ae4a4f8837eae7"
  2694. },
  2695. "dist": {
  2696. "type": "zip",
  2697. "url": "https://api.github.com/repos/overtrue/pinyin/zipball/4d0fb4f27f0c79e81c9489e0c0ae4a4f8837eae7",
  2698. "reference": "4d0fb4f27f0c79e81c9489e0c0ae4a4f8837eae7",
  2699. "shasum": "",
  2700. "mirrors": [
  2701. {
  2702. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2703. "preferred": true
  2704. }
  2705. ]
  2706. },
  2707. "require": {
  2708. "php": ">=7.1"
  2709. },
  2710. "require-dev": {
  2711. "brainmaestro/composer-git-hooks": "^2.7",
  2712. "friendsofphp/php-cs-fixer": "^2.16",
  2713. "phpunit/phpunit": "~8.0"
  2714. },
  2715. "type": "library",
  2716. "extra": {
  2717. "hooks": {
  2718. "pre-push": [
  2719. "composer test",
  2720. "composer check-style"
  2721. ],
  2722. "pre-commit": [
  2723. "composer test",
  2724. "composer fix-style"
  2725. ]
  2726. }
  2727. },
  2728. "autoload": {
  2729. "files": [
  2730. "src/const.php"
  2731. ],
  2732. "psr-4": {
  2733. "Overtrue\\Pinyin\\": "src/"
  2734. }
  2735. },
  2736. "notification-url": "https://packagist.org/downloads/",
  2737. "license": [
  2738. "MIT"
  2739. ],
  2740. "authors": [
  2741. {
  2742. "name": "overtrue",
  2743. "email": "anzhengchao@gmail.com",
  2744. "homepage": "http://github.com/overtrue"
  2745. }
  2746. ],
  2747. "description": "Chinese to pinyin translator.",
  2748. "homepage": "https://github.com/overtrue/pinyin",
  2749. "keywords": [
  2750. "Chinese",
  2751. "Pinyin",
  2752. "cn2pinyin"
  2753. ],
  2754. "support": {
  2755. "issues": "https://github.com/overtrue/pinyin/issues",
  2756. "source": "https://github.com/overtrue/pinyin/tree/4.1.0"
  2757. },
  2758. "funding": [
  2759. {
  2760. "url": "https://github.com/overtrue",
  2761. "type": "github"
  2762. }
  2763. ],
  2764. "time": "2023-04-27T10:17:12+00:00"
  2765. },
  2766. {
  2767. "name": "php-ffmpeg/php-ffmpeg",
  2768. "version": "v0.19.0",
  2769. "source": {
  2770. "type": "git",
  2771. "url": "https://github.com/PHP-FFMpeg/PHP-FFMpeg.git",
  2772. "reference": "22b71931fd1a97207788636b283eee1c0067eff7"
  2773. },
  2774. "dist": {
  2775. "type": "zip",
  2776. "url": "https://api.github.com/repos/PHP-FFMpeg/PHP-FFMpeg/zipball/22b71931fd1a97207788636b283eee1c0067eff7",
  2777. "reference": "22b71931fd1a97207788636b283eee1c0067eff7",
  2778. "shasum": "",
  2779. "mirrors": [
  2780. {
  2781. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2782. "preferred": true
  2783. }
  2784. ]
  2785. },
  2786. "require": {
  2787. "alchemy/binary-driver": "^1.5 || ~2.0.0 || ^5.0",
  2788. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  2789. "neutron/temporary-filesystem": "^2.1.1 || ^3.0",
  2790. "php": ">=5.5.9",
  2791. "symfony/cache": "^3.1 || ^4.0 || ^5.0 || ^6.0"
  2792. },
  2793. "require-dev": {
  2794. "symfony/phpunit-bridge": "^5.0.4",
  2795. "symfony/process": "2.8 || 3.3"
  2796. },
  2797. "suggest": {
  2798. "php-ffmpeg/extras": "A compilation of common audio & video drivers for PHP-FFMpeg"
  2799. },
  2800. "type": "library",
  2801. "extra": {
  2802. "branch-alias": {
  2803. "dev-master": "0.x-dev"
  2804. }
  2805. },
  2806. "autoload": {
  2807. "psr-0": {
  2808. "FFMpeg": "src"
  2809. }
  2810. },
  2811. "notification-url": "https://packagist.org/downloads/",
  2812. "license": [
  2813. "MIT"
  2814. ],
  2815. "authors": [
  2816. {
  2817. "name": "Romain Neutron",
  2818. "email": "imprec@gmail.com",
  2819. "homepage": "http://www.lickmychip.com/"
  2820. },
  2821. {
  2822. "name": "Phraseanet Team",
  2823. "email": "info@alchemy.fr",
  2824. "homepage": "http://www.phraseanet.com/"
  2825. },
  2826. {
  2827. "name": "Patrik Karisch",
  2828. "email": "patrik@karisch.guru",
  2829. "homepage": "http://www.karisch.guru"
  2830. },
  2831. {
  2832. "name": "Romain Biard",
  2833. "email": "romain.biard@gmail.com",
  2834. "homepage": "https://www.strime.io/"
  2835. },
  2836. {
  2837. "name": "Jens Hausdorf",
  2838. "email": "hello@jens-hausdorf.de",
  2839. "homepage": "https://jens-hausdorf.de"
  2840. }
  2841. ],
  2842. "description": "FFMpeg PHP, an Object Oriented library to communicate with AVconv / ffmpeg",
  2843. "keywords": [
  2844. "audio",
  2845. "audio processing",
  2846. "avconv",
  2847. "avprobe",
  2848. "ffmpeg",
  2849. "ffprobe",
  2850. "video",
  2851. "video processing"
  2852. ],
  2853. "support": {
  2854. "issues": "https://github.com/PHP-FFMpeg/PHP-FFMpeg/issues",
  2855. "source": "https://github.com/PHP-FFMpeg/PHP-FFMpeg/tree/v0.19.0"
  2856. },
  2857. "time": "2021-12-20T11:51:26+00:00"
  2858. },
  2859. {
  2860. "name": "psr/cache",
  2861. "version": "1.0.1",
  2862. "source": {
  2863. "type": "git",
  2864. "url": "https://github.com/php-fig/cache.git",
  2865. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  2866. },
  2867. "dist": {
  2868. "type": "zip",
  2869. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  2870. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  2871. "shasum": "",
  2872. "mirrors": [
  2873. {
  2874. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2875. "preferred": true
  2876. }
  2877. ]
  2878. },
  2879. "require": {
  2880. "php": ">=5.3.0"
  2881. },
  2882. "type": "library",
  2883. "extra": {
  2884. "branch-alias": {
  2885. "dev-master": "1.0.x-dev"
  2886. }
  2887. },
  2888. "autoload": {
  2889. "psr-4": {
  2890. "Psr\\Cache\\": "src/"
  2891. }
  2892. },
  2893. "notification-url": "https://packagist.org/downloads/",
  2894. "license": [
  2895. "MIT"
  2896. ],
  2897. "authors": [
  2898. {
  2899. "name": "PHP-FIG",
  2900. "homepage": "http://www.php-fig.org/"
  2901. }
  2902. ],
  2903. "description": "Common interface for caching libraries",
  2904. "keywords": [
  2905. "cache",
  2906. "psr",
  2907. "psr-6"
  2908. ],
  2909. "support": {
  2910. "source": "https://github.com/php-fig/cache/tree/master"
  2911. },
  2912. "time": "2016-08-06T20:24:11+00:00"
  2913. },
  2914. {
  2915. "name": "psr/clock",
  2916. "version": "1.0.0",
  2917. "source": {
  2918. "type": "git",
  2919. "url": "https://github.com/php-fig/clock.git",
  2920. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  2921. },
  2922. "dist": {
  2923. "type": "zip",
  2924. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  2925. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  2926. "shasum": "",
  2927. "mirrors": [
  2928. {
  2929. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2930. "preferred": true
  2931. }
  2932. ]
  2933. },
  2934. "require": {
  2935. "php": "^7.0 || ^8.0"
  2936. },
  2937. "type": "library",
  2938. "autoload": {
  2939. "psr-4": {
  2940. "Psr\\Clock\\": "src/"
  2941. }
  2942. },
  2943. "notification-url": "https://packagist.org/downloads/",
  2944. "license": [
  2945. "MIT"
  2946. ],
  2947. "authors": [
  2948. {
  2949. "name": "PHP-FIG",
  2950. "homepage": "https://www.php-fig.org/"
  2951. }
  2952. ],
  2953. "description": "Common interface for reading the clock.",
  2954. "homepage": "https://github.com/php-fig/clock",
  2955. "keywords": [
  2956. "clock",
  2957. "now",
  2958. "psr",
  2959. "psr-20",
  2960. "time"
  2961. ],
  2962. "support": {
  2963. "issues": "https://github.com/php-fig/clock/issues",
  2964. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  2965. },
  2966. "time": "2022-11-25T14:36:26+00:00"
  2967. },
  2968. {
  2969. "name": "psr/container",
  2970. "version": "1.1.2",
  2971. "source": {
  2972. "type": "git",
  2973. "url": "https://github.com/php-fig/container.git",
  2974. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  2975. },
  2976. "dist": {
  2977. "type": "zip",
  2978. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  2979. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  2980. "shasum": "",
  2981. "mirrors": [
  2982. {
  2983. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2984. "preferred": true
  2985. }
  2986. ]
  2987. },
  2988. "require": {
  2989. "php": ">=7.4.0"
  2990. },
  2991. "type": "library",
  2992. "autoload": {
  2993. "psr-4": {
  2994. "Psr\\Container\\": "src/"
  2995. }
  2996. },
  2997. "notification-url": "https://packagist.org/downloads/",
  2998. "license": [
  2999. "MIT"
  3000. ],
  3001. "authors": [
  3002. {
  3003. "name": "PHP-FIG",
  3004. "homepage": "https://www.php-fig.org/"
  3005. }
  3006. ],
  3007. "description": "Common Container Interface (PHP FIG PSR-11)",
  3008. "homepage": "https://github.com/php-fig/container",
  3009. "keywords": [
  3010. "PSR-11",
  3011. "container",
  3012. "container-interface",
  3013. "container-interop",
  3014. "psr"
  3015. ],
  3016. "support": {
  3017. "issues": "https://github.com/php-fig/container/issues",
  3018. "source": "https://github.com/php-fig/container/tree/1.1.2"
  3019. },
  3020. "time": "2021-11-05T16:50:12+00:00"
  3021. },
  3022. {
  3023. "name": "psr/http-message",
  3024. "version": "1.1",
  3025. "source": {
  3026. "type": "git",
  3027. "url": "https://github.com/php-fig/http-message.git",
  3028. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  3029. },
  3030. "dist": {
  3031. "type": "zip",
  3032. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  3033. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  3034. "shasum": "",
  3035. "mirrors": [
  3036. {
  3037. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3038. "preferred": true
  3039. }
  3040. ]
  3041. },
  3042. "require": {
  3043. "php": "^7.2 || ^8.0"
  3044. },
  3045. "type": "library",
  3046. "extra": {
  3047. "branch-alias": {
  3048. "dev-master": "1.1.x-dev"
  3049. }
  3050. },
  3051. "autoload": {
  3052. "psr-4": {
  3053. "Psr\\Http\\Message\\": "src/"
  3054. }
  3055. },
  3056. "notification-url": "https://packagist.org/downloads/",
  3057. "license": [
  3058. "MIT"
  3059. ],
  3060. "authors": [
  3061. {
  3062. "name": "PHP-FIG",
  3063. "homepage": "http://www.php-fig.org/"
  3064. }
  3065. ],
  3066. "description": "Common interface for HTTP messages",
  3067. "homepage": "https://github.com/php-fig/http-message",
  3068. "keywords": [
  3069. "http",
  3070. "http-message",
  3071. "psr",
  3072. "psr-7",
  3073. "request",
  3074. "response"
  3075. ],
  3076. "support": {
  3077. "source": "https://github.com/php-fig/http-message/tree/1.1"
  3078. },
  3079. "time": "2023-04-04T09:50:52+00:00"
  3080. },
  3081. {
  3082. "name": "psr/log",
  3083. "version": "1.1.4",
  3084. "source": {
  3085. "type": "git",
  3086. "url": "https://github.com/php-fig/log.git",
  3087. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  3088. },
  3089. "dist": {
  3090. "type": "zip",
  3091. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  3092. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  3093. "shasum": "",
  3094. "mirrors": [
  3095. {
  3096. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3097. "preferred": true
  3098. }
  3099. ]
  3100. },
  3101. "require": {
  3102. "php": ">=5.3.0"
  3103. },
  3104. "type": "library",
  3105. "extra": {
  3106. "branch-alias": {
  3107. "dev-master": "1.1.x-dev"
  3108. }
  3109. },
  3110. "autoload": {
  3111. "psr-4": {
  3112. "Psr\\Log\\": "Psr/Log/"
  3113. }
  3114. },
  3115. "notification-url": "https://packagist.org/downloads/",
  3116. "license": [
  3117. "MIT"
  3118. ],
  3119. "authors": [
  3120. {
  3121. "name": "PHP-FIG",
  3122. "homepage": "https://www.php-fig.org/"
  3123. }
  3124. ],
  3125. "description": "Common interface for logging libraries",
  3126. "homepage": "https://github.com/php-fig/log",
  3127. "keywords": [
  3128. "log",
  3129. "psr",
  3130. "psr-3"
  3131. ],
  3132. "support": {
  3133. "source": "https://github.com/php-fig/log/tree/1.1.4"
  3134. },
  3135. "time": "2021-05-03T11:20:27+00:00"
  3136. },
  3137. {
  3138. "name": "psr/simple-cache",
  3139. "version": "1.0.1",
  3140. "source": {
  3141. "type": "git",
  3142. "url": "https://github.com/php-fig/simple-cache.git",
  3143. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  3144. },
  3145. "dist": {
  3146. "type": "zip",
  3147. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3148. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3149. "shasum": "",
  3150. "mirrors": [
  3151. {
  3152. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3153. "preferred": true
  3154. }
  3155. ]
  3156. },
  3157. "require": {
  3158. "php": ">=5.3.0"
  3159. },
  3160. "type": "library",
  3161. "extra": {
  3162. "branch-alias": {
  3163. "dev-master": "1.0.x-dev"
  3164. }
  3165. },
  3166. "autoload": {
  3167. "psr-4": {
  3168. "Psr\\SimpleCache\\": "src/"
  3169. }
  3170. },
  3171. "notification-url": "https://packagist.org/downloads/",
  3172. "license": [
  3173. "MIT"
  3174. ],
  3175. "authors": [
  3176. {
  3177. "name": "PHP-FIG",
  3178. "homepage": "http://www.php-fig.org/"
  3179. }
  3180. ],
  3181. "description": "Common interfaces for simple caching",
  3182. "keywords": [
  3183. "cache",
  3184. "caching",
  3185. "psr",
  3186. "psr-16",
  3187. "simple-cache"
  3188. ],
  3189. "support": {
  3190. "source": "https://github.com/php-fig/simple-cache/tree/master"
  3191. },
  3192. "time": "2017-10-23T01:57:42+00:00"
  3193. },
  3194. {
  3195. "name": "qcloud/cos-sdk-v5",
  3196. "version": "v2.6.16",
  3197. "source": {
  3198. "type": "git",
  3199. "url": "https://github.com/tencentyun/cos-php-sdk-v5.git",
  3200. "reference": "22366f4b4f7f277e67aa72eea8d1e02a5f9943e2"
  3201. },
  3202. "dist": {
  3203. "type": "zip",
  3204. "url": "https://api.github.com/repos/tencentyun/cos-php-sdk-v5/zipball/22366f4b4f7f277e67aa72eea8d1e02a5f9943e2",
  3205. "reference": "22366f4b4f7f277e67aa72eea8d1e02a5f9943e2",
  3206. "shasum": "",
  3207. "mirrors": [
  3208. {
  3209. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3210. "preferred": true
  3211. }
  3212. ]
  3213. },
  3214. "require": {
  3215. "ext-curl": "*",
  3216. "ext-json": "*",
  3217. "ext-libxml": "*",
  3218. "ext-mbstring": "*",
  3219. "ext-simplexml": "*",
  3220. "guzzlehttp/guzzle": "^6.2.1 || ^7.0",
  3221. "guzzlehttp/guzzle-services": "^1.1",
  3222. "guzzlehttp/psr7": "^1.3.1 || ^2.0",
  3223. "php": ">=5.6"
  3224. },
  3225. "type": "library",
  3226. "extra": {
  3227. "branch-alias": {
  3228. "dev-master": "2.4-dev"
  3229. }
  3230. },
  3231. "autoload": {
  3232. "files": [
  3233. "src/Common.php"
  3234. ],
  3235. "psr-4": {
  3236. "Qcloud\\Cos\\": "src/"
  3237. }
  3238. },
  3239. "notification-url": "https://packagist.org/downloads/",
  3240. "license": [
  3241. "MIT"
  3242. ],
  3243. "authors": [
  3244. {
  3245. "name": "yaozongyou",
  3246. "email": "yaozongyou@vip.qq.com"
  3247. },
  3248. {
  3249. "name": "lewzylu",
  3250. "email": "327874225@qq.com"
  3251. },
  3252. {
  3253. "name": "tuunalai",
  3254. "email": "550566181@qq.com"
  3255. }
  3256. ],
  3257. "description": "PHP SDK for QCloud COS",
  3258. "keywords": [
  3259. "cos",
  3260. "php",
  3261. "qcloud"
  3262. ],
  3263. "support": {
  3264. "issues": "https://github.com/tencentyun/cos-php-sdk-v5/issues",
  3265. "source": "https://github.com/tencentyun/cos-php-sdk-v5/tree/v2.6.16"
  3266. },
  3267. "time": "2025-01-21T12:49:21+00:00"
  3268. },
  3269. {
  3270. "name": "qcloudsms/qcloudsms_php",
  3271. "version": "v0.1.4",
  3272. "source": {
  3273. "type": "git",
  3274. "url": "https://github.com/qcloudsms/qcloudsms_php.git",
  3275. "reference": "48822045772d343b93c3d505d8a187cd51153c5a"
  3276. },
  3277. "dist": {
  3278. "type": "zip",
  3279. "url": "https://api.github.com/repos/qcloudsms/qcloudsms_php/zipball/48822045772d343b93c3d505d8a187cd51153c5a",
  3280. "reference": "48822045772d343b93c3d505d8a187cd51153c5a",
  3281. "shasum": "",
  3282. "mirrors": [
  3283. {
  3284. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3285. "preferred": true
  3286. }
  3287. ]
  3288. },
  3289. "require-dev": {
  3290. "sami/sami": "dev-master"
  3291. },
  3292. "type": "library",
  3293. "autoload": {
  3294. "psr-4": {
  3295. "Qcloud\\Sms\\": "src/"
  3296. }
  3297. },
  3298. "notification-url": "https://packagist.org/downloads/",
  3299. "license": [
  3300. "MIT"
  3301. ],
  3302. "description": "qcloud sms php sdk",
  3303. "keywords": [
  3304. "php",
  3305. "qcloud",
  3306. "sdk",
  3307. "sms"
  3308. ],
  3309. "support": {
  3310. "issues": "https://github.com/qcloudsms/qcloudsms_php/issues",
  3311. "source": "https://github.com/qcloudsms/qcloudsms_php/tree/master"
  3312. },
  3313. "time": "2018-09-19T07:19:17+00:00"
  3314. },
  3315. {
  3316. "name": "qeq66/jwt",
  3317. "version": "3.3.5",
  3318. "source": {
  3319. "type": "git",
  3320. "url": "https://github.com/qeq66/jwt.git",
  3321. "reference": "bd2fa6c51704dc18c61026c852c789224d7190a0"
  3322. },
  3323. "dist": {
  3324. "type": "zip",
  3325. "url": "https://api.github.com/repos/qeq66/jwt/zipball/bd2fa6c51704dc18c61026c852c789224d7190a0",
  3326. "reference": "bd2fa6c51704dc18c61026c852c789224d7190a0",
  3327. "shasum": "",
  3328. "mirrors": [
  3329. {
  3330. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3331. "preferred": true
  3332. }
  3333. ]
  3334. },
  3335. "require": {
  3336. "ext-mbstring": "*",
  3337. "ext-openssl": "*",
  3338. "php": ">=5.6"
  3339. },
  3340. "require-dev": {
  3341. "mikey179/vfsstream": "~1.5",
  3342. "phpmd/phpmd": "~2.2",
  3343. "phpunit/php-invoker": "~1.1",
  3344. "phpunit/phpunit": "^5.7 || ^7.3",
  3345. "squizlabs/php_codesniffer": "~2.3"
  3346. },
  3347. "type": "library",
  3348. "extra": {
  3349. "branch-alias": {
  3350. "dev-master": "3.1-dev"
  3351. }
  3352. },
  3353. "autoload": {
  3354. "psr-4": {
  3355. "Lcobucci\\JWT\\": "src"
  3356. }
  3357. },
  3358. "notification-url": "https://packagist.org/downloads/",
  3359. "license": [
  3360. "BSD-3-Clause"
  3361. ],
  3362. "authors": [
  3363. {
  3364. "name": "Luís Otávio Cobucci Oblonczyk",
  3365. "email": "lcobucci@gmail.com",
  3366. "role": "Developer"
  3367. }
  3368. ],
  3369. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  3370. "keywords": [
  3371. "JWS",
  3372. "jwt"
  3373. ],
  3374. "support": {
  3375. "source": "https://github.com/qeq66/jwt/tree/3.3.5"
  3376. },
  3377. "time": "2022-07-11T08:31:22+00:00"
  3378. },
  3379. {
  3380. "name": "qiniu/php-sdk",
  3381. "version": "v7.14.0",
  3382. "source": {
  3383. "type": "git",
  3384. "url": "https://github.com/qiniu/php-sdk.git",
  3385. "reference": "ee752ffa7263ce99fca0bd7340cf13c486a3516c"
  3386. },
  3387. "dist": {
  3388. "type": "zip",
  3389. "url": "https://api.github.com/repos/qiniu/php-sdk/zipball/ee752ffa7263ce99fca0bd7340cf13c486a3516c",
  3390. "reference": "ee752ffa7263ce99fca0bd7340cf13c486a3516c",
  3391. "shasum": "",
  3392. "mirrors": [
  3393. {
  3394. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3395. "preferred": true
  3396. }
  3397. ]
  3398. },
  3399. "require": {
  3400. "ext-curl": "*",
  3401. "ext-xml": "*",
  3402. "myclabs/php-enum": "~1.5.2 || ~1.6.6 || ~1.7.7 || ~1.8.4",
  3403. "php": ">=5.3.3"
  3404. },
  3405. "require-dev": {
  3406. "paragonie/random_compat": ">=2",
  3407. "phpunit/phpunit": "^4.8 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.3.4",
  3408. "squizlabs/php_codesniffer": "^2.3 || ~3.6"
  3409. },
  3410. "type": "library",
  3411. "autoload": {
  3412. "files": [
  3413. "src/Qiniu/functions.php",
  3414. "src/Qiniu/Http/Middleware/Middleware.php"
  3415. ],
  3416. "psr-4": {
  3417. "Qiniu\\": "src/Qiniu"
  3418. }
  3419. },
  3420. "notification-url": "https://packagist.org/downloads/",
  3421. "license": [
  3422. "MIT"
  3423. ],
  3424. "authors": [
  3425. {
  3426. "name": "Qiniu",
  3427. "email": "sdk@qiniu.com",
  3428. "homepage": "http://www.qiniu.com"
  3429. }
  3430. ],
  3431. "description": "Qiniu Resource (Cloud) Storage SDK for PHP",
  3432. "homepage": "http://developer.qiniu.com/",
  3433. "keywords": [
  3434. "cloud",
  3435. "qiniu",
  3436. "sdk",
  3437. "storage"
  3438. ],
  3439. "support": {
  3440. "issues": "https://github.com/qiniu/php-sdk/issues",
  3441. "source": "https://github.com/qiniu/php-sdk/tree/v7.14.0"
  3442. },
  3443. "time": "2024-10-25T08:39:01+00:00"
  3444. },
  3445. {
  3446. "name": "ralouphie/getallheaders",
  3447. "version": "3.0.3",
  3448. "source": {
  3449. "type": "git",
  3450. "url": "https://github.com/ralouphie/getallheaders.git",
  3451. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  3452. },
  3453. "dist": {
  3454. "type": "zip",
  3455. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  3456. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  3457. "shasum": "",
  3458. "mirrors": [
  3459. {
  3460. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3461. "preferred": true
  3462. }
  3463. ]
  3464. },
  3465. "require": {
  3466. "php": ">=5.6"
  3467. },
  3468. "require-dev": {
  3469. "php-coveralls/php-coveralls": "^2.1",
  3470. "phpunit/phpunit": "^5 || ^6.5"
  3471. },
  3472. "type": "library",
  3473. "autoload": {
  3474. "files": [
  3475. "src/getallheaders.php"
  3476. ]
  3477. },
  3478. "notification-url": "https://packagist.org/downloads/",
  3479. "license": [
  3480. "MIT"
  3481. ],
  3482. "authors": [
  3483. {
  3484. "name": "Ralph Khattar",
  3485. "email": "ralph.khattar@gmail.com"
  3486. }
  3487. ],
  3488. "description": "A polyfill for getallheaders.",
  3489. "support": {
  3490. "issues": "https://github.com/ralouphie/getallheaders/issues",
  3491. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  3492. },
  3493. "time": "2019-03-08T08:55:37+00:00"
  3494. },
  3495. {
  3496. "name": "rize/uri-template",
  3497. "version": "0.3.5",
  3498. "source": {
  3499. "type": "git",
  3500. "url": "https://github.com/rize/UriTemplate.git",
  3501. "reference": "5ed4ba8ea34af84485dea815d4b6b620794d1168"
  3502. },
  3503. "dist": {
  3504. "type": "zip",
  3505. "url": "https://api.github.com/repos/rize/UriTemplate/zipball/5ed4ba8ea34af84485dea815d4b6b620794d1168",
  3506. "reference": "5ed4ba8ea34af84485dea815d4b6b620794d1168",
  3507. "shasum": "",
  3508. "mirrors": [
  3509. {
  3510. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3511. "preferred": true
  3512. }
  3513. ]
  3514. },
  3515. "require": {
  3516. "php": ">=5.3.0"
  3517. },
  3518. "require-dev": {
  3519. "phpunit/phpunit": "~4.8.36"
  3520. },
  3521. "type": "library",
  3522. "autoload": {
  3523. "psr-4": {
  3524. "Rize\\": "src/Rize"
  3525. }
  3526. },
  3527. "notification-url": "https://packagist.org/downloads/",
  3528. "license": [
  3529. "MIT"
  3530. ],
  3531. "authors": [
  3532. {
  3533. "name": "Marut K",
  3534. "homepage": "http://twitter.com/rezigned"
  3535. }
  3536. ],
  3537. "description": "PHP URI Template (RFC 6570) supports both expansion & extraction",
  3538. "keywords": [
  3539. "RFC 6570",
  3540. "template",
  3541. "uri"
  3542. ],
  3543. "support": {
  3544. "issues": "https://github.com/rize/UriTemplate/issues",
  3545. "source": "https://github.com/rize/UriTemplate/tree/0.3.5"
  3546. },
  3547. "funding": [
  3548. {
  3549. "url": "https://www.paypal.me/rezigned",
  3550. "type": "custom"
  3551. },
  3552. {
  3553. "url": "https://github.com/rezigned",
  3554. "type": "github"
  3555. },
  3556. {
  3557. "url": "https://opencollective.com/rize-uri-template",
  3558. "type": "open_collective"
  3559. }
  3560. ],
  3561. "time": "2022-10-12T17:22:51+00:00"
  3562. },
  3563. {
  3564. "name": "singka/singka-sms",
  3565. "version": "v1.6",
  3566. "source": {
  3567. "type": "git",
  3568. "url": "https://github.com/SingKa-TECH/singka-sms.git",
  3569. "reference": "8db3543dfb7f28851b94de99dfe9b762f0b9b6a4"
  3570. },
  3571. "dist": {
  3572. "type": "zip",
  3573. "url": "https://api.github.com/repos/SingKa-TECH/singka-sms/zipball/8db3543dfb7f28851b94de99dfe9b762f0b9b6a4",
  3574. "reference": "8db3543dfb7f28851b94de99dfe9b762f0b9b6a4",
  3575. "shasum": "",
  3576. "mirrors": [
  3577. {
  3578. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3579. "preferred": true
  3580. }
  3581. ]
  3582. },
  3583. "require": {
  3584. "alibabacloud/client": "^1.5",
  3585. "guzzlehttp/guzzle": "~6.0@dev",
  3586. "php": ">=7.0",
  3587. "qcloudsms/qcloudsms_php": "0.1.*",
  3588. "qiniu/php-sdk": "^7.2",
  3589. "singka/ucloud-sms": "^1.8"
  3590. },
  3591. "type": "library",
  3592. "extra": {
  3593. "think": {
  3594. "config": {
  3595. "sms": "config/config.php"
  3596. }
  3597. }
  3598. },
  3599. "autoload": {
  3600. "psr-4": {
  3601. "SingKa\\Sms\\": "src/"
  3602. }
  3603. },
  3604. "notification-url": "https://packagist.org/downloads/",
  3605. "license": [
  3606. "MIT"
  3607. ],
  3608. "authors": [
  3609. {
  3610. "name": "宁波晟嘉网络科技有限公司 夏慧新",
  3611. "email": "shycomet@singka.email"
  3612. }
  3613. ],
  3614. "description": "适用于ThinkPHP6.0的各种短信接口集成服务,本项目集成了各大云服务厂商的短信业务平台,支持ThinkPHP5.0、ThinkPHP5.1和ThinkPHP6.0,由宁波晟嘉网络科技有限公司维护,目前支持阿里云、腾讯云、七牛云、又拍云、Ucloud和华为云。",
  3615. "support": {
  3616. "issues": "https://github.com/SingKa-TECH/singka-sms/issues",
  3617. "source": "https://github.com/SingKa-TECH/singka-sms/tree/v1.6"
  3618. },
  3619. "time": "2020-07-02T05:07:00+00:00"
  3620. },
  3621. {
  3622. "name": "singka/ucloud-sms",
  3623. "version": "v1.8",
  3624. "source": {
  3625. "type": "git",
  3626. "url": "https://github.com/SingKa-TECH/ucloud-sms.git",
  3627. "reference": "7c4ae42e9c7b26b4db7e6340ff03f68b15e3b0d8"
  3628. },
  3629. "dist": {
  3630. "type": "zip",
  3631. "url": "https://api.github.com/repos/SingKa-TECH/ucloud-sms/zipball/7c4ae42e9c7b26b4db7e6340ff03f68b15e3b0d8",
  3632. "reference": "7c4ae42e9c7b26b4db7e6340ff03f68b15e3b0d8",
  3633. "shasum": "",
  3634. "mirrors": [
  3635. {
  3636. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3637. "preferred": true
  3638. }
  3639. ]
  3640. },
  3641. "require": {
  3642. "php": ">=5.6"
  3643. },
  3644. "type": "library",
  3645. "extra": {
  3646. "think": {
  3647. "config": {
  3648. "usms": "config/config.php"
  3649. }
  3650. }
  3651. },
  3652. "autoload": {
  3653. "psr-4": {
  3654. "Singka\\UcloudSms\\": "src/"
  3655. }
  3656. },
  3657. "notification-url": "https://packagist.org/downloads/",
  3658. "license": [
  3659. "MIT"
  3660. ],
  3661. "authors": [
  3662. {
  3663. "name": "宁波晟嘉网络科技有限公司 夏慧新",
  3664. "email": "shycomet@singka.email"
  3665. }
  3666. ],
  3667. "description": "ThinkPHP系列Ucloud的短信接口,支持ThinkPHP6、ThinkPHP5.1和ThinkPHP5.0",
  3668. "support": {
  3669. "issues": "https://github.com/SingKa-TECH/ucloud-sms/issues",
  3670. "source": "https://github.com/SingKa-TECH/ucloud-sms/tree/v1.8"
  3671. },
  3672. "time": "2020-03-24T16:24:09+00:00"
  3673. },
  3674. {
  3675. "name": "swiftmailer/swiftmailer",
  3676. "version": "v6.3.0",
  3677. "source": {
  3678. "type": "git",
  3679. "url": "https://github.com/swiftmailer/swiftmailer.git",
  3680. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  3681. },
  3682. "dist": {
  3683. "type": "zip",
  3684. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  3685. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  3686. "shasum": "",
  3687. "mirrors": [
  3688. {
  3689. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3690. "preferred": true
  3691. }
  3692. ]
  3693. },
  3694. "require": {
  3695. "egulias/email-validator": "^2.0|^3.1",
  3696. "php": ">=7.0.0",
  3697. "symfony/polyfill-iconv": "^1.0",
  3698. "symfony/polyfill-intl-idn": "^1.10",
  3699. "symfony/polyfill-mbstring": "^1.0"
  3700. },
  3701. "require-dev": {
  3702. "mockery/mockery": "^1.0",
  3703. "symfony/phpunit-bridge": "^4.4|^5.4"
  3704. },
  3705. "suggest": {
  3706. "ext-intl": "Needed to support internationalized email addresses"
  3707. },
  3708. "type": "library",
  3709. "extra": {
  3710. "branch-alias": {
  3711. "dev-master": "6.2-dev"
  3712. }
  3713. },
  3714. "autoload": {
  3715. "files": [
  3716. "lib/swift_required.php"
  3717. ]
  3718. },
  3719. "notification-url": "https://packagist.org/downloads/",
  3720. "license": [
  3721. "MIT"
  3722. ],
  3723. "authors": [
  3724. {
  3725. "name": "Chris Corbyn"
  3726. },
  3727. {
  3728. "name": "Fabien Potencier",
  3729. "email": "fabien@symfony.com"
  3730. }
  3731. ],
  3732. "description": "Swiftmailer, free feature-rich PHP mailer",
  3733. "homepage": "https://swiftmailer.symfony.com",
  3734. "keywords": [
  3735. "email",
  3736. "mail",
  3737. "mailer"
  3738. ],
  3739. "support": {
  3740. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  3741. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  3742. },
  3743. "funding": [
  3744. {
  3745. "url": "https://github.com/fabpot",
  3746. "type": "github"
  3747. },
  3748. {
  3749. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  3750. "type": "tidelift"
  3751. }
  3752. ],
  3753. "abandoned": "symfony/mailer",
  3754. "time": "2021-10-18T15:26:12+00:00"
  3755. },
  3756. {
  3757. "name": "symfony/cache",
  3758. "version": "v5.4.46",
  3759. "source": {
  3760. "type": "git",
  3761. "url": "https://github.com/symfony/cache.git",
  3762. "reference": "0fe08ee32cec2748fbfea10c52d3ee02049e0f6b"
  3763. },
  3764. "dist": {
  3765. "type": "zip",
  3766. "url": "https://api.github.com/repos/symfony/cache/zipball/0fe08ee32cec2748fbfea10c52d3ee02049e0f6b",
  3767. "reference": "0fe08ee32cec2748fbfea10c52d3ee02049e0f6b",
  3768. "shasum": "",
  3769. "mirrors": [
  3770. {
  3771. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3772. "preferred": true
  3773. }
  3774. ]
  3775. },
  3776. "require": {
  3777. "php": ">=7.2.5",
  3778. "psr/cache": "^1.0|^2.0",
  3779. "psr/log": "^1.1|^2|^3",
  3780. "symfony/cache-contracts": "^1.1.7|^2",
  3781. "symfony/deprecation-contracts": "^2.1|^3",
  3782. "symfony/polyfill-php73": "^1.9",
  3783. "symfony/polyfill-php80": "^1.16",
  3784. "symfony/service-contracts": "^1.1|^2|^3",
  3785. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  3786. },
  3787. "conflict": {
  3788. "doctrine/dbal": "<2.13.1",
  3789. "symfony/dependency-injection": "<4.4",
  3790. "symfony/http-kernel": "<4.4",
  3791. "symfony/var-dumper": "<4.4"
  3792. },
  3793. "provide": {
  3794. "psr/cache-implementation": "1.0|2.0",
  3795. "psr/simple-cache-implementation": "1.0|2.0",
  3796. "symfony/cache-implementation": "1.0|2.0"
  3797. },
  3798. "require-dev": {
  3799. "cache/integration-tests": "dev-master",
  3800. "doctrine/cache": "^1.6|^2.0",
  3801. "doctrine/dbal": "^2.13.1|^3|^4",
  3802. "predis/predis": "^1.1|^2.0",
  3803. "psr/simple-cache": "^1.0|^2.0",
  3804. "symfony/config": "^4.4|^5.0|^6.0",
  3805. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  3806. "symfony/filesystem": "^4.4|^5.0|^6.0",
  3807. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  3808. "symfony/messenger": "^4.4|^5.0|^6.0",
  3809. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  3810. },
  3811. "type": "library",
  3812. "autoload": {
  3813. "psr-4": {
  3814. "Symfony\\Component\\Cache\\": ""
  3815. },
  3816. "exclude-from-classmap": [
  3817. "/Tests/"
  3818. ]
  3819. },
  3820. "notification-url": "https://packagist.org/downloads/",
  3821. "license": [
  3822. "MIT"
  3823. ],
  3824. "authors": [
  3825. {
  3826. "name": "Nicolas Grekas",
  3827. "email": "p@tchwork.com"
  3828. },
  3829. {
  3830. "name": "Symfony Community",
  3831. "homepage": "https://symfony.com/contributors"
  3832. }
  3833. ],
  3834. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  3835. "homepage": "https://symfony.com",
  3836. "keywords": [
  3837. "caching",
  3838. "psr6"
  3839. ],
  3840. "support": {
  3841. "source": "https://github.com/symfony/cache/tree/v5.4.46"
  3842. },
  3843. "funding": [
  3844. {
  3845. "url": "https://symfony.com/sponsor",
  3846. "type": "custom"
  3847. },
  3848. {
  3849. "url": "https://github.com/fabpot",
  3850. "type": "github"
  3851. },
  3852. {
  3853. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3854. "type": "tidelift"
  3855. }
  3856. ],
  3857. "time": "2024-11-04T11:43:55+00:00"
  3858. },
  3859. {
  3860. "name": "symfony/cache-contracts",
  3861. "version": "v2.5.4",
  3862. "source": {
  3863. "type": "git",
  3864. "url": "https://github.com/symfony/cache-contracts.git",
  3865. "reference": "517c3a3619dadfa6952c4651767fcadffb4df65e"
  3866. },
  3867. "dist": {
  3868. "type": "zip",
  3869. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/517c3a3619dadfa6952c4651767fcadffb4df65e",
  3870. "reference": "517c3a3619dadfa6952c4651767fcadffb4df65e",
  3871. "shasum": "",
  3872. "mirrors": [
  3873. {
  3874. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3875. "preferred": true
  3876. }
  3877. ]
  3878. },
  3879. "require": {
  3880. "php": ">=7.2.5",
  3881. "psr/cache": "^1.0|^2.0|^3.0"
  3882. },
  3883. "suggest": {
  3884. "symfony/cache-implementation": ""
  3885. },
  3886. "type": "library",
  3887. "extra": {
  3888. "thanks": {
  3889. "url": "https://github.com/symfony/contracts",
  3890. "name": "symfony/contracts"
  3891. },
  3892. "branch-alias": {
  3893. "dev-main": "2.5-dev"
  3894. }
  3895. },
  3896. "autoload": {
  3897. "psr-4": {
  3898. "Symfony\\Contracts\\Cache\\": ""
  3899. }
  3900. },
  3901. "notification-url": "https://packagist.org/downloads/",
  3902. "license": [
  3903. "MIT"
  3904. ],
  3905. "authors": [
  3906. {
  3907. "name": "Nicolas Grekas",
  3908. "email": "p@tchwork.com"
  3909. },
  3910. {
  3911. "name": "Symfony Community",
  3912. "homepage": "https://symfony.com/contributors"
  3913. }
  3914. ],
  3915. "description": "Generic abstractions related to caching",
  3916. "homepage": "https://symfony.com",
  3917. "keywords": [
  3918. "abstractions",
  3919. "contracts",
  3920. "decoupling",
  3921. "interfaces",
  3922. "interoperability",
  3923. "standards"
  3924. ],
  3925. "support": {
  3926. "source": "https://github.com/symfony/cache-contracts/tree/v2.5.4"
  3927. },
  3928. "funding": [
  3929. {
  3930. "url": "https://symfony.com/sponsor",
  3931. "type": "custom"
  3932. },
  3933. {
  3934. "url": "https://github.com/fabpot",
  3935. "type": "github"
  3936. },
  3937. {
  3938. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3939. "type": "tidelift"
  3940. }
  3941. ],
  3942. "time": "2024-09-25T14:11:13+00:00"
  3943. },
  3944. {
  3945. "name": "symfony/clock",
  3946. "version": "v7.4.0",
  3947. "source": {
  3948. "type": "git",
  3949. "url": "https://github.com/symfony/clock.git",
  3950. "reference": "9169f24776edde469914c1e7a1442a50f7a4e110"
  3951. },
  3952. "dist": {
  3953. "type": "zip",
  3954. "url": "https://api.github.com/repos/symfony/clock/zipball/9169f24776edde469914c1e7a1442a50f7a4e110",
  3955. "reference": "9169f24776edde469914c1e7a1442a50f7a4e110",
  3956. "shasum": "",
  3957. "mirrors": [
  3958. {
  3959. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3960. "preferred": true
  3961. }
  3962. ]
  3963. },
  3964. "require": {
  3965. "php": ">=8.2",
  3966. "psr/clock": "^1.0",
  3967. "symfony/polyfill-php83": "^1.28"
  3968. },
  3969. "provide": {
  3970. "psr/clock-implementation": "1.0"
  3971. },
  3972. "type": "library",
  3973. "autoload": {
  3974. "files": [
  3975. "Resources/now.php"
  3976. ],
  3977. "psr-4": {
  3978. "Symfony\\Component\\Clock\\": ""
  3979. },
  3980. "exclude-from-classmap": [
  3981. "/Tests/"
  3982. ]
  3983. },
  3984. "notification-url": "https://packagist.org/downloads/",
  3985. "license": [
  3986. "MIT"
  3987. ],
  3988. "authors": [
  3989. {
  3990. "name": "Nicolas Grekas",
  3991. "email": "p@tchwork.com"
  3992. },
  3993. {
  3994. "name": "Symfony Community",
  3995. "homepage": "https://symfony.com/contributors"
  3996. }
  3997. ],
  3998. "description": "Decouples applications from the system clock",
  3999. "homepage": "https://symfony.com",
  4000. "keywords": [
  4001. "clock",
  4002. "psr20",
  4003. "time"
  4004. ],
  4005. "support": {
  4006. "source": "https://github.com/symfony/clock/tree/v7.4.0"
  4007. },
  4008. "funding": [
  4009. {
  4010. "url": "https://symfony.com/sponsor",
  4011. "type": "custom"
  4012. },
  4013. {
  4014. "url": "https://github.com/fabpot",
  4015. "type": "github"
  4016. },
  4017. {
  4018. "url": "https://github.com/nicolas-grekas",
  4019. "type": "github"
  4020. },
  4021. {
  4022. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4023. "type": "tidelift"
  4024. }
  4025. ],
  4026. "time": "2025-11-12T15:39:26+00:00"
  4027. },
  4028. {
  4029. "name": "symfony/deprecation-contracts",
  4030. "version": "v3.6.0",
  4031. "source": {
  4032. "type": "git",
  4033. "url": "https://github.com/symfony/deprecation-contracts.git",
  4034. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62"
  4035. },
  4036. "dist": {
  4037. "type": "zip",
  4038. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62",
  4039. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62",
  4040. "shasum": "",
  4041. "mirrors": [
  4042. {
  4043. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4044. "preferred": true
  4045. }
  4046. ]
  4047. },
  4048. "require": {
  4049. "php": ">=8.1"
  4050. },
  4051. "type": "library",
  4052. "extra": {
  4053. "thanks": {
  4054. "url": "https://github.com/symfony/contracts",
  4055. "name": "symfony/contracts"
  4056. },
  4057. "branch-alias": {
  4058. "dev-main": "3.6-dev"
  4059. }
  4060. },
  4061. "autoload": {
  4062. "files": [
  4063. "function.php"
  4064. ]
  4065. },
  4066. "notification-url": "https://packagist.org/downloads/",
  4067. "license": [
  4068. "MIT"
  4069. ],
  4070. "authors": [
  4071. {
  4072. "name": "Nicolas Grekas",
  4073. "email": "p@tchwork.com"
  4074. },
  4075. {
  4076. "name": "Symfony Community",
  4077. "homepage": "https://symfony.com/contributors"
  4078. }
  4079. ],
  4080. "description": "A generic function and convention to trigger deprecation notices",
  4081. "homepage": "https://symfony.com",
  4082. "support": {
  4083. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0"
  4084. },
  4085. "funding": [
  4086. {
  4087. "url": "https://symfony.com/sponsor",
  4088. "type": "custom"
  4089. },
  4090. {
  4091. "url": "https://github.com/fabpot",
  4092. "type": "github"
  4093. },
  4094. {
  4095. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4096. "type": "tidelift"
  4097. }
  4098. ],
  4099. "time": "2024-09-25T14:21:43+00:00"
  4100. },
  4101. {
  4102. "name": "symfony/filesystem",
  4103. "version": "v6.4.30",
  4104. "source": {
  4105. "type": "git",
  4106. "url": "https://github.com/symfony/filesystem.git",
  4107. "reference": "441c6b69f7222aadae7cbf5df588496d5ee37789"
  4108. },
  4109. "dist": {
  4110. "type": "zip",
  4111. "url": "https://api.github.com/repos/symfony/filesystem/zipball/441c6b69f7222aadae7cbf5df588496d5ee37789",
  4112. "reference": "441c6b69f7222aadae7cbf5df588496d5ee37789",
  4113. "shasum": "",
  4114. "mirrors": [
  4115. {
  4116. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4117. "preferred": true
  4118. }
  4119. ]
  4120. },
  4121. "require": {
  4122. "php": ">=8.1",
  4123. "symfony/polyfill-ctype": "~1.8",
  4124. "symfony/polyfill-mbstring": "~1.8"
  4125. },
  4126. "require-dev": {
  4127. "symfony/process": "^5.4|^6.4|^7.0"
  4128. },
  4129. "type": "library",
  4130. "autoload": {
  4131. "psr-4": {
  4132. "Symfony\\Component\\Filesystem\\": ""
  4133. },
  4134. "exclude-from-classmap": [
  4135. "/Tests/"
  4136. ]
  4137. },
  4138. "notification-url": "https://packagist.org/downloads/",
  4139. "license": [
  4140. "MIT"
  4141. ],
  4142. "authors": [
  4143. {
  4144. "name": "Fabien Potencier",
  4145. "email": "fabien@symfony.com"
  4146. },
  4147. {
  4148. "name": "Symfony Community",
  4149. "homepage": "https://symfony.com/contributors"
  4150. }
  4151. ],
  4152. "description": "Provides basic utilities for the filesystem",
  4153. "homepage": "https://symfony.com",
  4154. "support": {
  4155. "source": "https://github.com/symfony/filesystem/tree/v6.4.30"
  4156. },
  4157. "funding": [
  4158. {
  4159. "url": "https://symfony.com/sponsor",
  4160. "type": "custom"
  4161. },
  4162. {
  4163. "url": "https://github.com/fabpot",
  4164. "type": "github"
  4165. },
  4166. {
  4167. "url": "https://github.com/nicolas-grekas",
  4168. "type": "github"
  4169. },
  4170. {
  4171. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4172. "type": "tidelift"
  4173. }
  4174. ],
  4175. "time": "2025-11-26T14:43:45+00:00"
  4176. },
  4177. {
  4178. "name": "symfony/polyfill-ctype",
  4179. "version": "v1.32.0",
  4180. "source": {
  4181. "type": "git",
  4182. "url": "https://github.com/symfony/polyfill-ctype.git",
  4183. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  4184. },
  4185. "dist": {
  4186. "type": "zip",
  4187. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  4188. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  4189. "shasum": "",
  4190. "mirrors": [
  4191. {
  4192. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4193. "preferred": true
  4194. }
  4195. ]
  4196. },
  4197. "require": {
  4198. "php": ">=7.2"
  4199. },
  4200. "provide": {
  4201. "ext-ctype": "*"
  4202. },
  4203. "suggest": {
  4204. "ext-ctype": "For best performance"
  4205. },
  4206. "type": "library",
  4207. "extra": {
  4208. "thanks": {
  4209. "url": "https://github.com/symfony/polyfill",
  4210. "name": "symfony/polyfill"
  4211. }
  4212. },
  4213. "autoload": {
  4214. "files": [
  4215. "bootstrap.php"
  4216. ],
  4217. "psr-4": {
  4218. "Symfony\\Polyfill\\Ctype\\": ""
  4219. }
  4220. },
  4221. "notification-url": "https://packagist.org/downloads/",
  4222. "license": [
  4223. "MIT"
  4224. ],
  4225. "authors": [
  4226. {
  4227. "name": "Gert de Pagter",
  4228. "email": "BackEndTea@gmail.com"
  4229. },
  4230. {
  4231. "name": "Symfony Community",
  4232. "homepage": "https://symfony.com/contributors"
  4233. }
  4234. ],
  4235. "description": "Symfony polyfill for ctype functions",
  4236. "homepage": "https://symfony.com",
  4237. "keywords": [
  4238. "compatibility",
  4239. "ctype",
  4240. "polyfill",
  4241. "portable"
  4242. ],
  4243. "support": {
  4244. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.32.0"
  4245. },
  4246. "funding": [
  4247. {
  4248. "url": "https://symfony.com/sponsor",
  4249. "type": "custom"
  4250. },
  4251. {
  4252. "url": "https://github.com/fabpot",
  4253. "type": "github"
  4254. },
  4255. {
  4256. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4257. "type": "tidelift"
  4258. }
  4259. ],
  4260. "time": "2024-09-09T11:45:10+00:00"
  4261. },
  4262. {
  4263. "name": "symfony/polyfill-iconv",
  4264. "version": "v1.32.0",
  4265. "source": {
  4266. "type": "git",
  4267. "url": "https://github.com/symfony/polyfill-iconv.git",
  4268. "reference": "5f3b930437ae03ae5dff61269024d8ea1b3774aa"
  4269. },
  4270. "dist": {
  4271. "type": "zip",
  4272. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/5f3b930437ae03ae5dff61269024d8ea1b3774aa",
  4273. "reference": "5f3b930437ae03ae5dff61269024d8ea1b3774aa",
  4274. "shasum": "",
  4275. "mirrors": [
  4276. {
  4277. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4278. "preferred": true
  4279. }
  4280. ]
  4281. },
  4282. "require": {
  4283. "php": ">=7.2"
  4284. },
  4285. "provide": {
  4286. "ext-iconv": "*"
  4287. },
  4288. "suggest": {
  4289. "ext-iconv": "For best performance"
  4290. },
  4291. "type": "library",
  4292. "extra": {
  4293. "thanks": {
  4294. "url": "https://github.com/symfony/polyfill",
  4295. "name": "symfony/polyfill"
  4296. }
  4297. },
  4298. "autoload": {
  4299. "files": [
  4300. "bootstrap.php"
  4301. ],
  4302. "psr-4": {
  4303. "Symfony\\Polyfill\\Iconv\\": ""
  4304. }
  4305. },
  4306. "notification-url": "https://packagist.org/downloads/",
  4307. "license": [
  4308. "MIT"
  4309. ],
  4310. "authors": [
  4311. {
  4312. "name": "Nicolas Grekas",
  4313. "email": "p@tchwork.com"
  4314. },
  4315. {
  4316. "name": "Symfony Community",
  4317. "homepage": "https://symfony.com/contributors"
  4318. }
  4319. ],
  4320. "description": "Symfony polyfill for the Iconv extension",
  4321. "homepage": "https://symfony.com",
  4322. "keywords": [
  4323. "compatibility",
  4324. "iconv",
  4325. "polyfill",
  4326. "portable",
  4327. "shim"
  4328. ],
  4329. "support": {
  4330. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.32.0"
  4331. },
  4332. "funding": [
  4333. {
  4334. "url": "https://symfony.com/sponsor",
  4335. "type": "custom"
  4336. },
  4337. {
  4338. "url": "https://github.com/fabpot",
  4339. "type": "github"
  4340. },
  4341. {
  4342. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4343. "type": "tidelift"
  4344. }
  4345. ],
  4346. "time": "2024-09-17T14:58:18+00:00"
  4347. },
  4348. {
  4349. "name": "symfony/polyfill-intl-idn",
  4350. "version": "v1.32.0",
  4351. "source": {
  4352. "type": "git",
  4353. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  4354. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3"
  4355. },
  4356. "dist": {
  4357. "type": "zip",
  4358. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  4359. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  4360. "shasum": "",
  4361. "mirrors": [
  4362. {
  4363. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4364. "preferred": true
  4365. }
  4366. ]
  4367. },
  4368. "require": {
  4369. "php": ">=7.2",
  4370. "symfony/polyfill-intl-normalizer": "^1.10"
  4371. },
  4372. "suggest": {
  4373. "ext-intl": "For best performance"
  4374. },
  4375. "type": "library",
  4376. "extra": {
  4377. "thanks": {
  4378. "url": "https://github.com/symfony/polyfill",
  4379. "name": "symfony/polyfill"
  4380. }
  4381. },
  4382. "autoload": {
  4383. "files": [
  4384. "bootstrap.php"
  4385. ],
  4386. "psr-4": {
  4387. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  4388. }
  4389. },
  4390. "notification-url": "https://packagist.org/downloads/",
  4391. "license": [
  4392. "MIT"
  4393. ],
  4394. "authors": [
  4395. {
  4396. "name": "Laurent Bassin",
  4397. "email": "laurent@bassin.info"
  4398. },
  4399. {
  4400. "name": "Trevor Rowbotham",
  4401. "email": "trevor.rowbotham@pm.me"
  4402. },
  4403. {
  4404. "name": "Symfony Community",
  4405. "homepage": "https://symfony.com/contributors"
  4406. }
  4407. ],
  4408. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  4409. "homepage": "https://symfony.com",
  4410. "keywords": [
  4411. "compatibility",
  4412. "idn",
  4413. "intl",
  4414. "polyfill",
  4415. "portable",
  4416. "shim"
  4417. ],
  4418. "support": {
  4419. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.32.0"
  4420. },
  4421. "funding": [
  4422. {
  4423. "url": "https://symfony.com/sponsor",
  4424. "type": "custom"
  4425. },
  4426. {
  4427. "url": "https://github.com/fabpot",
  4428. "type": "github"
  4429. },
  4430. {
  4431. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4432. "type": "tidelift"
  4433. }
  4434. ],
  4435. "time": "2024-09-10T14:38:51+00:00"
  4436. },
  4437. {
  4438. "name": "symfony/polyfill-intl-normalizer",
  4439. "version": "v1.32.0",
  4440. "source": {
  4441. "type": "git",
  4442. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  4443. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  4444. },
  4445. "dist": {
  4446. "type": "zip",
  4447. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  4448. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  4449. "shasum": "",
  4450. "mirrors": [
  4451. {
  4452. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4453. "preferred": true
  4454. }
  4455. ]
  4456. },
  4457. "require": {
  4458. "php": ">=7.2"
  4459. },
  4460. "suggest": {
  4461. "ext-intl": "For best performance"
  4462. },
  4463. "type": "library",
  4464. "extra": {
  4465. "thanks": {
  4466. "url": "https://github.com/symfony/polyfill",
  4467. "name": "symfony/polyfill"
  4468. }
  4469. },
  4470. "autoload": {
  4471. "files": [
  4472. "bootstrap.php"
  4473. ],
  4474. "psr-4": {
  4475. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  4476. },
  4477. "classmap": [
  4478. "Resources/stubs"
  4479. ]
  4480. },
  4481. "notification-url": "https://packagist.org/downloads/",
  4482. "license": [
  4483. "MIT"
  4484. ],
  4485. "authors": [
  4486. {
  4487. "name": "Nicolas Grekas",
  4488. "email": "p@tchwork.com"
  4489. },
  4490. {
  4491. "name": "Symfony Community",
  4492. "homepage": "https://symfony.com/contributors"
  4493. }
  4494. ],
  4495. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  4496. "homepage": "https://symfony.com",
  4497. "keywords": [
  4498. "compatibility",
  4499. "intl",
  4500. "normalizer",
  4501. "polyfill",
  4502. "portable",
  4503. "shim"
  4504. ],
  4505. "support": {
  4506. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.32.0"
  4507. },
  4508. "funding": [
  4509. {
  4510. "url": "https://symfony.com/sponsor",
  4511. "type": "custom"
  4512. },
  4513. {
  4514. "url": "https://github.com/fabpot",
  4515. "type": "github"
  4516. },
  4517. {
  4518. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4519. "type": "tidelift"
  4520. }
  4521. ],
  4522. "time": "2024-09-09T11:45:10+00:00"
  4523. },
  4524. {
  4525. "name": "symfony/polyfill-mbstring",
  4526. "version": "v1.32.0",
  4527. "source": {
  4528. "type": "git",
  4529. "url": "https://github.com/symfony/polyfill-mbstring.git",
  4530. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
  4531. },
  4532. "dist": {
  4533. "type": "zip",
  4534. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
  4535. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
  4536. "shasum": "",
  4537. "mirrors": [
  4538. {
  4539. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4540. "preferred": true
  4541. }
  4542. ]
  4543. },
  4544. "require": {
  4545. "ext-iconv": "*",
  4546. "php": ">=7.2"
  4547. },
  4548. "provide": {
  4549. "ext-mbstring": "*"
  4550. },
  4551. "suggest": {
  4552. "ext-mbstring": "For best performance"
  4553. },
  4554. "type": "library",
  4555. "extra": {
  4556. "thanks": {
  4557. "url": "https://github.com/symfony/polyfill",
  4558. "name": "symfony/polyfill"
  4559. }
  4560. },
  4561. "autoload": {
  4562. "files": [
  4563. "bootstrap.php"
  4564. ],
  4565. "psr-4": {
  4566. "Symfony\\Polyfill\\Mbstring\\": ""
  4567. }
  4568. },
  4569. "notification-url": "https://packagist.org/downloads/",
  4570. "license": [
  4571. "MIT"
  4572. ],
  4573. "authors": [
  4574. {
  4575. "name": "Nicolas Grekas",
  4576. "email": "p@tchwork.com"
  4577. },
  4578. {
  4579. "name": "Symfony Community",
  4580. "homepage": "https://symfony.com/contributors"
  4581. }
  4582. ],
  4583. "description": "Symfony polyfill for the Mbstring extension",
  4584. "homepage": "https://symfony.com",
  4585. "keywords": [
  4586. "compatibility",
  4587. "mbstring",
  4588. "polyfill",
  4589. "portable",
  4590. "shim"
  4591. ],
  4592. "support": {
  4593. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.32.0"
  4594. },
  4595. "funding": [
  4596. {
  4597. "url": "https://symfony.com/sponsor",
  4598. "type": "custom"
  4599. },
  4600. {
  4601. "url": "https://github.com/fabpot",
  4602. "type": "github"
  4603. },
  4604. {
  4605. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4606. "type": "tidelift"
  4607. }
  4608. ],
  4609. "time": "2024-12-23T08:48:59+00:00"
  4610. },
  4611. {
  4612. "name": "symfony/polyfill-php73",
  4613. "version": "v1.32.0",
  4614. "source": {
  4615. "type": "git",
  4616. "url": "https://github.com/symfony/polyfill-php73.git",
  4617. "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb"
  4618. },
  4619. "dist": {
  4620. "type": "zip",
  4621. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
  4622. "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
  4623. "shasum": "",
  4624. "mirrors": [
  4625. {
  4626. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4627. "preferred": true
  4628. }
  4629. ]
  4630. },
  4631. "require": {
  4632. "php": ">=7.2"
  4633. },
  4634. "type": "library",
  4635. "extra": {
  4636. "thanks": {
  4637. "url": "https://github.com/symfony/polyfill",
  4638. "name": "symfony/polyfill"
  4639. }
  4640. },
  4641. "autoload": {
  4642. "files": [
  4643. "bootstrap.php"
  4644. ],
  4645. "psr-4": {
  4646. "Symfony\\Polyfill\\Php73\\": ""
  4647. },
  4648. "classmap": [
  4649. "Resources/stubs"
  4650. ]
  4651. },
  4652. "notification-url": "https://packagist.org/downloads/",
  4653. "license": [
  4654. "MIT"
  4655. ],
  4656. "authors": [
  4657. {
  4658. "name": "Nicolas Grekas",
  4659. "email": "p@tchwork.com"
  4660. },
  4661. {
  4662. "name": "Symfony Community",
  4663. "homepage": "https://symfony.com/contributors"
  4664. }
  4665. ],
  4666. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  4667. "homepage": "https://symfony.com",
  4668. "keywords": [
  4669. "compatibility",
  4670. "polyfill",
  4671. "portable",
  4672. "shim"
  4673. ],
  4674. "support": {
  4675. "source": "https://github.com/symfony/polyfill-php73/tree/v1.32.0"
  4676. },
  4677. "funding": [
  4678. {
  4679. "url": "https://symfony.com/sponsor",
  4680. "type": "custom"
  4681. },
  4682. {
  4683. "url": "https://github.com/fabpot",
  4684. "type": "github"
  4685. },
  4686. {
  4687. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4688. "type": "tidelift"
  4689. }
  4690. ],
  4691. "time": "2024-09-09T11:45:10+00:00"
  4692. },
  4693. {
  4694. "name": "symfony/polyfill-php80",
  4695. "version": "v1.33.0",
  4696. "source": {
  4697. "type": "git",
  4698. "url": "https://github.com/symfony/polyfill-php80.git",
  4699. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608"
  4700. },
  4701. "dist": {
  4702. "type": "zip",
  4703. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  4704. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  4705. "shasum": "",
  4706. "mirrors": [
  4707. {
  4708. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4709. "preferred": true
  4710. }
  4711. ]
  4712. },
  4713. "require": {
  4714. "php": ">=7.2"
  4715. },
  4716. "type": "library",
  4717. "extra": {
  4718. "thanks": {
  4719. "url": "https://github.com/symfony/polyfill",
  4720. "name": "symfony/polyfill"
  4721. }
  4722. },
  4723. "autoload": {
  4724. "files": [
  4725. "bootstrap.php"
  4726. ],
  4727. "psr-4": {
  4728. "Symfony\\Polyfill\\Php80\\": ""
  4729. },
  4730. "classmap": [
  4731. "Resources/stubs"
  4732. ]
  4733. },
  4734. "notification-url": "https://packagist.org/downloads/",
  4735. "license": [
  4736. "MIT"
  4737. ],
  4738. "authors": [
  4739. {
  4740. "name": "Ion Bazan",
  4741. "email": "ion.bazan@gmail.com"
  4742. },
  4743. {
  4744. "name": "Nicolas Grekas",
  4745. "email": "p@tchwork.com"
  4746. },
  4747. {
  4748. "name": "Symfony Community",
  4749. "homepage": "https://symfony.com/contributors"
  4750. }
  4751. ],
  4752. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  4753. "homepage": "https://symfony.com",
  4754. "keywords": [
  4755. "compatibility",
  4756. "polyfill",
  4757. "portable",
  4758. "shim"
  4759. ],
  4760. "support": {
  4761. "source": "https://github.com/symfony/polyfill-php80/tree/v1.33.0"
  4762. },
  4763. "funding": [
  4764. {
  4765. "url": "https://symfony.com/sponsor",
  4766. "type": "custom"
  4767. },
  4768. {
  4769. "url": "https://github.com/fabpot",
  4770. "type": "github"
  4771. },
  4772. {
  4773. "url": "https://github.com/nicolas-grekas",
  4774. "type": "github"
  4775. },
  4776. {
  4777. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4778. "type": "tidelift"
  4779. }
  4780. ],
  4781. "time": "2025-01-02T08:10:11+00:00"
  4782. },
  4783. {
  4784. "name": "symfony/polyfill-php83",
  4785. "version": "v1.32.0",
  4786. "source": {
  4787. "type": "git",
  4788. "url": "https://github.com/symfony/polyfill-php83.git",
  4789. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  4790. },
  4791. "dist": {
  4792. "type": "zip",
  4793. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  4794. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  4795. "shasum": "",
  4796. "mirrors": [
  4797. {
  4798. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4799. "preferred": true
  4800. }
  4801. ]
  4802. },
  4803. "require": {
  4804. "php": ">=7.2"
  4805. },
  4806. "type": "library",
  4807. "extra": {
  4808. "thanks": {
  4809. "url": "https://github.com/symfony/polyfill",
  4810. "name": "symfony/polyfill"
  4811. }
  4812. },
  4813. "autoload": {
  4814. "files": [
  4815. "bootstrap.php"
  4816. ],
  4817. "psr-4": {
  4818. "Symfony\\Polyfill\\Php83\\": ""
  4819. },
  4820. "classmap": [
  4821. "Resources/stubs"
  4822. ]
  4823. },
  4824. "notification-url": "https://packagist.org/downloads/",
  4825. "license": [
  4826. "MIT"
  4827. ],
  4828. "authors": [
  4829. {
  4830. "name": "Nicolas Grekas",
  4831. "email": "p@tchwork.com"
  4832. },
  4833. {
  4834. "name": "Symfony Community",
  4835. "homepage": "https://symfony.com/contributors"
  4836. }
  4837. ],
  4838. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  4839. "homepage": "https://symfony.com",
  4840. "keywords": [
  4841. "compatibility",
  4842. "polyfill",
  4843. "portable",
  4844. "shim"
  4845. ],
  4846. "support": {
  4847. "source": "https://github.com/symfony/polyfill-php83/tree/v1.32.0"
  4848. },
  4849. "funding": [
  4850. {
  4851. "url": "https://symfony.com/sponsor",
  4852. "type": "custom"
  4853. },
  4854. {
  4855. "url": "https://github.com/fabpot",
  4856. "type": "github"
  4857. },
  4858. {
  4859. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4860. "type": "tidelift"
  4861. }
  4862. ],
  4863. "time": "2024-09-09T11:45:10+00:00"
  4864. },
  4865. {
  4866. "name": "symfony/process",
  4867. "version": "v5.4.47",
  4868. "source": {
  4869. "type": "git",
  4870. "url": "https://github.com/symfony/process.git",
  4871. "reference": "5d1662fb32ebc94f17ddb8d635454a776066733d"
  4872. },
  4873. "dist": {
  4874. "type": "zip",
  4875. "url": "https://api.github.com/repos/symfony/process/zipball/5d1662fb32ebc94f17ddb8d635454a776066733d",
  4876. "reference": "5d1662fb32ebc94f17ddb8d635454a776066733d",
  4877. "shasum": "",
  4878. "mirrors": [
  4879. {
  4880. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4881. "preferred": true
  4882. }
  4883. ]
  4884. },
  4885. "require": {
  4886. "php": ">=7.2.5",
  4887. "symfony/polyfill-php80": "^1.16"
  4888. },
  4889. "type": "library",
  4890. "autoload": {
  4891. "psr-4": {
  4892. "Symfony\\Component\\Process\\": ""
  4893. },
  4894. "exclude-from-classmap": [
  4895. "/Tests/"
  4896. ]
  4897. },
  4898. "notification-url": "https://packagist.org/downloads/",
  4899. "license": [
  4900. "MIT"
  4901. ],
  4902. "authors": [
  4903. {
  4904. "name": "Fabien Potencier",
  4905. "email": "fabien@symfony.com"
  4906. },
  4907. {
  4908. "name": "Symfony Community",
  4909. "homepage": "https://symfony.com/contributors"
  4910. }
  4911. ],
  4912. "description": "Executes commands in sub-processes",
  4913. "homepage": "https://symfony.com",
  4914. "support": {
  4915. "source": "https://github.com/symfony/process/tree/v5.4.47"
  4916. },
  4917. "funding": [
  4918. {
  4919. "url": "https://symfony.com/sponsor",
  4920. "type": "custom"
  4921. },
  4922. {
  4923. "url": "https://github.com/fabpot",
  4924. "type": "github"
  4925. },
  4926. {
  4927. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4928. "type": "tidelift"
  4929. }
  4930. ],
  4931. "time": "2024-11-06T11:36:42+00:00"
  4932. },
  4933. {
  4934. "name": "symfony/service-contracts",
  4935. "version": "v3.6.1",
  4936. "source": {
  4937. "type": "git",
  4938. "url": "https://github.com/symfony/service-contracts.git",
  4939. "reference": "45112560a3ba2d715666a509a0bc9521d10b6c43"
  4940. },
  4941. "dist": {
  4942. "type": "zip",
  4943. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/45112560a3ba2d715666a509a0bc9521d10b6c43",
  4944. "reference": "45112560a3ba2d715666a509a0bc9521d10b6c43",
  4945. "shasum": "",
  4946. "mirrors": [
  4947. {
  4948. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4949. "preferred": true
  4950. }
  4951. ]
  4952. },
  4953. "require": {
  4954. "php": ">=8.1",
  4955. "psr/container": "^1.1|^2.0",
  4956. "symfony/deprecation-contracts": "^2.5|^3"
  4957. },
  4958. "conflict": {
  4959. "ext-psr": "<1.1|>=2"
  4960. },
  4961. "type": "library",
  4962. "extra": {
  4963. "thanks": {
  4964. "url": "https://github.com/symfony/contracts",
  4965. "name": "symfony/contracts"
  4966. },
  4967. "branch-alias": {
  4968. "dev-main": "3.6-dev"
  4969. }
  4970. },
  4971. "autoload": {
  4972. "psr-4": {
  4973. "Symfony\\Contracts\\Service\\": ""
  4974. },
  4975. "exclude-from-classmap": [
  4976. "/Test/"
  4977. ]
  4978. },
  4979. "notification-url": "https://packagist.org/downloads/",
  4980. "license": [
  4981. "MIT"
  4982. ],
  4983. "authors": [
  4984. {
  4985. "name": "Nicolas Grekas",
  4986. "email": "p@tchwork.com"
  4987. },
  4988. {
  4989. "name": "Symfony Community",
  4990. "homepage": "https://symfony.com/contributors"
  4991. }
  4992. ],
  4993. "description": "Generic abstractions related to writing services",
  4994. "homepage": "https://symfony.com",
  4995. "keywords": [
  4996. "abstractions",
  4997. "contracts",
  4998. "decoupling",
  4999. "interfaces",
  5000. "interoperability",
  5001. "standards"
  5002. ],
  5003. "support": {
  5004. "source": "https://github.com/symfony/service-contracts/tree/v3.6.1"
  5005. },
  5006. "funding": [
  5007. {
  5008. "url": "https://symfony.com/sponsor",
  5009. "type": "custom"
  5010. },
  5011. {
  5012. "url": "https://github.com/fabpot",
  5013. "type": "github"
  5014. },
  5015. {
  5016. "url": "https://github.com/nicolas-grekas",
  5017. "type": "github"
  5018. },
  5019. {
  5020. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5021. "type": "tidelift"
  5022. }
  5023. ],
  5024. "time": "2025-07-15T11:30:57+00:00"
  5025. },
  5026. {
  5027. "name": "symfony/translation",
  5028. "version": "v7.4.0",
  5029. "source": {
  5030. "type": "git",
  5031. "url": "https://github.com/symfony/translation.git",
  5032. "reference": "2d01ca0da3f092f91eeedb46f24aa30d2fca8f68"
  5033. },
  5034. "dist": {
  5035. "type": "zip",
  5036. "url": "https://api.github.com/repos/symfony/translation/zipball/2d01ca0da3f092f91eeedb46f24aa30d2fca8f68",
  5037. "reference": "2d01ca0da3f092f91eeedb46f24aa30d2fca8f68",
  5038. "shasum": "",
  5039. "mirrors": [
  5040. {
  5041. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5042. "preferred": true
  5043. }
  5044. ]
  5045. },
  5046. "require": {
  5047. "php": ">=8.2",
  5048. "symfony/deprecation-contracts": "^2.5|^3",
  5049. "symfony/polyfill-mbstring": "~1.0",
  5050. "symfony/translation-contracts": "^2.5.3|^3.3"
  5051. },
  5052. "conflict": {
  5053. "nikic/php-parser": "<5.0",
  5054. "symfony/config": "<6.4",
  5055. "symfony/console": "<6.4",
  5056. "symfony/dependency-injection": "<6.4",
  5057. "symfony/http-client-contracts": "<2.5",
  5058. "symfony/http-kernel": "<6.4",
  5059. "symfony/service-contracts": "<2.5",
  5060. "symfony/twig-bundle": "<6.4",
  5061. "symfony/yaml": "<6.4"
  5062. },
  5063. "provide": {
  5064. "symfony/translation-implementation": "2.3|3.0"
  5065. },
  5066. "require-dev": {
  5067. "nikic/php-parser": "^5.0",
  5068. "psr/log": "^1|^2|^3",
  5069. "symfony/config": "^6.4|^7.0|^8.0",
  5070. "symfony/console": "^6.4|^7.0|^8.0",
  5071. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  5072. "symfony/finder": "^6.4|^7.0|^8.0",
  5073. "symfony/http-client-contracts": "^2.5|^3.0",
  5074. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  5075. "symfony/intl": "^6.4|^7.0|^8.0",
  5076. "symfony/polyfill-intl-icu": "^1.21",
  5077. "symfony/routing": "^6.4|^7.0|^8.0",
  5078. "symfony/service-contracts": "^2.5|^3",
  5079. "symfony/yaml": "^6.4|^7.0|^8.0"
  5080. },
  5081. "type": "library",
  5082. "autoload": {
  5083. "files": [
  5084. "Resources/functions.php"
  5085. ],
  5086. "psr-4": {
  5087. "Symfony\\Component\\Translation\\": ""
  5088. },
  5089. "exclude-from-classmap": [
  5090. "/Tests/"
  5091. ]
  5092. },
  5093. "notification-url": "https://packagist.org/downloads/",
  5094. "license": [
  5095. "MIT"
  5096. ],
  5097. "authors": [
  5098. {
  5099. "name": "Fabien Potencier",
  5100. "email": "fabien@symfony.com"
  5101. },
  5102. {
  5103. "name": "Symfony Community",
  5104. "homepage": "https://symfony.com/contributors"
  5105. }
  5106. ],
  5107. "description": "Provides tools to internationalize your application",
  5108. "homepage": "https://symfony.com",
  5109. "support": {
  5110. "source": "https://github.com/symfony/translation/tree/v7.4.0"
  5111. },
  5112. "funding": [
  5113. {
  5114. "url": "https://symfony.com/sponsor",
  5115. "type": "custom"
  5116. },
  5117. {
  5118. "url": "https://github.com/fabpot",
  5119. "type": "github"
  5120. },
  5121. {
  5122. "url": "https://github.com/nicolas-grekas",
  5123. "type": "github"
  5124. },
  5125. {
  5126. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5127. "type": "tidelift"
  5128. }
  5129. ],
  5130. "time": "2025-11-27T13:27:24+00:00"
  5131. },
  5132. {
  5133. "name": "symfony/translation-contracts",
  5134. "version": "v3.6.1",
  5135. "source": {
  5136. "type": "git",
  5137. "url": "https://github.com/symfony/translation-contracts.git",
  5138. "reference": "65a8bc82080447fae78373aa10f8d13b38338977"
  5139. },
  5140. "dist": {
  5141. "type": "zip",
  5142. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/65a8bc82080447fae78373aa10f8d13b38338977",
  5143. "reference": "65a8bc82080447fae78373aa10f8d13b38338977",
  5144. "shasum": "",
  5145. "mirrors": [
  5146. {
  5147. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5148. "preferred": true
  5149. }
  5150. ]
  5151. },
  5152. "require": {
  5153. "php": ">=8.1"
  5154. },
  5155. "type": "library",
  5156. "extra": {
  5157. "thanks": {
  5158. "url": "https://github.com/symfony/contracts",
  5159. "name": "symfony/contracts"
  5160. },
  5161. "branch-alias": {
  5162. "dev-main": "3.6-dev"
  5163. }
  5164. },
  5165. "autoload": {
  5166. "psr-4": {
  5167. "Symfony\\Contracts\\Translation\\": ""
  5168. },
  5169. "exclude-from-classmap": [
  5170. "/Test/"
  5171. ]
  5172. },
  5173. "notification-url": "https://packagist.org/downloads/",
  5174. "license": [
  5175. "MIT"
  5176. ],
  5177. "authors": [
  5178. {
  5179. "name": "Nicolas Grekas",
  5180. "email": "p@tchwork.com"
  5181. },
  5182. {
  5183. "name": "Symfony Community",
  5184. "homepage": "https://symfony.com/contributors"
  5185. }
  5186. ],
  5187. "description": "Generic abstractions related to translation",
  5188. "homepage": "https://symfony.com",
  5189. "keywords": [
  5190. "abstractions",
  5191. "contracts",
  5192. "decoupling",
  5193. "interfaces",
  5194. "interoperability",
  5195. "standards"
  5196. ],
  5197. "support": {
  5198. "source": "https://github.com/symfony/translation-contracts/tree/v3.6.1"
  5199. },
  5200. "funding": [
  5201. {
  5202. "url": "https://symfony.com/sponsor",
  5203. "type": "custom"
  5204. },
  5205. {
  5206. "url": "https://github.com/fabpot",
  5207. "type": "github"
  5208. },
  5209. {
  5210. "url": "https://github.com/nicolas-grekas",
  5211. "type": "github"
  5212. },
  5213. {
  5214. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5215. "type": "tidelift"
  5216. }
  5217. ],
  5218. "time": "2025-07-15T13:41:35+00:00"
  5219. },
  5220. {
  5221. "name": "symfony/var-exporter",
  5222. "version": "v6.4.26",
  5223. "source": {
  5224. "type": "git",
  5225. "url": "https://github.com/symfony/var-exporter.git",
  5226. "reference": "466fcac5fa2e871f83d31173f80e9c2684743bfc"
  5227. },
  5228. "dist": {
  5229. "type": "zip",
  5230. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/466fcac5fa2e871f83d31173f80e9c2684743bfc",
  5231. "reference": "466fcac5fa2e871f83d31173f80e9c2684743bfc",
  5232. "shasum": "",
  5233. "mirrors": [
  5234. {
  5235. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5236. "preferred": true
  5237. }
  5238. ]
  5239. },
  5240. "require": {
  5241. "php": ">=8.1",
  5242. "symfony/deprecation-contracts": "^2.5|^3"
  5243. },
  5244. "require-dev": {
  5245. "symfony/property-access": "^6.4|^7.0",
  5246. "symfony/serializer": "^6.4|^7.0",
  5247. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  5248. },
  5249. "type": "library",
  5250. "autoload": {
  5251. "psr-4": {
  5252. "Symfony\\Component\\VarExporter\\": ""
  5253. },
  5254. "exclude-from-classmap": [
  5255. "/Tests/"
  5256. ]
  5257. },
  5258. "notification-url": "https://packagist.org/downloads/",
  5259. "license": [
  5260. "MIT"
  5261. ],
  5262. "authors": [
  5263. {
  5264. "name": "Nicolas Grekas",
  5265. "email": "p@tchwork.com"
  5266. },
  5267. {
  5268. "name": "Symfony Community",
  5269. "homepage": "https://symfony.com/contributors"
  5270. }
  5271. ],
  5272. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  5273. "homepage": "https://symfony.com",
  5274. "keywords": [
  5275. "clone",
  5276. "construct",
  5277. "export",
  5278. "hydrate",
  5279. "instantiate",
  5280. "lazy-loading",
  5281. "proxy",
  5282. "serialize"
  5283. ],
  5284. "support": {
  5285. "source": "https://github.com/symfony/var-exporter/tree/v6.4.26"
  5286. },
  5287. "funding": [
  5288. {
  5289. "url": "https://symfony.com/sponsor",
  5290. "type": "custom"
  5291. },
  5292. {
  5293. "url": "https://github.com/fabpot",
  5294. "type": "github"
  5295. },
  5296. {
  5297. "url": "https://github.com/nicolas-grekas",
  5298. "type": "github"
  5299. },
  5300. {
  5301. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5302. "type": "tidelift"
  5303. }
  5304. ],
  5305. "time": "2025-09-11T09:57:09+00:00"
  5306. },
  5307. {
  5308. "name": "tcwei/imglazyload",
  5309. "version": "v1.3",
  5310. "source": {
  5311. "type": "git",
  5312. "url": "https://github.com/ITzhiwei/ArticleImgLazyload.git",
  5313. "reference": "f7634e446de972a26aac6973141c39ca2ea62b89"
  5314. },
  5315. "dist": {
  5316. "type": "zip",
  5317. "url": "https://api.github.com/repos/ITzhiwei/ArticleImgLazyload/zipball/f7634e446de972a26aac6973141c39ca2ea62b89",
  5318. "reference": "f7634e446de972a26aac6973141c39ca2ea62b89",
  5319. "shasum": "",
  5320. "mirrors": [
  5321. {
  5322. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5323. "preferred": true
  5324. }
  5325. ]
  5326. },
  5327. "type": "library",
  5328. "autoload": {
  5329. "psr-4": {
  5330. "tcwei\\smallTools\\": "src/"
  5331. }
  5332. },
  5333. "notification-url": "https://packagist.org/downloads/",
  5334. "license": [
  5335. "MIT"
  5336. ],
  5337. "authors": [
  5338. {
  5339. "name": "zhiwei",
  5340. "email": "2394599321@qq.com"
  5341. }
  5342. ],
  5343. "description": "文章图片懒加载,当文章中存在大量图片时,可使用该库进行图片懒加载,看不到的图片不进行加载,节省带宽",
  5344. "support": {
  5345. "issues": "https://github.com/ITzhiwei/ArticleImgLazyload/issues",
  5346. "source": "https://github.com/ITzhiwei/ArticleImgLazyload/tree/master"
  5347. },
  5348. "time": "2020-06-25T14:08:30+00:00"
  5349. },
  5350. {
  5351. "name": "tcwei/imgsrc",
  5352. "version": "v2.02",
  5353. "source": {
  5354. "type": "git",
  5355. "url": "https://github.com/ITzhiwei/getImgSrc.git",
  5356. "reference": "832342b664fc7d84e0c6253ab90407f2b565887e"
  5357. },
  5358. "dist": {
  5359. "type": "zip",
  5360. "url": "https://api.github.com/repos/ITzhiwei/getImgSrc/zipball/832342b664fc7d84e0c6253ab90407f2b565887e",
  5361. "reference": "832342b664fc7d84e0c6253ab90407f2b565887e",
  5362. "shasum": "",
  5363. "mirrors": [
  5364. {
  5365. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5366. "preferred": true
  5367. }
  5368. ]
  5369. },
  5370. "type": "library",
  5371. "autoload": {
  5372. "psr-4": {
  5373. "tcwei\\smallTools\\": "imgSrc/"
  5374. }
  5375. },
  5376. "notification-url": "https://packagist.org/downloads/",
  5377. "license": [
  5378. "MIT"
  5379. ],
  5380. "authors": [
  5381. {
  5382. "name": "zhiwei",
  5383. "email": "2394599321@qq.com"
  5384. }
  5385. ],
  5386. "description": "高效率字符串模式(可比正则获取快3倍)从HTML或者文章内容等字符串中提取图片的src,可指定提取第几张图片、顺数第几或逆数第几、可指定黑名单等。页面下面有使用例子:",
  5387. "support": {
  5388. "issues": "https://github.com/ITzhiwei/getImgSrc/issues",
  5389. "source": "https://github.com/ITzhiwei/getImgSrc/tree/v2.02"
  5390. },
  5391. "time": "2021-06-16T15:07:12+00:00"
  5392. },
  5393. {
  5394. "name": "thans/thinkphp-filesystem-cloud",
  5395. "version": "v1.0.2",
  5396. "source": {
  5397. "type": "git",
  5398. "url": "https://github.com/QThans/thinkphp-filesystem-cloud.git",
  5399. "reference": "b8d6d61a8b28df12ae9b1b19249b90e8a645ffa2"
  5400. },
  5401. "dist": {
  5402. "type": "zip",
  5403. "url": "https://api.github.com/repos/QThans/thinkphp-filesystem-cloud/zipball/b8d6d61a8b28df12ae9b1b19249b90e8a645ffa2",
  5404. "reference": "b8d6d61a8b28df12ae9b1b19249b90e8a645ffa2",
  5405. "shasum": "",
  5406. "mirrors": [
  5407. {
  5408. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5409. "preferred": true
  5410. }
  5411. ]
  5412. },
  5413. "require": {
  5414. "liz/flysystem-qiniu": "^1.10",
  5415. "overtrue/flysystem-cos": "^2.0.0",
  5416. "php": ">=7.1.0",
  5417. "topthink/framework": "^6.0.0",
  5418. "xxtime/flysystem-aliyun-oss": "^1.4"
  5419. },
  5420. "type": "library",
  5421. "extra": {
  5422. "think": {
  5423. "services": [
  5424. "thans\\filesystem\\Service"
  5425. ]
  5426. }
  5427. },
  5428. "autoload": {
  5429. "psr-4": {
  5430. "thans\\filesystem\\": "src/"
  5431. }
  5432. },
  5433. "notification-url": "https://packagist.org/downloads/",
  5434. "license": [
  5435. "MIT"
  5436. ],
  5437. "authors": [
  5438. {
  5439. "name": "Thans",
  5440. "email": "360641274@qq.com"
  5441. }
  5442. ],
  5443. "description": "thinkphp6.0 filesystem,include Aliyun and Qiniu",
  5444. "support": {
  5445. "issues": "https://github.com/QThans/thinkphp-filesystem-cloud/issues",
  5446. "source": "https://github.com/QThans/thinkphp-filesystem-cloud/tree/master"
  5447. },
  5448. "time": "2019-11-29T00:57:33+00:00"
  5449. },
  5450. {
  5451. "name": "thans/tp-jwt-auth",
  5452. "version": "v1.3.1",
  5453. "source": {
  5454. "type": "git",
  5455. "url": "https://github.com/QThans/jwt-auth.git",
  5456. "reference": "ab5efcc0fd920df81fea2c404c34bb967ef13aba"
  5457. },
  5458. "dist": {
  5459. "type": "zip",
  5460. "url": "https://api.github.com/repos/QThans/jwt-auth/zipball/ab5efcc0fd920df81fea2c404c34bb967ef13aba",
  5461. "reference": "ab5efcc0fd920df81fea2c404c34bb967ef13aba",
  5462. "shasum": "",
  5463. "mirrors": [
  5464. {
  5465. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5466. "preferred": true
  5467. }
  5468. ]
  5469. },
  5470. "require": {
  5471. "php": "^7.0 || ^8.0",
  5472. "qeq66/jwt": "3.3.*",
  5473. "topthink/framework": "^5.1.10 || ^6.0.0"
  5474. },
  5475. "type": "library",
  5476. "extra": {
  5477. "think": {
  5478. "config": {
  5479. "jwt": "config/config.php"
  5480. },
  5481. "services": [
  5482. "thans\\jwt\\Service"
  5483. ]
  5484. }
  5485. },
  5486. "autoload": {
  5487. "files": [
  5488. "src/helper.php"
  5489. ],
  5490. "psr-4": {
  5491. "thans\\jwt\\": "src"
  5492. }
  5493. },
  5494. "notification-url": "https://packagist.org/downloads/",
  5495. "license": [
  5496. "MIT"
  5497. ],
  5498. "authors": [
  5499. {
  5500. "name": "Thans",
  5501. "email": "360641274@qq.com"
  5502. }
  5503. ],
  5504. "description": "thinkphp jwt auth composer",
  5505. "support": {
  5506. "issues": "https://github.com/QThans/jwt-auth/issues",
  5507. "source": "https://github.com/QThans/jwt-auth/tree/v1.3.1"
  5508. },
  5509. "time": "2022-11-01T02:44:23+00:00"
  5510. },
  5511. {
  5512. "name": "topthink/framework",
  5513. "version": "v6.0.15",
  5514. "source": {
  5515. "type": "git",
  5516. "url": "https://github.com/top-think/framework.git",
  5517. "reference": "0d248a0bf590a6ec5fd65de5e28448bcac0608f1"
  5518. },
  5519. "dist": {
  5520. "type": "zip",
  5521. "url": "https://api.github.com/repos/top-think/framework/zipball/0d248a0bf590a6ec5fd65de5e28448bcac0608f1",
  5522. "reference": "0d248a0bf590a6ec5fd65de5e28448bcac0608f1",
  5523. "shasum": "",
  5524. "mirrors": [
  5525. {
  5526. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5527. "preferred": true
  5528. }
  5529. ]
  5530. },
  5531. "require": {
  5532. "ext-json": "*",
  5533. "ext-mbstring": "*",
  5534. "league/flysystem": "^1.1.4",
  5535. "league/flysystem-cached-adapter": "^1.0",
  5536. "php": ">=7.2.5",
  5537. "psr/container": "~1.0",
  5538. "psr/http-message": "^1.0",
  5539. "psr/log": "~1.0",
  5540. "psr/simple-cache": "^1.0",
  5541. "topthink/think-helper": "^3.1.1",
  5542. "topthink/think-orm": "^2.0|^3.0"
  5543. },
  5544. "require-dev": {
  5545. "guzzlehttp/psr7": "^2.1.0",
  5546. "mikey179/vfsstream": "^1.6",
  5547. "mockery/mockery": "^1.2",
  5548. "phpunit/phpunit": "^7.0"
  5549. },
  5550. "type": "library",
  5551. "autoload": {
  5552. "files": [],
  5553. "psr-4": {
  5554. "think\\": "src/think/"
  5555. }
  5556. },
  5557. "notification-url": "https://packagist.org/downloads/",
  5558. "license": [
  5559. "Apache-2.0"
  5560. ],
  5561. "authors": [
  5562. {
  5563. "name": "liu21st",
  5564. "email": "liu21st@gmail.com"
  5565. },
  5566. {
  5567. "name": "yunwuxin",
  5568. "email": "448901948@qq.com"
  5569. }
  5570. ],
  5571. "description": "The ThinkPHP Framework.",
  5572. "homepage": "http://thinkphp.cn/",
  5573. "keywords": [
  5574. "framework",
  5575. "orm",
  5576. "thinkphp"
  5577. ],
  5578. "support": {
  5579. "issues": "https://github.com/top-think/framework/issues",
  5580. "source": "https://github.com/top-think/framework/tree/v6.0.15"
  5581. },
  5582. "time": "2023-05-19T09:55:18+00:00"
  5583. },
  5584. {
  5585. "name": "topthink/think-api",
  5586. "version": "v1.0.31",
  5587. "source": {
  5588. "type": "git",
  5589. "url": "https://github.com/top-think/think-api.git",
  5590. "reference": "5cf168dc93ec8e183c36a599357f67c07668f90c"
  5591. },
  5592. "dist": {
  5593. "type": "zip",
  5594. "url": "https://api.github.com/repos/top-think/think-api/zipball/5cf168dc93ec8e183c36a599357f67c07668f90c",
  5595. "reference": "5cf168dc93ec8e183c36a599357f67c07668f90c",
  5596. "shasum": "",
  5597. "mirrors": [
  5598. {
  5599. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5600. "preferred": true
  5601. }
  5602. ]
  5603. },
  5604. "require": {
  5605. "guzzlehttp/guzzle": "^6.5 || ^7.0",
  5606. "topthink/think-helper": "^1.0 || ^3.1"
  5607. },
  5608. "require-dev": {
  5609. "phpunit/phpunit": "^7.0"
  5610. },
  5611. "type": "library",
  5612. "autoload": {
  5613. "psr-4": {
  5614. "think\\api\\": "src"
  5615. }
  5616. },
  5617. "notification-url": "https://packagist.org/downloads/",
  5618. "license": [
  5619. "Apache-2.0"
  5620. ],
  5621. "authors": [
  5622. {
  5623. "name": "yunwuxin",
  5624. "email": "448901948@qq.com"
  5625. }
  5626. ],
  5627. "support": {
  5628. "issues": "https://github.com/top-think/think-api/issues",
  5629. "source": "https://github.com/top-think/think-api/tree/v1.0.31"
  5630. },
  5631. "time": "2024-05-24T05:23:08+00:00"
  5632. },
  5633. {
  5634. "name": "topthink/think-captcha",
  5635. "version": "v3.0.11",
  5636. "source": {
  5637. "type": "git",
  5638. "url": "https://github.com/top-think/think-captcha.git",
  5639. "reference": "4f24f560a31011329e3d144732e5370d7676b3fb"
  5640. },
  5641. "dist": {
  5642. "type": "zip",
  5643. "url": "https://api.github.com/repos/top-think/think-captcha/zipball/4f24f560a31011329e3d144732e5370d7676b3fb",
  5644. "reference": "4f24f560a31011329e3d144732e5370d7676b3fb",
  5645. "shasum": "",
  5646. "mirrors": [
  5647. {
  5648. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5649. "preferred": true
  5650. }
  5651. ]
  5652. },
  5653. "require": {
  5654. "topthink/framework": "^6.0|^8.0"
  5655. },
  5656. "type": "library",
  5657. "extra": {
  5658. "think": {
  5659. "config": {
  5660. "captcha": "src/config.php"
  5661. },
  5662. "services": [
  5663. "think\\captcha\\CaptchaService"
  5664. ]
  5665. }
  5666. },
  5667. "autoload": {
  5668. "files": [
  5669. "src/helper.php"
  5670. ],
  5671. "psr-4": {
  5672. "think\\captcha\\": "src/"
  5673. }
  5674. },
  5675. "notification-url": "https://packagist.org/downloads/",
  5676. "license": [
  5677. "Apache-2.0"
  5678. ],
  5679. "authors": [
  5680. {
  5681. "name": "yunwuxin",
  5682. "email": "448901948@qq.com"
  5683. }
  5684. ],
  5685. "description": "captcha package for thinkphp",
  5686. "support": {
  5687. "issues": "https://github.com/top-think/think-captcha/issues",
  5688. "source": "https://github.com/top-think/think-captcha/tree/v3.0.11"
  5689. },
  5690. "time": "2024-11-22T12:59:35+00:00"
  5691. },
  5692. {
  5693. "name": "topthink/think-helper",
  5694. "version": "v3.1.11",
  5695. "source": {
  5696. "type": "git",
  5697. "url": "https://github.com/top-think/think-helper.git",
  5698. "reference": "1d6ada9b9f3130046bf6922fe1bd159c8d88a33c"
  5699. },
  5700. "dist": {
  5701. "type": "zip",
  5702. "url": "https://api.github.com/repos/top-think/think-helper/zipball/1d6ada9b9f3130046bf6922fe1bd159c8d88a33c",
  5703. "reference": "1d6ada9b9f3130046bf6922fe1bd159c8d88a33c",
  5704. "shasum": "",
  5705. "mirrors": [
  5706. {
  5707. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5708. "preferred": true
  5709. }
  5710. ]
  5711. },
  5712. "require": {
  5713. "php": ">=7.1.0"
  5714. },
  5715. "require-dev": {
  5716. "phpunit/phpunit": "^9.5"
  5717. },
  5718. "type": "library",
  5719. "autoload": {
  5720. "files": [
  5721. "src/helper.php"
  5722. ],
  5723. "psr-4": {
  5724. "think\\": "src"
  5725. }
  5726. },
  5727. "notification-url": "https://packagist.org/downloads/",
  5728. "license": [
  5729. "Apache-2.0"
  5730. ],
  5731. "authors": [
  5732. {
  5733. "name": "yunwuxin",
  5734. "email": "448901948@qq.com"
  5735. }
  5736. ],
  5737. "description": "The ThinkPHP6 Helper Package",
  5738. "support": {
  5739. "issues": "https://github.com/top-think/think-helper/issues",
  5740. "source": "https://github.com/top-think/think-helper/tree/v3.1.11"
  5741. },
  5742. "time": "2025-04-07T06:55:59+00:00"
  5743. },
  5744. {
  5745. "name": "topthink/think-multi-app",
  5746. "version": "v1.1.1",
  5747. "source": {
  5748. "type": "git",
  5749. "url": "https://github.com/top-think/think-multi-app.git",
  5750. "reference": "f93c604d5cfac2b613756273224ee2f88e457b88"
  5751. },
  5752. "dist": {
  5753. "type": "zip",
  5754. "url": "https://api.github.com/repos/top-think/think-multi-app/zipball/f93c604d5cfac2b613756273224ee2f88e457b88",
  5755. "reference": "f93c604d5cfac2b613756273224ee2f88e457b88",
  5756. "shasum": "",
  5757. "mirrors": [
  5758. {
  5759. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5760. "preferred": true
  5761. }
  5762. ]
  5763. },
  5764. "require": {
  5765. "php": ">=7.1.0",
  5766. "topthink/framework": "^6.0|^8.0"
  5767. },
  5768. "type": "library",
  5769. "extra": {
  5770. "think": {
  5771. "services": [
  5772. "think\\app\\Service"
  5773. ]
  5774. }
  5775. },
  5776. "autoload": {
  5777. "psr-4": {
  5778. "think\\app\\": "src"
  5779. }
  5780. },
  5781. "notification-url": "https://packagist.org/downloads/",
  5782. "license": [
  5783. "Apache-2.0"
  5784. ],
  5785. "authors": [
  5786. {
  5787. "name": "liu21st",
  5788. "email": "liu21st@gmail.com"
  5789. }
  5790. ],
  5791. "description": "thinkphp multi app support",
  5792. "support": {
  5793. "issues": "https://github.com/top-think/think-multi-app/issues",
  5794. "source": "https://github.com/top-think/think-multi-app/tree/v1.1.1"
  5795. },
  5796. "time": "2024-11-25T08:52:44+00:00"
  5797. },
  5798. {
  5799. "name": "topthink/think-orm",
  5800. "version": "v2.0.62",
  5801. "source": {
  5802. "type": "git",
  5803. "url": "https://github.com/top-think/think-orm.git",
  5804. "reference": "e53bfea572a133039ad687077120de5521af617f"
  5805. },
  5806. "dist": {
  5807. "type": "zip",
  5808. "url": "https://api.github.com/repos/top-think/think-orm/zipball/e53bfea572a133039ad687077120de5521af617f",
  5809. "reference": "e53bfea572a133039ad687077120de5521af617f",
  5810. "shasum": "",
  5811. "mirrors": [
  5812. {
  5813. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5814. "preferred": true
  5815. }
  5816. ]
  5817. },
  5818. "require": {
  5819. "ext-json": "*",
  5820. "ext-pdo": "*",
  5821. "php": ">=7.1.0",
  5822. "psr/log": "^1.0|^2.0",
  5823. "psr/simple-cache": "^1.0|^2.0",
  5824. "topthink/think-helper": "^3.1"
  5825. },
  5826. "require-dev": {
  5827. "phpunit/phpunit": "^7|^8|^9.5"
  5828. },
  5829. "type": "library",
  5830. "autoload": {
  5831. "files": [
  5832. "stubs/load_stubs.php"
  5833. ],
  5834. "psr-4": {
  5835. "think\\": "src"
  5836. }
  5837. },
  5838. "notification-url": "https://packagist.org/downloads/",
  5839. "license": [
  5840. "Apache-2.0"
  5841. ],
  5842. "authors": [
  5843. {
  5844. "name": "liu21st",
  5845. "email": "liu21st@gmail.com"
  5846. }
  5847. ],
  5848. "description": "think orm",
  5849. "keywords": [
  5850. "database",
  5851. "orm"
  5852. ],
  5853. "support": {
  5854. "issues": "https://github.com/top-think/think-orm/issues",
  5855. "source": "https://github.com/top-think/think-orm/tree/v2.0.62"
  5856. },
  5857. "time": "2024-09-22T06:17:47+00:00"
  5858. },
  5859. {
  5860. "name": "topthink/think-queue",
  5861. "version": "v3.0.12",
  5862. "source": {
  5863. "type": "git",
  5864. "url": "https://github.com/top-think/think-queue.git",
  5865. "reference": "48adee0298a363f497b8ba07628d5b63cf020868"
  5866. },
  5867. "dist": {
  5868. "type": "zip",
  5869. "url": "https://api.github.com/repos/top-think/think-queue/zipball/48adee0298a363f497b8ba07628d5b63cf020868",
  5870. "reference": "48adee0298a363f497b8ba07628d5b63cf020868",
  5871. "shasum": "",
  5872. "mirrors": [
  5873. {
  5874. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5875. "preferred": true
  5876. }
  5877. ]
  5878. },
  5879. "require": {
  5880. "ext-json": "*",
  5881. "nesbot/carbon": ">=2.16",
  5882. "symfony/process": ">=4.2",
  5883. "topthink/framework": "^6.0 || ^8.0"
  5884. },
  5885. "require-dev": {
  5886. "mockery/mockery": "^1.2",
  5887. "phpunit/phpunit": "^6.2",
  5888. "topthink/think-migration": "^3.0"
  5889. },
  5890. "type": "library",
  5891. "extra": {
  5892. "think": {
  5893. "config": {
  5894. "queue": "src/config/queue.php"
  5895. },
  5896. "services": [
  5897. "think\\queue\\Service"
  5898. ]
  5899. }
  5900. },
  5901. "autoload": {
  5902. "files": [
  5903. "src/common.php"
  5904. ],
  5905. "psr-4": {
  5906. "think\\": "src"
  5907. }
  5908. },
  5909. "notification-url": "https://packagist.org/downloads/",
  5910. "license": [
  5911. "Apache-2.0"
  5912. ],
  5913. "authors": [
  5914. {
  5915. "name": "yunwuxin",
  5916. "email": "448901948@qq.com"
  5917. }
  5918. ],
  5919. "description": "The ThinkPHP6 Queue Package",
  5920. "support": {
  5921. "issues": "https://github.com/top-think/think-queue/issues",
  5922. "source": "https://github.com/top-think/think-queue/tree/v3.0.12"
  5923. },
  5924. "time": "2025-03-15T08:30:16+00:00"
  5925. },
  5926. {
  5927. "name": "topthink/think-template",
  5928. "version": "v2.0.10",
  5929. "source": {
  5930. "type": "git",
  5931. "url": "https://github.com/top-think/think-template.git",
  5932. "reference": "2b28c9f787c94f6c22312c9fe97dd3d926c03e1c"
  5933. },
  5934. "dist": {
  5935. "type": "zip",
  5936. "url": "https://api.github.com/repos/top-think/think-template/zipball/2b28c9f787c94f6c22312c9fe97dd3d926c03e1c",
  5937. "reference": "2b28c9f787c94f6c22312c9fe97dd3d926c03e1c",
  5938. "shasum": "",
  5939. "mirrors": [
  5940. {
  5941. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5942. "preferred": true
  5943. }
  5944. ]
  5945. },
  5946. "require": {
  5947. "php": ">=7.1.0",
  5948. "psr/simple-cache": "^1.0"
  5949. },
  5950. "type": "library",
  5951. "autoload": {
  5952. "psr-4": {
  5953. "think\\": "src"
  5954. }
  5955. },
  5956. "notification-url": "https://packagist.org/downloads/",
  5957. "license": [
  5958. "Apache-2.0"
  5959. ],
  5960. "authors": [
  5961. {
  5962. "name": "liu21st",
  5963. "email": "liu21st@gmail.com"
  5964. }
  5965. ],
  5966. "description": "the php template engine",
  5967. "support": {
  5968. "issues": "https://github.com/top-think/think-template/issues",
  5969. "source": "https://github.com/top-think/think-template/tree/v2.0.10"
  5970. },
  5971. "time": "2024-08-12T05:48:57+00:00"
  5972. },
  5973. {
  5974. "name": "topthink/think-view",
  5975. "version": "v1.0.14",
  5976. "source": {
  5977. "type": "git",
  5978. "url": "https://github.com/top-think/think-view.git",
  5979. "reference": "edce0ae2c9551ab65f9e94a222604b0dead3576d"
  5980. },
  5981. "dist": {
  5982. "type": "zip",
  5983. "url": "https://api.github.com/repos/top-think/think-view/zipball/edce0ae2c9551ab65f9e94a222604b0dead3576d",
  5984. "reference": "edce0ae2c9551ab65f9e94a222604b0dead3576d",
  5985. "shasum": "",
  5986. "mirrors": [
  5987. {
  5988. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5989. "preferred": true
  5990. }
  5991. ]
  5992. },
  5993. "require": {
  5994. "php": ">=7.1.0",
  5995. "topthink/think-template": "^2.0"
  5996. },
  5997. "type": "library",
  5998. "autoload": {
  5999. "psr-4": {
  6000. "think\\view\\driver\\": "src"
  6001. }
  6002. },
  6003. "notification-url": "https://packagist.org/downloads/",
  6004. "license": [
  6005. "Apache-2.0"
  6006. ],
  6007. "authors": [
  6008. {
  6009. "name": "liu21st",
  6010. "email": "liu21st@gmail.com"
  6011. }
  6012. ],
  6013. "description": "thinkphp template driver",
  6014. "support": {
  6015. "issues": "https://github.com/top-think/think-view/issues",
  6016. "source": "https://github.com/top-think/think-view/tree/v1.0.14"
  6017. },
  6018. "time": "2019-11-06T11:40:13+00:00"
  6019. },
  6020. {
  6021. "name": "workerman/gateway-worker",
  6022. "version": "v3.1.18",
  6023. "source": {
  6024. "type": "git",
  6025. "url": "https://github.com/walkor/GatewayWorker.git",
  6026. "reference": "8d371770cb0dbd8166b94d6049a6a497c13476df"
  6027. },
  6028. "dist": {
  6029. "type": "zip",
  6030. "url": "https://api.github.com/repos/walkor/GatewayWorker/zipball/8d371770cb0dbd8166b94d6049a6a497c13476df",
  6031. "reference": "8d371770cb0dbd8166b94d6049a6a497c13476df",
  6032. "shasum": "",
  6033. "mirrors": [
  6034. {
  6035. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6036. "preferred": true
  6037. }
  6038. ]
  6039. },
  6040. "require": {
  6041. "php": ">=7.0",
  6042. "workerman/workerman": "^4.0.30"
  6043. },
  6044. "type": "library",
  6045. "extra": {
  6046. "branch-alias": {
  6047. "dev-master": "4.0-dev"
  6048. }
  6049. },
  6050. "autoload": {
  6051. "psr-4": {
  6052. "GatewayWorker\\": "./src"
  6053. }
  6054. },
  6055. "notification-url": "https://packagist.org/downloads/",
  6056. "license": [
  6057. "MIT"
  6058. ],
  6059. "homepage": "http://www.workerman.net",
  6060. "keywords": [
  6061. "communication",
  6062. "distributed"
  6063. ],
  6064. "support": {
  6065. "issues": "https://github.com/walkor/GatewayWorker/issues",
  6066. "source": "https://github.com/walkor/GatewayWorker/tree/v3.1.18"
  6067. },
  6068. "funding": [
  6069. {
  6070. "url": "https://opencollective.com/walkor",
  6071. "type": "open_collective"
  6072. },
  6073. {
  6074. "url": "https://www.patreon.com/walkor",
  6075. "type": "patreon"
  6076. }
  6077. ],
  6078. "time": "2024-12-01T09:51:00+00:00"
  6079. },
  6080. {
  6081. "name": "workerman/gatewayclient",
  6082. "version": "v3.1.0",
  6083. "source": {
  6084. "type": "git",
  6085. "url": "https://github.com/walkor/GatewayClient.git",
  6086. "reference": "a001220da39086566d398c1b46c4fc53fc94aa77"
  6087. },
  6088. "dist": {
  6089. "type": "zip",
  6090. "url": "https://api.github.com/repos/walkor/GatewayClient/zipball/a001220da39086566d398c1b46c4fc53fc94aa77",
  6091. "reference": "a001220da39086566d398c1b46c4fc53fc94aa77",
  6092. "shasum": "",
  6093. "mirrors": [
  6094. {
  6095. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6096. "preferred": true
  6097. }
  6098. ]
  6099. },
  6100. "type": "library",
  6101. "autoload": {
  6102. "psr-4": {
  6103. "GatewayClient\\": "./"
  6104. }
  6105. },
  6106. "notification-url": "https://packagist.org/downloads/",
  6107. "license": [
  6108. "MIT"
  6109. ],
  6110. "homepage": "http://www.workerman.net",
  6111. "support": {
  6112. "issues": "https://github.com/walkor/GatewayClient/issues",
  6113. "source": "https://github.com/walkor/GatewayClient/tree/v3.1.0"
  6114. },
  6115. "time": "2024-03-07T01:56:10+00:00"
  6116. },
  6117. {
  6118. "name": "workerman/workerman",
  6119. "version": "v4.2.1",
  6120. "source": {
  6121. "type": "git",
  6122. "url": "https://github.com/walkor/workerman.git",
  6123. "reference": "cafb5a43d93d7d30a16b32a57948581cca993562"
  6124. },
  6125. "dist": {
  6126. "type": "zip",
  6127. "url": "https://api.github.com/repos/walkor/workerman/zipball/cafb5a43d93d7d30a16b32a57948581cca993562",
  6128. "reference": "cafb5a43d93d7d30a16b32a57948581cca993562",
  6129. "shasum": "",
  6130. "mirrors": [
  6131. {
  6132. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6133. "preferred": true
  6134. }
  6135. ]
  6136. },
  6137. "require": {
  6138. "php": ">=8.0"
  6139. },
  6140. "suggest": {
  6141. "ext-event": "For better performance. "
  6142. },
  6143. "type": "library",
  6144. "autoload": {
  6145. "psr-4": {
  6146. "Workerman\\": "./"
  6147. }
  6148. },
  6149. "notification-url": "https://packagist.org/downloads/",
  6150. "license": [
  6151. "MIT"
  6152. ],
  6153. "authors": [
  6154. {
  6155. "name": "walkor",
  6156. "email": "walkor@workerman.net",
  6157. "homepage": "http://www.workerman.net",
  6158. "role": "Developer"
  6159. }
  6160. ],
  6161. "description": "An asynchronous event driven PHP framework for easily building fast, scalable network applications.",
  6162. "homepage": "http://www.workerman.net",
  6163. "keywords": [
  6164. "asynchronous",
  6165. "event-loop"
  6166. ],
  6167. "support": {
  6168. "email": "walkor@workerman.net",
  6169. "forum": "http://wenda.workerman.net/",
  6170. "issues": "https://github.com/walkor/workerman/issues",
  6171. "source": "https://github.com/walkor/workerman",
  6172. "wiki": "http://doc.workerman.net/"
  6173. },
  6174. "funding": [
  6175. {
  6176. "url": "https://opencollective.com/workerman",
  6177. "type": "open_collective"
  6178. },
  6179. {
  6180. "url": "https://www.patreon.com/walkor",
  6181. "type": "patreon"
  6182. }
  6183. ],
  6184. "time": "2024-11-24T11:45:37+00:00"
  6185. },
  6186. {
  6187. "name": "xiaodi/think-pinyin",
  6188. "version": "v1.0.0",
  6189. "source": {
  6190. "type": "git",
  6191. "url": "https://github.com/edenleung/think-pinyin.git",
  6192. "reference": "4675515d3be42bebff712383c306ff99ef279f97"
  6193. },
  6194. "dist": {
  6195. "type": "zip",
  6196. "url": "https://api.github.com/repos/edenleung/think-pinyin/zipball/4675515d3be42bebff712383c306ff99ef279f97",
  6197. "reference": "4675515d3be42bebff712383c306ff99ef279f97",
  6198. "shasum": "",
  6199. "mirrors": [
  6200. {
  6201. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6202. "preferred": true
  6203. }
  6204. ]
  6205. },
  6206. "require": {
  6207. "overtrue/pinyin": "~4.0",
  6208. "topthink/framework": "6.0.*|5.1.*"
  6209. },
  6210. "type": "library",
  6211. "extra": {
  6212. "think": {
  6213. "services": [
  6214. "xiaodi\\ThinkPinyin\\PinyinService"
  6215. ]
  6216. }
  6217. },
  6218. "autoload": {
  6219. "files": [
  6220. "src/helpers.php"
  6221. ],
  6222. "psr-4": {
  6223. "xiaodi\\ThinkPinyin\\": "src/"
  6224. }
  6225. },
  6226. "notification-url": "https://packagist.org/downloads/",
  6227. "license": [
  6228. "MIT"
  6229. ],
  6230. "authors": [
  6231. {
  6232. "name": "xiaodi",
  6233. "email": "liangjinbiao@live.com"
  6234. }
  6235. ],
  6236. "description": "ThinkPHP 中文转拼音扩展包",
  6237. "keywords": [
  6238. "Chinese",
  6239. "Pinyin",
  6240. "thinkphp"
  6241. ],
  6242. "support": {
  6243. "issues": "https://github.com/edenleung/think-pinyin/issues",
  6244. "source": "https://github.com/edenleung/think-pinyin/tree/v1.0.0"
  6245. },
  6246. "time": "2019-10-25T09:19:32+00:00"
  6247. },
  6248. {
  6249. "name": "xiaodi/think-pullword",
  6250. "version": "v1.2.1",
  6251. "source": {
  6252. "type": "git",
  6253. "url": "https://github.com/friendsofthinkphp/think-pullword.git",
  6254. "reference": "0e6f1ee141090a012dc8876209eaa3cf166c84c4"
  6255. },
  6256. "dist": {
  6257. "type": "zip",
  6258. "url": "https://api.github.com/repos/friendsofthinkphp/think-pullword/zipball/0e6f1ee141090a012dc8876209eaa3cf166c84c4",
  6259. "reference": "0e6f1ee141090a012dc8876209eaa3cf166c84c4",
  6260. "shasum": "",
  6261. "mirrors": [
  6262. {
  6263. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6264. "preferred": true
  6265. }
  6266. ]
  6267. },
  6268. "require": {
  6269. "guzzlehttp/guzzle": "^5.0|^6.0|^7.0",
  6270. "topthink/framework": "6.0.*|5.1.*"
  6271. },
  6272. "type": "library",
  6273. "extra": {
  6274. "think": {
  6275. "services": [
  6276. "PullWord\\PullWordService"
  6277. ]
  6278. }
  6279. },
  6280. "autoload": {
  6281. "files": [
  6282. "src/helper.php"
  6283. ],
  6284. "psr-4": {
  6285. "PullWord\\": "src"
  6286. }
  6287. },
  6288. "notification-url": "https://packagist.org/downloads/",
  6289. "license": [
  6290. "MIT"
  6291. ],
  6292. "authors": [
  6293. {
  6294. "name": "xiaodi",
  6295. "email": "liangjinbiao@live.com"
  6296. }
  6297. ],
  6298. "description": "ThinkPHP 分词/抽词 扩展包",
  6299. "keywords": [
  6300. "php",
  6301. "think-extend",
  6302. "thinkphp"
  6303. ],
  6304. "support": {
  6305. "issues": "https://github.com/friendsofthinkphp/think-pullword/issues",
  6306. "source": "https://github.com/friendsofthinkphp/think-pullword/tree/v1.2.1"
  6307. },
  6308. "time": "2021-01-05T02:48:17+00:00"
  6309. },
  6310. {
  6311. "name": "xxtime/flysystem-aliyun-oss",
  6312. "version": "1.5.0",
  6313. "source": {
  6314. "type": "git",
  6315. "url": "https://github.com/xxtime/flysystem-aliyun-oss.git",
  6316. "reference": "ae873b5919076157b9cfeaf39d2f56d2dbb39ee9"
  6317. },
  6318. "dist": {
  6319. "type": "zip",
  6320. "url": "https://api.github.com/repos/xxtime/flysystem-aliyun-oss/zipball/ae873b5919076157b9cfeaf39d2f56d2dbb39ee9",
  6321. "reference": "ae873b5919076157b9cfeaf39d2f56d2dbb39ee9",
  6322. "shasum": "",
  6323. "mirrors": [
  6324. {
  6325. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6326. "preferred": true
  6327. }
  6328. ]
  6329. },
  6330. "require": {
  6331. "aliyuncs/oss-sdk-php": "~2.3",
  6332. "league/flysystem": "^1.0.49",
  6333. "php": ">=5.5.0"
  6334. },
  6335. "type": "library",
  6336. "autoload": {
  6337. "psr-4": {
  6338. "Xxtime\\Flysystem\\Aliyun\\": "src/"
  6339. }
  6340. },
  6341. "notification-url": "https://packagist.org/downloads/",
  6342. "license": [
  6343. "MIT"
  6344. ],
  6345. "authors": [
  6346. {
  6347. "name": "Joe",
  6348. "email": "joe@xxtime.com",
  6349. "homepage": "https://github.com/xxtime",
  6350. "role": "Developer"
  6351. }
  6352. ],
  6353. "description": "AliYun OSS adapter for flysystem. aliyuncs/oss-sdk-php ~2.3",
  6354. "homepage": "https://github.com/xxtime/flysystem-aliyun-oss",
  6355. "keywords": [
  6356. "Flysystem",
  6357. "aliyun-oss",
  6358. "flysystem-aliyun-oss"
  6359. ],
  6360. "support": {
  6361. "email": "joe@xxtime.com",
  6362. "issues": "https://github.com/xxtime/flysystem-aliyun-oss/issues",
  6363. "source": "https://github.com/xxtime/flysystem-aliyun-oss/tree/1.5.0",
  6364. "wiki": "https://github.com/xxtime"
  6365. },
  6366. "time": "2019-11-12T07:57:34+00:00"
  6367. },
  6368. {
  6369. "name": "yunwuxin/think-cron",
  6370. "version": "v3.0.8",
  6371. "source": {
  6372. "type": "git",
  6373. "url": "https://github.com/yunwuxin/think-cron.git",
  6374. "reference": "e2a06c3ae05b618105448fe84a81685a4f0b1b86"
  6375. },
  6376. "dist": {
  6377. "type": "zip",
  6378. "url": "https://api.github.com/repos/yunwuxin/think-cron/zipball/e2a06c3ae05b618105448fe84a81685a4f0b1b86",
  6379. "reference": "e2a06c3ae05b618105448fe84a81685a4f0b1b86",
  6380. "shasum": "",
  6381. "mirrors": [
  6382. {
  6383. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6384. "preferred": true
  6385. }
  6386. ]
  6387. },
  6388. "require": {
  6389. "dragonmantank/cron-expression": "^3.0",
  6390. "nesbot/carbon": ">=2.28",
  6391. "symfony/process": ">=4.2",
  6392. "topthink/framework": ">=6.0"
  6393. },
  6394. "require-dev": {
  6395. "topthink/think-swoole": "^4.0"
  6396. },
  6397. "type": "library",
  6398. "extra": {
  6399. "think": {
  6400. "config": {
  6401. "cron": "src/config.php"
  6402. },
  6403. "services": [
  6404. "yunwuxin\\cron\\Service"
  6405. ]
  6406. }
  6407. },
  6408. "autoload": {
  6409. "psr-4": {
  6410. "yunwuxin\\cron\\": "src/cron"
  6411. }
  6412. },
  6413. "notification-url": "https://packagist.org/downloads/",
  6414. "license": [
  6415. "Apache-2.0"
  6416. ],
  6417. "authors": [
  6418. {
  6419. "name": "yunwuxin",
  6420. "email": "448901948@qq.com"
  6421. }
  6422. ],
  6423. "description": "计划任务",
  6424. "support": {
  6425. "issues": "https://github.com/yunwuxin/think-cron/issues",
  6426. "source": "https://github.com/yunwuxin/think-cron/tree/v3.0.8"
  6427. },
  6428. "time": "2025-04-23T10:41:24+00:00"
  6429. }
  6430. ],
  6431. "packages-dev": [
  6432. {
  6433. "name": "symfony/polyfill-php72",
  6434. "version": "v1.31.0",
  6435. "source": {
  6436. "type": "git",
  6437. "url": "https://github.com/symfony/polyfill-php72.git",
  6438. "reference": "fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce"
  6439. },
  6440. "dist": {
  6441. "type": "zip",
  6442. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce",
  6443. "reference": "fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce",
  6444. "shasum": "",
  6445. "mirrors": [
  6446. {
  6447. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6448. "preferred": true
  6449. }
  6450. ]
  6451. },
  6452. "require": {
  6453. "php": ">=7.2"
  6454. },
  6455. "type": "metapackage",
  6456. "extra": {
  6457. "thanks": {
  6458. "name": "symfony/polyfill",
  6459. "url": "https://github.com/symfony/polyfill"
  6460. }
  6461. },
  6462. "notification-url": "https://packagist.org/downloads/",
  6463. "license": [
  6464. "MIT"
  6465. ],
  6466. "authors": [
  6467. {
  6468. "name": "Nicolas Grekas",
  6469. "email": "p@tchwork.com"
  6470. },
  6471. {
  6472. "name": "Symfony Community",
  6473. "homepage": "https://symfony.com/contributors"
  6474. }
  6475. ],
  6476. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  6477. "homepage": "https://symfony.com",
  6478. "keywords": [
  6479. "compatibility",
  6480. "polyfill",
  6481. "portable",
  6482. "shim"
  6483. ],
  6484. "support": {
  6485. "source": "https://github.com/symfony/polyfill-php72/tree/v1.31.0"
  6486. },
  6487. "funding": [
  6488. {
  6489. "url": "https://symfony.com/sponsor",
  6490. "type": "custom"
  6491. },
  6492. {
  6493. "url": "https://github.com/fabpot",
  6494. "type": "github"
  6495. },
  6496. {
  6497. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6498. "type": "tidelift"
  6499. }
  6500. ],
  6501. "time": "2024-09-09T11:45:10+00:00"
  6502. },
  6503. {
  6504. "name": "symfony/var-dumper",
  6505. "version": "v4.4.47",
  6506. "source": {
  6507. "type": "git",
  6508. "url": "https://github.com/symfony/var-dumper.git",
  6509. "reference": "1069c7a3fca74578022fab6f81643248d02f8e63"
  6510. },
  6511. "dist": {
  6512. "type": "zip",
  6513. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/1069c7a3fca74578022fab6f81643248d02f8e63",
  6514. "reference": "1069c7a3fca74578022fab6f81643248d02f8e63",
  6515. "shasum": "",
  6516. "mirrors": [
  6517. {
  6518. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6519. "preferred": true
  6520. }
  6521. ]
  6522. },
  6523. "require": {
  6524. "php": ">=7.1.3",
  6525. "symfony/polyfill-mbstring": "~1.0",
  6526. "symfony/polyfill-php72": "~1.5",
  6527. "symfony/polyfill-php80": "^1.16"
  6528. },
  6529. "conflict": {
  6530. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  6531. "symfony/console": "<3.4"
  6532. },
  6533. "require-dev": {
  6534. "ext-iconv": "*",
  6535. "symfony/console": "^3.4|^4.0|^5.0",
  6536. "symfony/process": "^4.4|^5.0",
  6537. "twig/twig": "^1.43|^2.13|^3.0.4"
  6538. },
  6539. "suggest": {
  6540. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  6541. "ext-intl": "To show region name in time zone dump",
  6542. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  6543. },
  6544. "bin": [
  6545. "Resources/bin/var-dump-server"
  6546. ],
  6547. "type": "library",
  6548. "autoload": {
  6549. "files": [
  6550. "Resources/functions/dump.php"
  6551. ],
  6552. "psr-4": {
  6553. "Symfony\\Component\\VarDumper\\": ""
  6554. },
  6555. "exclude-from-classmap": [
  6556. "/Tests/"
  6557. ]
  6558. },
  6559. "notification-url": "https://packagist.org/downloads/",
  6560. "license": [
  6561. "MIT"
  6562. ],
  6563. "authors": [
  6564. {
  6565. "name": "Nicolas Grekas",
  6566. "email": "p@tchwork.com"
  6567. },
  6568. {
  6569. "name": "Symfony Community",
  6570. "homepage": "https://symfony.com/contributors"
  6571. }
  6572. ],
  6573. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  6574. "homepage": "https://symfony.com",
  6575. "keywords": [
  6576. "debug",
  6577. "dump"
  6578. ],
  6579. "support": {
  6580. "source": "https://github.com/symfony/var-dumper/tree/v4.4.47"
  6581. },
  6582. "funding": [
  6583. {
  6584. "url": "https://symfony.com/sponsor",
  6585. "type": "custom"
  6586. },
  6587. {
  6588. "url": "https://github.com/fabpot",
  6589. "type": "github"
  6590. },
  6591. {
  6592. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6593. "type": "tidelift"
  6594. }
  6595. ],
  6596. "time": "2022-10-03T15:15:11+00:00"
  6597. },
  6598. {
  6599. "name": "topthink/think-trace",
  6600. "version": "v1.6",
  6601. "source": {
  6602. "type": "git",
  6603. "url": "https://github.com/top-think/think-trace.git",
  6604. "reference": "136cd5d97e8bdb780e4b5c1637c588ed7ca3e142"
  6605. },
  6606. "dist": {
  6607. "type": "zip",
  6608. "url": "https://api.github.com/repos/top-think/think-trace/zipball/136cd5d97e8bdb780e4b5c1637c588ed7ca3e142",
  6609. "reference": "136cd5d97e8bdb780e4b5c1637c588ed7ca3e142",
  6610. "shasum": "",
  6611. "mirrors": [
  6612. {
  6613. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6614. "preferred": true
  6615. }
  6616. ]
  6617. },
  6618. "require": {
  6619. "php": ">=7.1.0",
  6620. "topthink/framework": "^6.0|^8.0"
  6621. },
  6622. "type": "library",
  6623. "extra": {
  6624. "think": {
  6625. "config": {
  6626. "trace": "src/config.php"
  6627. },
  6628. "services": [
  6629. "think\\trace\\Service"
  6630. ]
  6631. }
  6632. },
  6633. "autoload": {
  6634. "psr-4": {
  6635. "think\\trace\\": "src"
  6636. }
  6637. },
  6638. "notification-url": "https://packagist.org/downloads/",
  6639. "license": [
  6640. "Apache-2.0"
  6641. ],
  6642. "authors": [
  6643. {
  6644. "name": "liu21st",
  6645. "email": "liu21st@gmail.com"
  6646. }
  6647. ],
  6648. "description": "thinkphp debug trace",
  6649. "support": {
  6650. "issues": "https://github.com/top-think/think-trace/issues",
  6651. "source": "https://github.com/top-think/think-trace/tree/v1.6"
  6652. },
  6653. "time": "2023-02-07T08:36:32+00:00"
  6654. }
  6655. ],
  6656. "aliases": [],
  6657. "minimum-stability": "stable",
  6658. "stability-flags": [],
  6659. "prefer-stable": false,
  6660. "prefer-lowest": false,
  6661. "platform": {
  6662. "php": ">=7.1.0"
  6663. },
  6664. "platform-dev": [],
  6665. "plugin-api-version": "2.3.0"
  6666. }