composer.lock 399 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046
  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": "5b9b61d91311f39b4ffa1e237fa52a1e",
  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. },
  23. "require": {
  24. "ext-json": "*",
  25. "php": "^5.5 || ^7.0 || ^8.0"
  26. },
  27. "require-dev": {
  28. "phpunit/phpunit": "^4.8|^5.7|^6.6|^7.5|^8.5|^9.5",
  29. "squizlabs/php_codesniffer": "^3.6"
  30. },
  31. "type": "library",
  32. "autoload": {
  33. "files": [
  34. "src/helpers.php"
  35. ],
  36. "psr-4": {
  37. "Adbar\\": "src"
  38. }
  39. },
  40. "notification-url": "https://packagist.org/downloads/",
  41. "license": [
  42. "MIT"
  43. ],
  44. "authors": [
  45. {
  46. "name": "Riku Särkinen",
  47. "email": "riku@adbar.io"
  48. }
  49. ],
  50. "description": "PHP dot notation access to arrays",
  51. "homepage": "https://github.com/adbario/php-dot-notation",
  52. "keywords": [
  53. "ArrayAccess",
  54. "dotnotation"
  55. ],
  56. "support": {
  57. "issues": "https://github.com/adbario/php-dot-notation/issues",
  58. "source": "https://github.com/adbario/php-dot-notation/tree/2.5.0"
  59. },
  60. "time": "2022-10-14T20:31:46+00:00"
  61. },
  62. {
  63. "name": "alibabacloud/credentials",
  64. "version": "1.2.0",
  65. "source": {
  66. "type": "git",
  67. "url": "https://github.com/aliyun/credentials-php.git",
  68. "reference": "ebcda2e628180b4df235b46a86e1d014c561f5d9"
  69. },
  70. "dist": {
  71. "type": "zip",
  72. "url": "https://api.github.com/repos/aliyun/credentials-php/zipball/ebcda2e628180b4df235b46a86e1d014c561f5d9",
  73. "reference": "ebcda2e628180b4df235b46a86e1d014c561f5d9",
  74. "shasum": ""
  75. },
  76. "require": {
  77. "adbario/php-dot-notation": "^2.2",
  78. "alibabacloud/tea": "^3.0",
  79. "ext-curl": "*",
  80. "ext-json": "*",
  81. "ext-libxml": "*",
  82. "ext-mbstring": "*",
  83. "ext-openssl": "*",
  84. "ext-simplexml": "*",
  85. "ext-xmlwriter": "*",
  86. "guzzlehttp/guzzle": "^6.3|^7.0",
  87. "php": ">=5.6"
  88. },
  89. "require-dev": {
  90. "composer/composer": "^1.8",
  91. "drupal/coder": "^8.3",
  92. "ext-dom": "*",
  93. "ext-pcre": "*",
  94. "ext-sockets": "*",
  95. "ext-spl": "*",
  96. "mikey179/vfsstream": "^1.6",
  97. "monolog/monolog": "^1.24",
  98. "phpunit/phpunit": "^5.7|^6.6|^9.3",
  99. "psr/cache": "^1.0",
  100. "symfony/dotenv": "^3.4",
  101. "symfony/var-dumper": "^3.4"
  102. },
  103. "suggest": {
  104. "ext-sockets": "To use client-side monitoring"
  105. },
  106. "type": "library",
  107. "autoload": {
  108. "psr-4": {
  109. "AlibabaCloud\\Credentials\\": "src"
  110. }
  111. },
  112. "notification-url": "https://packagist.org/downloads/",
  113. "license": [
  114. "Apache-2.0"
  115. ],
  116. "authors": [
  117. {
  118. "name": "Alibaba Cloud SDK",
  119. "email": "sdk-team@alibabacloud.com",
  120. "homepage": "http://www.alibabacloud.com"
  121. }
  122. ],
  123. "description": "Alibaba Cloud Credentials for PHP",
  124. "homepage": "https://www.alibabacloud.com/",
  125. "keywords": [
  126. "alibaba",
  127. "alibabacloud",
  128. "aliyun",
  129. "client",
  130. "cloud",
  131. "credentials",
  132. "library",
  133. "sdk",
  134. "tool"
  135. ],
  136. "support": {
  137. "issues": "https://github.com/aliyun/credentials-php/issues",
  138. "source": "https://github.com/aliyun/credentials-php"
  139. },
  140. "time": "2024-10-16T13:29:17+00:00"
  141. },
  142. {
  143. "name": "alibabacloud/darabonba-openapi",
  144. "version": "0.2.13",
  145. "source": {
  146. "type": "git",
  147. "url": "https://github.com/alibabacloud-sdk-php/darabonba-openapi.git",
  148. "reference": "0213396384e2c064eefd614f3dd53636a63f987f"
  149. },
  150. "dist": {
  151. "type": "zip",
  152. "url": "https://api.github.com/repos/alibabacloud-sdk-php/darabonba-openapi/zipball/0213396384e2c064eefd614f3dd53636a63f987f",
  153. "reference": "0213396384e2c064eefd614f3dd53636a63f987f",
  154. "shasum": ""
  155. },
  156. "require": {
  157. "alibabacloud/credentials": "^1.1",
  158. "alibabacloud/gateway-spi": "^1",
  159. "alibabacloud/openapi-util": "^0.1.10|^0.2.1",
  160. "alibabacloud/tea-utils": "^0.2.21",
  161. "alibabacloud/tea-xml": "^0.2",
  162. "php": ">5.5"
  163. },
  164. "type": "library",
  165. "autoload": {
  166. "psr-4": {
  167. "Darabonba\\OpenApi\\": "src"
  168. }
  169. },
  170. "notification-url": "https://packagist.org/downloads/",
  171. "license": [
  172. "Apache-2.0"
  173. ],
  174. "authors": [
  175. {
  176. "name": "Alibaba Cloud SDK",
  177. "email": "sdk-team@alibabacloud.com"
  178. }
  179. ],
  180. "description": "Alibaba Cloud OpenApi Client",
  181. "support": {
  182. "issues": "https://github.com/alibabacloud-sdk-php/darabonba-openapi/issues",
  183. "source": "https://github.com/alibabacloud-sdk-php/darabonba-openapi/tree/0.2.13"
  184. },
  185. "time": "2024-07-15T13:11:36+00:00"
  186. },
  187. {
  188. "name": "alibabacloud/dysmsapi-20170525",
  189. "version": "3.1.1",
  190. "source": {
  191. "type": "git",
  192. "url": "https://github.com/alibabacloud-sdk-php/Dysmsapi-20170525.git",
  193. "reference": "5a301a076b29449a488607cbfbb7f12b8cc50c1f"
  194. },
  195. "dist": {
  196. "type": "zip",
  197. "url": "https://api.github.com/repos/alibabacloud-sdk-php/Dysmsapi-20170525/zipball/5a301a076b29449a488607cbfbb7f12b8cc50c1f",
  198. "reference": "5a301a076b29449a488607cbfbb7f12b8cc50c1f",
  199. "shasum": ""
  200. },
  201. "require": {
  202. "alibabacloud/darabonba-openapi": "^0.2.13",
  203. "alibabacloud/endpoint-util": "^0.1.0",
  204. "alibabacloud/openapi-util": "^0.1.10|^0.2.1",
  205. "alibabacloud/tea-utils": "^0.2.21",
  206. "php": ">5.5"
  207. },
  208. "type": "library",
  209. "autoload": {
  210. "psr-4": {
  211. "AlibabaCloud\\SDK\\Dysmsapi\\V20170525\\": "src"
  212. }
  213. },
  214. "notification-url": "https://packagist.org/downloads/",
  215. "license": [
  216. "Apache-2.0"
  217. ],
  218. "authors": [
  219. {
  220. "name": "Alibaba Cloud SDK",
  221. "email": "sdk-team@alibabacloud.com"
  222. }
  223. ],
  224. "description": "Alibaba Cloud Dysmsapi (20170525) SDK Library for PHP",
  225. "support": {
  226. "source": "https://github.com/alibabacloud-sdk-php/Dysmsapi-20170525/tree/3.1.1"
  227. },
  228. "time": "2025-01-03T17:14:56+00:00"
  229. },
  230. {
  231. "name": "alibabacloud/endpoint-util",
  232. "version": "0.1.1",
  233. "source": {
  234. "type": "git",
  235. "url": "https://github.com/alibabacloud-sdk-php/endpoint-util.git",
  236. "reference": "f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5"
  237. },
  238. "dist": {
  239. "type": "zip",
  240. "url": "https://api.github.com/repos/alibabacloud-sdk-php/endpoint-util/zipball/f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5",
  241. "reference": "f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5",
  242. "shasum": ""
  243. },
  244. "require": {
  245. "php": ">5.5"
  246. },
  247. "require-dev": {
  248. "phpunit/phpunit": "^4.8.35|^5.4.3"
  249. },
  250. "type": "library",
  251. "autoload": {
  252. "psr-4": {
  253. "AlibabaCloud\\Endpoint\\": "src"
  254. }
  255. },
  256. "notification-url": "https://packagist.org/downloads/",
  257. "license": [
  258. "Apache-2.0"
  259. ],
  260. "authors": [
  261. {
  262. "name": "Alibaba Cloud SDK",
  263. "email": "sdk-team@alibabacloud.com"
  264. }
  265. ],
  266. "description": "Alibaba Cloud Endpoint Library for PHP",
  267. "support": {
  268. "source": "https://github.com/alibabacloud-sdk-php/endpoint-util/tree/0.1.1"
  269. },
  270. "time": "2020-06-04T10:57:15+00:00"
  271. },
  272. {
  273. "name": "alibabacloud/gateway-spi",
  274. "version": "1.0.0",
  275. "source": {
  276. "type": "git",
  277. "url": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi.git",
  278. "reference": "7440f77750c329d8ab252db1d1d967314ccd1fcb"
  279. },
  280. "dist": {
  281. "type": "zip",
  282. "url": "https://api.github.com/repos/alibabacloud-sdk-php/alibabacloud-gateway-spi/zipball/7440f77750c329d8ab252db1d1d967314ccd1fcb",
  283. "reference": "7440f77750c329d8ab252db1d1d967314ccd1fcb",
  284. "shasum": ""
  285. },
  286. "require": {
  287. "alibabacloud/credentials": "^1.1",
  288. "php": ">5.5"
  289. },
  290. "type": "library",
  291. "autoload": {
  292. "psr-4": {
  293. "Darabonba\\GatewaySpi\\": "src"
  294. }
  295. },
  296. "notification-url": "https://packagist.org/downloads/",
  297. "license": [
  298. "Apache-2.0"
  299. ],
  300. "authors": [
  301. {
  302. "name": "Alibaba Cloud SDK",
  303. "email": "sdk-team@alibabacloud.com"
  304. }
  305. ],
  306. "description": "Alibaba Cloud Gateway SPI Client",
  307. "support": {
  308. "source": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi/tree/1.0.0"
  309. },
  310. "time": "2022-07-14T05:31:35+00:00"
  311. },
  312. {
  313. "name": "alibabacloud/openapi-util",
  314. "version": "0.2.1",
  315. "source": {
  316. "type": "git",
  317. "url": "https://github.com/alibabacloud-sdk-php/openapi-util.git",
  318. "reference": "f31f7bcd835e08ca24b6b8ba33637eb4eceb093a"
  319. },
  320. "dist": {
  321. "type": "zip",
  322. "url": "https://api.github.com/repos/alibabacloud-sdk-php/openapi-util/zipball/f31f7bcd835e08ca24b6b8ba33637eb4eceb093a",
  323. "reference": "f31f7bcd835e08ca24b6b8ba33637eb4eceb093a",
  324. "shasum": ""
  325. },
  326. "require": {
  327. "alibabacloud/tea": "^3.1",
  328. "alibabacloud/tea-utils": "^0.2",
  329. "lizhichao/one-sm": "^1.5",
  330. "php": ">5.5"
  331. },
  332. "require-dev": {
  333. "phpunit/phpunit": "*"
  334. },
  335. "type": "library",
  336. "autoload": {
  337. "psr-4": {
  338. "AlibabaCloud\\OpenApiUtil\\": "src"
  339. }
  340. },
  341. "notification-url": "https://packagist.org/downloads/",
  342. "license": [
  343. "Apache-2.0"
  344. ],
  345. "authors": [
  346. {
  347. "name": "Alibaba Cloud SDK",
  348. "email": "sdk-team@alibabacloud.com"
  349. }
  350. ],
  351. "description": "Alibaba Cloud OpenApi Util",
  352. "support": {
  353. "issues": "https://github.com/alibabacloud-sdk-php/openapi-util/issues",
  354. "source": "https://github.com/alibabacloud-sdk-php/openapi-util/tree/0.2.1"
  355. },
  356. "time": "2023-01-10T09:10:10+00:00"
  357. },
  358. {
  359. "name": "alibabacloud/tea",
  360. "version": "3.2.1",
  361. "source": {
  362. "type": "git",
  363. "url": "https://github.com/aliyun/tea-php.git",
  364. "reference": "1619cb96c158384f72b873e1f85de8b299c9c367"
  365. },
  366. "dist": {
  367. "type": "zip",
  368. "url": "https://api.github.com/repos/aliyun/tea-php/zipball/1619cb96c158384f72b873e1f85de8b299c9c367",
  369. "reference": "1619cb96c158384f72b873e1f85de8b299c9c367",
  370. "shasum": ""
  371. },
  372. "require": {
  373. "adbario/php-dot-notation": "^2.4",
  374. "ext-curl": "*",
  375. "ext-json": "*",
  376. "ext-libxml": "*",
  377. "ext-mbstring": "*",
  378. "ext-openssl": "*",
  379. "ext-simplexml": "*",
  380. "ext-xmlwriter": "*",
  381. "guzzlehttp/guzzle": "^6.3|^7.0",
  382. "php": ">=5.5"
  383. },
  384. "require-dev": {
  385. "phpunit/phpunit": "*",
  386. "symfony/dotenv": "^3.4",
  387. "symfony/var-dumper": "^3.4"
  388. },
  389. "suggest": {
  390. "ext-sockets": "To use client-side monitoring"
  391. },
  392. "type": "library",
  393. "autoload": {
  394. "psr-4": {
  395. "AlibabaCloud\\Tea\\": "src"
  396. }
  397. },
  398. "notification-url": "https://packagist.org/downloads/",
  399. "license": [
  400. "Apache-2.0"
  401. ],
  402. "authors": [
  403. {
  404. "name": "Alibaba Cloud SDK",
  405. "email": "sdk-team@alibabacloud.com",
  406. "homepage": "http://www.alibabacloud.com"
  407. }
  408. ],
  409. "description": "Client of Tea for PHP",
  410. "homepage": "https://www.alibabacloud.com/",
  411. "keywords": [
  412. "alibabacloud",
  413. "client",
  414. "cloud",
  415. "tea"
  416. ],
  417. "support": {
  418. "issues": "https://github.com/aliyun/tea-php/issues",
  419. "source": "https://github.com/aliyun/tea-php"
  420. },
  421. "time": "2023-05-16T06:43:41+00:00"
  422. },
  423. {
  424. "name": "alibabacloud/tea-utils",
  425. "version": "0.2.21",
  426. "source": {
  427. "type": "git",
  428. "url": "https://github.com/alibabacloud-sdk-php/tea-utils.git",
  429. "reference": "5039e45714c6456186d267f5d81a4b260a652495"
  430. },
  431. "dist": {
  432. "type": "zip",
  433. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-utils/zipball/5039e45714c6456186d267f5d81a4b260a652495",
  434. "reference": "5039e45714c6456186d267f5d81a4b260a652495",
  435. "shasum": ""
  436. },
  437. "require": {
  438. "alibabacloud/tea": "^3.1",
  439. "php": ">5.5"
  440. },
  441. "type": "library",
  442. "autoload": {
  443. "psr-4": {
  444. "AlibabaCloud\\Tea\\Utils\\": "src"
  445. }
  446. },
  447. "notification-url": "https://packagist.org/downloads/",
  448. "license": [
  449. "Apache-2.0"
  450. ],
  451. "authors": [
  452. {
  453. "name": "Alibaba Cloud SDK",
  454. "email": "sdk-team@alibabacloud.com"
  455. }
  456. ],
  457. "description": "Alibaba Cloud Tea Utils for PHP",
  458. "support": {
  459. "issues": "https://github.com/aliyun/tea-util/issues",
  460. "source": "https://github.com/aliyun/tea-util"
  461. },
  462. "time": "2024-07-05T06:05:54+00:00"
  463. },
  464. {
  465. "name": "alibabacloud/tea-xml",
  466. "version": "0.2.4",
  467. "source": {
  468. "type": "git",
  469. "url": "https://github.com/alibabacloud-sdk-php/tea-xml.git",
  470. "reference": "3e0c000bf536224eebbac913c371bef174c0a16a"
  471. },
  472. "dist": {
  473. "type": "zip",
  474. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-xml/zipball/3e0c000bf536224eebbac913c371bef174c0a16a",
  475. "reference": "3e0c000bf536224eebbac913c371bef174c0a16a",
  476. "shasum": ""
  477. },
  478. "require": {
  479. "php": ">5.5"
  480. },
  481. "require-dev": {
  482. "phpunit/phpunit": "*",
  483. "symfony/var-dumper": "*"
  484. },
  485. "type": "library",
  486. "autoload": {
  487. "psr-4": {
  488. "AlibabaCloud\\Tea\\XML\\": "src"
  489. }
  490. },
  491. "notification-url": "https://packagist.org/downloads/",
  492. "license": [
  493. "Apache-2.0"
  494. ],
  495. "authors": [
  496. {
  497. "name": "Alibaba Cloud SDK",
  498. "email": "sdk-team@alibabacloud.com"
  499. }
  500. ],
  501. "description": "Alibaba Cloud Tea XML Library for PHP",
  502. "support": {
  503. "source": "https://github.com/alibabacloud-sdk-php/tea-xml/tree/0.2.4"
  504. },
  505. "time": "2022-08-02T04:12:58+00:00"
  506. },
  507. {
  508. "name": "asm89/stack-cors",
  509. "version": "v2.1.1",
  510. "source": {
  511. "type": "git",
  512. "url": "https://github.com/asm89/stack-cors.git",
  513. "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a"
  514. },
  515. "dist": {
  516. "type": "zip",
  517. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
  518. "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
  519. "shasum": "",
  520. "mirrors": [
  521. {
  522. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  523. "preferred": true
  524. }
  525. ]
  526. },
  527. "require": {
  528. "php": "^7.2|^8.0",
  529. "symfony/http-foundation": "^4|^5|^6",
  530. "symfony/http-kernel": "^4|^5|^6"
  531. },
  532. "require-dev": {
  533. "phpunit/phpunit": "^7|^9",
  534. "squizlabs/php_codesniffer": "^3.5"
  535. },
  536. "type": "library",
  537. "extra": {
  538. "branch-alias": {
  539. "dev-master": "2.1-dev"
  540. }
  541. },
  542. "autoload": {
  543. "psr-4": {
  544. "Asm89\\Stack\\": "src/"
  545. }
  546. },
  547. "notification-url": "https://packagist.org/downloads/",
  548. "license": [
  549. "MIT"
  550. ],
  551. "authors": [
  552. {
  553. "name": "Alexander",
  554. "email": "iam.asm89@gmail.com"
  555. }
  556. ],
  557. "description": "Cross-origin resource sharing library and stack middleware",
  558. "homepage": "https://github.com/asm89/stack-cors",
  559. "keywords": [
  560. "cors",
  561. "stack"
  562. ],
  563. "support": {
  564. "issues": "https://github.com/asm89/stack-cors/issues",
  565. "source": "https://github.com/asm89/stack-cors/tree/v2.1.1"
  566. },
  567. "time": "2022-01-18T09:12:03+00:00"
  568. },
  569. {
  570. "name": "brick/math",
  571. "version": "0.9.3",
  572. "source": {
  573. "type": "git",
  574. "url": "https://github.com/brick/math.git",
  575. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae"
  576. },
  577. "dist": {
  578. "type": "zip",
  579. "url": "https://api.github.com/repos/brick/math/zipball/ca57d18f028f84f777b2168cd1911b0dee2343ae",
  580. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae",
  581. "shasum": "",
  582. "mirrors": [
  583. {
  584. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  585. "preferred": true
  586. }
  587. ]
  588. },
  589. "require": {
  590. "ext-json": "*",
  591. "php": "^7.1 || ^8.0"
  592. },
  593. "require-dev": {
  594. "php-coveralls/php-coveralls": "^2.2",
  595. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.0",
  596. "vimeo/psalm": "4.9.2"
  597. },
  598. "type": "library",
  599. "autoload": {
  600. "psr-4": {
  601. "Brick\\Math\\": "src/"
  602. }
  603. },
  604. "notification-url": "https://packagist.org/downloads/",
  605. "license": [
  606. "MIT"
  607. ],
  608. "description": "Arbitrary-precision arithmetic library",
  609. "keywords": [
  610. "Arbitrary-precision",
  611. "BigInteger",
  612. "BigRational",
  613. "arithmetic",
  614. "bigdecimal",
  615. "bignum",
  616. "brick",
  617. "math"
  618. ],
  619. "support": {
  620. "issues": "https://github.com/brick/math/issues",
  621. "source": "https://github.com/brick/math/tree/0.9.3"
  622. },
  623. "funding": [
  624. {
  625. "url": "https://github.com/BenMorel",
  626. "type": "github"
  627. },
  628. {
  629. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  630. "type": "tidelift"
  631. }
  632. ],
  633. "time": "2021-08-15T20:50:18+00:00"
  634. },
  635. {
  636. "name": "carbonphp/carbon-doctrine-types",
  637. "version": "2.1.0",
  638. "source": {
  639. "type": "git",
  640. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  641. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb"
  642. },
  643. "dist": {
  644. "type": "zip",
  645. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  646. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  647. "shasum": "",
  648. "mirrors": [
  649. {
  650. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  651. "preferred": true
  652. }
  653. ]
  654. },
  655. "require": {
  656. "php": "^7.4 || ^8.0"
  657. },
  658. "conflict": {
  659. "doctrine/dbal": "<3.7.0 || >=4.0.0"
  660. },
  661. "require-dev": {
  662. "doctrine/dbal": "^3.7.0",
  663. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  664. "phpunit/phpunit": "^10.3"
  665. },
  666. "type": "library",
  667. "autoload": {
  668. "psr-4": {
  669. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  670. }
  671. },
  672. "notification-url": "https://packagist.org/downloads/",
  673. "license": [
  674. "MIT"
  675. ],
  676. "authors": [
  677. {
  678. "name": "KyleKatarn",
  679. "email": "kylekatarnls@gmail.com"
  680. }
  681. ],
  682. "description": "Types to use Carbon in Doctrine",
  683. "keywords": [
  684. "carbon",
  685. "date",
  686. "datetime",
  687. "doctrine",
  688. "time"
  689. ],
  690. "support": {
  691. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  692. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/2.1.0"
  693. },
  694. "funding": [
  695. {
  696. "url": "https://github.com/kylekatarnls",
  697. "type": "github"
  698. },
  699. {
  700. "url": "https://opencollective.com/Carbon",
  701. "type": "open_collective"
  702. },
  703. {
  704. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  705. "type": "tidelift"
  706. }
  707. ],
  708. "time": "2023-12-11T17:09:12+00:00"
  709. },
  710. {
  711. "name": "dflydev/dot-access-data",
  712. "version": "v3.0.2",
  713. "source": {
  714. "type": "git",
  715. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  716. "reference": "f41715465d65213d644d3141a6a93081be5d3549"
  717. },
  718. "dist": {
  719. "type": "zip",
  720. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549",
  721. "reference": "f41715465d65213d644d3141a6a93081be5d3549",
  722. "shasum": "",
  723. "mirrors": [
  724. {
  725. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  726. "preferred": true
  727. }
  728. ]
  729. },
  730. "require": {
  731. "php": "^7.1 || ^8.0"
  732. },
  733. "require-dev": {
  734. "phpstan/phpstan": "^0.12.42",
  735. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  736. "scrutinizer/ocular": "1.6.0",
  737. "squizlabs/php_codesniffer": "^3.5",
  738. "vimeo/psalm": "^4.0.0"
  739. },
  740. "type": "library",
  741. "extra": {
  742. "branch-alias": {
  743. "dev-main": "3.x-dev"
  744. }
  745. },
  746. "autoload": {
  747. "psr-4": {
  748. "Dflydev\\DotAccessData\\": "src/"
  749. }
  750. },
  751. "notification-url": "https://packagist.org/downloads/",
  752. "license": [
  753. "MIT"
  754. ],
  755. "authors": [
  756. {
  757. "name": "Dragonfly Development Inc.",
  758. "email": "info@dflydev.com",
  759. "homepage": "http://dflydev.com"
  760. },
  761. {
  762. "name": "Beau Simensen",
  763. "email": "beau@dflydev.com",
  764. "homepage": "http://beausimensen.com"
  765. },
  766. {
  767. "name": "Carlos Frutos",
  768. "email": "carlos@kiwing.it",
  769. "homepage": "https://github.com/cfrutos"
  770. },
  771. {
  772. "name": "Colin O'Dell",
  773. "email": "colinodell@gmail.com",
  774. "homepage": "https://www.colinodell.com"
  775. }
  776. ],
  777. "description": "Given a deep data structure, access data by dot notation.",
  778. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  779. "keywords": [
  780. "access",
  781. "data",
  782. "dot",
  783. "notation"
  784. ],
  785. "support": {
  786. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  787. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2"
  788. },
  789. "time": "2022-10-27T11:44:00+00:00"
  790. },
  791. {
  792. "name": "doctrine/inflector",
  793. "version": "2.0.8",
  794. "source": {
  795. "type": "git",
  796. "url": "https://github.com/doctrine/inflector.git",
  797. "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff"
  798. },
  799. "dist": {
  800. "type": "zip",
  801. "url": "https://api.github.com/repos/doctrine/inflector/zipball/f9301a5b2fb1216b2b08f02ba04dc45423db6bff",
  802. "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff",
  803. "shasum": "",
  804. "mirrors": [
  805. {
  806. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  807. "preferred": true
  808. }
  809. ]
  810. },
  811. "require": {
  812. "php": "^7.2 || ^8.0"
  813. },
  814. "require-dev": {
  815. "doctrine/coding-standard": "^11.0",
  816. "phpstan/phpstan": "^1.8",
  817. "phpstan/phpstan-phpunit": "^1.1",
  818. "phpstan/phpstan-strict-rules": "^1.3",
  819. "phpunit/phpunit": "^8.5 || ^9.5",
  820. "vimeo/psalm": "^4.25 || ^5.4"
  821. },
  822. "type": "library",
  823. "autoload": {
  824. "psr-4": {
  825. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  826. }
  827. },
  828. "notification-url": "https://packagist.org/downloads/",
  829. "license": [
  830. "MIT"
  831. ],
  832. "authors": [
  833. {
  834. "name": "Guilherme Blanco",
  835. "email": "guilhermeblanco@gmail.com"
  836. },
  837. {
  838. "name": "Roman Borschel",
  839. "email": "roman@code-factory.org"
  840. },
  841. {
  842. "name": "Benjamin Eberlei",
  843. "email": "kontakt@beberlei.de"
  844. },
  845. {
  846. "name": "Jonathan Wage",
  847. "email": "jonwage@gmail.com"
  848. },
  849. {
  850. "name": "Johannes Schmitt",
  851. "email": "schmittjoh@gmail.com"
  852. }
  853. ],
  854. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  855. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  856. "keywords": [
  857. "inflection",
  858. "inflector",
  859. "lowercase",
  860. "manipulation",
  861. "php",
  862. "plural",
  863. "singular",
  864. "strings",
  865. "uppercase",
  866. "words"
  867. ],
  868. "support": {
  869. "issues": "https://github.com/doctrine/inflector/issues",
  870. "source": "https://github.com/doctrine/inflector/tree/2.0.8"
  871. },
  872. "funding": [
  873. {
  874. "url": "https://www.doctrine-project.org/sponsorship.html",
  875. "type": "custom"
  876. },
  877. {
  878. "url": "https://www.patreon.com/phpdoctrine",
  879. "type": "patreon"
  880. },
  881. {
  882. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  883. "type": "tidelift"
  884. }
  885. ],
  886. "time": "2023-06-16T13:40:37+00:00"
  887. },
  888. {
  889. "name": "doctrine/lexer",
  890. "version": "1.2.3",
  891. "source": {
  892. "type": "git",
  893. "url": "https://github.com/doctrine/lexer.git",
  894. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  895. },
  896. "dist": {
  897. "type": "zip",
  898. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  899. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  900. "shasum": ""
  901. },
  902. "require": {
  903. "php": "^7.1 || ^8.0"
  904. },
  905. "require-dev": {
  906. "doctrine/coding-standard": "^9.0",
  907. "phpstan/phpstan": "^1.3",
  908. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  909. "vimeo/psalm": "^4.11"
  910. },
  911. "type": "library",
  912. "autoload": {
  913. "psr-4": {
  914. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  915. }
  916. },
  917. "notification-url": "https://packagist.org/downloads/",
  918. "license": [
  919. "MIT"
  920. ],
  921. "authors": [
  922. {
  923. "name": "Guilherme Blanco",
  924. "email": "guilhermeblanco@gmail.com"
  925. },
  926. {
  927. "name": "Roman Borschel",
  928. "email": "roman@code-factory.org"
  929. },
  930. {
  931. "name": "Johannes Schmitt",
  932. "email": "schmittjoh@gmail.com"
  933. }
  934. ],
  935. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  936. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  937. "keywords": [
  938. "annotations",
  939. "docblock",
  940. "lexer",
  941. "parser",
  942. "php"
  943. ],
  944. "support": {
  945. "issues": "https://github.com/doctrine/lexer/issues",
  946. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  947. },
  948. "funding": [
  949. {
  950. "url": "https://www.doctrine-project.org/sponsorship.html",
  951. "type": "custom"
  952. },
  953. {
  954. "url": "https://www.patreon.com/phpdoctrine",
  955. "type": "patreon"
  956. },
  957. {
  958. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  959. "type": "tidelift"
  960. }
  961. ],
  962. "time": "2022-02-28T11:07:21+00:00"
  963. },
  964. {
  965. "name": "dragonmantank/cron-expression",
  966. "version": "v3.3.3",
  967. "source": {
  968. "type": "git",
  969. "url": "https://github.com/dragonmantank/cron-expression.git",
  970. "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a"
  971. },
  972. "dist": {
  973. "type": "zip",
  974. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
  975. "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
  976. "shasum": "",
  977. "mirrors": [
  978. {
  979. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  980. "preferred": true
  981. }
  982. ]
  983. },
  984. "require": {
  985. "php": "^7.2|^8.0",
  986. "webmozart/assert": "^1.0"
  987. },
  988. "replace": {
  989. "mtdowling/cron-expression": "^1.0"
  990. },
  991. "require-dev": {
  992. "phpstan/extension-installer": "^1.0",
  993. "phpstan/phpstan": "^1.0",
  994. "phpstan/phpstan-webmozart-assert": "^1.0",
  995. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  996. },
  997. "type": "library",
  998. "autoload": {
  999. "psr-4": {
  1000. "Cron\\": "src/Cron/"
  1001. }
  1002. },
  1003. "notification-url": "https://packagist.org/downloads/",
  1004. "license": [
  1005. "MIT"
  1006. ],
  1007. "authors": [
  1008. {
  1009. "name": "Chris Tankersley",
  1010. "email": "chris@ctankersley.com",
  1011. "homepage": "https://github.com/dragonmantank"
  1012. }
  1013. ],
  1014. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1015. "keywords": [
  1016. "cron",
  1017. "schedule"
  1018. ],
  1019. "support": {
  1020. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  1021. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.3"
  1022. },
  1023. "funding": [
  1024. {
  1025. "url": "https://github.com/dragonmantank",
  1026. "type": "github"
  1027. }
  1028. ],
  1029. "time": "2023-08-10T19:36:49+00:00"
  1030. },
  1031. {
  1032. "name": "easywechat-composer/easywechat-composer",
  1033. "version": "1.4.1",
  1034. "source": {
  1035. "type": "git",
  1036. "url": "https://github.com/mingyoung/easywechat-composer.git",
  1037. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd"
  1038. },
  1039. "dist": {
  1040. "type": "zip",
  1041. "url": "https://api.github.com/repos/mingyoung/easywechat-composer/zipball/3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  1042. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  1043. "shasum": ""
  1044. },
  1045. "require": {
  1046. "composer-plugin-api": "^1.0 || ^2.0",
  1047. "php": ">=7.0"
  1048. },
  1049. "require-dev": {
  1050. "composer/composer": "^1.0 || ^2.0",
  1051. "phpunit/phpunit": "^6.5 || ^7.0"
  1052. },
  1053. "type": "composer-plugin",
  1054. "extra": {
  1055. "class": "EasyWeChatComposer\\Plugin"
  1056. },
  1057. "autoload": {
  1058. "psr-4": {
  1059. "EasyWeChatComposer\\": "src/"
  1060. }
  1061. },
  1062. "notification-url": "https://packagist.org/downloads/",
  1063. "license": [
  1064. "MIT"
  1065. ],
  1066. "authors": [
  1067. {
  1068. "name": "张铭阳",
  1069. "email": "mingyoungcheung@gmail.com"
  1070. }
  1071. ],
  1072. "description": "The composer plugin for EasyWeChat",
  1073. "support": {
  1074. "issues": "https://github.com/mingyoung/easywechat-composer/issues",
  1075. "source": "https://github.com/mingyoung/easywechat-composer/tree/1.4.1"
  1076. },
  1077. "time": "2021-07-05T04:03:22+00:00"
  1078. },
  1079. {
  1080. "name": "egulias/email-validator",
  1081. "version": "2.1.25",
  1082. "source": {
  1083. "type": "git",
  1084. "url": "https://github.com/egulias/EmailValidator.git",
  1085. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  1086. },
  1087. "dist": {
  1088. "type": "zip",
  1089. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1090. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1091. "shasum": ""
  1092. },
  1093. "require": {
  1094. "doctrine/lexer": "^1.0.1",
  1095. "php": ">=5.5",
  1096. "symfony/polyfill-intl-idn": "^1.10"
  1097. },
  1098. "require-dev": {
  1099. "dominicsayers/isemail": "^3.0.7",
  1100. "phpunit/phpunit": "^4.8.36|^7.5.15",
  1101. "satooshi/php-coveralls": "^1.0.1"
  1102. },
  1103. "suggest": {
  1104. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1105. },
  1106. "type": "library",
  1107. "extra": {
  1108. "branch-alias": {
  1109. "dev-master": "2.1.x-dev"
  1110. }
  1111. },
  1112. "autoload": {
  1113. "psr-4": {
  1114. "Egulias\\EmailValidator\\": "src"
  1115. }
  1116. },
  1117. "notification-url": "https://packagist.org/downloads/",
  1118. "license": [
  1119. "MIT"
  1120. ],
  1121. "authors": [
  1122. {
  1123. "name": "Eduardo Gulias Davis"
  1124. }
  1125. ],
  1126. "description": "A library for validating emails against several RFCs",
  1127. "homepage": "https://github.com/egulias/EmailValidator",
  1128. "keywords": [
  1129. "email",
  1130. "emailvalidation",
  1131. "emailvalidator",
  1132. "validation",
  1133. "validator"
  1134. ],
  1135. "support": {
  1136. "issues": "https://github.com/egulias/EmailValidator/issues",
  1137. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  1138. },
  1139. "funding": [
  1140. {
  1141. "url": "https://github.com/egulias",
  1142. "type": "github"
  1143. }
  1144. ],
  1145. "time": "2020-12-29T14:50:06+00:00"
  1146. },
  1147. {
  1148. "name": "ezyang/htmlpurifier",
  1149. "version": "v4.16.0",
  1150. "source": {
  1151. "type": "git",
  1152. "url": "https://github.com/ezyang/htmlpurifier.git",
  1153. "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8"
  1154. },
  1155. "dist": {
  1156. "type": "zip",
  1157. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/523407fb06eb9e5f3d59889b3978d5bfe94299c8",
  1158. "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8",
  1159. "shasum": "",
  1160. "mirrors": [
  1161. {
  1162. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1163. "preferred": true
  1164. }
  1165. ]
  1166. },
  1167. "require": {
  1168. "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"
  1169. },
  1170. "require-dev": {
  1171. "cerdic/css-tidy": "^1.7 || ^2.0",
  1172. "simpletest/simpletest": "dev-master"
  1173. },
  1174. "suggest": {
  1175. "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
  1176. "ext-bcmath": "Used for unit conversion and imagecrash protection",
  1177. "ext-iconv": "Converts text to and from non-UTF-8 encodings",
  1178. "ext-tidy": "Used for pretty-printing HTML"
  1179. },
  1180. "type": "library",
  1181. "autoload": {
  1182. "files": [
  1183. "library/HTMLPurifier.composer.php"
  1184. ],
  1185. "psr-0": {
  1186. "HTMLPurifier": "library/"
  1187. },
  1188. "exclude-from-classmap": [
  1189. "/library/HTMLPurifier/Language/"
  1190. ]
  1191. },
  1192. "notification-url": "https://packagist.org/downloads/",
  1193. "license": [
  1194. "LGPL-2.1-or-later"
  1195. ],
  1196. "authors": [
  1197. {
  1198. "name": "Edward Z. Yang",
  1199. "email": "admin@htmlpurifier.org",
  1200. "homepage": "http://ezyang.com"
  1201. }
  1202. ],
  1203. "description": "Standards compliant HTML filter written in PHP",
  1204. "homepage": "http://htmlpurifier.org/",
  1205. "keywords": [
  1206. "html"
  1207. ],
  1208. "support": {
  1209. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  1210. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.16.0"
  1211. },
  1212. "time": "2022-09-18T07:06:19+00:00"
  1213. },
  1214. {
  1215. "name": "fideloper/proxy",
  1216. "version": "4.4.2",
  1217. "source": {
  1218. "type": "git",
  1219. "url": "https://github.com/fideloper/TrustedProxy.git",
  1220. "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750"
  1221. },
  1222. "dist": {
  1223. "type": "zip",
  1224. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/a751f2bc86dd8e6cfef12dc0cbdada82f5a18750",
  1225. "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750",
  1226. "shasum": "",
  1227. "mirrors": [
  1228. {
  1229. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1230. "preferred": true
  1231. }
  1232. ]
  1233. },
  1234. "require": {
  1235. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1236. "php": ">=5.4.0"
  1237. },
  1238. "require-dev": {
  1239. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1240. "mockery/mockery": "^1.0",
  1241. "phpunit/phpunit": "^8.5.8|^9.3.3"
  1242. },
  1243. "type": "library",
  1244. "extra": {
  1245. "laravel": {
  1246. "providers": [
  1247. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  1248. ]
  1249. }
  1250. },
  1251. "autoload": {
  1252. "psr-4": {
  1253. "Fideloper\\Proxy\\": "src/"
  1254. }
  1255. },
  1256. "notification-url": "https://packagist.org/downloads/",
  1257. "license": [
  1258. "MIT"
  1259. ],
  1260. "authors": [
  1261. {
  1262. "name": "Chris Fidao",
  1263. "email": "fideloper@gmail.com"
  1264. }
  1265. ],
  1266. "description": "Set trusted proxies for Laravel",
  1267. "keywords": [
  1268. "load balancing",
  1269. "proxy",
  1270. "trusted proxy"
  1271. ],
  1272. "support": {
  1273. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  1274. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.2"
  1275. },
  1276. "time": "2022-02-09T13:33:34+00:00"
  1277. },
  1278. {
  1279. "name": "firebase/php-jwt",
  1280. "version": "v6.10.0",
  1281. "source": {
  1282. "type": "git",
  1283. "url": "https://github.com/firebase/php-jwt.git",
  1284. "reference": "a49db6f0a5033aef5143295342f1c95521b075ff"
  1285. },
  1286. "dist": {
  1287. "type": "zip",
  1288. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/a49db6f0a5033aef5143295342f1c95521b075ff",
  1289. "reference": "a49db6f0a5033aef5143295342f1c95521b075ff",
  1290. "shasum": ""
  1291. },
  1292. "require": {
  1293. "php": "^7.4||^8.0"
  1294. },
  1295. "require-dev": {
  1296. "guzzlehttp/guzzle": "^6.5||^7.4",
  1297. "phpspec/prophecy-phpunit": "^2.0",
  1298. "phpunit/phpunit": "^9.5",
  1299. "psr/cache": "^1.0||^2.0",
  1300. "psr/http-client": "^1.0",
  1301. "psr/http-factory": "^1.0"
  1302. },
  1303. "suggest": {
  1304. "ext-sodium": "Support EdDSA (Ed25519) signatures",
  1305. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  1306. },
  1307. "type": "library",
  1308. "autoload": {
  1309. "psr-4": {
  1310. "Firebase\\JWT\\": "src"
  1311. }
  1312. },
  1313. "notification-url": "https://packagist.org/downloads/",
  1314. "license": [
  1315. "BSD-3-Clause"
  1316. ],
  1317. "authors": [
  1318. {
  1319. "name": "Neuman Vong",
  1320. "email": "neuman+pear@twilio.com",
  1321. "role": "Developer"
  1322. },
  1323. {
  1324. "name": "Anant Narayanan",
  1325. "email": "anant@php.net",
  1326. "role": "Developer"
  1327. }
  1328. ],
  1329. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  1330. "homepage": "https://github.com/firebase/php-jwt",
  1331. "keywords": [
  1332. "jwt",
  1333. "php"
  1334. ],
  1335. "support": {
  1336. "issues": "https://github.com/firebase/php-jwt/issues",
  1337. "source": "https://github.com/firebase/php-jwt/tree/v6.10.0"
  1338. },
  1339. "time": "2023-12-01T16:26:39+00:00"
  1340. },
  1341. {
  1342. "name": "fruitcake/laravel-cors",
  1343. "version": "v2.2.0",
  1344. "source": {
  1345. "type": "git",
  1346. "url": "https://github.com/fruitcake/laravel-cors.git",
  1347. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534"
  1348. },
  1349. "dist": {
  1350. "type": "zip",
  1351. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/783a74f5e3431d7b9805be8afb60fd0a8f743534",
  1352. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534",
  1353. "shasum": "",
  1354. "mirrors": [
  1355. {
  1356. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1357. "preferred": true
  1358. }
  1359. ]
  1360. },
  1361. "require": {
  1362. "asm89/stack-cors": "^2.0.1",
  1363. "illuminate/contracts": "^6|^7|^8|^9",
  1364. "illuminate/support": "^6|^7|^8|^9",
  1365. "php": ">=7.2"
  1366. },
  1367. "require-dev": {
  1368. "laravel/framework": "^6|^7.24|^8",
  1369. "orchestra/testbench-dusk": "^4|^5|^6|^7",
  1370. "phpunit/phpunit": "^6|^7|^8|^9",
  1371. "squizlabs/php_codesniffer": "^3.5"
  1372. },
  1373. "type": "library",
  1374. "extra": {
  1375. "branch-alias": {
  1376. "dev-master": "2.1-dev"
  1377. },
  1378. "laravel": {
  1379. "providers": [
  1380. "Fruitcake\\Cors\\CorsServiceProvider"
  1381. ]
  1382. }
  1383. },
  1384. "autoload": {
  1385. "psr-4": {
  1386. "Fruitcake\\Cors\\": "src/"
  1387. }
  1388. },
  1389. "notification-url": "https://packagist.org/downloads/",
  1390. "license": [
  1391. "MIT"
  1392. ],
  1393. "authors": [
  1394. {
  1395. "name": "Fruitcake",
  1396. "homepage": "https://fruitcake.nl"
  1397. },
  1398. {
  1399. "name": "Barry vd. Heuvel",
  1400. "email": "barryvdh@gmail.com"
  1401. }
  1402. ],
  1403. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  1404. "keywords": [
  1405. "api",
  1406. "cors",
  1407. "crossdomain",
  1408. "laravel"
  1409. ],
  1410. "support": {
  1411. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  1412. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.2.0"
  1413. },
  1414. "funding": [
  1415. {
  1416. "url": "https://fruitcake.nl",
  1417. "type": "custom"
  1418. },
  1419. {
  1420. "url": "https://github.com/barryvdh",
  1421. "type": "github"
  1422. }
  1423. ],
  1424. "abandoned": true,
  1425. "time": "2022-02-23T14:25:13+00:00"
  1426. },
  1427. {
  1428. "name": "graham-campbell/manager",
  1429. "version": "v4.7.0",
  1430. "source": {
  1431. "type": "git",
  1432. "url": "https://github.com/GrahamCampbell/Laravel-Manager.git",
  1433. "reference": "b4cafa6491b9c92ecf7ce17521580050a27b8308"
  1434. },
  1435. "dist": {
  1436. "type": "zip",
  1437. "url": "https://api.github.com/repos/GrahamCampbell/Laravel-Manager/zipball/b4cafa6491b9c92ecf7ce17521580050a27b8308",
  1438. "reference": "b4cafa6491b9c92ecf7ce17521580050a27b8308",
  1439. "shasum": "",
  1440. "mirrors": [
  1441. {
  1442. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1443. "preferred": true
  1444. }
  1445. ]
  1446. },
  1447. "require": {
  1448. "illuminate/contracts": "^5.5 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
  1449. "illuminate/support": "^5.5 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
  1450. "php": "^7.1.3 || ^8.0"
  1451. },
  1452. "require-dev": {
  1453. "graham-campbell/analyzer": "^2.4 || ^3.0",
  1454. "graham-campbell/testbench-core": "^3.4",
  1455. "mockery/mockery": "^1.3.1",
  1456. "phpunit/phpunit": "^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.7"
  1457. },
  1458. "type": "library",
  1459. "autoload": {
  1460. "psr-4": {
  1461. "GrahamCampbell\\Manager\\": "src/"
  1462. }
  1463. },
  1464. "notification-url": "https://packagist.org/downloads/",
  1465. "license": [
  1466. "MIT"
  1467. ],
  1468. "authors": [
  1469. {
  1470. "name": "Graham Campbell",
  1471. "email": "hello@gjcampbell.co.uk",
  1472. "homepage": "https://github.com/GrahamCampbell"
  1473. }
  1474. ],
  1475. "description": "Manager Provides Some Manager Functionality For Laravel",
  1476. "keywords": [
  1477. "Graham Campbell",
  1478. "GrahamCampbell",
  1479. "Laravel Manager",
  1480. "Laravel-Manager",
  1481. "connector",
  1482. "framework",
  1483. "interface",
  1484. "laravel",
  1485. "manager"
  1486. ],
  1487. "support": {
  1488. "issues": "https://github.com/GrahamCampbell/Laravel-Manager/issues",
  1489. "source": "https://github.com/GrahamCampbell/Laravel-Manager/tree/v4.7.0"
  1490. },
  1491. "funding": [
  1492. {
  1493. "url": "https://github.com/GrahamCampbell",
  1494. "type": "github"
  1495. },
  1496. {
  1497. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/manager",
  1498. "type": "tidelift"
  1499. }
  1500. ],
  1501. "time": "2022-01-24T01:59:19+00:00"
  1502. },
  1503. {
  1504. "name": "graham-campbell/result-type",
  1505. "version": "v1.1.2",
  1506. "source": {
  1507. "type": "git",
  1508. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  1509. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862"
  1510. },
  1511. "dist": {
  1512. "type": "zip",
  1513. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/fbd48bce38f73f8a4ec8583362e732e4095e5862",
  1514. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862",
  1515. "shasum": "",
  1516. "mirrors": [
  1517. {
  1518. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1519. "preferred": true
  1520. }
  1521. ]
  1522. },
  1523. "require": {
  1524. "php": "^7.2.5 || ^8.0",
  1525. "phpoption/phpoption": "^1.9.2"
  1526. },
  1527. "require-dev": {
  1528. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  1529. },
  1530. "type": "library",
  1531. "autoload": {
  1532. "psr-4": {
  1533. "GrahamCampbell\\ResultType\\": "src/"
  1534. }
  1535. },
  1536. "notification-url": "https://packagist.org/downloads/",
  1537. "license": [
  1538. "MIT"
  1539. ],
  1540. "authors": [
  1541. {
  1542. "name": "Graham Campbell",
  1543. "email": "hello@gjcampbell.co.uk",
  1544. "homepage": "https://github.com/GrahamCampbell"
  1545. }
  1546. ],
  1547. "description": "An Implementation Of The Result Type",
  1548. "keywords": [
  1549. "Graham Campbell",
  1550. "GrahamCampbell",
  1551. "Result Type",
  1552. "Result-Type",
  1553. "result"
  1554. ],
  1555. "support": {
  1556. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  1557. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.2"
  1558. },
  1559. "funding": [
  1560. {
  1561. "url": "https://github.com/GrahamCampbell",
  1562. "type": "github"
  1563. },
  1564. {
  1565. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  1566. "type": "tidelift"
  1567. }
  1568. ],
  1569. "time": "2023-11-12T22:16:48+00:00"
  1570. },
  1571. {
  1572. "name": "guzzlehttp/guzzle",
  1573. "version": "7.8.1",
  1574. "source": {
  1575. "type": "git",
  1576. "url": "https://github.com/guzzle/guzzle.git",
  1577. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104"
  1578. },
  1579. "dist": {
  1580. "type": "zip",
  1581. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104",
  1582. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104",
  1583. "shasum": "",
  1584. "mirrors": [
  1585. {
  1586. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1587. "preferred": true
  1588. }
  1589. ]
  1590. },
  1591. "require": {
  1592. "ext-json": "*",
  1593. "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
  1594. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  1595. "php": "^7.2.5 || ^8.0",
  1596. "psr/http-client": "^1.0",
  1597. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1598. },
  1599. "provide": {
  1600. "psr/http-client-implementation": "1.0"
  1601. },
  1602. "require-dev": {
  1603. "bamarni/composer-bin-plugin": "^1.8.2",
  1604. "ext-curl": "*",
  1605. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  1606. "php-http/message-factory": "^1.1",
  1607. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  1608. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1609. },
  1610. "suggest": {
  1611. "ext-curl": "Required for CURL handler support",
  1612. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1613. "psr/log": "Required for using the Log middleware"
  1614. },
  1615. "type": "library",
  1616. "extra": {
  1617. "bamarni-bin": {
  1618. "bin-links": true,
  1619. "forward-command": false
  1620. }
  1621. },
  1622. "autoload": {
  1623. "files": [
  1624. "src/functions_include.php"
  1625. ],
  1626. "psr-4": {
  1627. "GuzzleHttp\\": "src/"
  1628. }
  1629. },
  1630. "notification-url": "https://packagist.org/downloads/",
  1631. "license": [
  1632. "MIT"
  1633. ],
  1634. "authors": [
  1635. {
  1636. "name": "Graham Campbell",
  1637. "email": "hello@gjcampbell.co.uk",
  1638. "homepage": "https://github.com/GrahamCampbell"
  1639. },
  1640. {
  1641. "name": "Michael Dowling",
  1642. "email": "mtdowling@gmail.com",
  1643. "homepage": "https://github.com/mtdowling"
  1644. },
  1645. {
  1646. "name": "Jeremy Lindblom",
  1647. "email": "jeremeamia@gmail.com",
  1648. "homepage": "https://github.com/jeremeamia"
  1649. },
  1650. {
  1651. "name": "George Mponos",
  1652. "email": "gmponos@gmail.com",
  1653. "homepage": "https://github.com/gmponos"
  1654. },
  1655. {
  1656. "name": "Tobias Nyholm",
  1657. "email": "tobias.nyholm@gmail.com",
  1658. "homepage": "https://github.com/Nyholm"
  1659. },
  1660. {
  1661. "name": "Márk Sági-Kazár",
  1662. "email": "mark.sagikazar@gmail.com",
  1663. "homepage": "https://github.com/sagikazarmark"
  1664. },
  1665. {
  1666. "name": "Tobias Schultze",
  1667. "email": "webmaster@tubo-world.de",
  1668. "homepage": "https://github.com/Tobion"
  1669. }
  1670. ],
  1671. "description": "Guzzle is a PHP HTTP client library",
  1672. "keywords": [
  1673. "client",
  1674. "curl",
  1675. "framework",
  1676. "http",
  1677. "http client",
  1678. "psr-18",
  1679. "psr-7",
  1680. "rest",
  1681. "web service"
  1682. ],
  1683. "support": {
  1684. "issues": "https://github.com/guzzle/guzzle/issues",
  1685. "source": "https://github.com/guzzle/guzzle/tree/7.8.1"
  1686. },
  1687. "funding": [
  1688. {
  1689. "url": "https://github.com/GrahamCampbell",
  1690. "type": "github"
  1691. },
  1692. {
  1693. "url": "https://github.com/Nyholm",
  1694. "type": "github"
  1695. },
  1696. {
  1697. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1698. "type": "tidelift"
  1699. }
  1700. ],
  1701. "time": "2023-12-03T20:35:24+00:00"
  1702. },
  1703. {
  1704. "name": "guzzlehttp/promises",
  1705. "version": "2.0.1",
  1706. "source": {
  1707. "type": "git",
  1708. "url": "https://github.com/guzzle/promises.git",
  1709. "reference": "111166291a0f8130081195ac4556a5587d7f1b5d"
  1710. },
  1711. "dist": {
  1712. "type": "zip",
  1713. "url": "https://api.github.com/repos/guzzle/promises/zipball/111166291a0f8130081195ac4556a5587d7f1b5d",
  1714. "reference": "111166291a0f8130081195ac4556a5587d7f1b5d",
  1715. "shasum": "",
  1716. "mirrors": [
  1717. {
  1718. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1719. "preferred": true
  1720. }
  1721. ]
  1722. },
  1723. "require": {
  1724. "php": "^7.2.5 || ^8.0"
  1725. },
  1726. "require-dev": {
  1727. "bamarni/composer-bin-plugin": "^1.8.1",
  1728. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  1729. },
  1730. "type": "library",
  1731. "extra": {
  1732. "bamarni-bin": {
  1733. "bin-links": true,
  1734. "forward-command": false
  1735. }
  1736. },
  1737. "autoload": {
  1738. "psr-4": {
  1739. "GuzzleHttp\\Promise\\": "src/"
  1740. }
  1741. },
  1742. "notification-url": "https://packagist.org/downloads/",
  1743. "license": [
  1744. "MIT"
  1745. ],
  1746. "authors": [
  1747. {
  1748. "name": "Graham Campbell",
  1749. "email": "hello@gjcampbell.co.uk",
  1750. "homepage": "https://github.com/GrahamCampbell"
  1751. },
  1752. {
  1753. "name": "Michael Dowling",
  1754. "email": "mtdowling@gmail.com",
  1755. "homepage": "https://github.com/mtdowling"
  1756. },
  1757. {
  1758. "name": "Tobias Nyholm",
  1759. "email": "tobias.nyholm@gmail.com",
  1760. "homepage": "https://github.com/Nyholm"
  1761. },
  1762. {
  1763. "name": "Tobias Schultze",
  1764. "email": "webmaster@tubo-world.de",
  1765. "homepage": "https://github.com/Tobion"
  1766. }
  1767. ],
  1768. "description": "Guzzle promises library",
  1769. "keywords": [
  1770. "promise"
  1771. ],
  1772. "support": {
  1773. "issues": "https://github.com/guzzle/promises/issues",
  1774. "source": "https://github.com/guzzle/promises/tree/2.0.1"
  1775. },
  1776. "funding": [
  1777. {
  1778. "url": "https://github.com/GrahamCampbell",
  1779. "type": "github"
  1780. },
  1781. {
  1782. "url": "https://github.com/Nyholm",
  1783. "type": "github"
  1784. },
  1785. {
  1786. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1787. "type": "tidelift"
  1788. }
  1789. ],
  1790. "time": "2023-08-03T15:11:55+00:00"
  1791. },
  1792. {
  1793. "name": "guzzlehttp/psr7",
  1794. "version": "2.6.2",
  1795. "source": {
  1796. "type": "git",
  1797. "url": "https://github.com/guzzle/psr7.git",
  1798. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221"
  1799. },
  1800. "dist": {
  1801. "type": "zip",
  1802. "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221",
  1803. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221",
  1804. "shasum": "",
  1805. "mirrors": [
  1806. {
  1807. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1808. "preferred": true
  1809. }
  1810. ]
  1811. },
  1812. "require": {
  1813. "php": "^7.2.5 || ^8.0",
  1814. "psr/http-factory": "^1.0",
  1815. "psr/http-message": "^1.1 || ^2.0",
  1816. "ralouphie/getallheaders": "^3.0"
  1817. },
  1818. "provide": {
  1819. "psr/http-factory-implementation": "1.0",
  1820. "psr/http-message-implementation": "1.0"
  1821. },
  1822. "require-dev": {
  1823. "bamarni/composer-bin-plugin": "^1.8.2",
  1824. "http-interop/http-factory-tests": "^0.9",
  1825. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  1826. },
  1827. "suggest": {
  1828. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1829. },
  1830. "type": "library",
  1831. "extra": {
  1832. "bamarni-bin": {
  1833. "bin-links": true,
  1834. "forward-command": false
  1835. }
  1836. },
  1837. "autoload": {
  1838. "psr-4": {
  1839. "GuzzleHttp\\Psr7\\": "src/"
  1840. }
  1841. },
  1842. "notification-url": "https://packagist.org/downloads/",
  1843. "license": [
  1844. "MIT"
  1845. ],
  1846. "authors": [
  1847. {
  1848. "name": "Graham Campbell",
  1849. "email": "hello@gjcampbell.co.uk",
  1850. "homepage": "https://github.com/GrahamCampbell"
  1851. },
  1852. {
  1853. "name": "Michael Dowling",
  1854. "email": "mtdowling@gmail.com",
  1855. "homepage": "https://github.com/mtdowling"
  1856. },
  1857. {
  1858. "name": "George Mponos",
  1859. "email": "gmponos@gmail.com",
  1860. "homepage": "https://github.com/gmponos"
  1861. },
  1862. {
  1863. "name": "Tobias Nyholm",
  1864. "email": "tobias.nyholm@gmail.com",
  1865. "homepage": "https://github.com/Nyholm"
  1866. },
  1867. {
  1868. "name": "Márk Sági-Kazár",
  1869. "email": "mark.sagikazar@gmail.com",
  1870. "homepage": "https://github.com/sagikazarmark"
  1871. },
  1872. {
  1873. "name": "Tobias Schultze",
  1874. "email": "webmaster@tubo-world.de",
  1875. "homepage": "https://github.com/Tobion"
  1876. },
  1877. {
  1878. "name": "Márk Sági-Kazár",
  1879. "email": "mark.sagikazar@gmail.com",
  1880. "homepage": "https://sagikazarmark.hu"
  1881. }
  1882. ],
  1883. "description": "PSR-7 message implementation that also provides common utility methods",
  1884. "keywords": [
  1885. "http",
  1886. "message",
  1887. "psr-7",
  1888. "request",
  1889. "response",
  1890. "stream",
  1891. "uri",
  1892. "url"
  1893. ],
  1894. "support": {
  1895. "issues": "https://github.com/guzzle/psr7/issues",
  1896. "source": "https://github.com/guzzle/psr7/tree/2.6.2"
  1897. },
  1898. "funding": [
  1899. {
  1900. "url": "https://github.com/GrahamCampbell",
  1901. "type": "github"
  1902. },
  1903. {
  1904. "url": "https://github.com/Nyholm",
  1905. "type": "github"
  1906. },
  1907. {
  1908. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1909. "type": "tidelift"
  1910. }
  1911. ],
  1912. "time": "2023-12-03T20:05:35+00:00"
  1913. },
  1914. {
  1915. "name": "guzzlehttp/uri-template",
  1916. "version": "v1.0.3",
  1917. "source": {
  1918. "type": "git",
  1919. "url": "https://github.com/guzzle/uri-template.git",
  1920. "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c"
  1921. },
  1922. "dist": {
  1923. "type": "zip",
  1924. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/ecea8feef63bd4fef1f037ecb288386999ecc11c",
  1925. "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c",
  1926. "shasum": "",
  1927. "mirrors": [
  1928. {
  1929. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1930. "preferred": true
  1931. }
  1932. ]
  1933. },
  1934. "require": {
  1935. "php": "^7.2.5 || ^8.0",
  1936. "symfony/polyfill-php80": "^1.24"
  1937. },
  1938. "require-dev": {
  1939. "bamarni/composer-bin-plugin": "^1.8.2",
  1940. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  1941. "uri-template/tests": "1.0.0"
  1942. },
  1943. "type": "library",
  1944. "extra": {
  1945. "bamarni-bin": {
  1946. "bin-links": true,
  1947. "forward-command": false
  1948. }
  1949. },
  1950. "autoload": {
  1951. "psr-4": {
  1952. "GuzzleHttp\\UriTemplate\\": "src"
  1953. }
  1954. },
  1955. "notification-url": "https://packagist.org/downloads/",
  1956. "license": [
  1957. "MIT"
  1958. ],
  1959. "authors": [
  1960. {
  1961. "name": "Graham Campbell",
  1962. "email": "hello@gjcampbell.co.uk",
  1963. "homepage": "https://github.com/GrahamCampbell"
  1964. },
  1965. {
  1966. "name": "Michael Dowling",
  1967. "email": "mtdowling@gmail.com",
  1968. "homepage": "https://github.com/mtdowling"
  1969. },
  1970. {
  1971. "name": "George Mponos",
  1972. "email": "gmponos@gmail.com",
  1973. "homepage": "https://github.com/gmponos"
  1974. },
  1975. {
  1976. "name": "Tobias Nyholm",
  1977. "email": "tobias.nyholm@gmail.com",
  1978. "homepage": "https://github.com/Nyholm"
  1979. }
  1980. ],
  1981. "description": "A polyfill class for uri_template of PHP",
  1982. "keywords": [
  1983. "guzzlehttp",
  1984. "uri-template"
  1985. ],
  1986. "support": {
  1987. "issues": "https://github.com/guzzle/uri-template/issues",
  1988. "source": "https://github.com/guzzle/uri-template/tree/v1.0.3"
  1989. },
  1990. "funding": [
  1991. {
  1992. "url": "https://github.com/GrahamCampbell",
  1993. "type": "github"
  1994. },
  1995. {
  1996. "url": "https://github.com/Nyholm",
  1997. "type": "github"
  1998. },
  1999. {
  2000. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  2001. "type": "tidelift"
  2002. }
  2003. ],
  2004. "time": "2023-12-03T19:50:20+00:00"
  2005. },
  2006. {
  2007. "name": "hashids/hashids",
  2008. "version": "4.1.0",
  2009. "source": {
  2010. "type": "git",
  2011. "url": "https://github.com/vinkla/hashids.git",
  2012. "reference": "8cab111f78e0bd9c76953b082919fc9e251761be"
  2013. },
  2014. "dist": {
  2015. "type": "zip",
  2016. "url": "https://api.github.com/repos/vinkla/hashids/zipball/8cab111f78e0bd9c76953b082919fc9e251761be",
  2017. "reference": "8cab111f78e0bd9c76953b082919fc9e251761be",
  2018. "shasum": "",
  2019. "mirrors": [
  2020. {
  2021. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2022. "preferred": true
  2023. }
  2024. ]
  2025. },
  2026. "require": {
  2027. "ext-mbstring": "*",
  2028. "php": "^7.2 || ^8.0"
  2029. },
  2030. "require-dev": {
  2031. "phpunit/phpunit": "^8.0 || ^9.4",
  2032. "squizlabs/php_codesniffer": "^3.5"
  2033. },
  2034. "suggest": {
  2035. "ext-bcmath": "Required to use BC Math arbitrary precision mathematics (*).",
  2036. "ext-gmp": "Required to use GNU multiple precision mathematics (*)."
  2037. },
  2038. "type": "library",
  2039. "extra": {
  2040. "branch-alias": {
  2041. "dev-master": "4.1-dev"
  2042. }
  2043. },
  2044. "autoload": {
  2045. "psr-4": {
  2046. "Hashids\\": "src/"
  2047. }
  2048. },
  2049. "notification-url": "https://packagist.org/downloads/",
  2050. "license": [
  2051. "MIT"
  2052. ],
  2053. "authors": [
  2054. {
  2055. "name": "Ivan Akimov",
  2056. "email": "ivan@barreleye.com"
  2057. },
  2058. {
  2059. "name": "Vincent Klaiber",
  2060. "email": "hello@doubledip.se"
  2061. }
  2062. ],
  2063. "description": "Generate short, unique, non-sequential ids (like YouTube and Bitly) from numbers",
  2064. "homepage": "https://hashids.org/php",
  2065. "keywords": [
  2066. "bitly",
  2067. "decode",
  2068. "encode",
  2069. "hash",
  2070. "hashid",
  2071. "hashids",
  2072. "ids",
  2073. "obfuscate",
  2074. "youtube"
  2075. ],
  2076. "support": {
  2077. "issues": "https://github.com/vinkla/hashids/issues",
  2078. "source": "https://github.com/vinkla/hashids/tree/4.1.0"
  2079. },
  2080. "time": "2020-11-26T19:24:33+00:00"
  2081. },
  2082. {
  2083. "name": "intervention/image",
  2084. "version": "2.7.2",
  2085. "source": {
  2086. "type": "git",
  2087. "url": "https://github.com/Intervention/image.git",
  2088. "reference": "04be355f8d6734c826045d02a1079ad658322dad"
  2089. },
  2090. "dist": {
  2091. "type": "zip",
  2092. "url": "https://api.github.com/repos/Intervention/image/zipball/04be355f8d6734c826045d02a1079ad658322dad",
  2093. "reference": "04be355f8d6734c826045d02a1079ad658322dad",
  2094. "shasum": "",
  2095. "mirrors": [
  2096. {
  2097. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2098. "preferred": true
  2099. }
  2100. ]
  2101. },
  2102. "require": {
  2103. "ext-fileinfo": "*",
  2104. "guzzlehttp/psr7": "~1.1 || ^2.0",
  2105. "php": ">=5.4.0"
  2106. },
  2107. "require-dev": {
  2108. "mockery/mockery": "~0.9.2",
  2109. "phpunit/phpunit": "^4.8 || ^5.7 || ^7.5.15"
  2110. },
  2111. "suggest": {
  2112. "ext-gd": "to use GD library based image processing.",
  2113. "ext-imagick": "to use Imagick based image processing.",
  2114. "intervention/imagecache": "Caching extension for the Intervention Image library"
  2115. },
  2116. "type": "library",
  2117. "extra": {
  2118. "branch-alias": {
  2119. "dev-master": "2.4-dev"
  2120. },
  2121. "laravel": {
  2122. "providers": [
  2123. "Intervention\\Image\\ImageServiceProvider"
  2124. ],
  2125. "aliases": {
  2126. "Image": "Intervention\\Image\\Facades\\Image"
  2127. }
  2128. }
  2129. },
  2130. "autoload": {
  2131. "psr-4": {
  2132. "Intervention\\Image\\": "src/Intervention/Image"
  2133. }
  2134. },
  2135. "notification-url": "https://packagist.org/downloads/",
  2136. "license": [
  2137. "MIT"
  2138. ],
  2139. "authors": [
  2140. {
  2141. "name": "Oliver Vogel",
  2142. "email": "oliver@intervention.io",
  2143. "homepage": "https://intervention.io/"
  2144. }
  2145. ],
  2146. "description": "Image handling and manipulation library with support for Laravel integration",
  2147. "homepage": "http://image.intervention.io/",
  2148. "keywords": [
  2149. "gd",
  2150. "image",
  2151. "imagick",
  2152. "laravel",
  2153. "thumbnail",
  2154. "watermark"
  2155. ],
  2156. "support": {
  2157. "issues": "https://github.com/Intervention/image/issues",
  2158. "source": "https://github.com/Intervention/image/tree/2.7.2"
  2159. },
  2160. "funding": [
  2161. {
  2162. "url": "https://paypal.me/interventionio",
  2163. "type": "custom"
  2164. },
  2165. {
  2166. "url": "https://github.com/Intervention",
  2167. "type": "github"
  2168. }
  2169. ],
  2170. "time": "2022-05-21T17:30:32+00:00"
  2171. },
  2172. {
  2173. "name": "ixudra/curl",
  2174. "version": "6.22.1",
  2175. "source": {
  2176. "type": "git",
  2177. "url": "https://github.com/ixudra/curl.git",
  2178. "reference": "0b2cc89ed5eb91d617295e7e745f3acd3ab47180"
  2179. },
  2180. "dist": {
  2181. "type": "zip",
  2182. "url": "https://api.github.com/repos/ixudra/curl/zipball/0b2cc89ed5eb91d617295e7e745f3acd3ab47180",
  2183. "reference": "0b2cc89ed5eb91d617295e7e745f3acd3ab47180",
  2184. "shasum": "",
  2185. "mirrors": [
  2186. {
  2187. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2188. "preferred": true
  2189. }
  2190. ]
  2191. },
  2192. "require": {
  2193. "ext-curl": "*",
  2194. "illuminate/support": ">=4.0",
  2195. "php": ">=5.4.0"
  2196. },
  2197. "type": "library",
  2198. "extra": {
  2199. "laravel": {
  2200. "providers": [
  2201. "Ixudra\\Curl\\CurlServiceProvider"
  2202. ],
  2203. "aliases": {
  2204. "Curl": "Ixudra\\Curl\\Facades\\Curl"
  2205. }
  2206. }
  2207. },
  2208. "autoload": {
  2209. "psr-4": {
  2210. "Ixudra\\Curl\\": "src/"
  2211. }
  2212. },
  2213. "notification-url": "https://packagist.org/downloads/",
  2214. "license": [
  2215. "MIT"
  2216. ],
  2217. "authors": [
  2218. {
  2219. "name": "Jan Oris",
  2220. "email": "jan.oris@ixudra.be"
  2221. }
  2222. ],
  2223. "description": "Custom PHP Curl library for the Laravel framework - developed by Ixudra",
  2224. "homepage": "http://ixudra.be",
  2225. "keywords": [
  2226. "Ixudra",
  2227. "curl",
  2228. "laravel"
  2229. ],
  2230. "support": {
  2231. "issues": "https://github.com/ixudra/curl/issues",
  2232. "source": "https://github.com/ixudra/curl/tree/6.22.1"
  2233. },
  2234. "time": "2022-07-31T09:58:52+00:00"
  2235. },
  2236. {
  2237. "name": "kra8/laravel-snowflake",
  2238. "version": "v2.1.0",
  2239. "source": {
  2240. "type": "git",
  2241. "url": "https://github.com/kra8/laravel-snowflake.git",
  2242. "reference": "c56250c9e5b75eb26864f298039a74720b2ab1ed"
  2243. },
  2244. "dist": {
  2245. "type": "zip",
  2246. "url": "https://api.github.com/repos/kra8/laravel-snowflake/zipball/c56250c9e5b75eb26864f298039a74720b2ab1ed",
  2247. "reference": "c56250c9e5b75eb26864f298039a74720b2ab1ed",
  2248. "shasum": "",
  2249. "mirrors": [
  2250. {
  2251. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2252. "preferred": true
  2253. }
  2254. ]
  2255. },
  2256. "require": {
  2257. "illuminate/support": "^6.3|^7.0|^8.0|^9.0",
  2258. "php": "^7.2.5|^8.0"
  2259. },
  2260. "require-dev": {
  2261. "orchestra/testbench": "^5.0|^6.0|^7.0",
  2262. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2263. },
  2264. "type": "library",
  2265. "extra": {
  2266. "laravel": {
  2267. "providers": [
  2268. "Kra8\\Snowflake\\Providers\\LaravelServiceProvider"
  2269. ]
  2270. }
  2271. },
  2272. "autoload": {
  2273. "psr-4": {
  2274. "Kra8\\Snowflake\\": "src/"
  2275. }
  2276. },
  2277. "notification-url": "https://packagist.org/downloads/",
  2278. "license": [
  2279. "MIT"
  2280. ],
  2281. "authors": [
  2282. {
  2283. "name": "Koki Asai",
  2284. "email": "me@kra.dev"
  2285. }
  2286. ],
  2287. "description": "Snowflake for Laravel and Lumen.",
  2288. "homepage": "https://github.com/kra8/laravel-snowflake",
  2289. "keywords": [
  2290. "laravel",
  2291. "lumen",
  2292. "php",
  2293. "snowflake"
  2294. ],
  2295. "support": {
  2296. "issues": "https://github.com/kra8/laravel-snowflake/issues",
  2297. "source": "https://github.com/kra8/laravel-snowflake/tree/v2.1.0"
  2298. },
  2299. "time": "2022-02-28T04:04:37+00:00"
  2300. },
  2301. {
  2302. "name": "laravel/framework",
  2303. "version": "v8.83.27",
  2304. "source": {
  2305. "type": "git",
  2306. "url": "https://github.com/laravel/framework.git",
  2307. "reference": "e1afe088b4ca613fb96dc57e6d8dbcb8cc2c6b49"
  2308. },
  2309. "dist": {
  2310. "type": "zip",
  2311. "url": "https://api.github.com/repos/laravel/framework/zipball/e1afe088b4ca613fb96dc57e6d8dbcb8cc2c6b49",
  2312. "reference": "e1afe088b4ca613fb96dc57e6d8dbcb8cc2c6b49",
  2313. "shasum": ""
  2314. },
  2315. "require": {
  2316. "doctrine/inflector": "^1.4|^2.0",
  2317. "dragonmantank/cron-expression": "^3.0.2",
  2318. "egulias/email-validator": "^2.1.10",
  2319. "ext-json": "*",
  2320. "ext-mbstring": "*",
  2321. "ext-openssl": "*",
  2322. "laravel/serializable-closure": "^1.0",
  2323. "league/commonmark": "^1.3|^2.0.2",
  2324. "league/flysystem": "^1.1",
  2325. "monolog/monolog": "^2.0",
  2326. "nesbot/carbon": "^2.53.1",
  2327. "opis/closure": "^3.6",
  2328. "php": "^7.3|^8.0",
  2329. "psr/container": "^1.0",
  2330. "psr/log": "^1.0|^2.0",
  2331. "psr/simple-cache": "^1.0",
  2332. "ramsey/uuid": "^4.2.2",
  2333. "swiftmailer/swiftmailer": "^6.3",
  2334. "symfony/console": "^5.4",
  2335. "symfony/error-handler": "^5.4",
  2336. "symfony/finder": "^5.4",
  2337. "symfony/http-foundation": "^5.4",
  2338. "symfony/http-kernel": "^5.4",
  2339. "symfony/mime": "^5.4",
  2340. "symfony/process": "^5.4",
  2341. "symfony/routing": "^5.4",
  2342. "symfony/var-dumper": "^5.4",
  2343. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  2344. "vlucas/phpdotenv": "^5.4.1",
  2345. "voku/portable-ascii": "^1.6.1"
  2346. },
  2347. "conflict": {
  2348. "tightenco/collect": "<5.5.33"
  2349. },
  2350. "provide": {
  2351. "psr/container-implementation": "1.0",
  2352. "psr/simple-cache-implementation": "1.0"
  2353. },
  2354. "replace": {
  2355. "illuminate/auth": "self.version",
  2356. "illuminate/broadcasting": "self.version",
  2357. "illuminate/bus": "self.version",
  2358. "illuminate/cache": "self.version",
  2359. "illuminate/collections": "self.version",
  2360. "illuminate/config": "self.version",
  2361. "illuminate/console": "self.version",
  2362. "illuminate/container": "self.version",
  2363. "illuminate/contracts": "self.version",
  2364. "illuminate/cookie": "self.version",
  2365. "illuminate/database": "self.version",
  2366. "illuminate/encryption": "self.version",
  2367. "illuminate/events": "self.version",
  2368. "illuminate/filesystem": "self.version",
  2369. "illuminate/hashing": "self.version",
  2370. "illuminate/http": "self.version",
  2371. "illuminate/log": "self.version",
  2372. "illuminate/macroable": "self.version",
  2373. "illuminate/mail": "self.version",
  2374. "illuminate/notifications": "self.version",
  2375. "illuminate/pagination": "self.version",
  2376. "illuminate/pipeline": "self.version",
  2377. "illuminate/queue": "self.version",
  2378. "illuminate/redis": "self.version",
  2379. "illuminate/routing": "self.version",
  2380. "illuminate/session": "self.version",
  2381. "illuminate/support": "self.version",
  2382. "illuminate/testing": "self.version",
  2383. "illuminate/translation": "self.version",
  2384. "illuminate/validation": "self.version",
  2385. "illuminate/view": "self.version"
  2386. },
  2387. "require-dev": {
  2388. "aws/aws-sdk-php": "^3.198.1",
  2389. "doctrine/dbal": "^2.13.3|^3.1.4",
  2390. "filp/whoops": "^2.14.3",
  2391. "guzzlehttp/guzzle": "^6.5.5|^7.0.1",
  2392. "league/flysystem-cached-adapter": "^1.0",
  2393. "mockery/mockery": "^1.4.4",
  2394. "orchestra/testbench-core": "^6.27",
  2395. "pda/pheanstalk": "^4.0",
  2396. "phpunit/phpunit": "^8.5.19|^9.5.8",
  2397. "predis/predis": "^1.1.9",
  2398. "symfony/cache": "^5.4"
  2399. },
  2400. "suggest": {
  2401. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  2402. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.198.1).",
  2403. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  2404. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
  2405. "ext-bcmath": "Required to use the multiple_of validation rule.",
  2406. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2407. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  2408. "ext-memcached": "Required to use the memcache cache driver.",
  2409. "ext-pcntl": "Required to use all features of the queue worker.",
  2410. "ext-posix": "Required to use all features of the queue worker.",
  2411. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  2412. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2413. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  2414. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.5.5|^7.0.1).",
  2415. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  2416. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  2417. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  2418. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  2419. "mockery/mockery": "Required to use mocking (^1.4.4).",
  2420. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  2421. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  2422. "phpunit/phpunit": "Required to use assertions and run tests (^8.5.19|^9.5.8).",
  2423. "predis/predis": "Required to use the predis connector (^1.1.9).",
  2424. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  2425. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0|^5.0|^6.0|^7.0).",
  2426. "symfony/cache": "Required to PSR-6 cache bridge (^5.4).",
  2427. "symfony/filesystem": "Required to enable support for relative symbolic links (^5.4).",
  2428. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  2429. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  2430. },
  2431. "type": "library",
  2432. "extra": {
  2433. "branch-alias": {
  2434. "dev-master": "8.x-dev"
  2435. }
  2436. },
  2437. "autoload": {
  2438. "files": [
  2439. "src/Illuminate/Collections/helpers.php",
  2440. "src/Illuminate/Events/functions.php",
  2441. "src/Illuminate/Foundation/helpers.php",
  2442. "src/Illuminate/Support/helpers.php"
  2443. ],
  2444. "psr-4": {
  2445. "Illuminate\\": "src/Illuminate/",
  2446. "Illuminate\\Support\\": [
  2447. "src/Illuminate/Macroable/",
  2448. "src/Illuminate/Collections/"
  2449. ]
  2450. }
  2451. },
  2452. "notification-url": "https://packagist.org/downloads/",
  2453. "license": [
  2454. "MIT"
  2455. ],
  2456. "authors": [
  2457. {
  2458. "name": "Taylor Otwell",
  2459. "email": "taylor@laravel.com"
  2460. }
  2461. ],
  2462. "description": "The Laravel Framework.",
  2463. "homepage": "https://laravel.com",
  2464. "keywords": [
  2465. "framework",
  2466. "laravel"
  2467. ],
  2468. "support": {
  2469. "issues": "https://github.com/laravel/framework/issues",
  2470. "source": "https://github.com/laravel/framework"
  2471. },
  2472. "time": "2022-12-08T15:28:55+00:00"
  2473. },
  2474. {
  2475. "name": "laravel/serializable-closure",
  2476. "version": "v1.3.3",
  2477. "source": {
  2478. "type": "git",
  2479. "url": "https://github.com/laravel/serializable-closure.git",
  2480. "reference": "3dbf8a8e914634c48d389c1234552666b3d43754"
  2481. },
  2482. "dist": {
  2483. "type": "zip",
  2484. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/3dbf8a8e914634c48d389c1234552666b3d43754",
  2485. "reference": "3dbf8a8e914634c48d389c1234552666b3d43754",
  2486. "shasum": "",
  2487. "mirrors": [
  2488. {
  2489. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2490. "preferred": true
  2491. }
  2492. ]
  2493. },
  2494. "require": {
  2495. "php": "^7.3|^8.0"
  2496. },
  2497. "require-dev": {
  2498. "nesbot/carbon": "^2.61",
  2499. "pestphp/pest": "^1.21.3",
  2500. "phpstan/phpstan": "^1.8.2",
  2501. "symfony/var-dumper": "^5.4.11"
  2502. },
  2503. "type": "library",
  2504. "extra": {
  2505. "branch-alias": {
  2506. "dev-master": "1.x-dev"
  2507. }
  2508. },
  2509. "autoload": {
  2510. "psr-4": {
  2511. "Laravel\\SerializableClosure\\": "src/"
  2512. }
  2513. },
  2514. "notification-url": "https://packagist.org/downloads/",
  2515. "license": [
  2516. "MIT"
  2517. ],
  2518. "authors": [
  2519. {
  2520. "name": "Taylor Otwell",
  2521. "email": "taylor@laravel.com"
  2522. },
  2523. {
  2524. "name": "Nuno Maduro",
  2525. "email": "nuno@laravel.com"
  2526. }
  2527. ],
  2528. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  2529. "keywords": [
  2530. "closure",
  2531. "laravel",
  2532. "serializable"
  2533. ],
  2534. "support": {
  2535. "issues": "https://github.com/laravel/serializable-closure/issues",
  2536. "source": "https://github.com/laravel/serializable-closure"
  2537. },
  2538. "time": "2023-11-08T14:08:06+00:00"
  2539. },
  2540. {
  2541. "name": "laravel/tinker",
  2542. "version": "v2.9.0",
  2543. "source": {
  2544. "type": "git",
  2545. "url": "https://github.com/laravel/tinker.git",
  2546. "reference": "502e0fe3f0415d06d5db1f83a472f0f3b754bafe"
  2547. },
  2548. "dist": {
  2549. "type": "zip",
  2550. "url": "https://api.github.com/repos/laravel/tinker/zipball/502e0fe3f0415d06d5db1f83a472f0f3b754bafe",
  2551. "reference": "502e0fe3f0415d06d5db1f83a472f0f3b754bafe",
  2552. "shasum": "",
  2553. "mirrors": [
  2554. {
  2555. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2556. "preferred": true
  2557. }
  2558. ]
  2559. },
  2560. "require": {
  2561. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2562. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2563. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2564. "php": "^7.2.5|^8.0",
  2565. "psy/psysh": "^0.11.1|^0.12.0",
  2566. "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0"
  2567. },
  2568. "require-dev": {
  2569. "mockery/mockery": "~1.3.3|^1.4.2",
  2570. "phpstan/phpstan": "^1.10",
  2571. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2572. },
  2573. "suggest": {
  2574. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0)."
  2575. },
  2576. "type": "library",
  2577. "extra": {
  2578. "laravel": {
  2579. "providers": [
  2580. "Laravel\\Tinker\\TinkerServiceProvider"
  2581. ]
  2582. }
  2583. },
  2584. "autoload": {
  2585. "psr-4": {
  2586. "Laravel\\Tinker\\": "src/"
  2587. }
  2588. },
  2589. "notification-url": "https://packagist.org/downloads/",
  2590. "license": [
  2591. "MIT"
  2592. ],
  2593. "authors": [
  2594. {
  2595. "name": "Taylor Otwell",
  2596. "email": "taylor@laravel.com"
  2597. }
  2598. ],
  2599. "description": "Powerful REPL for the Laravel framework.",
  2600. "keywords": [
  2601. "REPL",
  2602. "Tinker",
  2603. "laravel",
  2604. "psysh"
  2605. ],
  2606. "support": {
  2607. "issues": "https://github.com/laravel/tinker/issues",
  2608. "source": "https://github.com/laravel/tinker/tree/v2.9.0"
  2609. },
  2610. "time": "2024-01-04T16:10:04+00:00"
  2611. },
  2612. {
  2613. "name": "league/commonmark",
  2614. "version": "2.4.1",
  2615. "source": {
  2616. "type": "git",
  2617. "url": "https://github.com/thephpleague/commonmark.git",
  2618. "reference": "3669d6d5f7a47a93c08ddff335e6d945481a1dd5"
  2619. },
  2620. "dist": {
  2621. "type": "zip",
  2622. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/3669d6d5f7a47a93c08ddff335e6d945481a1dd5",
  2623. "reference": "3669d6d5f7a47a93c08ddff335e6d945481a1dd5",
  2624. "shasum": "",
  2625. "mirrors": [
  2626. {
  2627. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2628. "preferred": true
  2629. }
  2630. ]
  2631. },
  2632. "require": {
  2633. "ext-mbstring": "*",
  2634. "league/config": "^1.1.1",
  2635. "php": "^7.4 || ^8.0",
  2636. "psr/event-dispatcher": "^1.0",
  2637. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  2638. "symfony/polyfill-php80": "^1.16"
  2639. },
  2640. "require-dev": {
  2641. "cebe/markdown": "^1.0",
  2642. "commonmark/cmark": "0.30.0",
  2643. "commonmark/commonmark.js": "0.30.0",
  2644. "composer/package-versions-deprecated": "^1.8",
  2645. "embed/embed": "^4.4",
  2646. "erusev/parsedown": "^1.0",
  2647. "ext-json": "*",
  2648. "github/gfm": "0.29.0",
  2649. "michelf/php-markdown": "^1.4 || ^2.0",
  2650. "nyholm/psr7": "^1.5",
  2651. "phpstan/phpstan": "^1.8.2",
  2652. "phpunit/phpunit": "^9.5.21",
  2653. "scrutinizer/ocular": "^1.8.1",
  2654. "symfony/finder": "^5.3 | ^6.0",
  2655. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0",
  2656. "unleashedtech/php-coding-standard": "^3.1.1",
  2657. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  2658. },
  2659. "suggest": {
  2660. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  2661. },
  2662. "type": "library",
  2663. "extra": {
  2664. "branch-alias": {
  2665. "dev-main": "2.5-dev"
  2666. }
  2667. },
  2668. "autoload": {
  2669. "psr-4": {
  2670. "League\\CommonMark\\": "src"
  2671. }
  2672. },
  2673. "notification-url": "https://packagist.org/downloads/",
  2674. "license": [
  2675. "BSD-3-Clause"
  2676. ],
  2677. "authors": [
  2678. {
  2679. "name": "Colin O'Dell",
  2680. "email": "colinodell@gmail.com",
  2681. "homepage": "https://www.colinodell.com",
  2682. "role": "Lead Developer"
  2683. }
  2684. ],
  2685. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  2686. "homepage": "https://commonmark.thephpleague.com",
  2687. "keywords": [
  2688. "commonmark",
  2689. "flavored",
  2690. "gfm",
  2691. "github",
  2692. "github-flavored",
  2693. "markdown",
  2694. "md",
  2695. "parser"
  2696. ],
  2697. "support": {
  2698. "docs": "https://commonmark.thephpleague.com/",
  2699. "forum": "https://github.com/thephpleague/commonmark/discussions",
  2700. "issues": "https://github.com/thephpleague/commonmark/issues",
  2701. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2702. "source": "https://github.com/thephpleague/commonmark"
  2703. },
  2704. "funding": [
  2705. {
  2706. "url": "https://www.colinodell.com/sponsor",
  2707. "type": "custom"
  2708. },
  2709. {
  2710. "url": "https://www.paypal.me/colinpodell/10.00",
  2711. "type": "custom"
  2712. },
  2713. {
  2714. "url": "https://github.com/colinodell",
  2715. "type": "github"
  2716. },
  2717. {
  2718. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2719. "type": "tidelift"
  2720. }
  2721. ],
  2722. "time": "2023-08-30T16:55:00+00:00"
  2723. },
  2724. {
  2725. "name": "league/config",
  2726. "version": "v1.2.0",
  2727. "source": {
  2728. "type": "git",
  2729. "url": "https://github.com/thephpleague/config.git",
  2730. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  2731. },
  2732. "dist": {
  2733. "type": "zip",
  2734. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2735. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2736. "shasum": "",
  2737. "mirrors": [
  2738. {
  2739. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2740. "preferred": true
  2741. }
  2742. ]
  2743. },
  2744. "require": {
  2745. "dflydev/dot-access-data": "^3.0.1",
  2746. "nette/schema": "^1.2",
  2747. "php": "^7.4 || ^8.0"
  2748. },
  2749. "require-dev": {
  2750. "phpstan/phpstan": "^1.8.2",
  2751. "phpunit/phpunit": "^9.5.5",
  2752. "scrutinizer/ocular": "^1.8.1",
  2753. "unleashedtech/php-coding-standard": "^3.1",
  2754. "vimeo/psalm": "^4.7.3"
  2755. },
  2756. "type": "library",
  2757. "extra": {
  2758. "branch-alias": {
  2759. "dev-main": "1.2-dev"
  2760. }
  2761. },
  2762. "autoload": {
  2763. "psr-4": {
  2764. "League\\Config\\": "src"
  2765. }
  2766. },
  2767. "notification-url": "https://packagist.org/downloads/",
  2768. "license": [
  2769. "BSD-3-Clause"
  2770. ],
  2771. "authors": [
  2772. {
  2773. "name": "Colin O'Dell",
  2774. "email": "colinodell@gmail.com",
  2775. "homepage": "https://www.colinodell.com",
  2776. "role": "Lead Developer"
  2777. }
  2778. ],
  2779. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  2780. "homepage": "https://config.thephpleague.com",
  2781. "keywords": [
  2782. "array",
  2783. "config",
  2784. "configuration",
  2785. "dot",
  2786. "dot-access",
  2787. "nested",
  2788. "schema"
  2789. ],
  2790. "support": {
  2791. "docs": "https://config.thephpleague.com/",
  2792. "issues": "https://github.com/thephpleague/config/issues",
  2793. "rss": "https://github.com/thephpleague/config/releases.atom",
  2794. "source": "https://github.com/thephpleague/config"
  2795. },
  2796. "funding": [
  2797. {
  2798. "url": "https://www.colinodell.com/sponsor",
  2799. "type": "custom"
  2800. },
  2801. {
  2802. "url": "https://www.paypal.me/colinpodell/10.00",
  2803. "type": "custom"
  2804. },
  2805. {
  2806. "url": "https://github.com/colinodell",
  2807. "type": "github"
  2808. }
  2809. ],
  2810. "time": "2022-12-11T20:36:23+00:00"
  2811. },
  2812. {
  2813. "name": "league/flysystem",
  2814. "version": "1.1.10",
  2815. "source": {
  2816. "type": "git",
  2817. "url": "https://github.com/thephpleague/flysystem.git",
  2818. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1"
  2819. },
  2820. "dist": {
  2821. "type": "zip",
  2822. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/3239285c825c152bcc315fe0e87d6b55f5972ed1",
  2823. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1",
  2824. "shasum": "",
  2825. "mirrors": [
  2826. {
  2827. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2828. "preferred": true
  2829. }
  2830. ]
  2831. },
  2832. "require": {
  2833. "ext-fileinfo": "*",
  2834. "league/mime-type-detection": "^1.3",
  2835. "php": "^7.2.5 || ^8.0"
  2836. },
  2837. "conflict": {
  2838. "league/flysystem-sftp": "<1.0.6"
  2839. },
  2840. "require-dev": {
  2841. "phpspec/prophecy": "^1.11.1",
  2842. "phpunit/phpunit": "^8.5.8"
  2843. },
  2844. "suggest": {
  2845. "ext-ftp": "Allows you to use FTP server storage",
  2846. "ext-openssl": "Allows you to use FTPS server storage",
  2847. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2848. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2849. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2850. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2851. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2852. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2853. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2854. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2855. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2856. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2857. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2858. },
  2859. "type": "library",
  2860. "extra": {
  2861. "branch-alias": {
  2862. "dev-master": "1.1-dev"
  2863. }
  2864. },
  2865. "autoload": {
  2866. "psr-4": {
  2867. "League\\Flysystem\\": "src/"
  2868. }
  2869. },
  2870. "notification-url": "https://packagist.org/downloads/",
  2871. "license": [
  2872. "MIT"
  2873. ],
  2874. "authors": [
  2875. {
  2876. "name": "Frank de Jonge",
  2877. "email": "info@frenky.net"
  2878. }
  2879. ],
  2880. "description": "Filesystem abstraction: Many filesystems, one API.",
  2881. "keywords": [
  2882. "Cloud Files",
  2883. "WebDAV",
  2884. "abstraction",
  2885. "aws",
  2886. "cloud",
  2887. "copy.com",
  2888. "dropbox",
  2889. "file systems",
  2890. "files",
  2891. "filesystem",
  2892. "filesystems",
  2893. "ftp",
  2894. "rackspace",
  2895. "remote",
  2896. "s3",
  2897. "sftp",
  2898. "storage"
  2899. ],
  2900. "support": {
  2901. "issues": "https://github.com/thephpleague/flysystem/issues",
  2902. "source": "https://github.com/thephpleague/flysystem/tree/1.1.10"
  2903. },
  2904. "funding": [
  2905. {
  2906. "url": "https://offset.earth/frankdejonge",
  2907. "type": "other"
  2908. }
  2909. ],
  2910. "time": "2022-10-04T09:16:37+00:00"
  2911. },
  2912. {
  2913. "name": "league/mime-type-detection",
  2914. "version": "1.13.0",
  2915. "source": {
  2916. "type": "git",
  2917. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2918. "reference": "a6dfb1194a2946fcdc1f38219445234f65b35c96"
  2919. },
  2920. "dist": {
  2921. "type": "zip",
  2922. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/a6dfb1194a2946fcdc1f38219445234f65b35c96",
  2923. "reference": "a6dfb1194a2946fcdc1f38219445234f65b35c96",
  2924. "shasum": "",
  2925. "mirrors": [
  2926. {
  2927. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2928. "preferred": true
  2929. }
  2930. ]
  2931. },
  2932. "require": {
  2933. "ext-fileinfo": "*",
  2934. "php": "^7.4 || ^8.0"
  2935. },
  2936. "require-dev": {
  2937. "friendsofphp/php-cs-fixer": "^3.2",
  2938. "phpstan/phpstan": "^0.12.68",
  2939. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  2940. },
  2941. "type": "library",
  2942. "autoload": {
  2943. "psr-4": {
  2944. "League\\MimeTypeDetection\\": "src"
  2945. }
  2946. },
  2947. "notification-url": "https://packagist.org/downloads/",
  2948. "license": [
  2949. "MIT"
  2950. ],
  2951. "authors": [
  2952. {
  2953. "name": "Frank de Jonge",
  2954. "email": "info@frankdejonge.nl"
  2955. }
  2956. ],
  2957. "description": "Mime-type detection for Flysystem",
  2958. "support": {
  2959. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2960. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.13.0"
  2961. },
  2962. "funding": [
  2963. {
  2964. "url": "https://github.com/frankdejonge",
  2965. "type": "github"
  2966. },
  2967. {
  2968. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2969. "type": "tidelift"
  2970. }
  2971. ],
  2972. "time": "2023-08-05T12:09:49+00:00"
  2973. },
  2974. {
  2975. "name": "lizhichao/one-sm",
  2976. "version": "1.10",
  2977. "source": {
  2978. "type": "git",
  2979. "url": "https://github.com/lizhichao/sm.git",
  2980. "reference": "687a012a44a5bfd4d9143a0234e1060543be455a"
  2981. },
  2982. "dist": {
  2983. "type": "zip",
  2984. "url": "https://api.github.com/repos/lizhichao/sm/zipball/687a012a44a5bfd4d9143a0234e1060543be455a",
  2985. "reference": "687a012a44a5bfd4d9143a0234e1060543be455a",
  2986. "shasum": ""
  2987. },
  2988. "require": {
  2989. "php": ">=5.6"
  2990. },
  2991. "type": "library",
  2992. "autoload": {
  2993. "psr-4": {
  2994. "OneSm\\": "src/"
  2995. }
  2996. },
  2997. "notification-url": "https://packagist.org/downloads/",
  2998. "license": [
  2999. "Apache-2.0"
  3000. ],
  3001. "authors": [
  3002. {
  3003. "name": "tanszhe",
  3004. "email": "1018595261@qq.com"
  3005. }
  3006. ],
  3007. "description": "国密sm3",
  3008. "keywords": [
  3009. "php",
  3010. "sm3"
  3011. ],
  3012. "support": {
  3013. "issues": "https://github.com/lizhichao/sm/issues",
  3014. "source": "https://github.com/lizhichao/sm/tree/1.10"
  3015. },
  3016. "funding": [
  3017. {
  3018. "url": "https://www.vicsdf.com/img/w.jpg",
  3019. "type": "custom"
  3020. },
  3021. {
  3022. "url": "https://www.vicsdf.com/img/z.jpg",
  3023. "type": "custom"
  3024. }
  3025. ],
  3026. "time": "2021-05-26T06:19:22+00:00"
  3027. },
  3028. {
  3029. "name": "maennchen/zipstream-php",
  3030. "version": "2.2.6",
  3031. "source": {
  3032. "type": "git",
  3033. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  3034. "reference": "30ad6f93cf3efe4192bc7a4c9cad11ff8f4f237f"
  3035. },
  3036. "dist": {
  3037. "type": "zip",
  3038. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/30ad6f93cf3efe4192bc7a4c9cad11ff8f4f237f",
  3039. "reference": "30ad6f93cf3efe4192bc7a4c9cad11ff8f4f237f",
  3040. "shasum": "",
  3041. "mirrors": [
  3042. {
  3043. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3044. "preferred": true
  3045. }
  3046. ]
  3047. },
  3048. "require": {
  3049. "myclabs/php-enum": "^1.5",
  3050. "php": "^7.4 || ^8.0",
  3051. "psr/http-message": "^1.0",
  3052. "symfony/polyfill-mbstring": "^1.0"
  3053. },
  3054. "require-dev": {
  3055. "ext-zip": "*",
  3056. "friendsofphp/php-cs-fixer": "^3.9",
  3057. "guzzlehttp/guzzle": "^6.5.3 || ^7.2.0",
  3058. "mikey179/vfsstream": "^1.6",
  3059. "php-coveralls/php-coveralls": "^2.4",
  3060. "phpunit/phpunit": "^8.5.8 || ^9.4.2",
  3061. "vimeo/psalm": "^4.1"
  3062. },
  3063. "type": "library",
  3064. "autoload": {
  3065. "psr-4": {
  3066. "ZipStream\\": "src/"
  3067. }
  3068. },
  3069. "notification-url": "https://packagist.org/downloads/",
  3070. "license": [
  3071. "MIT"
  3072. ],
  3073. "authors": [
  3074. {
  3075. "name": "Paul Duncan",
  3076. "email": "pabs@pablotron.org"
  3077. },
  3078. {
  3079. "name": "Jonatan Männchen",
  3080. "email": "jonatan@maennchen.ch"
  3081. },
  3082. {
  3083. "name": "Jesse Donat",
  3084. "email": "donatj@gmail.com"
  3085. },
  3086. {
  3087. "name": "András Kolesár",
  3088. "email": "kolesar@kolesar.hu"
  3089. }
  3090. ],
  3091. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  3092. "keywords": [
  3093. "stream",
  3094. "zip"
  3095. ],
  3096. "support": {
  3097. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  3098. "source": "https://github.com/maennchen/ZipStream-PHP/tree/2.2.6"
  3099. },
  3100. "funding": [
  3101. {
  3102. "url": "https://github.com/maennchen",
  3103. "type": "github"
  3104. },
  3105. {
  3106. "url": "https://opencollective.com/zipstream",
  3107. "type": "open_collective"
  3108. }
  3109. ],
  3110. "time": "2022-11-25T18:57:19+00:00"
  3111. },
  3112. {
  3113. "name": "markbaker/complex",
  3114. "version": "3.0.2",
  3115. "source": {
  3116. "type": "git",
  3117. "url": "https://github.com/MarkBaker/PHPComplex.git",
  3118. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9"
  3119. },
  3120. "dist": {
  3121. "type": "zip",
  3122. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  3123. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  3124. "shasum": "",
  3125. "mirrors": [
  3126. {
  3127. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3128. "preferred": true
  3129. }
  3130. ]
  3131. },
  3132. "require": {
  3133. "php": "^7.2 || ^8.0"
  3134. },
  3135. "require-dev": {
  3136. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  3137. "phpcompatibility/php-compatibility": "^9.3",
  3138. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  3139. "squizlabs/php_codesniffer": "^3.7"
  3140. },
  3141. "type": "library",
  3142. "autoload": {
  3143. "psr-4": {
  3144. "Complex\\": "classes/src/"
  3145. }
  3146. },
  3147. "notification-url": "https://packagist.org/downloads/",
  3148. "license": [
  3149. "MIT"
  3150. ],
  3151. "authors": [
  3152. {
  3153. "name": "Mark Baker",
  3154. "email": "mark@lange.demon.co.uk"
  3155. }
  3156. ],
  3157. "description": "PHP Class for working with complex numbers",
  3158. "homepage": "https://github.com/MarkBaker/PHPComplex",
  3159. "keywords": [
  3160. "complex",
  3161. "mathematics"
  3162. ],
  3163. "support": {
  3164. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  3165. "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.2"
  3166. },
  3167. "time": "2022-12-06T16:21:08+00:00"
  3168. },
  3169. {
  3170. "name": "markbaker/matrix",
  3171. "version": "3.0.1",
  3172. "source": {
  3173. "type": "git",
  3174. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  3175. "reference": "728434227fe21be27ff6d86621a1b13107a2562c"
  3176. },
  3177. "dist": {
  3178. "type": "zip",
  3179. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/728434227fe21be27ff6d86621a1b13107a2562c",
  3180. "reference": "728434227fe21be27ff6d86621a1b13107a2562c",
  3181. "shasum": "",
  3182. "mirrors": [
  3183. {
  3184. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3185. "preferred": true
  3186. }
  3187. ]
  3188. },
  3189. "require": {
  3190. "php": "^7.1 || ^8.0"
  3191. },
  3192. "require-dev": {
  3193. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  3194. "phpcompatibility/php-compatibility": "^9.3",
  3195. "phpdocumentor/phpdocumentor": "2.*",
  3196. "phploc/phploc": "^4.0",
  3197. "phpmd/phpmd": "2.*",
  3198. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  3199. "sebastian/phpcpd": "^4.0",
  3200. "squizlabs/php_codesniffer": "^3.7"
  3201. },
  3202. "type": "library",
  3203. "autoload": {
  3204. "psr-4": {
  3205. "Matrix\\": "classes/src/"
  3206. }
  3207. },
  3208. "notification-url": "https://packagist.org/downloads/",
  3209. "license": [
  3210. "MIT"
  3211. ],
  3212. "authors": [
  3213. {
  3214. "name": "Mark Baker",
  3215. "email": "mark@demon-angel.eu"
  3216. }
  3217. ],
  3218. "description": "PHP Class for working with matrices",
  3219. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  3220. "keywords": [
  3221. "mathematics",
  3222. "matrix",
  3223. "vector"
  3224. ],
  3225. "support": {
  3226. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  3227. "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.1"
  3228. },
  3229. "time": "2022-12-02T22:17:43+00:00"
  3230. },
  3231. {
  3232. "name": "monolog/monolog",
  3233. "version": "2.9.2",
  3234. "source": {
  3235. "type": "git",
  3236. "url": "https://github.com/Seldaek/monolog.git",
  3237. "reference": "437cb3628f4cf6042cc10ae97fc2b8472e48ca1f"
  3238. },
  3239. "dist": {
  3240. "type": "zip",
  3241. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/437cb3628f4cf6042cc10ae97fc2b8472e48ca1f",
  3242. "reference": "437cb3628f4cf6042cc10ae97fc2b8472e48ca1f",
  3243. "shasum": "",
  3244. "mirrors": [
  3245. {
  3246. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3247. "preferred": true
  3248. }
  3249. ]
  3250. },
  3251. "require": {
  3252. "php": ">=7.2",
  3253. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  3254. },
  3255. "provide": {
  3256. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  3257. },
  3258. "require-dev": {
  3259. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  3260. "doctrine/couchdb": "~1.0@dev",
  3261. "elasticsearch/elasticsearch": "^7 || ^8",
  3262. "ext-json": "*",
  3263. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  3264. "guzzlehttp/guzzle": "^7.4",
  3265. "guzzlehttp/psr7": "^2.2",
  3266. "mongodb/mongodb": "^1.8",
  3267. "php-amqplib/php-amqplib": "~2.4 || ^3",
  3268. "phpspec/prophecy": "^1.15",
  3269. "phpstan/phpstan": "^0.12.91",
  3270. "phpunit/phpunit": "^8.5.14",
  3271. "predis/predis": "^1.1 || ^2.0",
  3272. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  3273. "ruflin/elastica": "^7",
  3274. "swiftmailer/swiftmailer": "^5.3|^6.0",
  3275. "symfony/mailer": "^5.4 || ^6",
  3276. "symfony/mime": "^5.4 || ^6"
  3277. },
  3278. "suggest": {
  3279. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  3280. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  3281. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  3282. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  3283. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  3284. "ext-mbstring": "Allow to work properly with unicode symbols",
  3285. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  3286. "ext-openssl": "Required to send log messages using SSL",
  3287. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  3288. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  3289. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  3290. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  3291. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  3292. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  3293. },
  3294. "type": "library",
  3295. "extra": {
  3296. "branch-alias": {
  3297. "dev-main": "2.x-dev"
  3298. }
  3299. },
  3300. "autoload": {
  3301. "psr-4": {
  3302. "Monolog\\": "src/Monolog"
  3303. }
  3304. },
  3305. "notification-url": "https://packagist.org/downloads/",
  3306. "license": [
  3307. "MIT"
  3308. ],
  3309. "authors": [
  3310. {
  3311. "name": "Jordi Boggiano",
  3312. "email": "j.boggiano@seld.be",
  3313. "homepage": "https://seld.be"
  3314. }
  3315. ],
  3316. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  3317. "homepage": "https://github.com/Seldaek/monolog",
  3318. "keywords": [
  3319. "log",
  3320. "logging",
  3321. "psr-3"
  3322. ],
  3323. "support": {
  3324. "issues": "https://github.com/Seldaek/monolog/issues",
  3325. "source": "https://github.com/Seldaek/monolog/tree/2.9.2"
  3326. },
  3327. "funding": [
  3328. {
  3329. "url": "https://github.com/Seldaek",
  3330. "type": "github"
  3331. },
  3332. {
  3333. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  3334. "type": "tidelift"
  3335. }
  3336. ],
  3337. "time": "2023-10-27T15:25:26+00:00"
  3338. },
  3339. {
  3340. "name": "myclabs/php-enum",
  3341. "version": "1.8.4",
  3342. "source": {
  3343. "type": "git",
  3344. "url": "https://github.com/myclabs/php-enum.git",
  3345. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483"
  3346. },
  3347. "dist": {
  3348. "type": "zip",
  3349. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/a867478eae49c9f59ece437ae7f9506bfaa27483",
  3350. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483",
  3351. "shasum": "",
  3352. "mirrors": [
  3353. {
  3354. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3355. "preferred": true
  3356. }
  3357. ]
  3358. },
  3359. "require": {
  3360. "ext-json": "*",
  3361. "php": "^7.3 || ^8.0"
  3362. },
  3363. "require-dev": {
  3364. "phpunit/phpunit": "^9.5",
  3365. "squizlabs/php_codesniffer": "1.*",
  3366. "vimeo/psalm": "^4.6.2"
  3367. },
  3368. "type": "library",
  3369. "autoload": {
  3370. "psr-4": {
  3371. "MyCLabs\\Enum\\": "src/"
  3372. },
  3373. "classmap": [
  3374. "stubs/Stringable.php"
  3375. ]
  3376. },
  3377. "notification-url": "https://packagist.org/downloads/",
  3378. "license": [
  3379. "MIT"
  3380. ],
  3381. "authors": [
  3382. {
  3383. "name": "PHP Enum contributors",
  3384. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  3385. }
  3386. ],
  3387. "description": "PHP Enum implementation",
  3388. "homepage": "http://github.com/myclabs/php-enum",
  3389. "keywords": [
  3390. "enum"
  3391. ],
  3392. "support": {
  3393. "issues": "https://github.com/myclabs/php-enum/issues",
  3394. "source": "https://github.com/myclabs/php-enum/tree/1.8.4"
  3395. },
  3396. "funding": [
  3397. {
  3398. "url": "https://github.com/mnapoli",
  3399. "type": "github"
  3400. },
  3401. {
  3402. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  3403. "type": "tidelift"
  3404. }
  3405. ],
  3406. "time": "2022-08-04T09:53:51+00:00"
  3407. },
  3408. {
  3409. "name": "nesbot/carbon",
  3410. "version": "2.72.1",
  3411. "source": {
  3412. "type": "git",
  3413. "url": "https://github.com/briannesbitt/Carbon.git",
  3414. "reference": "2b3b3db0a2d0556a177392ff1a3bf5608fa09f78"
  3415. },
  3416. "dist": {
  3417. "type": "zip",
  3418. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/2b3b3db0a2d0556a177392ff1a3bf5608fa09f78",
  3419. "reference": "2b3b3db0a2d0556a177392ff1a3bf5608fa09f78",
  3420. "shasum": "",
  3421. "mirrors": [
  3422. {
  3423. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3424. "preferred": true
  3425. }
  3426. ]
  3427. },
  3428. "require": {
  3429. "carbonphp/carbon-doctrine-types": "*",
  3430. "ext-json": "*",
  3431. "php": "^7.1.8 || ^8.0",
  3432. "psr/clock": "^1.0",
  3433. "symfony/polyfill-mbstring": "^1.0",
  3434. "symfony/polyfill-php80": "^1.16",
  3435. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  3436. },
  3437. "provide": {
  3438. "psr/clock-implementation": "1.0"
  3439. },
  3440. "require-dev": {
  3441. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  3442. "doctrine/orm": "^2.7 || ^3.0",
  3443. "friendsofphp/php-cs-fixer": "^3.0",
  3444. "kylekatarnls/multi-tester": "^2.0",
  3445. "ondrejmirtes/better-reflection": "*",
  3446. "phpmd/phpmd": "^2.9",
  3447. "phpstan/extension-installer": "^1.0",
  3448. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  3449. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  3450. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  3451. "squizlabs/php_codesniffer": "^3.4"
  3452. },
  3453. "bin": [
  3454. "bin/carbon"
  3455. ],
  3456. "type": "library",
  3457. "extra": {
  3458. "branch-alias": {
  3459. "dev-3.x": "3.x-dev",
  3460. "dev-master": "2.x-dev"
  3461. },
  3462. "laravel": {
  3463. "providers": [
  3464. "Carbon\\Laravel\\ServiceProvider"
  3465. ]
  3466. },
  3467. "phpstan": {
  3468. "includes": [
  3469. "extension.neon"
  3470. ]
  3471. }
  3472. },
  3473. "autoload": {
  3474. "psr-4": {
  3475. "Carbon\\": "src/Carbon/"
  3476. }
  3477. },
  3478. "notification-url": "https://packagist.org/downloads/",
  3479. "license": [
  3480. "MIT"
  3481. ],
  3482. "authors": [
  3483. {
  3484. "name": "Brian Nesbitt",
  3485. "email": "brian@nesbot.com",
  3486. "homepage": "https://markido.com"
  3487. },
  3488. {
  3489. "name": "kylekatarnls",
  3490. "homepage": "https://github.com/kylekatarnls"
  3491. }
  3492. ],
  3493. "description": "An API extension for DateTime that supports 281 different languages.",
  3494. "homepage": "https://carbon.nesbot.com",
  3495. "keywords": [
  3496. "date",
  3497. "datetime",
  3498. "time"
  3499. ],
  3500. "support": {
  3501. "docs": "https://carbon.nesbot.com/docs",
  3502. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3503. "source": "https://github.com/briannesbitt/Carbon"
  3504. },
  3505. "funding": [
  3506. {
  3507. "url": "https://github.com/sponsors/kylekatarnls",
  3508. "type": "github"
  3509. },
  3510. {
  3511. "url": "https://opencollective.com/Carbon#sponsor",
  3512. "type": "opencollective"
  3513. },
  3514. {
  3515. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  3516. "type": "tidelift"
  3517. }
  3518. ],
  3519. "time": "2023-12-08T23:47:49+00:00"
  3520. },
  3521. {
  3522. "name": "nette/schema",
  3523. "version": "v1.2.5",
  3524. "source": {
  3525. "type": "git",
  3526. "url": "https://github.com/nette/schema.git",
  3527. "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a"
  3528. },
  3529. "dist": {
  3530. "type": "zip",
  3531. "url": "https://api.github.com/repos/nette/schema/zipball/0462f0166e823aad657c9224d0f849ecac1ba10a",
  3532. "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a",
  3533. "shasum": "",
  3534. "mirrors": [
  3535. {
  3536. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3537. "preferred": true
  3538. }
  3539. ]
  3540. },
  3541. "require": {
  3542. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  3543. "php": "7.1 - 8.3"
  3544. },
  3545. "require-dev": {
  3546. "nette/tester": "^2.3 || ^2.4",
  3547. "phpstan/phpstan-nette": "^1.0",
  3548. "tracy/tracy": "^2.7"
  3549. },
  3550. "type": "library",
  3551. "extra": {
  3552. "branch-alias": {
  3553. "dev-master": "1.2-dev"
  3554. }
  3555. },
  3556. "autoload": {
  3557. "classmap": [
  3558. "src/"
  3559. ]
  3560. },
  3561. "notification-url": "https://packagist.org/downloads/",
  3562. "license": [
  3563. "BSD-3-Clause",
  3564. "GPL-2.0-only",
  3565. "GPL-3.0-only"
  3566. ],
  3567. "authors": [
  3568. {
  3569. "name": "David Grudl",
  3570. "homepage": "https://davidgrudl.com"
  3571. },
  3572. {
  3573. "name": "Nette Community",
  3574. "homepage": "https://nette.org/contributors"
  3575. }
  3576. ],
  3577. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  3578. "homepage": "https://nette.org",
  3579. "keywords": [
  3580. "config",
  3581. "nette"
  3582. ],
  3583. "support": {
  3584. "issues": "https://github.com/nette/schema/issues",
  3585. "source": "https://github.com/nette/schema/tree/v1.2.5"
  3586. },
  3587. "time": "2023-10-05T20:37:59+00:00"
  3588. },
  3589. {
  3590. "name": "nette/utils",
  3591. "version": "v3.2.10",
  3592. "source": {
  3593. "type": "git",
  3594. "url": "https://github.com/nette/utils.git",
  3595. "reference": "a4175c62652f2300c8017fb7e640f9ccb11648d2"
  3596. },
  3597. "dist": {
  3598. "type": "zip",
  3599. "url": "https://api.github.com/repos/nette/utils/zipball/a4175c62652f2300c8017fb7e640f9ccb11648d2",
  3600. "reference": "a4175c62652f2300c8017fb7e640f9ccb11648d2",
  3601. "shasum": "",
  3602. "mirrors": [
  3603. {
  3604. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3605. "preferred": true
  3606. }
  3607. ]
  3608. },
  3609. "require": {
  3610. "php": ">=7.2 <8.4"
  3611. },
  3612. "conflict": {
  3613. "nette/di": "<3.0.6"
  3614. },
  3615. "require-dev": {
  3616. "jetbrains/phpstorm-attributes": "dev-master",
  3617. "nette/tester": "~2.0",
  3618. "phpstan/phpstan": "^1.0",
  3619. "tracy/tracy": "^2.3"
  3620. },
  3621. "suggest": {
  3622. "ext-gd": "to use Image",
  3623. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  3624. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  3625. "ext-json": "to use Nette\\Utils\\Json",
  3626. "ext-mbstring": "to use Strings::lower() etc...",
  3627. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
  3628. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  3629. },
  3630. "type": "library",
  3631. "extra": {
  3632. "branch-alias": {
  3633. "dev-master": "3.2-dev"
  3634. }
  3635. },
  3636. "autoload": {
  3637. "classmap": [
  3638. "src/"
  3639. ]
  3640. },
  3641. "notification-url": "https://packagist.org/downloads/",
  3642. "license": [
  3643. "BSD-3-Clause",
  3644. "GPL-2.0-only",
  3645. "GPL-3.0-only"
  3646. ],
  3647. "authors": [
  3648. {
  3649. "name": "David Grudl",
  3650. "homepage": "https://davidgrudl.com"
  3651. },
  3652. {
  3653. "name": "Nette Community",
  3654. "homepage": "https://nette.org/contributors"
  3655. }
  3656. ],
  3657. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  3658. "homepage": "https://nette.org",
  3659. "keywords": [
  3660. "array",
  3661. "core",
  3662. "datetime",
  3663. "images",
  3664. "json",
  3665. "nette",
  3666. "paginator",
  3667. "password",
  3668. "slugify",
  3669. "string",
  3670. "unicode",
  3671. "utf-8",
  3672. "utility",
  3673. "validation"
  3674. ],
  3675. "support": {
  3676. "issues": "https://github.com/nette/utils/issues",
  3677. "source": "https://github.com/nette/utils/tree/v3.2.10"
  3678. },
  3679. "time": "2023-07-30T15:38:18+00:00"
  3680. },
  3681. {
  3682. "name": "nikic/php-parser",
  3683. "version": "v5.0.0",
  3684. "source": {
  3685. "type": "git",
  3686. "url": "https://github.com/nikic/PHP-Parser.git",
  3687. "reference": "4a21235f7e56e713259a6f76bf4b5ea08502b9dc"
  3688. },
  3689. "dist": {
  3690. "type": "zip",
  3691. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4a21235f7e56e713259a6f76bf4b5ea08502b9dc",
  3692. "reference": "4a21235f7e56e713259a6f76bf4b5ea08502b9dc",
  3693. "shasum": "",
  3694. "mirrors": [
  3695. {
  3696. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3697. "preferred": true
  3698. }
  3699. ]
  3700. },
  3701. "require": {
  3702. "ext-ctype": "*",
  3703. "ext-json": "*",
  3704. "ext-tokenizer": "*",
  3705. "php": ">=7.4"
  3706. },
  3707. "require-dev": {
  3708. "ircmaxell/php-yacc": "^0.0.7",
  3709. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  3710. },
  3711. "bin": [
  3712. "bin/php-parse"
  3713. ],
  3714. "type": "library",
  3715. "extra": {
  3716. "branch-alias": {
  3717. "dev-master": "5.0-dev"
  3718. }
  3719. },
  3720. "autoload": {
  3721. "psr-4": {
  3722. "PhpParser\\": "lib/PhpParser"
  3723. }
  3724. },
  3725. "notification-url": "https://packagist.org/downloads/",
  3726. "license": [
  3727. "BSD-3-Clause"
  3728. ],
  3729. "authors": [
  3730. {
  3731. "name": "Nikita Popov"
  3732. }
  3733. ],
  3734. "description": "A PHP parser written in PHP",
  3735. "keywords": [
  3736. "parser",
  3737. "php"
  3738. ],
  3739. "support": {
  3740. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3741. "source": "https://github.com/nikic/PHP-Parser/tree/v5.0.0"
  3742. },
  3743. "time": "2024-01-07T17:17:35+00:00"
  3744. },
  3745. {
  3746. "name": "opis/closure",
  3747. "version": "3.6.3",
  3748. "source": {
  3749. "type": "git",
  3750. "url": "https://github.com/opis/closure.git",
  3751. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad"
  3752. },
  3753. "dist": {
  3754. "type": "zip",
  3755. "url": "https://api.github.com/repos/opis/closure/zipball/3d81e4309d2a927abbe66df935f4bb60082805ad",
  3756. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad",
  3757. "shasum": "",
  3758. "mirrors": [
  3759. {
  3760. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3761. "preferred": true
  3762. }
  3763. ]
  3764. },
  3765. "require": {
  3766. "php": "^5.4 || ^7.0 || ^8.0"
  3767. },
  3768. "require-dev": {
  3769. "jeremeamia/superclosure": "^2.0",
  3770. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  3771. },
  3772. "type": "library",
  3773. "extra": {
  3774. "branch-alias": {
  3775. "dev-master": "3.6.x-dev"
  3776. }
  3777. },
  3778. "autoload": {
  3779. "files": [
  3780. "functions.php"
  3781. ],
  3782. "psr-4": {
  3783. "Opis\\Closure\\": "src/"
  3784. }
  3785. },
  3786. "notification-url": "https://packagist.org/downloads/",
  3787. "license": [
  3788. "MIT"
  3789. ],
  3790. "authors": [
  3791. {
  3792. "name": "Marius Sarca",
  3793. "email": "marius.sarca@gmail.com"
  3794. },
  3795. {
  3796. "name": "Sorin Sarca",
  3797. "email": "sarca_sorin@hotmail.com"
  3798. }
  3799. ],
  3800. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  3801. "homepage": "https://opis.io/closure",
  3802. "keywords": [
  3803. "anonymous functions",
  3804. "closure",
  3805. "function",
  3806. "serializable",
  3807. "serialization",
  3808. "serialize"
  3809. ],
  3810. "support": {
  3811. "issues": "https://github.com/opis/closure/issues",
  3812. "source": "https://github.com/opis/closure/tree/3.6.3"
  3813. },
  3814. "time": "2022-01-27T09:35:39+00:00"
  3815. },
  3816. {
  3817. "name": "overtrue/qcloud-cos-client",
  3818. "version": "1.0.4",
  3819. "source": {
  3820. "type": "git",
  3821. "url": "https://github.com/overtrue/qcloud-cos-client.git",
  3822. "reference": "64ca47881afe4fd0961958f85674dcae71421913"
  3823. },
  3824. "dist": {
  3825. "type": "zip",
  3826. "url": "https://api.github.com/repos/overtrue/qcloud-cos-client/zipball/64ca47881afe4fd0961958f85674dcae71421913",
  3827. "reference": "64ca47881afe4fd0961958f85674dcae71421913",
  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-dom": "*",
  3838. "ext-json": "*",
  3839. "ext-libxml": "*",
  3840. "ext-simplexml": "*",
  3841. "guzzlehttp/guzzle": "^7.2",
  3842. "php": ">=7.4",
  3843. "psr/http-message": "^1.0"
  3844. },
  3845. "require-dev": {
  3846. "brainmaestro/composer-git-hooks": "^2.7",
  3847. "friendsofphp/php-cs-fixer": "^3.4.0",
  3848. "mockery/mockery": "^1.0",
  3849. "monolog/monolog": "^2.1",
  3850. "phpunit/phpunit": "^9.0"
  3851. },
  3852. "type": "library",
  3853. "extra": {
  3854. "hooks": {
  3855. "pre-commit": [
  3856. "composer test",
  3857. "composer check-style"
  3858. ],
  3859. "pre-push": [
  3860. "composer test",
  3861. "composer check-style"
  3862. ]
  3863. }
  3864. },
  3865. "autoload": {
  3866. "psr-4": {
  3867. "Overtrue\\CosClient\\": "src"
  3868. }
  3869. },
  3870. "notification-url": "https://packagist.org/downloads/",
  3871. "license": [
  3872. "MIT"
  3873. ],
  3874. "authors": [
  3875. {
  3876. "name": "overtrue",
  3877. "email": "anzhengchao@gmail.com"
  3878. }
  3879. ],
  3880. "description": "Client of QCloud.com COS",
  3881. "support": {
  3882. "issues": "https://github.com/overtrue/qcloud-cos-client/issues",
  3883. "source": "https://github.com/overtrue/qcloud-cos-client/tree/1.0.4"
  3884. },
  3885. "funding": [
  3886. {
  3887. "url": "https://github.com/overtrue",
  3888. "type": "github"
  3889. }
  3890. ],
  3891. "time": "2022-11-07T00:18:25+00:00"
  3892. },
  3893. {
  3894. "name": "overtrue/socialite",
  3895. "version": "3.5.5",
  3896. "source": {
  3897. "type": "git",
  3898. "url": "https://github.com/overtrue/socialite.git",
  3899. "reference": "3cf32be7ae0fd86f83e41ca7239aa10e04b8b401"
  3900. },
  3901. "dist": {
  3902. "type": "zip",
  3903. "url": "https://api.github.com/repos/overtrue/socialite/zipball/3cf32be7ae0fd86f83e41ca7239aa10e04b8b401",
  3904. "reference": "3cf32be7ae0fd86f83e41ca7239aa10e04b8b401",
  3905. "shasum": ""
  3906. },
  3907. "require": {
  3908. "ext-json": "*",
  3909. "ext-openssl": "*",
  3910. "guzzlehttp/guzzle": "~6.0|~7.0",
  3911. "php": ">=7.4",
  3912. "symfony/psr-http-message-bridge": "^2.0"
  3913. },
  3914. "require-dev": {
  3915. "friendsofphp/php-cs-fixer": "^3.0",
  3916. "mockery/mockery": "~1.2",
  3917. "phpunit/phpunit": "~9.0"
  3918. },
  3919. "type": "library",
  3920. "autoload": {
  3921. "psr-4": {
  3922. "Overtrue\\Socialite\\": "src/"
  3923. }
  3924. },
  3925. "notification-url": "https://packagist.org/downloads/",
  3926. "license": [
  3927. "MIT"
  3928. ],
  3929. "authors": [
  3930. {
  3931. "name": "overtrue",
  3932. "email": "anzhengchao@gmail.com"
  3933. }
  3934. ],
  3935. "description": "A collection of OAuth 2 packages.",
  3936. "keywords": [
  3937. "Feishu",
  3938. "login",
  3939. "oauth",
  3940. "qcloud",
  3941. "qq",
  3942. "social",
  3943. "wechat",
  3944. "weibo"
  3945. ],
  3946. "support": {
  3947. "issues": "https://github.com/overtrue/socialite/issues",
  3948. "source": "https://github.com/overtrue/socialite/tree/3.5.5"
  3949. },
  3950. "funding": [
  3951. {
  3952. "url": "https://github.com/overtrue",
  3953. "type": "github"
  3954. }
  3955. ],
  3956. "time": "2024-06-24T09:26:56+00:00"
  3957. },
  3958. {
  3959. "name": "phpoffice/phpspreadsheet",
  3960. "version": "1.29.0",
  3961. "source": {
  3962. "type": "git",
  3963. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  3964. "reference": "fde2ccf55eaef7e86021ff1acce26479160a0fa0"
  3965. },
  3966. "dist": {
  3967. "type": "zip",
  3968. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/fde2ccf55eaef7e86021ff1acce26479160a0fa0",
  3969. "reference": "fde2ccf55eaef7e86021ff1acce26479160a0fa0",
  3970. "shasum": ""
  3971. },
  3972. "require": {
  3973. "ext-ctype": "*",
  3974. "ext-dom": "*",
  3975. "ext-fileinfo": "*",
  3976. "ext-gd": "*",
  3977. "ext-iconv": "*",
  3978. "ext-libxml": "*",
  3979. "ext-mbstring": "*",
  3980. "ext-simplexml": "*",
  3981. "ext-xml": "*",
  3982. "ext-xmlreader": "*",
  3983. "ext-xmlwriter": "*",
  3984. "ext-zip": "*",
  3985. "ext-zlib": "*",
  3986. "ezyang/htmlpurifier": "^4.15",
  3987. "maennchen/zipstream-php": "^2.1 || ^3.0",
  3988. "markbaker/complex": "^3.0",
  3989. "markbaker/matrix": "^3.0",
  3990. "php": "^7.4 || ^8.0",
  3991. "psr/http-client": "^1.0",
  3992. "psr/http-factory": "^1.0",
  3993. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  3994. },
  3995. "require-dev": {
  3996. "dealerdirect/phpcodesniffer-composer-installer": "dev-main",
  3997. "dompdf/dompdf": "^1.0 || ^2.0",
  3998. "friendsofphp/php-cs-fixer": "^3.2",
  3999. "mitoteam/jpgraph": "^10.3",
  4000. "mpdf/mpdf": "^8.1.1",
  4001. "phpcompatibility/php-compatibility": "^9.3",
  4002. "phpstan/phpstan": "^1.1",
  4003. "phpstan/phpstan-phpunit": "^1.0",
  4004. "phpunit/phpunit": "^8.5 || ^9.0 || ^10.0",
  4005. "squizlabs/php_codesniffer": "^3.7",
  4006. "tecnickcom/tcpdf": "^6.5"
  4007. },
  4008. "suggest": {
  4009. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  4010. "ext-intl": "PHP Internationalization Functions",
  4011. "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  4012. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  4013. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  4014. },
  4015. "type": "library",
  4016. "autoload": {
  4017. "psr-4": {
  4018. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  4019. }
  4020. },
  4021. "notification-url": "https://packagist.org/downloads/",
  4022. "license": [
  4023. "MIT"
  4024. ],
  4025. "authors": [
  4026. {
  4027. "name": "Maarten Balliauw",
  4028. "homepage": "https://blog.maartenballiauw.be"
  4029. },
  4030. {
  4031. "name": "Mark Baker",
  4032. "homepage": "https://markbakeruk.net"
  4033. },
  4034. {
  4035. "name": "Franck Lefevre",
  4036. "homepage": "https://rootslabs.net"
  4037. },
  4038. {
  4039. "name": "Erik Tilt"
  4040. },
  4041. {
  4042. "name": "Adrien Crivelli"
  4043. }
  4044. ],
  4045. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  4046. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  4047. "keywords": [
  4048. "OpenXML",
  4049. "excel",
  4050. "gnumeric",
  4051. "ods",
  4052. "php",
  4053. "spreadsheet",
  4054. "xls",
  4055. "xlsx"
  4056. ],
  4057. "support": {
  4058. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  4059. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.29.0"
  4060. },
  4061. "time": "2023-06-14T22:48:31+00:00"
  4062. },
  4063. {
  4064. "name": "phpoption/phpoption",
  4065. "version": "1.9.2",
  4066. "source": {
  4067. "type": "git",
  4068. "url": "https://github.com/schmittjoh/php-option.git",
  4069. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820"
  4070. },
  4071. "dist": {
  4072. "type": "zip",
  4073. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/80735db690fe4fc5c76dfa7f9b770634285fa820",
  4074. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820",
  4075. "shasum": "",
  4076. "mirrors": [
  4077. {
  4078. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4079. "preferred": true
  4080. }
  4081. ]
  4082. },
  4083. "require": {
  4084. "php": "^7.2.5 || ^8.0"
  4085. },
  4086. "require-dev": {
  4087. "bamarni/composer-bin-plugin": "^1.8.2",
  4088. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  4089. },
  4090. "type": "library",
  4091. "extra": {
  4092. "bamarni-bin": {
  4093. "bin-links": true,
  4094. "forward-command": true
  4095. },
  4096. "branch-alias": {
  4097. "dev-master": "1.9-dev"
  4098. }
  4099. },
  4100. "autoload": {
  4101. "psr-4": {
  4102. "PhpOption\\": "src/PhpOption/"
  4103. }
  4104. },
  4105. "notification-url": "https://packagist.org/downloads/",
  4106. "license": [
  4107. "Apache-2.0"
  4108. ],
  4109. "authors": [
  4110. {
  4111. "name": "Johannes M. Schmitt",
  4112. "email": "schmittjoh@gmail.com",
  4113. "homepage": "https://github.com/schmittjoh"
  4114. },
  4115. {
  4116. "name": "Graham Campbell",
  4117. "email": "hello@gjcampbell.co.uk",
  4118. "homepage": "https://github.com/GrahamCampbell"
  4119. }
  4120. ],
  4121. "description": "Option Type for PHP",
  4122. "keywords": [
  4123. "language",
  4124. "option",
  4125. "php",
  4126. "type"
  4127. ],
  4128. "support": {
  4129. "issues": "https://github.com/schmittjoh/php-option/issues",
  4130. "source": "https://github.com/schmittjoh/php-option/tree/1.9.2"
  4131. },
  4132. "funding": [
  4133. {
  4134. "url": "https://github.com/GrahamCampbell",
  4135. "type": "github"
  4136. },
  4137. {
  4138. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  4139. "type": "tidelift"
  4140. }
  4141. ],
  4142. "time": "2023-11-12T21:59:55+00:00"
  4143. },
  4144. {
  4145. "name": "pimple/pimple",
  4146. "version": "v3.5.0",
  4147. "source": {
  4148. "type": "git",
  4149. "url": "https://github.com/silexphp/Pimple.git",
  4150. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed"
  4151. },
  4152. "dist": {
  4153. "type": "zip",
  4154. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  4155. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  4156. "shasum": ""
  4157. },
  4158. "require": {
  4159. "php": ">=7.2.5",
  4160. "psr/container": "^1.1 || ^2.0"
  4161. },
  4162. "require-dev": {
  4163. "symfony/phpunit-bridge": "^5.4@dev"
  4164. },
  4165. "type": "library",
  4166. "extra": {
  4167. "branch-alias": {
  4168. "dev-master": "3.4.x-dev"
  4169. }
  4170. },
  4171. "autoload": {
  4172. "psr-0": {
  4173. "Pimple": "src/"
  4174. }
  4175. },
  4176. "notification-url": "https://packagist.org/downloads/",
  4177. "license": [
  4178. "MIT"
  4179. ],
  4180. "authors": [
  4181. {
  4182. "name": "Fabien Potencier",
  4183. "email": "fabien@symfony.com"
  4184. }
  4185. ],
  4186. "description": "Pimple, a simple Dependency Injection Container",
  4187. "homepage": "https://pimple.symfony.com",
  4188. "keywords": [
  4189. "container",
  4190. "dependency injection"
  4191. ],
  4192. "support": {
  4193. "source": "https://github.com/silexphp/Pimple/tree/v3.5.0"
  4194. },
  4195. "time": "2021-10-28T11:13:42+00:00"
  4196. },
  4197. {
  4198. "name": "predis/predis",
  4199. "version": "v1.1.10",
  4200. "source": {
  4201. "type": "git",
  4202. "url": "https://github.com/predis/predis.git",
  4203. "reference": "a2fb02d738bedadcffdbb07efa3a5e7bd57f8d6e"
  4204. },
  4205. "dist": {
  4206. "type": "zip",
  4207. "url": "https://api.github.com/repos/predis/predis/zipball/a2fb02d738bedadcffdbb07efa3a5e7bd57f8d6e",
  4208. "reference": "a2fb02d738bedadcffdbb07efa3a5e7bd57f8d6e",
  4209. "shasum": "",
  4210. "mirrors": [
  4211. {
  4212. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4213. "preferred": true
  4214. }
  4215. ]
  4216. },
  4217. "require": {
  4218. "php": ">=5.3.9"
  4219. },
  4220. "require-dev": {
  4221. "phpunit/phpunit": "~4.8"
  4222. },
  4223. "suggest": {
  4224. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  4225. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  4226. },
  4227. "type": "library",
  4228. "autoload": {
  4229. "psr-4": {
  4230. "Predis\\": "src/"
  4231. }
  4232. },
  4233. "notification-url": "https://packagist.org/downloads/",
  4234. "license": [
  4235. "MIT"
  4236. ],
  4237. "authors": [
  4238. {
  4239. "name": "Daniele Alessandri",
  4240. "email": "suppakilla@gmail.com",
  4241. "homepage": "http://clorophilla.net",
  4242. "role": "Creator & Maintainer"
  4243. },
  4244. {
  4245. "name": "Till Krüss",
  4246. "homepage": "https://till.im",
  4247. "role": "Maintainer"
  4248. }
  4249. ],
  4250. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  4251. "homepage": "http://github.com/predis/predis",
  4252. "keywords": [
  4253. "nosql",
  4254. "predis",
  4255. "redis"
  4256. ],
  4257. "support": {
  4258. "issues": "https://github.com/predis/predis/issues",
  4259. "source": "https://github.com/predis/predis/tree/v1.1.10"
  4260. },
  4261. "funding": [
  4262. {
  4263. "url": "https://github.com/sponsors/tillkruss",
  4264. "type": "github"
  4265. }
  4266. ],
  4267. "time": "2022-01-05T17:46:08+00:00"
  4268. },
  4269. {
  4270. "name": "psr/cache",
  4271. "version": "1.0.1",
  4272. "source": {
  4273. "type": "git",
  4274. "url": "https://github.com/php-fig/cache.git",
  4275. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  4276. },
  4277. "dist": {
  4278. "type": "zip",
  4279. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  4280. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  4281. "shasum": ""
  4282. },
  4283. "require": {
  4284. "php": ">=5.3.0"
  4285. },
  4286. "type": "library",
  4287. "extra": {
  4288. "branch-alias": {
  4289. "dev-master": "1.0.x-dev"
  4290. }
  4291. },
  4292. "autoload": {
  4293. "psr-4": {
  4294. "Psr\\Cache\\": "src/"
  4295. }
  4296. },
  4297. "notification-url": "https://packagist.org/downloads/",
  4298. "license": [
  4299. "MIT"
  4300. ],
  4301. "authors": [
  4302. {
  4303. "name": "PHP-FIG",
  4304. "homepage": "http://www.php-fig.org/"
  4305. }
  4306. ],
  4307. "description": "Common interface for caching libraries",
  4308. "keywords": [
  4309. "cache",
  4310. "psr",
  4311. "psr-6"
  4312. ],
  4313. "support": {
  4314. "source": "https://github.com/php-fig/cache/tree/master"
  4315. },
  4316. "time": "2016-08-06T20:24:11+00:00"
  4317. },
  4318. {
  4319. "name": "psr/clock",
  4320. "version": "1.0.0",
  4321. "source": {
  4322. "type": "git",
  4323. "url": "https://github.com/php-fig/clock.git",
  4324. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  4325. },
  4326. "dist": {
  4327. "type": "zip",
  4328. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  4329. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  4330. "shasum": "",
  4331. "mirrors": [
  4332. {
  4333. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4334. "preferred": true
  4335. }
  4336. ]
  4337. },
  4338. "require": {
  4339. "php": "^7.0 || ^8.0"
  4340. },
  4341. "type": "library",
  4342. "autoload": {
  4343. "psr-4": {
  4344. "Psr\\Clock\\": "src/"
  4345. }
  4346. },
  4347. "notification-url": "https://packagist.org/downloads/",
  4348. "license": [
  4349. "MIT"
  4350. ],
  4351. "authors": [
  4352. {
  4353. "name": "PHP-FIG",
  4354. "homepage": "https://www.php-fig.org/"
  4355. }
  4356. ],
  4357. "description": "Common interface for reading the clock.",
  4358. "homepage": "https://github.com/php-fig/clock",
  4359. "keywords": [
  4360. "clock",
  4361. "now",
  4362. "psr",
  4363. "psr-20",
  4364. "time"
  4365. ],
  4366. "support": {
  4367. "issues": "https://github.com/php-fig/clock/issues",
  4368. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  4369. },
  4370. "time": "2022-11-25T14:36:26+00:00"
  4371. },
  4372. {
  4373. "name": "psr/container",
  4374. "version": "1.1.2",
  4375. "source": {
  4376. "type": "git",
  4377. "url": "https://github.com/php-fig/container.git",
  4378. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  4379. },
  4380. "dist": {
  4381. "type": "zip",
  4382. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  4383. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  4384. "shasum": "",
  4385. "mirrors": [
  4386. {
  4387. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4388. "preferred": true
  4389. }
  4390. ]
  4391. },
  4392. "require": {
  4393. "php": ">=7.4.0"
  4394. },
  4395. "type": "library",
  4396. "autoload": {
  4397. "psr-4": {
  4398. "Psr\\Container\\": "src/"
  4399. }
  4400. },
  4401. "notification-url": "https://packagist.org/downloads/",
  4402. "license": [
  4403. "MIT"
  4404. ],
  4405. "authors": [
  4406. {
  4407. "name": "PHP-FIG",
  4408. "homepage": "https://www.php-fig.org/"
  4409. }
  4410. ],
  4411. "description": "Common Container Interface (PHP FIG PSR-11)",
  4412. "homepage": "https://github.com/php-fig/container",
  4413. "keywords": [
  4414. "PSR-11",
  4415. "container",
  4416. "container-interface",
  4417. "container-interop",
  4418. "psr"
  4419. ],
  4420. "support": {
  4421. "issues": "https://github.com/php-fig/container/issues",
  4422. "source": "https://github.com/php-fig/container/tree/1.1.2"
  4423. },
  4424. "time": "2021-11-05T16:50:12+00:00"
  4425. },
  4426. {
  4427. "name": "psr/event-dispatcher",
  4428. "version": "1.0.0",
  4429. "source": {
  4430. "type": "git",
  4431. "url": "https://github.com/php-fig/event-dispatcher.git",
  4432. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  4433. },
  4434. "dist": {
  4435. "type": "zip",
  4436. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4437. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4438. "shasum": "",
  4439. "mirrors": [
  4440. {
  4441. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4442. "preferred": true
  4443. }
  4444. ]
  4445. },
  4446. "require": {
  4447. "php": ">=7.2.0"
  4448. },
  4449. "type": "library",
  4450. "extra": {
  4451. "branch-alias": {
  4452. "dev-master": "1.0.x-dev"
  4453. }
  4454. },
  4455. "autoload": {
  4456. "psr-4": {
  4457. "Psr\\EventDispatcher\\": "src/"
  4458. }
  4459. },
  4460. "notification-url": "https://packagist.org/downloads/",
  4461. "license": [
  4462. "MIT"
  4463. ],
  4464. "authors": [
  4465. {
  4466. "name": "PHP-FIG",
  4467. "homepage": "http://www.php-fig.org/"
  4468. }
  4469. ],
  4470. "description": "Standard interfaces for event handling.",
  4471. "keywords": [
  4472. "events",
  4473. "psr",
  4474. "psr-14"
  4475. ],
  4476. "support": {
  4477. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  4478. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  4479. },
  4480. "time": "2019-01-08T18:20:26+00:00"
  4481. },
  4482. {
  4483. "name": "psr/http-client",
  4484. "version": "1.0.3",
  4485. "source": {
  4486. "type": "git",
  4487. "url": "https://github.com/php-fig/http-client.git",
  4488. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  4489. },
  4490. "dist": {
  4491. "type": "zip",
  4492. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  4493. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  4494. "shasum": "",
  4495. "mirrors": [
  4496. {
  4497. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4498. "preferred": true
  4499. }
  4500. ]
  4501. },
  4502. "require": {
  4503. "php": "^7.0 || ^8.0",
  4504. "psr/http-message": "^1.0 || ^2.0"
  4505. },
  4506. "type": "library",
  4507. "extra": {
  4508. "branch-alias": {
  4509. "dev-master": "1.0.x-dev"
  4510. }
  4511. },
  4512. "autoload": {
  4513. "psr-4": {
  4514. "Psr\\Http\\Client\\": "src/"
  4515. }
  4516. },
  4517. "notification-url": "https://packagist.org/downloads/",
  4518. "license": [
  4519. "MIT"
  4520. ],
  4521. "authors": [
  4522. {
  4523. "name": "PHP-FIG",
  4524. "homepage": "https://www.php-fig.org/"
  4525. }
  4526. ],
  4527. "description": "Common interface for HTTP clients",
  4528. "homepage": "https://github.com/php-fig/http-client",
  4529. "keywords": [
  4530. "http",
  4531. "http-client",
  4532. "psr",
  4533. "psr-18"
  4534. ],
  4535. "support": {
  4536. "source": "https://github.com/php-fig/http-client"
  4537. },
  4538. "time": "2023-09-23T14:17:50+00:00"
  4539. },
  4540. {
  4541. "name": "psr/http-factory",
  4542. "version": "1.0.2",
  4543. "source": {
  4544. "type": "git",
  4545. "url": "https://github.com/php-fig/http-factory.git",
  4546. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  4547. },
  4548. "dist": {
  4549. "type": "zip",
  4550. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  4551. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  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": ">=7.0.0",
  4562. "psr/http-message": "^1.0 || ^2.0"
  4563. },
  4564. "type": "library",
  4565. "extra": {
  4566. "branch-alias": {
  4567. "dev-master": "1.0.x-dev"
  4568. }
  4569. },
  4570. "autoload": {
  4571. "psr-4": {
  4572. "Psr\\Http\\Message\\": "src/"
  4573. }
  4574. },
  4575. "notification-url": "https://packagist.org/downloads/",
  4576. "license": [
  4577. "MIT"
  4578. ],
  4579. "authors": [
  4580. {
  4581. "name": "PHP-FIG",
  4582. "homepage": "https://www.php-fig.org/"
  4583. }
  4584. ],
  4585. "description": "Common interfaces for PSR-7 HTTP message factories",
  4586. "keywords": [
  4587. "factory",
  4588. "http",
  4589. "message",
  4590. "psr",
  4591. "psr-17",
  4592. "psr-7",
  4593. "request",
  4594. "response"
  4595. ],
  4596. "support": {
  4597. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  4598. },
  4599. "time": "2023-04-10T20:10:41+00:00"
  4600. },
  4601. {
  4602. "name": "psr/http-message",
  4603. "version": "1.1",
  4604. "source": {
  4605. "type": "git",
  4606. "url": "https://github.com/php-fig/http-message.git",
  4607. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  4608. },
  4609. "dist": {
  4610. "type": "zip",
  4611. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  4612. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  4613. "shasum": "",
  4614. "mirrors": [
  4615. {
  4616. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4617. "preferred": true
  4618. }
  4619. ]
  4620. },
  4621. "require": {
  4622. "php": "^7.2 || ^8.0"
  4623. },
  4624. "type": "library",
  4625. "extra": {
  4626. "branch-alias": {
  4627. "dev-master": "1.1.x-dev"
  4628. }
  4629. },
  4630. "autoload": {
  4631. "psr-4": {
  4632. "Psr\\Http\\Message\\": "src/"
  4633. }
  4634. },
  4635. "notification-url": "https://packagist.org/downloads/",
  4636. "license": [
  4637. "MIT"
  4638. ],
  4639. "authors": [
  4640. {
  4641. "name": "PHP-FIG",
  4642. "homepage": "http://www.php-fig.org/"
  4643. }
  4644. ],
  4645. "description": "Common interface for HTTP messages",
  4646. "homepage": "https://github.com/php-fig/http-message",
  4647. "keywords": [
  4648. "http",
  4649. "http-message",
  4650. "psr",
  4651. "psr-7",
  4652. "request",
  4653. "response"
  4654. ],
  4655. "support": {
  4656. "source": "https://github.com/php-fig/http-message/tree/1.1"
  4657. },
  4658. "time": "2023-04-04T09:50:52+00:00"
  4659. },
  4660. {
  4661. "name": "psr/log",
  4662. "version": "1.1.4",
  4663. "source": {
  4664. "type": "git",
  4665. "url": "https://github.com/php-fig/log.git",
  4666. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  4667. },
  4668. "dist": {
  4669. "type": "zip",
  4670. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  4671. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  4672. "shasum": "",
  4673. "mirrors": [
  4674. {
  4675. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4676. "preferred": true
  4677. }
  4678. ]
  4679. },
  4680. "require": {
  4681. "php": ">=5.3.0"
  4682. },
  4683. "type": "library",
  4684. "extra": {
  4685. "branch-alias": {
  4686. "dev-master": "1.1.x-dev"
  4687. }
  4688. },
  4689. "autoload": {
  4690. "psr-4": {
  4691. "Psr\\Log\\": "Psr/Log/"
  4692. }
  4693. },
  4694. "notification-url": "https://packagist.org/downloads/",
  4695. "license": [
  4696. "MIT"
  4697. ],
  4698. "authors": [
  4699. {
  4700. "name": "PHP-FIG",
  4701. "homepage": "https://www.php-fig.org/"
  4702. }
  4703. ],
  4704. "description": "Common interface for logging libraries",
  4705. "homepage": "https://github.com/php-fig/log",
  4706. "keywords": [
  4707. "log",
  4708. "psr",
  4709. "psr-3"
  4710. ],
  4711. "support": {
  4712. "source": "https://github.com/php-fig/log/tree/1.1.4"
  4713. },
  4714. "time": "2021-05-03T11:20:27+00:00"
  4715. },
  4716. {
  4717. "name": "psr/simple-cache",
  4718. "version": "1.0.1",
  4719. "source": {
  4720. "type": "git",
  4721. "url": "https://github.com/php-fig/simple-cache.git",
  4722. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  4723. },
  4724. "dist": {
  4725. "type": "zip",
  4726. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4727. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4728. "shasum": "",
  4729. "mirrors": [
  4730. {
  4731. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4732. "preferred": true
  4733. }
  4734. ]
  4735. },
  4736. "require": {
  4737. "php": ">=5.3.0"
  4738. },
  4739. "type": "library",
  4740. "extra": {
  4741. "branch-alias": {
  4742. "dev-master": "1.0.x-dev"
  4743. }
  4744. },
  4745. "autoload": {
  4746. "psr-4": {
  4747. "Psr\\SimpleCache\\": "src/"
  4748. }
  4749. },
  4750. "notification-url": "https://packagist.org/downloads/",
  4751. "license": [
  4752. "MIT"
  4753. ],
  4754. "authors": [
  4755. {
  4756. "name": "PHP-FIG",
  4757. "homepage": "http://www.php-fig.org/"
  4758. }
  4759. ],
  4760. "description": "Common interfaces for simple caching",
  4761. "keywords": [
  4762. "cache",
  4763. "caching",
  4764. "psr",
  4765. "psr-16",
  4766. "simple-cache"
  4767. ],
  4768. "support": {
  4769. "source": "https://github.com/php-fig/simple-cache/tree/master"
  4770. },
  4771. "time": "2017-10-23T01:57:42+00:00"
  4772. },
  4773. {
  4774. "name": "psy/psysh",
  4775. "version": "v0.12.0",
  4776. "source": {
  4777. "type": "git",
  4778. "url": "https://github.com/bobthecow/psysh.git",
  4779. "reference": "750bf031a48fd07c673dbe3f11f72362ea306d0d"
  4780. },
  4781. "dist": {
  4782. "type": "zip",
  4783. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/750bf031a48fd07c673dbe3f11f72362ea306d0d",
  4784. "reference": "750bf031a48fd07c673dbe3f11f72362ea306d0d",
  4785. "shasum": "",
  4786. "mirrors": [
  4787. {
  4788. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4789. "preferred": true
  4790. }
  4791. ]
  4792. },
  4793. "require": {
  4794. "ext-json": "*",
  4795. "ext-tokenizer": "*",
  4796. "nikic/php-parser": "^5.0 || ^4.0",
  4797. "php": "^8.0 || ^7.4",
  4798. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  4799. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  4800. },
  4801. "conflict": {
  4802. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  4803. },
  4804. "require-dev": {
  4805. "bamarni/composer-bin-plugin": "^1.2"
  4806. },
  4807. "suggest": {
  4808. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4809. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4810. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  4811. },
  4812. "bin": [
  4813. "bin/psysh"
  4814. ],
  4815. "type": "library",
  4816. "extra": {
  4817. "branch-alias": {
  4818. "dev-main": "0.12.x-dev"
  4819. },
  4820. "bamarni-bin": {
  4821. "bin-links": false,
  4822. "forward-command": false
  4823. }
  4824. },
  4825. "autoload": {
  4826. "files": [
  4827. "src/functions.php"
  4828. ],
  4829. "psr-4": {
  4830. "Psy\\": "src/"
  4831. }
  4832. },
  4833. "notification-url": "https://packagist.org/downloads/",
  4834. "license": [
  4835. "MIT"
  4836. ],
  4837. "authors": [
  4838. {
  4839. "name": "Justin Hileman",
  4840. "email": "justin@justinhileman.info",
  4841. "homepage": "http://justinhileman.com"
  4842. }
  4843. ],
  4844. "description": "An interactive shell for modern PHP.",
  4845. "homepage": "http://psysh.org",
  4846. "keywords": [
  4847. "REPL",
  4848. "console",
  4849. "interactive",
  4850. "shell"
  4851. ],
  4852. "support": {
  4853. "issues": "https://github.com/bobthecow/psysh/issues",
  4854. "source": "https://github.com/bobthecow/psysh/tree/v0.12.0"
  4855. },
  4856. "time": "2023-12-20T15:28:09+00:00"
  4857. },
  4858. {
  4859. "name": "ralouphie/getallheaders",
  4860. "version": "3.0.3",
  4861. "source": {
  4862. "type": "git",
  4863. "url": "https://github.com/ralouphie/getallheaders.git",
  4864. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4865. },
  4866. "dist": {
  4867. "type": "zip",
  4868. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4869. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4870. "shasum": "",
  4871. "mirrors": [
  4872. {
  4873. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4874. "preferred": true
  4875. }
  4876. ]
  4877. },
  4878. "require": {
  4879. "php": ">=5.6"
  4880. },
  4881. "require-dev": {
  4882. "php-coveralls/php-coveralls": "^2.1",
  4883. "phpunit/phpunit": "^5 || ^6.5"
  4884. },
  4885. "type": "library",
  4886. "autoload": {
  4887. "files": [
  4888. "src/getallheaders.php"
  4889. ]
  4890. },
  4891. "notification-url": "https://packagist.org/downloads/",
  4892. "license": [
  4893. "MIT"
  4894. ],
  4895. "authors": [
  4896. {
  4897. "name": "Ralph Khattar",
  4898. "email": "ralph.khattar@gmail.com"
  4899. }
  4900. ],
  4901. "description": "A polyfill for getallheaders.",
  4902. "support": {
  4903. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4904. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4905. },
  4906. "time": "2019-03-08T08:55:37+00:00"
  4907. },
  4908. {
  4909. "name": "ramsey/collection",
  4910. "version": "1.3.0",
  4911. "source": {
  4912. "type": "git",
  4913. "url": "https://github.com/ramsey/collection.git",
  4914. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4"
  4915. },
  4916. "dist": {
  4917. "type": "zip",
  4918. "url": "https://api.github.com/repos/ramsey/collection/zipball/ad7475d1c9e70b190ecffc58f2d989416af339b4",
  4919. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4",
  4920. "shasum": "",
  4921. "mirrors": [
  4922. {
  4923. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4924. "preferred": true
  4925. }
  4926. ]
  4927. },
  4928. "require": {
  4929. "php": "^7.4 || ^8.0",
  4930. "symfony/polyfill-php81": "^1.23"
  4931. },
  4932. "require-dev": {
  4933. "captainhook/plugin-composer": "^5.3",
  4934. "ergebnis/composer-normalize": "^2.28.3",
  4935. "fakerphp/faker": "^1.21",
  4936. "hamcrest/hamcrest-php": "^2.0",
  4937. "jangregor/phpstan-prophecy": "^1.0",
  4938. "mockery/mockery": "^1.5",
  4939. "php-parallel-lint/php-console-highlighter": "^1.0",
  4940. "php-parallel-lint/php-parallel-lint": "^1.3",
  4941. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  4942. "phpspec/prophecy-phpunit": "^2.0",
  4943. "phpstan/extension-installer": "^1.2",
  4944. "phpstan/phpstan": "^1.9",
  4945. "phpstan/phpstan-mockery": "^1.1",
  4946. "phpstan/phpstan-phpunit": "^1.3",
  4947. "phpunit/phpunit": "^9.5",
  4948. "psalm/plugin-mockery": "^1.1",
  4949. "psalm/plugin-phpunit": "^0.18.4",
  4950. "ramsey/coding-standard": "^2.0.3",
  4951. "ramsey/conventional-commits": "^1.3",
  4952. "vimeo/psalm": "^5.4"
  4953. },
  4954. "type": "library",
  4955. "extra": {
  4956. "captainhook": {
  4957. "force-install": true
  4958. },
  4959. "ramsey/conventional-commits": {
  4960. "configFile": "conventional-commits.json"
  4961. }
  4962. },
  4963. "autoload": {
  4964. "psr-4": {
  4965. "Ramsey\\Collection\\": "src/"
  4966. }
  4967. },
  4968. "notification-url": "https://packagist.org/downloads/",
  4969. "license": [
  4970. "MIT"
  4971. ],
  4972. "authors": [
  4973. {
  4974. "name": "Ben Ramsey",
  4975. "email": "ben@benramsey.com",
  4976. "homepage": "https://benramsey.com"
  4977. }
  4978. ],
  4979. "description": "A PHP library for representing and manipulating collections.",
  4980. "keywords": [
  4981. "array",
  4982. "collection",
  4983. "hash",
  4984. "map",
  4985. "queue",
  4986. "set"
  4987. ],
  4988. "support": {
  4989. "issues": "https://github.com/ramsey/collection/issues",
  4990. "source": "https://github.com/ramsey/collection/tree/1.3.0"
  4991. },
  4992. "funding": [
  4993. {
  4994. "url": "https://github.com/ramsey",
  4995. "type": "github"
  4996. },
  4997. {
  4998. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4999. "type": "tidelift"
  5000. }
  5001. ],
  5002. "time": "2022-12-27T19:12:24+00:00"
  5003. },
  5004. {
  5005. "name": "ramsey/uuid",
  5006. "version": "4.2.3",
  5007. "source": {
  5008. "type": "git",
  5009. "url": "https://github.com/ramsey/uuid.git",
  5010. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df"
  5011. },
  5012. "dist": {
  5013. "type": "zip",
  5014. "url": "https://api.github.com/repos/ramsey/uuid/zipball/fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  5015. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  5016. "shasum": "",
  5017. "mirrors": [
  5018. {
  5019. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5020. "preferred": true
  5021. }
  5022. ]
  5023. },
  5024. "require": {
  5025. "brick/math": "^0.8 || ^0.9",
  5026. "ext-json": "*",
  5027. "php": "^7.2 || ^8.0",
  5028. "ramsey/collection": "^1.0",
  5029. "symfony/polyfill-ctype": "^1.8",
  5030. "symfony/polyfill-php80": "^1.14"
  5031. },
  5032. "replace": {
  5033. "rhumsaa/uuid": "self.version"
  5034. },
  5035. "require-dev": {
  5036. "captainhook/captainhook": "^5.10",
  5037. "captainhook/plugin-composer": "^5.3",
  5038. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  5039. "doctrine/annotations": "^1.8",
  5040. "ergebnis/composer-normalize": "^2.15",
  5041. "mockery/mockery": "^1.3",
  5042. "moontoast/math": "^1.1",
  5043. "paragonie/random-lib": "^2",
  5044. "php-mock/php-mock": "^2.2",
  5045. "php-mock/php-mock-mockery": "^1.3",
  5046. "php-parallel-lint/php-parallel-lint": "^1.1",
  5047. "phpbench/phpbench": "^1.0",
  5048. "phpstan/extension-installer": "^1.0",
  5049. "phpstan/phpstan": "^0.12",
  5050. "phpstan/phpstan-mockery": "^0.12",
  5051. "phpstan/phpstan-phpunit": "^0.12",
  5052. "phpunit/phpunit": "^8.5 || ^9",
  5053. "slevomat/coding-standard": "^7.0",
  5054. "squizlabs/php_codesniffer": "^3.5",
  5055. "vimeo/psalm": "^4.9"
  5056. },
  5057. "suggest": {
  5058. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  5059. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  5060. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  5061. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  5062. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  5063. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  5064. },
  5065. "type": "library",
  5066. "extra": {
  5067. "branch-alias": {
  5068. "dev-main": "4.x-dev"
  5069. },
  5070. "captainhook": {
  5071. "force-install": true
  5072. }
  5073. },
  5074. "autoload": {
  5075. "files": [
  5076. "src/functions.php"
  5077. ],
  5078. "psr-4": {
  5079. "Ramsey\\Uuid\\": "src/"
  5080. }
  5081. },
  5082. "notification-url": "https://packagist.org/downloads/",
  5083. "license": [
  5084. "MIT"
  5085. ],
  5086. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  5087. "keywords": [
  5088. "guid",
  5089. "identifier",
  5090. "uuid"
  5091. ],
  5092. "support": {
  5093. "issues": "https://github.com/ramsey/uuid/issues",
  5094. "source": "https://github.com/ramsey/uuid/tree/4.2.3"
  5095. },
  5096. "funding": [
  5097. {
  5098. "url": "https://github.com/ramsey",
  5099. "type": "github"
  5100. },
  5101. {
  5102. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  5103. "type": "tidelift"
  5104. }
  5105. ],
  5106. "time": "2021-09-25T23:10:38+00:00"
  5107. },
  5108. {
  5109. "name": "swiftmailer/swiftmailer",
  5110. "version": "v6.3.0",
  5111. "source": {
  5112. "type": "git",
  5113. "url": "https://github.com/swiftmailer/swiftmailer.git",
  5114. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  5115. },
  5116. "dist": {
  5117. "type": "zip",
  5118. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  5119. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  5120. "shasum": ""
  5121. },
  5122. "require": {
  5123. "egulias/email-validator": "^2.0|^3.1",
  5124. "php": ">=7.0.0",
  5125. "symfony/polyfill-iconv": "^1.0",
  5126. "symfony/polyfill-intl-idn": "^1.10",
  5127. "symfony/polyfill-mbstring": "^1.0"
  5128. },
  5129. "require-dev": {
  5130. "mockery/mockery": "^1.0",
  5131. "symfony/phpunit-bridge": "^4.4|^5.4"
  5132. },
  5133. "suggest": {
  5134. "ext-intl": "Needed to support internationalized email addresses"
  5135. },
  5136. "type": "library",
  5137. "extra": {
  5138. "branch-alias": {
  5139. "dev-master": "6.2-dev"
  5140. }
  5141. },
  5142. "autoload": {
  5143. "files": [
  5144. "lib/swift_required.php"
  5145. ]
  5146. },
  5147. "notification-url": "https://packagist.org/downloads/",
  5148. "license": [
  5149. "MIT"
  5150. ],
  5151. "authors": [
  5152. {
  5153. "name": "Chris Corbyn"
  5154. },
  5155. {
  5156. "name": "Fabien Potencier",
  5157. "email": "fabien@symfony.com"
  5158. }
  5159. ],
  5160. "description": "Swiftmailer, free feature-rich PHP mailer",
  5161. "homepage": "https://swiftmailer.symfony.com",
  5162. "keywords": [
  5163. "email",
  5164. "mail",
  5165. "mailer"
  5166. ],
  5167. "support": {
  5168. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  5169. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  5170. },
  5171. "funding": [
  5172. {
  5173. "url": "https://github.com/fabpot",
  5174. "type": "github"
  5175. },
  5176. {
  5177. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  5178. "type": "tidelift"
  5179. }
  5180. ],
  5181. "abandoned": "symfony/mailer",
  5182. "time": "2021-10-18T15:26:12+00:00"
  5183. },
  5184. {
  5185. "name": "symfony/cache",
  5186. "version": "v5.4.42",
  5187. "source": {
  5188. "type": "git",
  5189. "url": "https://github.com/symfony/cache.git",
  5190. "reference": "6f5f750692bd5a212e01a4f1945fd856bceef89e"
  5191. },
  5192. "dist": {
  5193. "type": "zip",
  5194. "url": "https://api.github.com/repos/symfony/cache/zipball/6f5f750692bd5a212e01a4f1945fd856bceef89e",
  5195. "reference": "6f5f750692bd5a212e01a4f1945fd856bceef89e",
  5196. "shasum": ""
  5197. },
  5198. "require": {
  5199. "php": ">=7.2.5",
  5200. "psr/cache": "^1.0|^2.0",
  5201. "psr/log": "^1.1|^2|^3",
  5202. "symfony/cache-contracts": "^1.1.7|^2",
  5203. "symfony/deprecation-contracts": "^2.1|^3",
  5204. "symfony/polyfill-php73": "^1.9",
  5205. "symfony/polyfill-php80": "^1.16",
  5206. "symfony/service-contracts": "^1.1|^2|^3",
  5207. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  5208. },
  5209. "conflict": {
  5210. "doctrine/dbal": "<2.13.1",
  5211. "symfony/dependency-injection": "<4.4",
  5212. "symfony/http-kernel": "<4.4",
  5213. "symfony/var-dumper": "<4.4"
  5214. },
  5215. "provide": {
  5216. "psr/cache-implementation": "1.0|2.0",
  5217. "psr/simple-cache-implementation": "1.0|2.0",
  5218. "symfony/cache-implementation": "1.0|2.0"
  5219. },
  5220. "require-dev": {
  5221. "cache/integration-tests": "dev-master",
  5222. "doctrine/cache": "^1.6|^2.0",
  5223. "doctrine/dbal": "^2.13.1|^3|^4",
  5224. "predis/predis": "^1.1|^2.0",
  5225. "psr/simple-cache": "^1.0|^2.0",
  5226. "symfony/config": "^4.4|^5.0|^6.0",
  5227. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5228. "symfony/filesystem": "^4.4|^5.0|^6.0",
  5229. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  5230. "symfony/messenger": "^4.4|^5.0|^6.0",
  5231. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  5232. },
  5233. "type": "library",
  5234. "autoload": {
  5235. "psr-4": {
  5236. "Symfony\\Component\\Cache\\": ""
  5237. },
  5238. "exclude-from-classmap": [
  5239. "/Tests/"
  5240. ]
  5241. },
  5242. "notification-url": "https://packagist.org/downloads/",
  5243. "license": [
  5244. "MIT"
  5245. ],
  5246. "authors": [
  5247. {
  5248. "name": "Nicolas Grekas",
  5249. "email": "p@tchwork.com"
  5250. },
  5251. {
  5252. "name": "Symfony Community",
  5253. "homepage": "https://symfony.com/contributors"
  5254. }
  5255. ],
  5256. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  5257. "homepage": "https://symfony.com",
  5258. "keywords": [
  5259. "caching",
  5260. "psr6"
  5261. ],
  5262. "support": {
  5263. "source": "https://github.com/symfony/cache/tree/v5.4.42"
  5264. },
  5265. "funding": [
  5266. {
  5267. "url": "https://symfony.com/sponsor",
  5268. "type": "custom"
  5269. },
  5270. {
  5271. "url": "https://github.com/fabpot",
  5272. "type": "github"
  5273. },
  5274. {
  5275. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5276. "type": "tidelift"
  5277. }
  5278. ],
  5279. "time": "2024-07-10T06:02:18+00:00"
  5280. },
  5281. {
  5282. "name": "symfony/cache-contracts",
  5283. "version": "v2.5.3",
  5284. "source": {
  5285. "type": "git",
  5286. "url": "https://github.com/symfony/cache-contracts.git",
  5287. "reference": "fee6db04d913094e2fb55ff8e7db5685a8134463"
  5288. },
  5289. "dist": {
  5290. "type": "zip",
  5291. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/fee6db04d913094e2fb55ff8e7db5685a8134463",
  5292. "reference": "fee6db04d913094e2fb55ff8e7db5685a8134463",
  5293. "shasum": ""
  5294. },
  5295. "require": {
  5296. "php": ">=7.2.5",
  5297. "psr/cache": "^1.0|^2.0|^3.0"
  5298. },
  5299. "suggest": {
  5300. "symfony/cache-implementation": ""
  5301. },
  5302. "type": "library",
  5303. "extra": {
  5304. "branch-alias": {
  5305. "dev-main": "2.5-dev"
  5306. },
  5307. "thanks": {
  5308. "name": "symfony/contracts",
  5309. "url": "https://github.com/symfony/contracts"
  5310. }
  5311. },
  5312. "autoload": {
  5313. "psr-4": {
  5314. "Symfony\\Contracts\\Cache\\": ""
  5315. }
  5316. },
  5317. "notification-url": "https://packagist.org/downloads/",
  5318. "license": [
  5319. "MIT"
  5320. ],
  5321. "authors": [
  5322. {
  5323. "name": "Nicolas Grekas",
  5324. "email": "p@tchwork.com"
  5325. },
  5326. {
  5327. "name": "Symfony Community",
  5328. "homepage": "https://symfony.com/contributors"
  5329. }
  5330. ],
  5331. "description": "Generic abstractions related to caching",
  5332. "homepage": "https://symfony.com",
  5333. "keywords": [
  5334. "abstractions",
  5335. "contracts",
  5336. "decoupling",
  5337. "interfaces",
  5338. "interoperability",
  5339. "standards"
  5340. ],
  5341. "support": {
  5342. "source": "https://github.com/symfony/cache-contracts/tree/v2.5.3"
  5343. },
  5344. "funding": [
  5345. {
  5346. "url": "https://symfony.com/sponsor",
  5347. "type": "custom"
  5348. },
  5349. {
  5350. "url": "https://github.com/fabpot",
  5351. "type": "github"
  5352. },
  5353. {
  5354. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5355. "type": "tidelift"
  5356. }
  5357. ],
  5358. "time": "2024-01-23T13:51:25+00:00"
  5359. },
  5360. {
  5361. "name": "symfony/console",
  5362. "version": "v5.4.34",
  5363. "source": {
  5364. "type": "git",
  5365. "url": "https://github.com/symfony/console.git",
  5366. "reference": "4b4d8cd118484aa604ec519062113dd87abde18c"
  5367. },
  5368. "dist": {
  5369. "type": "zip",
  5370. "url": "https://api.github.com/repos/symfony/console/zipball/4b4d8cd118484aa604ec519062113dd87abde18c",
  5371. "reference": "4b4d8cd118484aa604ec519062113dd87abde18c",
  5372. "shasum": "",
  5373. "mirrors": [
  5374. {
  5375. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5376. "preferred": true
  5377. }
  5378. ]
  5379. },
  5380. "require": {
  5381. "php": ">=7.2.5",
  5382. "symfony/deprecation-contracts": "^2.1|^3",
  5383. "symfony/polyfill-mbstring": "~1.0",
  5384. "symfony/polyfill-php73": "^1.9",
  5385. "symfony/polyfill-php80": "^1.16",
  5386. "symfony/service-contracts": "^1.1|^2|^3",
  5387. "symfony/string": "^5.1|^6.0"
  5388. },
  5389. "conflict": {
  5390. "psr/log": ">=3",
  5391. "symfony/dependency-injection": "<4.4",
  5392. "symfony/dotenv": "<5.1",
  5393. "symfony/event-dispatcher": "<4.4",
  5394. "symfony/lock": "<4.4",
  5395. "symfony/process": "<4.4"
  5396. },
  5397. "provide": {
  5398. "psr/log-implementation": "1.0|2.0"
  5399. },
  5400. "require-dev": {
  5401. "psr/log": "^1|^2",
  5402. "symfony/config": "^4.4|^5.0|^6.0",
  5403. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5404. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  5405. "symfony/lock": "^4.4|^5.0|^6.0",
  5406. "symfony/process": "^4.4|^5.0|^6.0",
  5407. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  5408. },
  5409. "suggest": {
  5410. "psr/log": "For using the console logger",
  5411. "symfony/event-dispatcher": "",
  5412. "symfony/lock": "",
  5413. "symfony/process": ""
  5414. },
  5415. "type": "library",
  5416. "autoload": {
  5417. "psr-4": {
  5418. "Symfony\\Component\\Console\\": ""
  5419. },
  5420. "exclude-from-classmap": [
  5421. "/Tests/"
  5422. ]
  5423. },
  5424. "notification-url": "https://packagist.org/downloads/",
  5425. "license": [
  5426. "MIT"
  5427. ],
  5428. "authors": [
  5429. {
  5430. "name": "Fabien Potencier",
  5431. "email": "fabien@symfony.com"
  5432. },
  5433. {
  5434. "name": "Symfony Community",
  5435. "homepage": "https://symfony.com/contributors"
  5436. }
  5437. ],
  5438. "description": "Eases the creation of beautiful and testable command line interfaces",
  5439. "homepage": "https://symfony.com",
  5440. "keywords": [
  5441. "cli",
  5442. "command-line",
  5443. "console",
  5444. "terminal"
  5445. ],
  5446. "support": {
  5447. "source": "https://github.com/symfony/console/tree/v5.4.34"
  5448. },
  5449. "funding": [
  5450. {
  5451. "url": "https://symfony.com/sponsor",
  5452. "type": "custom"
  5453. },
  5454. {
  5455. "url": "https://github.com/fabpot",
  5456. "type": "github"
  5457. },
  5458. {
  5459. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5460. "type": "tidelift"
  5461. }
  5462. ],
  5463. "time": "2023-12-08T13:33:03+00:00"
  5464. },
  5465. {
  5466. "name": "symfony/css-selector",
  5467. "version": "v5.4.26",
  5468. "source": {
  5469. "type": "git",
  5470. "url": "https://github.com/symfony/css-selector.git",
  5471. "reference": "0ad3f7e9a1ab492c5b4214cf22a9dc55dcf8600a"
  5472. },
  5473. "dist": {
  5474. "type": "zip",
  5475. "url": "https://api.github.com/repos/symfony/css-selector/zipball/0ad3f7e9a1ab492c5b4214cf22a9dc55dcf8600a",
  5476. "reference": "0ad3f7e9a1ab492c5b4214cf22a9dc55dcf8600a",
  5477. "shasum": "",
  5478. "mirrors": [
  5479. {
  5480. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5481. "preferred": true
  5482. }
  5483. ]
  5484. },
  5485. "require": {
  5486. "php": ">=7.2.5",
  5487. "symfony/polyfill-php80": "^1.16"
  5488. },
  5489. "type": "library",
  5490. "autoload": {
  5491. "psr-4": {
  5492. "Symfony\\Component\\CssSelector\\": ""
  5493. },
  5494. "exclude-from-classmap": [
  5495. "/Tests/"
  5496. ]
  5497. },
  5498. "notification-url": "https://packagist.org/downloads/",
  5499. "license": [
  5500. "MIT"
  5501. ],
  5502. "authors": [
  5503. {
  5504. "name": "Fabien Potencier",
  5505. "email": "fabien@symfony.com"
  5506. },
  5507. {
  5508. "name": "Jean-François Simon",
  5509. "email": "jeanfrancois.simon@sensiolabs.com"
  5510. },
  5511. {
  5512. "name": "Symfony Community",
  5513. "homepage": "https://symfony.com/contributors"
  5514. }
  5515. ],
  5516. "description": "Converts CSS selectors to XPath expressions",
  5517. "homepage": "https://symfony.com",
  5518. "support": {
  5519. "source": "https://github.com/symfony/css-selector/tree/v5.4.26"
  5520. },
  5521. "funding": [
  5522. {
  5523. "url": "https://symfony.com/sponsor",
  5524. "type": "custom"
  5525. },
  5526. {
  5527. "url": "https://github.com/fabpot",
  5528. "type": "github"
  5529. },
  5530. {
  5531. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5532. "type": "tidelift"
  5533. }
  5534. ],
  5535. "time": "2023-07-07T06:10:25+00:00"
  5536. },
  5537. {
  5538. "name": "symfony/deprecation-contracts",
  5539. "version": "v2.5.2",
  5540. "source": {
  5541. "type": "git",
  5542. "url": "https://github.com/symfony/deprecation-contracts.git",
  5543. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
  5544. },
  5545. "dist": {
  5546. "type": "zip",
  5547. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  5548. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  5549. "shasum": "",
  5550. "mirrors": [
  5551. {
  5552. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5553. "preferred": true
  5554. }
  5555. ]
  5556. },
  5557. "require": {
  5558. "php": ">=7.1"
  5559. },
  5560. "type": "library",
  5561. "extra": {
  5562. "branch-alias": {
  5563. "dev-main": "2.5-dev"
  5564. },
  5565. "thanks": {
  5566. "name": "symfony/contracts",
  5567. "url": "https://github.com/symfony/contracts"
  5568. }
  5569. },
  5570. "autoload": {
  5571. "files": [
  5572. "function.php"
  5573. ]
  5574. },
  5575. "notification-url": "https://packagist.org/downloads/",
  5576. "license": [
  5577. "MIT"
  5578. ],
  5579. "authors": [
  5580. {
  5581. "name": "Nicolas Grekas",
  5582. "email": "p@tchwork.com"
  5583. },
  5584. {
  5585. "name": "Symfony Community",
  5586. "homepage": "https://symfony.com/contributors"
  5587. }
  5588. ],
  5589. "description": "A generic function and convention to trigger deprecation notices",
  5590. "homepage": "https://symfony.com",
  5591. "support": {
  5592. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.2"
  5593. },
  5594. "funding": [
  5595. {
  5596. "url": "https://symfony.com/sponsor",
  5597. "type": "custom"
  5598. },
  5599. {
  5600. "url": "https://github.com/fabpot",
  5601. "type": "github"
  5602. },
  5603. {
  5604. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5605. "type": "tidelift"
  5606. }
  5607. ],
  5608. "time": "2022-01-02T09:53:40+00:00"
  5609. },
  5610. {
  5611. "name": "symfony/error-handler",
  5612. "version": "v5.4.29",
  5613. "source": {
  5614. "type": "git",
  5615. "url": "https://github.com/symfony/error-handler.git",
  5616. "reference": "328c6fcfd2f90b64c16efaf0ea67a311d672f078"
  5617. },
  5618. "dist": {
  5619. "type": "zip",
  5620. "url": "https://api.github.com/repos/symfony/error-handler/zipball/328c6fcfd2f90b64c16efaf0ea67a311d672f078",
  5621. "reference": "328c6fcfd2f90b64c16efaf0ea67a311d672f078",
  5622. "shasum": "",
  5623. "mirrors": [
  5624. {
  5625. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5626. "preferred": true
  5627. }
  5628. ]
  5629. },
  5630. "require": {
  5631. "php": ">=7.2.5",
  5632. "psr/log": "^1|^2|^3",
  5633. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  5634. },
  5635. "require-dev": {
  5636. "symfony/deprecation-contracts": "^2.1|^3",
  5637. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  5638. "symfony/serializer": "^4.4|^5.0|^6.0"
  5639. },
  5640. "bin": [
  5641. "Resources/bin/patch-type-declarations"
  5642. ],
  5643. "type": "library",
  5644. "autoload": {
  5645. "psr-4": {
  5646. "Symfony\\Component\\ErrorHandler\\": ""
  5647. },
  5648. "exclude-from-classmap": [
  5649. "/Tests/"
  5650. ]
  5651. },
  5652. "notification-url": "https://packagist.org/downloads/",
  5653. "license": [
  5654. "MIT"
  5655. ],
  5656. "authors": [
  5657. {
  5658. "name": "Fabien Potencier",
  5659. "email": "fabien@symfony.com"
  5660. },
  5661. {
  5662. "name": "Symfony Community",
  5663. "homepage": "https://symfony.com/contributors"
  5664. }
  5665. ],
  5666. "description": "Provides tools to manage errors and ease debugging PHP code",
  5667. "homepage": "https://symfony.com",
  5668. "support": {
  5669. "source": "https://github.com/symfony/error-handler/tree/v5.4.29"
  5670. },
  5671. "funding": [
  5672. {
  5673. "url": "https://symfony.com/sponsor",
  5674. "type": "custom"
  5675. },
  5676. {
  5677. "url": "https://github.com/fabpot",
  5678. "type": "github"
  5679. },
  5680. {
  5681. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5682. "type": "tidelift"
  5683. }
  5684. ],
  5685. "time": "2023-09-06T21:54:06+00:00"
  5686. },
  5687. {
  5688. "name": "symfony/event-dispatcher",
  5689. "version": "v5.4.34",
  5690. "source": {
  5691. "type": "git",
  5692. "url": "https://github.com/symfony/event-dispatcher.git",
  5693. "reference": "e3bca343efeb613f843c254e7718ef17c9bdf7a3"
  5694. },
  5695. "dist": {
  5696. "type": "zip",
  5697. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/e3bca343efeb613f843c254e7718ef17c9bdf7a3",
  5698. "reference": "e3bca343efeb613f843c254e7718ef17c9bdf7a3",
  5699. "shasum": "",
  5700. "mirrors": [
  5701. {
  5702. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5703. "preferred": true
  5704. }
  5705. ]
  5706. },
  5707. "require": {
  5708. "php": ">=7.2.5",
  5709. "symfony/deprecation-contracts": "^2.1|^3",
  5710. "symfony/event-dispatcher-contracts": "^2|^3",
  5711. "symfony/polyfill-php80": "^1.16"
  5712. },
  5713. "conflict": {
  5714. "symfony/dependency-injection": "<4.4"
  5715. },
  5716. "provide": {
  5717. "psr/event-dispatcher-implementation": "1.0",
  5718. "symfony/event-dispatcher-implementation": "2.0"
  5719. },
  5720. "require-dev": {
  5721. "psr/log": "^1|^2|^3",
  5722. "symfony/config": "^4.4|^5.0|^6.0",
  5723. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5724. "symfony/error-handler": "^4.4|^5.0|^6.0",
  5725. "symfony/expression-language": "^4.4|^5.0|^6.0",
  5726. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  5727. "symfony/service-contracts": "^1.1|^2|^3",
  5728. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  5729. },
  5730. "suggest": {
  5731. "symfony/dependency-injection": "",
  5732. "symfony/http-kernel": ""
  5733. },
  5734. "type": "library",
  5735. "autoload": {
  5736. "psr-4": {
  5737. "Symfony\\Component\\EventDispatcher\\": ""
  5738. },
  5739. "exclude-from-classmap": [
  5740. "/Tests/"
  5741. ]
  5742. },
  5743. "notification-url": "https://packagist.org/downloads/",
  5744. "license": [
  5745. "MIT"
  5746. ],
  5747. "authors": [
  5748. {
  5749. "name": "Fabien Potencier",
  5750. "email": "fabien@symfony.com"
  5751. },
  5752. {
  5753. "name": "Symfony Community",
  5754. "homepage": "https://symfony.com/contributors"
  5755. }
  5756. ],
  5757. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5758. "homepage": "https://symfony.com",
  5759. "support": {
  5760. "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.34"
  5761. },
  5762. "funding": [
  5763. {
  5764. "url": "https://symfony.com/sponsor",
  5765. "type": "custom"
  5766. },
  5767. {
  5768. "url": "https://github.com/fabpot",
  5769. "type": "github"
  5770. },
  5771. {
  5772. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5773. "type": "tidelift"
  5774. }
  5775. ],
  5776. "time": "2023-12-27T21:12:56+00:00"
  5777. },
  5778. {
  5779. "name": "symfony/event-dispatcher-contracts",
  5780. "version": "v2.5.2",
  5781. "source": {
  5782. "type": "git",
  5783. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5784. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1"
  5785. },
  5786. "dist": {
  5787. "type": "zip",
  5788. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/f98b54df6ad059855739db6fcbc2d36995283fe1",
  5789. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1",
  5790. "shasum": "",
  5791. "mirrors": [
  5792. {
  5793. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5794. "preferred": true
  5795. }
  5796. ]
  5797. },
  5798. "require": {
  5799. "php": ">=7.2.5",
  5800. "psr/event-dispatcher": "^1"
  5801. },
  5802. "suggest": {
  5803. "symfony/event-dispatcher-implementation": ""
  5804. },
  5805. "type": "library",
  5806. "extra": {
  5807. "branch-alias": {
  5808. "dev-main": "2.5-dev"
  5809. },
  5810. "thanks": {
  5811. "name": "symfony/contracts",
  5812. "url": "https://github.com/symfony/contracts"
  5813. }
  5814. },
  5815. "autoload": {
  5816. "psr-4": {
  5817. "Symfony\\Contracts\\EventDispatcher\\": ""
  5818. }
  5819. },
  5820. "notification-url": "https://packagist.org/downloads/",
  5821. "license": [
  5822. "MIT"
  5823. ],
  5824. "authors": [
  5825. {
  5826. "name": "Nicolas Grekas",
  5827. "email": "p@tchwork.com"
  5828. },
  5829. {
  5830. "name": "Symfony Community",
  5831. "homepage": "https://symfony.com/contributors"
  5832. }
  5833. ],
  5834. "description": "Generic abstractions related to dispatching event",
  5835. "homepage": "https://symfony.com",
  5836. "keywords": [
  5837. "abstractions",
  5838. "contracts",
  5839. "decoupling",
  5840. "interfaces",
  5841. "interoperability",
  5842. "standards"
  5843. ],
  5844. "support": {
  5845. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.5.2"
  5846. },
  5847. "funding": [
  5848. {
  5849. "url": "https://symfony.com/sponsor",
  5850. "type": "custom"
  5851. },
  5852. {
  5853. "url": "https://github.com/fabpot",
  5854. "type": "github"
  5855. },
  5856. {
  5857. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5858. "type": "tidelift"
  5859. }
  5860. ],
  5861. "time": "2022-01-02T09:53:40+00:00"
  5862. },
  5863. {
  5864. "name": "symfony/finder",
  5865. "version": "v5.4.27",
  5866. "source": {
  5867. "type": "git",
  5868. "url": "https://github.com/symfony/finder.git",
  5869. "reference": "ff4bce3c33451e7ec778070e45bd23f74214cd5d"
  5870. },
  5871. "dist": {
  5872. "type": "zip",
  5873. "url": "https://api.github.com/repos/symfony/finder/zipball/ff4bce3c33451e7ec778070e45bd23f74214cd5d",
  5874. "reference": "ff4bce3c33451e7ec778070e45bd23f74214cd5d",
  5875. "shasum": "",
  5876. "mirrors": [
  5877. {
  5878. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5879. "preferred": true
  5880. }
  5881. ]
  5882. },
  5883. "require": {
  5884. "php": ">=7.2.5",
  5885. "symfony/deprecation-contracts": "^2.1|^3",
  5886. "symfony/polyfill-php80": "^1.16"
  5887. },
  5888. "type": "library",
  5889. "autoload": {
  5890. "psr-4": {
  5891. "Symfony\\Component\\Finder\\": ""
  5892. },
  5893. "exclude-from-classmap": [
  5894. "/Tests/"
  5895. ]
  5896. },
  5897. "notification-url": "https://packagist.org/downloads/",
  5898. "license": [
  5899. "MIT"
  5900. ],
  5901. "authors": [
  5902. {
  5903. "name": "Fabien Potencier",
  5904. "email": "fabien@symfony.com"
  5905. },
  5906. {
  5907. "name": "Symfony Community",
  5908. "homepage": "https://symfony.com/contributors"
  5909. }
  5910. ],
  5911. "description": "Finds files and directories via an intuitive fluent interface",
  5912. "homepage": "https://symfony.com",
  5913. "support": {
  5914. "source": "https://github.com/symfony/finder/tree/v5.4.27"
  5915. },
  5916. "funding": [
  5917. {
  5918. "url": "https://symfony.com/sponsor",
  5919. "type": "custom"
  5920. },
  5921. {
  5922. "url": "https://github.com/fabpot",
  5923. "type": "github"
  5924. },
  5925. {
  5926. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5927. "type": "tidelift"
  5928. }
  5929. ],
  5930. "time": "2023-07-31T08:02:31+00:00"
  5931. },
  5932. {
  5933. "name": "symfony/http-foundation",
  5934. "version": "v5.4.34",
  5935. "source": {
  5936. "type": "git",
  5937. "url": "https://github.com/symfony/http-foundation.git",
  5938. "reference": "4da1713e88cf9c44bd4bf65f54772681222fcbec"
  5939. },
  5940. "dist": {
  5941. "type": "zip",
  5942. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/4da1713e88cf9c44bd4bf65f54772681222fcbec",
  5943. "reference": "4da1713e88cf9c44bd4bf65f54772681222fcbec",
  5944. "shasum": "",
  5945. "mirrors": [
  5946. {
  5947. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5948. "preferred": true
  5949. }
  5950. ]
  5951. },
  5952. "require": {
  5953. "php": ">=7.2.5",
  5954. "symfony/deprecation-contracts": "^2.1|^3",
  5955. "symfony/polyfill-mbstring": "~1.1",
  5956. "symfony/polyfill-php80": "^1.16"
  5957. },
  5958. "require-dev": {
  5959. "predis/predis": "~1.0",
  5960. "symfony/cache": "^4.4|^5.0|^6.0",
  5961. "symfony/dependency-injection": "^5.4|^6.0",
  5962. "symfony/expression-language": "^4.4|^5.0|^6.0",
  5963. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  5964. "symfony/mime": "^4.4|^5.0|^6.0",
  5965. "symfony/rate-limiter": "^5.2|^6.0"
  5966. },
  5967. "suggest": {
  5968. "symfony/mime": "To use the file extension guesser"
  5969. },
  5970. "type": "library",
  5971. "autoload": {
  5972. "psr-4": {
  5973. "Symfony\\Component\\HttpFoundation\\": ""
  5974. },
  5975. "exclude-from-classmap": [
  5976. "/Tests/"
  5977. ]
  5978. },
  5979. "notification-url": "https://packagist.org/downloads/",
  5980. "license": [
  5981. "MIT"
  5982. ],
  5983. "authors": [
  5984. {
  5985. "name": "Fabien Potencier",
  5986. "email": "fabien@symfony.com"
  5987. },
  5988. {
  5989. "name": "Symfony Community",
  5990. "homepage": "https://symfony.com/contributors"
  5991. }
  5992. ],
  5993. "description": "Defines an object-oriented layer for the HTTP specification",
  5994. "homepage": "https://symfony.com",
  5995. "support": {
  5996. "source": "https://github.com/symfony/http-foundation/tree/v5.4.34"
  5997. },
  5998. "funding": [
  5999. {
  6000. "url": "https://symfony.com/sponsor",
  6001. "type": "custom"
  6002. },
  6003. {
  6004. "url": "https://github.com/fabpot",
  6005. "type": "github"
  6006. },
  6007. {
  6008. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6009. "type": "tidelift"
  6010. }
  6011. ],
  6012. "time": "2023-12-27T11:45:35+00:00"
  6013. },
  6014. {
  6015. "name": "symfony/http-kernel",
  6016. "version": "v5.4.34",
  6017. "source": {
  6018. "type": "git",
  6019. "url": "https://github.com/symfony/http-kernel.git",
  6020. "reference": "f2b00c66d1c7ef12f3fc625af2a0bc5d5857db7b"
  6021. },
  6022. "dist": {
  6023. "type": "zip",
  6024. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/f2b00c66d1c7ef12f3fc625af2a0bc5d5857db7b",
  6025. "reference": "f2b00c66d1c7ef12f3fc625af2a0bc5d5857db7b",
  6026. "shasum": "",
  6027. "mirrors": [
  6028. {
  6029. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6030. "preferred": true
  6031. }
  6032. ]
  6033. },
  6034. "require": {
  6035. "php": ">=7.2.5",
  6036. "psr/log": "^1|^2",
  6037. "symfony/deprecation-contracts": "^2.1|^3",
  6038. "symfony/error-handler": "^4.4|^5.0|^6.0",
  6039. "symfony/event-dispatcher": "^5.0|^6.0",
  6040. "symfony/http-foundation": "^5.4.21|^6.2.7",
  6041. "symfony/polyfill-ctype": "^1.8",
  6042. "symfony/polyfill-php73": "^1.9",
  6043. "symfony/polyfill-php80": "^1.16"
  6044. },
  6045. "conflict": {
  6046. "symfony/browser-kit": "<5.4",
  6047. "symfony/cache": "<5.0",
  6048. "symfony/config": "<5.0",
  6049. "symfony/console": "<4.4",
  6050. "symfony/dependency-injection": "<5.3",
  6051. "symfony/doctrine-bridge": "<5.0",
  6052. "symfony/form": "<5.0",
  6053. "symfony/http-client": "<5.0",
  6054. "symfony/mailer": "<5.0",
  6055. "symfony/messenger": "<5.0",
  6056. "symfony/translation": "<5.0",
  6057. "symfony/twig-bridge": "<5.0",
  6058. "symfony/validator": "<5.0",
  6059. "twig/twig": "<2.13"
  6060. },
  6061. "provide": {
  6062. "psr/log-implementation": "1.0|2.0"
  6063. },
  6064. "require-dev": {
  6065. "psr/cache": "^1.0|^2.0|^3.0",
  6066. "symfony/browser-kit": "^5.4|^6.0",
  6067. "symfony/config": "^5.0|^6.0",
  6068. "symfony/console": "^4.4|^5.0|^6.0",
  6069. "symfony/css-selector": "^4.4|^5.0|^6.0",
  6070. "symfony/dependency-injection": "^5.3|^6.0",
  6071. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  6072. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6073. "symfony/finder": "^4.4|^5.0|^6.0",
  6074. "symfony/http-client-contracts": "^1.1|^2|^3",
  6075. "symfony/process": "^4.4|^5.0|^6.0",
  6076. "symfony/routing": "^4.4|^5.0|^6.0",
  6077. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  6078. "symfony/translation": "^4.4|^5.0|^6.0",
  6079. "symfony/translation-contracts": "^1.1|^2|^3",
  6080. "twig/twig": "^2.13|^3.0.4"
  6081. },
  6082. "suggest": {
  6083. "symfony/browser-kit": "",
  6084. "symfony/config": "",
  6085. "symfony/console": "",
  6086. "symfony/dependency-injection": ""
  6087. },
  6088. "type": "library",
  6089. "autoload": {
  6090. "psr-4": {
  6091. "Symfony\\Component\\HttpKernel\\": ""
  6092. },
  6093. "exclude-from-classmap": [
  6094. "/Tests/"
  6095. ]
  6096. },
  6097. "notification-url": "https://packagist.org/downloads/",
  6098. "license": [
  6099. "MIT"
  6100. ],
  6101. "authors": [
  6102. {
  6103. "name": "Fabien Potencier",
  6104. "email": "fabien@symfony.com"
  6105. },
  6106. {
  6107. "name": "Symfony Community",
  6108. "homepage": "https://symfony.com/contributors"
  6109. }
  6110. ],
  6111. "description": "Provides a structured process for converting a Request into a Response",
  6112. "homepage": "https://symfony.com",
  6113. "support": {
  6114. "source": "https://github.com/symfony/http-kernel/tree/v5.4.34"
  6115. },
  6116. "funding": [
  6117. {
  6118. "url": "https://symfony.com/sponsor",
  6119. "type": "custom"
  6120. },
  6121. {
  6122. "url": "https://github.com/fabpot",
  6123. "type": "github"
  6124. },
  6125. {
  6126. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6127. "type": "tidelift"
  6128. }
  6129. ],
  6130. "time": "2023-12-30T13:02:02+00:00"
  6131. },
  6132. {
  6133. "name": "symfony/mime",
  6134. "version": "v5.4.26",
  6135. "source": {
  6136. "type": "git",
  6137. "url": "https://github.com/symfony/mime.git",
  6138. "reference": "2ea06dfeee20000a319d8407cea1d47533d5a9d2"
  6139. },
  6140. "dist": {
  6141. "type": "zip",
  6142. "url": "https://api.github.com/repos/symfony/mime/zipball/2ea06dfeee20000a319d8407cea1d47533d5a9d2",
  6143. "reference": "2ea06dfeee20000a319d8407cea1d47533d5a9d2",
  6144. "shasum": "",
  6145. "mirrors": [
  6146. {
  6147. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6148. "preferred": true
  6149. }
  6150. ]
  6151. },
  6152. "require": {
  6153. "php": ">=7.2.5",
  6154. "symfony/deprecation-contracts": "^2.1|^3",
  6155. "symfony/polyfill-intl-idn": "^1.10",
  6156. "symfony/polyfill-mbstring": "^1.0",
  6157. "symfony/polyfill-php80": "^1.16"
  6158. },
  6159. "conflict": {
  6160. "egulias/email-validator": "~3.0.0",
  6161. "phpdocumentor/reflection-docblock": "<3.2.2",
  6162. "phpdocumentor/type-resolver": "<1.4.0",
  6163. "symfony/mailer": "<4.4",
  6164. "symfony/serializer": "<5.4.26|>=6,<6.2.13|>=6.3,<6.3.2"
  6165. },
  6166. "require-dev": {
  6167. "egulias/email-validator": "^2.1.10|^3.1|^4",
  6168. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6169. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6170. "symfony/property-access": "^4.4|^5.1|^6.0",
  6171. "symfony/property-info": "^4.4|^5.1|^6.0",
  6172. "symfony/serializer": "^5.4.26|~6.2.13|^6.3.2"
  6173. },
  6174. "type": "library",
  6175. "autoload": {
  6176. "psr-4": {
  6177. "Symfony\\Component\\Mime\\": ""
  6178. },
  6179. "exclude-from-classmap": [
  6180. "/Tests/"
  6181. ]
  6182. },
  6183. "notification-url": "https://packagist.org/downloads/",
  6184. "license": [
  6185. "MIT"
  6186. ],
  6187. "authors": [
  6188. {
  6189. "name": "Fabien Potencier",
  6190. "email": "fabien@symfony.com"
  6191. },
  6192. {
  6193. "name": "Symfony Community",
  6194. "homepage": "https://symfony.com/contributors"
  6195. }
  6196. ],
  6197. "description": "Allows manipulating MIME messages",
  6198. "homepage": "https://symfony.com",
  6199. "keywords": [
  6200. "mime",
  6201. "mime-type"
  6202. ],
  6203. "support": {
  6204. "source": "https://github.com/symfony/mime/tree/v5.4.26"
  6205. },
  6206. "funding": [
  6207. {
  6208. "url": "https://symfony.com/sponsor",
  6209. "type": "custom"
  6210. },
  6211. {
  6212. "url": "https://github.com/fabpot",
  6213. "type": "github"
  6214. },
  6215. {
  6216. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6217. "type": "tidelift"
  6218. }
  6219. ],
  6220. "time": "2023-07-27T06:29:31+00:00"
  6221. },
  6222. {
  6223. "name": "symfony/polyfill-ctype",
  6224. "version": "v1.28.0",
  6225. "source": {
  6226. "type": "git",
  6227. "url": "https://github.com/symfony/polyfill-ctype.git",
  6228. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb"
  6229. },
  6230. "dist": {
  6231. "type": "zip",
  6232. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
  6233. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
  6234. "shasum": "",
  6235. "mirrors": [
  6236. {
  6237. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6238. "preferred": true
  6239. }
  6240. ]
  6241. },
  6242. "require": {
  6243. "php": ">=7.1"
  6244. },
  6245. "provide": {
  6246. "ext-ctype": "*"
  6247. },
  6248. "suggest": {
  6249. "ext-ctype": "For best performance"
  6250. },
  6251. "type": "library",
  6252. "extra": {
  6253. "branch-alias": {
  6254. "dev-main": "1.28-dev"
  6255. },
  6256. "thanks": {
  6257. "name": "symfony/polyfill",
  6258. "url": "https://github.com/symfony/polyfill"
  6259. }
  6260. },
  6261. "autoload": {
  6262. "files": [
  6263. "bootstrap.php"
  6264. ],
  6265. "psr-4": {
  6266. "Symfony\\Polyfill\\Ctype\\": ""
  6267. }
  6268. },
  6269. "notification-url": "https://packagist.org/downloads/",
  6270. "license": [
  6271. "MIT"
  6272. ],
  6273. "authors": [
  6274. {
  6275. "name": "Gert de Pagter",
  6276. "email": "BackEndTea@gmail.com"
  6277. },
  6278. {
  6279. "name": "Symfony Community",
  6280. "homepage": "https://symfony.com/contributors"
  6281. }
  6282. ],
  6283. "description": "Symfony polyfill for ctype functions",
  6284. "homepage": "https://symfony.com",
  6285. "keywords": [
  6286. "compatibility",
  6287. "ctype",
  6288. "polyfill",
  6289. "portable"
  6290. ],
  6291. "support": {
  6292. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.28.0"
  6293. },
  6294. "funding": [
  6295. {
  6296. "url": "https://symfony.com/sponsor",
  6297. "type": "custom"
  6298. },
  6299. {
  6300. "url": "https://github.com/fabpot",
  6301. "type": "github"
  6302. },
  6303. {
  6304. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6305. "type": "tidelift"
  6306. }
  6307. ],
  6308. "time": "2023-01-26T09:26:14+00:00"
  6309. },
  6310. {
  6311. "name": "symfony/polyfill-iconv",
  6312. "version": "v1.30.0",
  6313. "source": {
  6314. "type": "git",
  6315. "url": "https://github.com/symfony/polyfill-iconv.git",
  6316. "reference": "c027e6a3c6aee334663ec21f5852e89738abc805"
  6317. },
  6318. "dist": {
  6319. "type": "zip",
  6320. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c027e6a3c6aee334663ec21f5852e89738abc805",
  6321. "reference": "c027e6a3c6aee334663ec21f5852e89738abc805",
  6322. "shasum": ""
  6323. },
  6324. "require": {
  6325. "php": ">=7.1"
  6326. },
  6327. "provide": {
  6328. "ext-iconv": "*"
  6329. },
  6330. "suggest": {
  6331. "ext-iconv": "For best performance"
  6332. },
  6333. "type": "library",
  6334. "extra": {
  6335. "thanks": {
  6336. "name": "symfony/polyfill",
  6337. "url": "https://github.com/symfony/polyfill"
  6338. }
  6339. },
  6340. "autoload": {
  6341. "files": [
  6342. "bootstrap.php"
  6343. ],
  6344. "psr-4": {
  6345. "Symfony\\Polyfill\\Iconv\\": ""
  6346. }
  6347. },
  6348. "notification-url": "https://packagist.org/downloads/",
  6349. "license": [
  6350. "MIT"
  6351. ],
  6352. "authors": [
  6353. {
  6354. "name": "Nicolas Grekas",
  6355. "email": "p@tchwork.com"
  6356. },
  6357. {
  6358. "name": "Symfony Community",
  6359. "homepage": "https://symfony.com/contributors"
  6360. }
  6361. ],
  6362. "description": "Symfony polyfill for the Iconv extension",
  6363. "homepage": "https://symfony.com",
  6364. "keywords": [
  6365. "compatibility",
  6366. "iconv",
  6367. "polyfill",
  6368. "portable",
  6369. "shim"
  6370. ],
  6371. "support": {
  6372. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.30.0"
  6373. },
  6374. "funding": [
  6375. {
  6376. "url": "https://symfony.com/sponsor",
  6377. "type": "custom"
  6378. },
  6379. {
  6380. "url": "https://github.com/fabpot",
  6381. "type": "github"
  6382. },
  6383. {
  6384. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6385. "type": "tidelift"
  6386. }
  6387. ],
  6388. "time": "2024-05-31T15:07:36+00:00"
  6389. },
  6390. {
  6391. "name": "symfony/polyfill-intl-grapheme",
  6392. "version": "v1.28.0",
  6393. "source": {
  6394. "type": "git",
  6395. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6396. "reference": "875e90aeea2777b6f135677f618529449334a612"
  6397. },
  6398. "dist": {
  6399. "type": "zip",
  6400. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/875e90aeea2777b6f135677f618529449334a612",
  6401. "reference": "875e90aeea2777b6f135677f618529449334a612",
  6402. "shasum": "",
  6403. "mirrors": [
  6404. {
  6405. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6406. "preferred": true
  6407. }
  6408. ]
  6409. },
  6410. "require": {
  6411. "php": ">=7.1"
  6412. },
  6413. "suggest": {
  6414. "ext-intl": "For best performance"
  6415. },
  6416. "type": "library",
  6417. "extra": {
  6418. "branch-alias": {
  6419. "dev-main": "1.28-dev"
  6420. },
  6421. "thanks": {
  6422. "name": "symfony/polyfill",
  6423. "url": "https://github.com/symfony/polyfill"
  6424. }
  6425. },
  6426. "autoload": {
  6427. "files": [
  6428. "bootstrap.php"
  6429. ],
  6430. "psr-4": {
  6431. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6432. }
  6433. },
  6434. "notification-url": "https://packagist.org/downloads/",
  6435. "license": [
  6436. "MIT"
  6437. ],
  6438. "authors": [
  6439. {
  6440. "name": "Nicolas Grekas",
  6441. "email": "p@tchwork.com"
  6442. },
  6443. {
  6444. "name": "Symfony Community",
  6445. "homepage": "https://symfony.com/contributors"
  6446. }
  6447. ],
  6448. "description": "Symfony polyfill for intl's grapheme_* functions",
  6449. "homepage": "https://symfony.com",
  6450. "keywords": [
  6451. "compatibility",
  6452. "grapheme",
  6453. "intl",
  6454. "polyfill",
  6455. "portable",
  6456. "shim"
  6457. ],
  6458. "support": {
  6459. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.28.0"
  6460. },
  6461. "funding": [
  6462. {
  6463. "url": "https://symfony.com/sponsor",
  6464. "type": "custom"
  6465. },
  6466. {
  6467. "url": "https://github.com/fabpot",
  6468. "type": "github"
  6469. },
  6470. {
  6471. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6472. "type": "tidelift"
  6473. }
  6474. ],
  6475. "time": "2023-01-26T09:26:14+00:00"
  6476. },
  6477. {
  6478. "name": "symfony/polyfill-intl-idn",
  6479. "version": "v1.30.0",
  6480. "source": {
  6481. "type": "git",
  6482. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6483. "reference": "a6e83bdeb3c84391d1dfe16f42e40727ce524a5c"
  6484. },
  6485. "dist": {
  6486. "type": "zip",
  6487. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/a6e83bdeb3c84391d1dfe16f42e40727ce524a5c",
  6488. "reference": "a6e83bdeb3c84391d1dfe16f42e40727ce524a5c",
  6489. "shasum": ""
  6490. },
  6491. "require": {
  6492. "php": ">=7.1",
  6493. "symfony/polyfill-intl-normalizer": "^1.10",
  6494. "symfony/polyfill-php72": "^1.10"
  6495. },
  6496. "suggest": {
  6497. "ext-intl": "For best performance"
  6498. },
  6499. "type": "library",
  6500. "extra": {
  6501. "thanks": {
  6502. "name": "symfony/polyfill",
  6503. "url": "https://github.com/symfony/polyfill"
  6504. }
  6505. },
  6506. "autoload": {
  6507. "files": [
  6508. "bootstrap.php"
  6509. ],
  6510. "psr-4": {
  6511. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6512. }
  6513. },
  6514. "notification-url": "https://packagist.org/downloads/",
  6515. "license": [
  6516. "MIT"
  6517. ],
  6518. "authors": [
  6519. {
  6520. "name": "Laurent Bassin",
  6521. "email": "laurent@bassin.info"
  6522. },
  6523. {
  6524. "name": "Trevor Rowbotham",
  6525. "email": "trevor.rowbotham@pm.me"
  6526. },
  6527. {
  6528. "name": "Symfony Community",
  6529. "homepage": "https://symfony.com/contributors"
  6530. }
  6531. ],
  6532. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6533. "homepage": "https://symfony.com",
  6534. "keywords": [
  6535. "compatibility",
  6536. "idn",
  6537. "intl",
  6538. "polyfill",
  6539. "portable",
  6540. "shim"
  6541. ],
  6542. "support": {
  6543. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.30.0"
  6544. },
  6545. "funding": [
  6546. {
  6547. "url": "https://symfony.com/sponsor",
  6548. "type": "custom"
  6549. },
  6550. {
  6551. "url": "https://github.com/fabpot",
  6552. "type": "github"
  6553. },
  6554. {
  6555. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6556. "type": "tidelift"
  6557. }
  6558. ],
  6559. "time": "2024-05-31T15:07:36+00:00"
  6560. },
  6561. {
  6562. "name": "symfony/polyfill-intl-normalizer",
  6563. "version": "v1.30.0",
  6564. "source": {
  6565. "type": "git",
  6566. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6567. "reference": "a95281b0be0d9ab48050ebd988b967875cdb9fdb"
  6568. },
  6569. "dist": {
  6570. "type": "zip",
  6571. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/a95281b0be0d9ab48050ebd988b967875cdb9fdb",
  6572. "reference": "a95281b0be0d9ab48050ebd988b967875cdb9fdb",
  6573. "shasum": ""
  6574. },
  6575. "require": {
  6576. "php": ">=7.1"
  6577. },
  6578. "suggest": {
  6579. "ext-intl": "For best performance"
  6580. },
  6581. "type": "library",
  6582. "extra": {
  6583. "thanks": {
  6584. "name": "symfony/polyfill",
  6585. "url": "https://github.com/symfony/polyfill"
  6586. }
  6587. },
  6588. "autoload": {
  6589. "files": [
  6590. "bootstrap.php"
  6591. ],
  6592. "psr-4": {
  6593. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6594. },
  6595. "classmap": [
  6596. "Resources/stubs"
  6597. ]
  6598. },
  6599. "notification-url": "https://packagist.org/downloads/",
  6600. "license": [
  6601. "MIT"
  6602. ],
  6603. "authors": [
  6604. {
  6605. "name": "Nicolas Grekas",
  6606. "email": "p@tchwork.com"
  6607. },
  6608. {
  6609. "name": "Symfony Community",
  6610. "homepage": "https://symfony.com/contributors"
  6611. }
  6612. ],
  6613. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6614. "homepage": "https://symfony.com",
  6615. "keywords": [
  6616. "compatibility",
  6617. "intl",
  6618. "normalizer",
  6619. "polyfill",
  6620. "portable",
  6621. "shim"
  6622. ],
  6623. "support": {
  6624. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.30.0"
  6625. },
  6626. "funding": [
  6627. {
  6628. "url": "https://symfony.com/sponsor",
  6629. "type": "custom"
  6630. },
  6631. {
  6632. "url": "https://github.com/fabpot",
  6633. "type": "github"
  6634. },
  6635. {
  6636. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6637. "type": "tidelift"
  6638. }
  6639. ],
  6640. "time": "2024-05-31T15:07:36+00:00"
  6641. },
  6642. {
  6643. "name": "symfony/polyfill-mbstring",
  6644. "version": "v1.30.0",
  6645. "source": {
  6646. "type": "git",
  6647. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6648. "reference": "fd22ab50000ef01661e2a31d850ebaa297f8e03c"
  6649. },
  6650. "dist": {
  6651. "type": "zip",
  6652. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fd22ab50000ef01661e2a31d850ebaa297f8e03c",
  6653. "reference": "fd22ab50000ef01661e2a31d850ebaa297f8e03c",
  6654. "shasum": ""
  6655. },
  6656. "require": {
  6657. "php": ">=7.1"
  6658. },
  6659. "provide": {
  6660. "ext-mbstring": "*"
  6661. },
  6662. "suggest": {
  6663. "ext-mbstring": "For best performance"
  6664. },
  6665. "type": "library",
  6666. "extra": {
  6667. "thanks": {
  6668. "name": "symfony/polyfill",
  6669. "url": "https://github.com/symfony/polyfill"
  6670. }
  6671. },
  6672. "autoload": {
  6673. "files": [
  6674. "bootstrap.php"
  6675. ],
  6676. "psr-4": {
  6677. "Symfony\\Polyfill\\Mbstring\\": ""
  6678. }
  6679. },
  6680. "notification-url": "https://packagist.org/downloads/",
  6681. "license": [
  6682. "MIT"
  6683. ],
  6684. "authors": [
  6685. {
  6686. "name": "Nicolas Grekas",
  6687. "email": "p@tchwork.com"
  6688. },
  6689. {
  6690. "name": "Symfony Community",
  6691. "homepage": "https://symfony.com/contributors"
  6692. }
  6693. ],
  6694. "description": "Symfony polyfill for the Mbstring extension",
  6695. "homepage": "https://symfony.com",
  6696. "keywords": [
  6697. "compatibility",
  6698. "mbstring",
  6699. "polyfill",
  6700. "portable",
  6701. "shim"
  6702. ],
  6703. "support": {
  6704. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.30.0"
  6705. },
  6706. "funding": [
  6707. {
  6708. "url": "https://symfony.com/sponsor",
  6709. "type": "custom"
  6710. },
  6711. {
  6712. "url": "https://github.com/fabpot",
  6713. "type": "github"
  6714. },
  6715. {
  6716. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6717. "type": "tidelift"
  6718. }
  6719. ],
  6720. "time": "2024-06-19T12:30:46+00:00"
  6721. },
  6722. {
  6723. "name": "symfony/polyfill-php72",
  6724. "version": "v1.30.0",
  6725. "source": {
  6726. "type": "git",
  6727. "url": "https://github.com/symfony/polyfill-php72.git",
  6728. "reference": "10112722600777e02d2745716b70c5db4ca70442"
  6729. },
  6730. "dist": {
  6731. "type": "zip",
  6732. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/10112722600777e02d2745716b70c5db4ca70442",
  6733. "reference": "10112722600777e02d2745716b70c5db4ca70442",
  6734. "shasum": ""
  6735. },
  6736. "require": {
  6737. "php": ">=7.1"
  6738. },
  6739. "type": "library",
  6740. "extra": {
  6741. "thanks": {
  6742. "name": "symfony/polyfill",
  6743. "url": "https://github.com/symfony/polyfill"
  6744. }
  6745. },
  6746. "autoload": {
  6747. "files": [
  6748. "bootstrap.php"
  6749. ],
  6750. "psr-4": {
  6751. "Symfony\\Polyfill\\Php72\\": ""
  6752. }
  6753. },
  6754. "notification-url": "https://packagist.org/downloads/",
  6755. "license": [
  6756. "MIT"
  6757. ],
  6758. "authors": [
  6759. {
  6760. "name": "Nicolas Grekas",
  6761. "email": "p@tchwork.com"
  6762. },
  6763. {
  6764. "name": "Symfony Community",
  6765. "homepage": "https://symfony.com/contributors"
  6766. }
  6767. ],
  6768. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  6769. "homepage": "https://symfony.com",
  6770. "keywords": [
  6771. "compatibility",
  6772. "polyfill",
  6773. "portable",
  6774. "shim"
  6775. ],
  6776. "support": {
  6777. "source": "https://github.com/symfony/polyfill-php72/tree/v1.30.0"
  6778. },
  6779. "funding": [
  6780. {
  6781. "url": "https://symfony.com/sponsor",
  6782. "type": "custom"
  6783. },
  6784. {
  6785. "url": "https://github.com/fabpot",
  6786. "type": "github"
  6787. },
  6788. {
  6789. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6790. "type": "tidelift"
  6791. }
  6792. ],
  6793. "time": "2024-06-19T12:30:46+00:00"
  6794. },
  6795. {
  6796. "name": "symfony/polyfill-php73",
  6797. "version": "v1.28.0",
  6798. "source": {
  6799. "type": "git",
  6800. "url": "https://github.com/symfony/polyfill-php73.git",
  6801. "reference": "fe2f306d1d9d346a7fee353d0d5012e401e984b5"
  6802. },
  6803. "dist": {
  6804. "type": "zip",
  6805. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fe2f306d1d9d346a7fee353d0d5012e401e984b5",
  6806. "reference": "fe2f306d1d9d346a7fee353d0d5012e401e984b5",
  6807. "shasum": "",
  6808. "mirrors": [
  6809. {
  6810. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6811. "preferred": true
  6812. }
  6813. ]
  6814. },
  6815. "require": {
  6816. "php": ">=7.1"
  6817. },
  6818. "type": "library",
  6819. "extra": {
  6820. "branch-alias": {
  6821. "dev-main": "1.28-dev"
  6822. },
  6823. "thanks": {
  6824. "name": "symfony/polyfill",
  6825. "url": "https://github.com/symfony/polyfill"
  6826. }
  6827. },
  6828. "autoload": {
  6829. "files": [
  6830. "bootstrap.php"
  6831. ],
  6832. "psr-4": {
  6833. "Symfony\\Polyfill\\Php73\\": ""
  6834. },
  6835. "classmap": [
  6836. "Resources/stubs"
  6837. ]
  6838. },
  6839. "notification-url": "https://packagist.org/downloads/",
  6840. "license": [
  6841. "MIT"
  6842. ],
  6843. "authors": [
  6844. {
  6845. "name": "Nicolas Grekas",
  6846. "email": "p@tchwork.com"
  6847. },
  6848. {
  6849. "name": "Symfony Community",
  6850. "homepage": "https://symfony.com/contributors"
  6851. }
  6852. ],
  6853. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  6854. "homepage": "https://symfony.com",
  6855. "keywords": [
  6856. "compatibility",
  6857. "polyfill",
  6858. "portable",
  6859. "shim"
  6860. ],
  6861. "support": {
  6862. "source": "https://github.com/symfony/polyfill-php73/tree/v1.28.0"
  6863. },
  6864. "funding": [
  6865. {
  6866. "url": "https://symfony.com/sponsor",
  6867. "type": "custom"
  6868. },
  6869. {
  6870. "url": "https://github.com/fabpot",
  6871. "type": "github"
  6872. },
  6873. {
  6874. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6875. "type": "tidelift"
  6876. }
  6877. ],
  6878. "time": "2023-01-26T09:26:14+00:00"
  6879. },
  6880. {
  6881. "name": "symfony/polyfill-php80",
  6882. "version": "v1.28.0",
  6883. "source": {
  6884. "type": "git",
  6885. "url": "https://github.com/symfony/polyfill-php80.git",
  6886. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5"
  6887. },
  6888. "dist": {
  6889. "type": "zip",
  6890. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  6891. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  6892. "shasum": "",
  6893. "mirrors": [
  6894. {
  6895. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6896. "preferred": true
  6897. }
  6898. ]
  6899. },
  6900. "require": {
  6901. "php": ">=7.1"
  6902. },
  6903. "type": "library",
  6904. "extra": {
  6905. "branch-alias": {
  6906. "dev-main": "1.28-dev"
  6907. },
  6908. "thanks": {
  6909. "name": "symfony/polyfill",
  6910. "url": "https://github.com/symfony/polyfill"
  6911. }
  6912. },
  6913. "autoload": {
  6914. "files": [
  6915. "bootstrap.php"
  6916. ],
  6917. "psr-4": {
  6918. "Symfony\\Polyfill\\Php80\\": ""
  6919. },
  6920. "classmap": [
  6921. "Resources/stubs"
  6922. ]
  6923. },
  6924. "notification-url": "https://packagist.org/downloads/",
  6925. "license": [
  6926. "MIT"
  6927. ],
  6928. "authors": [
  6929. {
  6930. "name": "Ion Bazan",
  6931. "email": "ion.bazan@gmail.com"
  6932. },
  6933. {
  6934. "name": "Nicolas Grekas",
  6935. "email": "p@tchwork.com"
  6936. },
  6937. {
  6938. "name": "Symfony Community",
  6939. "homepage": "https://symfony.com/contributors"
  6940. }
  6941. ],
  6942. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6943. "homepage": "https://symfony.com",
  6944. "keywords": [
  6945. "compatibility",
  6946. "polyfill",
  6947. "portable",
  6948. "shim"
  6949. ],
  6950. "support": {
  6951. "source": "https://github.com/symfony/polyfill-php80/tree/v1.28.0"
  6952. },
  6953. "funding": [
  6954. {
  6955. "url": "https://symfony.com/sponsor",
  6956. "type": "custom"
  6957. },
  6958. {
  6959. "url": "https://github.com/fabpot",
  6960. "type": "github"
  6961. },
  6962. {
  6963. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6964. "type": "tidelift"
  6965. }
  6966. ],
  6967. "time": "2023-01-26T09:26:14+00:00"
  6968. },
  6969. {
  6970. "name": "symfony/polyfill-php81",
  6971. "version": "v1.28.0",
  6972. "source": {
  6973. "type": "git",
  6974. "url": "https://github.com/symfony/polyfill-php81.git",
  6975. "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b"
  6976. },
  6977. "dist": {
  6978. "type": "zip",
  6979. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/7581cd600fa9fd681b797d00b02f068e2f13263b",
  6980. "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b",
  6981. "shasum": "",
  6982. "mirrors": [
  6983. {
  6984. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6985. "preferred": true
  6986. }
  6987. ]
  6988. },
  6989. "require": {
  6990. "php": ">=7.1"
  6991. },
  6992. "type": "library",
  6993. "extra": {
  6994. "branch-alias": {
  6995. "dev-main": "1.28-dev"
  6996. },
  6997. "thanks": {
  6998. "name": "symfony/polyfill",
  6999. "url": "https://github.com/symfony/polyfill"
  7000. }
  7001. },
  7002. "autoload": {
  7003. "files": [
  7004. "bootstrap.php"
  7005. ],
  7006. "psr-4": {
  7007. "Symfony\\Polyfill\\Php81\\": ""
  7008. },
  7009. "classmap": [
  7010. "Resources/stubs"
  7011. ]
  7012. },
  7013. "notification-url": "https://packagist.org/downloads/",
  7014. "license": [
  7015. "MIT"
  7016. ],
  7017. "authors": [
  7018. {
  7019. "name": "Nicolas Grekas",
  7020. "email": "p@tchwork.com"
  7021. },
  7022. {
  7023. "name": "Symfony Community",
  7024. "homepage": "https://symfony.com/contributors"
  7025. }
  7026. ],
  7027. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  7028. "homepage": "https://symfony.com",
  7029. "keywords": [
  7030. "compatibility",
  7031. "polyfill",
  7032. "portable",
  7033. "shim"
  7034. ],
  7035. "support": {
  7036. "source": "https://github.com/symfony/polyfill-php81/tree/v1.28.0"
  7037. },
  7038. "funding": [
  7039. {
  7040. "url": "https://symfony.com/sponsor",
  7041. "type": "custom"
  7042. },
  7043. {
  7044. "url": "https://github.com/fabpot",
  7045. "type": "github"
  7046. },
  7047. {
  7048. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7049. "type": "tidelift"
  7050. }
  7051. ],
  7052. "time": "2023-01-26T09:26:14+00:00"
  7053. },
  7054. {
  7055. "name": "symfony/process",
  7056. "version": "v5.4.34",
  7057. "source": {
  7058. "type": "git",
  7059. "url": "https://github.com/symfony/process.git",
  7060. "reference": "8fa22178dfc368911dbd513b431cd9b06f9afe7a"
  7061. },
  7062. "dist": {
  7063. "type": "zip",
  7064. "url": "https://api.github.com/repos/symfony/process/zipball/8fa22178dfc368911dbd513b431cd9b06f9afe7a",
  7065. "reference": "8fa22178dfc368911dbd513b431cd9b06f9afe7a",
  7066. "shasum": "",
  7067. "mirrors": [
  7068. {
  7069. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7070. "preferred": true
  7071. }
  7072. ]
  7073. },
  7074. "require": {
  7075. "php": ">=7.2.5",
  7076. "symfony/polyfill-php80": "^1.16"
  7077. },
  7078. "type": "library",
  7079. "autoload": {
  7080. "psr-4": {
  7081. "Symfony\\Component\\Process\\": ""
  7082. },
  7083. "exclude-from-classmap": [
  7084. "/Tests/"
  7085. ]
  7086. },
  7087. "notification-url": "https://packagist.org/downloads/",
  7088. "license": [
  7089. "MIT"
  7090. ],
  7091. "authors": [
  7092. {
  7093. "name": "Fabien Potencier",
  7094. "email": "fabien@symfony.com"
  7095. },
  7096. {
  7097. "name": "Symfony Community",
  7098. "homepage": "https://symfony.com/contributors"
  7099. }
  7100. ],
  7101. "description": "Executes commands in sub-processes",
  7102. "homepage": "https://symfony.com",
  7103. "support": {
  7104. "source": "https://github.com/symfony/process/tree/v5.4.34"
  7105. },
  7106. "funding": [
  7107. {
  7108. "url": "https://symfony.com/sponsor",
  7109. "type": "custom"
  7110. },
  7111. {
  7112. "url": "https://github.com/fabpot",
  7113. "type": "github"
  7114. },
  7115. {
  7116. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7117. "type": "tidelift"
  7118. }
  7119. ],
  7120. "time": "2023-12-02T08:41:43+00:00"
  7121. },
  7122. {
  7123. "name": "symfony/psr-http-message-bridge",
  7124. "version": "v2.3.1",
  7125. "source": {
  7126. "type": "git",
  7127. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  7128. "reference": "581ca6067eb62640de5ff08ee1ba6850a0ee472e"
  7129. },
  7130. "dist": {
  7131. "type": "zip",
  7132. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/581ca6067eb62640de5ff08ee1ba6850a0ee472e",
  7133. "reference": "581ca6067eb62640de5ff08ee1ba6850a0ee472e",
  7134. "shasum": ""
  7135. },
  7136. "require": {
  7137. "php": ">=7.2.5",
  7138. "psr/http-message": "^1.0 || ^2.0",
  7139. "symfony/deprecation-contracts": "^2.5 || ^3.0",
  7140. "symfony/http-foundation": "^5.4 || ^6.0"
  7141. },
  7142. "require-dev": {
  7143. "nyholm/psr7": "^1.1",
  7144. "psr/log": "^1.1 || ^2 || ^3",
  7145. "symfony/browser-kit": "^5.4 || ^6.0",
  7146. "symfony/config": "^5.4 || ^6.0",
  7147. "symfony/event-dispatcher": "^5.4 || ^6.0",
  7148. "symfony/framework-bundle": "^5.4 || ^6.0",
  7149. "symfony/http-kernel": "^5.4 || ^6.0",
  7150. "symfony/phpunit-bridge": "^6.2"
  7151. },
  7152. "suggest": {
  7153. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  7154. },
  7155. "type": "symfony-bridge",
  7156. "extra": {
  7157. "branch-alias": {
  7158. "dev-main": "2.3-dev"
  7159. }
  7160. },
  7161. "autoload": {
  7162. "psr-4": {
  7163. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  7164. },
  7165. "exclude-from-classmap": [
  7166. "/Tests/"
  7167. ]
  7168. },
  7169. "notification-url": "https://packagist.org/downloads/",
  7170. "license": [
  7171. "MIT"
  7172. ],
  7173. "authors": [
  7174. {
  7175. "name": "Fabien Potencier",
  7176. "email": "fabien@symfony.com"
  7177. },
  7178. {
  7179. "name": "Symfony Community",
  7180. "homepage": "http://symfony.com/contributors"
  7181. }
  7182. ],
  7183. "description": "PSR HTTP message bridge",
  7184. "homepage": "http://symfony.com",
  7185. "keywords": [
  7186. "http",
  7187. "http-message",
  7188. "psr-17",
  7189. "psr-7"
  7190. ],
  7191. "support": {
  7192. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  7193. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.3.1"
  7194. },
  7195. "funding": [
  7196. {
  7197. "url": "https://symfony.com/sponsor",
  7198. "type": "custom"
  7199. },
  7200. {
  7201. "url": "https://github.com/fabpot",
  7202. "type": "github"
  7203. },
  7204. {
  7205. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7206. "type": "tidelift"
  7207. }
  7208. ],
  7209. "time": "2023-07-26T11:53:26+00:00"
  7210. },
  7211. {
  7212. "name": "symfony/routing",
  7213. "version": "v5.4.34",
  7214. "source": {
  7215. "type": "git",
  7216. "url": "https://github.com/symfony/routing.git",
  7217. "reference": "f1d08ed59d7718845bb70acd7480fa7da8966ec0"
  7218. },
  7219. "dist": {
  7220. "type": "zip",
  7221. "url": "https://api.github.com/repos/symfony/routing/zipball/f1d08ed59d7718845bb70acd7480fa7da8966ec0",
  7222. "reference": "f1d08ed59d7718845bb70acd7480fa7da8966ec0",
  7223. "shasum": "",
  7224. "mirrors": [
  7225. {
  7226. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7227. "preferred": true
  7228. }
  7229. ]
  7230. },
  7231. "require": {
  7232. "php": ">=7.2.5",
  7233. "symfony/deprecation-contracts": "^2.1|^3",
  7234. "symfony/polyfill-php80": "^1.16"
  7235. },
  7236. "conflict": {
  7237. "doctrine/annotations": "<1.12",
  7238. "symfony/config": "<5.3",
  7239. "symfony/dependency-injection": "<4.4",
  7240. "symfony/yaml": "<4.4"
  7241. },
  7242. "require-dev": {
  7243. "doctrine/annotations": "^1.12|^2",
  7244. "psr/log": "^1|^2|^3",
  7245. "symfony/config": "^5.3|^6.0",
  7246. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  7247. "symfony/expression-language": "^4.4|^5.0|^6.0",
  7248. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  7249. "symfony/yaml": "^4.4|^5.0|^6.0"
  7250. },
  7251. "suggest": {
  7252. "symfony/config": "For using the all-in-one router or any loader",
  7253. "symfony/expression-language": "For using expression matching",
  7254. "symfony/http-foundation": "For using a Symfony Request object",
  7255. "symfony/yaml": "For using the YAML loader"
  7256. },
  7257. "type": "library",
  7258. "autoload": {
  7259. "psr-4": {
  7260. "Symfony\\Component\\Routing\\": ""
  7261. },
  7262. "exclude-from-classmap": [
  7263. "/Tests/"
  7264. ]
  7265. },
  7266. "notification-url": "https://packagist.org/downloads/",
  7267. "license": [
  7268. "MIT"
  7269. ],
  7270. "authors": [
  7271. {
  7272. "name": "Fabien Potencier",
  7273. "email": "fabien@symfony.com"
  7274. },
  7275. {
  7276. "name": "Symfony Community",
  7277. "homepage": "https://symfony.com/contributors"
  7278. }
  7279. ],
  7280. "description": "Maps an HTTP request to a set of configuration variables",
  7281. "homepage": "https://symfony.com",
  7282. "keywords": [
  7283. "router",
  7284. "routing",
  7285. "uri",
  7286. "url"
  7287. ],
  7288. "support": {
  7289. "source": "https://github.com/symfony/routing/tree/v5.4.34"
  7290. },
  7291. "funding": [
  7292. {
  7293. "url": "https://symfony.com/sponsor",
  7294. "type": "custom"
  7295. },
  7296. {
  7297. "url": "https://github.com/fabpot",
  7298. "type": "github"
  7299. },
  7300. {
  7301. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7302. "type": "tidelift"
  7303. }
  7304. ],
  7305. "time": "2023-12-27T12:51:02+00:00"
  7306. },
  7307. {
  7308. "name": "symfony/service-contracts",
  7309. "version": "v2.5.2",
  7310. "source": {
  7311. "type": "git",
  7312. "url": "https://github.com/symfony/service-contracts.git",
  7313. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c"
  7314. },
  7315. "dist": {
  7316. "type": "zip",
  7317. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  7318. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  7319. "shasum": "",
  7320. "mirrors": [
  7321. {
  7322. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7323. "preferred": true
  7324. }
  7325. ]
  7326. },
  7327. "require": {
  7328. "php": ">=7.2.5",
  7329. "psr/container": "^1.1",
  7330. "symfony/deprecation-contracts": "^2.1|^3"
  7331. },
  7332. "conflict": {
  7333. "ext-psr": "<1.1|>=2"
  7334. },
  7335. "suggest": {
  7336. "symfony/service-implementation": ""
  7337. },
  7338. "type": "library",
  7339. "extra": {
  7340. "branch-alias": {
  7341. "dev-main": "2.5-dev"
  7342. },
  7343. "thanks": {
  7344. "name": "symfony/contracts",
  7345. "url": "https://github.com/symfony/contracts"
  7346. }
  7347. },
  7348. "autoload": {
  7349. "psr-4": {
  7350. "Symfony\\Contracts\\Service\\": ""
  7351. }
  7352. },
  7353. "notification-url": "https://packagist.org/downloads/",
  7354. "license": [
  7355. "MIT"
  7356. ],
  7357. "authors": [
  7358. {
  7359. "name": "Nicolas Grekas",
  7360. "email": "p@tchwork.com"
  7361. },
  7362. {
  7363. "name": "Symfony Community",
  7364. "homepage": "https://symfony.com/contributors"
  7365. }
  7366. ],
  7367. "description": "Generic abstractions related to writing services",
  7368. "homepage": "https://symfony.com",
  7369. "keywords": [
  7370. "abstractions",
  7371. "contracts",
  7372. "decoupling",
  7373. "interfaces",
  7374. "interoperability",
  7375. "standards"
  7376. ],
  7377. "support": {
  7378. "source": "https://github.com/symfony/service-contracts/tree/v2.5.2"
  7379. },
  7380. "funding": [
  7381. {
  7382. "url": "https://symfony.com/sponsor",
  7383. "type": "custom"
  7384. },
  7385. {
  7386. "url": "https://github.com/fabpot",
  7387. "type": "github"
  7388. },
  7389. {
  7390. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7391. "type": "tidelift"
  7392. }
  7393. ],
  7394. "time": "2022-05-30T19:17:29+00:00"
  7395. },
  7396. {
  7397. "name": "symfony/string",
  7398. "version": "v5.4.34",
  7399. "source": {
  7400. "type": "git",
  7401. "url": "https://github.com/symfony/string.git",
  7402. "reference": "e3f98bfc7885c957488f443df82d97814a3ce061"
  7403. },
  7404. "dist": {
  7405. "type": "zip",
  7406. "url": "https://api.github.com/repos/symfony/string/zipball/e3f98bfc7885c957488f443df82d97814a3ce061",
  7407. "reference": "e3f98bfc7885c957488f443df82d97814a3ce061",
  7408. "shasum": "",
  7409. "mirrors": [
  7410. {
  7411. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7412. "preferred": true
  7413. }
  7414. ]
  7415. },
  7416. "require": {
  7417. "php": ">=7.2.5",
  7418. "symfony/polyfill-ctype": "~1.8",
  7419. "symfony/polyfill-intl-grapheme": "~1.0",
  7420. "symfony/polyfill-intl-normalizer": "~1.0",
  7421. "symfony/polyfill-mbstring": "~1.0",
  7422. "symfony/polyfill-php80": "~1.15"
  7423. },
  7424. "conflict": {
  7425. "symfony/translation-contracts": ">=3.0"
  7426. },
  7427. "require-dev": {
  7428. "symfony/error-handler": "^4.4|^5.0|^6.0",
  7429. "symfony/http-client": "^4.4|^5.0|^6.0",
  7430. "symfony/translation-contracts": "^1.1|^2",
  7431. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  7432. },
  7433. "type": "library",
  7434. "autoload": {
  7435. "files": [
  7436. "Resources/functions.php"
  7437. ],
  7438. "psr-4": {
  7439. "Symfony\\Component\\String\\": ""
  7440. },
  7441. "exclude-from-classmap": [
  7442. "/Tests/"
  7443. ]
  7444. },
  7445. "notification-url": "https://packagist.org/downloads/",
  7446. "license": [
  7447. "MIT"
  7448. ],
  7449. "authors": [
  7450. {
  7451. "name": "Nicolas Grekas",
  7452. "email": "p@tchwork.com"
  7453. },
  7454. {
  7455. "name": "Symfony Community",
  7456. "homepage": "https://symfony.com/contributors"
  7457. }
  7458. ],
  7459. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7460. "homepage": "https://symfony.com",
  7461. "keywords": [
  7462. "grapheme",
  7463. "i18n",
  7464. "string",
  7465. "unicode",
  7466. "utf-8",
  7467. "utf8"
  7468. ],
  7469. "support": {
  7470. "source": "https://github.com/symfony/string/tree/v5.4.34"
  7471. },
  7472. "funding": [
  7473. {
  7474. "url": "https://symfony.com/sponsor",
  7475. "type": "custom"
  7476. },
  7477. {
  7478. "url": "https://github.com/fabpot",
  7479. "type": "github"
  7480. },
  7481. {
  7482. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7483. "type": "tidelift"
  7484. }
  7485. ],
  7486. "time": "2023-12-09T13:20:28+00:00"
  7487. },
  7488. {
  7489. "name": "symfony/translation",
  7490. "version": "v5.4.31",
  7491. "source": {
  7492. "type": "git",
  7493. "url": "https://github.com/symfony/translation.git",
  7494. "reference": "ba72f72fceddf36f00bd495966b5873f2d17ad8f"
  7495. },
  7496. "dist": {
  7497. "type": "zip",
  7498. "url": "https://api.github.com/repos/symfony/translation/zipball/ba72f72fceddf36f00bd495966b5873f2d17ad8f",
  7499. "reference": "ba72f72fceddf36f00bd495966b5873f2d17ad8f",
  7500. "shasum": "",
  7501. "mirrors": [
  7502. {
  7503. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7504. "preferred": true
  7505. }
  7506. ]
  7507. },
  7508. "require": {
  7509. "php": ">=7.2.5",
  7510. "symfony/deprecation-contracts": "^2.1|^3",
  7511. "symfony/polyfill-mbstring": "~1.0",
  7512. "symfony/polyfill-php80": "^1.16",
  7513. "symfony/translation-contracts": "^2.3"
  7514. },
  7515. "conflict": {
  7516. "symfony/config": "<4.4",
  7517. "symfony/console": "<5.3",
  7518. "symfony/dependency-injection": "<5.0",
  7519. "symfony/http-kernel": "<5.0",
  7520. "symfony/twig-bundle": "<5.0",
  7521. "symfony/yaml": "<4.4"
  7522. },
  7523. "provide": {
  7524. "symfony/translation-implementation": "2.3"
  7525. },
  7526. "require-dev": {
  7527. "psr/log": "^1|^2|^3",
  7528. "symfony/config": "^4.4|^5.0|^6.0",
  7529. "symfony/console": "^5.4|^6.0",
  7530. "symfony/dependency-injection": "^5.0|^6.0",
  7531. "symfony/finder": "^4.4|^5.0|^6.0",
  7532. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  7533. "symfony/http-kernel": "^5.0|^6.0",
  7534. "symfony/intl": "^4.4|^5.0|^6.0",
  7535. "symfony/polyfill-intl-icu": "^1.21",
  7536. "symfony/service-contracts": "^1.1.2|^2|^3",
  7537. "symfony/yaml": "^4.4|^5.0|^6.0"
  7538. },
  7539. "suggest": {
  7540. "psr/log-implementation": "To use logging capability in translator",
  7541. "symfony/config": "",
  7542. "symfony/yaml": ""
  7543. },
  7544. "type": "library",
  7545. "autoload": {
  7546. "files": [
  7547. "Resources/functions.php"
  7548. ],
  7549. "psr-4": {
  7550. "Symfony\\Component\\Translation\\": ""
  7551. },
  7552. "exclude-from-classmap": [
  7553. "/Tests/"
  7554. ]
  7555. },
  7556. "notification-url": "https://packagist.org/downloads/",
  7557. "license": [
  7558. "MIT"
  7559. ],
  7560. "authors": [
  7561. {
  7562. "name": "Fabien Potencier",
  7563. "email": "fabien@symfony.com"
  7564. },
  7565. {
  7566. "name": "Symfony Community",
  7567. "homepage": "https://symfony.com/contributors"
  7568. }
  7569. ],
  7570. "description": "Provides tools to internationalize your application",
  7571. "homepage": "https://symfony.com",
  7572. "support": {
  7573. "source": "https://github.com/symfony/translation/tree/v5.4.31"
  7574. },
  7575. "funding": [
  7576. {
  7577. "url": "https://symfony.com/sponsor",
  7578. "type": "custom"
  7579. },
  7580. {
  7581. "url": "https://github.com/fabpot",
  7582. "type": "github"
  7583. },
  7584. {
  7585. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7586. "type": "tidelift"
  7587. }
  7588. ],
  7589. "time": "2023-11-03T16:16:43+00:00"
  7590. },
  7591. {
  7592. "name": "symfony/translation-contracts",
  7593. "version": "v2.5.2",
  7594. "source": {
  7595. "type": "git",
  7596. "url": "https://github.com/symfony/translation-contracts.git",
  7597. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe"
  7598. },
  7599. "dist": {
  7600. "type": "zip",
  7601. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  7602. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  7603. "shasum": "",
  7604. "mirrors": [
  7605. {
  7606. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7607. "preferred": true
  7608. }
  7609. ]
  7610. },
  7611. "require": {
  7612. "php": ">=7.2.5"
  7613. },
  7614. "suggest": {
  7615. "symfony/translation-implementation": ""
  7616. },
  7617. "type": "library",
  7618. "extra": {
  7619. "branch-alias": {
  7620. "dev-main": "2.5-dev"
  7621. },
  7622. "thanks": {
  7623. "name": "symfony/contracts",
  7624. "url": "https://github.com/symfony/contracts"
  7625. }
  7626. },
  7627. "autoload": {
  7628. "psr-4": {
  7629. "Symfony\\Contracts\\Translation\\": ""
  7630. }
  7631. },
  7632. "notification-url": "https://packagist.org/downloads/",
  7633. "license": [
  7634. "MIT"
  7635. ],
  7636. "authors": [
  7637. {
  7638. "name": "Nicolas Grekas",
  7639. "email": "p@tchwork.com"
  7640. },
  7641. {
  7642. "name": "Symfony Community",
  7643. "homepage": "https://symfony.com/contributors"
  7644. }
  7645. ],
  7646. "description": "Generic abstractions related to translation",
  7647. "homepage": "https://symfony.com",
  7648. "keywords": [
  7649. "abstractions",
  7650. "contracts",
  7651. "decoupling",
  7652. "interfaces",
  7653. "interoperability",
  7654. "standards"
  7655. ],
  7656. "support": {
  7657. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.2"
  7658. },
  7659. "funding": [
  7660. {
  7661. "url": "https://symfony.com/sponsor",
  7662. "type": "custom"
  7663. },
  7664. {
  7665. "url": "https://github.com/fabpot",
  7666. "type": "github"
  7667. },
  7668. {
  7669. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7670. "type": "tidelift"
  7671. }
  7672. ],
  7673. "time": "2022-06-27T16:58:25+00:00"
  7674. },
  7675. {
  7676. "name": "symfony/var-dumper",
  7677. "version": "v5.4.29",
  7678. "source": {
  7679. "type": "git",
  7680. "url": "https://github.com/symfony/var-dumper.git",
  7681. "reference": "6172e4ae3534d25ee9e07eb487c20be7760fcc65"
  7682. },
  7683. "dist": {
  7684. "type": "zip",
  7685. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/6172e4ae3534d25ee9e07eb487c20be7760fcc65",
  7686. "reference": "6172e4ae3534d25ee9e07eb487c20be7760fcc65",
  7687. "shasum": "",
  7688. "mirrors": [
  7689. {
  7690. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7691. "preferred": true
  7692. }
  7693. ]
  7694. },
  7695. "require": {
  7696. "php": ">=7.2.5",
  7697. "symfony/polyfill-mbstring": "~1.0",
  7698. "symfony/polyfill-php80": "^1.16"
  7699. },
  7700. "conflict": {
  7701. "symfony/console": "<4.4"
  7702. },
  7703. "require-dev": {
  7704. "ext-iconv": "*",
  7705. "symfony/console": "^4.4|^5.0|^6.0",
  7706. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  7707. "symfony/process": "^4.4|^5.0|^6.0",
  7708. "symfony/uid": "^5.1|^6.0",
  7709. "twig/twig": "^2.13|^3.0.4"
  7710. },
  7711. "suggest": {
  7712. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7713. "ext-intl": "To show region name in time zone dump",
  7714. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  7715. },
  7716. "bin": [
  7717. "Resources/bin/var-dump-server"
  7718. ],
  7719. "type": "library",
  7720. "autoload": {
  7721. "files": [
  7722. "Resources/functions/dump.php"
  7723. ],
  7724. "psr-4": {
  7725. "Symfony\\Component\\VarDumper\\": ""
  7726. },
  7727. "exclude-from-classmap": [
  7728. "/Tests/"
  7729. ]
  7730. },
  7731. "notification-url": "https://packagist.org/downloads/",
  7732. "license": [
  7733. "MIT"
  7734. ],
  7735. "authors": [
  7736. {
  7737. "name": "Nicolas Grekas",
  7738. "email": "p@tchwork.com"
  7739. },
  7740. {
  7741. "name": "Symfony Community",
  7742. "homepage": "https://symfony.com/contributors"
  7743. }
  7744. ],
  7745. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7746. "homepage": "https://symfony.com",
  7747. "keywords": [
  7748. "debug",
  7749. "dump"
  7750. ],
  7751. "support": {
  7752. "source": "https://github.com/symfony/var-dumper/tree/v5.4.29"
  7753. },
  7754. "funding": [
  7755. {
  7756. "url": "https://symfony.com/sponsor",
  7757. "type": "custom"
  7758. },
  7759. {
  7760. "url": "https://github.com/fabpot",
  7761. "type": "github"
  7762. },
  7763. {
  7764. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7765. "type": "tidelift"
  7766. }
  7767. ],
  7768. "time": "2023-09-12T10:09:58+00:00"
  7769. },
  7770. {
  7771. "name": "symfony/var-exporter",
  7772. "version": "v5.4.40",
  7773. "source": {
  7774. "type": "git",
  7775. "url": "https://github.com/symfony/var-exporter.git",
  7776. "reference": "6a13d37336d512927986e09f19a4bed24178baa6"
  7777. },
  7778. "dist": {
  7779. "type": "zip",
  7780. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/6a13d37336d512927986e09f19a4bed24178baa6",
  7781. "reference": "6a13d37336d512927986e09f19a4bed24178baa6",
  7782. "shasum": ""
  7783. },
  7784. "require": {
  7785. "php": ">=7.2.5",
  7786. "symfony/polyfill-php80": "^1.16"
  7787. },
  7788. "require-dev": {
  7789. "symfony/var-dumper": "^4.4.9|^5.0.9|^6.0"
  7790. },
  7791. "type": "library",
  7792. "autoload": {
  7793. "psr-4": {
  7794. "Symfony\\Component\\VarExporter\\": ""
  7795. },
  7796. "exclude-from-classmap": [
  7797. "/Tests/"
  7798. ]
  7799. },
  7800. "notification-url": "https://packagist.org/downloads/",
  7801. "license": [
  7802. "MIT"
  7803. ],
  7804. "authors": [
  7805. {
  7806. "name": "Nicolas Grekas",
  7807. "email": "p@tchwork.com"
  7808. },
  7809. {
  7810. "name": "Symfony Community",
  7811. "homepage": "https://symfony.com/contributors"
  7812. }
  7813. ],
  7814. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  7815. "homepage": "https://symfony.com",
  7816. "keywords": [
  7817. "clone",
  7818. "construct",
  7819. "export",
  7820. "hydrate",
  7821. "instantiate",
  7822. "serialize"
  7823. ],
  7824. "support": {
  7825. "source": "https://github.com/symfony/var-exporter/tree/v5.4.40"
  7826. },
  7827. "funding": [
  7828. {
  7829. "url": "https://symfony.com/sponsor",
  7830. "type": "custom"
  7831. },
  7832. {
  7833. "url": "https://github.com/fabpot",
  7834. "type": "github"
  7835. },
  7836. {
  7837. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7838. "type": "tidelift"
  7839. }
  7840. ],
  7841. "time": "2024-05-31T14:33:22+00:00"
  7842. },
  7843. {
  7844. "name": "tencentcloud/common",
  7845. "version": "3.0.1067",
  7846. "source": {
  7847. "type": "git",
  7848. "url": "https://github.com/tencentcloud-sdk-php/common.git",
  7849. "reference": "17d88323aaf68906984caa33b61559295a4837a0"
  7850. },
  7851. "dist": {
  7852. "type": "zip",
  7853. "url": "https://api.github.com/repos/tencentcloud-sdk-php/common/zipball/17d88323aaf68906984caa33b61559295a4837a0",
  7854. "reference": "17d88323aaf68906984caa33b61559295a4837a0",
  7855. "shasum": "",
  7856. "mirrors": [
  7857. {
  7858. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7859. "preferred": true
  7860. }
  7861. ]
  7862. },
  7863. "require": {
  7864. "guzzlehttp/guzzle": "^6.3||^7.0",
  7865. "php": ">=5.6.0"
  7866. },
  7867. "type": "library",
  7868. "autoload": {
  7869. "psr-4": {
  7870. "TencentCloud\\": "./src/TencentCloud"
  7871. }
  7872. },
  7873. "notification-url": "https://packagist.org/downloads/",
  7874. "license": [
  7875. "Apache-2.0"
  7876. ],
  7877. "authors": [
  7878. {
  7879. "name": "tencentcloudapi",
  7880. "email": "tencentcloudapi@tencent.com",
  7881. "homepage": "https://cloud.tencent.com/document/sdk/PHP",
  7882. "role": "Developer"
  7883. }
  7884. ],
  7885. "description": "TencentCloudApi php sdk",
  7886. "homepage": "https://github.com/tencentcloud-sdk-php/common",
  7887. "support": {
  7888. "issues": "https://github.com/tencentcloud-sdk-php/common/issues",
  7889. "source": "https://github.com/tencentcloud-sdk-php/common/tree/3.0.1067"
  7890. },
  7891. "time": "2024-01-12T07:53:31+00:00"
  7892. },
  7893. {
  7894. "name": "tencentcloud/sms",
  7895. "version": "3.0.1067",
  7896. "source": {
  7897. "type": "git",
  7898. "url": "https://github.com/tencentcloud-sdk-php/sms.git",
  7899. "reference": "9ceb07867d5ba26893ef7dd9d558a4f451c09b4a"
  7900. },
  7901. "dist": {
  7902. "type": "zip",
  7903. "url": "https://api.github.com/repos/tencentcloud-sdk-php/sms/zipball/9ceb07867d5ba26893ef7dd9d558a4f451c09b4a",
  7904. "reference": "9ceb07867d5ba26893ef7dd9d558a4f451c09b4a",
  7905. "shasum": "",
  7906. "mirrors": [
  7907. {
  7908. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7909. "preferred": true
  7910. }
  7911. ]
  7912. },
  7913. "require": {
  7914. "tencentcloud/common": "3.0.1067"
  7915. },
  7916. "type": "library",
  7917. "autoload": {
  7918. "psr-4": {
  7919. "TencentCloud\\": "./src/TencentCloud"
  7920. }
  7921. },
  7922. "notification-url": "https://packagist.org/downloads/",
  7923. "license": [
  7924. "Apache-2.0"
  7925. ],
  7926. "authors": [
  7927. {
  7928. "name": "tencentcloudapi",
  7929. "email": "tencentcloudapi@tencent.com",
  7930. "homepage": "https://github.com/tencentcloud-sdk-php/sms",
  7931. "role": "Developer"
  7932. }
  7933. ],
  7934. "description": "TencentCloudApi php sdk sms",
  7935. "homepage": "https://github.com/tencentcloud-sdk-php/sms",
  7936. "support": {
  7937. "issues": "https://github.com/tencentcloud-sdk-php/sms/issues",
  7938. "source": "https://github.com/tencentcloud-sdk-php/sms/tree/3.0.1067"
  7939. },
  7940. "time": "2024-01-12T08:16:39+00:00"
  7941. },
  7942. {
  7943. "name": "tijsverkoyen/css-to-inline-styles",
  7944. "version": "v2.2.7",
  7945. "source": {
  7946. "type": "git",
  7947. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7948. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb"
  7949. },
  7950. "dist": {
  7951. "type": "zip",
  7952. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/83ee6f38df0a63106a9e4536e3060458b74ccedb",
  7953. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb",
  7954. "shasum": "",
  7955. "mirrors": [
  7956. {
  7957. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7958. "preferred": true
  7959. }
  7960. ]
  7961. },
  7962. "require": {
  7963. "ext-dom": "*",
  7964. "ext-libxml": "*",
  7965. "php": "^5.5 || ^7.0 || ^8.0",
  7966. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0"
  7967. },
  7968. "require-dev": {
  7969. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  7970. },
  7971. "type": "library",
  7972. "extra": {
  7973. "branch-alias": {
  7974. "dev-master": "2.2.x-dev"
  7975. }
  7976. },
  7977. "autoload": {
  7978. "psr-4": {
  7979. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7980. }
  7981. },
  7982. "notification-url": "https://packagist.org/downloads/",
  7983. "license": [
  7984. "BSD-3-Clause"
  7985. ],
  7986. "authors": [
  7987. {
  7988. "name": "Tijs Verkoyen",
  7989. "email": "css_to_inline_styles@verkoyen.eu",
  7990. "role": "Developer"
  7991. }
  7992. ],
  7993. "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.",
  7994. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7995. "support": {
  7996. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7997. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.2.7"
  7998. },
  7999. "time": "2023-12-08T13:03:43+00:00"
  8000. },
  8001. {
  8002. "name": "vinkla/hashids",
  8003. "version": "9.1.0",
  8004. "source": {
  8005. "type": "git",
  8006. "url": "https://github.com/vinkla/laravel-hashids.git",
  8007. "reference": "cb0086db96cdb49816465adc97e3a024c8ee9767"
  8008. },
  8009. "dist": {
  8010. "type": "zip",
  8011. "url": "https://api.github.com/repos/vinkla/laravel-hashids/zipball/cb0086db96cdb49816465adc97e3a024c8ee9767",
  8012. "reference": "cb0086db96cdb49816465adc97e3a024c8ee9767",
  8013. "shasum": "",
  8014. "mirrors": [
  8015. {
  8016. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8017. "preferred": true
  8018. }
  8019. ]
  8020. },
  8021. "require": {
  8022. "graham-campbell/manager": "^4.4",
  8023. "hashids/hashids": "^4.1",
  8024. "illuminate/contracts": "^8.0",
  8025. "illuminate/support": "^8.0",
  8026. "php": "^7.3 || ^8.0"
  8027. },
  8028. "require-dev": {
  8029. "graham-campbell/analyzer": "^3.0",
  8030. "graham-campbell/testbench": "^5.4",
  8031. "mockery/mockery": "^1.3",
  8032. "phpunit/phpunit": "^9.3",
  8033. "squizlabs/php_codesniffer": "^3.5"
  8034. },
  8035. "type": "library",
  8036. "extra": {
  8037. "branch-alias": {
  8038. "dev-master": "9.1-dev"
  8039. },
  8040. "laravel": {
  8041. "providers": [
  8042. "Vinkla\\Hashids\\HashidsServiceProvider"
  8043. ],
  8044. "aliases": {
  8045. "Hashids": "Vinkla\\Hashids\\Facades\\Hashids"
  8046. }
  8047. }
  8048. },
  8049. "autoload": {
  8050. "psr-4": {
  8051. "Vinkla\\Hashids\\": "src/"
  8052. }
  8053. },
  8054. "notification-url": "https://packagist.org/downloads/",
  8055. "license": [
  8056. "MIT"
  8057. ],
  8058. "authors": [
  8059. {
  8060. "name": "Vincent Klaiber",
  8061. "email": "hello@doubledip.se"
  8062. }
  8063. ],
  8064. "description": "A Hashids bridge for Laravel",
  8065. "keywords": [
  8066. "hashids",
  8067. "laravel"
  8068. ],
  8069. "support": {
  8070. "issues": "https://github.com/vinkla/laravel-hashids/issues",
  8071. "source": "https://github.com/vinkla/laravel-hashids/tree/9.1.0"
  8072. },
  8073. "time": "2020-11-26T19:38:22+00:00"
  8074. },
  8075. {
  8076. "name": "vlucas/phpdotenv",
  8077. "version": "v5.5.0",
  8078. "source": {
  8079. "type": "git",
  8080. "url": "https://github.com/vlucas/phpdotenv.git",
  8081. "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7"
  8082. },
  8083. "dist": {
  8084. "type": "zip",
  8085. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
  8086. "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
  8087. "shasum": "",
  8088. "mirrors": [
  8089. {
  8090. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8091. "preferred": true
  8092. }
  8093. ]
  8094. },
  8095. "require": {
  8096. "ext-pcre": "*",
  8097. "graham-campbell/result-type": "^1.0.2",
  8098. "php": "^7.1.3 || ^8.0",
  8099. "phpoption/phpoption": "^1.8",
  8100. "symfony/polyfill-ctype": "^1.23",
  8101. "symfony/polyfill-mbstring": "^1.23.1",
  8102. "symfony/polyfill-php80": "^1.23.1"
  8103. },
  8104. "require-dev": {
  8105. "bamarni/composer-bin-plugin": "^1.4.1",
  8106. "ext-filter": "*",
  8107. "phpunit/phpunit": "^7.5.20 || ^8.5.30 || ^9.5.25"
  8108. },
  8109. "suggest": {
  8110. "ext-filter": "Required to use the boolean validator."
  8111. },
  8112. "type": "library",
  8113. "extra": {
  8114. "bamarni-bin": {
  8115. "bin-links": true,
  8116. "forward-command": true
  8117. },
  8118. "branch-alias": {
  8119. "dev-master": "5.5-dev"
  8120. }
  8121. },
  8122. "autoload": {
  8123. "psr-4": {
  8124. "Dotenv\\": "src/"
  8125. }
  8126. },
  8127. "notification-url": "https://packagist.org/downloads/",
  8128. "license": [
  8129. "BSD-3-Clause"
  8130. ],
  8131. "authors": [
  8132. {
  8133. "name": "Graham Campbell",
  8134. "email": "hello@gjcampbell.co.uk",
  8135. "homepage": "https://github.com/GrahamCampbell"
  8136. },
  8137. {
  8138. "name": "Vance Lucas",
  8139. "email": "vance@vancelucas.com",
  8140. "homepage": "https://github.com/vlucas"
  8141. }
  8142. ],
  8143. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  8144. "keywords": [
  8145. "dotenv",
  8146. "env",
  8147. "environment"
  8148. ],
  8149. "support": {
  8150. "issues": "https://github.com/vlucas/phpdotenv/issues",
  8151. "source": "https://github.com/vlucas/phpdotenv/tree/v5.5.0"
  8152. },
  8153. "funding": [
  8154. {
  8155. "url": "https://github.com/GrahamCampbell",
  8156. "type": "github"
  8157. },
  8158. {
  8159. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  8160. "type": "tidelift"
  8161. }
  8162. ],
  8163. "time": "2022-10-16T01:01:54+00:00"
  8164. },
  8165. {
  8166. "name": "voku/portable-ascii",
  8167. "version": "1.6.1",
  8168. "source": {
  8169. "type": "git",
  8170. "url": "https://github.com/voku/portable-ascii.git",
  8171. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a"
  8172. },
  8173. "dist": {
  8174. "type": "zip",
  8175. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/87337c91b9dfacee02452244ee14ab3c43bc485a",
  8176. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a",
  8177. "shasum": "",
  8178. "mirrors": [
  8179. {
  8180. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8181. "preferred": true
  8182. }
  8183. ]
  8184. },
  8185. "require": {
  8186. "php": ">=7.0.0"
  8187. },
  8188. "require-dev": {
  8189. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  8190. },
  8191. "suggest": {
  8192. "ext-intl": "Use Intl for transliterator_transliterate() support"
  8193. },
  8194. "type": "library",
  8195. "autoload": {
  8196. "psr-4": {
  8197. "voku\\": "src/voku/"
  8198. }
  8199. },
  8200. "notification-url": "https://packagist.org/downloads/",
  8201. "license": [
  8202. "MIT"
  8203. ],
  8204. "authors": [
  8205. {
  8206. "name": "Lars Moelleken",
  8207. "homepage": "http://www.moelleken.org/"
  8208. }
  8209. ],
  8210. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  8211. "homepage": "https://github.com/voku/portable-ascii",
  8212. "keywords": [
  8213. "ascii",
  8214. "clean",
  8215. "php"
  8216. ],
  8217. "support": {
  8218. "issues": "https://github.com/voku/portable-ascii/issues",
  8219. "source": "https://github.com/voku/portable-ascii/tree/1.6.1"
  8220. },
  8221. "funding": [
  8222. {
  8223. "url": "https://www.paypal.me/moelleken",
  8224. "type": "custom"
  8225. },
  8226. {
  8227. "url": "https://github.com/voku",
  8228. "type": "github"
  8229. },
  8230. {
  8231. "url": "https://opencollective.com/portable-ascii",
  8232. "type": "open_collective"
  8233. },
  8234. {
  8235. "url": "https://www.patreon.com/voku",
  8236. "type": "patreon"
  8237. },
  8238. {
  8239. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  8240. "type": "tidelift"
  8241. }
  8242. ],
  8243. "time": "2022-01-24T18:55:24+00:00"
  8244. },
  8245. {
  8246. "name": "w7corp/easywechat",
  8247. "version": "5.35.2",
  8248. "source": {
  8249. "type": "git",
  8250. "url": "https://github.com/w7corp/easywechat.git",
  8251. "reference": "a9235a1d236a1892fccc989bd73008f2fe20094f"
  8252. },
  8253. "dist": {
  8254. "type": "zip",
  8255. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/a9235a1d236a1892fccc989bd73008f2fe20094f",
  8256. "reference": "a9235a1d236a1892fccc989bd73008f2fe20094f",
  8257. "shasum": ""
  8258. },
  8259. "require": {
  8260. "easywechat-composer/easywechat-composer": "^1.1",
  8261. "ext-fileinfo": "*",
  8262. "ext-libxml": "*",
  8263. "ext-openssl": "*",
  8264. "ext-simplexml": "*",
  8265. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  8266. "monolog/monolog": "^1.22 || ^2.0 || ^3.0",
  8267. "overtrue/socialite": "^3.2 || ^4.0",
  8268. "php": ">=7.4",
  8269. "pimple/pimple": "^3.0",
  8270. "psr/simple-cache": "^1.0||^2.0||^3.0",
  8271. "symfony/cache": "^3.3 || ^4.3 || ^5.0 || ^6.0",
  8272. "symfony/event-dispatcher": "^4.3 || ^5.0 || ^6.0",
  8273. "symfony/http-foundation": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  8274. },
  8275. "require-dev": {
  8276. "brainmaestro/composer-git-hooks": "^2.7",
  8277. "dms/phpunit-arraysubset-asserts": "^0.2.0",
  8278. "friendsofphp/php-cs-fixer": "^3.5.0",
  8279. "mikey179/vfsstream": "^1.6",
  8280. "mockery/mockery": "^1.2.3",
  8281. "phpstan/phpstan": "^0.12.0",
  8282. "phpunit/phpunit": "^9.3"
  8283. },
  8284. "type": "library",
  8285. "extra": {
  8286. "hooks": {
  8287. "pre-commit": [
  8288. "composer test",
  8289. "composer fix-style"
  8290. ],
  8291. "pre-push": [
  8292. "composer test",
  8293. "composer fix-style"
  8294. ]
  8295. }
  8296. },
  8297. "autoload": {
  8298. "files": [
  8299. "src/Kernel/Support/Helpers.php",
  8300. "src/Kernel/Helpers.php"
  8301. ],
  8302. "psr-4": {
  8303. "EasyWeChat\\": "src/"
  8304. }
  8305. },
  8306. "notification-url": "https://packagist.org/downloads/",
  8307. "license": [
  8308. "MIT"
  8309. ],
  8310. "authors": [
  8311. {
  8312. "name": "overtrue",
  8313. "email": "anzhengchao@gmail.com"
  8314. }
  8315. ],
  8316. "description": "微信SDK",
  8317. "keywords": [
  8318. "easywechat",
  8319. "sdk",
  8320. "wechat",
  8321. "weixin",
  8322. "weixin-sdk"
  8323. ],
  8324. "support": {
  8325. "issues": "https://github.com/w7corp/easywechat/issues",
  8326. "source": "https://github.com/w7corp/easywechat/tree/5.35.2"
  8327. },
  8328. "funding": [
  8329. {
  8330. "url": "https://github.com/overtrue",
  8331. "type": "github"
  8332. }
  8333. ],
  8334. "time": "2024-08-06T13:21:05+00:00"
  8335. },
  8336. {
  8337. "name": "wantp/snowflake",
  8338. "version": "v1.2.0",
  8339. "source": {
  8340. "type": "git",
  8341. "url": "https://github.com/wantp/snowflake.git",
  8342. "reference": "821c2800521cddc31afd8dd980090883abc7fe2d"
  8343. },
  8344. "dist": {
  8345. "type": "zip",
  8346. "url": "https://api.github.com/repos/wantp/snowflake/zipball/821c2800521cddc31afd8dd980090883abc7fe2d",
  8347. "reference": "821c2800521cddc31afd8dd980090883abc7fe2d",
  8348. "shasum": "",
  8349. "mirrors": [
  8350. {
  8351. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8352. "preferred": true
  8353. }
  8354. ]
  8355. },
  8356. "require": {
  8357. "php": ">=7.0.0"
  8358. },
  8359. "type": "library",
  8360. "autoload": {
  8361. "psr-4": {
  8362. "wantp\\Snowflake\\": "src/Snowflake/"
  8363. }
  8364. },
  8365. "notification-url": "https://packagist.org/downloads/",
  8366. "license": [
  8367. "MIT"
  8368. ],
  8369. "authors": [
  8370. {
  8371. "name": "zhangrongwang",
  8372. "email": "zhangrongwang798@gmail.com"
  8373. }
  8374. ],
  8375. "description": "A package for create unique id by snowflake",
  8376. "keywords": [
  8377. "snowflake",
  8378. "uniqueId"
  8379. ],
  8380. "support": {
  8381. "issues": "https://github.com/wantp/snowflake/issues",
  8382. "source": "https://github.com/wantp/snowflake/tree/master"
  8383. },
  8384. "time": "2019-08-05T07:14:56+00:00"
  8385. },
  8386. {
  8387. "name": "webmozart/assert",
  8388. "version": "1.11.0",
  8389. "source": {
  8390. "type": "git",
  8391. "url": "https://github.com/webmozarts/assert.git",
  8392. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  8393. },
  8394. "dist": {
  8395. "type": "zip",
  8396. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8397. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8398. "shasum": "",
  8399. "mirrors": [
  8400. {
  8401. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8402. "preferred": true
  8403. }
  8404. ]
  8405. },
  8406. "require": {
  8407. "ext-ctype": "*",
  8408. "php": "^7.2 || ^8.0"
  8409. },
  8410. "conflict": {
  8411. "phpstan/phpstan": "<0.12.20",
  8412. "vimeo/psalm": "<4.6.1 || 4.6.2"
  8413. },
  8414. "require-dev": {
  8415. "phpunit/phpunit": "^8.5.13"
  8416. },
  8417. "type": "library",
  8418. "extra": {
  8419. "branch-alias": {
  8420. "dev-master": "1.10-dev"
  8421. }
  8422. },
  8423. "autoload": {
  8424. "psr-4": {
  8425. "Webmozart\\Assert\\": "src/"
  8426. }
  8427. },
  8428. "notification-url": "https://packagist.org/downloads/",
  8429. "license": [
  8430. "MIT"
  8431. ],
  8432. "authors": [
  8433. {
  8434. "name": "Bernhard Schussek",
  8435. "email": "bschussek@gmail.com"
  8436. }
  8437. ],
  8438. "description": "Assertions to validate method input/output with nice error messages.",
  8439. "keywords": [
  8440. "assert",
  8441. "check",
  8442. "validate"
  8443. ],
  8444. "support": {
  8445. "issues": "https://github.com/webmozarts/assert/issues",
  8446. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  8447. },
  8448. "time": "2022-06-03T18:03:27+00:00"
  8449. },
  8450. {
  8451. "name": "wechatpay/wechatpay",
  8452. "version": "1.4.11",
  8453. "source": {
  8454. "type": "git",
  8455. "url": "https://github.com/wechatpay-apiv3/wechatpay-php.git",
  8456. "reference": "6f2994f04412c909d3561585ba437b50b894306f"
  8457. },
  8458. "dist": {
  8459. "type": "zip",
  8460. "url": "https://api.github.com/repos/wechatpay-apiv3/wechatpay-php/zipball/6f2994f04412c909d3561585ba437b50b894306f",
  8461. "reference": "6f2994f04412c909d3561585ba437b50b894306f",
  8462. "shasum": "",
  8463. "mirrors": [
  8464. {
  8465. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8466. "preferred": true
  8467. }
  8468. ]
  8469. },
  8470. "require": {
  8471. "ext-curl": "*",
  8472. "ext-libxml": "*",
  8473. "ext-openssl": "*",
  8474. "ext-simplexml": "*",
  8475. "guzzlehttp/guzzle": "^6.5 || ^7.0",
  8476. "guzzlehttp/uri-template": "^0.2 || ^1.0",
  8477. "php": ">=7.1.2"
  8478. },
  8479. "require-dev": {
  8480. "phpstan/phpstan": "^0.12.89 || ^1.0",
  8481. "phpunit/phpunit": "^7.5 || ^8.5.16 || ^9.3.5"
  8482. },
  8483. "bin": [
  8484. "bin/CertificateDownloader.php"
  8485. ],
  8486. "type": "library",
  8487. "autoload": {
  8488. "psr-4": {
  8489. "WeChatPay\\": "src/"
  8490. }
  8491. },
  8492. "notification-url": "https://packagist.org/downloads/",
  8493. "license": [
  8494. "Apache-2.0"
  8495. ],
  8496. "authors": [
  8497. {
  8498. "name": "James ZHANG",
  8499. "homepage": "https://github.com/TheNorthMemory"
  8500. },
  8501. {
  8502. "name": "WeChatPay Community",
  8503. "homepage": "https://developers.weixin.qq.com/community/pay"
  8504. }
  8505. ],
  8506. "description": "[A]Sync Chainable WeChatPay v2&v3's OpenAPI SDK for PHP",
  8507. "homepage": "https://pay.weixin.qq.com/",
  8508. "keywords": [
  8509. "AES-GCM",
  8510. "aes-ecb",
  8511. "openapi-chainable",
  8512. "rsa-oaep",
  8513. "wechatpay",
  8514. "xml-builder",
  8515. "xml-parser"
  8516. ],
  8517. "support": {
  8518. "issues": "https://github.com/wechatpay-apiv3/wechatpay-php/issues",
  8519. "source": "https://github.com/wechatpay-apiv3/wechatpay-php/tree/v1.4.11"
  8520. },
  8521. "time": "2024-12-27T15:22:15+00:00"
  8522. }
  8523. ],
  8524. "packages-dev": [
  8525. {
  8526. "name": "doctrine/instantiator",
  8527. "version": "1.5.0",
  8528. "source": {
  8529. "type": "git",
  8530. "url": "https://github.com/doctrine/instantiator.git",
  8531. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  8532. },
  8533. "dist": {
  8534. "type": "zip",
  8535. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  8536. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  8537. "shasum": "",
  8538. "mirrors": [
  8539. {
  8540. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8541. "preferred": true
  8542. }
  8543. ]
  8544. },
  8545. "require": {
  8546. "php": "^7.1 || ^8.0"
  8547. },
  8548. "require-dev": {
  8549. "doctrine/coding-standard": "^9 || ^11",
  8550. "ext-pdo": "*",
  8551. "ext-phar": "*",
  8552. "phpbench/phpbench": "^0.16 || ^1",
  8553. "phpstan/phpstan": "^1.4",
  8554. "phpstan/phpstan-phpunit": "^1",
  8555. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  8556. "vimeo/psalm": "^4.30 || ^5.4"
  8557. },
  8558. "type": "library",
  8559. "autoload": {
  8560. "psr-4": {
  8561. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8562. }
  8563. },
  8564. "notification-url": "https://packagist.org/downloads/",
  8565. "license": [
  8566. "MIT"
  8567. ],
  8568. "authors": [
  8569. {
  8570. "name": "Marco Pivetta",
  8571. "email": "ocramius@gmail.com",
  8572. "homepage": "https://ocramius.github.io/"
  8573. }
  8574. ],
  8575. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8576. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8577. "keywords": [
  8578. "constructor",
  8579. "instantiate"
  8580. ],
  8581. "support": {
  8582. "issues": "https://github.com/doctrine/instantiator/issues",
  8583. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  8584. },
  8585. "funding": [
  8586. {
  8587. "url": "https://www.doctrine-project.org/sponsorship.html",
  8588. "type": "custom"
  8589. },
  8590. {
  8591. "url": "https://www.patreon.com/phpdoctrine",
  8592. "type": "patreon"
  8593. },
  8594. {
  8595. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8596. "type": "tidelift"
  8597. }
  8598. ],
  8599. "time": "2022-12-30T00:15:36+00:00"
  8600. },
  8601. {
  8602. "name": "facade/flare-client-php",
  8603. "version": "1.10.0",
  8604. "source": {
  8605. "type": "git",
  8606. "url": "https://github.com/facade/flare-client-php.git",
  8607. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8"
  8608. },
  8609. "dist": {
  8610. "type": "zip",
  8611. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  8612. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  8613. "shasum": "",
  8614. "mirrors": [
  8615. {
  8616. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8617. "preferred": true
  8618. }
  8619. ]
  8620. },
  8621. "require": {
  8622. "facade/ignition-contracts": "~1.0",
  8623. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  8624. "php": "^7.1|^8.0",
  8625. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  8626. "symfony/mime": "^3.4|^4.0|^5.1",
  8627. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  8628. },
  8629. "require-dev": {
  8630. "friendsofphp/php-cs-fixer": "^2.14",
  8631. "phpunit/phpunit": "^7.5",
  8632. "spatie/phpunit-snapshot-assertions": "^2.0"
  8633. },
  8634. "type": "library",
  8635. "extra": {
  8636. "branch-alias": {
  8637. "dev-master": "1.0-dev"
  8638. }
  8639. },
  8640. "autoload": {
  8641. "files": [
  8642. "src/helpers.php"
  8643. ],
  8644. "psr-4": {
  8645. "Facade\\FlareClient\\": "src"
  8646. }
  8647. },
  8648. "notification-url": "https://packagist.org/downloads/",
  8649. "license": [
  8650. "MIT"
  8651. ],
  8652. "description": "Send PHP errors to Flare",
  8653. "homepage": "https://github.com/facade/flare-client-php",
  8654. "keywords": [
  8655. "exception",
  8656. "facade",
  8657. "flare",
  8658. "reporting"
  8659. ],
  8660. "support": {
  8661. "issues": "https://github.com/facade/flare-client-php/issues",
  8662. "source": "https://github.com/facade/flare-client-php/tree/1.10.0"
  8663. },
  8664. "funding": [
  8665. {
  8666. "url": "https://github.com/spatie",
  8667. "type": "github"
  8668. }
  8669. ],
  8670. "time": "2022-08-09T11:23:57+00:00"
  8671. },
  8672. {
  8673. "name": "facade/ignition",
  8674. "version": "2.17.7",
  8675. "source": {
  8676. "type": "git",
  8677. "url": "https://github.com/facade/ignition.git",
  8678. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9"
  8679. },
  8680. "dist": {
  8681. "type": "zip",
  8682. "url": "https://api.github.com/repos/facade/ignition/zipball/b4f5955825bb4b74cba0f94001761c46335c33e9",
  8683. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9",
  8684. "shasum": "",
  8685. "mirrors": [
  8686. {
  8687. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8688. "preferred": true
  8689. }
  8690. ]
  8691. },
  8692. "require": {
  8693. "ext-curl": "*",
  8694. "ext-json": "*",
  8695. "ext-mbstring": "*",
  8696. "facade/flare-client-php": "^1.9.1",
  8697. "facade/ignition-contracts": "^1.0.2",
  8698. "illuminate/support": "^7.0|^8.0",
  8699. "monolog/monolog": "^2.0",
  8700. "php": "^7.2.5|^8.0",
  8701. "symfony/console": "^5.0",
  8702. "symfony/var-dumper": "^5.0"
  8703. },
  8704. "require-dev": {
  8705. "friendsofphp/php-cs-fixer": "^2.14",
  8706. "livewire/livewire": "^2.4",
  8707. "mockery/mockery": "^1.3",
  8708. "orchestra/testbench": "^5.0|^6.0",
  8709. "psalm/plugin-laravel": "^1.2"
  8710. },
  8711. "suggest": {
  8712. "laravel/telescope": "^3.1"
  8713. },
  8714. "type": "library",
  8715. "extra": {
  8716. "branch-alias": {
  8717. "dev-master": "2.x-dev"
  8718. },
  8719. "laravel": {
  8720. "providers": [
  8721. "Facade\\Ignition\\IgnitionServiceProvider"
  8722. ],
  8723. "aliases": {
  8724. "Flare": "Facade\\Ignition\\Facades\\Flare"
  8725. }
  8726. }
  8727. },
  8728. "autoload": {
  8729. "files": [
  8730. "src/helpers.php"
  8731. ],
  8732. "psr-4": {
  8733. "Facade\\Ignition\\": "src"
  8734. }
  8735. },
  8736. "notification-url": "https://packagist.org/downloads/",
  8737. "license": [
  8738. "MIT"
  8739. ],
  8740. "description": "A beautiful error page for Laravel applications.",
  8741. "homepage": "https://github.com/facade/ignition",
  8742. "keywords": [
  8743. "error",
  8744. "flare",
  8745. "laravel",
  8746. "page"
  8747. ],
  8748. "support": {
  8749. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  8750. "forum": "https://twitter.com/flareappio",
  8751. "issues": "https://github.com/facade/ignition/issues",
  8752. "source": "https://github.com/facade/ignition"
  8753. },
  8754. "time": "2023-01-26T12:34:59+00:00"
  8755. },
  8756. {
  8757. "name": "facade/ignition-contracts",
  8758. "version": "1.0.2",
  8759. "source": {
  8760. "type": "git",
  8761. "url": "https://github.com/facade/ignition-contracts.git",
  8762. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  8763. },
  8764. "dist": {
  8765. "type": "zip",
  8766. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8767. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8768. "shasum": "",
  8769. "mirrors": [
  8770. {
  8771. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8772. "preferred": true
  8773. }
  8774. ]
  8775. },
  8776. "require": {
  8777. "php": "^7.3|^8.0"
  8778. },
  8779. "require-dev": {
  8780. "friendsofphp/php-cs-fixer": "^v2.15.8",
  8781. "phpunit/phpunit": "^9.3.11",
  8782. "vimeo/psalm": "^3.17.1"
  8783. },
  8784. "type": "library",
  8785. "autoload": {
  8786. "psr-4": {
  8787. "Facade\\IgnitionContracts\\": "src"
  8788. }
  8789. },
  8790. "notification-url": "https://packagist.org/downloads/",
  8791. "license": [
  8792. "MIT"
  8793. ],
  8794. "authors": [
  8795. {
  8796. "name": "Freek Van der Herten",
  8797. "email": "freek@spatie.be",
  8798. "homepage": "https://flareapp.io",
  8799. "role": "Developer"
  8800. }
  8801. ],
  8802. "description": "Solution contracts for Ignition",
  8803. "homepage": "https://github.com/facade/ignition-contracts",
  8804. "keywords": [
  8805. "contracts",
  8806. "flare",
  8807. "ignition"
  8808. ],
  8809. "support": {
  8810. "issues": "https://github.com/facade/ignition-contracts/issues",
  8811. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  8812. },
  8813. "time": "2020-10-16T08:27:54+00:00"
  8814. },
  8815. {
  8816. "name": "fakerphp/faker",
  8817. "version": "v1.23.0",
  8818. "source": {
  8819. "type": "git",
  8820. "url": "https://github.com/FakerPHP/Faker.git",
  8821. "reference": "e3daa170d00fde61ea7719ef47bb09bb8f1d9b01"
  8822. },
  8823. "dist": {
  8824. "type": "zip",
  8825. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e3daa170d00fde61ea7719ef47bb09bb8f1d9b01",
  8826. "reference": "e3daa170d00fde61ea7719ef47bb09bb8f1d9b01",
  8827. "shasum": "",
  8828. "mirrors": [
  8829. {
  8830. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8831. "preferred": true
  8832. }
  8833. ]
  8834. },
  8835. "require": {
  8836. "php": "^7.4 || ^8.0",
  8837. "psr/container": "^1.0 || ^2.0",
  8838. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  8839. },
  8840. "conflict": {
  8841. "fzaninotto/faker": "*"
  8842. },
  8843. "require-dev": {
  8844. "bamarni/composer-bin-plugin": "^1.4.1",
  8845. "doctrine/persistence": "^1.3 || ^2.0",
  8846. "ext-intl": "*",
  8847. "phpunit/phpunit": "^9.5.26",
  8848. "symfony/phpunit-bridge": "^5.4.16"
  8849. },
  8850. "suggest": {
  8851. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  8852. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  8853. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  8854. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  8855. "ext-mbstring": "Required for multibyte Unicode string functionality."
  8856. },
  8857. "type": "library",
  8858. "extra": {
  8859. "branch-alias": {
  8860. "dev-main": "v1.21-dev"
  8861. }
  8862. },
  8863. "autoload": {
  8864. "psr-4": {
  8865. "Faker\\": "src/Faker/"
  8866. }
  8867. },
  8868. "notification-url": "https://packagist.org/downloads/",
  8869. "license": [
  8870. "MIT"
  8871. ],
  8872. "authors": [
  8873. {
  8874. "name": "François Zaninotto"
  8875. }
  8876. ],
  8877. "description": "Faker is a PHP library that generates fake data for you.",
  8878. "keywords": [
  8879. "data",
  8880. "faker",
  8881. "fixtures"
  8882. ],
  8883. "support": {
  8884. "issues": "https://github.com/FakerPHP/Faker/issues",
  8885. "source": "https://github.com/FakerPHP/Faker/tree/v1.23.0"
  8886. },
  8887. "time": "2023-06-12T08:44:38+00:00"
  8888. },
  8889. {
  8890. "name": "filp/whoops",
  8891. "version": "2.15.4",
  8892. "source": {
  8893. "type": "git",
  8894. "url": "https://github.com/filp/whoops.git",
  8895. "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546"
  8896. },
  8897. "dist": {
  8898. "type": "zip",
  8899. "url": "https://api.github.com/repos/filp/whoops/zipball/a139776fa3f5985a50b509f2a02ff0f709d2a546",
  8900. "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546",
  8901. "shasum": "",
  8902. "mirrors": [
  8903. {
  8904. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8905. "preferred": true
  8906. }
  8907. ]
  8908. },
  8909. "require": {
  8910. "php": "^5.5.9 || ^7.0 || ^8.0",
  8911. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  8912. },
  8913. "require-dev": {
  8914. "mockery/mockery": "^0.9 || ^1.0",
  8915. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  8916. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  8917. },
  8918. "suggest": {
  8919. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8920. "whoops/soap": "Formats errors as SOAP responses"
  8921. },
  8922. "type": "library",
  8923. "extra": {
  8924. "branch-alias": {
  8925. "dev-master": "2.7-dev"
  8926. }
  8927. },
  8928. "autoload": {
  8929. "psr-4": {
  8930. "Whoops\\": "src/Whoops/"
  8931. }
  8932. },
  8933. "notification-url": "https://packagist.org/downloads/",
  8934. "license": [
  8935. "MIT"
  8936. ],
  8937. "authors": [
  8938. {
  8939. "name": "Filipe Dobreira",
  8940. "homepage": "https://github.com/filp",
  8941. "role": "Developer"
  8942. }
  8943. ],
  8944. "description": "php error handling for cool kids",
  8945. "homepage": "https://filp.github.io/whoops/",
  8946. "keywords": [
  8947. "error",
  8948. "exception",
  8949. "handling",
  8950. "library",
  8951. "throwable",
  8952. "whoops"
  8953. ],
  8954. "support": {
  8955. "issues": "https://github.com/filp/whoops/issues",
  8956. "source": "https://github.com/filp/whoops/tree/2.15.4"
  8957. },
  8958. "funding": [
  8959. {
  8960. "url": "https://github.com/denis-sokolov",
  8961. "type": "github"
  8962. }
  8963. ],
  8964. "time": "2023-11-03T12:00:00+00:00"
  8965. },
  8966. {
  8967. "name": "hamcrest/hamcrest-php",
  8968. "version": "v2.0.1",
  8969. "source": {
  8970. "type": "git",
  8971. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8972. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8973. },
  8974. "dist": {
  8975. "type": "zip",
  8976. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8977. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8978. "shasum": "",
  8979. "mirrors": [
  8980. {
  8981. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8982. "preferred": true
  8983. }
  8984. ]
  8985. },
  8986. "require": {
  8987. "php": "^5.3|^7.0|^8.0"
  8988. },
  8989. "replace": {
  8990. "cordoval/hamcrest-php": "*",
  8991. "davedevelopment/hamcrest-php": "*",
  8992. "kodova/hamcrest-php": "*"
  8993. },
  8994. "require-dev": {
  8995. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8996. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8997. },
  8998. "type": "library",
  8999. "extra": {
  9000. "branch-alias": {
  9001. "dev-master": "2.1-dev"
  9002. }
  9003. },
  9004. "autoload": {
  9005. "classmap": [
  9006. "hamcrest"
  9007. ]
  9008. },
  9009. "notification-url": "https://packagist.org/downloads/",
  9010. "license": [
  9011. "BSD-3-Clause"
  9012. ],
  9013. "description": "This is the PHP port of Hamcrest Matchers",
  9014. "keywords": [
  9015. "test"
  9016. ],
  9017. "support": {
  9018. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  9019. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  9020. },
  9021. "time": "2020-07-09T08:09:16+00:00"
  9022. },
  9023. {
  9024. "name": "laravel/sail",
  9025. "version": "v1.19.0",
  9026. "source": {
  9027. "type": "git",
  9028. "url": "https://github.com/laravel/sail.git",
  9029. "reference": "4f230634a3163f3442def6a4e6ffdb02b02e14d6"
  9030. },
  9031. "dist": {
  9032. "type": "zip",
  9033. "url": "https://api.github.com/repos/laravel/sail/zipball/4f230634a3163f3442def6a4e6ffdb02b02e14d6",
  9034. "reference": "4f230634a3163f3442def6a4e6ffdb02b02e14d6",
  9035. "shasum": "",
  9036. "mirrors": [
  9037. {
  9038. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9039. "preferred": true
  9040. }
  9041. ]
  9042. },
  9043. "require": {
  9044. "illuminate/console": "^8.0|^9.0|^10.0",
  9045. "illuminate/contracts": "^8.0|^9.0|^10.0",
  9046. "illuminate/support": "^8.0|^9.0|^10.0",
  9047. "php": "^7.3|^8.0"
  9048. },
  9049. "bin": [
  9050. "bin/sail"
  9051. ],
  9052. "type": "library",
  9053. "extra": {
  9054. "branch-alias": {
  9055. "dev-master": "1.x-dev"
  9056. },
  9057. "laravel": {
  9058. "providers": [
  9059. "Laravel\\Sail\\SailServiceProvider"
  9060. ]
  9061. }
  9062. },
  9063. "autoload": {
  9064. "psr-4": {
  9065. "Laravel\\Sail\\": "src/"
  9066. }
  9067. },
  9068. "notification-url": "https://packagist.org/downloads/",
  9069. "license": [
  9070. "MIT"
  9071. ],
  9072. "authors": [
  9073. {
  9074. "name": "Taylor Otwell",
  9075. "email": "taylor@laravel.com"
  9076. }
  9077. ],
  9078. "description": "Docker files for running a basic Laravel application.",
  9079. "keywords": [
  9080. "docker",
  9081. "laravel"
  9082. ],
  9083. "support": {
  9084. "issues": "https://github.com/laravel/sail/issues",
  9085. "source": "https://github.com/laravel/sail"
  9086. },
  9087. "time": "2023-01-31T13:37:57+00:00"
  9088. },
  9089. {
  9090. "name": "mockery/mockery",
  9091. "version": "1.6.6",
  9092. "source": {
  9093. "type": "git",
  9094. "url": "https://github.com/mockery/mockery.git",
  9095. "reference": "b8e0bb7d8c604046539c1115994632c74dcb361e"
  9096. },
  9097. "dist": {
  9098. "type": "zip",
  9099. "url": "https://api.github.com/repos/mockery/mockery/zipball/b8e0bb7d8c604046539c1115994632c74dcb361e",
  9100. "reference": "b8e0bb7d8c604046539c1115994632c74dcb361e",
  9101. "shasum": "",
  9102. "mirrors": [
  9103. {
  9104. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9105. "preferred": true
  9106. }
  9107. ]
  9108. },
  9109. "require": {
  9110. "hamcrest/hamcrest-php": "^2.0.1",
  9111. "lib-pcre": ">=7.0",
  9112. "php": ">=7.3"
  9113. },
  9114. "conflict": {
  9115. "phpunit/phpunit": "<8.0"
  9116. },
  9117. "require-dev": {
  9118. "phpunit/phpunit": "^8.5 || ^9.6.10",
  9119. "psalm/plugin-phpunit": "^0.18.4",
  9120. "symplify/easy-coding-standard": "^11.5.0",
  9121. "vimeo/psalm": "^4.30"
  9122. },
  9123. "type": "library",
  9124. "autoload": {
  9125. "files": [
  9126. "library/helpers.php",
  9127. "library/Mockery.php"
  9128. ],
  9129. "psr-4": {
  9130. "Mockery\\": "library/Mockery"
  9131. }
  9132. },
  9133. "notification-url": "https://packagist.org/downloads/",
  9134. "license": [
  9135. "BSD-3-Clause"
  9136. ],
  9137. "authors": [
  9138. {
  9139. "name": "Pádraic Brady",
  9140. "email": "padraic.brady@gmail.com",
  9141. "homepage": "https://github.com/padraic",
  9142. "role": "Author"
  9143. },
  9144. {
  9145. "name": "Dave Marshall",
  9146. "email": "dave.marshall@atstsolutions.co.uk",
  9147. "homepage": "https://davedevelopment.co.uk",
  9148. "role": "Developer"
  9149. },
  9150. {
  9151. "name": "Nathanael Esayeas",
  9152. "email": "nathanael.esayeas@protonmail.com",
  9153. "homepage": "https://github.com/ghostwriter",
  9154. "role": "Lead Developer"
  9155. }
  9156. ],
  9157. "description": "Mockery is a simple yet flexible PHP mock object framework",
  9158. "homepage": "https://github.com/mockery/mockery",
  9159. "keywords": [
  9160. "BDD",
  9161. "TDD",
  9162. "library",
  9163. "mock",
  9164. "mock objects",
  9165. "mockery",
  9166. "stub",
  9167. "test",
  9168. "test double",
  9169. "testing"
  9170. ],
  9171. "support": {
  9172. "docs": "https://docs.mockery.io/",
  9173. "issues": "https://github.com/mockery/mockery/issues",
  9174. "rss": "https://github.com/mockery/mockery/releases.atom",
  9175. "security": "https://github.com/mockery/mockery/security/advisories",
  9176. "source": "https://github.com/mockery/mockery"
  9177. },
  9178. "time": "2023-08-09T00:03:52+00:00"
  9179. },
  9180. {
  9181. "name": "myclabs/deep-copy",
  9182. "version": "1.11.1",
  9183. "source": {
  9184. "type": "git",
  9185. "url": "https://github.com/myclabs/DeepCopy.git",
  9186. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  9187. },
  9188. "dist": {
  9189. "type": "zip",
  9190. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  9191. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  9192. "shasum": "",
  9193. "mirrors": [
  9194. {
  9195. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9196. "preferred": true
  9197. }
  9198. ]
  9199. },
  9200. "require": {
  9201. "php": "^7.1 || ^8.0"
  9202. },
  9203. "conflict": {
  9204. "doctrine/collections": "<1.6.8",
  9205. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  9206. },
  9207. "require-dev": {
  9208. "doctrine/collections": "^1.6.8",
  9209. "doctrine/common": "^2.13.3 || ^3.2.2",
  9210. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  9211. },
  9212. "type": "library",
  9213. "autoload": {
  9214. "files": [
  9215. "src/DeepCopy/deep_copy.php"
  9216. ],
  9217. "psr-4": {
  9218. "DeepCopy\\": "src/DeepCopy/"
  9219. }
  9220. },
  9221. "notification-url": "https://packagist.org/downloads/",
  9222. "license": [
  9223. "MIT"
  9224. ],
  9225. "description": "Create deep copies (clones) of your objects",
  9226. "keywords": [
  9227. "clone",
  9228. "copy",
  9229. "duplicate",
  9230. "object",
  9231. "object graph"
  9232. ],
  9233. "support": {
  9234. "issues": "https://github.com/myclabs/DeepCopy/issues",
  9235. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  9236. },
  9237. "funding": [
  9238. {
  9239. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  9240. "type": "tidelift"
  9241. }
  9242. ],
  9243. "time": "2023-03-08T13:26:56+00:00"
  9244. },
  9245. {
  9246. "name": "nunomaduro/collision",
  9247. "version": "v5.11.0",
  9248. "source": {
  9249. "type": "git",
  9250. "url": "https://github.com/nunomaduro/collision.git",
  9251. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461"
  9252. },
  9253. "dist": {
  9254. "type": "zip",
  9255. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/8b610eef8582ccdc05d8f2ab23305e2d37049461",
  9256. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461",
  9257. "shasum": "",
  9258. "mirrors": [
  9259. {
  9260. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9261. "preferred": true
  9262. }
  9263. ]
  9264. },
  9265. "require": {
  9266. "facade/ignition-contracts": "^1.0",
  9267. "filp/whoops": "^2.14.3",
  9268. "php": "^7.3 || ^8.0",
  9269. "symfony/console": "^5.0"
  9270. },
  9271. "require-dev": {
  9272. "brianium/paratest": "^6.1",
  9273. "fideloper/proxy": "^4.4.1",
  9274. "fruitcake/laravel-cors": "^2.0.3",
  9275. "laravel/framework": "8.x-dev",
  9276. "nunomaduro/larastan": "^0.6.2",
  9277. "nunomaduro/mock-final-classes": "^1.0",
  9278. "orchestra/testbench": "^6.0",
  9279. "phpstan/phpstan": "^0.12.64",
  9280. "phpunit/phpunit": "^9.5.0"
  9281. },
  9282. "type": "library",
  9283. "extra": {
  9284. "laravel": {
  9285. "providers": [
  9286. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  9287. ]
  9288. }
  9289. },
  9290. "autoload": {
  9291. "psr-4": {
  9292. "NunoMaduro\\Collision\\": "src/"
  9293. }
  9294. },
  9295. "notification-url": "https://packagist.org/downloads/",
  9296. "license": [
  9297. "MIT"
  9298. ],
  9299. "authors": [
  9300. {
  9301. "name": "Nuno Maduro",
  9302. "email": "enunomaduro@gmail.com"
  9303. }
  9304. ],
  9305. "description": "Cli error handling for console/command-line PHP applications.",
  9306. "keywords": [
  9307. "artisan",
  9308. "cli",
  9309. "command-line",
  9310. "console",
  9311. "error",
  9312. "handling",
  9313. "laravel",
  9314. "laravel-zero",
  9315. "php",
  9316. "symfony"
  9317. ],
  9318. "support": {
  9319. "issues": "https://github.com/nunomaduro/collision/issues",
  9320. "source": "https://github.com/nunomaduro/collision"
  9321. },
  9322. "funding": [
  9323. {
  9324. "url": "https://www.paypal.com/paypalme/enunomaduro",
  9325. "type": "custom"
  9326. },
  9327. {
  9328. "url": "https://github.com/nunomaduro",
  9329. "type": "github"
  9330. },
  9331. {
  9332. "url": "https://www.patreon.com/nunomaduro",
  9333. "type": "patreon"
  9334. }
  9335. ],
  9336. "time": "2022-01-10T16:22:52+00:00"
  9337. },
  9338. {
  9339. "name": "phar-io/manifest",
  9340. "version": "2.0.3",
  9341. "source": {
  9342. "type": "git",
  9343. "url": "https://github.com/phar-io/manifest.git",
  9344. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  9345. },
  9346. "dist": {
  9347. "type": "zip",
  9348. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  9349. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  9350. "shasum": "",
  9351. "mirrors": [
  9352. {
  9353. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9354. "preferred": true
  9355. }
  9356. ]
  9357. },
  9358. "require": {
  9359. "ext-dom": "*",
  9360. "ext-phar": "*",
  9361. "ext-xmlwriter": "*",
  9362. "phar-io/version": "^3.0.1",
  9363. "php": "^7.2 || ^8.0"
  9364. },
  9365. "type": "library",
  9366. "extra": {
  9367. "branch-alias": {
  9368. "dev-master": "2.0.x-dev"
  9369. }
  9370. },
  9371. "autoload": {
  9372. "classmap": [
  9373. "src/"
  9374. ]
  9375. },
  9376. "notification-url": "https://packagist.org/downloads/",
  9377. "license": [
  9378. "BSD-3-Clause"
  9379. ],
  9380. "authors": [
  9381. {
  9382. "name": "Arne Blankerts",
  9383. "email": "arne@blankerts.de",
  9384. "role": "Developer"
  9385. },
  9386. {
  9387. "name": "Sebastian Heuer",
  9388. "email": "sebastian@phpeople.de",
  9389. "role": "Developer"
  9390. },
  9391. {
  9392. "name": "Sebastian Bergmann",
  9393. "email": "sebastian@phpunit.de",
  9394. "role": "Developer"
  9395. }
  9396. ],
  9397. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9398. "support": {
  9399. "issues": "https://github.com/phar-io/manifest/issues",
  9400. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  9401. },
  9402. "time": "2021-07-20T11:28:43+00:00"
  9403. },
  9404. {
  9405. "name": "phar-io/version",
  9406. "version": "3.2.1",
  9407. "source": {
  9408. "type": "git",
  9409. "url": "https://github.com/phar-io/version.git",
  9410. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  9411. },
  9412. "dist": {
  9413. "type": "zip",
  9414. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9415. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9416. "shasum": "",
  9417. "mirrors": [
  9418. {
  9419. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9420. "preferred": true
  9421. }
  9422. ]
  9423. },
  9424. "require": {
  9425. "php": "^7.2 || ^8.0"
  9426. },
  9427. "type": "library",
  9428. "autoload": {
  9429. "classmap": [
  9430. "src/"
  9431. ]
  9432. },
  9433. "notification-url": "https://packagist.org/downloads/",
  9434. "license": [
  9435. "BSD-3-Clause"
  9436. ],
  9437. "authors": [
  9438. {
  9439. "name": "Arne Blankerts",
  9440. "email": "arne@blankerts.de",
  9441. "role": "Developer"
  9442. },
  9443. {
  9444. "name": "Sebastian Heuer",
  9445. "email": "sebastian@phpeople.de",
  9446. "role": "Developer"
  9447. },
  9448. {
  9449. "name": "Sebastian Bergmann",
  9450. "email": "sebastian@phpunit.de",
  9451. "role": "Developer"
  9452. }
  9453. ],
  9454. "description": "Library for handling version information and constraints",
  9455. "support": {
  9456. "issues": "https://github.com/phar-io/version/issues",
  9457. "source": "https://github.com/phar-io/version/tree/3.2.1"
  9458. },
  9459. "time": "2022-02-21T01:04:05+00:00"
  9460. },
  9461. {
  9462. "name": "phpunit/php-code-coverage",
  9463. "version": "9.2.30",
  9464. "source": {
  9465. "type": "git",
  9466. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9467. "reference": "ca2bd87d2f9215904682a9cb9bb37dda98e76089"
  9468. },
  9469. "dist": {
  9470. "type": "zip",
  9471. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/ca2bd87d2f9215904682a9cb9bb37dda98e76089",
  9472. "reference": "ca2bd87d2f9215904682a9cb9bb37dda98e76089",
  9473. "shasum": "",
  9474. "mirrors": [
  9475. {
  9476. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9477. "preferred": true
  9478. }
  9479. ]
  9480. },
  9481. "require": {
  9482. "ext-dom": "*",
  9483. "ext-libxml": "*",
  9484. "ext-xmlwriter": "*",
  9485. "nikic/php-parser": "^4.18 || ^5.0",
  9486. "php": ">=7.3",
  9487. "phpunit/php-file-iterator": "^3.0.3",
  9488. "phpunit/php-text-template": "^2.0.2",
  9489. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  9490. "sebastian/complexity": "^2.0",
  9491. "sebastian/environment": "^5.1.2",
  9492. "sebastian/lines-of-code": "^1.0.3",
  9493. "sebastian/version": "^3.0.1",
  9494. "theseer/tokenizer": "^1.2.0"
  9495. },
  9496. "require-dev": {
  9497. "phpunit/phpunit": "^9.3"
  9498. },
  9499. "suggest": {
  9500. "ext-pcov": "PHP extension that provides line coverage",
  9501. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9502. },
  9503. "type": "library",
  9504. "extra": {
  9505. "branch-alias": {
  9506. "dev-master": "9.2-dev"
  9507. }
  9508. },
  9509. "autoload": {
  9510. "classmap": [
  9511. "src/"
  9512. ]
  9513. },
  9514. "notification-url": "https://packagist.org/downloads/",
  9515. "license": [
  9516. "BSD-3-Clause"
  9517. ],
  9518. "authors": [
  9519. {
  9520. "name": "Sebastian Bergmann",
  9521. "email": "sebastian@phpunit.de",
  9522. "role": "lead"
  9523. }
  9524. ],
  9525. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9526. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9527. "keywords": [
  9528. "coverage",
  9529. "testing",
  9530. "xunit"
  9531. ],
  9532. "support": {
  9533. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9534. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  9535. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.30"
  9536. },
  9537. "funding": [
  9538. {
  9539. "url": "https://github.com/sebastianbergmann",
  9540. "type": "github"
  9541. }
  9542. ],
  9543. "time": "2023-12-22T06:47:57+00:00"
  9544. },
  9545. {
  9546. "name": "phpunit/php-file-iterator",
  9547. "version": "3.0.6",
  9548. "source": {
  9549. "type": "git",
  9550. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9551. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  9552. },
  9553. "dist": {
  9554. "type": "zip",
  9555. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9556. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9557. "shasum": "",
  9558. "mirrors": [
  9559. {
  9560. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9561. "preferred": true
  9562. }
  9563. ]
  9564. },
  9565. "require": {
  9566. "php": ">=7.3"
  9567. },
  9568. "require-dev": {
  9569. "phpunit/phpunit": "^9.3"
  9570. },
  9571. "type": "library",
  9572. "extra": {
  9573. "branch-alias": {
  9574. "dev-master": "3.0-dev"
  9575. }
  9576. },
  9577. "autoload": {
  9578. "classmap": [
  9579. "src/"
  9580. ]
  9581. },
  9582. "notification-url": "https://packagist.org/downloads/",
  9583. "license": [
  9584. "BSD-3-Clause"
  9585. ],
  9586. "authors": [
  9587. {
  9588. "name": "Sebastian Bergmann",
  9589. "email": "sebastian@phpunit.de",
  9590. "role": "lead"
  9591. }
  9592. ],
  9593. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9594. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9595. "keywords": [
  9596. "filesystem",
  9597. "iterator"
  9598. ],
  9599. "support": {
  9600. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9601. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  9602. },
  9603. "funding": [
  9604. {
  9605. "url": "https://github.com/sebastianbergmann",
  9606. "type": "github"
  9607. }
  9608. ],
  9609. "time": "2021-12-02T12:48:52+00:00"
  9610. },
  9611. {
  9612. "name": "phpunit/php-invoker",
  9613. "version": "3.1.1",
  9614. "source": {
  9615. "type": "git",
  9616. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9617. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  9618. },
  9619. "dist": {
  9620. "type": "zip",
  9621. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9622. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9623. "shasum": "",
  9624. "mirrors": [
  9625. {
  9626. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9627. "preferred": true
  9628. }
  9629. ]
  9630. },
  9631. "require": {
  9632. "php": ">=7.3"
  9633. },
  9634. "require-dev": {
  9635. "ext-pcntl": "*",
  9636. "phpunit/phpunit": "^9.3"
  9637. },
  9638. "suggest": {
  9639. "ext-pcntl": "*"
  9640. },
  9641. "type": "library",
  9642. "extra": {
  9643. "branch-alias": {
  9644. "dev-master": "3.1-dev"
  9645. }
  9646. },
  9647. "autoload": {
  9648. "classmap": [
  9649. "src/"
  9650. ]
  9651. },
  9652. "notification-url": "https://packagist.org/downloads/",
  9653. "license": [
  9654. "BSD-3-Clause"
  9655. ],
  9656. "authors": [
  9657. {
  9658. "name": "Sebastian Bergmann",
  9659. "email": "sebastian@phpunit.de",
  9660. "role": "lead"
  9661. }
  9662. ],
  9663. "description": "Invoke callables with a timeout",
  9664. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9665. "keywords": [
  9666. "process"
  9667. ],
  9668. "support": {
  9669. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9670. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  9671. },
  9672. "funding": [
  9673. {
  9674. "url": "https://github.com/sebastianbergmann",
  9675. "type": "github"
  9676. }
  9677. ],
  9678. "time": "2020-09-28T05:58:55+00:00"
  9679. },
  9680. {
  9681. "name": "phpunit/php-text-template",
  9682. "version": "2.0.4",
  9683. "source": {
  9684. "type": "git",
  9685. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9686. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  9687. },
  9688. "dist": {
  9689. "type": "zip",
  9690. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9691. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9692. "shasum": "",
  9693. "mirrors": [
  9694. {
  9695. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9696. "preferred": true
  9697. }
  9698. ]
  9699. },
  9700. "require": {
  9701. "php": ">=7.3"
  9702. },
  9703. "require-dev": {
  9704. "phpunit/phpunit": "^9.3"
  9705. },
  9706. "type": "library",
  9707. "extra": {
  9708. "branch-alias": {
  9709. "dev-master": "2.0-dev"
  9710. }
  9711. },
  9712. "autoload": {
  9713. "classmap": [
  9714. "src/"
  9715. ]
  9716. },
  9717. "notification-url": "https://packagist.org/downloads/",
  9718. "license": [
  9719. "BSD-3-Clause"
  9720. ],
  9721. "authors": [
  9722. {
  9723. "name": "Sebastian Bergmann",
  9724. "email": "sebastian@phpunit.de",
  9725. "role": "lead"
  9726. }
  9727. ],
  9728. "description": "Simple template engine.",
  9729. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9730. "keywords": [
  9731. "template"
  9732. ],
  9733. "support": {
  9734. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9735. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  9736. },
  9737. "funding": [
  9738. {
  9739. "url": "https://github.com/sebastianbergmann",
  9740. "type": "github"
  9741. }
  9742. ],
  9743. "time": "2020-10-26T05:33:50+00:00"
  9744. },
  9745. {
  9746. "name": "phpunit/php-timer",
  9747. "version": "5.0.3",
  9748. "source": {
  9749. "type": "git",
  9750. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9751. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  9752. },
  9753. "dist": {
  9754. "type": "zip",
  9755. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9756. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9757. "shasum": "",
  9758. "mirrors": [
  9759. {
  9760. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9761. "preferred": true
  9762. }
  9763. ]
  9764. },
  9765. "require": {
  9766. "php": ">=7.3"
  9767. },
  9768. "require-dev": {
  9769. "phpunit/phpunit": "^9.3"
  9770. },
  9771. "type": "library",
  9772. "extra": {
  9773. "branch-alias": {
  9774. "dev-master": "5.0-dev"
  9775. }
  9776. },
  9777. "autoload": {
  9778. "classmap": [
  9779. "src/"
  9780. ]
  9781. },
  9782. "notification-url": "https://packagist.org/downloads/",
  9783. "license": [
  9784. "BSD-3-Clause"
  9785. ],
  9786. "authors": [
  9787. {
  9788. "name": "Sebastian Bergmann",
  9789. "email": "sebastian@phpunit.de",
  9790. "role": "lead"
  9791. }
  9792. ],
  9793. "description": "Utility class for timing",
  9794. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9795. "keywords": [
  9796. "timer"
  9797. ],
  9798. "support": {
  9799. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9800. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  9801. },
  9802. "funding": [
  9803. {
  9804. "url": "https://github.com/sebastianbergmann",
  9805. "type": "github"
  9806. }
  9807. ],
  9808. "time": "2020-10-26T13:16:10+00:00"
  9809. },
  9810. {
  9811. "name": "phpunit/phpunit",
  9812. "version": "9.6.15",
  9813. "source": {
  9814. "type": "git",
  9815. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9816. "reference": "05017b80304e0eb3f31d90194a563fd53a6021f1"
  9817. },
  9818. "dist": {
  9819. "type": "zip",
  9820. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/05017b80304e0eb3f31d90194a563fd53a6021f1",
  9821. "reference": "05017b80304e0eb3f31d90194a563fd53a6021f1",
  9822. "shasum": "",
  9823. "mirrors": [
  9824. {
  9825. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9826. "preferred": true
  9827. }
  9828. ]
  9829. },
  9830. "require": {
  9831. "doctrine/instantiator": "^1.3.1 || ^2",
  9832. "ext-dom": "*",
  9833. "ext-json": "*",
  9834. "ext-libxml": "*",
  9835. "ext-mbstring": "*",
  9836. "ext-xml": "*",
  9837. "ext-xmlwriter": "*",
  9838. "myclabs/deep-copy": "^1.10.1",
  9839. "phar-io/manifest": "^2.0.3",
  9840. "phar-io/version": "^3.0.2",
  9841. "php": ">=7.3",
  9842. "phpunit/php-code-coverage": "^9.2.28",
  9843. "phpunit/php-file-iterator": "^3.0.5",
  9844. "phpunit/php-invoker": "^3.1.1",
  9845. "phpunit/php-text-template": "^2.0.3",
  9846. "phpunit/php-timer": "^5.0.2",
  9847. "sebastian/cli-parser": "^1.0.1",
  9848. "sebastian/code-unit": "^1.0.6",
  9849. "sebastian/comparator": "^4.0.8",
  9850. "sebastian/diff": "^4.0.3",
  9851. "sebastian/environment": "^5.1.3",
  9852. "sebastian/exporter": "^4.0.5",
  9853. "sebastian/global-state": "^5.0.1",
  9854. "sebastian/object-enumerator": "^4.0.3",
  9855. "sebastian/resource-operations": "^3.0.3",
  9856. "sebastian/type": "^3.2",
  9857. "sebastian/version": "^3.0.2"
  9858. },
  9859. "suggest": {
  9860. "ext-soap": "To be able to generate mocks based on WSDL files",
  9861. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9862. },
  9863. "bin": [
  9864. "phpunit"
  9865. ],
  9866. "type": "library",
  9867. "extra": {
  9868. "branch-alias": {
  9869. "dev-master": "9.6-dev"
  9870. }
  9871. },
  9872. "autoload": {
  9873. "files": [
  9874. "src/Framework/Assert/Functions.php"
  9875. ],
  9876. "classmap": [
  9877. "src/"
  9878. ]
  9879. },
  9880. "notification-url": "https://packagist.org/downloads/",
  9881. "license": [
  9882. "BSD-3-Clause"
  9883. ],
  9884. "authors": [
  9885. {
  9886. "name": "Sebastian Bergmann",
  9887. "email": "sebastian@phpunit.de",
  9888. "role": "lead"
  9889. }
  9890. ],
  9891. "description": "The PHP Unit Testing framework.",
  9892. "homepage": "https://phpunit.de/",
  9893. "keywords": [
  9894. "phpunit",
  9895. "testing",
  9896. "xunit"
  9897. ],
  9898. "support": {
  9899. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9900. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9901. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.15"
  9902. },
  9903. "funding": [
  9904. {
  9905. "url": "https://phpunit.de/sponsors.html",
  9906. "type": "custom"
  9907. },
  9908. {
  9909. "url": "https://github.com/sebastianbergmann",
  9910. "type": "github"
  9911. },
  9912. {
  9913. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9914. "type": "tidelift"
  9915. }
  9916. ],
  9917. "time": "2023-12-01T16:55:19+00:00"
  9918. },
  9919. {
  9920. "name": "sebastian/cli-parser",
  9921. "version": "1.0.1",
  9922. "source": {
  9923. "type": "git",
  9924. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9925. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  9926. },
  9927. "dist": {
  9928. "type": "zip",
  9929. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  9930. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  9931. "shasum": "",
  9932. "mirrors": [
  9933. {
  9934. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9935. "preferred": true
  9936. }
  9937. ]
  9938. },
  9939. "require": {
  9940. "php": ">=7.3"
  9941. },
  9942. "require-dev": {
  9943. "phpunit/phpunit": "^9.3"
  9944. },
  9945. "type": "library",
  9946. "extra": {
  9947. "branch-alias": {
  9948. "dev-master": "1.0-dev"
  9949. }
  9950. },
  9951. "autoload": {
  9952. "classmap": [
  9953. "src/"
  9954. ]
  9955. },
  9956. "notification-url": "https://packagist.org/downloads/",
  9957. "license": [
  9958. "BSD-3-Clause"
  9959. ],
  9960. "authors": [
  9961. {
  9962. "name": "Sebastian Bergmann",
  9963. "email": "sebastian@phpunit.de",
  9964. "role": "lead"
  9965. }
  9966. ],
  9967. "description": "Library for parsing CLI options",
  9968. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9969. "support": {
  9970. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9971. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  9972. },
  9973. "funding": [
  9974. {
  9975. "url": "https://github.com/sebastianbergmann",
  9976. "type": "github"
  9977. }
  9978. ],
  9979. "time": "2020-09-28T06:08:49+00:00"
  9980. },
  9981. {
  9982. "name": "sebastian/code-unit",
  9983. "version": "1.0.8",
  9984. "source": {
  9985. "type": "git",
  9986. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9987. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  9988. },
  9989. "dist": {
  9990. "type": "zip",
  9991. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9992. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9993. "shasum": "",
  9994. "mirrors": [
  9995. {
  9996. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9997. "preferred": true
  9998. }
  9999. ]
  10000. },
  10001. "require": {
  10002. "php": ">=7.3"
  10003. },
  10004. "require-dev": {
  10005. "phpunit/phpunit": "^9.3"
  10006. },
  10007. "type": "library",
  10008. "extra": {
  10009. "branch-alias": {
  10010. "dev-master": "1.0-dev"
  10011. }
  10012. },
  10013. "autoload": {
  10014. "classmap": [
  10015. "src/"
  10016. ]
  10017. },
  10018. "notification-url": "https://packagist.org/downloads/",
  10019. "license": [
  10020. "BSD-3-Clause"
  10021. ],
  10022. "authors": [
  10023. {
  10024. "name": "Sebastian Bergmann",
  10025. "email": "sebastian@phpunit.de",
  10026. "role": "lead"
  10027. }
  10028. ],
  10029. "description": "Collection of value objects that represent the PHP code units",
  10030. "homepage": "https://github.com/sebastianbergmann/code-unit",
  10031. "support": {
  10032. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  10033. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  10034. },
  10035. "funding": [
  10036. {
  10037. "url": "https://github.com/sebastianbergmann",
  10038. "type": "github"
  10039. }
  10040. ],
  10041. "time": "2020-10-26T13:08:54+00:00"
  10042. },
  10043. {
  10044. "name": "sebastian/code-unit-reverse-lookup",
  10045. "version": "2.0.3",
  10046. "source": {
  10047. "type": "git",
  10048. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  10049. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  10050. },
  10051. "dist": {
  10052. "type": "zip",
  10053. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  10054. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  10055. "shasum": "",
  10056. "mirrors": [
  10057. {
  10058. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10059. "preferred": true
  10060. }
  10061. ]
  10062. },
  10063. "require": {
  10064. "php": ">=7.3"
  10065. },
  10066. "require-dev": {
  10067. "phpunit/phpunit": "^9.3"
  10068. },
  10069. "type": "library",
  10070. "extra": {
  10071. "branch-alias": {
  10072. "dev-master": "2.0-dev"
  10073. }
  10074. },
  10075. "autoload": {
  10076. "classmap": [
  10077. "src/"
  10078. ]
  10079. },
  10080. "notification-url": "https://packagist.org/downloads/",
  10081. "license": [
  10082. "BSD-3-Clause"
  10083. ],
  10084. "authors": [
  10085. {
  10086. "name": "Sebastian Bergmann",
  10087. "email": "sebastian@phpunit.de"
  10088. }
  10089. ],
  10090. "description": "Looks up which function or method a line of code belongs to",
  10091. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10092. "support": {
  10093. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  10094. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  10095. },
  10096. "funding": [
  10097. {
  10098. "url": "https://github.com/sebastianbergmann",
  10099. "type": "github"
  10100. }
  10101. ],
  10102. "time": "2020-09-28T05:30:19+00:00"
  10103. },
  10104. {
  10105. "name": "sebastian/comparator",
  10106. "version": "4.0.8",
  10107. "source": {
  10108. "type": "git",
  10109. "url": "https://github.com/sebastianbergmann/comparator.git",
  10110. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  10111. },
  10112. "dist": {
  10113. "type": "zip",
  10114. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  10115. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  10116. "shasum": "",
  10117. "mirrors": [
  10118. {
  10119. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10120. "preferred": true
  10121. }
  10122. ]
  10123. },
  10124. "require": {
  10125. "php": ">=7.3",
  10126. "sebastian/diff": "^4.0",
  10127. "sebastian/exporter": "^4.0"
  10128. },
  10129. "require-dev": {
  10130. "phpunit/phpunit": "^9.3"
  10131. },
  10132. "type": "library",
  10133. "extra": {
  10134. "branch-alias": {
  10135. "dev-master": "4.0-dev"
  10136. }
  10137. },
  10138. "autoload": {
  10139. "classmap": [
  10140. "src/"
  10141. ]
  10142. },
  10143. "notification-url": "https://packagist.org/downloads/",
  10144. "license": [
  10145. "BSD-3-Clause"
  10146. ],
  10147. "authors": [
  10148. {
  10149. "name": "Sebastian Bergmann",
  10150. "email": "sebastian@phpunit.de"
  10151. },
  10152. {
  10153. "name": "Jeff Welch",
  10154. "email": "whatthejeff@gmail.com"
  10155. },
  10156. {
  10157. "name": "Volker Dusch",
  10158. "email": "github@wallbash.com"
  10159. },
  10160. {
  10161. "name": "Bernhard Schussek",
  10162. "email": "bschussek@2bepublished.at"
  10163. }
  10164. ],
  10165. "description": "Provides the functionality to compare PHP values for equality",
  10166. "homepage": "https://github.com/sebastianbergmann/comparator",
  10167. "keywords": [
  10168. "comparator",
  10169. "compare",
  10170. "equality"
  10171. ],
  10172. "support": {
  10173. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10174. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  10175. },
  10176. "funding": [
  10177. {
  10178. "url": "https://github.com/sebastianbergmann",
  10179. "type": "github"
  10180. }
  10181. ],
  10182. "time": "2022-09-14T12:41:17+00:00"
  10183. },
  10184. {
  10185. "name": "sebastian/complexity",
  10186. "version": "2.0.3",
  10187. "source": {
  10188. "type": "git",
  10189. "url": "https://github.com/sebastianbergmann/complexity.git",
  10190. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a"
  10191. },
  10192. "dist": {
  10193. "type": "zip",
  10194. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a",
  10195. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a",
  10196. "shasum": "",
  10197. "mirrors": [
  10198. {
  10199. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10200. "preferred": true
  10201. }
  10202. ]
  10203. },
  10204. "require": {
  10205. "nikic/php-parser": "^4.18 || ^5.0",
  10206. "php": ">=7.3"
  10207. },
  10208. "require-dev": {
  10209. "phpunit/phpunit": "^9.3"
  10210. },
  10211. "type": "library",
  10212. "extra": {
  10213. "branch-alias": {
  10214. "dev-master": "2.0-dev"
  10215. }
  10216. },
  10217. "autoload": {
  10218. "classmap": [
  10219. "src/"
  10220. ]
  10221. },
  10222. "notification-url": "https://packagist.org/downloads/",
  10223. "license": [
  10224. "BSD-3-Clause"
  10225. ],
  10226. "authors": [
  10227. {
  10228. "name": "Sebastian Bergmann",
  10229. "email": "sebastian@phpunit.de",
  10230. "role": "lead"
  10231. }
  10232. ],
  10233. "description": "Library for calculating the complexity of PHP code units",
  10234. "homepage": "https://github.com/sebastianbergmann/complexity",
  10235. "support": {
  10236. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  10237. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3"
  10238. },
  10239. "funding": [
  10240. {
  10241. "url": "https://github.com/sebastianbergmann",
  10242. "type": "github"
  10243. }
  10244. ],
  10245. "time": "2023-12-22T06:19:30+00:00"
  10246. },
  10247. {
  10248. "name": "sebastian/diff",
  10249. "version": "4.0.5",
  10250. "source": {
  10251. "type": "git",
  10252. "url": "https://github.com/sebastianbergmann/diff.git",
  10253. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131"
  10254. },
  10255. "dist": {
  10256. "type": "zip",
  10257. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  10258. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  10259. "shasum": "",
  10260. "mirrors": [
  10261. {
  10262. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10263. "preferred": true
  10264. }
  10265. ]
  10266. },
  10267. "require": {
  10268. "php": ">=7.3"
  10269. },
  10270. "require-dev": {
  10271. "phpunit/phpunit": "^9.3",
  10272. "symfony/process": "^4.2 || ^5"
  10273. },
  10274. "type": "library",
  10275. "extra": {
  10276. "branch-alias": {
  10277. "dev-master": "4.0-dev"
  10278. }
  10279. },
  10280. "autoload": {
  10281. "classmap": [
  10282. "src/"
  10283. ]
  10284. },
  10285. "notification-url": "https://packagist.org/downloads/",
  10286. "license": [
  10287. "BSD-3-Clause"
  10288. ],
  10289. "authors": [
  10290. {
  10291. "name": "Sebastian Bergmann",
  10292. "email": "sebastian@phpunit.de"
  10293. },
  10294. {
  10295. "name": "Kore Nordmann",
  10296. "email": "mail@kore-nordmann.de"
  10297. }
  10298. ],
  10299. "description": "Diff implementation",
  10300. "homepage": "https://github.com/sebastianbergmann/diff",
  10301. "keywords": [
  10302. "diff",
  10303. "udiff",
  10304. "unidiff",
  10305. "unified diff"
  10306. ],
  10307. "support": {
  10308. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10309. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.5"
  10310. },
  10311. "funding": [
  10312. {
  10313. "url": "https://github.com/sebastianbergmann",
  10314. "type": "github"
  10315. }
  10316. ],
  10317. "time": "2023-05-07T05:35:17+00:00"
  10318. },
  10319. {
  10320. "name": "sebastian/environment",
  10321. "version": "5.1.5",
  10322. "source": {
  10323. "type": "git",
  10324. "url": "https://github.com/sebastianbergmann/environment.git",
  10325. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  10326. },
  10327. "dist": {
  10328. "type": "zip",
  10329. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  10330. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  10331. "shasum": "",
  10332. "mirrors": [
  10333. {
  10334. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10335. "preferred": true
  10336. }
  10337. ]
  10338. },
  10339. "require": {
  10340. "php": ">=7.3"
  10341. },
  10342. "require-dev": {
  10343. "phpunit/phpunit": "^9.3"
  10344. },
  10345. "suggest": {
  10346. "ext-posix": "*"
  10347. },
  10348. "type": "library",
  10349. "extra": {
  10350. "branch-alias": {
  10351. "dev-master": "5.1-dev"
  10352. }
  10353. },
  10354. "autoload": {
  10355. "classmap": [
  10356. "src/"
  10357. ]
  10358. },
  10359. "notification-url": "https://packagist.org/downloads/",
  10360. "license": [
  10361. "BSD-3-Clause"
  10362. ],
  10363. "authors": [
  10364. {
  10365. "name": "Sebastian Bergmann",
  10366. "email": "sebastian@phpunit.de"
  10367. }
  10368. ],
  10369. "description": "Provides functionality to handle HHVM/PHP environments",
  10370. "homepage": "http://www.github.com/sebastianbergmann/environment",
  10371. "keywords": [
  10372. "Xdebug",
  10373. "environment",
  10374. "hhvm"
  10375. ],
  10376. "support": {
  10377. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10378. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  10379. },
  10380. "funding": [
  10381. {
  10382. "url": "https://github.com/sebastianbergmann",
  10383. "type": "github"
  10384. }
  10385. ],
  10386. "time": "2023-02-03T06:03:51+00:00"
  10387. },
  10388. {
  10389. "name": "sebastian/exporter",
  10390. "version": "4.0.5",
  10391. "source": {
  10392. "type": "git",
  10393. "url": "https://github.com/sebastianbergmann/exporter.git",
  10394. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d"
  10395. },
  10396. "dist": {
  10397. "type": "zip",
  10398. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  10399. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  10400. "shasum": "",
  10401. "mirrors": [
  10402. {
  10403. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10404. "preferred": true
  10405. }
  10406. ]
  10407. },
  10408. "require": {
  10409. "php": ">=7.3",
  10410. "sebastian/recursion-context": "^4.0"
  10411. },
  10412. "require-dev": {
  10413. "ext-mbstring": "*",
  10414. "phpunit/phpunit": "^9.3"
  10415. },
  10416. "type": "library",
  10417. "extra": {
  10418. "branch-alias": {
  10419. "dev-master": "4.0-dev"
  10420. }
  10421. },
  10422. "autoload": {
  10423. "classmap": [
  10424. "src/"
  10425. ]
  10426. },
  10427. "notification-url": "https://packagist.org/downloads/",
  10428. "license": [
  10429. "BSD-3-Clause"
  10430. ],
  10431. "authors": [
  10432. {
  10433. "name": "Sebastian Bergmann",
  10434. "email": "sebastian@phpunit.de"
  10435. },
  10436. {
  10437. "name": "Jeff Welch",
  10438. "email": "whatthejeff@gmail.com"
  10439. },
  10440. {
  10441. "name": "Volker Dusch",
  10442. "email": "github@wallbash.com"
  10443. },
  10444. {
  10445. "name": "Adam Harvey",
  10446. "email": "aharvey@php.net"
  10447. },
  10448. {
  10449. "name": "Bernhard Schussek",
  10450. "email": "bschussek@gmail.com"
  10451. }
  10452. ],
  10453. "description": "Provides the functionality to export PHP variables for visualization",
  10454. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10455. "keywords": [
  10456. "export",
  10457. "exporter"
  10458. ],
  10459. "support": {
  10460. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10461. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5"
  10462. },
  10463. "funding": [
  10464. {
  10465. "url": "https://github.com/sebastianbergmann",
  10466. "type": "github"
  10467. }
  10468. ],
  10469. "time": "2022-09-14T06:03:37+00:00"
  10470. },
  10471. {
  10472. "name": "sebastian/global-state",
  10473. "version": "5.0.6",
  10474. "source": {
  10475. "type": "git",
  10476. "url": "https://github.com/sebastianbergmann/global-state.git",
  10477. "reference": "bde739e7565280bda77be70044ac1047bc007e34"
  10478. },
  10479. "dist": {
  10480. "type": "zip",
  10481. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bde739e7565280bda77be70044ac1047bc007e34",
  10482. "reference": "bde739e7565280bda77be70044ac1047bc007e34",
  10483. "shasum": "",
  10484. "mirrors": [
  10485. {
  10486. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10487. "preferred": true
  10488. }
  10489. ]
  10490. },
  10491. "require": {
  10492. "php": ">=7.3",
  10493. "sebastian/object-reflector": "^2.0",
  10494. "sebastian/recursion-context": "^4.0"
  10495. },
  10496. "require-dev": {
  10497. "ext-dom": "*",
  10498. "phpunit/phpunit": "^9.3"
  10499. },
  10500. "suggest": {
  10501. "ext-uopz": "*"
  10502. },
  10503. "type": "library",
  10504. "extra": {
  10505. "branch-alias": {
  10506. "dev-master": "5.0-dev"
  10507. }
  10508. },
  10509. "autoload": {
  10510. "classmap": [
  10511. "src/"
  10512. ]
  10513. },
  10514. "notification-url": "https://packagist.org/downloads/",
  10515. "license": [
  10516. "BSD-3-Clause"
  10517. ],
  10518. "authors": [
  10519. {
  10520. "name": "Sebastian Bergmann",
  10521. "email": "sebastian@phpunit.de"
  10522. }
  10523. ],
  10524. "description": "Snapshotting of global state",
  10525. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  10526. "keywords": [
  10527. "global state"
  10528. ],
  10529. "support": {
  10530. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10531. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.6"
  10532. },
  10533. "funding": [
  10534. {
  10535. "url": "https://github.com/sebastianbergmann",
  10536. "type": "github"
  10537. }
  10538. ],
  10539. "time": "2023-08-02T09:26:13+00:00"
  10540. },
  10541. {
  10542. "name": "sebastian/lines-of-code",
  10543. "version": "1.0.x-dev",
  10544. "source": {
  10545. "type": "git",
  10546. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10547. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5"
  10548. },
  10549. "dist": {
  10550. "type": "zip",
  10551. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  10552. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  10553. "shasum": "",
  10554. "mirrors": [
  10555. {
  10556. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10557. "preferred": true
  10558. }
  10559. ]
  10560. },
  10561. "require": {
  10562. "nikic/php-parser": "^4.18 || ^5.0",
  10563. "php": ">=7.3"
  10564. },
  10565. "require-dev": {
  10566. "phpunit/phpunit": "^9.3"
  10567. },
  10568. "type": "library",
  10569. "extra": {
  10570. "branch-alias": {
  10571. "dev-master": "1.0-dev"
  10572. }
  10573. },
  10574. "autoload": {
  10575. "classmap": [
  10576. "src/"
  10577. ]
  10578. },
  10579. "notification-url": "https://packagist.org/downloads/",
  10580. "license": [
  10581. "BSD-3-Clause"
  10582. ],
  10583. "authors": [
  10584. {
  10585. "name": "Sebastian Bergmann",
  10586. "email": "sebastian@phpunit.de",
  10587. "role": "lead"
  10588. }
  10589. ],
  10590. "description": "Library for counting the lines of code in PHP source code",
  10591. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10592. "support": {
  10593. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10594. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4"
  10595. },
  10596. "funding": [
  10597. {
  10598. "url": "https://github.com/sebastianbergmann",
  10599. "type": "github"
  10600. }
  10601. ],
  10602. "time": "2023-12-22T06:20:34+00:00"
  10603. },
  10604. {
  10605. "name": "sebastian/object-enumerator",
  10606. "version": "4.0.4",
  10607. "source": {
  10608. "type": "git",
  10609. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10610. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  10611. },
  10612. "dist": {
  10613. "type": "zip",
  10614. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  10615. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  10616. "shasum": "",
  10617. "mirrors": [
  10618. {
  10619. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10620. "preferred": true
  10621. }
  10622. ]
  10623. },
  10624. "require": {
  10625. "php": ">=7.3",
  10626. "sebastian/object-reflector": "^2.0",
  10627. "sebastian/recursion-context": "^4.0"
  10628. },
  10629. "require-dev": {
  10630. "phpunit/phpunit": "^9.3"
  10631. },
  10632. "type": "library",
  10633. "extra": {
  10634. "branch-alias": {
  10635. "dev-master": "4.0-dev"
  10636. }
  10637. },
  10638. "autoload": {
  10639. "classmap": [
  10640. "src/"
  10641. ]
  10642. },
  10643. "notification-url": "https://packagist.org/downloads/",
  10644. "license": [
  10645. "BSD-3-Clause"
  10646. ],
  10647. "authors": [
  10648. {
  10649. "name": "Sebastian Bergmann",
  10650. "email": "sebastian@phpunit.de"
  10651. }
  10652. ],
  10653. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10654. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10655. "support": {
  10656. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10657. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  10658. },
  10659. "funding": [
  10660. {
  10661. "url": "https://github.com/sebastianbergmann",
  10662. "type": "github"
  10663. }
  10664. ],
  10665. "time": "2020-10-26T13:12:34+00:00"
  10666. },
  10667. {
  10668. "name": "sebastian/object-reflector",
  10669. "version": "2.0.4",
  10670. "source": {
  10671. "type": "git",
  10672. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10673. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  10674. },
  10675. "dist": {
  10676. "type": "zip",
  10677. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10678. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10679. "shasum": "",
  10680. "mirrors": [
  10681. {
  10682. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10683. "preferred": true
  10684. }
  10685. ]
  10686. },
  10687. "require": {
  10688. "php": ">=7.3"
  10689. },
  10690. "require-dev": {
  10691. "phpunit/phpunit": "^9.3"
  10692. },
  10693. "type": "library",
  10694. "extra": {
  10695. "branch-alias": {
  10696. "dev-master": "2.0-dev"
  10697. }
  10698. },
  10699. "autoload": {
  10700. "classmap": [
  10701. "src/"
  10702. ]
  10703. },
  10704. "notification-url": "https://packagist.org/downloads/",
  10705. "license": [
  10706. "BSD-3-Clause"
  10707. ],
  10708. "authors": [
  10709. {
  10710. "name": "Sebastian Bergmann",
  10711. "email": "sebastian@phpunit.de"
  10712. }
  10713. ],
  10714. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10715. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10716. "support": {
  10717. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10718. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  10719. },
  10720. "funding": [
  10721. {
  10722. "url": "https://github.com/sebastianbergmann",
  10723. "type": "github"
  10724. }
  10725. ],
  10726. "time": "2020-10-26T13:14:26+00:00"
  10727. },
  10728. {
  10729. "name": "sebastian/recursion-context",
  10730. "version": "4.0.5",
  10731. "source": {
  10732. "type": "git",
  10733. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10734. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  10735. },
  10736. "dist": {
  10737. "type": "zip",
  10738. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10739. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10740. "shasum": "",
  10741. "mirrors": [
  10742. {
  10743. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10744. "preferred": true
  10745. }
  10746. ]
  10747. },
  10748. "require": {
  10749. "php": ">=7.3"
  10750. },
  10751. "require-dev": {
  10752. "phpunit/phpunit": "^9.3"
  10753. },
  10754. "type": "library",
  10755. "extra": {
  10756. "branch-alias": {
  10757. "dev-master": "4.0-dev"
  10758. }
  10759. },
  10760. "autoload": {
  10761. "classmap": [
  10762. "src/"
  10763. ]
  10764. },
  10765. "notification-url": "https://packagist.org/downloads/",
  10766. "license": [
  10767. "BSD-3-Clause"
  10768. ],
  10769. "authors": [
  10770. {
  10771. "name": "Sebastian Bergmann",
  10772. "email": "sebastian@phpunit.de"
  10773. },
  10774. {
  10775. "name": "Jeff Welch",
  10776. "email": "whatthejeff@gmail.com"
  10777. },
  10778. {
  10779. "name": "Adam Harvey",
  10780. "email": "aharvey@php.net"
  10781. }
  10782. ],
  10783. "description": "Provides functionality to recursively process PHP variables",
  10784. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10785. "support": {
  10786. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10787. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  10788. },
  10789. "funding": [
  10790. {
  10791. "url": "https://github.com/sebastianbergmann",
  10792. "type": "github"
  10793. }
  10794. ],
  10795. "time": "2023-02-03T06:07:39+00:00"
  10796. },
  10797. {
  10798. "name": "sebastian/resource-operations",
  10799. "version": "3.0.3",
  10800. "source": {
  10801. "type": "git",
  10802. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10803. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  10804. },
  10805. "dist": {
  10806. "type": "zip",
  10807. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  10808. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  10809. "shasum": "",
  10810. "mirrors": [
  10811. {
  10812. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10813. "preferred": true
  10814. }
  10815. ]
  10816. },
  10817. "require": {
  10818. "php": ">=7.3"
  10819. },
  10820. "require-dev": {
  10821. "phpunit/phpunit": "^9.0"
  10822. },
  10823. "type": "library",
  10824. "extra": {
  10825. "branch-alias": {
  10826. "dev-master": "3.0-dev"
  10827. }
  10828. },
  10829. "autoload": {
  10830. "classmap": [
  10831. "src/"
  10832. ]
  10833. },
  10834. "notification-url": "https://packagist.org/downloads/",
  10835. "license": [
  10836. "BSD-3-Clause"
  10837. ],
  10838. "authors": [
  10839. {
  10840. "name": "Sebastian Bergmann",
  10841. "email": "sebastian@phpunit.de"
  10842. }
  10843. ],
  10844. "description": "Provides a list of PHP built-in functions that operate on resources",
  10845. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10846. "support": {
  10847. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  10848. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  10849. },
  10850. "funding": [
  10851. {
  10852. "url": "https://github.com/sebastianbergmann",
  10853. "type": "github"
  10854. }
  10855. ],
  10856. "time": "2020-09-28T06:45:17+00:00"
  10857. },
  10858. {
  10859. "name": "sebastian/type",
  10860. "version": "3.2.1",
  10861. "source": {
  10862. "type": "git",
  10863. "url": "https://github.com/sebastianbergmann/type.git",
  10864. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  10865. },
  10866. "dist": {
  10867. "type": "zip",
  10868. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10869. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10870. "shasum": "",
  10871. "mirrors": [
  10872. {
  10873. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10874. "preferred": true
  10875. }
  10876. ]
  10877. },
  10878. "require": {
  10879. "php": ">=7.3"
  10880. },
  10881. "require-dev": {
  10882. "phpunit/phpunit": "^9.5"
  10883. },
  10884. "type": "library",
  10885. "extra": {
  10886. "branch-alias": {
  10887. "dev-master": "3.2-dev"
  10888. }
  10889. },
  10890. "autoload": {
  10891. "classmap": [
  10892. "src/"
  10893. ]
  10894. },
  10895. "notification-url": "https://packagist.org/downloads/",
  10896. "license": [
  10897. "BSD-3-Clause"
  10898. ],
  10899. "authors": [
  10900. {
  10901. "name": "Sebastian Bergmann",
  10902. "email": "sebastian@phpunit.de",
  10903. "role": "lead"
  10904. }
  10905. ],
  10906. "description": "Collection of value objects that represent the types of the PHP type system",
  10907. "homepage": "https://github.com/sebastianbergmann/type",
  10908. "support": {
  10909. "issues": "https://github.com/sebastianbergmann/type/issues",
  10910. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  10911. },
  10912. "funding": [
  10913. {
  10914. "url": "https://github.com/sebastianbergmann",
  10915. "type": "github"
  10916. }
  10917. ],
  10918. "time": "2023-02-03T06:13:03+00:00"
  10919. },
  10920. {
  10921. "name": "sebastian/version",
  10922. "version": "3.0.2",
  10923. "source": {
  10924. "type": "git",
  10925. "url": "https://github.com/sebastianbergmann/version.git",
  10926. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  10927. },
  10928. "dist": {
  10929. "type": "zip",
  10930. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  10931. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  10932. "shasum": "",
  10933. "mirrors": [
  10934. {
  10935. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10936. "preferred": true
  10937. }
  10938. ]
  10939. },
  10940. "require": {
  10941. "php": ">=7.3"
  10942. },
  10943. "type": "library",
  10944. "extra": {
  10945. "branch-alias": {
  10946. "dev-master": "3.0-dev"
  10947. }
  10948. },
  10949. "autoload": {
  10950. "classmap": [
  10951. "src/"
  10952. ]
  10953. },
  10954. "notification-url": "https://packagist.org/downloads/",
  10955. "license": [
  10956. "BSD-3-Clause"
  10957. ],
  10958. "authors": [
  10959. {
  10960. "name": "Sebastian Bergmann",
  10961. "email": "sebastian@phpunit.de",
  10962. "role": "lead"
  10963. }
  10964. ],
  10965. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10966. "homepage": "https://github.com/sebastianbergmann/version",
  10967. "support": {
  10968. "issues": "https://github.com/sebastianbergmann/version/issues",
  10969. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  10970. },
  10971. "funding": [
  10972. {
  10973. "url": "https://github.com/sebastianbergmann",
  10974. "type": "github"
  10975. }
  10976. ],
  10977. "time": "2020-09-28T06:39:44+00:00"
  10978. },
  10979. {
  10980. "name": "theseer/tokenizer",
  10981. "version": "1.2.1",
  10982. "source": {
  10983. "type": "git",
  10984. "url": "https://github.com/theseer/tokenizer.git",
  10985. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  10986. },
  10987. "dist": {
  10988. "type": "zip",
  10989. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  10990. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  10991. "shasum": "",
  10992. "mirrors": [
  10993. {
  10994. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10995. "preferred": true
  10996. }
  10997. ]
  10998. },
  10999. "require": {
  11000. "ext-dom": "*",
  11001. "ext-tokenizer": "*",
  11002. "ext-xmlwriter": "*",
  11003. "php": "^7.2 || ^8.0"
  11004. },
  11005. "type": "library",
  11006. "autoload": {
  11007. "classmap": [
  11008. "src/"
  11009. ]
  11010. },
  11011. "notification-url": "https://packagist.org/downloads/",
  11012. "license": [
  11013. "BSD-3-Clause"
  11014. ],
  11015. "authors": [
  11016. {
  11017. "name": "Arne Blankerts",
  11018. "email": "arne@blankerts.de",
  11019. "role": "Developer"
  11020. }
  11021. ],
  11022. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11023. "support": {
  11024. "issues": "https://github.com/theseer/tokenizer/issues",
  11025. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  11026. },
  11027. "funding": [
  11028. {
  11029. "url": "https://github.com/theseer",
  11030. "type": "github"
  11031. }
  11032. ],
  11033. "time": "2021-07-28T10:34:58+00:00"
  11034. }
  11035. ],
  11036. "aliases": [],
  11037. "minimum-stability": "dev",
  11038. "stability-flags": [],
  11039. "prefer-stable": true,
  11040. "prefer-lowest": false,
  11041. "platform": {
  11042. "php": "^7.3|^8.0"
  11043. },
  11044. "platform-dev": [],
  11045. "plugin-api-version": "2.3.0"
  11046. }