composer.lock 278 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726
  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": "17d9a2248d075998bec6a53188ba4224",
  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": "alibabacloud/credentials",
  70. "version": "1.2.0",
  71. "source": {
  72. "type": "git",
  73. "url": "https://github.com/aliyun/credentials-php.git",
  74. "reference": "ebcda2e628180b4df235b46a86e1d014c561f5d9"
  75. },
  76. "dist": {
  77. "type": "zip",
  78. "url": "https://api.github.com/repos/aliyun/credentials-php/zipball/ebcda2e628180b4df235b46a86e1d014c561f5d9",
  79. "reference": "ebcda2e628180b4df235b46a86e1d014c561f5d9",
  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. "adbario/php-dot-notation": "^2.2",
  90. "alibabacloud/tea": "^3.0",
  91. "ext-curl": "*",
  92. "ext-json": "*",
  93. "ext-libxml": "*",
  94. "ext-mbstring": "*",
  95. "ext-openssl": "*",
  96. "ext-simplexml": "*",
  97. "ext-xmlwriter": "*",
  98. "guzzlehttp/guzzle": "^6.3|^7.0",
  99. "php": ">=5.6"
  100. },
  101. "require-dev": {
  102. "composer/composer": "^1.8",
  103. "drupal/coder": "^8.3",
  104. "ext-dom": "*",
  105. "ext-pcre": "*",
  106. "ext-sockets": "*",
  107. "ext-spl": "*",
  108. "mikey179/vfsstream": "^1.6",
  109. "monolog/monolog": "^1.24",
  110. "phpunit/phpunit": "^5.7|^6.6|^9.3",
  111. "psr/cache": "^1.0",
  112. "symfony/dotenv": "^3.4",
  113. "symfony/var-dumper": "^3.4"
  114. },
  115. "suggest": {
  116. "ext-sockets": "To use client-side monitoring"
  117. },
  118. "type": "library",
  119. "autoload": {
  120. "psr-4": {
  121. "AlibabaCloud\\Credentials\\": "src"
  122. }
  123. },
  124. "notification-url": "https://packagist.org/downloads/",
  125. "license": [
  126. "Apache-2.0"
  127. ],
  128. "authors": [
  129. {
  130. "name": "Alibaba Cloud SDK",
  131. "email": "sdk-team@alibabacloud.com",
  132. "homepage": "http://www.alibabacloud.com"
  133. }
  134. ],
  135. "description": "Alibaba Cloud Credentials for PHP",
  136. "homepage": "https://www.alibabacloud.com/",
  137. "keywords": [
  138. "alibaba",
  139. "alibabacloud",
  140. "aliyun",
  141. "client",
  142. "cloud",
  143. "credentials",
  144. "library",
  145. "sdk",
  146. "tool"
  147. ],
  148. "support": {
  149. "issues": "https://github.com/aliyun/credentials-php/issues",
  150. "source": "https://github.com/aliyun/credentials-php"
  151. },
  152. "time": "2024-10-16T13:29:17+00:00"
  153. },
  154. {
  155. "name": "alibabacloud/darabonba-openapi",
  156. "version": "0.2.13",
  157. "source": {
  158. "type": "git",
  159. "url": "https://github.com/alibabacloud-sdk-php/darabonba-openapi.git",
  160. "reference": "0213396384e2c064eefd614f3dd53636a63f987f"
  161. },
  162. "dist": {
  163. "type": "zip",
  164. "url": "https://api.github.com/repos/alibabacloud-sdk-php/darabonba-openapi/zipball/0213396384e2c064eefd614f3dd53636a63f987f",
  165. "reference": "0213396384e2c064eefd614f3dd53636a63f987f",
  166. "shasum": "",
  167. "mirrors": [
  168. {
  169. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  170. "preferred": true
  171. }
  172. ]
  173. },
  174. "require": {
  175. "alibabacloud/credentials": "^1.1",
  176. "alibabacloud/gateway-spi": "^1",
  177. "alibabacloud/openapi-util": "^0.1.10|^0.2.1",
  178. "alibabacloud/tea-utils": "^0.2.21",
  179. "alibabacloud/tea-xml": "^0.2",
  180. "php": ">5.5"
  181. },
  182. "type": "library",
  183. "autoload": {
  184. "psr-4": {
  185. "Darabonba\\OpenApi\\": "src"
  186. }
  187. },
  188. "notification-url": "https://packagist.org/downloads/",
  189. "license": [
  190. "Apache-2.0"
  191. ],
  192. "authors": [
  193. {
  194. "name": "Alibaba Cloud SDK",
  195. "email": "sdk-team@alibabacloud.com"
  196. }
  197. ],
  198. "description": "Alibaba Cloud OpenApi Client",
  199. "support": {
  200. "issues": "https://github.com/alibabacloud-sdk-php/darabonba-openapi/issues",
  201. "source": "https://github.com/alibabacloud-sdk-php/darabonba-openapi/tree/0.2.13"
  202. },
  203. "time": "2024-07-15T13:11:36+00:00"
  204. },
  205. {
  206. "name": "alibabacloud/dysmsapi-20170525",
  207. "version": "3.1.0",
  208. "source": {
  209. "type": "git",
  210. "url": "https://github.com/alibabacloud-sdk-php/Dysmsapi-20170525.git",
  211. "reference": "5f779cf8d6d8807b9835bff8d058dbab6d59bbf1"
  212. },
  213. "dist": {
  214. "type": "zip",
  215. "url": "https://api.github.com/repos/alibabacloud-sdk-php/Dysmsapi-20170525/zipball/5f779cf8d6d8807b9835bff8d058dbab6d59bbf1",
  216. "reference": "5f779cf8d6d8807b9835bff8d058dbab6d59bbf1",
  217. "shasum": "",
  218. "mirrors": [
  219. {
  220. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  221. "preferred": true
  222. }
  223. ]
  224. },
  225. "require": {
  226. "alibabacloud/darabonba-openapi": "^0.2.13",
  227. "alibabacloud/endpoint-util": "^0.1.0",
  228. "alibabacloud/openapi-util": "^0.1.10|^0.2.1",
  229. "alibabacloud/tea-utils": "^0.2.21",
  230. "php": ">5.5"
  231. },
  232. "type": "library",
  233. "autoload": {
  234. "psr-4": {
  235. "AlibabaCloud\\SDK\\Dysmsapi\\V20170525\\": "src"
  236. }
  237. },
  238. "notification-url": "https://packagist.org/downloads/",
  239. "license": [
  240. "Apache-2.0"
  241. ],
  242. "authors": [
  243. {
  244. "name": "Alibaba Cloud SDK",
  245. "email": "sdk-team@alibabacloud.com"
  246. }
  247. ],
  248. "description": "Alibaba Cloud Dysmsapi (20170525) SDK Library for PHP",
  249. "support": {
  250. "source": "https://github.com/alibabacloud-sdk-php/Dysmsapi-20170525/tree/3.1.0"
  251. },
  252. "time": "2024-10-24T17:19:34+00:00"
  253. },
  254. {
  255. "name": "alibabacloud/endpoint-util",
  256. "version": "0.1.1",
  257. "source": {
  258. "type": "git",
  259. "url": "https://github.com/alibabacloud-sdk-php/endpoint-util.git",
  260. "reference": "f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5"
  261. },
  262. "dist": {
  263. "type": "zip",
  264. "url": "https://api.github.com/repos/alibabacloud-sdk-php/endpoint-util/zipball/f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5",
  265. "reference": "f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5",
  266. "shasum": "",
  267. "mirrors": [
  268. {
  269. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  270. "preferred": true
  271. }
  272. ]
  273. },
  274. "require": {
  275. "php": ">5.5"
  276. },
  277. "require-dev": {
  278. "phpunit/phpunit": "^4.8.35|^5.4.3"
  279. },
  280. "type": "library",
  281. "autoload": {
  282. "psr-4": {
  283. "AlibabaCloud\\Endpoint\\": "src"
  284. }
  285. },
  286. "notification-url": "https://packagist.org/downloads/",
  287. "license": [
  288. "Apache-2.0"
  289. ],
  290. "authors": [
  291. {
  292. "name": "Alibaba Cloud SDK",
  293. "email": "sdk-team@alibabacloud.com"
  294. }
  295. ],
  296. "description": "Alibaba Cloud Endpoint Library for PHP",
  297. "support": {
  298. "source": "https://github.com/alibabacloud-sdk-php/endpoint-util/tree/0.1.1"
  299. },
  300. "time": "2020-06-04T10:57:15+00:00"
  301. },
  302. {
  303. "name": "alibabacloud/gateway-spi",
  304. "version": "1.0.0",
  305. "source": {
  306. "type": "git",
  307. "url": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi.git",
  308. "reference": "7440f77750c329d8ab252db1d1d967314ccd1fcb"
  309. },
  310. "dist": {
  311. "type": "zip",
  312. "url": "https://api.github.com/repos/alibabacloud-sdk-php/alibabacloud-gateway-spi/zipball/7440f77750c329d8ab252db1d1d967314ccd1fcb",
  313. "reference": "7440f77750c329d8ab252db1d1d967314ccd1fcb",
  314. "shasum": "",
  315. "mirrors": [
  316. {
  317. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  318. "preferred": true
  319. }
  320. ]
  321. },
  322. "require": {
  323. "alibabacloud/credentials": "^1.1",
  324. "php": ">5.5"
  325. },
  326. "type": "library",
  327. "autoload": {
  328. "psr-4": {
  329. "Darabonba\\GatewaySpi\\": "src"
  330. }
  331. },
  332. "notification-url": "https://packagist.org/downloads/",
  333. "license": [
  334. "Apache-2.0"
  335. ],
  336. "authors": [
  337. {
  338. "name": "Alibaba Cloud SDK",
  339. "email": "sdk-team@alibabacloud.com"
  340. }
  341. ],
  342. "description": "Alibaba Cloud Gateway SPI Client",
  343. "support": {
  344. "source": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi/tree/1.0.0"
  345. },
  346. "time": "2022-07-14T05:31:35+00:00"
  347. },
  348. {
  349. "name": "alibabacloud/openapi-util",
  350. "version": "0.2.1",
  351. "source": {
  352. "type": "git",
  353. "url": "https://github.com/alibabacloud-sdk-php/openapi-util.git",
  354. "reference": "f31f7bcd835e08ca24b6b8ba33637eb4eceb093a"
  355. },
  356. "dist": {
  357. "type": "zip",
  358. "url": "https://api.github.com/repos/alibabacloud-sdk-php/openapi-util/zipball/f31f7bcd835e08ca24b6b8ba33637eb4eceb093a",
  359. "reference": "f31f7bcd835e08ca24b6b8ba33637eb4eceb093a",
  360. "shasum": "",
  361. "mirrors": [
  362. {
  363. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  364. "preferred": true
  365. }
  366. ]
  367. },
  368. "require": {
  369. "alibabacloud/tea": "^3.1",
  370. "alibabacloud/tea-utils": "^0.2",
  371. "lizhichao/one-sm": "^1.5",
  372. "php": ">5.5"
  373. },
  374. "require-dev": {
  375. "phpunit/phpunit": "*"
  376. },
  377. "type": "library",
  378. "autoload": {
  379. "psr-4": {
  380. "AlibabaCloud\\OpenApiUtil\\": "src"
  381. }
  382. },
  383. "notification-url": "https://packagist.org/downloads/",
  384. "license": [
  385. "Apache-2.0"
  386. ],
  387. "authors": [
  388. {
  389. "name": "Alibaba Cloud SDK",
  390. "email": "sdk-team@alibabacloud.com"
  391. }
  392. ],
  393. "description": "Alibaba Cloud OpenApi Util",
  394. "support": {
  395. "issues": "https://github.com/alibabacloud-sdk-php/openapi-util/issues",
  396. "source": "https://github.com/alibabacloud-sdk-php/openapi-util/tree/0.2.1"
  397. },
  398. "time": "2023-01-10T09:10:10+00:00"
  399. },
  400. {
  401. "name": "alibabacloud/tea",
  402. "version": "3.2.1",
  403. "source": {
  404. "type": "git",
  405. "url": "https://github.com/aliyun/tea-php.git",
  406. "reference": "1619cb96c158384f72b873e1f85de8b299c9c367"
  407. },
  408. "dist": {
  409. "type": "zip",
  410. "url": "https://api.github.com/repos/aliyun/tea-php/zipball/1619cb96c158384f72b873e1f85de8b299c9c367",
  411. "reference": "1619cb96c158384f72b873e1f85de8b299c9c367",
  412. "shasum": "",
  413. "mirrors": [
  414. {
  415. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  416. "preferred": true
  417. }
  418. ]
  419. },
  420. "require": {
  421. "adbario/php-dot-notation": "^2.4",
  422. "ext-curl": "*",
  423. "ext-json": "*",
  424. "ext-libxml": "*",
  425. "ext-mbstring": "*",
  426. "ext-openssl": "*",
  427. "ext-simplexml": "*",
  428. "ext-xmlwriter": "*",
  429. "guzzlehttp/guzzle": "^6.3|^7.0",
  430. "php": ">=5.5"
  431. },
  432. "require-dev": {
  433. "phpunit/phpunit": "*",
  434. "symfony/dotenv": "^3.4",
  435. "symfony/var-dumper": "^3.4"
  436. },
  437. "suggest": {
  438. "ext-sockets": "To use client-side monitoring"
  439. },
  440. "type": "library",
  441. "autoload": {
  442. "psr-4": {
  443. "AlibabaCloud\\Tea\\": "src"
  444. }
  445. },
  446. "notification-url": "https://packagist.org/downloads/",
  447. "license": [
  448. "Apache-2.0"
  449. ],
  450. "authors": [
  451. {
  452. "name": "Alibaba Cloud SDK",
  453. "email": "sdk-team@alibabacloud.com",
  454. "homepage": "http://www.alibabacloud.com"
  455. }
  456. ],
  457. "description": "Client of Tea for PHP",
  458. "homepage": "https://www.alibabacloud.com/",
  459. "keywords": [
  460. "alibabacloud",
  461. "client",
  462. "cloud",
  463. "tea"
  464. ],
  465. "support": {
  466. "issues": "https://github.com/aliyun/tea-php/issues",
  467. "source": "https://github.com/aliyun/tea-php"
  468. },
  469. "time": "2023-05-16T06:43:41+00:00"
  470. },
  471. {
  472. "name": "alibabacloud/tea-fileform",
  473. "version": "0.3.4",
  474. "source": {
  475. "type": "git",
  476. "url": "https://github.com/alibabacloud-sdk-php/tea-fileform.git",
  477. "reference": "4bf0c75a045c8115aa8cb1a394bd08d8bb833181"
  478. },
  479. "dist": {
  480. "type": "zip",
  481. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-fileform/zipball/4bf0c75a045c8115aa8cb1a394bd08d8bb833181",
  482. "reference": "4bf0c75a045c8115aa8cb1a394bd08d8bb833181",
  483. "shasum": "",
  484. "mirrors": [
  485. {
  486. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  487. "preferred": true
  488. }
  489. ]
  490. },
  491. "require": {
  492. "alibabacloud/tea": "^3.0",
  493. "php": ">5.5"
  494. },
  495. "require-dev": {
  496. "phpunit/phpunit": "^4.8.35|^5.4.3"
  497. },
  498. "type": "library",
  499. "autoload": {
  500. "psr-4": {
  501. "AlibabaCloud\\Tea\\FileForm\\": "src"
  502. }
  503. },
  504. "notification-url": "https://packagist.org/downloads/",
  505. "license": [
  506. "Apache-2.0"
  507. ],
  508. "authors": [
  509. {
  510. "name": "Alibaba Cloud SDK",
  511. "email": "sdk-team@alibabacloud.com"
  512. }
  513. ],
  514. "description": "Alibaba Cloud Tea File Library for PHP",
  515. "support": {
  516. "issues": "https://github.com/alibabacloud-sdk-php/tea-fileform/issues",
  517. "source": "https://github.com/alibabacloud-sdk-php/tea-fileform/tree/0.3.4"
  518. },
  519. "time": "2020-12-01T07:24:35+00:00"
  520. },
  521. {
  522. "name": "alibabacloud/tea-utils",
  523. "version": "0.2.21",
  524. "source": {
  525. "type": "git",
  526. "url": "https://github.com/alibabacloud-sdk-php/tea-utils.git",
  527. "reference": "5039e45714c6456186d267f5d81a4b260a652495"
  528. },
  529. "dist": {
  530. "type": "zip",
  531. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-utils/zipball/5039e45714c6456186d267f5d81a4b260a652495",
  532. "reference": "5039e45714c6456186d267f5d81a4b260a652495",
  533. "shasum": "",
  534. "mirrors": [
  535. {
  536. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  537. "preferred": true
  538. }
  539. ]
  540. },
  541. "require": {
  542. "alibabacloud/tea": "^3.1",
  543. "php": ">5.5"
  544. },
  545. "type": "library",
  546. "autoload": {
  547. "psr-4": {
  548. "AlibabaCloud\\Tea\\Utils\\": "src"
  549. }
  550. },
  551. "notification-url": "https://packagist.org/downloads/",
  552. "license": [
  553. "Apache-2.0"
  554. ],
  555. "authors": [
  556. {
  557. "name": "Alibaba Cloud SDK",
  558. "email": "sdk-team@alibabacloud.com"
  559. }
  560. ],
  561. "description": "Alibaba Cloud Tea Utils for PHP",
  562. "support": {
  563. "issues": "https://github.com/aliyun/tea-util/issues",
  564. "source": "https://github.com/aliyun/tea-util"
  565. },
  566. "time": "2024-07-05T06:05:54+00:00"
  567. },
  568. {
  569. "name": "alibabacloud/tea-xml",
  570. "version": "0.2.4",
  571. "source": {
  572. "type": "git",
  573. "url": "https://github.com/alibabacloud-sdk-php/tea-xml.git",
  574. "reference": "3e0c000bf536224eebbac913c371bef174c0a16a"
  575. },
  576. "dist": {
  577. "type": "zip",
  578. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-xml/zipball/3e0c000bf536224eebbac913c371bef174c0a16a",
  579. "reference": "3e0c000bf536224eebbac913c371bef174c0a16a",
  580. "shasum": "",
  581. "mirrors": [
  582. {
  583. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  584. "preferred": true
  585. }
  586. ]
  587. },
  588. "require": {
  589. "php": ">5.5"
  590. },
  591. "require-dev": {
  592. "phpunit/phpunit": "*",
  593. "symfony/var-dumper": "*"
  594. },
  595. "type": "library",
  596. "autoload": {
  597. "psr-4": {
  598. "AlibabaCloud\\Tea\\XML\\": "src"
  599. }
  600. },
  601. "notification-url": "https://packagist.org/downloads/",
  602. "license": [
  603. "Apache-2.0"
  604. ],
  605. "authors": [
  606. {
  607. "name": "Alibaba Cloud SDK",
  608. "email": "sdk-team@alibabacloud.com"
  609. }
  610. ],
  611. "description": "Alibaba Cloud Tea XML Library for PHP",
  612. "support": {
  613. "source": "https://github.com/alibabacloud-sdk-php/tea-xml/tree/0.2.4"
  614. },
  615. "time": "2022-08-02T04:12:58+00:00"
  616. },
  617. {
  618. "name": "alipaysdk/easysdk",
  619. "version": "2.2.3",
  620. "source": {
  621. "type": "git",
  622. "url": "https://github.com/alipay/alipay-easysdk.git",
  623. "reference": "c6008839a22a5fca08e9f8536730f7abfed522d5"
  624. },
  625. "dist": {
  626. "type": "zip",
  627. "url": "https://api.github.com/repos/alipay/alipay-easysdk/zipball/c6008839a22a5fca08e9f8536730f7abfed522d5",
  628. "reference": "c6008839a22a5fca08e9f8536730f7abfed522d5",
  629. "shasum": ""
  630. },
  631. "require": {
  632. "alibabacloud/tea": "^3.1",
  633. "alibabacloud/tea-fileform": "^0.3.2",
  634. "ext-ctype": "*",
  635. "ext-curl": "*",
  636. "ext-dom": "*",
  637. "ext-fileinfo": "*",
  638. "ext-json": "*",
  639. "ext-libxml": "*",
  640. "ext-mbstring": "*",
  641. "ext-openssl": "*",
  642. "ext-simplexml": "*",
  643. "ext-xmlwriter": "*",
  644. "guzzlehttp/guzzle": ">=6.3",
  645. "php": ">=7.0"
  646. },
  647. "require-dev": {
  648. "phpunit/phpunit": "^7.5"
  649. },
  650. "type": "library",
  651. "autoload": {
  652. "psr-4": {
  653. "Alipay\\EasySDK\\": "php/src/"
  654. }
  655. },
  656. "notification-url": "https://packagist.org/downloads/",
  657. "license": [
  658. "Apache-2.0"
  659. ],
  660. "authors": [
  661. {
  662. "name": "junying.wjy",
  663. "email": "junying.wjy@antfin.com"
  664. }
  665. ],
  666. "description": "支付宝官方 Alipay Easy SDK",
  667. "support": {
  668. "source": "https://github.com/alipay/alipay-easysdk/tree/v2.2.3"
  669. },
  670. "time": "2022-11-28T14:04:57+00:00"
  671. },
  672. {
  673. "name": "aliyuncs/oss-sdk-php",
  674. "version": "v2.7.2",
  675. "source": {
  676. "type": "git",
  677. "url": "https://github.com/aliyun/aliyun-oss-php-sdk.git",
  678. "reference": "483dd0b8bff5d47f0e4ffc99f6077a295c5ccbb5"
  679. },
  680. "dist": {
  681. "type": "zip",
  682. "url": "https://api.github.com/repos/aliyun/aliyun-oss-php-sdk/zipball/483dd0b8bff5d47f0e4ffc99f6077a295c5ccbb5",
  683. "reference": "483dd0b8bff5d47f0e4ffc99f6077a295c5ccbb5",
  684. "shasum": "",
  685. "mirrors": [
  686. {
  687. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  688. "preferred": true
  689. }
  690. ]
  691. },
  692. "require": {
  693. "php": ">=5.3"
  694. },
  695. "require-dev": {
  696. "php-coveralls/php-coveralls": "*",
  697. "phpunit/phpunit": "*"
  698. },
  699. "type": "library",
  700. "autoload": {
  701. "psr-4": {
  702. "OSS\\": "src/OSS"
  703. }
  704. },
  705. "notification-url": "https://packagist.org/downloads/",
  706. "license": [
  707. "MIT"
  708. ],
  709. "authors": [
  710. {
  711. "name": "Aliyuncs",
  712. "homepage": "http://www.aliyun.com"
  713. }
  714. ],
  715. "description": "Aliyun OSS SDK for PHP",
  716. "homepage": "http://www.aliyun.com/product/oss/",
  717. "support": {
  718. "issues": "https://github.com/aliyun/aliyun-oss-php-sdk/issues",
  719. "source": "https://github.com/aliyun/aliyun-oss-php-sdk/tree/v2.7.2"
  720. },
  721. "time": "2024-10-28T10:41:12+00:00"
  722. },
  723. {
  724. "name": "async-aws/core",
  725. "version": "1.21.0",
  726. "source": {
  727. "type": "git",
  728. "url": "https://github.com/async-aws/core.git",
  729. "reference": "eb23cc59515d8d529163313bbf9e02f666e515ef"
  730. },
  731. "dist": {
  732. "type": "zip",
  733. "url": "https://api.github.com/repos/async-aws/core/zipball/eb23cc59515d8d529163313bbf9e02f666e515ef",
  734. "reference": "eb23cc59515d8d529163313bbf9e02f666e515ef",
  735. "shasum": "",
  736. "mirrors": [
  737. {
  738. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  739. "preferred": true
  740. }
  741. ]
  742. },
  743. "require": {
  744. "ext-hash": "*",
  745. "ext-json": "*",
  746. "ext-simplexml": "*",
  747. "php": "^7.2.5 || ^8.0",
  748. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  749. "psr/log": "^1.0 || ^2.0 || ^3.0",
  750. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  751. "symfony/http-client": "^4.4.16 || ^5.1.7 || ^6.0 || ^7.0",
  752. "symfony/http-client-contracts": "^1.1.8 || ^2.0 || ^3.0",
  753. "symfony/service-contracts": "^1.0 || ^2.0 || ^3.0"
  754. },
  755. "conflict": {
  756. "async-aws/s3": "<1.1",
  757. "symfony/http-client": "5.2.0"
  758. },
  759. "type": "library",
  760. "extra": {
  761. "branch-alias": {
  762. "dev-master": "1.21-dev"
  763. }
  764. },
  765. "autoload": {
  766. "psr-4": {
  767. "AsyncAws\\Core\\": "src"
  768. }
  769. },
  770. "notification-url": "https://packagist.org/downloads/",
  771. "license": [
  772. "MIT"
  773. ],
  774. "description": "Core package to integrate with AWS. This is a lightweight AWS SDK provider by AsyncAws.",
  775. "keywords": [
  776. "amazon",
  777. "async-aws",
  778. "aws",
  779. "sdk",
  780. "sts"
  781. ],
  782. "support": {
  783. "source": "https://github.com/async-aws/core/tree/1.21.0"
  784. },
  785. "funding": [
  786. {
  787. "url": "https://github.com/jderusse",
  788. "type": "github"
  789. },
  790. {
  791. "url": "https://github.com/nyholm",
  792. "type": "github"
  793. }
  794. ],
  795. "time": "2024-02-27T14:44:12+00:00"
  796. },
  797. {
  798. "name": "bacon/bacon-qr-code",
  799. "version": "2.0.8",
  800. "source": {
  801. "type": "git",
  802. "url": "https://github.com/Bacon/BaconQrCode.git",
  803. "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22"
  804. },
  805. "dist": {
  806. "type": "zip",
  807. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/8674e51bb65af933a5ffaf1c308a660387c35c22",
  808. "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22",
  809. "shasum": "",
  810. "mirrors": [
  811. {
  812. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  813. "preferred": true
  814. }
  815. ]
  816. },
  817. "require": {
  818. "dasprid/enum": "^1.0.3",
  819. "ext-iconv": "*",
  820. "php": "^7.1 || ^8.0"
  821. },
  822. "require-dev": {
  823. "phly/keep-a-changelog": "^2.1",
  824. "phpunit/phpunit": "^7 | ^8 | ^9",
  825. "spatie/phpunit-snapshot-assertions": "^4.2.9",
  826. "squizlabs/php_codesniffer": "^3.4"
  827. },
  828. "suggest": {
  829. "ext-imagick": "to generate QR code images"
  830. },
  831. "type": "library",
  832. "autoload": {
  833. "psr-4": {
  834. "BaconQrCode\\": "src/"
  835. }
  836. },
  837. "notification-url": "https://packagist.org/downloads/",
  838. "license": [
  839. "BSD-2-Clause"
  840. ],
  841. "authors": [
  842. {
  843. "name": "Ben Scholzen 'DASPRiD'",
  844. "email": "mail@dasprids.de",
  845. "homepage": "https://dasprids.de/",
  846. "role": "Developer"
  847. }
  848. ],
  849. "description": "BaconQrCode is a QR code generator for PHP.",
  850. "homepage": "https://github.com/Bacon/BaconQrCode",
  851. "support": {
  852. "issues": "https://github.com/Bacon/BaconQrCode/issues",
  853. "source": "https://github.com/Bacon/BaconQrCode/tree/2.0.8"
  854. },
  855. "time": "2022-12-07T17:46:57+00:00"
  856. },
  857. {
  858. "name": "bitwasp/bech32",
  859. "version": "v0.0.1",
  860. "source": {
  861. "type": "git",
  862. "url": "https://github.com/Bit-Wasp/bech32.git",
  863. "reference": "e1ea58c848a4ec59d81b697b3dfe9cc99968d0e7"
  864. },
  865. "dist": {
  866. "type": "zip",
  867. "url": "https://api.github.com/repos/Bit-Wasp/bech32/zipball/e1ea58c848a4ec59d81b697b3dfe9cc99968d0e7",
  868. "reference": "e1ea58c848a4ec59d81b697b3dfe9cc99968d0e7",
  869. "shasum": ""
  870. },
  871. "require-dev": {
  872. "phpunit/phpunit": "^5.4.0",
  873. "squizlabs/php_codesniffer": "^2.0.0"
  874. },
  875. "type": "library",
  876. "autoload": {
  877. "files": [
  878. "src/bech32.php"
  879. ],
  880. "psr-4": {
  881. "BitWasp\\Bech32\\": "src/"
  882. }
  883. },
  884. "notification-url": "https://packagist.org/downloads/",
  885. "license": [
  886. "Unlicense"
  887. ],
  888. "authors": [
  889. {
  890. "name": "Thomas Kerin",
  891. "homepage": "https://thomaskerin.io",
  892. "role": "Author"
  893. }
  894. ],
  895. "description": "Pure (no dependencies) implementation of bech32",
  896. "homepage": "https://github.com/bit-wasp/bech32",
  897. "support": {
  898. "issues": "https://github.com/Bit-Wasp/bech32/issues",
  899. "source": "https://github.com/Bit-Wasp/bech32/tree/more-tests"
  900. },
  901. "time": "2018-02-05T22:23:47+00:00"
  902. },
  903. {
  904. "name": "bitwasp/bitcoin",
  905. "version": "v1.0.4",
  906. "source": {
  907. "type": "git",
  908. "url": "https://github.com/Bit-Wasp/bitcoin-php.git",
  909. "reference": "65ff8384a15e805effcf600fb08cef3a0fc63824"
  910. },
  911. "dist": {
  912. "type": "zip",
  913. "url": "https://api.github.com/repos/Bit-Wasp/bitcoin-php/zipball/65ff8384a15e805effcf600fb08cef3a0fc63824",
  914. "reference": "65ff8384a15e805effcf600fb08cef3a0fc63824",
  915. "shasum": ""
  916. },
  917. "require": {
  918. "bitwasp/bech32": "^0.0.1",
  919. "bitwasp/buffertools": "^0.5.0",
  920. "composer/semver": "^1.4.0",
  921. "lastguest/murmurhash": "v2.0.0",
  922. "mdanter/ecc": "^0.5.0",
  923. "php-64bit": ">=7.0",
  924. "pleonasm/merkle-tree": "1.0.0"
  925. },
  926. "require-dev": {
  927. "bitwasp/bitcoinconsensus": "v3.0.0",
  928. "bitwasp/secp256k1-php": "^v0.2.0",
  929. "ext-json": "*",
  930. "nbobtc/bitcoind-php": "v2.0.2",
  931. "phpunit/phpunit": "^5.4.0",
  932. "squizlabs/php_codesniffer": "^2.0.0"
  933. },
  934. "suggest": {
  935. "ext-bitcoinconsensus": "The bitcoinconsensus library for safest possible script verification",
  936. "ext-secp256k1": "The secp256k1 library for fast and safe elliptic curve operations"
  937. },
  938. "type": "library",
  939. "autoload": {
  940. "files": [
  941. "src/Script/functions.php"
  942. ],
  943. "psr-4": {
  944. "BitWasp\\Bitcoin\\": "src/"
  945. }
  946. },
  947. "notification-url": "https://packagist.org/downloads/",
  948. "license": [
  949. "Unlicense"
  950. ],
  951. "authors": [
  952. {
  953. "name": "Thomas Kerin",
  954. "homepage": "https://thomaskerin.io",
  955. "role": "Author"
  956. }
  957. ],
  958. "description": "PHP Bitcoin library with functions for transactions, signatures, serialization, Random/Deterministic ECDSA keys, blocks, RPC bindings",
  959. "homepage": "https://github.com/bit-wasp/bitcoin-php",
  960. "support": {
  961. "issues": "https://github.com/Bit-Wasp/bitcoin-php/issues",
  962. "source": "https://github.com/Bit-Wasp/bitcoin-php/tree/v1.0.4"
  963. },
  964. "time": "2019-12-10T23:28:26+00:00"
  965. },
  966. {
  967. "name": "bitwasp/buffertools",
  968. "version": "v0.5.7",
  969. "source": {
  970. "type": "git",
  971. "url": "https://github.com/Bit-Wasp/buffertools-php.git",
  972. "reference": "133746d0b514e0016d8479b54aa97475405a9f1f"
  973. },
  974. "dist": {
  975. "type": "zip",
  976. "url": "https://api.github.com/repos/Bit-Wasp/buffertools-php/zipball/133746d0b514e0016d8479b54aa97475405a9f1f",
  977. "reference": "133746d0b514e0016d8479b54aa97475405a9f1f",
  978. "shasum": ""
  979. },
  980. "require": {
  981. "php-64bit": ">=7.0.0"
  982. },
  983. "require-dev": {
  984. "phpunit/phpunit": "^6.0",
  985. "squizlabs/php_codesniffer": "~2.0"
  986. },
  987. "type": "library",
  988. "autoload": {
  989. "psr-4": {
  990. "BitWasp\\Buffertools\\": "src/Buffertools/"
  991. }
  992. },
  993. "notification-url": "https://packagist.org/downloads/",
  994. "license": [
  995. "MIT"
  996. ],
  997. "authors": [
  998. {
  999. "name": "Thomas Kerin",
  1000. "homepage": "https://thomaskerin.io"
  1001. },
  1002. {
  1003. "name": "Ruben de Vries",
  1004. "email": "ruben@rubensayshi.com"
  1005. }
  1006. ],
  1007. "description": "Toolbox for working with binary and hex data. Similar to NodeJS Buffer.",
  1008. "support": {
  1009. "issues": "https://github.com/Bit-Wasp/buffertools-php/issues",
  1010. "source": "https://github.com/Bit-Wasp/buffertools-php/tree/v0.5.7"
  1011. },
  1012. "time": "2020-01-17T21:31:49+00:00"
  1013. },
  1014. {
  1015. "name": "carbonphp/carbon-doctrine-types",
  1016. "version": "2.1.0",
  1017. "source": {
  1018. "type": "git",
  1019. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  1020. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb"
  1021. },
  1022. "dist": {
  1023. "type": "zip",
  1024. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  1025. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  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. "php": "^7.4 || ^8.0"
  1036. },
  1037. "conflict": {
  1038. "doctrine/dbal": "<3.7.0 || >=4.0.0"
  1039. },
  1040. "require-dev": {
  1041. "doctrine/dbal": "^3.7.0",
  1042. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  1043. "phpunit/phpunit": "^10.3"
  1044. },
  1045. "type": "library",
  1046. "autoload": {
  1047. "psr-4": {
  1048. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  1049. }
  1050. },
  1051. "notification-url": "https://packagist.org/downloads/",
  1052. "license": [
  1053. "MIT"
  1054. ],
  1055. "authors": [
  1056. {
  1057. "name": "KyleKatarn",
  1058. "email": "kylekatarnls@gmail.com"
  1059. }
  1060. ],
  1061. "description": "Types to use Carbon in Doctrine",
  1062. "keywords": [
  1063. "carbon",
  1064. "date",
  1065. "datetime",
  1066. "doctrine",
  1067. "time"
  1068. ],
  1069. "support": {
  1070. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  1071. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/2.1.0"
  1072. },
  1073. "funding": [
  1074. {
  1075. "url": "https://github.com/kylekatarnls",
  1076. "type": "github"
  1077. },
  1078. {
  1079. "url": "https://opencollective.com/Carbon",
  1080. "type": "open_collective"
  1081. },
  1082. {
  1083. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  1084. "type": "tidelift"
  1085. }
  1086. ],
  1087. "time": "2023-12-11T17:09:12+00:00"
  1088. },
  1089. {
  1090. "name": "composer/semver",
  1091. "version": "1.7.2",
  1092. "source": {
  1093. "type": "git",
  1094. "url": "https://github.com/composer/semver.git",
  1095. "reference": "647490bbcaf7fc4891c58f47b825eb99d19c377a"
  1096. },
  1097. "dist": {
  1098. "type": "zip",
  1099. "url": "https://api.github.com/repos/composer/semver/zipball/647490bbcaf7fc4891c58f47b825eb99d19c377a",
  1100. "reference": "647490bbcaf7fc4891c58f47b825eb99d19c377a",
  1101. "shasum": ""
  1102. },
  1103. "require": {
  1104. "php": "^5.3.2 || ^7.0 || ^8.0"
  1105. },
  1106. "require-dev": {
  1107. "phpunit/phpunit": "^4.5 || ^5.0.5"
  1108. },
  1109. "type": "library",
  1110. "extra": {
  1111. "branch-alias": {
  1112. "dev-master": "1.x-dev"
  1113. }
  1114. },
  1115. "autoload": {
  1116. "psr-4": {
  1117. "Composer\\Semver\\": "src"
  1118. }
  1119. },
  1120. "notification-url": "https://packagist.org/downloads/",
  1121. "license": [
  1122. "MIT"
  1123. ],
  1124. "authors": [
  1125. {
  1126. "name": "Nils Adermann",
  1127. "email": "naderman@naderman.de",
  1128. "homepage": "http://www.naderman.de"
  1129. },
  1130. {
  1131. "name": "Jordi Boggiano",
  1132. "email": "j.boggiano@seld.be",
  1133. "homepage": "http://seld.be"
  1134. },
  1135. {
  1136. "name": "Rob Bast",
  1137. "email": "rob.bast@gmail.com",
  1138. "homepage": "http://robbast.nl"
  1139. }
  1140. ],
  1141. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  1142. "keywords": [
  1143. "semantic",
  1144. "semver",
  1145. "validation",
  1146. "versioning"
  1147. ],
  1148. "support": {
  1149. "irc": "irc://irc.freenode.org/composer",
  1150. "issues": "https://github.com/composer/semver/issues",
  1151. "source": "https://github.com/composer/semver/tree/1.7.2"
  1152. },
  1153. "funding": [
  1154. {
  1155. "url": "https://packagist.com",
  1156. "type": "custom"
  1157. },
  1158. {
  1159. "url": "https://github.com/composer",
  1160. "type": "github"
  1161. },
  1162. {
  1163. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  1164. "type": "tidelift"
  1165. }
  1166. ],
  1167. "time": "2020-12-03T15:47:16+00:00"
  1168. },
  1169. {
  1170. "name": "dasprid/enum",
  1171. "version": "1.0.5",
  1172. "source": {
  1173. "type": "git",
  1174. "url": "https://github.com/DASPRiD/Enum.git",
  1175. "reference": "6faf451159fb8ba4126b925ed2d78acfce0dc016"
  1176. },
  1177. "dist": {
  1178. "type": "zip",
  1179. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/6faf451159fb8ba4126b925ed2d78acfce0dc016",
  1180. "reference": "6faf451159fb8ba4126b925ed2d78acfce0dc016",
  1181. "shasum": "",
  1182. "mirrors": [
  1183. {
  1184. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1185. "preferred": true
  1186. }
  1187. ]
  1188. },
  1189. "require": {
  1190. "php": ">=7.1 <9.0"
  1191. },
  1192. "require-dev": {
  1193. "phpunit/phpunit": "^7 | ^8 | ^9",
  1194. "squizlabs/php_codesniffer": "*"
  1195. },
  1196. "type": "library",
  1197. "autoload": {
  1198. "psr-4": {
  1199. "DASPRiD\\Enum\\": "src/"
  1200. }
  1201. },
  1202. "notification-url": "https://packagist.org/downloads/",
  1203. "license": [
  1204. "BSD-2-Clause"
  1205. ],
  1206. "authors": [
  1207. {
  1208. "name": "Ben Scholzen 'DASPRiD'",
  1209. "email": "mail@dasprids.de",
  1210. "homepage": "https://dasprids.de/",
  1211. "role": "Developer"
  1212. }
  1213. ],
  1214. "description": "PHP 7.1 enum implementation",
  1215. "keywords": [
  1216. "enum",
  1217. "map"
  1218. ],
  1219. "support": {
  1220. "issues": "https://github.com/DASPRiD/Enum/issues",
  1221. "source": "https://github.com/DASPRiD/Enum/tree/1.0.5"
  1222. },
  1223. "time": "2023-08-25T16:18:39+00:00"
  1224. },
  1225. {
  1226. "name": "easywechat-composer/easywechat-composer",
  1227. "version": "1.4.1",
  1228. "source": {
  1229. "type": "git",
  1230. "url": "https://github.com/mingyoung/easywechat-composer.git",
  1231. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd"
  1232. },
  1233. "dist": {
  1234. "type": "zip",
  1235. "url": "https://api.github.com/repos/mingyoung/easywechat-composer/zipball/3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  1236. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  1237. "shasum": "",
  1238. "mirrors": [
  1239. {
  1240. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1241. "preferred": true
  1242. }
  1243. ]
  1244. },
  1245. "require": {
  1246. "composer-plugin-api": "^1.0 || ^2.0",
  1247. "php": ">=7.0"
  1248. },
  1249. "require-dev": {
  1250. "composer/composer": "^1.0 || ^2.0",
  1251. "phpunit/phpunit": "^6.5 || ^7.0"
  1252. },
  1253. "type": "composer-plugin",
  1254. "extra": {
  1255. "class": "EasyWeChatComposer\\Plugin"
  1256. },
  1257. "autoload": {
  1258. "psr-4": {
  1259. "EasyWeChatComposer\\": "src/"
  1260. }
  1261. },
  1262. "notification-url": "https://packagist.org/downloads/",
  1263. "license": [
  1264. "MIT"
  1265. ],
  1266. "authors": [
  1267. {
  1268. "name": "张铭阳",
  1269. "email": "mingyoungcheung@gmail.com"
  1270. }
  1271. ],
  1272. "description": "The composer plugin for EasyWeChat",
  1273. "support": {
  1274. "issues": "https://github.com/mingyoung/easywechat-composer/issues",
  1275. "source": "https://github.com/mingyoung/easywechat-composer/tree/1.4.1"
  1276. },
  1277. "time": "2021-07-05T04:03:22+00:00"
  1278. },
  1279. {
  1280. "name": "endroid/qr-code",
  1281. "version": "4.6.1",
  1282. "source": {
  1283. "type": "git",
  1284. "url": "https://github.com/endroid/qr-code.git",
  1285. "reference": "a75c913b0e4d6ad275e49a2c1de1cacffc6c2184"
  1286. },
  1287. "dist": {
  1288. "type": "zip",
  1289. "url": "https://api.github.com/repos/endroid/qr-code/zipball/a75c913b0e4d6ad275e49a2c1de1cacffc6c2184",
  1290. "reference": "a75c913b0e4d6ad275e49a2c1de1cacffc6c2184",
  1291. "shasum": "",
  1292. "mirrors": [
  1293. {
  1294. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1295. "preferred": true
  1296. }
  1297. ]
  1298. },
  1299. "require": {
  1300. "bacon/bacon-qr-code": "^2.0.5",
  1301. "php": "^7.4||^8.0"
  1302. },
  1303. "require-dev": {
  1304. "endroid/quality": "dev-master",
  1305. "ext-gd": "*",
  1306. "khanamiryan/qrcode-detector-decoder": "^1.0.4",
  1307. "setasign/fpdf": "^1.8.2"
  1308. },
  1309. "suggest": {
  1310. "ext-gd": "Enables you to write PNG images",
  1311. "khanamiryan/qrcode-detector-decoder": "Enables you to use the image validator",
  1312. "roave/security-advisories": "Makes sure package versions with known security issues are not installed",
  1313. "setasign/fpdf": "Enables you to use the PDF writer"
  1314. },
  1315. "type": "library",
  1316. "extra": {
  1317. "branch-alias": {
  1318. "dev-master": "4.x-dev"
  1319. }
  1320. },
  1321. "autoload": {
  1322. "psr-4": {
  1323. "Endroid\\QrCode\\": "src/"
  1324. }
  1325. },
  1326. "notification-url": "https://packagist.org/downloads/",
  1327. "license": [
  1328. "MIT"
  1329. ],
  1330. "authors": [
  1331. {
  1332. "name": "Jeroen van den Enden",
  1333. "email": "info@endroid.nl"
  1334. }
  1335. ],
  1336. "description": "Endroid QR Code",
  1337. "homepage": "https://github.com/endroid/qr-code",
  1338. "keywords": [
  1339. "code",
  1340. "endroid",
  1341. "php",
  1342. "qr",
  1343. "qrcode"
  1344. ],
  1345. "support": {
  1346. "issues": "https://github.com/endroid/qr-code/issues",
  1347. "source": "https://github.com/endroid/qr-code/tree/4.6.1"
  1348. },
  1349. "funding": [
  1350. {
  1351. "url": "https://github.com/endroid",
  1352. "type": "github"
  1353. }
  1354. ],
  1355. "time": "2022-10-26T08:48:17+00:00"
  1356. },
  1357. {
  1358. "name": "ezyang/htmlpurifier",
  1359. "version": "v4.18.0",
  1360. "source": {
  1361. "type": "git",
  1362. "url": "https://github.com/ezyang/htmlpurifier.git",
  1363. "reference": "cb56001e54359df7ae76dc522d08845dc741621b"
  1364. },
  1365. "dist": {
  1366. "type": "zip",
  1367. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/cb56001e54359df7ae76dc522d08845dc741621b",
  1368. "reference": "cb56001e54359df7ae76dc522d08845dc741621b",
  1369. "shasum": "",
  1370. "mirrors": [
  1371. {
  1372. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1373. "preferred": true
  1374. }
  1375. ]
  1376. },
  1377. "require": {
  1378. "php": "~5.6.0 || ~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
  1379. },
  1380. "require-dev": {
  1381. "cerdic/css-tidy": "^1.7 || ^2.0",
  1382. "simpletest/simpletest": "dev-master"
  1383. },
  1384. "suggest": {
  1385. "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
  1386. "ext-bcmath": "Used for unit conversion and imagecrash protection",
  1387. "ext-iconv": "Converts text to and from non-UTF-8 encodings",
  1388. "ext-tidy": "Used for pretty-printing HTML"
  1389. },
  1390. "type": "library",
  1391. "autoload": {
  1392. "files": [
  1393. "library/HTMLPurifier.composer.php"
  1394. ],
  1395. "psr-0": {
  1396. "HTMLPurifier": "library/"
  1397. },
  1398. "exclude-from-classmap": [
  1399. "/library/HTMLPurifier/Language/"
  1400. ]
  1401. },
  1402. "notification-url": "https://packagist.org/downloads/",
  1403. "license": [
  1404. "LGPL-2.1-or-later"
  1405. ],
  1406. "authors": [
  1407. {
  1408. "name": "Edward Z. Yang",
  1409. "email": "admin@htmlpurifier.org",
  1410. "homepage": "http://ezyang.com"
  1411. }
  1412. ],
  1413. "description": "Standards compliant HTML filter written in PHP",
  1414. "homepage": "http://htmlpurifier.org/",
  1415. "keywords": [
  1416. "html"
  1417. ],
  1418. "support": {
  1419. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  1420. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.18.0"
  1421. },
  1422. "time": "2024-11-01T03:51:45+00:00"
  1423. },
  1424. {
  1425. "name": "fastknife/ajcaptcha",
  1426. "version": "v1.2.2",
  1427. "source": {
  1428. "type": "git",
  1429. "url": "https://gitee.com/fastknife/aj-captcha.git",
  1430. "reference": "87c122b6cd950fd98702e929685e5e7c0c517ddc"
  1431. },
  1432. "require": {
  1433. "ext-gd": "*",
  1434. "ext-iconv": "*",
  1435. "ext-json": "*",
  1436. "ext-openssl": "*",
  1437. "intervention/image": "^2.5",
  1438. "php": ">=7.1"
  1439. },
  1440. "type": "library",
  1441. "autoload": {
  1442. "psr-4": {
  1443. "Fastknife\\": "src"
  1444. }
  1445. },
  1446. "notification-url": "https://packagist.org/downloads/",
  1447. "license": [
  1448. "GPL-3.0-only"
  1449. ],
  1450. "authors": [
  1451. {
  1452. "name": "bruce",
  1453. "email": "2777314125@qq.com"
  1454. }
  1455. ],
  1456. "description": "This is a behavior verification code PHP back-end implementation package",
  1457. "time": "2023-03-29T10:35:25+00:00"
  1458. },
  1459. {
  1460. "name": "fgrosse/phpasn1",
  1461. "version": "v2.5.0",
  1462. "source": {
  1463. "type": "git",
  1464. "url": "https://github.com/fgrosse/PHPASN1.git",
  1465. "reference": "42060ed45344789fb9f21f9f1864fc47b9e3507b"
  1466. },
  1467. "dist": {
  1468. "type": "zip",
  1469. "url": "https://api.github.com/repos/fgrosse/PHPASN1/zipball/42060ed45344789fb9f21f9f1864fc47b9e3507b",
  1470. "reference": "42060ed45344789fb9f21f9f1864fc47b9e3507b",
  1471. "shasum": ""
  1472. },
  1473. "require": {
  1474. "php": "^7.1 || ^8.0"
  1475. },
  1476. "require-dev": {
  1477. "php-coveralls/php-coveralls": "~2.0",
  1478. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  1479. },
  1480. "suggest": {
  1481. "ext-bcmath": "BCmath is the fallback extension for big integer calculations",
  1482. "ext-curl": "For loading OID information from the web if they have not bee defined statically",
  1483. "ext-gmp": "GMP is the preferred extension for big integer calculations",
  1484. "phpseclib/bcmath_compat": "BCmath polyfill for servers where neither GMP nor BCmath is available"
  1485. },
  1486. "type": "library",
  1487. "extra": {
  1488. "branch-alias": {
  1489. "dev-master": "2.0.x-dev"
  1490. }
  1491. },
  1492. "autoload": {
  1493. "psr-4": {
  1494. "FG\\": "lib/"
  1495. }
  1496. },
  1497. "notification-url": "https://packagist.org/downloads/",
  1498. "license": [
  1499. "MIT"
  1500. ],
  1501. "authors": [
  1502. {
  1503. "name": "Friedrich Große",
  1504. "email": "friedrich.grosse@gmail.com",
  1505. "homepage": "https://github.com/FGrosse",
  1506. "role": "Author"
  1507. },
  1508. {
  1509. "name": "All contributors",
  1510. "homepage": "https://github.com/FGrosse/PHPASN1/contributors"
  1511. }
  1512. ],
  1513. "description": "A PHP Framework that allows you to encode and decode arbitrary ASN.1 structures using the ITU-T X.690 Encoding Rules.",
  1514. "homepage": "https://github.com/FGrosse/PHPASN1",
  1515. "keywords": [
  1516. "DER",
  1517. "asn.1",
  1518. "asn1",
  1519. "ber",
  1520. "binary",
  1521. "decoding",
  1522. "encoding",
  1523. "x.509",
  1524. "x.690",
  1525. "x509",
  1526. "x690"
  1527. ],
  1528. "support": {
  1529. "issues": "https://github.com/fgrosse/PHPASN1/issues",
  1530. "source": "https://github.com/fgrosse/PHPASN1/tree/v2.5.0"
  1531. },
  1532. "abandoned": true,
  1533. "time": "2022-12-19T11:08:26+00:00"
  1534. },
  1535. {
  1536. "name": "firebase/php-jwt",
  1537. "version": "v6.10.0",
  1538. "source": {
  1539. "type": "git",
  1540. "url": "https://github.com/firebase/php-jwt.git",
  1541. "reference": "a49db6f0a5033aef5143295342f1c95521b075ff"
  1542. },
  1543. "dist": {
  1544. "type": "zip",
  1545. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/a49db6f0a5033aef5143295342f1c95521b075ff",
  1546. "reference": "a49db6f0a5033aef5143295342f1c95521b075ff",
  1547. "shasum": "",
  1548. "mirrors": [
  1549. {
  1550. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1551. "preferred": true
  1552. }
  1553. ]
  1554. },
  1555. "require": {
  1556. "php": "^7.4||^8.0"
  1557. },
  1558. "require-dev": {
  1559. "guzzlehttp/guzzle": "^6.5||^7.4",
  1560. "phpspec/prophecy-phpunit": "^2.0",
  1561. "phpunit/phpunit": "^9.5",
  1562. "psr/cache": "^1.0||^2.0",
  1563. "psr/http-client": "^1.0",
  1564. "psr/http-factory": "^1.0"
  1565. },
  1566. "suggest": {
  1567. "ext-sodium": "Support EdDSA (Ed25519) signatures",
  1568. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  1569. },
  1570. "type": "library",
  1571. "autoload": {
  1572. "psr-4": {
  1573. "Firebase\\JWT\\": "src"
  1574. }
  1575. },
  1576. "notification-url": "https://packagist.org/downloads/",
  1577. "license": [
  1578. "BSD-3-Clause"
  1579. ],
  1580. "authors": [
  1581. {
  1582. "name": "Neuman Vong",
  1583. "email": "neuman+pear@twilio.com",
  1584. "role": "Developer"
  1585. },
  1586. {
  1587. "name": "Anant Narayanan",
  1588. "email": "anant@php.net",
  1589. "role": "Developer"
  1590. }
  1591. ],
  1592. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  1593. "homepage": "https://github.com/firebase/php-jwt",
  1594. "keywords": [
  1595. "jwt",
  1596. "php"
  1597. ],
  1598. "support": {
  1599. "issues": "https://github.com/firebase/php-jwt/issues",
  1600. "source": "https://github.com/firebase/php-jwt/tree/v6.10.0"
  1601. },
  1602. "time": "2023-12-01T16:26:39+00:00"
  1603. },
  1604. {
  1605. "name": "guzzlehttp/command",
  1606. "version": "1.3.1",
  1607. "source": {
  1608. "type": "git",
  1609. "url": "https://github.com/guzzle/command.git",
  1610. "reference": "0eebc653784f4902b3272e826fe8e88743d14e77"
  1611. },
  1612. "dist": {
  1613. "type": "zip",
  1614. "url": "https://api.github.com/repos/guzzle/command/zipball/0eebc653784f4902b3272e826fe8e88743d14e77",
  1615. "reference": "0eebc653784f4902b3272e826fe8e88743d14e77",
  1616. "shasum": "",
  1617. "mirrors": [
  1618. {
  1619. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1620. "preferred": true
  1621. }
  1622. ]
  1623. },
  1624. "require": {
  1625. "guzzlehttp/guzzle": "^7.8",
  1626. "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
  1627. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  1628. "php": "^7.2.5 || ^8.0"
  1629. },
  1630. "require-dev": {
  1631. "bamarni/composer-bin-plugin": "^1.8.2",
  1632. "phpunit/phpunit": "^8.5.19 || ^9.5.8"
  1633. },
  1634. "type": "library",
  1635. "extra": {
  1636. "bamarni-bin": {
  1637. "bin-links": true,
  1638. "forward-command": false
  1639. }
  1640. },
  1641. "autoload": {
  1642. "psr-4": {
  1643. "GuzzleHttp\\Command\\": "src/"
  1644. }
  1645. },
  1646. "notification-url": "https://packagist.org/downloads/",
  1647. "license": [
  1648. "MIT"
  1649. ],
  1650. "authors": [
  1651. {
  1652. "name": "Graham Campbell",
  1653. "email": "hello@gjcampbell.co.uk",
  1654. "homepage": "https://github.com/GrahamCampbell"
  1655. },
  1656. {
  1657. "name": "Michael Dowling",
  1658. "email": "mtdowling@gmail.com",
  1659. "homepage": "https://github.com/mtdowling"
  1660. },
  1661. {
  1662. "name": "Jeremy Lindblom",
  1663. "email": "jeremeamia@gmail.com",
  1664. "homepage": "https://github.com/jeremeamia"
  1665. },
  1666. {
  1667. "name": "Tobias Nyholm",
  1668. "email": "tobias.nyholm@gmail.com",
  1669. "homepage": "https://github.com/Nyholm"
  1670. }
  1671. ],
  1672. "description": "Provides the foundation for building command-based web service clients",
  1673. "support": {
  1674. "issues": "https://github.com/guzzle/command/issues",
  1675. "source": "https://github.com/guzzle/command/tree/1.3.1"
  1676. },
  1677. "funding": [
  1678. {
  1679. "url": "https://github.com/GrahamCampbell",
  1680. "type": "github"
  1681. },
  1682. {
  1683. "url": "https://github.com/Nyholm",
  1684. "type": "github"
  1685. },
  1686. {
  1687. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/command",
  1688. "type": "tidelift"
  1689. }
  1690. ],
  1691. "time": "2023-12-03T20:46:20+00:00"
  1692. },
  1693. {
  1694. "name": "guzzlehttp/guzzle",
  1695. "version": "7.9.2",
  1696. "source": {
  1697. "type": "git",
  1698. "url": "https://github.com/guzzle/guzzle.git",
  1699. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  1700. },
  1701. "dist": {
  1702. "type": "zip",
  1703. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  1704. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  1705. "shasum": ""
  1706. },
  1707. "require": {
  1708. "ext-json": "*",
  1709. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  1710. "guzzlehttp/psr7": "^2.7.0",
  1711. "php": "^7.2.5 || ^8.0",
  1712. "psr/http-client": "^1.0",
  1713. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1714. },
  1715. "provide": {
  1716. "psr/http-client-implementation": "1.0"
  1717. },
  1718. "require-dev": {
  1719. "bamarni/composer-bin-plugin": "^1.8.2",
  1720. "ext-curl": "*",
  1721. "guzzle/client-integration-tests": "3.0.2",
  1722. "php-http/message-factory": "^1.1",
  1723. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  1724. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1725. },
  1726. "suggest": {
  1727. "ext-curl": "Required for CURL handler support",
  1728. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1729. "psr/log": "Required for using the Log middleware"
  1730. },
  1731. "type": "library",
  1732. "extra": {
  1733. "bamarni-bin": {
  1734. "bin-links": true,
  1735. "forward-command": false
  1736. }
  1737. },
  1738. "autoload": {
  1739. "files": [
  1740. "src/functions_include.php"
  1741. ],
  1742. "psr-4": {
  1743. "GuzzleHttp\\": "src/"
  1744. }
  1745. },
  1746. "notification-url": "https://packagist.org/downloads/",
  1747. "license": [
  1748. "MIT"
  1749. ],
  1750. "authors": [
  1751. {
  1752. "name": "Graham Campbell",
  1753. "email": "hello@gjcampbell.co.uk",
  1754. "homepage": "https://github.com/GrahamCampbell"
  1755. },
  1756. {
  1757. "name": "Michael Dowling",
  1758. "email": "mtdowling@gmail.com",
  1759. "homepage": "https://github.com/mtdowling"
  1760. },
  1761. {
  1762. "name": "Jeremy Lindblom",
  1763. "email": "jeremeamia@gmail.com",
  1764. "homepage": "https://github.com/jeremeamia"
  1765. },
  1766. {
  1767. "name": "George Mponos",
  1768. "email": "gmponos@gmail.com",
  1769. "homepage": "https://github.com/gmponos"
  1770. },
  1771. {
  1772. "name": "Tobias Nyholm",
  1773. "email": "tobias.nyholm@gmail.com",
  1774. "homepage": "https://github.com/Nyholm"
  1775. },
  1776. {
  1777. "name": "Márk Sági-Kazár",
  1778. "email": "mark.sagikazar@gmail.com",
  1779. "homepage": "https://github.com/sagikazarmark"
  1780. },
  1781. {
  1782. "name": "Tobias Schultze",
  1783. "email": "webmaster@tubo-world.de",
  1784. "homepage": "https://github.com/Tobion"
  1785. }
  1786. ],
  1787. "description": "Guzzle is a PHP HTTP client library",
  1788. "keywords": [
  1789. "client",
  1790. "curl",
  1791. "framework",
  1792. "http",
  1793. "http client",
  1794. "psr-18",
  1795. "psr-7",
  1796. "rest",
  1797. "web service"
  1798. ],
  1799. "support": {
  1800. "issues": "https://github.com/guzzle/guzzle/issues",
  1801. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  1802. },
  1803. "funding": [
  1804. {
  1805. "url": "https://github.com/GrahamCampbell",
  1806. "type": "github"
  1807. },
  1808. {
  1809. "url": "https://github.com/Nyholm",
  1810. "type": "github"
  1811. },
  1812. {
  1813. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1814. "type": "tidelift"
  1815. }
  1816. ],
  1817. "time": "2024-07-24T11:22:20+00:00"
  1818. },
  1819. {
  1820. "name": "guzzlehttp/guzzle-services",
  1821. "version": "1.4.1",
  1822. "source": {
  1823. "type": "git",
  1824. "url": "https://github.com/guzzle/guzzle-services.git",
  1825. "reference": "bcab7c0d61672b606510a6fe5af3039d04968c0f"
  1826. },
  1827. "dist": {
  1828. "type": "zip",
  1829. "url": "https://api.github.com/repos/guzzle/guzzle-services/zipball/bcab7c0d61672b606510a6fe5af3039d04968c0f",
  1830. "reference": "bcab7c0d61672b606510a6fe5af3039d04968c0f",
  1831. "shasum": "",
  1832. "mirrors": [
  1833. {
  1834. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1835. "preferred": true
  1836. }
  1837. ]
  1838. },
  1839. "require": {
  1840. "guzzlehttp/command": "^1.3.1",
  1841. "guzzlehttp/guzzle": "^7.8",
  1842. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  1843. "guzzlehttp/uri-template": "^1.0.1",
  1844. "php": "^7.2.5 || ^8.0"
  1845. },
  1846. "require-dev": {
  1847. "bamarni/composer-bin-plugin": "^1.8.2",
  1848. "phpunit/phpunit": "^8.5.19 || ^9.5.8"
  1849. },
  1850. "suggest": {
  1851. "gimler/guzzle-description-loader": "^0.0.4"
  1852. },
  1853. "type": "library",
  1854. "extra": {
  1855. "bamarni-bin": {
  1856. "bin-links": true,
  1857. "forward-command": false
  1858. }
  1859. },
  1860. "autoload": {
  1861. "psr-4": {
  1862. "GuzzleHttp\\Command\\Guzzle\\": "src/"
  1863. }
  1864. },
  1865. "notification-url": "https://packagist.org/downloads/",
  1866. "license": [
  1867. "MIT"
  1868. ],
  1869. "authors": [
  1870. {
  1871. "name": "Graham Campbell",
  1872. "email": "hello@gjcampbell.co.uk",
  1873. "homepage": "https://github.com/GrahamCampbell"
  1874. },
  1875. {
  1876. "name": "Michael Dowling",
  1877. "email": "mtdowling@gmail.com",
  1878. "homepage": "https://github.com/mtdowling"
  1879. },
  1880. {
  1881. "name": "Stefano Kowalke",
  1882. "email": "blueduck@mail.org",
  1883. "homepage": "https://github.com/Konafets"
  1884. },
  1885. {
  1886. "name": "Tobias Nyholm",
  1887. "email": "tobias.nyholm@gmail.com",
  1888. "homepage": "https://github.com/Nyholm"
  1889. }
  1890. ],
  1891. "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.",
  1892. "support": {
  1893. "issues": "https://github.com/guzzle/guzzle-services/issues",
  1894. "source": "https://github.com/guzzle/guzzle-services/tree/1.4.1"
  1895. },
  1896. "funding": [
  1897. {
  1898. "url": "https://github.com/GrahamCampbell",
  1899. "type": "github"
  1900. },
  1901. {
  1902. "url": "https://github.com/Nyholm",
  1903. "type": "github"
  1904. },
  1905. {
  1906. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle-services",
  1907. "type": "tidelift"
  1908. }
  1909. ],
  1910. "time": "2023-12-03T20:48:14+00:00"
  1911. },
  1912. {
  1913. "name": "guzzlehttp/promises",
  1914. "version": "2.0.3",
  1915. "source": {
  1916. "type": "git",
  1917. "url": "https://github.com/guzzle/promises.git",
  1918. "reference": "6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8"
  1919. },
  1920. "dist": {
  1921. "type": "zip",
  1922. "url": "https://api.github.com/repos/guzzle/promises/zipball/6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8",
  1923. "reference": "6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8",
  1924. "shasum": "",
  1925. "mirrors": [
  1926. {
  1927. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1928. "preferred": true
  1929. }
  1930. ]
  1931. },
  1932. "require": {
  1933. "php": "^7.2.5 || ^8.0"
  1934. },
  1935. "require-dev": {
  1936. "bamarni/composer-bin-plugin": "^1.8.2",
  1937. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  1938. },
  1939. "type": "library",
  1940. "extra": {
  1941. "bamarni-bin": {
  1942. "bin-links": true,
  1943. "forward-command": false
  1944. }
  1945. },
  1946. "autoload": {
  1947. "psr-4": {
  1948. "GuzzleHttp\\Promise\\": "src/"
  1949. }
  1950. },
  1951. "notification-url": "https://packagist.org/downloads/",
  1952. "license": [
  1953. "MIT"
  1954. ],
  1955. "authors": [
  1956. {
  1957. "name": "Graham Campbell",
  1958. "email": "hello@gjcampbell.co.uk",
  1959. "homepage": "https://github.com/GrahamCampbell"
  1960. },
  1961. {
  1962. "name": "Michael Dowling",
  1963. "email": "mtdowling@gmail.com",
  1964. "homepage": "https://github.com/mtdowling"
  1965. },
  1966. {
  1967. "name": "Tobias Nyholm",
  1968. "email": "tobias.nyholm@gmail.com",
  1969. "homepage": "https://github.com/Nyholm"
  1970. },
  1971. {
  1972. "name": "Tobias Schultze",
  1973. "email": "webmaster@tubo-world.de",
  1974. "homepage": "https://github.com/Tobion"
  1975. }
  1976. ],
  1977. "description": "Guzzle promises library",
  1978. "keywords": [
  1979. "promise"
  1980. ],
  1981. "support": {
  1982. "issues": "https://github.com/guzzle/promises/issues",
  1983. "source": "https://github.com/guzzle/promises/tree/2.0.3"
  1984. },
  1985. "funding": [
  1986. {
  1987. "url": "https://github.com/GrahamCampbell",
  1988. "type": "github"
  1989. },
  1990. {
  1991. "url": "https://github.com/Nyholm",
  1992. "type": "github"
  1993. },
  1994. {
  1995. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1996. "type": "tidelift"
  1997. }
  1998. ],
  1999. "time": "2024-07-18T10:29:17+00:00"
  2000. },
  2001. {
  2002. "name": "guzzlehttp/psr7",
  2003. "version": "2.7.0",
  2004. "source": {
  2005. "type": "git",
  2006. "url": "https://github.com/guzzle/psr7.git",
  2007. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201"
  2008. },
  2009. "dist": {
  2010. "type": "zip",
  2011. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  2012. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  2013. "shasum": "",
  2014. "mirrors": [
  2015. {
  2016. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2017. "preferred": true
  2018. }
  2019. ]
  2020. },
  2021. "require": {
  2022. "php": "^7.2.5 || ^8.0",
  2023. "psr/http-factory": "^1.0",
  2024. "psr/http-message": "^1.1 || ^2.0",
  2025. "ralouphie/getallheaders": "^3.0"
  2026. },
  2027. "provide": {
  2028. "psr/http-factory-implementation": "1.0",
  2029. "psr/http-message-implementation": "1.0"
  2030. },
  2031. "require-dev": {
  2032. "bamarni/composer-bin-plugin": "^1.8.2",
  2033. "http-interop/http-factory-tests": "0.9.0",
  2034. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  2035. },
  2036. "suggest": {
  2037. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  2038. },
  2039. "type": "library",
  2040. "extra": {
  2041. "bamarni-bin": {
  2042. "bin-links": true,
  2043. "forward-command": false
  2044. }
  2045. },
  2046. "autoload": {
  2047. "psr-4": {
  2048. "GuzzleHttp\\Psr7\\": "src/"
  2049. }
  2050. },
  2051. "notification-url": "https://packagist.org/downloads/",
  2052. "license": [
  2053. "MIT"
  2054. ],
  2055. "authors": [
  2056. {
  2057. "name": "Graham Campbell",
  2058. "email": "hello@gjcampbell.co.uk",
  2059. "homepage": "https://github.com/GrahamCampbell"
  2060. },
  2061. {
  2062. "name": "Michael Dowling",
  2063. "email": "mtdowling@gmail.com",
  2064. "homepage": "https://github.com/mtdowling"
  2065. },
  2066. {
  2067. "name": "George Mponos",
  2068. "email": "gmponos@gmail.com",
  2069. "homepage": "https://github.com/gmponos"
  2070. },
  2071. {
  2072. "name": "Tobias Nyholm",
  2073. "email": "tobias.nyholm@gmail.com",
  2074. "homepage": "https://github.com/Nyholm"
  2075. },
  2076. {
  2077. "name": "Márk Sági-Kazár",
  2078. "email": "mark.sagikazar@gmail.com",
  2079. "homepage": "https://github.com/sagikazarmark"
  2080. },
  2081. {
  2082. "name": "Tobias Schultze",
  2083. "email": "webmaster@tubo-world.de",
  2084. "homepage": "https://github.com/Tobion"
  2085. },
  2086. {
  2087. "name": "Márk Sági-Kazár",
  2088. "email": "mark.sagikazar@gmail.com",
  2089. "homepage": "https://sagikazarmark.hu"
  2090. }
  2091. ],
  2092. "description": "PSR-7 message implementation that also provides common utility methods",
  2093. "keywords": [
  2094. "http",
  2095. "message",
  2096. "psr-7",
  2097. "request",
  2098. "response",
  2099. "stream",
  2100. "uri",
  2101. "url"
  2102. ],
  2103. "support": {
  2104. "issues": "https://github.com/guzzle/psr7/issues",
  2105. "source": "https://github.com/guzzle/psr7/tree/2.7.0"
  2106. },
  2107. "funding": [
  2108. {
  2109. "url": "https://github.com/GrahamCampbell",
  2110. "type": "github"
  2111. },
  2112. {
  2113. "url": "https://github.com/Nyholm",
  2114. "type": "github"
  2115. },
  2116. {
  2117. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  2118. "type": "tidelift"
  2119. }
  2120. ],
  2121. "time": "2024-07-18T11:15:46+00:00"
  2122. },
  2123. {
  2124. "name": "guzzlehttp/ringphp",
  2125. "version": "1.1.1",
  2126. "source": {
  2127. "type": "git",
  2128. "url": "https://github.com/guzzle/RingPHP.git",
  2129. "reference": "5e2a174052995663dd68e6b5ad838afd47dd615b"
  2130. },
  2131. "dist": {
  2132. "type": "zip",
  2133. "url": "https://api.github.com/repos/guzzle/RingPHP/zipball/5e2a174052995663dd68e6b5ad838afd47dd615b",
  2134. "reference": "5e2a174052995663dd68e6b5ad838afd47dd615b",
  2135. "shasum": "",
  2136. "mirrors": [
  2137. {
  2138. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2139. "preferred": true
  2140. }
  2141. ]
  2142. },
  2143. "require": {
  2144. "guzzlehttp/streams": "~3.0",
  2145. "php": ">=5.4.0",
  2146. "react/promise": "~2.0"
  2147. },
  2148. "require-dev": {
  2149. "ext-curl": "*",
  2150. "phpunit/phpunit": "~4.0"
  2151. },
  2152. "suggest": {
  2153. "ext-curl": "Guzzle will use specific adapters if cURL is present"
  2154. },
  2155. "type": "library",
  2156. "extra": {
  2157. "branch-alias": {
  2158. "dev-master": "1.1-dev"
  2159. }
  2160. },
  2161. "autoload": {
  2162. "psr-4": {
  2163. "GuzzleHttp\\Ring\\": "src/"
  2164. }
  2165. },
  2166. "notification-url": "https://packagist.org/downloads/",
  2167. "license": [
  2168. "MIT"
  2169. ],
  2170. "authors": [
  2171. {
  2172. "name": "Michael Dowling",
  2173. "email": "mtdowling@gmail.com",
  2174. "homepage": "https://github.com/mtdowling"
  2175. }
  2176. ],
  2177. "description": "Provides a simple API and specification that abstracts away the details of HTTP into a single PHP function.",
  2178. "support": {
  2179. "issues": "https://github.com/guzzle/RingPHP/issues",
  2180. "source": "https://github.com/guzzle/RingPHP/tree/1.1.1"
  2181. },
  2182. "abandoned": true,
  2183. "time": "2018-07-31T13:22:33+00:00"
  2184. },
  2185. {
  2186. "name": "guzzlehttp/streams",
  2187. "version": "3.0.0",
  2188. "source": {
  2189. "type": "git",
  2190. "url": "https://github.com/guzzle/streams.git",
  2191. "reference": "47aaa48e27dae43d39fc1cea0ccf0d84ac1a2ba5"
  2192. },
  2193. "dist": {
  2194. "type": "zip",
  2195. "url": "https://api.github.com/repos/guzzle/streams/zipball/47aaa48e27dae43d39fc1cea0ccf0d84ac1a2ba5",
  2196. "reference": "47aaa48e27dae43d39fc1cea0ccf0d84ac1a2ba5",
  2197. "shasum": "",
  2198. "mirrors": [
  2199. {
  2200. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2201. "preferred": true
  2202. }
  2203. ]
  2204. },
  2205. "require": {
  2206. "php": ">=5.4.0"
  2207. },
  2208. "require-dev": {
  2209. "phpunit/phpunit": "~4.0"
  2210. },
  2211. "type": "library",
  2212. "extra": {
  2213. "branch-alias": {
  2214. "dev-master": "3.0-dev"
  2215. }
  2216. },
  2217. "autoload": {
  2218. "psr-4": {
  2219. "GuzzleHttp\\Stream\\": "src/"
  2220. }
  2221. },
  2222. "notification-url": "https://packagist.org/downloads/",
  2223. "license": [
  2224. "MIT"
  2225. ],
  2226. "authors": [
  2227. {
  2228. "name": "Michael Dowling",
  2229. "email": "mtdowling@gmail.com",
  2230. "homepage": "https://github.com/mtdowling"
  2231. }
  2232. ],
  2233. "description": "Provides a simple abstraction over streams of data",
  2234. "homepage": "http://guzzlephp.org/",
  2235. "keywords": [
  2236. "Guzzle",
  2237. "stream"
  2238. ],
  2239. "support": {
  2240. "issues": "https://github.com/guzzle/streams/issues",
  2241. "source": "https://github.com/guzzle/streams/tree/master"
  2242. },
  2243. "abandoned": true,
  2244. "time": "2014-10-12T19:18:40+00:00"
  2245. },
  2246. {
  2247. "name": "guzzlehttp/uri-template",
  2248. "version": "v1.0.3",
  2249. "source": {
  2250. "type": "git",
  2251. "url": "https://github.com/guzzle/uri-template.git",
  2252. "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c"
  2253. },
  2254. "dist": {
  2255. "type": "zip",
  2256. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/ecea8feef63bd4fef1f037ecb288386999ecc11c",
  2257. "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c",
  2258. "shasum": "",
  2259. "mirrors": [
  2260. {
  2261. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2262. "preferred": true
  2263. }
  2264. ]
  2265. },
  2266. "require": {
  2267. "php": "^7.2.5 || ^8.0",
  2268. "symfony/polyfill-php80": "^1.24"
  2269. },
  2270. "require-dev": {
  2271. "bamarni/composer-bin-plugin": "^1.8.2",
  2272. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  2273. "uri-template/tests": "1.0.0"
  2274. },
  2275. "type": "library",
  2276. "extra": {
  2277. "bamarni-bin": {
  2278. "bin-links": true,
  2279. "forward-command": false
  2280. }
  2281. },
  2282. "autoload": {
  2283. "psr-4": {
  2284. "GuzzleHttp\\UriTemplate\\": "src"
  2285. }
  2286. },
  2287. "notification-url": "https://packagist.org/downloads/",
  2288. "license": [
  2289. "MIT"
  2290. ],
  2291. "authors": [
  2292. {
  2293. "name": "Graham Campbell",
  2294. "email": "hello@gjcampbell.co.uk",
  2295. "homepage": "https://github.com/GrahamCampbell"
  2296. },
  2297. {
  2298. "name": "Michael Dowling",
  2299. "email": "mtdowling@gmail.com",
  2300. "homepage": "https://github.com/mtdowling"
  2301. },
  2302. {
  2303. "name": "George Mponos",
  2304. "email": "gmponos@gmail.com",
  2305. "homepage": "https://github.com/gmponos"
  2306. },
  2307. {
  2308. "name": "Tobias Nyholm",
  2309. "email": "tobias.nyholm@gmail.com",
  2310. "homepage": "https://github.com/Nyholm"
  2311. }
  2312. ],
  2313. "description": "A polyfill class for uri_template of PHP",
  2314. "keywords": [
  2315. "guzzlehttp",
  2316. "uri-template"
  2317. ],
  2318. "support": {
  2319. "issues": "https://github.com/guzzle/uri-template/issues",
  2320. "source": "https://github.com/guzzle/uri-template/tree/v1.0.3"
  2321. },
  2322. "funding": [
  2323. {
  2324. "url": "https://github.com/GrahamCampbell",
  2325. "type": "github"
  2326. },
  2327. {
  2328. "url": "https://github.com/Nyholm",
  2329. "type": "github"
  2330. },
  2331. {
  2332. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  2333. "type": "tidelift"
  2334. }
  2335. ],
  2336. "time": "2023-12-03T19:50:20+00:00"
  2337. },
  2338. {
  2339. "name": "intervention/image",
  2340. "version": "2.7.2",
  2341. "source": {
  2342. "type": "git",
  2343. "url": "https://github.com/Intervention/image.git",
  2344. "reference": "04be355f8d6734c826045d02a1079ad658322dad"
  2345. },
  2346. "dist": {
  2347. "type": "zip",
  2348. "url": "https://api.github.com/repos/Intervention/image/zipball/04be355f8d6734c826045d02a1079ad658322dad",
  2349. "reference": "04be355f8d6734c826045d02a1079ad658322dad",
  2350. "shasum": "",
  2351. "mirrors": [
  2352. {
  2353. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2354. "preferred": true
  2355. }
  2356. ]
  2357. },
  2358. "require": {
  2359. "ext-fileinfo": "*",
  2360. "guzzlehttp/psr7": "~1.1 || ^2.0",
  2361. "php": ">=5.4.0"
  2362. },
  2363. "require-dev": {
  2364. "mockery/mockery": "~0.9.2",
  2365. "phpunit/phpunit": "^4.8 || ^5.7 || ^7.5.15"
  2366. },
  2367. "suggest": {
  2368. "ext-gd": "to use GD library based image processing.",
  2369. "ext-imagick": "to use Imagick based image processing.",
  2370. "intervention/imagecache": "Caching extension for the Intervention Image library"
  2371. },
  2372. "type": "library",
  2373. "extra": {
  2374. "branch-alias": {
  2375. "dev-master": "2.4-dev"
  2376. },
  2377. "laravel": {
  2378. "providers": [
  2379. "Intervention\\Image\\ImageServiceProvider"
  2380. ],
  2381. "aliases": {
  2382. "Image": "Intervention\\Image\\Facades\\Image"
  2383. }
  2384. }
  2385. },
  2386. "autoload": {
  2387. "psr-4": {
  2388. "Intervention\\Image\\": "src/Intervention/Image"
  2389. }
  2390. },
  2391. "notification-url": "https://packagist.org/downloads/",
  2392. "license": [
  2393. "MIT"
  2394. ],
  2395. "authors": [
  2396. {
  2397. "name": "Oliver Vogel",
  2398. "email": "oliver@intervention.io",
  2399. "homepage": "https://intervention.io/"
  2400. }
  2401. ],
  2402. "description": "Image handling and manipulation library with support for Laravel integration",
  2403. "homepage": "http://image.intervention.io/",
  2404. "keywords": [
  2405. "gd",
  2406. "image",
  2407. "imagick",
  2408. "laravel",
  2409. "thumbnail",
  2410. "watermark"
  2411. ],
  2412. "support": {
  2413. "issues": "https://github.com/Intervention/image/issues",
  2414. "source": "https://github.com/Intervention/image/tree/2.7.2"
  2415. },
  2416. "funding": [
  2417. {
  2418. "url": "https://paypal.me/interventionio",
  2419. "type": "custom"
  2420. },
  2421. {
  2422. "url": "https://github.com/Intervention",
  2423. "type": "github"
  2424. }
  2425. ],
  2426. "time": "2022-05-21T17:30:32+00:00"
  2427. },
  2428. {
  2429. "name": "joypack/tencent-map",
  2430. "version": "1.0.0",
  2431. "source": {
  2432. "type": "git",
  2433. "url": "https://gitee.com/lphkxd/tencent-map",
  2434. "reference": "97c0269086d53dbecb9c3c6e1d2717645d7940a8"
  2435. },
  2436. "require": {
  2437. "php": ">=5.6"
  2438. },
  2439. "type": "library",
  2440. "autoload": {
  2441. "psr-4": {
  2442. "Joypack\\Tencent\\Map\\": "src"
  2443. }
  2444. },
  2445. "notification-url": "https://packagist.org/downloads/",
  2446. "license": [
  2447. "Apache-2.0"
  2448. ],
  2449. "authors": [
  2450. {
  2451. "name": "堪笑",
  2452. "email": "jixiang.f@gmail.com",
  2453. "homepage": "http://cli.life",
  2454. "role": "Developer"
  2455. }
  2456. ],
  2457. "description": "腾讯位置服务(WebService)",
  2458. "homepage": "https://github.com/joypack/tencent-map",
  2459. "keywords": [
  2460. "LBS",
  2461. "腾讯位置服务"
  2462. ],
  2463. "support": {
  2464. "email": "jixiang.f@gmail.com",
  2465. "issues": "https://github.com/joypack/tencent-map/issues",
  2466. "wiki": "https://github.com/joypack/tencent-map/wiki"
  2467. },
  2468. "time": "2021-11-16T06:49:35+00:00"
  2469. },
  2470. {
  2471. "name": "kornrunner/keccak",
  2472. "version": "1.1.0",
  2473. "source": {
  2474. "type": "git",
  2475. "url": "https://github.com/kornrunner/php-keccak.git",
  2476. "reference": "433749d28e117fb97baf9f2631b92b5d9ab3c890"
  2477. },
  2478. "dist": {
  2479. "type": "zip",
  2480. "url": "https://api.github.com/repos/kornrunner/php-keccak/zipball/433749d28e117fb97baf9f2631b92b5d9ab3c890",
  2481. "reference": "433749d28e117fb97baf9f2631b92b5d9ab3c890",
  2482. "shasum": ""
  2483. },
  2484. "require": {
  2485. "php": ">=7.3",
  2486. "symfony/polyfill-mbstring": "^1.8"
  2487. },
  2488. "require-dev": {
  2489. "phpunit/phpunit": "^8.2"
  2490. },
  2491. "type": "library",
  2492. "autoload": {
  2493. "psr-4": {
  2494. "kornrunner\\": "src"
  2495. }
  2496. },
  2497. "notification-url": "https://packagist.org/downloads/",
  2498. "license": [
  2499. "MIT"
  2500. ],
  2501. "authors": [
  2502. {
  2503. "name": "Boris Momcilovic",
  2504. "homepage": "https://github.com/kornrunner/php-keccak"
  2505. }
  2506. ],
  2507. "description": "Pure PHP implementation of Keccak",
  2508. "keywords": [
  2509. "keccak",
  2510. "sha-3",
  2511. "sha3-256"
  2512. ],
  2513. "support": {
  2514. "issues": "https://github.com/kornrunner/php-keccak/issues",
  2515. "source": "https://github.com/kornrunner/php-keccak/tree/1.1.0"
  2516. },
  2517. "time": "2020-12-07T15:40:44+00:00"
  2518. },
  2519. {
  2520. "name": "lastguest/murmurhash",
  2521. "version": "2.0.0",
  2522. "source": {
  2523. "type": "git",
  2524. "url": "https://github.com/lastguest/murmurhash-php.git",
  2525. "reference": "4fb7516f67e695e5d7fa129d1bbb925ec0ebe408"
  2526. },
  2527. "dist": {
  2528. "type": "zip",
  2529. "url": "https://api.github.com/repos/lastguest/murmurhash-php/zipball/4fb7516f67e695e5d7fa129d1bbb925ec0ebe408",
  2530. "reference": "4fb7516f67e695e5d7fa129d1bbb925ec0ebe408",
  2531. "shasum": ""
  2532. },
  2533. "require": {
  2534. "php": "^7"
  2535. },
  2536. "require-dev": {
  2537. "phpstan/phpstan": "^0.6.3",
  2538. "phpunit/phpunit": "^5"
  2539. },
  2540. "type": "library",
  2541. "autoload": {
  2542. "psr-4": {
  2543. "lastguest\\": "src/lastguest/"
  2544. }
  2545. },
  2546. "notification-url": "https://packagist.org/downloads/",
  2547. "license": [
  2548. "MIT"
  2549. ],
  2550. "authors": [
  2551. {
  2552. "name": "Stefano Azzolini",
  2553. "email": "lastguest@gmail.com",
  2554. "homepage": "https://github.com/lastguest/murmurhash-php"
  2555. }
  2556. ],
  2557. "description": "MurmurHash3 Hash",
  2558. "homepage": "https://github.com/lastguest/murmurhash-php",
  2559. "keywords": [
  2560. "hash",
  2561. "hashing",
  2562. "murmur"
  2563. ],
  2564. "support": {
  2565. "issues": "https://github.com/lastguest/murmurhash-php/issues",
  2566. "source": "https://github.com/lastguest/murmurhash-php/tree/master"
  2567. },
  2568. "time": "2017-10-10T15:16:12+00:00"
  2569. },
  2570. {
  2571. "name": "league/flysystem",
  2572. "version": "1.1.10",
  2573. "source": {
  2574. "type": "git",
  2575. "url": "https://github.com/thephpleague/flysystem.git",
  2576. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1"
  2577. },
  2578. "dist": {
  2579. "type": "zip",
  2580. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/3239285c825c152bcc315fe0e87d6b55f5972ed1",
  2581. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1",
  2582. "shasum": "",
  2583. "mirrors": [
  2584. {
  2585. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2586. "preferred": true
  2587. }
  2588. ]
  2589. },
  2590. "require": {
  2591. "ext-fileinfo": "*",
  2592. "league/mime-type-detection": "^1.3",
  2593. "php": "^7.2.5 || ^8.0"
  2594. },
  2595. "conflict": {
  2596. "league/flysystem-sftp": "<1.0.6"
  2597. },
  2598. "require-dev": {
  2599. "phpspec/prophecy": "^1.11.1",
  2600. "phpunit/phpunit": "^8.5.8"
  2601. },
  2602. "suggest": {
  2603. "ext-ftp": "Allows you to use FTP server storage",
  2604. "ext-openssl": "Allows you to use FTPS server storage",
  2605. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2606. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2607. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2608. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2609. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2610. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2611. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2612. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2613. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2614. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2615. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2616. },
  2617. "type": "library",
  2618. "extra": {
  2619. "branch-alias": {
  2620. "dev-master": "1.1-dev"
  2621. }
  2622. },
  2623. "autoload": {
  2624. "psr-4": {
  2625. "League\\Flysystem\\": "src/"
  2626. }
  2627. },
  2628. "notification-url": "https://packagist.org/downloads/",
  2629. "license": [
  2630. "MIT"
  2631. ],
  2632. "authors": [
  2633. {
  2634. "name": "Frank de Jonge",
  2635. "email": "info@frenky.net"
  2636. }
  2637. ],
  2638. "description": "Filesystem abstraction: Many filesystems, one API.",
  2639. "keywords": [
  2640. "Cloud Files",
  2641. "WebDAV",
  2642. "abstraction",
  2643. "aws",
  2644. "cloud",
  2645. "copy.com",
  2646. "dropbox",
  2647. "file systems",
  2648. "files",
  2649. "filesystem",
  2650. "filesystems",
  2651. "ftp",
  2652. "rackspace",
  2653. "remote",
  2654. "s3",
  2655. "sftp",
  2656. "storage"
  2657. ],
  2658. "support": {
  2659. "issues": "https://github.com/thephpleague/flysystem/issues",
  2660. "source": "https://github.com/thephpleague/flysystem/tree/1.1.10"
  2661. },
  2662. "funding": [
  2663. {
  2664. "url": "https://offset.earth/frankdejonge",
  2665. "type": "other"
  2666. }
  2667. ],
  2668. "time": "2022-10-04T09:16:37+00:00"
  2669. },
  2670. {
  2671. "name": "league/flysystem-cached-adapter",
  2672. "version": "1.1.0",
  2673. "source": {
  2674. "type": "git",
  2675. "url": "https://github.com/thephpleague/flysystem-cached-adapter.git",
  2676. "reference": "d1925efb2207ac4be3ad0c40b8277175f99ffaff"
  2677. },
  2678. "dist": {
  2679. "type": "zip",
  2680. "url": "https://api.github.com/repos/thephpleague/flysystem-cached-adapter/zipball/d1925efb2207ac4be3ad0c40b8277175f99ffaff",
  2681. "reference": "d1925efb2207ac4be3ad0c40b8277175f99ffaff",
  2682. "shasum": "",
  2683. "mirrors": [
  2684. {
  2685. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2686. "preferred": true
  2687. }
  2688. ]
  2689. },
  2690. "require": {
  2691. "league/flysystem": "~1.0",
  2692. "psr/cache": "^1.0.0"
  2693. },
  2694. "require-dev": {
  2695. "mockery/mockery": "~0.9",
  2696. "phpspec/phpspec": "^3.4",
  2697. "phpunit/phpunit": "^5.7",
  2698. "predis/predis": "~1.0",
  2699. "tedivm/stash": "~0.12"
  2700. },
  2701. "suggest": {
  2702. "ext-phpredis": "Pure C implemented extension for PHP"
  2703. },
  2704. "type": "library",
  2705. "autoload": {
  2706. "psr-4": {
  2707. "League\\Flysystem\\Cached\\": "src/"
  2708. }
  2709. },
  2710. "notification-url": "https://packagist.org/downloads/",
  2711. "license": [
  2712. "MIT"
  2713. ],
  2714. "authors": [
  2715. {
  2716. "name": "frankdejonge",
  2717. "email": "info@frenky.net"
  2718. }
  2719. ],
  2720. "description": "An adapter decorator to enable meta-data caching.",
  2721. "support": {
  2722. "issues": "https://github.com/thephpleague/flysystem-cached-adapter/issues",
  2723. "source": "https://github.com/thephpleague/flysystem-cached-adapter/tree/master"
  2724. },
  2725. "time": "2020-07-25T15:56:04+00:00"
  2726. },
  2727. {
  2728. "name": "league/mime-type-detection",
  2729. "version": "1.15.0",
  2730. "source": {
  2731. "type": "git",
  2732. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2733. "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301"
  2734. },
  2735. "dist": {
  2736. "type": "zip",
  2737. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301",
  2738. "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301",
  2739. "shasum": "",
  2740. "mirrors": [
  2741. {
  2742. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2743. "preferred": true
  2744. }
  2745. ]
  2746. },
  2747. "require": {
  2748. "ext-fileinfo": "*",
  2749. "php": "^7.4 || ^8.0"
  2750. },
  2751. "require-dev": {
  2752. "friendsofphp/php-cs-fixer": "^3.2",
  2753. "phpstan/phpstan": "^0.12.68",
  2754. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  2755. },
  2756. "type": "library",
  2757. "autoload": {
  2758. "psr-4": {
  2759. "League\\MimeTypeDetection\\": "src"
  2760. }
  2761. },
  2762. "notification-url": "https://packagist.org/downloads/",
  2763. "license": [
  2764. "MIT"
  2765. ],
  2766. "authors": [
  2767. {
  2768. "name": "Frank de Jonge",
  2769. "email": "info@frankdejonge.nl"
  2770. }
  2771. ],
  2772. "description": "Mime-type detection for Flysystem",
  2773. "support": {
  2774. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2775. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.15.0"
  2776. },
  2777. "funding": [
  2778. {
  2779. "url": "https://github.com/frankdejonge",
  2780. "type": "github"
  2781. },
  2782. {
  2783. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2784. "type": "tidelift"
  2785. }
  2786. ],
  2787. "time": "2024-01-28T23:22:08+00:00"
  2788. },
  2789. {
  2790. "name": "lizhichao/one-sm",
  2791. "version": "1.10",
  2792. "source": {
  2793. "type": "git",
  2794. "url": "https://github.com/lizhichao/sm.git",
  2795. "reference": "687a012a44a5bfd4d9143a0234e1060543be455a"
  2796. },
  2797. "dist": {
  2798. "type": "zip",
  2799. "url": "https://api.github.com/repos/lizhichao/sm/zipball/687a012a44a5bfd4d9143a0234e1060543be455a",
  2800. "reference": "687a012a44a5bfd4d9143a0234e1060543be455a",
  2801. "shasum": "",
  2802. "mirrors": [
  2803. {
  2804. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2805. "preferred": true
  2806. }
  2807. ]
  2808. },
  2809. "require": {
  2810. "php": ">=5.6"
  2811. },
  2812. "type": "library",
  2813. "autoload": {
  2814. "psr-4": {
  2815. "OneSm\\": "src/"
  2816. }
  2817. },
  2818. "notification-url": "https://packagist.org/downloads/",
  2819. "license": [
  2820. "Apache-2.0"
  2821. ],
  2822. "authors": [
  2823. {
  2824. "name": "tanszhe",
  2825. "email": "1018595261@qq.com"
  2826. }
  2827. ],
  2828. "description": "国密sm3",
  2829. "keywords": [
  2830. "php",
  2831. "sm3"
  2832. ],
  2833. "support": {
  2834. "issues": "https://github.com/lizhichao/sm/issues",
  2835. "source": "https://github.com/lizhichao/sm/tree/1.10"
  2836. },
  2837. "funding": [
  2838. {
  2839. "url": "https://www.vicsdf.com/img/w.jpg",
  2840. "type": "custom"
  2841. },
  2842. {
  2843. "url": "https://www.vicsdf.com/img/z.jpg",
  2844. "type": "custom"
  2845. }
  2846. ],
  2847. "time": "2021-05-26T06:19:22+00:00"
  2848. },
  2849. {
  2850. "name": "maennchen/zipstream-php",
  2851. "version": "2.2.6",
  2852. "source": {
  2853. "type": "git",
  2854. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  2855. "reference": "30ad6f93cf3efe4192bc7a4c9cad11ff8f4f237f"
  2856. },
  2857. "dist": {
  2858. "type": "zip",
  2859. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/30ad6f93cf3efe4192bc7a4c9cad11ff8f4f237f",
  2860. "reference": "30ad6f93cf3efe4192bc7a4c9cad11ff8f4f237f",
  2861. "shasum": "",
  2862. "mirrors": [
  2863. {
  2864. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2865. "preferred": true
  2866. }
  2867. ]
  2868. },
  2869. "require": {
  2870. "myclabs/php-enum": "^1.5",
  2871. "php": "^7.4 || ^8.0",
  2872. "psr/http-message": "^1.0",
  2873. "symfony/polyfill-mbstring": "^1.0"
  2874. },
  2875. "require-dev": {
  2876. "ext-zip": "*",
  2877. "friendsofphp/php-cs-fixer": "^3.9",
  2878. "guzzlehttp/guzzle": "^6.5.3 || ^7.2.0",
  2879. "mikey179/vfsstream": "^1.6",
  2880. "php-coveralls/php-coveralls": "^2.4",
  2881. "phpunit/phpunit": "^8.5.8 || ^9.4.2",
  2882. "vimeo/psalm": "^4.1"
  2883. },
  2884. "type": "library",
  2885. "autoload": {
  2886. "psr-4": {
  2887. "ZipStream\\": "src/"
  2888. }
  2889. },
  2890. "notification-url": "https://packagist.org/downloads/",
  2891. "license": [
  2892. "MIT"
  2893. ],
  2894. "authors": [
  2895. {
  2896. "name": "Paul Duncan",
  2897. "email": "pabs@pablotron.org"
  2898. },
  2899. {
  2900. "name": "Jonatan Männchen",
  2901. "email": "jonatan@maennchen.ch"
  2902. },
  2903. {
  2904. "name": "Jesse Donat",
  2905. "email": "donatj@gmail.com"
  2906. },
  2907. {
  2908. "name": "András Kolesár",
  2909. "email": "kolesar@kolesar.hu"
  2910. }
  2911. ],
  2912. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  2913. "keywords": [
  2914. "stream",
  2915. "zip"
  2916. ],
  2917. "support": {
  2918. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  2919. "source": "https://github.com/maennchen/ZipStream-PHP/tree/2.2.6"
  2920. },
  2921. "funding": [
  2922. {
  2923. "url": "https://github.com/maennchen",
  2924. "type": "github"
  2925. },
  2926. {
  2927. "url": "https://opencollective.com/zipstream",
  2928. "type": "open_collective"
  2929. }
  2930. ],
  2931. "time": "2022-11-25T18:57:19+00:00"
  2932. },
  2933. {
  2934. "name": "markbaker/complex",
  2935. "version": "3.0.2",
  2936. "source": {
  2937. "type": "git",
  2938. "url": "https://github.com/MarkBaker/PHPComplex.git",
  2939. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9"
  2940. },
  2941. "dist": {
  2942. "type": "zip",
  2943. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  2944. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  2945. "shasum": "",
  2946. "mirrors": [
  2947. {
  2948. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2949. "preferred": true
  2950. }
  2951. ]
  2952. },
  2953. "require": {
  2954. "php": "^7.2 || ^8.0"
  2955. },
  2956. "require-dev": {
  2957. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  2958. "phpcompatibility/php-compatibility": "^9.3",
  2959. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  2960. "squizlabs/php_codesniffer": "^3.7"
  2961. },
  2962. "type": "library",
  2963. "autoload": {
  2964. "psr-4": {
  2965. "Complex\\": "classes/src/"
  2966. }
  2967. },
  2968. "notification-url": "https://packagist.org/downloads/",
  2969. "license": [
  2970. "MIT"
  2971. ],
  2972. "authors": [
  2973. {
  2974. "name": "Mark Baker",
  2975. "email": "mark@lange.demon.co.uk"
  2976. }
  2977. ],
  2978. "description": "PHP Class for working with complex numbers",
  2979. "homepage": "https://github.com/MarkBaker/PHPComplex",
  2980. "keywords": [
  2981. "complex",
  2982. "mathematics"
  2983. ],
  2984. "support": {
  2985. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  2986. "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.2"
  2987. },
  2988. "time": "2022-12-06T16:21:08+00:00"
  2989. },
  2990. {
  2991. "name": "markbaker/matrix",
  2992. "version": "3.0.1",
  2993. "source": {
  2994. "type": "git",
  2995. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  2996. "reference": "728434227fe21be27ff6d86621a1b13107a2562c"
  2997. },
  2998. "dist": {
  2999. "type": "zip",
  3000. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/728434227fe21be27ff6d86621a1b13107a2562c",
  3001. "reference": "728434227fe21be27ff6d86621a1b13107a2562c",
  3002. "shasum": "",
  3003. "mirrors": [
  3004. {
  3005. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3006. "preferred": true
  3007. }
  3008. ]
  3009. },
  3010. "require": {
  3011. "php": "^7.1 || ^8.0"
  3012. },
  3013. "require-dev": {
  3014. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  3015. "phpcompatibility/php-compatibility": "^9.3",
  3016. "phpdocumentor/phpdocumentor": "2.*",
  3017. "phploc/phploc": "^4.0",
  3018. "phpmd/phpmd": "2.*",
  3019. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  3020. "sebastian/phpcpd": "^4.0",
  3021. "squizlabs/php_codesniffer": "^3.7"
  3022. },
  3023. "type": "library",
  3024. "autoload": {
  3025. "psr-4": {
  3026. "Matrix\\": "classes/src/"
  3027. }
  3028. },
  3029. "notification-url": "https://packagist.org/downloads/",
  3030. "license": [
  3031. "MIT"
  3032. ],
  3033. "authors": [
  3034. {
  3035. "name": "Mark Baker",
  3036. "email": "mark@demon-angel.eu"
  3037. }
  3038. ],
  3039. "description": "PHP Class for working with matrices",
  3040. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  3041. "keywords": [
  3042. "mathematics",
  3043. "matrix",
  3044. "vector"
  3045. ],
  3046. "support": {
  3047. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  3048. "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.1"
  3049. },
  3050. "time": "2022-12-02T22:17:43+00:00"
  3051. },
  3052. {
  3053. "name": "mdanter/ecc",
  3054. "version": "v0.5.2",
  3055. "source": {
  3056. "type": "git",
  3057. "url": "https://github.com/phpecc/phpecc.git",
  3058. "reference": "b95f25cc1bacc83a9f0ccd375900b7cfd343029e"
  3059. },
  3060. "dist": {
  3061. "type": "zip",
  3062. "url": "https://api.github.com/repos/phpecc/phpecc/zipball/b95f25cc1bacc83a9f0ccd375900b7cfd343029e",
  3063. "reference": "b95f25cc1bacc83a9f0ccd375900b7cfd343029e",
  3064. "shasum": ""
  3065. },
  3066. "require": {
  3067. "ext-gmp": "*",
  3068. "fgrosse/phpasn1": "^2.0",
  3069. "php": "^7.0"
  3070. },
  3071. "require-dev": {
  3072. "phpunit/phpunit": "^6.0",
  3073. "squizlabs/php_codesniffer": "^2.0",
  3074. "symfony/yaml": "^2.6|^3.0"
  3075. },
  3076. "type": "library",
  3077. "autoload": {
  3078. "psr-4": {
  3079. "Mdanter\\Ecc\\": "src/"
  3080. }
  3081. },
  3082. "notification-url": "https://packagist.org/downloads/",
  3083. "license": [
  3084. "MIT"
  3085. ],
  3086. "authors": [
  3087. {
  3088. "name": "Matyas Danter",
  3089. "homepage": "http://matejdanter.com/",
  3090. "role": "Author"
  3091. },
  3092. {
  3093. "name": "Thibaud Fabre",
  3094. "email": "thibaud@aztech.io",
  3095. "homepage": "http://aztech.io",
  3096. "role": "Maintainer"
  3097. },
  3098. {
  3099. "name": "Thomas Kerin",
  3100. "email": "afk11@users.noreply.github.com",
  3101. "role": "Maintainer"
  3102. }
  3103. ],
  3104. "description": "PHP Elliptic Curve Cryptography library",
  3105. "homepage": "https://github.com/phpecc/phpecc",
  3106. "keywords": [
  3107. "Diffie",
  3108. "ECDSA",
  3109. "Hellman",
  3110. "curve",
  3111. "ecdh",
  3112. "elliptic",
  3113. "nistp192",
  3114. "nistp224",
  3115. "nistp256",
  3116. "nistp384",
  3117. "nistp521",
  3118. "phpecc",
  3119. "secp256k1",
  3120. "secp256r1"
  3121. ],
  3122. "support": {
  3123. "issues": "https://github.com/phpecc/phpecc/issues",
  3124. "source": "https://github.com/phpecc/phpecc/tree/master"
  3125. },
  3126. "abandoned": "paragonie/ecc",
  3127. "time": "2018-12-03T18:17:01+00:00"
  3128. },
  3129. {
  3130. "name": "monolog/monolog",
  3131. "version": "2.10.0",
  3132. "source": {
  3133. "type": "git",
  3134. "url": "https://github.com/Seldaek/monolog.git",
  3135. "reference": "5cf826f2991858b54d5c3809bee745560a1042a7"
  3136. },
  3137. "dist": {
  3138. "type": "zip",
  3139. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/5cf826f2991858b54d5c3809bee745560a1042a7",
  3140. "reference": "5cf826f2991858b54d5c3809bee745560a1042a7",
  3141. "shasum": "",
  3142. "mirrors": [
  3143. {
  3144. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3145. "preferred": true
  3146. }
  3147. ]
  3148. },
  3149. "require": {
  3150. "php": ">=7.2",
  3151. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  3152. },
  3153. "provide": {
  3154. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  3155. },
  3156. "require-dev": {
  3157. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  3158. "doctrine/couchdb": "~1.0@dev",
  3159. "elasticsearch/elasticsearch": "^7 || ^8",
  3160. "ext-json": "*",
  3161. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  3162. "guzzlehttp/guzzle": "^7.4",
  3163. "guzzlehttp/psr7": "^2.2",
  3164. "mongodb/mongodb": "^1.8",
  3165. "php-amqplib/php-amqplib": "~2.4 || ^3",
  3166. "phpspec/prophecy": "^1.15",
  3167. "phpstan/phpstan": "^1.10",
  3168. "phpunit/phpunit": "^8.5.38 || ^9.6.19",
  3169. "predis/predis": "^1.1 || ^2.0",
  3170. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  3171. "ruflin/elastica": "^7",
  3172. "swiftmailer/swiftmailer": "^5.3|^6.0",
  3173. "symfony/mailer": "^5.4 || ^6",
  3174. "symfony/mime": "^5.4 || ^6"
  3175. },
  3176. "suggest": {
  3177. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  3178. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  3179. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  3180. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  3181. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  3182. "ext-mbstring": "Allow to work properly with unicode symbols",
  3183. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  3184. "ext-openssl": "Required to send log messages using SSL",
  3185. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  3186. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  3187. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  3188. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  3189. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  3190. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  3191. },
  3192. "type": "library",
  3193. "extra": {
  3194. "branch-alias": {
  3195. "dev-main": "2.x-dev"
  3196. }
  3197. },
  3198. "autoload": {
  3199. "psr-4": {
  3200. "Monolog\\": "src/Monolog"
  3201. }
  3202. },
  3203. "notification-url": "https://packagist.org/downloads/",
  3204. "license": [
  3205. "MIT"
  3206. ],
  3207. "authors": [
  3208. {
  3209. "name": "Jordi Boggiano",
  3210. "email": "j.boggiano@seld.be",
  3211. "homepage": "https://seld.be"
  3212. }
  3213. ],
  3214. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  3215. "homepage": "https://github.com/Seldaek/monolog",
  3216. "keywords": [
  3217. "log",
  3218. "logging",
  3219. "psr-3"
  3220. ],
  3221. "support": {
  3222. "issues": "https://github.com/Seldaek/monolog/issues",
  3223. "source": "https://github.com/Seldaek/monolog/tree/2.10.0"
  3224. },
  3225. "funding": [
  3226. {
  3227. "url": "https://github.com/Seldaek",
  3228. "type": "github"
  3229. },
  3230. {
  3231. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  3232. "type": "tidelift"
  3233. }
  3234. ],
  3235. "time": "2024-11-12T12:43:37+00:00"
  3236. },
  3237. {
  3238. "name": "myclabs/php-enum",
  3239. "version": "1.8.4",
  3240. "source": {
  3241. "type": "git",
  3242. "url": "https://github.com/myclabs/php-enum.git",
  3243. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483"
  3244. },
  3245. "dist": {
  3246. "type": "zip",
  3247. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/a867478eae49c9f59ece437ae7f9506bfaa27483",
  3248. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483",
  3249. "shasum": "",
  3250. "mirrors": [
  3251. {
  3252. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3253. "preferred": true
  3254. }
  3255. ]
  3256. },
  3257. "require": {
  3258. "ext-json": "*",
  3259. "php": "^7.3 || ^8.0"
  3260. },
  3261. "require-dev": {
  3262. "phpunit/phpunit": "^9.5",
  3263. "squizlabs/php_codesniffer": "1.*",
  3264. "vimeo/psalm": "^4.6.2"
  3265. },
  3266. "type": "library",
  3267. "autoload": {
  3268. "psr-4": {
  3269. "MyCLabs\\Enum\\": "src/"
  3270. },
  3271. "classmap": [
  3272. "stubs/Stringable.php"
  3273. ]
  3274. },
  3275. "notification-url": "https://packagist.org/downloads/",
  3276. "license": [
  3277. "MIT"
  3278. ],
  3279. "authors": [
  3280. {
  3281. "name": "PHP Enum contributors",
  3282. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  3283. }
  3284. ],
  3285. "description": "PHP Enum implementation",
  3286. "homepage": "http://github.com/myclabs/php-enum",
  3287. "keywords": [
  3288. "enum"
  3289. ],
  3290. "support": {
  3291. "issues": "https://github.com/myclabs/php-enum/issues",
  3292. "source": "https://github.com/myclabs/php-enum/tree/1.8.4"
  3293. },
  3294. "funding": [
  3295. {
  3296. "url": "https://github.com/mnapoli",
  3297. "type": "github"
  3298. },
  3299. {
  3300. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  3301. "type": "tidelift"
  3302. }
  3303. ],
  3304. "time": "2022-08-04T09:53:51+00:00"
  3305. },
  3306. {
  3307. "name": "nesbot/carbon",
  3308. "version": "2.72.5",
  3309. "source": {
  3310. "type": "git",
  3311. "url": "https://github.com/briannesbitt/Carbon.git",
  3312. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed"
  3313. },
  3314. "dist": {
  3315. "type": "zip",
  3316. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/afd46589c216118ecd48ff2b95d77596af1e57ed",
  3317. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed",
  3318. "shasum": "",
  3319. "mirrors": [
  3320. {
  3321. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3322. "preferred": true
  3323. }
  3324. ]
  3325. },
  3326. "require": {
  3327. "carbonphp/carbon-doctrine-types": "*",
  3328. "ext-json": "*",
  3329. "php": "^7.1.8 || ^8.0",
  3330. "psr/clock": "^1.0",
  3331. "symfony/polyfill-mbstring": "^1.0",
  3332. "symfony/polyfill-php80": "^1.16",
  3333. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  3334. },
  3335. "provide": {
  3336. "psr/clock-implementation": "1.0"
  3337. },
  3338. "require-dev": {
  3339. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  3340. "doctrine/orm": "^2.7 || ^3.0",
  3341. "friendsofphp/php-cs-fixer": "^3.0",
  3342. "kylekatarnls/multi-tester": "^2.0",
  3343. "ondrejmirtes/better-reflection": "*",
  3344. "phpmd/phpmd": "^2.9",
  3345. "phpstan/extension-installer": "^1.0",
  3346. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  3347. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  3348. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  3349. "squizlabs/php_codesniffer": "^3.4"
  3350. },
  3351. "bin": [
  3352. "bin/carbon"
  3353. ],
  3354. "type": "library",
  3355. "extra": {
  3356. "branch-alias": {
  3357. "dev-master": "3.x-dev",
  3358. "dev-2.x": "2.x-dev"
  3359. },
  3360. "laravel": {
  3361. "providers": [
  3362. "Carbon\\Laravel\\ServiceProvider"
  3363. ]
  3364. },
  3365. "phpstan": {
  3366. "includes": [
  3367. "extension.neon"
  3368. ]
  3369. }
  3370. },
  3371. "autoload": {
  3372. "psr-4": {
  3373. "Carbon\\": "src/Carbon/"
  3374. }
  3375. },
  3376. "notification-url": "https://packagist.org/downloads/",
  3377. "license": [
  3378. "MIT"
  3379. ],
  3380. "authors": [
  3381. {
  3382. "name": "Brian Nesbitt",
  3383. "email": "brian@nesbot.com",
  3384. "homepage": "https://markido.com"
  3385. },
  3386. {
  3387. "name": "kylekatarnls",
  3388. "homepage": "https://github.com/kylekatarnls"
  3389. }
  3390. ],
  3391. "description": "An API extension for DateTime that supports 281 different languages.",
  3392. "homepage": "https://carbon.nesbot.com",
  3393. "keywords": [
  3394. "date",
  3395. "datetime",
  3396. "time"
  3397. ],
  3398. "support": {
  3399. "docs": "https://carbon.nesbot.com/docs",
  3400. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3401. "source": "https://github.com/briannesbitt/Carbon"
  3402. },
  3403. "funding": [
  3404. {
  3405. "url": "https://github.com/sponsors/kylekatarnls",
  3406. "type": "github"
  3407. },
  3408. {
  3409. "url": "https://opencollective.com/Carbon#sponsor",
  3410. "type": "opencollective"
  3411. },
  3412. {
  3413. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  3414. "type": "tidelift"
  3415. }
  3416. ],
  3417. "time": "2024-06-03T19:18:41+00:00"
  3418. },
  3419. {
  3420. "name": "nette/php-generator",
  3421. "version": "v3.6.9",
  3422. "source": {
  3423. "type": "git",
  3424. "url": "https://github.com/nette/php-generator.git",
  3425. "reference": "d31782f7bd2ae84ad06f863391ec3fb77ca4d0a6"
  3426. },
  3427. "dist": {
  3428. "type": "zip",
  3429. "url": "https://api.github.com/repos/nette/php-generator/zipball/d31782f7bd2ae84ad06f863391ec3fb77ca4d0a6",
  3430. "reference": "d31782f7bd2ae84ad06f863391ec3fb77ca4d0a6",
  3431. "shasum": "",
  3432. "mirrors": [
  3433. {
  3434. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3435. "preferred": true
  3436. }
  3437. ]
  3438. },
  3439. "require": {
  3440. "nette/utils": "^3.1.2",
  3441. "php": ">=7.2 <8.3"
  3442. },
  3443. "require-dev": {
  3444. "nette/tester": "^2.4",
  3445. "nikic/php-parser": "^4.13",
  3446. "phpstan/phpstan": "^0.12",
  3447. "tracy/tracy": "^2.8"
  3448. },
  3449. "suggest": {
  3450. "nikic/php-parser": "to use ClassType::withBodiesFrom() & GlobalFunction::withBodyFrom()"
  3451. },
  3452. "type": "library",
  3453. "extra": {
  3454. "branch-alias": {
  3455. "dev-master": "3.6-dev"
  3456. }
  3457. },
  3458. "autoload": {
  3459. "classmap": [
  3460. "src/"
  3461. ]
  3462. },
  3463. "notification-url": "https://packagist.org/downloads/",
  3464. "license": [
  3465. "BSD-3-Clause",
  3466. "GPL-2.0-only",
  3467. "GPL-3.0-only"
  3468. ],
  3469. "authors": [
  3470. {
  3471. "name": "David Grudl",
  3472. "homepage": "https://davidgrudl.com"
  3473. },
  3474. {
  3475. "name": "Nette Community",
  3476. "homepage": "https://nette.org/contributors"
  3477. }
  3478. ],
  3479. "description": "🐘 Nette PHP Generator: generates neat PHP code for you. Supports new PHP 8.1 features.",
  3480. "homepage": "https://nette.org",
  3481. "keywords": [
  3482. "code",
  3483. "nette",
  3484. "php",
  3485. "scaffolding"
  3486. ],
  3487. "support": {
  3488. "issues": "https://github.com/nette/php-generator/issues",
  3489. "source": "https://github.com/nette/php-generator/tree/v3.6.9"
  3490. },
  3491. "time": "2022-10-04T11:49:47+00:00"
  3492. },
  3493. {
  3494. "name": "nette/utils",
  3495. "version": "v3.2.10",
  3496. "source": {
  3497. "type": "git",
  3498. "url": "https://github.com/nette/utils.git",
  3499. "reference": "a4175c62652f2300c8017fb7e640f9ccb11648d2"
  3500. },
  3501. "dist": {
  3502. "type": "zip",
  3503. "url": "https://api.github.com/repos/nette/utils/zipball/a4175c62652f2300c8017fb7e640f9ccb11648d2",
  3504. "reference": "a4175c62652f2300c8017fb7e640f9ccb11648d2",
  3505. "shasum": "",
  3506. "mirrors": [
  3507. {
  3508. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3509. "preferred": true
  3510. }
  3511. ]
  3512. },
  3513. "require": {
  3514. "php": ">=7.2 <8.4"
  3515. },
  3516. "conflict": {
  3517. "nette/di": "<3.0.6"
  3518. },
  3519. "require-dev": {
  3520. "jetbrains/phpstorm-attributes": "dev-master",
  3521. "nette/tester": "~2.0",
  3522. "phpstan/phpstan": "^1.0",
  3523. "tracy/tracy": "^2.3"
  3524. },
  3525. "suggest": {
  3526. "ext-gd": "to use Image",
  3527. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  3528. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  3529. "ext-json": "to use Nette\\Utils\\Json",
  3530. "ext-mbstring": "to use Strings::lower() etc...",
  3531. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
  3532. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  3533. },
  3534. "type": "library",
  3535. "extra": {
  3536. "branch-alias": {
  3537. "dev-master": "3.2-dev"
  3538. }
  3539. },
  3540. "autoload": {
  3541. "classmap": [
  3542. "src/"
  3543. ]
  3544. },
  3545. "notification-url": "https://packagist.org/downloads/",
  3546. "license": [
  3547. "BSD-3-Clause",
  3548. "GPL-2.0-only",
  3549. "GPL-3.0-only"
  3550. ],
  3551. "authors": [
  3552. {
  3553. "name": "David Grudl",
  3554. "homepage": "https://davidgrudl.com"
  3555. },
  3556. {
  3557. "name": "Nette Community",
  3558. "homepage": "https://nette.org/contributors"
  3559. }
  3560. ],
  3561. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  3562. "homepage": "https://nette.org",
  3563. "keywords": [
  3564. "array",
  3565. "core",
  3566. "datetime",
  3567. "images",
  3568. "json",
  3569. "nette",
  3570. "paginator",
  3571. "password",
  3572. "slugify",
  3573. "string",
  3574. "unicode",
  3575. "utf-8",
  3576. "utility",
  3577. "validation"
  3578. ],
  3579. "support": {
  3580. "issues": "https://github.com/nette/utils/issues",
  3581. "source": "https://github.com/nette/utils/tree/v3.2.10"
  3582. },
  3583. "time": "2023-07-30T15:38:18+00:00"
  3584. },
  3585. {
  3586. "name": "open-smf/connection-pool",
  3587. "version": "v1.0.16",
  3588. "source": {
  3589. "type": "git",
  3590. "url": "https://github.com/open-smf/connection-pool.git",
  3591. "reference": "f70e47dbf56f1869d3207e15825cf38810b865e0"
  3592. },
  3593. "dist": {
  3594. "type": "zip",
  3595. "url": "https://api.github.com/repos/open-smf/connection-pool/zipball/f70e47dbf56f1869d3207e15825cf38810b865e0",
  3596. "reference": "f70e47dbf56f1869d3207e15825cf38810b865e0",
  3597. "shasum": "",
  3598. "mirrors": [
  3599. {
  3600. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3601. "preferred": true
  3602. }
  3603. ]
  3604. },
  3605. "require": {
  3606. "ext-json": "*",
  3607. "ext-swoole": ">=4.2.9",
  3608. "php": ">=7.0.0"
  3609. },
  3610. "require-dev": {
  3611. "swoole/ide-helper": "@dev"
  3612. },
  3613. "suggest": {
  3614. "ext-redis": "A PHP extension for Redis."
  3615. },
  3616. "type": "library",
  3617. "autoload": {
  3618. "psr-4": {
  3619. "Smf\\ConnectionPool\\": "src"
  3620. }
  3621. },
  3622. "notification-url": "https://packagist.org/downloads/",
  3623. "license": [
  3624. "MIT"
  3625. ],
  3626. "authors": [
  3627. {
  3628. "name": "Xie Biao",
  3629. "email": "hhxsv5@sina.com"
  3630. }
  3631. ],
  3632. "description": "A common connection pool based on Swoole is usually used as the database connection pool.",
  3633. "homepage": "https://github.com/open-smf/connection-pool",
  3634. "keywords": [
  3635. "connection-pool",
  3636. "database-connection-pool",
  3637. "swoole"
  3638. ],
  3639. "support": {
  3640. "issues": "https://github.com/open-smf/connection-pool/issues",
  3641. "source": "https://github.com/open-smf/connection-pool"
  3642. },
  3643. "time": "2021-03-01T04:13:24+00:00"
  3644. },
  3645. {
  3646. "name": "overtrue/socialite",
  3647. "version": "3.5.4",
  3648. "source": {
  3649. "type": "git",
  3650. "url": "https://github.com/overtrue/socialite.git",
  3651. "reference": "6bd4f0230bcaec5ccfd64a10581a9063233b5a48"
  3652. },
  3653. "dist": {
  3654. "type": "zip",
  3655. "url": "https://api.github.com/repos/overtrue/socialite/zipball/6bd4f0230bcaec5ccfd64a10581a9063233b5a48",
  3656. "reference": "6bd4f0230bcaec5ccfd64a10581a9063233b5a48",
  3657. "shasum": "",
  3658. "mirrors": [
  3659. {
  3660. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3661. "preferred": true
  3662. }
  3663. ]
  3664. },
  3665. "require": {
  3666. "ext-json": "*",
  3667. "ext-openssl": "*",
  3668. "guzzlehttp/guzzle": "~6.0|~7.0",
  3669. "php": ">=7.4",
  3670. "symfony/http-foundation": "^5.0",
  3671. "symfony/psr-http-message-bridge": "^2.0"
  3672. },
  3673. "require-dev": {
  3674. "friendsofphp/php-cs-fixer": "^3.0",
  3675. "mockery/mockery": "~1.2",
  3676. "phpunit/phpunit": "~9.0"
  3677. },
  3678. "type": "library",
  3679. "autoload": {
  3680. "psr-4": {
  3681. "Overtrue\\Socialite\\": "src/"
  3682. }
  3683. },
  3684. "notification-url": "https://packagist.org/downloads/",
  3685. "license": [
  3686. "MIT"
  3687. ],
  3688. "authors": [
  3689. {
  3690. "name": "overtrue",
  3691. "email": "anzhengchao@gmail.com"
  3692. }
  3693. ],
  3694. "description": "A collection of OAuth 2 packages.",
  3695. "keywords": [
  3696. "Feishu",
  3697. "login",
  3698. "oauth",
  3699. "qcloud",
  3700. "qq",
  3701. "social",
  3702. "wechat",
  3703. "weibo"
  3704. ],
  3705. "support": {
  3706. "issues": "https://github.com/overtrue/socialite/issues",
  3707. "source": "https://github.com/overtrue/socialite/tree/3.5.4"
  3708. },
  3709. "funding": [
  3710. {
  3711. "url": "https://github.com/overtrue",
  3712. "type": "github"
  3713. }
  3714. ],
  3715. "time": "2022-11-19T13:32:42+00:00"
  3716. },
  3717. {
  3718. "name": "overtrue/wechat",
  3719. "version": "5.30.0",
  3720. "source": {
  3721. "type": "git",
  3722. "url": "https://github.com/w7corp/easywechat.git",
  3723. "reference": "245d1e821bc5a4609625c3244b111f570692cfc2"
  3724. },
  3725. "dist": {
  3726. "type": "zip",
  3727. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/245d1e821bc5a4609625c3244b111f570692cfc2",
  3728. "reference": "245d1e821bc5a4609625c3244b111f570692cfc2",
  3729. "shasum": "",
  3730. "mirrors": [
  3731. {
  3732. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3733. "preferred": true
  3734. }
  3735. ]
  3736. },
  3737. "require": {
  3738. "easywechat-composer/easywechat-composer": "^1.1",
  3739. "ext-fileinfo": "*",
  3740. "ext-libxml": "*",
  3741. "ext-openssl": "*",
  3742. "ext-simplexml": "*",
  3743. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  3744. "monolog/monolog": "^1.22 || ^2.0",
  3745. "overtrue/socialite": "^3.2 || ^4.0",
  3746. "php": ">=7.4",
  3747. "pimple/pimple": "^3.0",
  3748. "psr/simple-cache": "^1.0||^2.0||^3.0",
  3749. "symfony/cache": "^3.3 || ^4.3 || ^5.0 || ^6.0",
  3750. "symfony/event-dispatcher": "^4.3 || ^5.0 || ^6.0",
  3751. "symfony/http-foundation": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0",
  3752. "symfony/psr-http-message-bridge": "^0.3 || ^1.0 || ^2.0"
  3753. },
  3754. "require-dev": {
  3755. "brainmaestro/composer-git-hooks": "^2.7",
  3756. "dms/phpunit-arraysubset-asserts": "^0.2.0",
  3757. "friendsofphp/php-cs-fixer": "^3.5.0",
  3758. "mikey179/vfsstream": "^1.6",
  3759. "mockery/mockery": "^1.2.3",
  3760. "phpstan/phpstan": "^0.12.0",
  3761. "phpunit/phpunit": "^9.3"
  3762. },
  3763. "type": "library",
  3764. "extra": {
  3765. "hooks": {
  3766. "pre-commit": [
  3767. "composer test",
  3768. "composer fix-style"
  3769. ],
  3770. "pre-push": [
  3771. "composer test",
  3772. "composer fix-style"
  3773. ]
  3774. }
  3775. },
  3776. "autoload": {
  3777. "files": [
  3778. "src/Kernel/Support/Helpers.php",
  3779. "src/Kernel/Helpers.php"
  3780. ],
  3781. "psr-4": {
  3782. "EasyWeChat\\": "src/"
  3783. }
  3784. },
  3785. "notification-url": "https://packagist.org/downloads/",
  3786. "license": [
  3787. "MIT"
  3788. ],
  3789. "authors": [
  3790. {
  3791. "name": "overtrue",
  3792. "email": "anzhengchao@gmail.com"
  3793. }
  3794. ],
  3795. "description": "微信SDK",
  3796. "keywords": [
  3797. "easywechat",
  3798. "sdk",
  3799. "wechat",
  3800. "weixin",
  3801. "weixin-sdk"
  3802. ],
  3803. "support": {
  3804. "issues": "https://github.com/w7corp/easywechat/issues",
  3805. "source": "https://github.com/w7corp/easywechat/tree/5.30.0"
  3806. },
  3807. "funding": [
  3808. {
  3809. "url": "https://github.com/overtrue",
  3810. "type": "github"
  3811. }
  3812. ],
  3813. "abandoned": "w7corp/easywechat",
  3814. "time": "2022-09-05T08:22:34+00:00"
  3815. },
  3816. {
  3817. "name": "phpoffice/phpspreadsheet",
  3818. "version": "1.29.4",
  3819. "source": {
  3820. "type": "git",
  3821. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  3822. "reference": "7ca7e325dca3adb6a598385aab81f527b8d6c75d"
  3823. },
  3824. "dist": {
  3825. "type": "zip",
  3826. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/7ca7e325dca3adb6a598385aab81f527b8d6c75d",
  3827. "reference": "7ca7e325dca3adb6a598385aab81f527b8d6c75d",
  3828. "shasum": "",
  3829. "mirrors": [
  3830. {
  3831. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3832. "preferred": true
  3833. }
  3834. ]
  3835. },
  3836. "require": {
  3837. "ext-ctype": "*",
  3838. "ext-dom": "*",
  3839. "ext-fileinfo": "*",
  3840. "ext-gd": "*",
  3841. "ext-iconv": "*",
  3842. "ext-libxml": "*",
  3843. "ext-mbstring": "*",
  3844. "ext-simplexml": "*",
  3845. "ext-xml": "*",
  3846. "ext-xmlreader": "*",
  3847. "ext-xmlwriter": "*",
  3848. "ext-zip": "*",
  3849. "ext-zlib": "*",
  3850. "ezyang/htmlpurifier": "^4.15",
  3851. "maennchen/zipstream-php": "^2.1 || ^3.0",
  3852. "markbaker/complex": "^3.0",
  3853. "markbaker/matrix": "^3.0",
  3854. "php": "^7.4 || ^8.0",
  3855. "psr/http-client": "^1.0",
  3856. "psr/http-factory": "^1.0",
  3857. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  3858. },
  3859. "require-dev": {
  3860. "dealerdirect/phpcodesniffer-composer-installer": "dev-main",
  3861. "dompdf/dompdf": "^1.0 || ^2.0",
  3862. "friendsofphp/php-cs-fixer": "^3.2",
  3863. "mitoteam/jpgraph": "^10.3",
  3864. "mpdf/mpdf": "^8.1.1",
  3865. "phpcompatibility/php-compatibility": "^9.3",
  3866. "phpstan/phpstan": "^1.1",
  3867. "phpstan/phpstan-phpunit": "^1.0",
  3868. "phpunit/phpunit": "^8.5 || ^9.0",
  3869. "squizlabs/php_codesniffer": "^3.7",
  3870. "tecnickcom/tcpdf": "^6.5"
  3871. },
  3872. "suggest": {
  3873. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  3874. "ext-intl": "PHP Internationalization Functions",
  3875. "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  3876. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  3877. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  3878. },
  3879. "type": "library",
  3880. "autoload": {
  3881. "psr-4": {
  3882. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  3883. }
  3884. },
  3885. "notification-url": "https://packagist.org/downloads/",
  3886. "license": [
  3887. "MIT"
  3888. ],
  3889. "authors": [
  3890. {
  3891. "name": "Maarten Balliauw",
  3892. "homepage": "https://blog.maartenballiauw.be"
  3893. },
  3894. {
  3895. "name": "Mark Baker",
  3896. "homepage": "https://markbakeruk.net"
  3897. },
  3898. {
  3899. "name": "Franck Lefevre",
  3900. "homepage": "https://rootslabs.net"
  3901. },
  3902. {
  3903. "name": "Erik Tilt"
  3904. },
  3905. {
  3906. "name": "Adrien Crivelli"
  3907. }
  3908. ],
  3909. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3910. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  3911. "keywords": [
  3912. "OpenXML",
  3913. "excel",
  3914. "gnumeric",
  3915. "ods",
  3916. "php",
  3917. "spreadsheet",
  3918. "xls",
  3919. "xlsx"
  3920. ],
  3921. "support": {
  3922. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  3923. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.29.4"
  3924. },
  3925. "time": "2024-11-10T16:26:22+00:00"
  3926. },
  3927. {
  3928. "name": "phpseclib/phpseclib",
  3929. "version": "2.0.48",
  3930. "source": {
  3931. "type": "git",
  3932. "url": "https://github.com/phpseclib/phpseclib.git",
  3933. "reference": "eaa7be704b8b93a6913b69eb7f645a59d7731b61"
  3934. },
  3935. "dist": {
  3936. "type": "zip",
  3937. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/eaa7be704b8b93a6913b69eb7f645a59d7731b61",
  3938. "reference": "eaa7be704b8b93a6913b69eb7f645a59d7731b61",
  3939. "shasum": ""
  3940. },
  3941. "require": {
  3942. "php": ">=5.3.3"
  3943. },
  3944. "require-dev": {
  3945. "phing/phing": "~2.7",
  3946. "phpunit/phpunit": "^4.8.35|^5.7|^6.0|^9.4",
  3947. "squizlabs/php_codesniffer": "~2.0"
  3948. },
  3949. "suggest": {
  3950. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  3951. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  3952. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  3953. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations.",
  3954. "ext-xml": "Install the XML extension to load XML formatted public keys."
  3955. },
  3956. "type": "library",
  3957. "autoload": {
  3958. "files": [
  3959. "phpseclib/bootstrap.php"
  3960. ],
  3961. "psr-4": {
  3962. "phpseclib\\": "phpseclib/"
  3963. }
  3964. },
  3965. "notification-url": "https://packagist.org/downloads/",
  3966. "license": [
  3967. "MIT"
  3968. ],
  3969. "authors": [
  3970. {
  3971. "name": "Jim Wigginton",
  3972. "email": "terrafrost@php.net",
  3973. "role": "Lead Developer"
  3974. },
  3975. {
  3976. "name": "Patrick Monnerat",
  3977. "email": "pm@datasphere.ch",
  3978. "role": "Developer"
  3979. },
  3980. {
  3981. "name": "Andreas Fischer",
  3982. "email": "bantu@phpbb.com",
  3983. "role": "Developer"
  3984. },
  3985. {
  3986. "name": "Hans-Jürgen Petrich",
  3987. "email": "petrich@tronic-media.com",
  3988. "role": "Developer"
  3989. },
  3990. {
  3991. "name": "Graham Campbell",
  3992. "email": "graham@alt-three.com",
  3993. "role": "Developer"
  3994. }
  3995. ],
  3996. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  3997. "homepage": "http://phpseclib.sourceforge.net",
  3998. "keywords": [
  3999. "BigInteger",
  4000. "aes",
  4001. "asn.1",
  4002. "asn1",
  4003. "blowfish",
  4004. "crypto",
  4005. "cryptography",
  4006. "encryption",
  4007. "rsa",
  4008. "security",
  4009. "sftp",
  4010. "signature",
  4011. "signing",
  4012. "ssh",
  4013. "twofish",
  4014. "x.509",
  4015. "x509"
  4016. ],
  4017. "support": {
  4018. "issues": "https://github.com/phpseclib/phpseclib/issues",
  4019. "source": "https://github.com/phpseclib/phpseclib/tree/2.0.48"
  4020. },
  4021. "funding": [
  4022. {
  4023. "url": "https://github.com/terrafrost",
  4024. "type": "github"
  4025. },
  4026. {
  4027. "url": "https://www.patreon.com/phpseclib",
  4028. "type": "patreon"
  4029. },
  4030. {
  4031. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  4032. "type": "tidelift"
  4033. }
  4034. ],
  4035. "time": "2024-12-14T21:03:54+00:00"
  4036. },
  4037. {
  4038. "name": "pimple/pimple",
  4039. "version": "v3.5.0",
  4040. "source": {
  4041. "type": "git",
  4042. "url": "https://github.com/silexphp/Pimple.git",
  4043. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed"
  4044. },
  4045. "dist": {
  4046. "type": "zip",
  4047. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  4048. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  4049. "shasum": "",
  4050. "mirrors": [
  4051. {
  4052. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4053. "preferred": true
  4054. }
  4055. ]
  4056. },
  4057. "require": {
  4058. "php": ">=7.2.5",
  4059. "psr/container": "^1.1 || ^2.0"
  4060. },
  4061. "require-dev": {
  4062. "symfony/phpunit-bridge": "^5.4@dev"
  4063. },
  4064. "type": "library",
  4065. "extra": {
  4066. "branch-alias": {
  4067. "dev-master": "3.4.x-dev"
  4068. }
  4069. },
  4070. "autoload": {
  4071. "psr-0": {
  4072. "Pimple": "src/"
  4073. }
  4074. },
  4075. "notification-url": "https://packagist.org/downloads/",
  4076. "license": [
  4077. "MIT"
  4078. ],
  4079. "authors": [
  4080. {
  4081. "name": "Fabien Potencier",
  4082. "email": "fabien@symfony.com"
  4083. }
  4084. ],
  4085. "description": "Pimple, a simple Dependency Injection Container",
  4086. "homepage": "https://pimple.symfony.com",
  4087. "keywords": [
  4088. "container",
  4089. "dependency injection"
  4090. ],
  4091. "support": {
  4092. "source": "https://github.com/silexphp/Pimple/tree/v3.5.0"
  4093. },
  4094. "time": "2021-10-28T11:13:42+00:00"
  4095. },
  4096. {
  4097. "name": "pleonasm/merkle-tree",
  4098. "version": "1.0.0",
  4099. "source": {
  4100. "type": "git",
  4101. "url": "https://github.com/pleonasm/merkle-tree.git",
  4102. "reference": "9ddc9d0a0e396750fada378f3aa90f6c02dd56a1"
  4103. },
  4104. "dist": {
  4105. "type": "zip",
  4106. "url": "https://api.github.com/repos/pleonasm/merkle-tree/zipball/9ddc9d0a0e396750fada378f3aa90f6c02dd56a1",
  4107. "reference": "9ddc9d0a0e396750fada378f3aa90f6c02dd56a1",
  4108. "shasum": ""
  4109. },
  4110. "require": {
  4111. "php": ">=5.4.0"
  4112. },
  4113. "require-dev": {
  4114. "ext-xdebug": ">=2.2.0",
  4115. "phpunit/php-invoker": ">=1.0.0,<1.2.0",
  4116. "phpunit/phpunit": "3.7.19",
  4117. "satooshi/php-coveralls": "*@dev",
  4118. "squizlabs/php_codesniffer": "*"
  4119. },
  4120. "type": "library",
  4121. "autoload": {
  4122. "psr-0": {
  4123. "Pleo": "src/"
  4124. }
  4125. },
  4126. "notification-url": "https://packagist.org/downloads/",
  4127. "license": [
  4128. "BSD-2-Clause"
  4129. ],
  4130. "authors": [
  4131. {
  4132. "name": "Matthew Nagi",
  4133. "email": "matthew.nagi@base-2.net"
  4134. }
  4135. ],
  4136. "description": "An implementation of a Merkle Tree in PHP",
  4137. "support": {
  4138. "issues": "https://github.com/pleonasm/merkle-tree/issues",
  4139. "source": "https://github.com/pleonasm/merkle-tree/tree/master"
  4140. },
  4141. "time": "2013-05-22T20:46:20+00:00"
  4142. },
  4143. {
  4144. "name": "psr/cache",
  4145. "version": "1.0.1",
  4146. "source": {
  4147. "type": "git",
  4148. "url": "https://github.com/php-fig/cache.git",
  4149. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  4150. },
  4151. "dist": {
  4152. "type": "zip",
  4153. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  4154. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  4155. "shasum": "",
  4156. "mirrors": [
  4157. {
  4158. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4159. "preferred": true
  4160. }
  4161. ]
  4162. },
  4163. "require": {
  4164. "php": ">=5.3.0"
  4165. },
  4166. "type": "library",
  4167. "extra": {
  4168. "branch-alias": {
  4169. "dev-master": "1.0.x-dev"
  4170. }
  4171. },
  4172. "autoload": {
  4173. "psr-4": {
  4174. "Psr\\Cache\\": "src/"
  4175. }
  4176. },
  4177. "notification-url": "https://packagist.org/downloads/",
  4178. "license": [
  4179. "MIT"
  4180. ],
  4181. "authors": [
  4182. {
  4183. "name": "PHP-FIG",
  4184. "homepage": "http://www.php-fig.org/"
  4185. }
  4186. ],
  4187. "description": "Common interface for caching libraries",
  4188. "keywords": [
  4189. "cache",
  4190. "psr",
  4191. "psr-6"
  4192. ],
  4193. "support": {
  4194. "source": "https://github.com/php-fig/cache/tree/master"
  4195. },
  4196. "time": "2016-08-06T20:24:11+00:00"
  4197. },
  4198. {
  4199. "name": "psr/clock",
  4200. "version": "1.0.0",
  4201. "source": {
  4202. "type": "git",
  4203. "url": "https://github.com/php-fig/clock.git",
  4204. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  4205. },
  4206. "dist": {
  4207. "type": "zip",
  4208. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  4209. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  4210. "shasum": "",
  4211. "mirrors": [
  4212. {
  4213. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4214. "preferred": true
  4215. }
  4216. ]
  4217. },
  4218. "require": {
  4219. "php": "^7.0 || ^8.0"
  4220. },
  4221. "type": "library",
  4222. "autoload": {
  4223. "psr-4": {
  4224. "Psr\\Clock\\": "src/"
  4225. }
  4226. },
  4227. "notification-url": "https://packagist.org/downloads/",
  4228. "license": [
  4229. "MIT"
  4230. ],
  4231. "authors": [
  4232. {
  4233. "name": "PHP-FIG",
  4234. "homepage": "https://www.php-fig.org/"
  4235. }
  4236. ],
  4237. "description": "Common interface for reading the clock.",
  4238. "homepage": "https://github.com/php-fig/clock",
  4239. "keywords": [
  4240. "clock",
  4241. "now",
  4242. "psr",
  4243. "psr-20",
  4244. "time"
  4245. ],
  4246. "support": {
  4247. "issues": "https://github.com/php-fig/clock/issues",
  4248. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  4249. },
  4250. "time": "2022-11-25T14:36:26+00:00"
  4251. },
  4252. {
  4253. "name": "psr/container",
  4254. "version": "1.1.2",
  4255. "source": {
  4256. "type": "git",
  4257. "url": "https://github.com/php-fig/container.git",
  4258. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  4259. },
  4260. "dist": {
  4261. "type": "zip",
  4262. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  4263. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  4264. "shasum": "",
  4265. "mirrors": [
  4266. {
  4267. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4268. "preferred": true
  4269. }
  4270. ]
  4271. },
  4272. "require": {
  4273. "php": ">=7.4.0"
  4274. },
  4275. "type": "library",
  4276. "autoload": {
  4277. "psr-4": {
  4278. "Psr\\Container\\": "src/"
  4279. }
  4280. },
  4281. "notification-url": "https://packagist.org/downloads/",
  4282. "license": [
  4283. "MIT"
  4284. ],
  4285. "authors": [
  4286. {
  4287. "name": "PHP-FIG",
  4288. "homepage": "https://www.php-fig.org/"
  4289. }
  4290. ],
  4291. "description": "Common Container Interface (PHP FIG PSR-11)",
  4292. "homepage": "https://github.com/php-fig/container",
  4293. "keywords": [
  4294. "PSR-11",
  4295. "container",
  4296. "container-interface",
  4297. "container-interop",
  4298. "psr"
  4299. ],
  4300. "support": {
  4301. "issues": "https://github.com/php-fig/container/issues",
  4302. "source": "https://github.com/php-fig/container/tree/1.1.2"
  4303. },
  4304. "time": "2021-11-05T16:50:12+00:00"
  4305. },
  4306. {
  4307. "name": "psr/event-dispatcher",
  4308. "version": "1.0.0",
  4309. "source": {
  4310. "type": "git",
  4311. "url": "https://github.com/php-fig/event-dispatcher.git",
  4312. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  4313. },
  4314. "dist": {
  4315. "type": "zip",
  4316. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4317. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4318. "shasum": "",
  4319. "mirrors": [
  4320. {
  4321. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4322. "preferred": true
  4323. }
  4324. ]
  4325. },
  4326. "require": {
  4327. "php": ">=7.2.0"
  4328. },
  4329. "type": "library",
  4330. "extra": {
  4331. "branch-alias": {
  4332. "dev-master": "1.0.x-dev"
  4333. }
  4334. },
  4335. "autoload": {
  4336. "psr-4": {
  4337. "Psr\\EventDispatcher\\": "src/"
  4338. }
  4339. },
  4340. "notification-url": "https://packagist.org/downloads/",
  4341. "license": [
  4342. "MIT"
  4343. ],
  4344. "authors": [
  4345. {
  4346. "name": "PHP-FIG",
  4347. "homepage": "http://www.php-fig.org/"
  4348. }
  4349. ],
  4350. "description": "Standard interfaces for event handling.",
  4351. "keywords": [
  4352. "events",
  4353. "psr",
  4354. "psr-14"
  4355. ],
  4356. "support": {
  4357. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  4358. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  4359. },
  4360. "time": "2019-01-08T18:20:26+00:00"
  4361. },
  4362. {
  4363. "name": "psr/http-client",
  4364. "version": "1.0.3",
  4365. "source": {
  4366. "type": "git",
  4367. "url": "https://github.com/php-fig/http-client.git",
  4368. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  4369. },
  4370. "dist": {
  4371. "type": "zip",
  4372. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  4373. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  4374. "shasum": "",
  4375. "mirrors": [
  4376. {
  4377. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4378. "preferred": true
  4379. }
  4380. ]
  4381. },
  4382. "require": {
  4383. "php": "^7.0 || ^8.0",
  4384. "psr/http-message": "^1.0 || ^2.0"
  4385. },
  4386. "type": "library",
  4387. "extra": {
  4388. "branch-alias": {
  4389. "dev-master": "1.0.x-dev"
  4390. }
  4391. },
  4392. "autoload": {
  4393. "psr-4": {
  4394. "Psr\\Http\\Client\\": "src/"
  4395. }
  4396. },
  4397. "notification-url": "https://packagist.org/downloads/",
  4398. "license": [
  4399. "MIT"
  4400. ],
  4401. "authors": [
  4402. {
  4403. "name": "PHP-FIG",
  4404. "homepage": "https://www.php-fig.org/"
  4405. }
  4406. ],
  4407. "description": "Common interface for HTTP clients",
  4408. "homepage": "https://github.com/php-fig/http-client",
  4409. "keywords": [
  4410. "http",
  4411. "http-client",
  4412. "psr",
  4413. "psr-18"
  4414. ],
  4415. "support": {
  4416. "source": "https://github.com/php-fig/http-client"
  4417. },
  4418. "time": "2023-09-23T14:17:50+00:00"
  4419. },
  4420. {
  4421. "name": "psr/http-factory",
  4422. "version": "1.0.2",
  4423. "source": {
  4424. "type": "git",
  4425. "url": "https://github.com/php-fig/http-factory.git",
  4426. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  4427. },
  4428. "dist": {
  4429. "type": "zip",
  4430. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  4431. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  4432. "shasum": "",
  4433. "mirrors": [
  4434. {
  4435. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4436. "preferred": true
  4437. }
  4438. ]
  4439. },
  4440. "require": {
  4441. "php": ">=7.0.0",
  4442. "psr/http-message": "^1.0 || ^2.0"
  4443. },
  4444. "type": "library",
  4445. "extra": {
  4446. "branch-alias": {
  4447. "dev-master": "1.0.x-dev"
  4448. }
  4449. },
  4450. "autoload": {
  4451. "psr-4": {
  4452. "Psr\\Http\\Message\\": "src/"
  4453. }
  4454. },
  4455. "notification-url": "https://packagist.org/downloads/",
  4456. "license": [
  4457. "MIT"
  4458. ],
  4459. "authors": [
  4460. {
  4461. "name": "PHP-FIG",
  4462. "homepage": "https://www.php-fig.org/"
  4463. }
  4464. ],
  4465. "description": "Common interfaces for PSR-7 HTTP message factories",
  4466. "keywords": [
  4467. "factory",
  4468. "http",
  4469. "message",
  4470. "psr",
  4471. "psr-17",
  4472. "psr-7",
  4473. "request",
  4474. "response"
  4475. ],
  4476. "support": {
  4477. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  4478. },
  4479. "time": "2023-04-10T20:10:41+00:00"
  4480. },
  4481. {
  4482. "name": "psr/http-message",
  4483. "version": "1.1",
  4484. "source": {
  4485. "type": "git",
  4486. "url": "https://github.com/php-fig/http-message.git",
  4487. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  4488. },
  4489. "dist": {
  4490. "type": "zip",
  4491. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  4492. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  4493. "shasum": "",
  4494. "mirrors": [
  4495. {
  4496. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4497. "preferred": true
  4498. }
  4499. ]
  4500. },
  4501. "require": {
  4502. "php": "^7.2 || ^8.0"
  4503. },
  4504. "type": "library",
  4505. "extra": {
  4506. "branch-alias": {
  4507. "dev-master": "1.1.x-dev"
  4508. }
  4509. },
  4510. "autoload": {
  4511. "psr-4": {
  4512. "Psr\\Http\\Message\\": "src/"
  4513. }
  4514. },
  4515. "notification-url": "https://packagist.org/downloads/",
  4516. "license": [
  4517. "MIT"
  4518. ],
  4519. "authors": [
  4520. {
  4521. "name": "PHP-FIG",
  4522. "homepage": "http://www.php-fig.org/"
  4523. }
  4524. ],
  4525. "description": "Common interface for HTTP messages",
  4526. "homepage": "https://github.com/php-fig/http-message",
  4527. "keywords": [
  4528. "http",
  4529. "http-message",
  4530. "psr",
  4531. "psr-7",
  4532. "request",
  4533. "response"
  4534. ],
  4535. "support": {
  4536. "source": "https://github.com/php-fig/http-message/tree/1.1"
  4537. },
  4538. "time": "2023-04-04T09:50:52+00:00"
  4539. },
  4540. {
  4541. "name": "psr/log",
  4542. "version": "1.1.4",
  4543. "source": {
  4544. "type": "git",
  4545. "url": "https://github.com/php-fig/log.git",
  4546. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  4547. },
  4548. "dist": {
  4549. "type": "zip",
  4550. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  4551. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  4552. "shasum": "",
  4553. "mirrors": [
  4554. {
  4555. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4556. "preferred": true
  4557. }
  4558. ]
  4559. },
  4560. "require": {
  4561. "php": ">=5.3.0"
  4562. },
  4563. "type": "library",
  4564. "extra": {
  4565. "branch-alias": {
  4566. "dev-master": "1.1.x-dev"
  4567. }
  4568. },
  4569. "autoload": {
  4570. "psr-4": {
  4571. "Psr\\Log\\": "Psr/Log/"
  4572. }
  4573. },
  4574. "notification-url": "https://packagist.org/downloads/",
  4575. "license": [
  4576. "MIT"
  4577. ],
  4578. "authors": [
  4579. {
  4580. "name": "PHP-FIG",
  4581. "homepage": "https://www.php-fig.org/"
  4582. }
  4583. ],
  4584. "description": "Common interface for logging libraries",
  4585. "homepage": "https://github.com/php-fig/log",
  4586. "keywords": [
  4587. "log",
  4588. "psr",
  4589. "psr-3"
  4590. ],
  4591. "support": {
  4592. "source": "https://github.com/php-fig/log/tree/1.1.4"
  4593. },
  4594. "time": "2021-05-03T11:20:27+00:00"
  4595. },
  4596. {
  4597. "name": "psr/simple-cache",
  4598. "version": "1.0.1",
  4599. "source": {
  4600. "type": "git",
  4601. "url": "https://github.com/php-fig/simple-cache.git",
  4602. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  4603. },
  4604. "dist": {
  4605. "type": "zip",
  4606. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4607. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4608. "shasum": "",
  4609. "mirrors": [
  4610. {
  4611. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4612. "preferred": true
  4613. }
  4614. ]
  4615. },
  4616. "require": {
  4617. "php": ">=5.3.0"
  4618. },
  4619. "type": "library",
  4620. "extra": {
  4621. "branch-alias": {
  4622. "dev-master": "1.0.x-dev"
  4623. }
  4624. },
  4625. "autoload": {
  4626. "psr-4": {
  4627. "Psr\\SimpleCache\\": "src/"
  4628. }
  4629. },
  4630. "notification-url": "https://packagist.org/downloads/",
  4631. "license": [
  4632. "MIT"
  4633. ],
  4634. "authors": [
  4635. {
  4636. "name": "PHP-FIG",
  4637. "homepage": "http://www.php-fig.org/"
  4638. }
  4639. ],
  4640. "description": "Common interfaces for simple caching",
  4641. "keywords": [
  4642. "cache",
  4643. "caching",
  4644. "psr",
  4645. "psr-16",
  4646. "simple-cache"
  4647. ],
  4648. "support": {
  4649. "source": "https://github.com/php-fig/simple-cache/tree/master"
  4650. },
  4651. "time": "2017-10-23T01:57:42+00:00"
  4652. },
  4653. {
  4654. "name": "qcloud/cos-sdk-v5",
  4655. "version": "v2.6.15",
  4656. "source": {
  4657. "type": "git",
  4658. "url": "https://github.com/tencentyun/cos-php-sdk-v5.git",
  4659. "reference": "17b973a388dc8848947054daace0fff8d2a4eee0"
  4660. },
  4661. "dist": {
  4662. "type": "zip",
  4663. "url": "https://api.github.com/repos/tencentyun/cos-php-sdk-v5/zipball/17b973a388dc8848947054daace0fff8d2a4eee0",
  4664. "reference": "17b973a388dc8848947054daace0fff8d2a4eee0",
  4665. "shasum": "",
  4666. "mirrors": [
  4667. {
  4668. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4669. "preferred": true
  4670. }
  4671. ]
  4672. },
  4673. "require": {
  4674. "ext-curl": "*",
  4675. "ext-json": "*",
  4676. "ext-libxml": "*",
  4677. "ext-mbstring": "*",
  4678. "ext-simplexml": "*",
  4679. "guzzlehttp/guzzle": "^6.2.1 || ^7.0",
  4680. "guzzlehttp/guzzle-services": "^1.1",
  4681. "guzzlehttp/psr7": "^1.3.1 || ^2.0",
  4682. "php": ">=5.6"
  4683. },
  4684. "type": "library",
  4685. "extra": {
  4686. "branch-alias": {
  4687. "dev-master": "2.4-dev"
  4688. }
  4689. },
  4690. "autoload": {
  4691. "files": [
  4692. "src/Common.php"
  4693. ],
  4694. "psr-4": {
  4695. "Qcloud\\Cos\\": "src/"
  4696. }
  4697. },
  4698. "notification-url": "https://packagist.org/downloads/",
  4699. "license": [
  4700. "MIT"
  4701. ],
  4702. "authors": [
  4703. {
  4704. "name": "yaozongyou",
  4705. "email": "yaozongyou@vip.qq.com"
  4706. },
  4707. {
  4708. "name": "lewzylu",
  4709. "email": "327874225@qq.com"
  4710. },
  4711. {
  4712. "name": "tuunalai",
  4713. "email": "550566181@qq.com"
  4714. }
  4715. ],
  4716. "description": "PHP SDK for QCloud COS",
  4717. "keywords": [
  4718. "cos",
  4719. "php",
  4720. "qcloud"
  4721. ],
  4722. "support": {
  4723. "issues": "https://github.com/tencentyun/cos-php-sdk-v5/issues",
  4724. "source": "https://github.com/tencentyun/cos-php-sdk-v5/tree/v2.6.15"
  4725. },
  4726. "time": "2024-11-08T09:31:12+00:00"
  4727. },
  4728. {
  4729. "name": "qiniu/php-sdk",
  4730. "version": "v7.14.0",
  4731. "source": {
  4732. "type": "git",
  4733. "url": "https://github.com/qiniu/php-sdk.git",
  4734. "reference": "ee752ffa7263ce99fca0bd7340cf13c486a3516c"
  4735. },
  4736. "dist": {
  4737. "type": "zip",
  4738. "url": "https://api.github.com/repos/qiniu/php-sdk/zipball/ee752ffa7263ce99fca0bd7340cf13c486a3516c",
  4739. "reference": "ee752ffa7263ce99fca0bd7340cf13c486a3516c",
  4740. "shasum": "",
  4741. "mirrors": [
  4742. {
  4743. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4744. "preferred": true
  4745. }
  4746. ]
  4747. },
  4748. "require": {
  4749. "ext-curl": "*",
  4750. "ext-xml": "*",
  4751. "myclabs/php-enum": "~1.5.2 || ~1.6.6 || ~1.7.7 || ~1.8.4",
  4752. "php": ">=5.3.3"
  4753. },
  4754. "require-dev": {
  4755. "paragonie/random_compat": ">=2",
  4756. "phpunit/phpunit": "^4.8 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.3.4",
  4757. "squizlabs/php_codesniffer": "^2.3 || ~3.6"
  4758. },
  4759. "type": "library",
  4760. "autoload": {
  4761. "files": [
  4762. "src/Qiniu/functions.php",
  4763. "src/Qiniu/Http/Middleware/Middleware.php"
  4764. ],
  4765. "psr-4": {
  4766. "Qiniu\\": "src/Qiniu"
  4767. }
  4768. },
  4769. "notification-url": "https://packagist.org/downloads/",
  4770. "license": [
  4771. "MIT"
  4772. ],
  4773. "authors": [
  4774. {
  4775. "name": "Qiniu",
  4776. "email": "sdk@qiniu.com",
  4777. "homepage": "http://www.qiniu.com"
  4778. }
  4779. ],
  4780. "description": "Qiniu Resource (Cloud) Storage SDK for PHP",
  4781. "homepage": "http://developer.qiniu.com/",
  4782. "keywords": [
  4783. "cloud",
  4784. "qiniu",
  4785. "sdk",
  4786. "storage"
  4787. ],
  4788. "support": {
  4789. "issues": "https://github.com/qiniu/php-sdk/issues",
  4790. "source": "https://github.com/qiniu/php-sdk/tree/v7.14.0"
  4791. },
  4792. "time": "2024-10-25T08:39:01+00:00"
  4793. },
  4794. {
  4795. "name": "ralouphie/getallheaders",
  4796. "version": "3.0.3",
  4797. "source": {
  4798. "type": "git",
  4799. "url": "https://github.com/ralouphie/getallheaders.git",
  4800. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4801. },
  4802. "dist": {
  4803. "type": "zip",
  4804. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4805. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4806. "shasum": "",
  4807. "mirrors": [
  4808. {
  4809. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4810. "preferred": true
  4811. }
  4812. ]
  4813. },
  4814. "require": {
  4815. "php": ">=5.6"
  4816. },
  4817. "require-dev": {
  4818. "php-coveralls/php-coveralls": "^2.1",
  4819. "phpunit/phpunit": "^5 || ^6.5"
  4820. },
  4821. "type": "library",
  4822. "autoload": {
  4823. "files": [
  4824. "src/getallheaders.php"
  4825. ]
  4826. },
  4827. "notification-url": "https://packagist.org/downloads/",
  4828. "license": [
  4829. "MIT"
  4830. ],
  4831. "authors": [
  4832. {
  4833. "name": "Ralph Khattar",
  4834. "email": "ralph.khattar@gmail.com"
  4835. }
  4836. ],
  4837. "description": "A polyfill for getallheaders.",
  4838. "support": {
  4839. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4840. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4841. },
  4842. "time": "2019-03-08T08:55:37+00:00"
  4843. },
  4844. {
  4845. "name": "react/promise",
  4846. "version": "v2.11.0",
  4847. "source": {
  4848. "type": "git",
  4849. "url": "https://github.com/reactphp/promise.git",
  4850. "reference": "1a8460931ea36dc5c76838fec5734d55c88c6831"
  4851. },
  4852. "dist": {
  4853. "type": "zip",
  4854. "url": "https://api.github.com/repos/reactphp/promise/zipball/1a8460931ea36dc5c76838fec5734d55c88c6831",
  4855. "reference": "1a8460931ea36dc5c76838fec5734d55c88c6831",
  4856. "shasum": "",
  4857. "mirrors": [
  4858. {
  4859. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4860. "preferred": true
  4861. }
  4862. ]
  4863. },
  4864. "require": {
  4865. "php": ">=5.4.0"
  4866. },
  4867. "require-dev": {
  4868. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  4869. },
  4870. "type": "library",
  4871. "autoload": {
  4872. "files": [
  4873. "src/functions_include.php"
  4874. ],
  4875. "psr-4": {
  4876. "React\\Promise\\": "src/"
  4877. }
  4878. },
  4879. "notification-url": "https://packagist.org/downloads/",
  4880. "license": [
  4881. "MIT"
  4882. ],
  4883. "authors": [
  4884. {
  4885. "name": "Jan Sorgalla",
  4886. "email": "jsorgalla@gmail.com",
  4887. "homepage": "https://sorgalla.com/"
  4888. },
  4889. {
  4890. "name": "Christian Lück",
  4891. "email": "christian@clue.engineering",
  4892. "homepage": "https://clue.engineering/"
  4893. },
  4894. {
  4895. "name": "Cees-Jan Kiewiet",
  4896. "email": "reactphp@ceesjankiewiet.nl",
  4897. "homepage": "https://wyrihaximus.net/"
  4898. },
  4899. {
  4900. "name": "Chris Boden",
  4901. "email": "cboden@gmail.com",
  4902. "homepage": "https://cboden.dev/"
  4903. }
  4904. ],
  4905. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  4906. "keywords": [
  4907. "promise",
  4908. "promises"
  4909. ],
  4910. "support": {
  4911. "issues": "https://github.com/reactphp/promise/issues",
  4912. "source": "https://github.com/reactphp/promise/tree/v2.11.0"
  4913. },
  4914. "funding": [
  4915. {
  4916. "url": "https://opencollective.com/reactphp",
  4917. "type": "open_collective"
  4918. }
  4919. ],
  4920. "time": "2023-11-16T16:16:50+00:00"
  4921. },
  4922. {
  4923. "name": "simplito/bigint-wrapper-php",
  4924. "version": "1.0.0",
  4925. "source": {
  4926. "type": "git",
  4927. "url": "https://github.com/simplito/bigint-wrapper-php.git",
  4928. "reference": "cf21ec76d33f103add487b3eadbd9f5033a25930"
  4929. },
  4930. "dist": {
  4931. "type": "zip",
  4932. "url": "https://api.github.com/repos/simplito/bigint-wrapper-php/zipball/cf21ec76d33f103add487b3eadbd9f5033a25930",
  4933. "reference": "cf21ec76d33f103add487b3eadbd9f5033a25930",
  4934. "shasum": ""
  4935. },
  4936. "type": "library",
  4937. "autoload": {
  4938. "psr-4": {
  4939. "BI\\": "lib/"
  4940. }
  4941. },
  4942. "notification-url": "https://packagist.org/downloads/",
  4943. "license": [
  4944. "MIT"
  4945. ],
  4946. "authors": [
  4947. {
  4948. "name": "Simplito Team",
  4949. "email": "s.smyczynski@simplito.com",
  4950. "homepage": "https://simplito.com"
  4951. }
  4952. ],
  4953. "description": "Common interface for php_gmp and php_bcmath modules",
  4954. "support": {
  4955. "issues": "https://github.com/simplito/bigint-wrapper-php/issues",
  4956. "source": "https://github.com/simplito/bigint-wrapper-php/tree/1.0.0"
  4957. },
  4958. "time": "2018-02-27T12:38:08+00:00"
  4959. },
  4960. {
  4961. "name": "simplito/bn-php",
  4962. "version": "1.1.4",
  4963. "source": {
  4964. "type": "git",
  4965. "url": "https://github.com/simplito/bn-php.git",
  4966. "reference": "83446756a81720eacc2ffb87ff97958431451fd6"
  4967. },
  4968. "dist": {
  4969. "type": "zip",
  4970. "url": "https://api.github.com/repos/simplito/bn-php/zipball/83446756a81720eacc2ffb87ff97958431451fd6",
  4971. "reference": "83446756a81720eacc2ffb87ff97958431451fd6",
  4972. "shasum": ""
  4973. },
  4974. "require": {
  4975. "simplito/bigint-wrapper-php": "~1.0.0"
  4976. },
  4977. "require-dev": {
  4978. "phpunit/phpunit": "*"
  4979. },
  4980. "type": "library",
  4981. "autoload": {
  4982. "psr-4": {
  4983. "BN\\": "lib/"
  4984. }
  4985. },
  4986. "notification-url": "https://packagist.org/downloads/",
  4987. "license": [
  4988. "MIT"
  4989. ],
  4990. "authors": [
  4991. {
  4992. "name": "Simplito Team",
  4993. "email": "s.smyczynski@simplito.com",
  4994. "homepage": "https://simplito.com"
  4995. }
  4996. ],
  4997. "description": "Big number implementation compatible with bn.js",
  4998. "support": {
  4999. "issues": "https://github.com/simplito/bn-php/issues",
  5000. "source": "https://github.com/simplito/bn-php/tree/1.1.4"
  5001. },
  5002. "time": "2024-01-10T16:16:59+00:00"
  5003. },
  5004. {
  5005. "name": "simplito/elliptic-php",
  5006. "version": "1.0.12",
  5007. "source": {
  5008. "type": "git",
  5009. "url": "https://github.com/simplito/elliptic-php.git",
  5010. "reference": "be321666781be2be2c89c79c43ffcac834bc8868"
  5011. },
  5012. "dist": {
  5013. "type": "zip",
  5014. "url": "https://api.github.com/repos/simplito/elliptic-php/zipball/be321666781be2be2c89c79c43ffcac834bc8868",
  5015. "reference": "be321666781be2be2c89c79c43ffcac834bc8868",
  5016. "shasum": ""
  5017. },
  5018. "require": {
  5019. "ext-gmp": "*",
  5020. "simplito/bn-php": "~1.1.0"
  5021. },
  5022. "require-dev": {
  5023. "phpbench/phpbench": "@dev",
  5024. "phpunit/phpunit": "*"
  5025. },
  5026. "type": "library",
  5027. "autoload": {
  5028. "psr-4": {
  5029. "Elliptic\\": "lib/"
  5030. }
  5031. },
  5032. "notification-url": "https://packagist.org/downloads/",
  5033. "license": [
  5034. "MIT"
  5035. ],
  5036. "authors": [
  5037. {
  5038. "name": "Simplito Team",
  5039. "email": "s.smyczynski@simplito.com",
  5040. "homepage": "https://simplito.com"
  5041. }
  5042. ],
  5043. "description": "Fast elliptic curve cryptography",
  5044. "homepage": "https://github.com/simplito/elliptic-php",
  5045. "keywords": [
  5046. "Curve25519",
  5047. "ECDSA",
  5048. "Ed25519",
  5049. "EdDSA",
  5050. "cryptography",
  5051. "curve",
  5052. "curve25519-weier",
  5053. "ecc",
  5054. "ecdh",
  5055. "elliptic",
  5056. "nistp192",
  5057. "nistp224",
  5058. "nistp256",
  5059. "nistp384",
  5060. "nistp521",
  5061. "secp256k1"
  5062. ],
  5063. "support": {
  5064. "issues": "https://github.com/simplito/elliptic-php/issues",
  5065. "source": "https://github.com/simplito/elliptic-php/tree/1.0.12"
  5066. },
  5067. "time": "2024-01-09T14:57:04+00:00"
  5068. },
  5069. {
  5070. "name": "stechstudio/backoff",
  5071. "version": "1.2.1",
  5072. "source": {
  5073. "type": "git",
  5074. "url": "https://github.com/stechstudio/backoff.git",
  5075. "reference": "7204cddf3f1afcd5368d74d52f4d8c447c5dc311"
  5076. },
  5077. "dist": {
  5078. "type": "zip",
  5079. "url": "https://api.github.com/repos/stechstudio/backoff/zipball/7204cddf3f1afcd5368d74d52f4d8c447c5dc311",
  5080. "reference": "7204cddf3f1afcd5368d74d52f4d8c447c5dc311",
  5081. "shasum": "",
  5082. "mirrors": [
  5083. {
  5084. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5085. "preferred": true
  5086. }
  5087. ]
  5088. },
  5089. "require-dev": {
  5090. "phpunit/phpunit": "^10.0"
  5091. },
  5092. "type": "library",
  5093. "autoload": {
  5094. "files": [
  5095. "src/helpers.php"
  5096. ],
  5097. "psr-4": {
  5098. "STS\\Backoff\\": "src"
  5099. }
  5100. },
  5101. "notification-url": "https://packagist.org/downloads/",
  5102. "license": [
  5103. "MIT"
  5104. ],
  5105. "authors": [
  5106. {
  5107. "name": "Joseph Szobody",
  5108. "email": "joseph@stechstudio.com"
  5109. }
  5110. ],
  5111. "description": "PHP library providing retry functionality with multiple backoff strategies and jitter support",
  5112. "support": {
  5113. "issues": "https://github.com/stechstudio/backoff/issues",
  5114. "source": "https://github.com/stechstudio/backoff/tree/1.2.1"
  5115. },
  5116. "time": "2024-03-07T21:00:19+00:00"
  5117. },
  5118. {
  5119. "name": "swoole/ide-helper",
  5120. "version": "4.8.13",
  5121. "source": {
  5122. "type": "git",
  5123. "url": "https://github.com/swoole/ide-helper.git",
  5124. "reference": "d100c446b2e3d56430cbcab5dc3fa20a9f35c4ef"
  5125. },
  5126. "dist": {
  5127. "type": "zip",
  5128. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/d100c446b2e3d56430cbcab5dc3fa20a9f35c4ef",
  5129. "reference": "d100c446b2e3d56430cbcab5dc3fa20a9f35c4ef",
  5130. "shasum": "",
  5131. "mirrors": [
  5132. {
  5133. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5134. "preferred": true
  5135. }
  5136. ]
  5137. },
  5138. "type": "library",
  5139. "notification-url": "https://packagist.org/downloads/",
  5140. "license": [
  5141. "Apache-2.0"
  5142. ],
  5143. "authors": [
  5144. {
  5145. "name": "Team Swoole",
  5146. "email": "team@swoole.com"
  5147. }
  5148. ],
  5149. "description": "IDE help files for Swoole.",
  5150. "support": {
  5151. "issues": "https://github.com/swoole/ide-helper/issues",
  5152. "source": "https://github.com/swoole/ide-helper/tree/4.8.13"
  5153. },
  5154. "time": "2023-03-20T06:46:24+00:00"
  5155. },
  5156. {
  5157. "name": "symfony/cache",
  5158. "version": "v5.4.46",
  5159. "source": {
  5160. "type": "git",
  5161. "url": "https://github.com/symfony/cache.git",
  5162. "reference": "0fe08ee32cec2748fbfea10c52d3ee02049e0f6b"
  5163. },
  5164. "dist": {
  5165. "type": "zip",
  5166. "url": "https://api.github.com/repos/symfony/cache/zipball/0fe08ee32cec2748fbfea10c52d3ee02049e0f6b",
  5167. "reference": "0fe08ee32cec2748fbfea10c52d3ee02049e0f6b",
  5168. "shasum": "",
  5169. "mirrors": [
  5170. {
  5171. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5172. "preferred": true
  5173. }
  5174. ]
  5175. },
  5176. "require": {
  5177. "php": ">=7.2.5",
  5178. "psr/cache": "^1.0|^2.0",
  5179. "psr/log": "^1.1|^2|^3",
  5180. "symfony/cache-contracts": "^1.1.7|^2",
  5181. "symfony/deprecation-contracts": "^2.1|^3",
  5182. "symfony/polyfill-php73": "^1.9",
  5183. "symfony/polyfill-php80": "^1.16",
  5184. "symfony/service-contracts": "^1.1|^2|^3",
  5185. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  5186. },
  5187. "conflict": {
  5188. "doctrine/dbal": "<2.13.1",
  5189. "symfony/dependency-injection": "<4.4",
  5190. "symfony/http-kernel": "<4.4",
  5191. "symfony/var-dumper": "<4.4"
  5192. },
  5193. "provide": {
  5194. "psr/cache-implementation": "1.0|2.0",
  5195. "psr/simple-cache-implementation": "1.0|2.0",
  5196. "symfony/cache-implementation": "1.0|2.0"
  5197. },
  5198. "require-dev": {
  5199. "cache/integration-tests": "dev-master",
  5200. "doctrine/cache": "^1.6|^2.0",
  5201. "doctrine/dbal": "^2.13.1|^3|^4",
  5202. "predis/predis": "^1.1|^2.0",
  5203. "psr/simple-cache": "^1.0|^2.0",
  5204. "symfony/config": "^4.4|^5.0|^6.0",
  5205. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5206. "symfony/filesystem": "^4.4|^5.0|^6.0",
  5207. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  5208. "symfony/messenger": "^4.4|^5.0|^6.0",
  5209. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  5210. },
  5211. "type": "library",
  5212. "autoload": {
  5213. "psr-4": {
  5214. "Symfony\\Component\\Cache\\": ""
  5215. },
  5216. "exclude-from-classmap": [
  5217. "/Tests/"
  5218. ]
  5219. },
  5220. "notification-url": "https://packagist.org/downloads/",
  5221. "license": [
  5222. "MIT"
  5223. ],
  5224. "authors": [
  5225. {
  5226. "name": "Nicolas Grekas",
  5227. "email": "p@tchwork.com"
  5228. },
  5229. {
  5230. "name": "Symfony Community",
  5231. "homepage": "https://symfony.com/contributors"
  5232. }
  5233. ],
  5234. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  5235. "homepage": "https://symfony.com",
  5236. "keywords": [
  5237. "caching",
  5238. "psr6"
  5239. ],
  5240. "support": {
  5241. "source": "https://github.com/symfony/cache/tree/v5.4.46"
  5242. },
  5243. "funding": [
  5244. {
  5245. "url": "https://symfony.com/sponsor",
  5246. "type": "custom"
  5247. },
  5248. {
  5249. "url": "https://github.com/fabpot",
  5250. "type": "github"
  5251. },
  5252. {
  5253. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5254. "type": "tidelift"
  5255. }
  5256. ],
  5257. "time": "2024-11-04T11:43:55+00:00"
  5258. },
  5259. {
  5260. "name": "symfony/cache-contracts",
  5261. "version": "v2.5.4",
  5262. "source": {
  5263. "type": "git",
  5264. "url": "https://github.com/symfony/cache-contracts.git",
  5265. "reference": "517c3a3619dadfa6952c4651767fcadffb4df65e"
  5266. },
  5267. "dist": {
  5268. "type": "zip",
  5269. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/517c3a3619dadfa6952c4651767fcadffb4df65e",
  5270. "reference": "517c3a3619dadfa6952c4651767fcadffb4df65e",
  5271. "shasum": "",
  5272. "mirrors": [
  5273. {
  5274. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5275. "preferred": true
  5276. }
  5277. ]
  5278. },
  5279. "require": {
  5280. "php": ">=7.2.5",
  5281. "psr/cache": "^1.0|^2.0|^3.0"
  5282. },
  5283. "suggest": {
  5284. "symfony/cache-implementation": ""
  5285. },
  5286. "type": "library",
  5287. "extra": {
  5288. "branch-alias": {
  5289. "dev-main": "2.5-dev"
  5290. },
  5291. "thanks": {
  5292. "name": "symfony/contracts",
  5293. "url": "https://github.com/symfony/contracts"
  5294. }
  5295. },
  5296. "autoload": {
  5297. "psr-4": {
  5298. "Symfony\\Contracts\\Cache\\": ""
  5299. }
  5300. },
  5301. "notification-url": "https://packagist.org/downloads/",
  5302. "license": [
  5303. "MIT"
  5304. ],
  5305. "authors": [
  5306. {
  5307. "name": "Nicolas Grekas",
  5308. "email": "p@tchwork.com"
  5309. },
  5310. {
  5311. "name": "Symfony Community",
  5312. "homepage": "https://symfony.com/contributors"
  5313. }
  5314. ],
  5315. "description": "Generic abstractions related to caching",
  5316. "homepage": "https://symfony.com",
  5317. "keywords": [
  5318. "abstractions",
  5319. "contracts",
  5320. "decoupling",
  5321. "interfaces",
  5322. "interoperability",
  5323. "standards"
  5324. ],
  5325. "support": {
  5326. "source": "https://github.com/symfony/cache-contracts/tree/v2.5.4"
  5327. },
  5328. "funding": [
  5329. {
  5330. "url": "https://symfony.com/sponsor",
  5331. "type": "custom"
  5332. },
  5333. {
  5334. "url": "https://github.com/fabpot",
  5335. "type": "github"
  5336. },
  5337. {
  5338. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5339. "type": "tidelift"
  5340. }
  5341. ],
  5342. "time": "2024-09-25T14:11:13+00:00"
  5343. },
  5344. {
  5345. "name": "symfony/deprecation-contracts",
  5346. "version": "v2.5.3",
  5347. "source": {
  5348. "type": "git",
  5349. "url": "https://github.com/symfony/deprecation-contracts.git",
  5350. "reference": "80d075412b557d41002320b96a096ca65aa2c98d"
  5351. },
  5352. "dist": {
  5353. "type": "zip",
  5354. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/80d075412b557d41002320b96a096ca65aa2c98d",
  5355. "reference": "80d075412b557d41002320b96a096ca65aa2c98d",
  5356. "shasum": "",
  5357. "mirrors": [
  5358. {
  5359. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5360. "preferred": true
  5361. }
  5362. ]
  5363. },
  5364. "require": {
  5365. "php": ">=7.1"
  5366. },
  5367. "type": "library",
  5368. "extra": {
  5369. "branch-alias": {
  5370. "dev-main": "2.5-dev"
  5371. },
  5372. "thanks": {
  5373. "name": "symfony/contracts",
  5374. "url": "https://github.com/symfony/contracts"
  5375. }
  5376. },
  5377. "autoload": {
  5378. "files": [
  5379. "function.php"
  5380. ]
  5381. },
  5382. "notification-url": "https://packagist.org/downloads/",
  5383. "license": [
  5384. "MIT"
  5385. ],
  5386. "authors": [
  5387. {
  5388. "name": "Nicolas Grekas",
  5389. "email": "p@tchwork.com"
  5390. },
  5391. {
  5392. "name": "Symfony Community",
  5393. "homepage": "https://symfony.com/contributors"
  5394. }
  5395. ],
  5396. "description": "A generic function and convention to trigger deprecation notices",
  5397. "homepage": "https://symfony.com",
  5398. "support": {
  5399. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.3"
  5400. },
  5401. "funding": [
  5402. {
  5403. "url": "https://symfony.com/sponsor",
  5404. "type": "custom"
  5405. },
  5406. {
  5407. "url": "https://github.com/fabpot",
  5408. "type": "github"
  5409. },
  5410. {
  5411. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5412. "type": "tidelift"
  5413. }
  5414. ],
  5415. "time": "2023-01-24T14:02:46+00:00"
  5416. },
  5417. {
  5418. "name": "symfony/event-dispatcher",
  5419. "version": "v5.4.45",
  5420. "source": {
  5421. "type": "git",
  5422. "url": "https://github.com/symfony/event-dispatcher.git",
  5423. "reference": "72982eb416f61003e9bb6e91f8b3213600dcf9e9"
  5424. },
  5425. "dist": {
  5426. "type": "zip",
  5427. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/72982eb416f61003e9bb6e91f8b3213600dcf9e9",
  5428. "reference": "72982eb416f61003e9bb6e91f8b3213600dcf9e9",
  5429. "shasum": "",
  5430. "mirrors": [
  5431. {
  5432. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5433. "preferred": true
  5434. }
  5435. ]
  5436. },
  5437. "require": {
  5438. "php": ">=7.2.5",
  5439. "symfony/deprecation-contracts": "^2.1|^3",
  5440. "symfony/event-dispatcher-contracts": "^2|^3",
  5441. "symfony/polyfill-php80": "^1.16"
  5442. },
  5443. "conflict": {
  5444. "symfony/dependency-injection": "<4.4"
  5445. },
  5446. "provide": {
  5447. "psr/event-dispatcher-implementation": "1.0",
  5448. "symfony/event-dispatcher-implementation": "2.0"
  5449. },
  5450. "require-dev": {
  5451. "psr/log": "^1|^2|^3",
  5452. "symfony/config": "^4.4|^5.0|^6.0",
  5453. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5454. "symfony/error-handler": "^4.4|^5.0|^6.0",
  5455. "symfony/expression-language": "^4.4|^5.0|^6.0",
  5456. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  5457. "symfony/service-contracts": "^1.1|^2|^3",
  5458. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  5459. },
  5460. "suggest": {
  5461. "symfony/dependency-injection": "",
  5462. "symfony/http-kernel": ""
  5463. },
  5464. "type": "library",
  5465. "autoload": {
  5466. "psr-4": {
  5467. "Symfony\\Component\\EventDispatcher\\": ""
  5468. },
  5469. "exclude-from-classmap": [
  5470. "/Tests/"
  5471. ]
  5472. },
  5473. "notification-url": "https://packagist.org/downloads/",
  5474. "license": [
  5475. "MIT"
  5476. ],
  5477. "authors": [
  5478. {
  5479. "name": "Fabien Potencier",
  5480. "email": "fabien@symfony.com"
  5481. },
  5482. {
  5483. "name": "Symfony Community",
  5484. "homepage": "https://symfony.com/contributors"
  5485. }
  5486. ],
  5487. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5488. "homepage": "https://symfony.com",
  5489. "support": {
  5490. "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.45"
  5491. },
  5492. "funding": [
  5493. {
  5494. "url": "https://symfony.com/sponsor",
  5495. "type": "custom"
  5496. },
  5497. {
  5498. "url": "https://github.com/fabpot",
  5499. "type": "github"
  5500. },
  5501. {
  5502. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5503. "type": "tidelift"
  5504. }
  5505. ],
  5506. "time": "2024-09-25T14:11:13+00:00"
  5507. },
  5508. {
  5509. "name": "symfony/event-dispatcher-contracts",
  5510. "version": "v2.5.4",
  5511. "source": {
  5512. "type": "git",
  5513. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5514. "reference": "e0fe3d79b516eb75126ac6fa4cbf19b79b08c99f"
  5515. },
  5516. "dist": {
  5517. "type": "zip",
  5518. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/e0fe3d79b516eb75126ac6fa4cbf19b79b08c99f",
  5519. "reference": "e0fe3d79b516eb75126ac6fa4cbf19b79b08c99f",
  5520. "shasum": "",
  5521. "mirrors": [
  5522. {
  5523. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5524. "preferred": true
  5525. }
  5526. ]
  5527. },
  5528. "require": {
  5529. "php": ">=7.2.5",
  5530. "psr/event-dispatcher": "^1"
  5531. },
  5532. "suggest": {
  5533. "symfony/event-dispatcher-implementation": ""
  5534. },
  5535. "type": "library",
  5536. "extra": {
  5537. "branch-alias": {
  5538. "dev-main": "2.5-dev"
  5539. },
  5540. "thanks": {
  5541. "name": "symfony/contracts",
  5542. "url": "https://github.com/symfony/contracts"
  5543. }
  5544. },
  5545. "autoload": {
  5546. "psr-4": {
  5547. "Symfony\\Contracts\\EventDispatcher\\": ""
  5548. }
  5549. },
  5550. "notification-url": "https://packagist.org/downloads/",
  5551. "license": [
  5552. "MIT"
  5553. ],
  5554. "authors": [
  5555. {
  5556. "name": "Nicolas Grekas",
  5557. "email": "p@tchwork.com"
  5558. },
  5559. {
  5560. "name": "Symfony Community",
  5561. "homepage": "https://symfony.com/contributors"
  5562. }
  5563. ],
  5564. "description": "Generic abstractions related to dispatching event",
  5565. "homepage": "https://symfony.com",
  5566. "keywords": [
  5567. "abstractions",
  5568. "contracts",
  5569. "decoupling",
  5570. "interfaces",
  5571. "interoperability",
  5572. "standards"
  5573. ],
  5574. "support": {
  5575. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.5.4"
  5576. },
  5577. "funding": [
  5578. {
  5579. "url": "https://symfony.com/sponsor",
  5580. "type": "custom"
  5581. },
  5582. {
  5583. "url": "https://github.com/fabpot",
  5584. "type": "github"
  5585. },
  5586. {
  5587. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5588. "type": "tidelift"
  5589. }
  5590. ],
  5591. "time": "2024-09-25T14:11:13+00:00"
  5592. },
  5593. {
  5594. "name": "symfony/finder",
  5595. "version": "v5.4.45",
  5596. "source": {
  5597. "type": "git",
  5598. "url": "https://github.com/symfony/finder.git",
  5599. "reference": "63741784cd7b9967975eec610b256eed3ede022b"
  5600. },
  5601. "dist": {
  5602. "type": "zip",
  5603. "url": "https://api.github.com/repos/symfony/finder/zipball/63741784cd7b9967975eec610b256eed3ede022b",
  5604. "reference": "63741784cd7b9967975eec610b256eed3ede022b",
  5605. "shasum": "",
  5606. "mirrors": [
  5607. {
  5608. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5609. "preferred": true
  5610. }
  5611. ]
  5612. },
  5613. "require": {
  5614. "php": ">=7.2.5",
  5615. "symfony/deprecation-contracts": "^2.1|^3",
  5616. "symfony/polyfill-php80": "^1.16"
  5617. },
  5618. "type": "library",
  5619. "autoload": {
  5620. "psr-4": {
  5621. "Symfony\\Component\\Finder\\": ""
  5622. },
  5623. "exclude-from-classmap": [
  5624. "/Tests/"
  5625. ]
  5626. },
  5627. "notification-url": "https://packagist.org/downloads/",
  5628. "license": [
  5629. "MIT"
  5630. ],
  5631. "authors": [
  5632. {
  5633. "name": "Fabien Potencier",
  5634. "email": "fabien@symfony.com"
  5635. },
  5636. {
  5637. "name": "Symfony Community",
  5638. "homepage": "https://symfony.com/contributors"
  5639. }
  5640. ],
  5641. "description": "Finds files and directories via an intuitive fluent interface",
  5642. "homepage": "https://symfony.com",
  5643. "support": {
  5644. "source": "https://github.com/symfony/finder/tree/v5.4.45"
  5645. },
  5646. "funding": [
  5647. {
  5648. "url": "https://symfony.com/sponsor",
  5649. "type": "custom"
  5650. },
  5651. {
  5652. "url": "https://github.com/fabpot",
  5653. "type": "github"
  5654. },
  5655. {
  5656. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5657. "type": "tidelift"
  5658. }
  5659. ],
  5660. "time": "2024-09-28T13:32:08+00:00"
  5661. },
  5662. {
  5663. "name": "symfony/http-client",
  5664. "version": "v5.4.47",
  5665. "source": {
  5666. "type": "git",
  5667. "url": "https://github.com/symfony/http-client.git",
  5668. "reference": "3b643b83f87e1765d2e9b1e946bb56ee0b4b7bde"
  5669. },
  5670. "dist": {
  5671. "type": "zip",
  5672. "url": "https://api.github.com/repos/symfony/http-client/zipball/3b643b83f87e1765d2e9b1e946bb56ee0b4b7bde",
  5673. "reference": "3b643b83f87e1765d2e9b1e946bb56ee0b4b7bde",
  5674. "shasum": "",
  5675. "mirrors": [
  5676. {
  5677. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5678. "preferred": true
  5679. }
  5680. ]
  5681. },
  5682. "require": {
  5683. "php": ">=7.2.5",
  5684. "psr/log": "^1|^2|^3",
  5685. "symfony/deprecation-contracts": "^2.1|^3",
  5686. "symfony/http-client-contracts": "^2.5.3",
  5687. "symfony/polyfill-php73": "^1.11",
  5688. "symfony/polyfill-php80": "^1.16",
  5689. "symfony/service-contracts": "^1.0|^2|^3"
  5690. },
  5691. "provide": {
  5692. "php-http/async-client-implementation": "*",
  5693. "php-http/client-implementation": "*",
  5694. "psr/http-client-implementation": "1.0",
  5695. "symfony/http-client-implementation": "2.4"
  5696. },
  5697. "require-dev": {
  5698. "amphp/amp": "^2.5",
  5699. "amphp/http-client": "^4.2.1",
  5700. "amphp/http-tunnel": "^1.0",
  5701. "amphp/socket": "^1.1",
  5702. "guzzlehttp/promises": "^1.4|^2.0",
  5703. "nyholm/psr7": "^1.0",
  5704. "php-http/httplug": "^1.0|^2.0",
  5705. "php-http/message-factory": "^1.0",
  5706. "psr/http-client": "^1.0",
  5707. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5708. "symfony/http-kernel": "^4.4.13|^5.1.5|^6.0",
  5709. "symfony/process": "^4.4|^5.0|^6.0",
  5710. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  5711. },
  5712. "type": "library",
  5713. "autoload": {
  5714. "psr-4": {
  5715. "Symfony\\Component\\HttpClient\\": ""
  5716. },
  5717. "exclude-from-classmap": [
  5718. "/Tests/"
  5719. ]
  5720. },
  5721. "notification-url": "https://packagist.org/downloads/",
  5722. "license": [
  5723. "MIT"
  5724. ],
  5725. "authors": [
  5726. {
  5727. "name": "Nicolas Grekas",
  5728. "email": "p@tchwork.com"
  5729. },
  5730. {
  5731. "name": "Symfony Community",
  5732. "homepage": "https://symfony.com/contributors"
  5733. }
  5734. ],
  5735. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  5736. "homepage": "https://symfony.com",
  5737. "keywords": [
  5738. "http"
  5739. ],
  5740. "support": {
  5741. "source": "https://github.com/symfony/http-client/tree/v5.4.47"
  5742. },
  5743. "funding": [
  5744. {
  5745. "url": "https://symfony.com/sponsor",
  5746. "type": "custom"
  5747. },
  5748. {
  5749. "url": "https://github.com/fabpot",
  5750. "type": "github"
  5751. },
  5752. {
  5753. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5754. "type": "tidelift"
  5755. }
  5756. ],
  5757. "time": "2024-11-13T12:18:12+00:00"
  5758. },
  5759. {
  5760. "name": "symfony/http-client-contracts",
  5761. "version": "v2.5.3",
  5762. "source": {
  5763. "type": "git",
  5764. "url": "https://github.com/symfony/http-client-contracts.git",
  5765. "reference": "e5cc97c2b4a4db0ba26bebc154f1426e3fd1d2f1"
  5766. },
  5767. "dist": {
  5768. "type": "zip",
  5769. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/e5cc97c2b4a4db0ba26bebc154f1426e3fd1d2f1",
  5770. "reference": "e5cc97c2b4a4db0ba26bebc154f1426e3fd1d2f1",
  5771. "shasum": "",
  5772. "mirrors": [
  5773. {
  5774. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5775. "preferred": true
  5776. }
  5777. ]
  5778. },
  5779. "require": {
  5780. "php": ">=7.2.5"
  5781. },
  5782. "suggest": {
  5783. "symfony/http-client-implementation": ""
  5784. },
  5785. "type": "library",
  5786. "extra": {
  5787. "branch-alias": {
  5788. "dev-main": "2.5-dev"
  5789. },
  5790. "thanks": {
  5791. "name": "symfony/contracts",
  5792. "url": "https://github.com/symfony/contracts"
  5793. }
  5794. },
  5795. "autoload": {
  5796. "psr-4": {
  5797. "Symfony\\Contracts\\HttpClient\\": ""
  5798. }
  5799. },
  5800. "notification-url": "https://packagist.org/downloads/",
  5801. "license": [
  5802. "MIT"
  5803. ],
  5804. "authors": [
  5805. {
  5806. "name": "Nicolas Grekas",
  5807. "email": "p@tchwork.com"
  5808. },
  5809. {
  5810. "name": "Symfony Community",
  5811. "homepage": "https://symfony.com/contributors"
  5812. }
  5813. ],
  5814. "description": "Generic abstractions related to HTTP clients",
  5815. "homepage": "https://symfony.com",
  5816. "keywords": [
  5817. "abstractions",
  5818. "contracts",
  5819. "decoupling",
  5820. "interfaces",
  5821. "interoperability",
  5822. "standards"
  5823. ],
  5824. "support": {
  5825. "source": "https://github.com/symfony/http-client-contracts/tree/v2.5.3"
  5826. },
  5827. "funding": [
  5828. {
  5829. "url": "https://symfony.com/sponsor",
  5830. "type": "custom"
  5831. },
  5832. {
  5833. "url": "https://github.com/fabpot",
  5834. "type": "github"
  5835. },
  5836. {
  5837. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5838. "type": "tidelift"
  5839. }
  5840. ],
  5841. "time": "2024-03-26T19:42:53+00:00"
  5842. },
  5843. {
  5844. "name": "symfony/http-foundation",
  5845. "version": "v5.4.48",
  5846. "source": {
  5847. "type": "git",
  5848. "url": "https://github.com/symfony/http-foundation.git",
  5849. "reference": "3f38b8af283b830e1363acd79e5bc3412d055341"
  5850. },
  5851. "dist": {
  5852. "type": "zip",
  5853. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/3f38b8af283b830e1363acd79e5bc3412d055341",
  5854. "reference": "3f38b8af283b830e1363acd79e5bc3412d055341",
  5855. "shasum": "",
  5856. "mirrors": [
  5857. {
  5858. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5859. "preferred": true
  5860. }
  5861. ]
  5862. },
  5863. "require": {
  5864. "php": ">=7.2.5",
  5865. "symfony/deprecation-contracts": "^2.1|^3",
  5866. "symfony/polyfill-mbstring": "~1.1",
  5867. "symfony/polyfill-php80": "^1.16"
  5868. },
  5869. "require-dev": {
  5870. "predis/predis": "^1.0|^2.0",
  5871. "symfony/cache": "^4.4|^5.0|^6.0",
  5872. "symfony/dependency-injection": "^5.4|^6.0",
  5873. "symfony/expression-language": "^4.4|^5.0|^6.0",
  5874. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  5875. "symfony/mime": "^4.4|^5.0|^6.0",
  5876. "symfony/rate-limiter": "^5.2|^6.0"
  5877. },
  5878. "suggest": {
  5879. "symfony/mime": "To use the file extension guesser"
  5880. },
  5881. "type": "library",
  5882. "autoload": {
  5883. "psr-4": {
  5884. "Symfony\\Component\\HttpFoundation\\": ""
  5885. },
  5886. "exclude-from-classmap": [
  5887. "/Tests/"
  5888. ]
  5889. },
  5890. "notification-url": "https://packagist.org/downloads/",
  5891. "license": [
  5892. "MIT"
  5893. ],
  5894. "authors": [
  5895. {
  5896. "name": "Fabien Potencier",
  5897. "email": "fabien@symfony.com"
  5898. },
  5899. {
  5900. "name": "Symfony Community",
  5901. "homepage": "https://symfony.com/contributors"
  5902. }
  5903. ],
  5904. "description": "Defines an object-oriented layer for the HTTP specification",
  5905. "homepage": "https://symfony.com",
  5906. "support": {
  5907. "source": "https://github.com/symfony/http-foundation/tree/v5.4.48"
  5908. },
  5909. "funding": [
  5910. {
  5911. "url": "https://symfony.com/sponsor",
  5912. "type": "custom"
  5913. },
  5914. {
  5915. "url": "https://github.com/fabpot",
  5916. "type": "github"
  5917. },
  5918. {
  5919. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5920. "type": "tidelift"
  5921. }
  5922. ],
  5923. "time": "2024-11-13T18:58:02+00:00"
  5924. },
  5925. {
  5926. "name": "symfony/polyfill-mbstring",
  5927. "version": "v1.31.0",
  5928. "source": {
  5929. "type": "git",
  5930. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5931. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  5932. },
  5933. "dist": {
  5934. "type": "zip",
  5935. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  5936. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  5937. "shasum": "",
  5938. "mirrors": [
  5939. {
  5940. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5941. "preferred": true
  5942. }
  5943. ]
  5944. },
  5945. "require": {
  5946. "php": ">=7.2"
  5947. },
  5948. "provide": {
  5949. "ext-mbstring": "*"
  5950. },
  5951. "suggest": {
  5952. "ext-mbstring": "For best performance"
  5953. },
  5954. "type": "library",
  5955. "extra": {
  5956. "thanks": {
  5957. "name": "symfony/polyfill",
  5958. "url": "https://github.com/symfony/polyfill"
  5959. }
  5960. },
  5961. "autoload": {
  5962. "files": [
  5963. "bootstrap.php"
  5964. ],
  5965. "psr-4": {
  5966. "Symfony\\Polyfill\\Mbstring\\": ""
  5967. }
  5968. },
  5969. "notification-url": "https://packagist.org/downloads/",
  5970. "license": [
  5971. "MIT"
  5972. ],
  5973. "authors": [
  5974. {
  5975. "name": "Nicolas Grekas",
  5976. "email": "p@tchwork.com"
  5977. },
  5978. {
  5979. "name": "Symfony Community",
  5980. "homepage": "https://symfony.com/contributors"
  5981. }
  5982. ],
  5983. "description": "Symfony polyfill for the Mbstring extension",
  5984. "homepage": "https://symfony.com",
  5985. "keywords": [
  5986. "compatibility",
  5987. "mbstring",
  5988. "polyfill",
  5989. "portable",
  5990. "shim"
  5991. ],
  5992. "support": {
  5993. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  5994. },
  5995. "funding": [
  5996. {
  5997. "url": "https://symfony.com/sponsor",
  5998. "type": "custom"
  5999. },
  6000. {
  6001. "url": "https://github.com/fabpot",
  6002. "type": "github"
  6003. },
  6004. {
  6005. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6006. "type": "tidelift"
  6007. }
  6008. ],
  6009. "time": "2024-09-09T11:45:10+00:00"
  6010. },
  6011. {
  6012. "name": "symfony/polyfill-php73",
  6013. "version": "v1.31.0",
  6014. "source": {
  6015. "type": "git",
  6016. "url": "https://github.com/symfony/polyfill-php73.git",
  6017. "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb"
  6018. },
  6019. "dist": {
  6020. "type": "zip",
  6021. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
  6022. "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
  6023. "shasum": "",
  6024. "mirrors": [
  6025. {
  6026. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6027. "preferred": true
  6028. }
  6029. ]
  6030. },
  6031. "require": {
  6032. "php": ">=7.2"
  6033. },
  6034. "type": "library",
  6035. "extra": {
  6036. "thanks": {
  6037. "name": "symfony/polyfill",
  6038. "url": "https://github.com/symfony/polyfill"
  6039. }
  6040. },
  6041. "autoload": {
  6042. "files": [
  6043. "bootstrap.php"
  6044. ],
  6045. "psr-4": {
  6046. "Symfony\\Polyfill\\Php73\\": ""
  6047. },
  6048. "classmap": [
  6049. "Resources/stubs"
  6050. ]
  6051. },
  6052. "notification-url": "https://packagist.org/downloads/",
  6053. "license": [
  6054. "MIT"
  6055. ],
  6056. "authors": [
  6057. {
  6058. "name": "Nicolas Grekas",
  6059. "email": "p@tchwork.com"
  6060. },
  6061. {
  6062. "name": "Symfony Community",
  6063. "homepage": "https://symfony.com/contributors"
  6064. }
  6065. ],
  6066. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  6067. "homepage": "https://symfony.com",
  6068. "keywords": [
  6069. "compatibility",
  6070. "polyfill",
  6071. "portable",
  6072. "shim"
  6073. ],
  6074. "support": {
  6075. "source": "https://github.com/symfony/polyfill-php73/tree/v1.31.0"
  6076. },
  6077. "funding": [
  6078. {
  6079. "url": "https://symfony.com/sponsor",
  6080. "type": "custom"
  6081. },
  6082. {
  6083. "url": "https://github.com/fabpot",
  6084. "type": "github"
  6085. },
  6086. {
  6087. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6088. "type": "tidelift"
  6089. }
  6090. ],
  6091. "time": "2024-09-09T11:45:10+00:00"
  6092. },
  6093. {
  6094. "name": "symfony/polyfill-php80",
  6095. "version": "v1.31.0",
  6096. "source": {
  6097. "type": "git",
  6098. "url": "https://github.com/symfony/polyfill-php80.git",
  6099. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  6100. },
  6101. "dist": {
  6102. "type": "zip",
  6103. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  6104. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  6105. "shasum": "",
  6106. "mirrors": [
  6107. {
  6108. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6109. "preferred": true
  6110. }
  6111. ]
  6112. },
  6113. "require": {
  6114. "php": ">=7.2"
  6115. },
  6116. "type": "library",
  6117. "extra": {
  6118. "thanks": {
  6119. "name": "symfony/polyfill",
  6120. "url": "https://github.com/symfony/polyfill"
  6121. }
  6122. },
  6123. "autoload": {
  6124. "files": [
  6125. "bootstrap.php"
  6126. ],
  6127. "psr-4": {
  6128. "Symfony\\Polyfill\\Php80\\": ""
  6129. },
  6130. "classmap": [
  6131. "Resources/stubs"
  6132. ]
  6133. },
  6134. "notification-url": "https://packagist.org/downloads/",
  6135. "license": [
  6136. "MIT"
  6137. ],
  6138. "authors": [
  6139. {
  6140. "name": "Ion Bazan",
  6141. "email": "ion.bazan@gmail.com"
  6142. },
  6143. {
  6144. "name": "Nicolas Grekas",
  6145. "email": "p@tchwork.com"
  6146. },
  6147. {
  6148. "name": "Symfony Community",
  6149. "homepage": "https://symfony.com/contributors"
  6150. }
  6151. ],
  6152. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6153. "homepage": "https://symfony.com",
  6154. "keywords": [
  6155. "compatibility",
  6156. "polyfill",
  6157. "portable",
  6158. "shim"
  6159. ],
  6160. "support": {
  6161. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  6162. },
  6163. "funding": [
  6164. {
  6165. "url": "https://symfony.com/sponsor",
  6166. "type": "custom"
  6167. },
  6168. {
  6169. "url": "https://github.com/fabpot",
  6170. "type": "github"
  6171. },
  6172. {
  6173. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6174. "type": "tidelift"
  6175. }
  6176. ],
  6177. "time": "2024-09-09T11:45:10+00:00"
  6178. },
  6179. {
  6180. "name": "symfony/process",
  6181. "version": "v5.4.46",
  6182. "source": {
  6183. "type": "git",
  6184. "url": "https://github.com/symfony/process.git",
  6185. "reference": "01906871cb9b5e3cf872863b91aba4ec9767daf4"
  6186. },
  6187. "dist": {
  6188. "type": "zip",
  6189. "url": "https://api.github.com/repos/symfony/process/zipball/01906871cb9b5e3cf872863b91aba4ec9767daf4",
  6190. "reference": "01906871cb9b5e3cf872863b91aba4ec9767daf4",
  6191. "shasum": "",
  6192. "mirrors": [
  6193. {
  6194. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6195. "preferred": true
  6196. }
  6197. ]
  6198. },
  6199. "require": {
  6200. "php": ">=7.2.5",
  6201. "symfony/polyfill-php80": "^1.16"
  6202. },
  6203. "type": "library",
  6204. "autoload": {
  6205. "psr-4": {
  6206. "Symfony\\Component\\Process\\": ""
  6207. },
  6208. "exclude-from-classmap": [
  6209. "/Tests/"
  6210. ]
  6211. },
  6212. "notification-url": "https://packagist.org/downloads/",
  6213. "license": [
  6214. "MIT"
  6215. ],
  6216. "authors": [
  6217. {
  6218. "name": "Fabien Potencier",
  6219. "email": "fabien@symfony.com"
  6220. },
  6221. {
  6222. "name": "Symfony Community",
  6223. "homepage": "https://symfony.com/contributors"
  6224. }
  6225. ],
  6226. "description": "Executes commands in sub-processes",
  6227. "homepage": "https://symfony.com",
  6228. "support": {
  6229. "source": "https://github.com/symfony/process/tree/v5.4.46"
  6230. },
  6231. "funding": [
  6232. {
  6233. "url": "https://symfony.com/sponsor",
  6234. "type": "custom"
  6235. },
  6236. {
  6237. "url": "https://github.com/fabpot",
  6238. "type": "github"
  6239. },
  6240. {
  6241. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6242. "type": "tidelift"
  6243. }
  6244. ],
  6245. "time": "2024-11-06T09:18:28+00:00"
  6246. },
  6247. {
  6248. "name": "symfony/psr-http-message-bridge",
  6249. "version": "v2.3.1",
  6250. "source": {
  6251. "type": "git",
  6252. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  6253. "reference": "581ca6067eb62640de5ff08ee1ba6850a0ee472e"
  6254. },
  6255. "dist": {
  6256. "type": "zip",
  6257. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/581ca6067eb62640de5ff08ee1ba6850a0ee472e",
  6258. "reference": "581ca6067eb62640de5ff08ee1ba6850a0ee472e",
  6259. "shasum": "",
  6260. "mirrors": [
  6261. {
  6262. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6263. "preferred": true
  6264. }
  6265. ]
  6266. },
  6267. "require": {
  6268. "php": ">=7.2.5",
  6269. "psr/http-message": "^1.0 || ^2.0",
  6270. "symfony/deprecation-contracts": "^2.5 || ^3.0",
  6271. "symfony/http-foundation": "^5.4 || ^6.0"
  6272. },
  6273. "require-dev": {
  6274. "nyholm/psr7": "^1.1",
  6275. "psr/log": "^1.1 || ^2 || ^3",
  6276. "symfony/browser-kit": "^5.4 || ^6.0",
  6277. "symfony/config": "^5.4 || ^6.0",
  6278. "symfony/event-dispatcher": "^5.4 || ^6.0",
  6279. "symfony/framework-bundle": "^5.4 || ^6.0",
  6280. "symfony/http-kernel": "^5.4 || ^6.0",
  6281. "symfony/phpunit-bridge": "^6.2"
  6282. },
  6283. "suggest": {
  6284. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  6285. },
  6286. "type": "symfony-bridge",
  6287. "extra": {
  6288. "branch-alias": {
  6289. "dev-main": "2.3-dev"
  6290. }
  6291. },
  6292. "autoload": {
  6293. "psr-4": {
  6294. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  6295. },
  6296. "exclude-from-classmap": [
  6297. "/Tests/"
  6298. ]
  6299. },
  6300. "notification-url": "https://packagist.org/downloads/",
  6301. "license": [
  6302. "MIT"
  6303. ],
  6304. "authors": [
  6305. {
  6306. "name": "Fabien Potencier",
  6307. "email": "fabien@symfony.com"
  6308. },
  6309. {
  6310. "name": "Symfony Community",
  6311. "homepage": "http://symfony.com/contributors"
  6312. }
  6313. ],
  6314. "description": "PSR HTTP message bridge",
  6315. "homepage": "http://symfony.com",
  6316. "keywords": [
  6317. "http",
  6318. "http-message",
  6319. "psr-17",
  6320. "psr-7"
  6321. ],
  6322. "support": {
  6323. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  6324. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.3.1"
  6325. },
  6326. "funding": [
  6327. {
  6328. "url": "https://symfony.com/sponsor",
  6329. "type": "custom"
  6330. },
  6331. {
  6332. "url": "https://github.com/fabpot",
  6333. "type": "github"
  6334. },
  6335. {
  6336. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6337. "type": "tidelift"
  6338. }
  6339. ],
  6340. "time": "2023-07-26T11:53:26+00:00"
  6341. },
  6342. {
  6343. "name": "symfony/service-contracts",
  6344. "version": "v2.5.3",
  6345. "source": {
  6346. "type": "git",
  6347. "url": "https://github.com/symfony/service-contracts.git",
  6348. "reference": "a2329596ddc8fd568900e3fc76cba42489ecc7f3"
  6349. },
  6350. "dist": {
  6351. "type": "zip",
  6352. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/a2329596ddc8fd568900e3fc76cba42489ecc7f3",
  6353. "reference": "a2329596ddc8fd568900e3fc76cba42489ecc7f3",
  6354. "shasum": "",
  6355. "mirrors": [
  6356. {
  6357. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6358. "preferred": true
  6359. }
  6360. ]
  6361. },
  6362. "require": {
  6363. "php": ">=7.2.5",
  6364. "psr/container": "^1.1",
  6365. "symfony/deprecation-contracts": "^2.1|^3"
  6366. },
  6367. "conflict": {
  6368. "ext-psr": "<1.1|>=2"
  6369. },
  6370. "suggest": {
  6371. "symfony/service-implementation": ""
  6372. },
  6373. "type": "library",
  6374. "extra": {
  6375. "branch-alias": {
  6376. "dev-main": "2.5-dev"
  6377. },
  6378. "thanks": {
  6379. "name": "symfony/contracts",
  6380. "url": "https://github.com/symfony/contracts"
  6381. }
  6382. },
  6383. "autoload": {
  6384. "psr-4": {
  6385. "Symfony\\Contracts\\Service\\": ""
  6386. }
  6387. },
  6388. "notification-url": "https://packagist.org/downloads/",
  6389. "license": [
  6390. "MIT"
  6391. ],
  6392. "authors": [
  6393. {
  6394. "name": "Nicolas Grekas",
  6395. "email": "p@tchwork.com"
  6396. },
  6397. {
  6398. "name": "Symfony Community",
  6399. "homepage": "https://symfony.com/contributors"
  6400. }
  6401. ],
  6402. "description": "Generic abstractions related to writing services",
  6403. "homepage": "https://symfony.com",
  6404. "keywords": [
  6405. "abstractions",
  6406. "contracts",
  6407. "decoupling",
  6408. "interfaces",
  6409. "interoperability",
  6410. "standards"
  6411. ],
  6412. "support": {
  6413. "source": "https://github.com/symfony/service-contracts/tree/v2.5.3"
  6414. },
  6415. "funding": [
  6416. {
  6417. "url": "https://symfony.com/sponsor",
  6418. "type": "custom"
  6419. },
  6420. {
  6421. "url": "https://github.com/fabpot",
  6422. "type": "github"
  6423. },
  6424. {
  6425. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6426. "type": "tidelift"
  6427. }
  6428. ],
  6429. "time": "2023-04-21T15:04:16+00:00"
  6430. },
  6431. {
  6432. "name": "symfony/translation",
  6433. "version": "v5.4.45",
  6434. "source": {
  6435. "type": "git",
  6436. "url": "https://github.com/symfony/translation.git",
  6437. "reference": "98f26acc99341ca4bab345fb14d7b1d7cb825bed"
  6438. },
  6439. "dist": {
  6440. "type": "zip",
  6441. "url": "https://api.github.com/repos/symfony/translation/zipball/98f26acc99341ca4bab345fb14d7b1d7cb825bed",
  6442. "reference": "98f26acc99341ca4bab345fb14d7b1d7cb825bed",
  6443. "shasum": "",
  6444. "mirrors": [
  6445. {
  6446. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6447. "preferred": true
  6448. }
  6449. ]
  6450. },
  6451. "require": {
  6452. "php": ">=7.2.5",
  6453. "symfony/deprecation-contracts": "^2.1|^3",
  6454. "symfony/polyfill-mbstring": "~1.0",
  6455. "symfony/polyfill-php80": "^1.16",
  6456. "symfony/translation-contracts": "^2.3"
  6457. },
  6458. "conflict": {
  6459. "symfony/config": "<4.4",
  6460. "symfony/console": "<5.3",
  6461. "symfony/dependency-injection": "<5.0",
  6462. "symfony/http-kernel": "<5.0",
  6463. "symfony/twig-bundle": "<5.0",
  6464. "symfony/yaml": "<4.4"
  6465. },
  6466. "provide": {
  6467. "symfony/translation-implementation": "2.3"
  6468. },
  6469. "require-dev": {
  6470. "psr/log": "^1|^2|^3",
  6471. "symfony/config": "^4.4|^5.0|^6.0",
  6472. "symfony/console": "^5.4|^6.0",
  6473. "symfony/dependency-injection": "^5.0|^6.0",
  6474. "symfony/finder": "^4.4|^5.0|^6.0",
  6475. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  6476. "symfony/http-kernel": "^5.0|^6.0",
  6477. "symfony/intl": "^4.4|^5.0|^6.0",
  6478. "symfony/polyfill-intl-icu": "^1.21",
  6479. "symfony/service-contracts": "^1.1.2|^2|^3",
  6480. "symfony/yaml": "^4.4|^5.0|^6.0"
  6481. },
  6482. "suggest": {
  6483. "psr/log-implementation": "To use logging capability in translator",
  6484. "symfony/config": "",
  6485. "symfony/yaml": ""
  6486. },
  6487. "type": "library",
  6488. "autoload": {
  6489. "files": [
  6490. "Resources/functions.php"
  6491. ],
  6492. "psr-4": {
  6493. "Symfony\\Component\\Translation\\": ""
  6494. },
  6495. "exclude-from-classmap": [
  6496. "/Tests/"
  6497. ]
  6498. },
  6499. "notification-url": "https://packagist.org/downloads/",
  6500. "license": [
  6501. "MIT"
  6502. ],
  6503. "authors": [
  6504. {
  6505. "name": "Fabien Potencier",
  6506. "email": "fabien@symfony.com"
  6507. },
  6508. {
  6509. "name": "Symfony Community",
  6510. "homepage": "https://symfony.com/contributors"
  6511. }
  6512. ],
  6513. "description": "Provides tools to internationalize your application",
  6514. "homepage": "https://symfony.com",
  6515. "support": {
  6516. "source": "https://github.com/symfony/translation/tree/v5.4.45"
  6517. },
  6518. "funding": [
  6519. {
  6520. "url": "https://symfony.com/sponsor",
  6521. "type": "custom"
  6522. },
  6523. {
  6524. "url": "https://github.com/fabpot",
  6525. "type": "github"
  6526. },
  6527. {
  6528. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6529. "type": "tidelift"
  6530. }
  6531. ],
  6532. "time": "2024-09-25T14:11:13+00:00"
  6533. },
  6534. {
  6535. "name": "symfony/translation-contracts",
  6536. "version": "v2.5.3",
  6537. "source": {
  6538. "type": "git",
  6539. "url": "https://github.com/symfony/translation-contracts.git",
  6540. "reference": "b0073a77ac0b7ea55131020e87b1e3af540f4664"
  6541. },
  6542. "dist": {
  6543. "type": "zip",
  6544. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b0073a77ac0b7ea55131020e87b1e3af540f4664",
  6545. "reference": "b0073a77ac0b7ea55131020e87b1e3af540f4664",
  6546. "shasum": "",
  6547. "mirrors": [
  6548. {
  6549. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6550. "preferred": true
  6551. }
  6552. ]
  6553. },
  6554. "require": {
  6555. "php": ">=7.2.5"
  6556. },
  6557. "suggest": {
  6558. "symfony/translation-implementation": ""
  6559. },
  6560. "type": "library",
  6561. "extra": {
  6562. "branch-alias": {
  6563. "dev-main": "2.5-dev"
  6564. },
  6565. "thanks": {
  6566. "name": "symfony/contracts",
  6567. "url": "https://github.com/symfony/contracts"
  6568. }
  6569. },
  6570. "autoload": {
  6571. "psr-4": {
  6572. "Symfony\\Contracts\\Translation\\": ""
  6573. }
  6574. },
  6575. "notification-url": "https://packagist.org/downloads/",
  6576. "license": [
  6577. "MIT"
  6578. ],
  6579. "authors": [
  6580. {
  6581. "name": "Nicolas Grekas",
  6582. "email": "p@tchwork.com"
  6583. },
  6584. {
  6585. "name": "Symfony Community",
  6586. "homepage": "https://symfony.com/contributors"
  6587. }
  6588. ],
  6589. "description": "Generic abstractions related to translation",
  6590. "homepage": "https://symfony.com",
  6591. "keywords": [
  6592. "abstractions",
  6593. "contracts",
  6594. "decoupling",
  6595. "interfaces",
  6596. "interoperability",
  6597. "standards"
  6598. ],
  6599. "support": {
  6600. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.3"
  6601. },
  6602. "funding": [
  6603. {
  6604. "url": "https://symfony.com/sponsor",
  6605. "type": "custom"
  6606. },
  6607. {
  6608. "url": "https://github.com/fabpot",
  6609. "type": "github"
  6610. },
  6611. {
  6612. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6613. "type": "tidelift"
  6614. }
  6615. ],
  6616. "time": "2024-01-23T13:51:25+00:00"
  6617. },
  6618. {
  6619. "name": "symfony/var-exporter",
  6620. "version": "v5.4.45",
  6621. "source": {
  6622. "type": "git",
  6623. "url": "https://github.com/symfony/var-exporter.git",
  6624. "reference": "862700068db0ddfd8c5b850671e029a90246ec75"
  6625. },
  6626. "dist": {
  6627. "type": "zip",
  6628. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/862700068db0ddfd8c5b850671e029a90246ec75",
  6629. "reference": "862700068db0ddfd8c5b850671e029a90246ec75",
  6630. "shasum": "",
  6631. "mirrors": [
  6632. {
  6633. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6634. "preferred": true
  6635. }
  6636. ]
  6637. },
  6638. "require": {
  6639. "php": ">=7.2.5",
  6640. "symfony/polyfill-php80": "^1.16"
  6641. },
  6642. "require-dev": {
  6643. "symfony/var-dumper": "^4.4.9|^5.0.9|^6.0"
  6644. },
  6645. "type": "library",
  6646. "autoload": {
  6647. "psr-4": {
  6648. "Symfony\\Component\\VarExporter\\": ""
  6649. },
  6650. "exclude-from-classmap": [
  6651. "/Tests/"
  6652. ]
  6653. },
  6654. "notification-url": "https://packagist.org/downloads/",
  6655. "license": [
  6656. "MIT"
  6657. ],
  6658. "authors": [
  6659. {
  6660. "name": "Nicolas Grekas",
  6661. "email": "p@tchwork.com"
  6662. },
  6663. {
  6664. "name": "Symfony Community",
  6665. "homepage": "https://symfony.com/contributors"
  6666. }
  6667. ],
  6668. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  6669. "homepage": "https://symfony.com",
  6670. "keywords": [
  6671. "clone",
  6672. "construct",
  6673. "export",
  6674. "hydrate",
  6675. "instantiate",
  6676. "serialize"
  6677. ],
  6678. "support": {
  6679. "source": "https://github.com/symfony/var-exporter/tree/v5.4.45"
  6680. },
  6681. "funding": [
  6682. {
  6683. "url": "https://symfony.com/sponsor",
  6684. "type": "custom"
  6685. },
  6686. {
  6687. "url": "https://github.com/fabpot",
  6688. "type": "github"
  6689. },
  6690. {
  6691. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6692. "type": "tidelift"
  6693. }
  6694. ],
  6695. "time": "2024-09-25T14:11:13+00:00"
  6696. },
  6697. {
  6698. "name": "topthink/framework",
  6699. "version": "v6.1.4",
  6700. "source": {
  6701. "type": "git",
  6702. "url": "https://github.com/top-think/framework.git",
  6703. "reference": "66eb9cf4d627df12911344cd328faf9bb596bf2c"
  6704. },
  6705. "dist": {
  6706. "type": "zip",
  6707. "url": "https://api.github.com/repos/top-think/framework/zipball/66eb9cf4d627df12911344cd328faf9bb596bf2c",
  6708. "reference": "66eb9cf4d627df12911344cd328faf9bb596bf2c",
  6709. "shasum": "",
  6710. "mirrors": [
  6711. {
  6712. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6713. "preferred": true
  6714. }
  6715. ]
  6716. },
  6717. "require": {
  6718. "ext-json": "*",
  6719. "ext-mbstring": "*",
  6720. "php": ">=7.2.5",
  6721. "psr/container": "~1.0",
  6722. "psr/http-message": "^1.0",
  6723. "psr/log": "~1.0",
  6724. "psr/simple-cache": "^1.0",
  6725. "topthink/think-helper": "^3.1.1",
  6726. "topthink/think-orm": "^2.0|^3.0"
  6727. },
  6728. "require-dev": {
  6729. "guzzlehttp/psr7": "^2.1.0",
  6730. "mikey179/vfsstream": "^1.6",
  6731. "mockery/mockery": "^1.2",
  6732. "phpunit/phpunit": "^7.0"
  6733. },
  6734. "type": "library",
  6735. "autoload": {
  6736. "files": [],
  6737. "psr-4": {
  6738. "think\\": "src/think/"
  6739. }
  6740. },
  6741. "notification-url": "https://packagist.org/downloads/",
  6742. "license": [
  6743. "Apache-2.0"
  6744. ],
  6745. "authors": [
  6746. {
  6747. "name": "liu21st",
  6748. "email": "liu21st@gmail.com"
  6749. },
  6750. {
  6751. "name": "yunwuxin",
  6752. "email": "448901948@qq.com"
  6753. }
  6754. ],
  6755. "description": "The ThinkPHP Framework.",
  6756. "homepage": "http://thinkphp.cn/",
  6757. "keywords": [
  6758. "framework",
  6759. "orm",
  6760. "thinkphp"
  6761. ],
  6762. "support": {
  6763. "issues": "https://github.com/top-think/framework/issues",
  6764. "source": "https://github.com/top-think/framework/tree/v6.1.4"
  6765. },
  6766. "time": "2023-07-11T15:16:03+00:00"
  6767. },
  6768. {
  6769. "name": "topthink/think-captcha",
  6770. "version": "v3.0.9",
  6771. "source": {
  6772. "type": "git",
  6773. "url": "https://github.com/top-think/think-captcha.git",
  6774. "reference": "b1ef360670578214edeebcf824aaf6ab7ee0528b"
  6775. },
  6776. "dist": {
  6777. "type": "zip",
  6778. "url": "https://api.github.com/repos/top-think/think-captcha/zipball/b1ef360670578214edeebcf824aaf6ab7ee0528b",
  6779. "reference": "b1ef360670578214edeebcf824aaf6ab7ee0528b",
  6780. "shasum": "",
  6781. "mirrors": [
  6782. {
  6783. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6784. "preferred": true
  6785. }
  6786. ]
  6787. },
  6788. "require": {
  6789. "topthink/framework": "^6.0|^8.0"
  6790. },
  6791. "type": "library",
  6792. "extra": {
  6793. "think": {
  6794. "services": [
  6795. "think\\captcha\\CaptchaService"
  6796. ],
  6797. "config": {
  6798. "captcha": "src/config.php"
  6799. }
  6800. }
  6801. },
  6802. "autoload": {
  6803. "files": [
  6804. "src/helper.php"
  6805. ],
  6806. "psr-4": {
  6807. "think\\captcha\\": "src/"
  6808. }
  6809. },
  6810. "notification-url": "https://packagist.org/downloads/",
  6811. "license": [
  6812. "Apache-2.0"
  6813. ],
  6814. "authors": [
  6815. {
  6816. "name": "yunwuxin",
  6817. "email": "448901948@qq.com"
  6818. }
  6819. ],
  6820. "description": "captcha package for thinkphp",
  6821. "support": {
  6822. "issues": "https://github.com/top-think/think-captcha/issues",
  6823. "source": "https://github.com/top-think/think-captcha/tree/v3.0.9"
  6824. },
  6825. "time": "2023-04-27T07:18:40+00:00"
  6826. },
  6827. {
  6828. "name": "topthink/think-filesystem",
  6829. "version": "v1.0.3",
  6830. "source": {
  6831. "type": "git",
  6832. "url": "https://github.com/top-think/think-filesystem.git",
  6833. "reference": "29f19f140a9267c717fecd7ccb22c84c2d72382e"
  6834. },
  6835. "dist": {
  6836. "type": "zip",
  6837. "url": "https://api.github.com/repos/top-think/think-filesystem/zipball/29f19f140a9267c717fecd7ccb22c84c2d72382e",
  6838. "reference": "29f19f140a9267c717fecd7ccb22c84c2d72382e",
  6839. "shasum": "",
  6840. "mirrors": [
  6841. {
  6842. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6843. "preferred": true
  6844. }
  6845. ]
  6846. },
  6847. "require": {
  6848. "league/flysystem": "^1.1.4",
  6849. "league/flysystem-cached-adapter": "^1.0",
  6850. "php": ">=7.2.5",
  6851. "topthink/framework": "^6.1|^8.0"
  6852. },
  6853. "require-dev": {
  6854. "mikey179/vfsstream": "^1.6",
  6855. "mockery/mockery": "^1.2",
  6856. "phpunit/phpunit": "^8.0"
  6857. },
  6858. "type": "library",
  6859. "autoload": {
  6860. "psr-4": {
  6861. "think\\": "src"
  6862. }
  6863. },
  6864. "notification-url": "https://packagist.org/downloads/",
  6865. "license": [
  6866. "Apache-2.0"
  6867. ],
  6868. "authors": [
  6869. {
  6870. "name": "yunwuxin",
  6871. "email": "448901948@qq.com"
  6872. }
  6873. ],
  6874. "description": "The ThinkPHP6.1 Filesystem Package",
  6875. "support": {
  6876. "issues": "https://github.com/top-think/think-filesystem/issues",
  6877. "source": "https://github.com/top-think/think-filesystem/tree/v1.0.3"
  6878. },
  6879. "time": "2023-02-08T01:25:15+00:00"
  6880. },
  6881. {
  6882. "name": "topthink/think-helper",
  6883. "version": "v3.1.8",
  6884. "source": {
  6885. "type": "git",
  6886. "url": "https://github.com/top-think/think-helper.git",
  6887. "reference": "612eea76eec2a22f41b0e24be27f49454e4fd5f5"
  6888. },
  6889. "dist": {
  6890. "type": "zip",
  6891. "url": "https://api.github.com/repos/top-think/think-helper/zipball/612eea76eec2a22f41b0e24be27f49454e4fd5f5",
  6892. "reference": "612eea76eec2a22f41b0e24be27f49454e4fd5f5",
  6893. "shasum": "",
  6894. "mirrors": [
  6895. {
  6896. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6897. "preferred": true
  6898. }
  6899. ]
  6900. },
  6901. "require": {
  6902. "php": ">=7.1.0"
  6903. },
  6904. "require-dev": {
  6905. "phpunit/phpunit": "^9.5"
  6906. },
  6907. "type": "library",
  6908. "autoload": {
  6909. "files": [
  6910. "src/helper.php"
  6911. ],
  6912. "psr-4": {
  6913. "think\\": "src"
  6914. }
  6915. },
  6916. "notification-url": "https://packagist.org/downloads/",
  6917. "license": [
  6918. "Apache-2.0"
  6919. ],
  6920. "authors": [
  6921. {
  6922. "name": "yunwuxin",
  6923. "email": "448901948@qq.com"
  6924. }
  6925. ],
  6926. "description": "The ThinkPHP6 Helper Package",
  6927. "support": {
  6928. "issues": "https://github.com/top-think/think-helper/issues",
  6929. "source": "https://github.com/top-think/think-helper/tree/v3.1.8"
  6930. },
  6931. "time": "2024-08-26T15:07:58+00:00"
  6932. },
  6933. {
  6934. "name": "topthink/think-image",
  6935. "version": "v1.0.7",
  6936. "source": {
  6937. "type": "git",
  6938. "url": "https://github.com/top-think/think-image.git",
  6939. "reference": "8586cf47f117481c6d415b20f7dedf62e79d5512"
  6940. },
  6941. "dist": {
  6942. "type": "zip",
  6943. "url": "https://api.github.com/repos/top-think/think-image/zipball/8586cf47f117481c6d415b20f7dedf62e79d5512",
  6944. "reference": "8586cf47f117481c6d415b20f7dedf62e79d5512",
  6945. "shasum": "",
  6946. "mirrors": [
  6947. {
  6948. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6949. "preferred": true
  6950. }
  6951. ]
  6952. },
  6953. "require": {
  6954. "ext-gd": "*"
  6955. },
  6956. "require-dev": {
  6957. "phpunit/phpunit": "4.8.*",
  6958. "topthink/framework": "^5.0"
  6959. },
  6960. "type": "library",
  6961. "autoload": {
  6962. "psr-4": {
  6963. "think\\": "src"
  6964. }
  6965. },
  6966. "notification-url": "https://packagist.org/downloads/",
  6967. "license": [
  6968. "Apache-2.0"
  6969. ],
  6970. "authors": [
  6971. {
  6972. "name": "yunwuxin",
  6973. "email": "448901948@qq.com"
  6974. }
  6975. ],
  6976. "description": "The ThinkPHP5 Image Package",
  6977. "support": {
  6978. "issues": "https://github.com/top-think/think-image/issues",
  6979. "source": "https://github.com/top-think/think-image/tree/master"
  6980. },
  6981. "time": "2016-09-29T06:05:43+00:00"
  6982. },
  6983. {
  6984. "name": "topthink/think-orm",
  6985. "version": "v2.0.62",
  6986. "source": {
  6987. "type": "git",
  6988. "url": "https://github.com/top-think/think-orm.git",
  6989. "reference": "e53bfea572a133039ad687077120de5521af617f"
  6990. },
  6991. "dist": {
  6992. "type": "zip",
  6993. "url": "https://api.github.com/repos/top-think/think-orm/zipball/e53bfea572a133039ad687077120de5521af617f",
  6994. "reference": "e53bfea572a133039ad687077120de5521af617f",
  6995. "shasum": "",
  6996. "mirrors": [
  6997. {
  6998. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6999. "preferred": true
  7000. }
  7001. ]
  7002. },
  7003. "require": {
  7004. "ext-json": "*",
  7005. "ext-pdo": "*",
  7006. "php": ">=7.1.0",
  7007. "psr/log": "^1.0|^2.0",
  7008. "psr/simple-cache": "^1.0|^2.0",
  7009. "topthink/think-helper": "^3.1"
  7010. },
  7011. "require-dev": {
  7012. "phpunit/phpunit": "^7|^8|^9.5"
  7013. },
  7014. "type": "library",
  7015. "autoload": {
  7016. "files": [
  7017. "stubs/load_stubs.php"
  7018. ],
  7019. "psr-4": {
  7020. "think\\": "src"
  7021. }
  7022. },
  7023. "notification-url": "https://packagist.org/downloads/",
  7024. "license": [
  7025. "Apache-2.0"
  7026. ],
  7027. "authors": [
  7028. {
  7029. "name": "liu21st",
  7030. "email": "liu21st@gmail.com"
  7031. }
  7032. ],
  7033. "description": "think orm",
  7034. "keywords": [
  7035. "database",
  7036. "orm"
  7037. ],
  7038. "support": {
  7039. "issues": "https://github.com/top-think/think-orm/issues",
  7040. "source": "https://github.com/top-think/think-orm/tree/v2.0.62"
  7041. },
  7042. "time": "2024-09-22T06:17:47+00:00"
  7043. },
  7044. {
  7045. "name": "topthink/think-queue",
  7046. "version": "v3.0.9",
  7047. "source": {
  7048. "type": "git",
  7049. "url": "https://github.com/top-think/think-queue.git",
  7050. "reference": "654812b47dd7c708c4443deed27f212f8382e8da"
  7051. },
  7052. "dist": {
  7053. "type": "zip",
  7054. "url": "https://api.github.com/repos/top-think/think-queue/zipball/654812b47dd7c708c4443deed27f212f8382e8da",
  7055. "reference": "654812b47dd7c708c4443deed27f212f8382e8da",
  7056. "shasum": "",
  7057. "mirrors": [
  7058. {
  7059. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7060. "preferred": true
  7061. }
  7062. ]
  7063. },
  7064. "require": {
  7065. "ext-json": "*",
  7066. "nesbot/carbon": "^2.16",
  7067. "symfony/process": ">=4.2",
  7068. "topthink/framework": "^6.0 || ^8.0"
  7069. },
  7070. "require-dev": {
  7071. "mockery/mockery": "^1.2",
  7072. "phpunit/phpunit": "^6.2",
  7073. "topthink/think-migration": "^3.0"
  7074. },
  7075. "type": "library",
  7076. "extra": {
  7077. "think": {
  7078. "services": [
  7079. "think\\queue\\Service"
  7080. ],
  7081. "config": {
  7082. "queue": "src/config.php"
  7083. }
  7084. }
  7085. },
  7086. "autoload": {
  7087. "files": [
  7088. "src/common.php"
  7089. ],
  7090. "psr-4": {
  7091. "think\\": "src"
  7092. }
  7093. },
  7094. "notification-url": "https://packagist.org/downloads/",
  7095. "license": [
  7096. "Apache-2.0"
  7097. ],
  7098. "authors": [
  7099. {
  7100. "name": "yunwuxin",
  7101. "email": "448901948@qq.com"
  7102. }
  7103. ],
  7104. "description": "The ThinkPHP6 Queue Package",
  7105. "support": {
  7106. "issues": "https://github.com/top-think/think-queue/issues",
  7107. "source": "https://github.com/top-think/think-queue/tree/v3.0.9"
  7108. },
  7109. "time": "2023-07-03T05:42:01+00:00"
  7110. },
  7111. {
  7112. "name": "topthink/think-swoole",
  7113. "version": "v4.0.9",
  7114. "source": {
  7115. "type": "git",
  7116. "url": "https://github.com/top-think/think-swoole.git",
  7117. "reference": "edc326d92fc738c290d5777f0c544477759fa7f3"
  7118. },
  7119. "dist": {
  7120. "type": "zip",
  7121. "url": "https://api.github.com/repos/top-think/think-swoole/zipball/edc326d92fc738c290d5777f0c544477759fa7f3",
  7122. "reference": "edc326d92fc738c290d5777f0c544477759fa7f3",
  7123. "shasum": "",
  7124. "mirrors": [
  7125. {
  7126. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7127. "preferred": true
  7128. }
  7129. ]
  7130. },
  7131. "require": {
  7132. "ext-json": "*",
  7133. "ext-swoole": ">=4.6",
  7134. "nette/php-generator": "^3.2",
  7135. "open-smf/connection-pool": "~1.0",
  7136. "php": ">=7.4",
  7137. "stechstudio/backoff": "^1.2",
  7138. "swoole/ide-helper": "^4.3",
  7139. "symfony/finder": "^4.3.2|^5.1",
  7140. "topthink/framework": "^6.0"
  7141. },
  7142. "require-dev": {
  7143. "phpunit/phpunit": "^9.5",
  7144. "symfony/var-dumper": "^4.3|^5.1",
  7145. "topthink/think-queue": "^3.0",
  7146. "topthink/think-tracing": "^1.0"
  7147. },
  7148. "type": "library",
  7149. "extra": {
  7150. "think": {
  7151. "services": [
  7152. "think\\swoole\\Service"
  7153. ],
  7154. "config": {
  7155. "swoole": "src/config/swoole.php"
  7156. }
  7157. }
  7158. },
  7159. "autoload": {
  7160. "files": [
  7161. "src/helpers.php"
  7162. ],
  7163. "psr-4": {
  7164. "think\\swoole\\": "src"
  7165. }
  7166. },
  7167. "notification-url": "https://packagist.org/downloads/",
  7168. "license": [
  7169. "Apache-2.0"
  7170. ],
  7171. "authors": [
  7172. {
  7173. "name": "liu21st",
  7174. "email": "liu21st@gmail.com"
  7175. }
  7176. ],
  7177. "description": "Swoole extend for thinkphp",
  7178. "support": {
  7179. "issues": "https://github.com/top-think/think-swoole/issues",
  7180. "source": "https://github.com/top-think/think-swoole/tree/v4.0.9"
  7181. },
  7182. "time": "2023-03-09T07:52:09+00:00"
  7183. },
  7184. {
  7185. "name": "web3p/ethereum-tx",
  7186. "version": "0.4.3",
  7187. "source": {
  7188. "type": "git",
  7189. "url": "https://github.com/web3p/ethereum-tx.git",
  7190. "reference": "8dc1adc10ae45ac440c43ac32a3c5adf63ed8cef"
  7191. },
  7192. "dist": {
  7193. "type": "zip",
  7194. "url": "https://api.github.com/repos/web3p/ethereum-tx/zipball/8dc1adc10ae45ac440c43ac32a3c5adf63ed8cef",
  7195. "reference": "8dc1adc10ae45ac440c43ac32a3c5adf63ed8cef",
  7196. "shasum": ""
  7197. },
  7198. "require": {
  7199. "kornrunner/keccak": "~1",
  7200. "php": "^7.1|^8.0",
  7201. "simplito/elliptic-php": "~1.0.6",
  7202. "web3p/ethereum-util": "~0.1.3",
  7203. "web3p/rlp": "0.3.4"
  7204. },
  7205. "require-dev": {
  7206. "phpunit/phpunit": "~7|~8.0"
  7207. },
  7208. "type": "library",
  7209. "autoload": {
  7210. "psr-4": {
  7211. "Web3p\\EthereumTx\\": "src/"
  7212. }
  7213. },
  7214. "notification-url": "https://packagist.org/downloads/",
  7215. "license": [
  7216. "MIT"
  7217. ],
  7218. "authors": [
  7219. {
  7220. "name": "sc0Vu",
  7221. "email": "alk03073135@gmail.com"
  7222. }
  7223. ],
  7224. "description": "Ethereum transaction library in PHP.",
  7225. "support": {
  7226. "issues": "https://github.com/web3p/ethereum-tx/issues",
  7227. "source": "https://github.com/web3p/ethereum-tx/tree/0.4.3"
  7228. },
  7229. "time": "2021-09-01T05:13:20+00:00"
  7230. },
  7231. {
  7232. "name": "web3p/ethereum-util",
  7233. "version": "0.1.4",
  7234. "source": {
  7235. "type": "git",
  7236. "url": "https://github.com/web3p/ethereum-util.git",
  7237. "reference": "9a01f5389835d4092d338bb7b7d119017052ca68"
  7238. },
  7239. "dist": {
  7240. "type": "zip",
  7241. "url": "https://api.github.com/repos/web3p/ethereum-util/zipball/9a01f5389835d4092d338bb7b7d119017052ca68",
  7242. "reference": "9a01f5389835d4092d338bb7b7d119017052ca68",
  7243. "shasum": ""
  7244. },
  7245. "require": {
  7246. "kornrunner/keccak": "~1",
  7247. "php": "^7.1 | ^8.0",
  7248. "phpseclib/phpseclib": "~2.0",
  7249. "simplito/elliptic-php": "~1.0.6"
  7250. },
  7251. "require-dev": {
  7252. "phpunit/phpunit": "~7 | ~8.0"
  7253. },
  7254. "type": "library",
  7255. "autoload": {
  7256. "psr-4": {
  7257. "Web3p\\EthereumUtil\\": "src/"
  7258. }
  7259. },
  7260. "notification-url": "https://packagist.org/downloads/",
  7261. "license": [
  7262. "MIT"
  7263. ],
  7264. "authors": [
  7265. {
  7266. "name": "sc0Vu",
  7267. "email": "alk03073135@gmail.com"
  7268. }
  7269. ],
  7270. "description": "A collection of utility functions for Ethereum written in PHP.",
  7271. "support": {
  7272. "issues": "https://github.com/web3p/ethereum-util/issues",
  7273. "source": "https://github.com/web3p/ethereum-util/tree/0.1.4"
  7274. },
  7275. "time": "2022-12-18T05:42:39+00:00"
  7276. },
  7277. {
  7278. "name": "web3p/rlp",
  7279. "version": "0.3.4",
  7280. "source": {
  7281. "type": "git",
  7282. "url": "https://github.com/web3p/rlp.git",
  7283. "reference": "1653af23142863b490bdf22c6d0335bdb588c983"
  7284. },
  7285. "dist": {
  7286. "type": "zip",
  7287. "url": "https://api.github.com/repos/web3p/rlp/zipball/1653af23142863b490bdf22c6d0335bdb588c983",
  7288. "reference": "1653af23142863b490bdf22c6d0335bdb588c983",
  7289. "shasum": ""
  7290. },
  7291. "require": {
  7292. "ext-mbstring": "*",
  7293. "php": "^7.1 | ^8.0"
  7294. },
  7295. "require-dev": {
  7296. "phpunit/phpunit": "~7|~8.0"
  7297. },
  7298. "type": "library",
  7299. "autoload": {
  7300. "psr-4": {
  7301. "Web3p\\RLP\\": "src/"
  7302. }
  7303. },
  7304. "notification-url": "https://packagist.org/downloads/",
  7305. "license": [
  7306. "MIT"
  7307. ],
  7308. "authors": [
  7309. {
  7310. "name": "sc0Vu",
  7311. "email": "alk03073135@gmail.com"
  7312. }
  7313. ],
  7314. "description": "Recursive Length Prefix Encoding in PHP.",
  7315. "support": {
  7316. "issues": "https://github.com/web3p/rlp/issues",
  7317. "source": "https://github.com/web3p/rlp/tree/0.3.4"
  7318. },
  7319. "time": "2021-08-30T10:22:03+00:00"
  7320. },
  7321. {
  7322. "name": "yurunsoft/composer-include-files",
  7323. "version": "v2.0.0",
  7324. "source": {
  7325. "type": "git",
  7326. "url": "https://github.com/Yurunsoft/composer-include-files.git",
  7327. "reference": "277ed077b85d7a9d7b6b73ff148a48d9d676218d"
  7328. },
  7329. "dist": {
  7330. "type": "zip",
  7331. "url": "https://api.github.com/repos/Yurunsoft/composer-include-files/zipball/277ed077b85d7a9d7b6b73ff148a48d9d676218d",
  7332. "reference": "277ed077b85d7a9d7b6b73ff148a48d9d676218d",
  7333. "shasum": "",
  7334. "mirrors": [
  7335. {
  7336. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7337. "preferred": true
  7338. }
  7339. ]
  7340. },
  7341. "require": {
  7342. "composer-plugin-api": "^1.0 || ^2.0"
  7343. },
  7344. "type": "composer-plugin",
  7345. "extra": {
  7346. "class": "ComposerIncludeFiles\\Plugin"
  7347. },
  7348. "autoload": {
  7349. "psr-4": {
  7350. "ComposerIncludeFiles\\": "src"
  7351. }
  7352. },
  7353. "notification-url": "https://packagist.org/downloads/",
  7354. "license": [
  7355. "MIT"
  7356. ],
  7357. "authors": [
  7358. {
  7359. "name": "Tim Robertson",
  7360. "email": "funkjedi@gmail.com"
  7361. }
  7362. ],
  7363. "description": "Include files at a higher priority than autoload files.",
  7364. "homepage": "https://github.com/funkjedi/composer-include-files",
  7365. "keywords": [
  7366. "autoload",
  7367. "composer"
  7368. ],
  7369. "support": {
  7370. "source": "https://github.com/Yurunsoft/composer-include-files/tree/v2.0.0"
  7371. },
  7372. "time": "2020-10-26T05:59:11+00:00"
  7373. },
  7374. {
  7375. "name": "yurunsoft/guzzle-swoole",
  7376. "version": "v2.2.4",
  7377. "source": {
  7378. "type": "git",
  7379. "url": "https://github.com/Yurunsoft/Guzzle-Swoole.git",
  7380. "reference": "89bb58446aa0a3d6448de3943b40a5d79b18cbda"
  7381. },
  7382. "dist": {
  7383. "type": "zip",
  7384. "url": "https://api.github.com/repos/Yurunsoft/Guzzle-Swoole/zipball/89bb58446aa0a3d6448de3943b40a5d79b18cbda",
  7385. "reference": "89bb58446aa0a3d6448de3943b40a5d79b18cbda",
  7386. "shasum": "",
  7387. "mirrors": [
  7388. {
  7389. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7390. "preferred": true
  7391. }
  7392. ]
  7393. },
  7394. "require": {
  7395. "composer-plugin-api": "^1.0|^2.0",
  7396. "guzzlehttp/guzzle": "~6.0|~7.0",
  7397. "guzzlehttp/ringphp": "~1.0",
  7398. "php": ">=7.1",
  7399. "yurunsoft/composer-include-files": "^1.0|^2.0",
  7400. "yurunsoft/yurun-http": "^4.0"
  7401. },
  7402. "require-dev": {
  7403. "composer/composer": "^1.0|^2.0",
  7404. "phpunit/phpunit": ">=7",
  7405. "swoole/ide-helper": "*"
  7406. },
  7407. "type": "composer-plugin",
  7408. "extra": {
  7409. "class": "Yurun\\Util\\Swoole\\Guzzle\\Plugin\\Plugin",
  7410. "include_files": [
  7411. "src/load_include.php",
  7412. "src/functions.php"
  7413. ]
  7414. },
  7415. "autoload": {
  7416. "psr-4": {
  7417. "GuzzleHttp\\": "src/GuzzleHttp/",
  7418. "Yurun\\Util\\Swoole\\Guzzle\\": "src/"
  7419. }
  7420. },
  7421. "notification-url": "https://packagist.org/downloads/",
  7422. "license": [
  7423. "MIT"
  7424. ],
  7425. "description": "让 Guzzle 支持 Swoole 协程,可以用于 ElasticSearch、AWS 等 SDK 当中",
  7426. "support": {
  7427. "issues": "https://github.com/Yurunsoft/Guzzle-Swoole/issues",
  7428. "source": "https://github.com/Yurunsoft/Guzzle-Swoole/tree/v2.2.4"
  7429. },
  7430. "time": "2022-01-10T08:45:12+00:00"
  7431. },
  7432. {
  7433. "name": "yurunsoft/yurun-http",
  7434. "version": "v4.4.4",
  7435. "source": {
  7436. "type": "git",
  7437. "url": "https://github.com/Yurunsoft/YurunHttp.git",
  7438. "reference": "427d17c1e870d67e47a51ddd231932da2b041b5c"
  7439. },
  7440. "dist": {
  7441. "type": "zip",
  7442. "url": "https://api.github.com/repos/Yurunsoft/YurunHttp/zipball/427d17c1e870d67e47a51ddd231932da2b041b5c",
  7443. "reference": "427d17c1e870d67e47a51ddd231932da2b041b5c",
  7444. "shasum": "",
  7445. "mirrors": [
  7446. {
  7447. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7448. "preferred": true
  7449. }
  7450. ]
  7451. },
  7452. "require": {
  7453. "php": ">=5.5.0",
  7454. "psr/http-message": "~1.0",
  7455. "psr/log": "~1.0|~2.0|~3.0"
  7456. },
  7457. "require-dev": {
  7458. "monolog/monolog": "*",
  7459. "phpunit/phpunit": ">=4 <9.7",
  7460. "swoole/ide-helper": "^4.5",
  7461. "workerman/workerman": "^4.0"
  7462. },
  7463. "type": "library",
  7464. "autoload": {
  7465. "psr-4": {
  7466. "Yurun\\Util\\": "./src/"
  7467. }
  7468. },
  7469. "notification-url": "https://packagist.org/downloads/",
  7470. "license": [
  7471. "MIT"
  7472. ],
  7473. "description": "YurunHttp 是开源的 PHP HTTP 类库,支持链式操作,简单易用。支持 Curl、Swoole,支持 Http、Http2、WebSocket!",
  7474. "support": {
  7475. "issues": "https://github.com/Yurunsoft/YurunHttp/issues",
  7476. "source": "https://github.com/Yurunsoft/YurunHttp/tree/v4.4.4"
  7477. },
  7478. "time": "2023-10-16T03:37:26+00:00"
  7479. }
  7480. ],
  7481. "packages-dev": [
  7482. {
  7483. "name": "symfony/polyfill-php72",
  7484. "version": "v1.31.0",
  7485. "source": {
  7486. "type": "git",
  7487. "url": "https://github.com/symfony/polyfill-php72.git",
  7488. "reference": "fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce"
  7489. },
  7490. "dist": {
  7491. "type": "zip",
  7492. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce",
  7493. "reference": "fa2ae56c44f03bed91a39bfc9822e31e7c5c38ce",
  7494. "shasum": "",
  7495. "mirrors": [
  7496. {
  7497. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7498. "preferred": true
  7499. }
  7500. ]
  7501. },
  7502. "require": {
  7503. "php": ">=7.2"
  7504. },
  7505. "type": "metapackage",
  7506. "extra": {
  7507. "thanks": {
  7508. "name": "symfony/polyfill",
  7509. "url": "https://github.com/symfony/polyfill"
  7510. }
  7511. },
  7512. "notification-url": "https://packagist.org/downloads/",
  7513. "license": [
  7514. "MIT"
  7515. ],
  7516. "authors": [
  7517. {
  7518. "name": "Nicolas Grekas",
  7519. "email": "p@tchwork.com"
  7520. },
  7521. {
  7522. "name": "Symfony Community",
  7523. "homepage": "https://symfony.com/contributors"
  7524. }
  7525. ],
  7526. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  7527. "homepage": "https://symfony.com",
  7528. "keywords": [
  7529. "compatibility",
  7530. "polyfill",
  7531. "portable",
  7532. "shim"
  7533. ],
  7534. "support": {
  7535. "source": "https://github.com/symfony/polyfill-php72/tree/v1.31.0"
  7536. },
  7537. "funding": [
  7538. {
  7539. "url": "https://symfony.com/sponsor",
  7540. "type": "custom"
  7541. },
  7542. {
  7543. "url": "https://github.com/fabpot",
  7544. "type": "github"
  7545. },
  7546. {
  7547. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7548. "type": "tidelift"
  7549. }
  7550. ],
  7551. "time": "2024-09-09T11:45:10+00:00"
  7552. },
  7553. {
  7554. "name": "symfony/var-dumper",
  7555. "version": "v4.4.47",
  7556. "source": {
  7557. "type": "git",
  7558. "url": "https://github.com/symfony/var-dumper.git",
  7559. "reference": "1069c7a3fca74578022fab6f81643248d02f8e63"
  7560. },
  7561. "dist": {
  7562. "type": "zip",
  7563. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/1069c7a3fca74578022fab6f81643248d02f8e63",
  7564. "reference": "1069c7a3fca74578022fab6f81643248d02f8e63",
  7565. "shasum": "",
  7566. "mirrors": [
  7567. {
  7568. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7569. "preferred": true
  7570. }
  7571. ]
  7572. },
  7573. "require": {
  7574. "php": ">=7.1.3",
  7575. "symfony/polyfill-mbstring": "~1.0",
  7576. "symfony/polyfill-php72": "~1.5",
  7577. "symfony/polyfill-php80": "^1.16"
  7578. },
  7579. "conflict": {
  7580. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  7581. "symfony/console": "<3.4"
  7582. },
  7583. "require-dev": {
  7584. "ext-iconv": "*",
  7585. "symfony/console": "^3.4|^4.0|^5.0",
  7586. "symfony/process": "^4.4|^5.0",
  7587. "twig/twig": "^1.43|^2.13|^3.0.4"
  7588. },
  7589. "suggest": {
  7590. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7591. "ext-intl": "To show region name in time zone dump",
  7592. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  7593. },
  7594. "bin": [
  7595. "Resources/bin/var-dump-server"
  7596. ],
  7597. "type": "library",
  7598. "autoload": {
  7599. "files": [
  7600. "Resources/functions/dump.php"
  7601. ],
  7602. "psr-4": {
  7603. "Symfony\\Component\\VarDumper\\": ""
  7604. },
  7605. "exclude-from-classmap": [
  7606. "/Tests/"
  7607. ]
  7608. },
  7609. "notification-url": "https://packagist.org/downloads/",
  7610. "license": [
  7611. "MIT"
  7612. ],
  7613. "authors": [
  7614. {
  7615. "name": "Nicolas Grekas",
  7616. "email": "p@tchwork.com"
  7617. },
  7618. {
  7619. "name": "Symfony Community",
  7620. "homepage": "https://symfony.com/contributors"
  7621. }
  7622. ],
  7623. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7624. "homepage": "https://symfony.com",
  7625. "keywords": [
  7626. "debug",
  7627. "dump"
  7628. ],
  7629. "support": {
  7630. "source": "https://github.com/symfony/var-dumper/tree/v4.4.47"
  7631. },
  7632. "funding": [
  7633. {
  7634. "url": "https://symfony.com/sponsor",
  7635. "type": "custom"
  7636. },
  7637. {
  7638. "url": "https://github.com/fabpot",
  7639. "type": "github"
  7640. },
  7641. {
  7642. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7643. "type": "tidelift"
  7644. }
  7645. ],
  7646. "time": "2022-10-03T15:15:11+00:00"
  7647. },
  7648. {
  7649. "name": "topthink/think-trace",
  7650. "version": "v1.6",
  7651. "source": {
  7652. "type": "git",
  7653. "url": "https://github.com/top-think/think-trace.git",
  7654. "reference": "136cd5d97e8bdb780e4b5c1637c588ed7ca3e142"
  7655. },
  7656. "dist": {
  7657. "type": "zip",
  7658. "url": "https://api.github.com/repos/top-think/think-trace/zipball/136cd5d97e8bdb780e4b5c1637c588ed7ca3e142",
  7659. "reference": "136cd5d97e8bdb780e4b5c1637c588ed7ca3e142",
  7660. "shasum": "",
  7661. "mirrors": [
  7662. {
  7663. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7664. "preferred": true
  7665. }
  7666. ]
  7667. },
  7668. "require": {
  7669. "php": ">=7.1.0",
  7670. "topthink/framework": "^6.0|^8.0"
  7671. },
  7672. "type": "library",
  7673. "extra": {
  7674. "think": {
  7675. "services": [
  7676. "think\\trace\\Service"
  7677. ],
  7678. "config": {
  7679. "trace": "src/config.php"
  7680. }
  7681. }
  7682. },
  7683. "autoload": {
  7684. "psr-4": {
  7685. "think\\trace\\": "src"
  7686. }
  7687. },
  7688. "notification-url": "https://packagist.org/downloads/",
  7689. "license": [
  7690. "Apache-2.0"
  7691. ],
  7692. "authors": [
  7693. {
  7694. "name": "liu21st",
  7695. "email": "liu21st@gmail.com"
  7696. }
  7697. ],
  7698. "description": "thinkphp debug trace",
  7699. "support": {
  7700. "issues": "https://github.com/top-think/think-trace/issues",
  7701. "source": "https://github.com/top-think/think-trace/tree/v1.6"
  7702. },
  7703. "time": "2023-02-07T08:36:32+00:00"
  7704. }
  7705. ],
  7706. "aliases": [],
  7707. "minimum-stability": "stable",
  7708. "stability-flags": [],
  7709. "prefer-stable": false,
  7710. "prefer-lowest": false,
  7711. "platform": {
  7712. "php": ">=7.2.5",
  7713. "ext-libxml": "*",
  7714. "ext-simplexml": "*",
  7715. "ext-curl": "*",
  7716. "ext-json": "*",
  7717. "ext-zlib": "*",
  7718. "ext-redis": "*",
  7719. "ext-bcmath": "*",
  7720. "ext-gd": "*",
  7721. "ext-iconv": "*",
  7722. "ext-openssl": "*"
  7723. },
  7724. "platform-dev": [],
  7725. "plugin-api-version": "2.6.0"
  7726. }