composer.lock 452 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594
  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": "7742607248e108873cb440f8fc096651",
  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/client",
  64. "version": "1.5.32",
  65. "source": {
  66. "type": "git",
  67. "url": "https://github.com/aliyun/openapi-sdk-php-client.git",
  68. "reference": "5bc6f6d660797dcee2c3aef29700ab41ee764f4d"
  69. },
  70. "dist": {
  71. "type": "zip",
  72. "url": "https://api.github.com/repos/aliyun/openapi-sdk-php-client/zipball/5bc6f6d660797dcee2c3aef29700ab41ee764f4d",
  73. "reference": "5bc6f6d660797dcee2c3aef29700ab41ee764f4d",
  74. "shasum": ""
  75. },
  76. "require": {
  77. "adbario/php-dot-notation": "^2.4.1",
  78. "clagiordano/weblibs-configmanager": "^1.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. "mtdowling/jmespath.php": "^2.5",
  88. "php": ">=5.5"
  89. },
  90. "require-dev": {
  91. "composer/composer": "^1.8",
  92. "drupal/coder": "^8.3",
  93. "ext-dom": "*",
  94. "ext-pcre": "*",
  95. "ext-sockets": "*",
  96. "ext-spl": "*",
  97. "league/climate": "^3.2.4",
  98. "mikey179/vfsstream": "^1.6",
  99. "monolog/monolog": "^1.24",
  100. "phpunit/phpunit": "^5.7|^6.6|^7.5|^8.5|^9.5",
  101. "psr/cache": "^1.0",
  102. "symfony/dotenv": "^3.4",
  103. "symfony/var-dumper": "^3.4"
  104. },
  105. "suggest": {
  106. "ext-sockets": "To use client-side monitoring"
  107. },
  108. "type": "library",
  109. "autoload": {
  110. "files": [
  111. "src/Functions.php"
  112. ],
  113. "psr-4": {
  114. "AlibabaCloud\\Client\\": "src"
  115. }
  116. },
  117. "notification-url": "https://packagist.org/downloads/",
  118. "license": [
  119. "Apache-2.0"
  120. ],
  121. "authors": [
  122. {
  123. "name": "Alibaba Cloud SDK",
  124. "email": "sdk-team@alibabacloud.com",
  125. "homepage": "http://www.alibabacloud.com"
  126. }
  127. ],
  128. "description": "Alibaba Cloud Client for PHP - Use Alibaba Cloud in your PHP project",
  129. "homepage": "https://www.alibabacloud.com/",
  130. "keywords": [
  131. "alibaba",
  132. "alibabacloud",
  133. "aliyun",
  134. "client",
  135. "cloud",
  136. "library",
  137. "sdk",
  138. "tool"
  139. ],
  140. "support": {
  141. "issues": "https://github.com/aliyun/openapi-sdk-php-client/issues",
  142. "source": "https://github.com/aliyun/openapi-sdk-php-client"
  143. },
  144. "time": "2022-12-09T04:05:55+00:00"
  145. },
  146. {
  147. "name": "alibabacloud/credentials",
  148. "version": "1.1.5",
  149. "source": {
  150. "type": "git",
  151. "url": "https://github.com/aliyun/credentials-php.git",
  152. "reference": "1d8383ceef695974a88a3859c42e235fd2e3981a"
  153. },
  154. "dist": {
  155. "type": "zip",
  156. "url": "https://api.github.com/repos/aliyun/credentials-php/zipball/1d8383ceef695974a88a3859c42e235fd2e3981a",
  157. "reference": "1d8383ceef695974a88a3859c42e235fd2e3981a",
  158. "shasum": ""
  159. },
  160. "require": {
  161. "adbario/php-dot-notation": "^2.2",
  162. "alibabacloud/tea": "^3.0",
  163. "ext-curl": "*",
  164. "ext-json": "*",
  165. "ext-libxml": "*",
  166. "ext-mbstring": "*",
  167. "ext-openssl": "*",
  168. "ext-simplexml": "*",
  169. "ext-xmlwriter": "*",
  170. "guzzlehttp/guzzle": "^6.3|^7.0",
  171. "php": ">=5.6"
  172. },
  173. "require-dev": {
  174. "composer/composer": "^1.8",
  175. "drupal/coder": "^8.3",
  176. "ext-dom": "*",
  177. "ext-pcre": "*",
  178. "ext-sockets": "*",
  179. "ext-spl": "*",
  180. "mikey179/vfsstream": "^1.6",
  181. "monolog/monolog": "^1.24",
  182. "phpunit/phpunit": "^5.7|^6.6|^7.5",
  183. "psr/cache": "^1.0",
  184. "symfony/dotenv": "^3.4",
  185. "symfony/var-dumper": "^3.4"
  186. },
  187. "suggest": {
  188. "ext-sockets": "To use client-side monitoring"
  189. },
  190. "type": "library",
  191. "autoload": {
  192. "psr-4": {
  193. "AlibabaCloud\\Credentials\\": "src"
  194. }
  195. },
  196. "notification-url": "https://packagist.org/downloads/",
  197. "license": [
  198. "Apache-2.0"
  199. ],
  200. "authors": [
  201. {
  202. "name": "Alibaba Cloud SDK",
  203. "email": "sdk-team@alibabacloud.com",
  204. "homepage": "http://www.alibabacloud.com"
  205. }
  206. ],
  207. "description": "Alibaba Cloud Credentials for PHP",
  208. "homepage": "https://www.alibabacloud.com/",
  209. "keywords": [
  210. "alibaba",
  211. "alibabacloud",
  212. "aliyun",
  213. "client",
  214. "cloud",
  215. "credentials",
  216. "library",
  217. "sdk",
  218. "tool"
  219. ],
  220. "support": {
  221. "issues": "https://github.com/aliyun/credentials-php/issues",
  222. "source": "https://github.com/aliyun/credentials-php"
  223. },
  224. "time": "2023-04-11T02:12:12+00:00"
  225. },
  226. {
  227. "name": "alibabacloud/darabonba-openapi",
  228. "version": "0.2.10",
  229. "source": {
  230. "type": "git",
  231. "url": "https://github.com/alibabacloud-sdk-php/darabonba-openapi.git",
  232. "reference": "88f42443e1b5c9d086d0444baa4a874f8636f7bb"
  233. },
  234. "dist": {
  235. "type": "zip",
  236. "url": "https://api.github.com/repos/alibabacloud-sdk-php/darabonba-openapi/zipball/88f42443e1b5c9d086d0444baa4a874f8636f7bb",
  237. "reference": "88f42443e1b5c9d086d0444baa4a874f8636f7bb",
  238. "shasum": ""
  239. },
  240. "require": {
  241. "alibabacloud/credentials": "^1.1",
  242. "alibabacloud/gateway-spi": "^1",
  243. "alibabacloud/openapi-util": "^0.1.10|^0.2.1",
  244. "alibabacloud/tea-utils": "^0.2.19",
  245. "alibabacloud/tea-xml": "^0.2",
  246. "php": ">5.5"
  247. },
  248. "type": "library",
  249. "autoload": {
  250. "psr-4": {
  251. "Darabonba\\OpenApi\\": "src"
  252. }
  253. },
  254. "notification-url": "https://packagist.org/downloads/",
  255. "license": [
  256. "Apache-2.0"
  257. ],
  258. "authors": [
  259. {
  260. "name": "Alibaba Cloud SDK",
  261. "email": "sdk-team@alibabacloud.com"
  262. }
  263. ],
  264. "description": "Alibaba Cloud OpenApi Client",
  265. "support": {
  266. "issues": "https://github.com/alibabacloud-sdk-php/darabonba-openapi/issues",
  267. "source": "https://github.com/alibabacloud-sdk-php/darabonba-openapi/tree/0.2.10"
  268. },
  269. "time": "2023-11-23T07:01:20+00:00"
  270. },
  271. {
  272. "name": "alibabacloud/dm-20151123",
  273. "version": "1.0.9",
  274. "source": {
  275. "type": "git",
  276. "url": "https://github.com/alibabacloud-sdk-php/dm-20151123.git",
  277. "reference": "b167d114543dcde5cf70afc893844b47087415e2"
  278. },
  279. "dist": {
  280. "type": "zip",
  281. "url": "https://api.github.com/repos/alibabacloud-sdk-php/dm-20151123/zipball/b167d114543dcde5cf70afc893844b47087415e2",
  282. "reference": "b167d114543dcde5cf70afc893844b47087415e2",
  283. "shasum": ""
  284. },
  285. "require": {
  286. "alibabacloud/darabonba-openapi": "^0.2.10",
  287. "alibabacloud/endpoint-util": "^0.1.0",
  288. "alibabacloud/openapi-util": "^0.1.10|^0.2.1",
  289. "alibabacloud/tea-utils": "^0.2.19",
  290. "php": ">5.5"
  291. },
  292. "type": "library",
  293. "autoload": {
  294. "psr-4": {
  295. "AlibabaCloud\\SDK\\Dm\\V20151123\\": "src"
  296. }
  297. },
  298. "notification-url": "https://packagist.org/downloads/",
  299. "license": [
  300. "Apache-2.0"
  301. ],
  302. "authors": [
  303. {
  304. "name": "Alibaba Cloud SDK",
  305. "email": "sdk-team@alibabacloud.com"
  306. }
  307. ],
  308. "description": "Alibaba Cloud Dm (20151123) SDK Library for PHP",
  309. "support": {
  310. "source": "https://github.com/alibabacloud-sdk-php/dm-20151123/tree/1.0.9"
  311. },
  312. "time": "2024-01-15T17:08:44+00:00"
  313. },
  314. {
  315. "name": "alibabacloud/dm-20170622",
  316. "version": "1.2.0",
  317. "source": {
  318. "type": "git",
  319. "url": "https://github.com/alibabacloud-sdk-php/dm-20170622.git",
  320. "reference": "cf41389081797e75e8f5c430ec24df64ffc2c67d"
  321. },
  322. "dist": {
  323. "type": "zip",
  324. "url": "https://api.github.com/repos/alibabacloud-sdk-php/dm-20170622/zipball/cf41389081797e75e8f5c430ec24df64ffc2c67d",
  325. "reference": "cf41389081797e75e8f5c430ec24df64ffc2c67d",
  326. "shasum": "",
  327. "mirrors": [
  328. {
  329. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  330. "preferred": true
  331. }
  332. ]
  333. },
  334. "require": {
  335. "alibabacloud/darabonba-openapi": "^0.2.10",
  336. "alibabacloud/endpoint-util": "^0.1.0",
  337. "alibabacloud/openapi-util": "^0.1.10|^0.2.1",
  338. "alibabacloud/tea-utils": "^0.2.19",
  339. "php": ">5.5"
  340. },
  341. "type": "library",
  342. "autoload": {
  343. "psr-4": {
  344. "AlibabaCloud\\SDK\\Dm\\V20170622\\": "src"
  345. }
  346. },
  347. "notification-url": "https://packagist.org/downloads/",
  348. "license": [
  349. "Apache-2.0"
  350. ],
  351. "authors": [
  352. {
  353. "name": "Alibaba Cloud SDK",
  354. "email": "sdk-team@alibabacloud.com"
  355. }
  356. ],
  357. "description": "Alibaba Cloud Dm (20170622) SDK Library for PHP",
  358. "support": {
  359. "source": "https://github.com/alibabacloud-sdk-php/dm-20170622/tree/1.2.0"
  360. },
  361. "time": "2024-01-15T17:09:47+00:00"
  362. },
  363. {
  364. "name": "alibabacloud/dysmsapi-20170525",
  365. "version": "2.0.24",
  366. "source": {
  367. "type": "git",
  368. "url": "https://github.com/alibabacloud-sdk-php/Dysmsapi-20170525.git",
  369. "reference": "75d8a8c7259f53e58ba3330e004150841be6010d"
  370. },
  371. "dist": {
  372. "type": "zip",
  373. "url": "https://api.github.com/repos/alibabacloud-sdk-php/Dysmsapi-20170525/zipball/75d8a8c7259f53e58ba3330e004150841be6010d",
  374. "reference": "75d8a8c7259f53e58ba3330e004150841be6010d",
  375. "shasum": ""
  376. },
  377. "require": {
  378. "alibabacloud/darabonba-openapi": "^0.2.8",
  379. "alibabacloud/endpoint-util": "^0.1.0",
  380. "alibabacloud/openapi-util": "^0.1.10|^0.2.1",
  381. "alibabacloud/tea-utils": "^0.2.19",
  382. "php": ">5.5"
  383. },
  384. "type": "library",
  385. "autoload": {
  386. "psr-4": {
  387. "AlibabaCloud\\SDK\\Dysmsapi\\V20170525\\": "src"
  388. }
  389. },
  390. "notification-url": "https://packagist.org/downloads/",
  391. "license": [
  392. "Apache-2.0"
  393. ],
  394. "authors": [
  395. {
  396. "name": "Alibaba Cloud SDK",
  397. "email": "sdk-team@alibabacloud.com"
  398. }
  399. ],
  400. "description": "Alibaba Cloud Dysmsapi (20170525) SDK Library for PHP",
  401. "support": {
  402. "source": "https://github.com/alibabacloud-sdk-php/Dysmsapi-20170525/tree/2.0.24"
  403. },
  404. "time": "2023-07-04T11:32:11+00:00"
  405. },
  406. {
  407. "name": "alibabacloud/endpoint-util",
  408. "version": "0.1.1",
  409. "source": {
  410. "type": "git",
  411. "url": "https://github.com/alibabacloud-sdk-php/endpoint-util.git",
  412. "reference": "f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5"
  413. },
  414. "dist": {
  415. "type": "zip",
  416. "url": "https://api.github.com/repos/alibabacloud-sdk-php/endpoint-util/zipball/f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5",
  417. "reference": "f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5",
  418. "shasum": ""
  419. },
  420. "require": {
  421. "php": ">5.5"
  422. },
  423. "require-dev": {
  424. "phpunit/phpunit": "^4.8.35|^5.4.3"
  425. },
  426. "type": "library",
  427. "autoload": {
  428. "psr-4": {
  429. "AlibabaCloud\\Endpoint\\": "src"
  430. }
  431. },
  432. "notification-url": "https://packagist.org/downloads/",
  433. "license": [
  434. "Apache-2.0"
  435. ],
  436. "authors": [
  437. {
  438. "name": "Alibaba Cloud SDK",
  439. "email": "sdk-team@alibabacloud.com"
  440. }
  441. ],
  442. "description": "Alibaba Cloud Endpoint Library for PHP",
  443. "support": {
  444. "source": "https://github.com/alibabacloud-sdk-php/endpoint-util/tree/0.1.1"
  445. },
  446. "time": "2020-06-04T10:57:15+00:00"
  447. },
  448. {
  449. "name": "alibabacloud/gateway-spi",
  450. "version": "1.0.0",
  451. "source": {
  452. "type": "git",
  453. "url": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi.git",
  454. "reference": "7440f77750c329d8ab252db1d1d967314ccd1fcb"
  455. },
  456. "dist": {
  457. "type": "zip",
  458. "url": "https://api.github.com/repos/alibabacloud-sdk-php/alibabacloud-gateway-spi/zipball/7440f77750c329d8ab252db1d1d967314ccd1fcb",
  459. "reference": "7440f77750c329d8ab252db1d1d967314ccd1fcb",
  460. "shasum": ""
  461. },
  462. "require": {
  463. "alibabacloud/credentials": "^1.1",
  464. "php": ">5.5"
  465. },
  466. "type": "library",
  467. "autoload": {
  468. "psr-4": {
  469. "Darabonba\\GatewaySpi\\": "src"
  470. }
  471. },
  472. "notification-url": "https://packagist.org/downloads/",
  473. "license": [
  474. "Apache-2.0"
  475. ],
  476. "authors": [
  477. {
  478. "name": "Alibaba Cloud SDK",
  479. "email": "sdk-team@alibabacloud.com"
  480. }
  481. ],
  482. "description": "Alibaba Cloud Gateway SPI Client",
  483. "support": {
  484. "source": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi/tree/1.0.0"
  485. },
  486. "time": "2022-07-14T05:31:35+00:00"
  487. },
  488. {
  489. "name": "alibabacloud/live",
  490. "version": "1.8.958",
  491. "source": {
  492. "type": "git",
  493. "url": "https://github.com/alibabacloud-sdk-php/live.git",
  494. "reference": "2dc756e9e156cb33bc1287d28fc3fade87e4ae60"
  495. },
  496. "dist": {
  497. "type": "zip",
  498. "url": "https://api.github.com/repos/alibabacloud-sdk-php/live/zipball/2dc756e9e156cb33bc1287d28fc3fade87e4ae60",
  499. "reference": "2dc756e9e156cb33bc1287d28fc3fade87e4ae60",
  500. "shasum": ""
  501. },
  502. "require": {
  503. "alibabacloud/client": "^1.5",
  504. "php": ">=5.5"
  505. },
  506. "type": "library",
  507. "autoload": {
  508. "psr-4": {
  509. "AlibabaCloud\\Live\\": ""
  510. }
  511. },
  512. "notification-url": "https://packagist.org/downloads/",
  513. "license": [
  514. "Apache-2.0"
  515. ],
  516. "authors": [
  517. {
  518. "name": "Alibaba Cloud SDK",
  519. "email": "sdk-team@alibabacloud.com",
  520. "homepage": "http://www.alibabacloud.com"
  521. }
  522. ],
  523. "description": "Alibaba Cloud Live SDK for PHP",
  524. "homepage": "https://www.alibabacloud.com/",
  525. "keywords": [
  526. "alibaba",
  527. "alibabacloud",
  528. "aliyun",
  529. "cloud",
  530. "library",
  531. "live",
  532. "sdk"
  533. ],
  534. "support": {
  535. "issues": "https://github.com/alibabacloud-sdk-php/live/issues",
  536. "source": "https://github.com/alibabacloud-sdk-php/live"
  537. },
  538. "time": "2021-04-29T09:14:45+00:00"
  539. },
  540. {
  541. "name": "alibabacloud/openapi-util",
  542. "version": "0.2.1",
  543. "source": {
  544. "type": "git",
  545. "url": "https://github.com/alibabacloud-sdk-php/openapi-util.git",
  546. "reference": "f31f7bcd835e08ca24b6b8ba33637eb4eceb093a"
  547. },
  548. "dist": {
  549. "type": "zip",
  550. "url": "https://api.github.com/repos/alibabacloud-sdk-php/openapi-util/zipball/f31f7bcd835e08ca24b6b8ba33637eb4eceb093a",
  551. "reference": "f31f7bcd835e08ca24b6b8ba33637eb4eceb093a",
  552. "shasum": ""
  553. },
  554. "require": {
  555. "alibabacloud/tea": "^3.1",
  556. "alibabacloud/tea-utils": "^0.2",
  557. "lizhichao/one-sm": "^1.5",
  558. "php": ">5.5"
  559. },
  560. "require-dev": {
  561. "phpunit/phpunit": "*"
  562. },
  563. "type": "library",
  564. "autoload": {
  565. "psr-4": {
  566. "AlibabaCloud\\OpenApiUtil\\": "src"
  567. }
  568. },
  569. "notification-url": "https://packagist.org/downloads/",
  570. "license": [
  571. "Apache-2.0"
  572. ],
  573. "authors": [
  574. {
  575. "name": "Alibaba Cloud SDK",
  576. "email": "sdk-team@alibabacloud.com"
  577. }
  578. ],
  579. "description": "Alibaba Cloud OpenApi Util",
  580. "support": {
  581. "issues": "https://github.com/alibabacloud-sdk-php/openapi-util/issues",
  582. "source": "https://github.com/alibabacloud-sdk-php/openapi-util/tree/0.2.1"
  583. },
  584. "time": "2023-01-10T09:10:10+00:00"
  585. },
  586. {
  587. "name": "alibabacloud/tea",
  588. "version": "3.2.1",
  589. "source": {
  590. "type": "git",
  591. "url": "https://github.com/aliyun/tea-php.git",
  592. "reference": "1619cb96c158384f72b873e1f85de8b299c9c367"
  593. },
  594. "dist": {
  595. "type": "zip",
  596. "url": "https://api.github.com/repos/aliyun/tea-php/zipball/1619cb96c158384f72b873e1f85de8b299c9c367",
  597. "reference": "1619cb96c158384f72b873e1f85de8b299c9c367",
  598. "shasum": ""
  599. },
  600. "require": {
  601. "adbario/php-dot-notation": "^2.4",
  602. "ext-curl": "*",
  603. "ext-json": "*",
  604. "ext-libxml": "*",
  605. "ext-mbstring": "*",
  606. "ext-openssl": "*",
  607. "ext-simplexml": "*",
  608. "ext-xmlwriter": "*",
  609. "guzzlehttp/guzzle": "^6.3|^7.0",
  610. "php": ">=5.5"
  611. },
  612. "require-dev": {
  613. "phpunit/phpunit": "*",
  614. "symfony/dotenv": "^3.4",
  615. "symfony/var-dumper": "^3.4"
  616. },
  617. "suggest": {
  618. "ext-sockets": "To use client-side monitoring"
  619. },
  620. "type": "library",
  621. "autoload": {
  622. "psr-4": {
  623. "AlibabaCloud\\Tea\\": "src"
  624. }
  625. },
  626. "notification-url": "https://packagist.org/downloads/",
  627. "license": [
  628. "Apache-2.0"
  629. ],
  630. "authors": [
  631. {
  632. "name": "Alibaba Cloud SDK",
  633. "email": "sdk-team@alibabacloud.com",
  634. "homepage": "http://www.alibabacloud.com"
  635. }
  636. ],
  637. "description": "Client of Tea for PHP",
  638. "homepage": "https://www.alibabacloud.com/",
  639. "keywords": [
  640. "alibabacloud",
  641. "client",
  642. "cloud",
  643. "tea"
  644. ],
  645. "support": {
  646. "issues": "https://github.com/aliyun/tea-php/issues",
  647. "source": "https://github.com/aliyun/tea-php"
  648. },
  649. "time": "2023-05-16T06:43:41+00:00"
  650. },
  651. {
  652. "name": "alibabacloud/tea-utils",
  653. "version": "0.2.19",
  654. "source": {
  655. "type": "git",
  656. "url": "https://github.com/alibabacloud-sdk-php/tea-utils.git",
  657. "reference": "8dfc1a93e9415818e93a621b644abbb84981aea4"
  658. },
  659. "dist": {
  660. "type": "zip",
  661. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-utils/zipball/8dfc1a93e9415818e93a621b644abbb84981aea4",
  662. "reference": "8dfc1a93e9415818e93a621b644abbb84981aea4",
  663. "shasum": ""
  664. },
  665. "require": {
  666. "alibabacloud/tea": "^3.1",
  667. "php": ">5.5"
  668. },
  669. "type": "library",
  670. "autoload": {
  671. "psr-4": {
  672. "AlibabaCloud\\Tea\\Utils\\": "src"
  673. }
  674. },
  675. "notification-url": "https://packagist.org/downloads/",
  676. "license": [
  677. "Apache-2.0"
  678. ],
  679. "authors": [
  680. {
  681. "name": "Alibaba Cloud SDK",
  682. "email": "sdk-team@alibabacloud.com"
  683. }
  684. ],
  685. "description": "Alibaba Cloud Tea Utils for PHP",
  686. "support": {
  687. "issues": "https://github.com/aliyun/tea-util/issues",
  688. "source": "https://github.com/aliyun/tea-util"
  689. },
  690. "time": "2023-06-26T09:49:19+00:00"
  691. },
  692. {
  693. "name": "alibabacloud/tea-xml",
  694. "version": "0.2.4",
  695. "source": {
  696. "type": "git",
  697. "url": "https://github.com/alibabacloud-sdk-php/tea-xml.git",
  698. "reference": "3e0c000bf536224eebbac913c371bef174c0a16a"
  699. },
  700. "dist": {
  701. "type": "zip",
  702. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-xml/zipball/3e0c000bf536224eebbac913c371bef174c0a16a",
  703. "reference": "3e0c000bf536224eebbac913c371bef174c0a16a",
  704. "shasum": ""
  705. },
  706. "require": {
  707. "php": ">5.5"
  708. },
  709. "require-dev": {
  710. "phpunit/phpunit": "*",
  711. "symfony/var-dumper": "*"
  712. },
  713. "type": "library",
  714. "autoload": {
  715. "psr-4": {
  716. "AlibabaCloud\\Tea\\XML\\": "src"
  717. }
  718. },
  719. "notification-url": "https://packagist.org/downloads/",
  720. "license": [
  721. "Apache-2.0"
  722. ],
  723. "authors": [
  724. {
  725. "name": "Alibaba Cloud SDK",
  726. "email": "sdk-team@alibabacloud.com"
  727. }
  728. ],
  729. "description": "Alibaba Cloud Tea XML Library for PHP",
  730. "support": {
  731. "source": "https://github.com/alibabacloud-sdk-php/tea-xml/tree/0.2.4"
  732. },
  733. "time": "2022-08-02T04:12:58+00:00"
  734. },
  735. {
  736. "name": "alibabacloud/vod-20170321",
  737. "version": "2.19.2",
  738. "source": {
  739. "type": "git",
  740. "url": "https://github.com/alibabacloud-sdk-php/vod-20170321.git",
  741. "reference": "cbf3bf934799920430803a24ea90675a06db11d2"
  742. },
  743. "dist": {
  744. "type": "zip",
  745. "url": "https://api.github.com/repos/alibabacloud-sdk-php/vod-20170321/zipball/cbf3bf934799920430803a24ea90675a06db11d2",
  746. "reference": "cbf3bf934799920430803a24ea90675a06db11d2",
  747. "shasum": "",
  748. "mirrors": [
  749. {
  750. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  751. "preferred": true
  752. }
  753. ]
  754. },
  755. "require": {
  756. "alibabacloud/darabonba-openapi": "^0.2.10",
  757. "alibabacloud/endpoint-util": "^0.1.0",
  758. "alibabacloud/openapi-util": "^0.1.10|^0.2.1",
  759. "alibabacloud/tea-utils": "^0.2.19",
  760. "php": ">5.5"
  761. },
  762. "type": "library",
  763. "autoload": {
  764. "psr-4": {
  765. "AlibabaCloud\\SDK\\Vod\\V20170321\\": "src"
  766. }
  767. },
  768. "notification-url": "https://packagist.org/downloads/",
  769. "license": [
  770. "Apache-2.0"
  771. ],
  772. "authors": [
  773. {
  774. "name": "Alibaba Cloud SDK",
  775. "email": "sdk-team@alibabacloud.com"
  776. }
  777. ],
  778. "description": "Alibaba Cloud ApsaraVideo for VOD (20170321) SDK Library for PHP",
  779. "support": {
  780. "source": "https://github.com/alibabacloud-sdk-php/vod-20170321/tree/2.19.2"
  781. },
  782. "time": "2024-03-26T17:12:34+00:00"
  783. },
  784. {
  785. "name": "aliyuncs/oss-sdk-php",
  786. "version": "v2.7.1",
  787. "source": {
  788. "type": "git",
  789. "url": "https://github.com/aliyun/aliyun-oss-php-sdk.git",
  790. "reference": "ce5d34dae9868237a32248788ea175c7e9da14b1"
  791. },
  792. "dist": {
  793. "type": "zip",
  794. "url": "https://api.github.com/repos/aliyun/aliyun-oss-php-sdk/zipball/ce5d34dae9868237a32248788ea175c7e9da14b1",
  795. "reference": "ce5d34dae9868237a32248788ea175c7e9da14b1",
  796. "shasum": "",
  797. "mirrors": [
  798. {
  799. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  800. "preferred": true
  801. }
  802. ]
  803. },
  804. "require": {
  805. "php": ">=5.3"
  806. },
  807. "require-dev": {
  808. "php-coveralls/php-coveralls": "*",
  809. "phpunit/phpunit": "*"
  810. },
  811. "type": "library",
  812. "autoload": {
  813. "psr-4": {
  814. "OSS\\": "src/OSS"
  815. }
  816. },
  817. "notification-url": "https://packagist.org/downloads/",
  818. "license": [
  819. "MIT"
  820. ],
  821. "authors": [
  822. {
  823. "name": "Aliyuncs",
  824. "homepage": "http://www.aliyun.com"
  825. }
  826. ],
  827. "description": "Aliyun OSS SDK for PHP",
  828. "homepage": "http://www.aliyun.com/product/oss/",
  829. "support": {
  830. "issues": "https://github.com/aliyun/aliyun-oss-php-sdk/issues",
  831. "source": "https://github.com/aliyun/aliyun-oss-php-sdk/tree/v2.7.1"
  832. },
  833. "time": "2024-02-28T11:22:18+00:00"
  834. },
  835. {
  836. "name": "asm89/stack-cors",
  837. "version": "v2.2.0",
  838. "source": {
  839. "type": "git",
  840. "url": "https://github.com/asm89/stack-cors.git",
  841. "reference": "50f57105bad3d97a43ec4a485eb57daf347eafea"
  842. },
  843. "dist": {
  844. "type": "zip",
  845. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/50f57105bad3d97a43ec4a485eb57daf347eafea",
  846. "reference": "50f57105bad3d97a43ec4a485eb57daf347eafea",
  847. "shasum": ""
  848. },
  849. "require": {
  850. "php": "^7.3|^8.0",
  851. "symfony/http-foundation": "^5.3|^6|^7",
  852. "symfony/http-kernel": "^5.3|^6|^7"
  853. },
  854. "require-dev": {
  855. "phpunit/phpunit": "^9",
  856. "squizlabs/php_codesniffer": "^3.5"
  857. },
  858. "type": "library",
  859. "extra": {
  860. "branch-alias": {
  861. "dev-master": "2.2-dev"
  862. }
  863. },
  864. "autoload": {
  865. "psr-4": {
  866. "Asm89\\Stack\\": "src/"
  867. }
  868. },
  869. "notification-url": "https://packagist.org/downloads/",
  870. "license": [
  871. "MIT"
  872. ],
  873. "authors": [
  874. {
  875. "name": "Alexander",
  876. "email": "iam.asm89@gmail.com"
  877. }
  878. ],
  879. "description": "Cross-origin resource sharing library and stack middleware",
  880. "homepage": "https://github.com/asm89/stack-cors",
  881. "keywords": [
  882. "cors",
  883. "stack"
  884. ],
  885. "support": {
  886. "issues": "https://github.com/asm89/stack-cors/issues",
  887. "source": "https://github.com/asm89/stack-cors/tree/v2.2.0"
  888. },
  889. "time": "2023-11-14T13:51:46+00:00"
  890. },
  891. {
  892. "name": "brick/math",
  893. "version": "0.11.0",
  894. "source": {
  895. "type": "git",
  896. "url": "https://github.com/brick/math.git",
  897. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478"
  898. },
  899. "dist": {
  900. "type": "zip",
  901. "url": "https://api.github.com/repos/brick/math/zipball/0ad82ce168c82ba30d1c01ec86116ab52f589478",
  902. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478",
  903. "shasum": ""
  904. },
  905. "require": {
  906. "php": "^8.0"
  907. },
  908. "require-dev": {
  909. "php-coveralls/php-coveralls": "^2.2",
  910. "phpunit/phpunit": "^9.0",
  911. "vimeo/psalm": "5.0.0"
  912. },
  913. "type": "library",
  914. "autoload": {
  915. "psr-4": {
  916. "Brick\\Math\\": "src/"
  917. }
  918. },
  919. "notification-url": "https://packagist.org/downloads/",
  920. "license": [
  921. "MIT"
  922. ],
  923. "description": "Arbitrary-precision arithmetic library",
  924. "keywords": [
  925. "Arbitrary-precision",
  926. "BigInteger",
  927. "BigRational",
  928. "arithmetic",
  929. "bigdecimal",
  930. "bignum",
  931. "brick",
  932. "math"
  933. ],
  934. "support": {
  935. "issues": "https://github.com/brick/math/issues",
  936. "source": "https://github.com/brick/math/tree/0.11.0"
  937. },
  938. "funding": [
  939. {
  940. "url": "https://github.com/BenMorel",
  941. "type": "github"
  942. }
  943. ],
  944. "time": "2023-01-15T23:15:59+00:00"
  945. },
  946. {
  947. "name": "cache/adapter-common",
  948. "version": "1.3.0",
  949. "source": {
  950. "type": "git",
  951. "url": "https://github.com/php-cache/adapter-common.git",
  952. "reference": "8788309be72aa7be69b88cdc0687549c74a7d479"
  953. },
  954. "dist": {
  955. "type": "zip",
  956. "url": "https://api.github.com/repos/php-cache/adapter-common/zipball/8788309be72aa7be69b88cdc0687549c74a7d479",
  957. "reference": "8788309be72aa7be69b88cdc0687549c74a7d479",
  958. "shasum": ""
  959. },
  960. "require": {
  961. "cache/tag-interop": "^1.0",
  962. "php": ">=7.4",
  963. "psr/cache": "^1.0 || ^2.0",
  964. "psr/log": "^1.0 || ^2.0 || ^3.0",
  965. "psr/simple-cache": "^1.0"
  966. },
  967. "require-dev": {
  968. "cache/integration-tests": "^0.17",
  969. "phpunit/phpunit": "^7.5.20 || ^9.5.10"
  970. },
  971. "type": "library",
  972. "extra": {
  973. "branch-alias": {
  974. "dev-master": "1.1-dev"
  975. }
  976. },
  977. "autoload": {
  978. "psr-4": {
  979. "Cache\\Adapter\\Common\\": ""
  980. }
  981. },
  982. "notification-url": "https://packagist.org/downloads/",
  983. "license": [
  984. "MIT"
  985. ],
  986. "authors": [
  987. {
  988. "name": "Aaron Scherer",
  989. "email": "aequasi@gmail.com",
  990. "homepage": "https://github.com/aequasi"
  991. },
  992. {
  993. "name": "Tobias Nyholm",
  994. "email": "tobias.nyholm@gmail.com",
  995. "homepage": "https://github.com/nyholm"
  996. }
  997. ],
  998. "description": "Common classes for PSR-6 adapters",
  999. "homepage": "http://www.php-cache.com/en/latest/",
  1000. "keywords": [
  1001. "cache",
  1002. "psr-6",
  1003. "tag"
  1004. ],
  1005. "support": {
  1006. "source": "https://github.com/php-cache/adapter-common/tree/1.3.0"
  1007. },
  1008. "time": "2022-01-15T15:47:19+00:00"
  1009. },
  1010. {
  1011. "name": "cache/filesystem-adapter",
  1012. "version": "1.2.0",
  1013. "source": {
  1014. "type": "git",
  1015. "url": "https://github.com/php-cache/filesystem-adapter.git",
  1016. "reference": "f1faaae40aaa696ef899cef6f6888aedb90b419b"
  1017. },
  1018. "dist": {
  1019. "type": "zip",
  1020. "url": "https://api.github.com/repos/php-cache/filesystem-adapter/zipball/f1faaae40aaa696ef899cef6f6888aedb90b419b",
  1021. "reference": "f1faaae40aaa696ef899cef6f6888aedb90b419b",
  1022. "shasum": ""
  1023. },
  1024. "require": {
  1025. "cache/adapter-common": "^1.0",
  1026. "league/flysystem": "^1.0",
  1027. "php": ">=7.4",
  1028. "psr/cache": "^1.0 || ^2.0",
  1029. "psr/simple-cache": "^1.0"
  1030. },
  1031. "provide": {
  1032. "psr/cache-implementation": "^1.0",
  1033. "psr/simple-cache-implementation": "^1.0"
  1034. },
  1035. "require-dev": {
  1036. "cache/integration-tests": "^0.17",
  1037. "phpunit/phpunit": "^7.5.20 || ^9.5.10"
  1038. },
  1039. "type": "library",
  1040. "extra": {
  1041. "branch-alias": {
  1042. "dev-master": "1.1-dev"
  1043. }
  1044. },
  1045. "autoload": {
  1046. "psr-4": {
  1047. "Cache\\Adapter\\Filesystem\\": ""
  1048. },
  1049. "exclude-from-classmap": [
  1050. "/Tests/"
  1051. ]
  1052. },
  1053. "notification-url": "https://packagist.org/downloads/",
  1054. "license": [
  1055. "MIT"
  1056. ],
  1057. "authors": [
  1058. {
  1059. "name": "Aaron Scherer",
  1060. "email": "aequasi@gmail.com",
  1061. "homepage": "https://github.com/aequasi"
  1062. },
  1063. {
  1064. "name": "Tobias Nyholm",
  1065. "email": "tobias.nyholm@gmail.com",
  1066. "homepage": "https://github.com/nyholm"
  1067. }
  1068. ],
  1069. "description": "A PSR-6 cache implementation using filesystem. This implementation supports tags",
  1070. "homepage": "http://www.php-cache.com/en/latest/",
  1071. "keywords": [
  1072. "cache",
  1073. "filesystem",
  1074. "psr-6",
  1075. "tag"
  1076. ],
  1077. "support": {
  1078. "source": "https://github.com/php-cache/filesystem-adapter/tree/1.2.0"
  1079. },
  1080. "time": "2022-01-15T15:47:19+00:00"
  1081. },
  1082. {
  1083. "name": "cache/tag-interop",
  1084. "version": "1.1.0",
  1085. "source": {
  1086. "type": "git",
  1087. "url": "https://github.com/php-cache/tag-interop.git",
  1088. "reference": "b062b1d735357da50edf8387f7a8696f3027d328"
  1089. },
  1090. "dist": {
  1091. "type": "zip",
  1092. "url": "https://api.github.com/repos/php-cache/tag-interop/zipball/b062b1d735357da50edf8387f7a8696f3027d328",
  1093. "reference": "b062b1d735357da50edf8387f7a8696f3027d328",
  1094. "shasum": ""
  1095. },
  1096. "require": {
  1097. "php": "^5.5 || ^7.0 || ^8.0",
  1098. "psr/cache": "^1.0 || ^2.0"
  1099. },
  1100. "type": "library",
  1101. "extra": {
  1102. "branch-alias": {
  1103. "dev-master": "1.1-dev"
  1104. }
  1105. },
  1106. "autoload": {
  1107. "psr-4": {
  1108. "Cache\\TagInterop\\": ""
  1109. }
  1110. },
  1111. "notification-url": "https://packagist.org/downloads/",
  1112. "license": [
  1113. "MIT"
  1114. ],
  1115. "authors": [
  1116. {
  1117. "name": "Tobias Nyholm",
  1118. "email": "tobias.nyholm@gmail.com",
  1119. "homepage": "https://github.com/nyholm"
  1120. },
  1121. {
  1122. "name": "Nicolas Grekas",
  1123. "email": "p@tchwork.com",
  1124. "homepage": "https://github.com/nicolas-grekas"
  1125. }
  1126. ],
  1127. "description": "Framework interoperable interfaces for tags",
  1128. "homepage": "https://www.php-cache.com/en/latest/",
  1129. "keywords": [
  1130. "cache",
  1131. "psr",
  1132. "psr6",
  1133. "tag"
  1134. ],
  1135. "support": {
  1136. "issues": "https://github.com/php-cache/tag-interop/issues",
  1137. "source": "https://github.com/php-cache/tag-interop/tree/1.1.0"
  1138. },
  1139. "time": "2021-12-31T10:03:23+00:00"
  1140. },
  1141. {
  1142. "name": "carbonphp/carbon-doctrine-types",
  1143. "version": "2.1.0",
  1144. "source": {
  1145. "type": "git",
  1146. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  1147. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb"
  1148. },
  1149. "dist": {
  1150. "type": "zip",
  1151. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  1152. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  1153. "shasum": ""
  1154. },
  1155. "require": {
  1156. "php": "^7.4 || ^8.0"
  1157. },
  1158. "conflict": {
  1159. "doctrine/dbal": "<3.7.0 || >=4.0.0"
  1160. },
  1161. "require-dev": {
  1162. "doctrine/dbal": "^3.7.0",
  1163. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  1164. "phpunit/phpunit": "^10.3"
  1165. },
  1166. "type": "library",
  1167. "autoload": {
  1168. "psr-4": {
  1169. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  1170. }
  1171. },
  1172. "notification-url": "https://packagist.org/downloads/",
  1173. "license": [
  1174. "MIT"
  1175. ],
  1176. "authors": [
  1177. {
  1178. "name": "KyleKatarn",
  1179. "email": "kylekatarnls@gmail.com"
  1180. }
  1181. ],
  1182. "description": "Types to use Carbon in Doctrine",
  1183. "keywords": [
  1184. "carbon",
  1185. "date",
  1186. "datetime",
  1187. "doctrine",
  1188. "time"
  1189. ],
  1190. "support": {
  1191. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  1192. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/2.1.0"
  1193. },
  1194. "funding": [
  1195. {
  1196. "url": "https://github.com/kylekatarnls",
  1197. "type": "github"
  1198. },
  1199. {
  1200. "url": "https://opencollective.com/Carbon",
  1201. "type": "open_collective"
  1202. },
  1203. {
  1204. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  1205. "type": "tidelift"
  1206. }
  1207. ],
  1208. "time": "2023-12-11T17:09:12+00:00"
  1209. },
  1210. {
  1211. "name": "cboden/ratchet",
  1212. "version": "v0.4.4",
  1213. "source": {
  1214. "type": "git",
  1215. "url": "https://github.com/ratchetphp/Ratchet.git",
  1216. "reference": "5012dc954541b40c5599d286fd40653f5716a38f"
  1217. },
  1218. "dist": {
  1219. "type": "zip",
  1220. "url": "https://api.github.com/repos/ratchetphp/Ratchet/zipball/5012dc954541b40c5599d286fd40653f5716a38f",
  1221. "reference": "5012dc954541b40c5599d286fd40653f5716a38f",
  1222. "shasum": ""
  1223. },
  1224. "require": {
  1225. "guzzlehttp/psr7": "^1.7|^2.0",
  1226. "php": ">=5.4.2",
  1227. "ratchet/rfc6455": "^0.3.1",
  1228. "react/event-loop": ">=0.4",
  1229. "react/socket": "^1.0 || ^0.8 || ^0.7 || ^0.6 || ^0.5",
  1230. "symfony/http-foundation": "^2.6|^3.0|^4.0|^5.0|^6.0",
  1231. "symfony/routing": "^2.6|^3.0|^4.0|^5.0|^6.0"
  1232. },
  1233. "require-dev": {
  1234. "phpunit/phpunit": "~4.8"
  1235. },
  1236. "type": "library",
  1237. "autoload": {
  1238. "psr-4": {
  1239. "Ratchet\\": "src/Ratchet"
  1240. }
  1241. },
  1242. "notification-url": "https://packagist.org/downloads/",
  1243. "license": [
  1244. "MIT"
  1245. ],
  1246. "authors": [
  1247. {
  1248. "name": "Chris Boden",
  1249. "email": "cboden@gmail.com",
  1250. "role": "Developer"
  1251. },
  1252. {
  1253. "name": "Matt Bonneau",
  1254. "role": "Developer"
  1255. }
  1256. ],
  1257. "description": "PHP WebSocket library",
  1258. "homepage": "http://socketo.me",
  1259. "keywords": [
  1260. "Ratchet",
  1261. "WebSockets",
  1262. "server",
  1263. "sockets",
  1264. "websocket"
  1265. ],
  1266. "support": {
  1267. "chat": "https://gitter.im/reactphp/reactphp",
  1268. "issues": "https://github.com/ratchetphp/Ratchet/issues",
  1269. "source": "https://github.com/ratchetphp/Ratchet/tree/v0.4.4"
  1270. },
  1271. "time": "2021-12-14T00:20:41+00:00"
  1272. },
  1273. {
  1274. "name": "clagiordano/weblibs-configmanager",
  1275. "version": "v1.2.0",
  1276. "source": {
  1277. "type": "git",
  1278. "url": "https://github.com/clagiordano/weblibs-configmanager.git",
  1279. "reference": "5c8ebcc62782313b1278afe802b120d18c07a059"
  1280. },
  1281. "dist": {
  1282. "type": "zip",
  1283. "url": "https://api.github.com/repos/clagiordano/weblibs-configmanager/zipball/5c8ebcc62782313b1278afe802b120d18c07a059",
  1284. "reference": "5c8ebcc62782313b1278afe802b120d18c07a059",
  1285. "shasum": ""
  1286. },
  1287. "require": {
  1288. "php": ">=5.4"
  1289. },
  1290. "require-dev": {
  1291. "clagiordano/phpunit-result-printer": "^1",
  1292. "phpunit/phpunit": "^4.8"
  1293. },
  1294. "type": "library",
  1295. "autoload": {
  1296. "psr-4": {
  1297. "clagiordano\\weblibs\\configmanager\\": "src/"
  1298. }
  1299. },
  1300. "notification-url": "https://packagist.org/downloads/",
  1301. "license": [
  1302. "LGPL-3.0-or-later"
  1303. ],
  1304. "authors": [
  1305. {
  1306. "name": "Claudio Giordano",
  1307. "email": "claudio.giordano@autistici.org",
  1308. "role": "Developer"
  1309. }
  1310. ],
  1311. "description": "weblibs-configmanager is a tool library for easily read and access to php config array file and direct read/write configuration file / object",
  1312. "keywords": [
  1313. "clagiordano",
  1314. "configuration",
  1315. "manager",
  1316. "tool",
  1317. "weblibs"
  1318. ],
  1319. "support": {
  1320. "issues": "https://github.com/clagiordano/weblibs-configmanager/issues",
  1321. "source": "https://github.com/clagiordano/weblibs-configmanager/tree/v1.2.0"
  1322. },
  1323. "time": "2021-05-18T17:55:57+00:00"
  1324. },
  1325. {
  1326. "name": "composer/semver",
  1327. "version": "3.4.0",
  1328. "source": {
  1329. "type": "git",
  1330. "url": "https://github.com/composer/semver.git",
  1331. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32"
  1332. },
  1333. "dist": {
  1334. "type": "zip",
  1335. "url": "https://api.github.com/repos/composer/semver/zipball/35e8d0af4486141bc745f23a29cc2091eb624a32",
  1336. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32",
  1337. "shasum": ""
  1338. },
  1339. "require": {
  1340. "php": "^5.3.2 || ^7.0 || ^8.0"
  1341. },
  1342. "require-dev": {
  1343. "phpstan/phpstan": "^1.4",
  1344. "symfony/phpunit-bridge": "^4.2 || ^5"
  1345. },
  1346. "type": "library",
  1347. "extra": {
  1348. "branch-alias": {
  1349. "dev-main": "3.x-dev"
  1350. }
  1351. },
  1352. "autoload": {
  1353. "psr-4": {
  1354. "Composer\\Semver\\": "src"
  1355. }
  1356. },
  1357. "notification-url": "https://packagist.org/downloads/",
  1358. "license": [
  1359. "MIT"
  1360. ],
  1361. "authors": [
  1362. {
  1363. "name": "Nils Adermann",
  1364. "email": "naderman@naderman.de",
  1365. "homepage": "http://www.naderman.de"
  1366. },
  1367. {
  1368. "name": "Jordi Boggiano",
  1369. "email": "j.boggiano@seld.be",
  1370. "homepage": "http://seld.be"
  1371. },
  1372. {
  1373. "name": "Rob Bast",
  1374. "email": "rob.bast@gmail.com",
  1375. "homepage": "http://robbast.nl"
  1376. }
  1377. ],
  1378. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  1379. "keywords": [
  1380. "semantic",
  1381. "semver",
  1382. "validation",
  1383. "versioning"
  1384. ],
  1385. "support": {
  1386. "irc": "ircs://irc.libera.chat:6697/composer",
  1387. "issues": "https://github.com/composer/semver/issues",
  1388. "source": "https://github.com/composer/semver/tree/3.4.0"
  1389. },
  1390. "funding": [
  1391. {
  1392. "url": "https://packagist.com",
  1393. "type": "custom"
  1394. },
  1395. {
  1396. "url": "https://github.com/composer",
  1397. "type": "github"
  1398. },
  1399. {
  1400. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  1401. "type": "tidelift"
  1402. }
  1403. ],
  1404. "time": "2023-08-31T09:50:34+00:00"
  1405. },
  1406. {
  1407. "name": "dflydev/dot-access-data",
  1408. "version": "v3.0.2",
  1409. "source": {
  1410. "type": "git",
  1411. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1412. "reference": "f41715465d65213d644d3141a6a93081be5d3549"
  1413. },
  1414. "dist": {
  1415. "type": "zip",
  1416. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549",
  1417. "reference": "f41715465d65213d644d3141a6a93081be5d3549",
  1418. "shasum": ""
  1419. },
  1420. "require": {
  1421. "php": "^7.1 || ^8.0"
  1422. },
  1423. "require-dev": {
  1424. "phpstan/phpstan": "^0.12.42",
  1425. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  1426. "scrutinizer/ocular": "1.6.0",
  1427. "squizlabs/php_codesniffer": "^3.5",
  1428. "vimeo/psalm": "^4.0.0"
  1429. },
  1430. "type": "library",
  1431. "extra": {
  1432. "branch-alias": {
  1433. "dev-main": "3.x-dev"
  1434. }
  1435. },
  1436. "autoload": {
  1437. "psr-4": {
  1438. "Dflydev\\DotAccessData\\": "src/"
  1439. }
  1440. },
  1441. "notification-url": "https://packagist.org/downloads/",
  1442. "license": [
  1443. "MIT"
  1444. ],
  1445. "authors": [
  1446. {
  1447. "name": "Dragonfly Development Inc.",
  1448. "email": "info@dflydev.com",
  1449. "homepage": "http://dflydev.com"
  1450. },
  1451. {
  1452. "name": "Beau Simensen",
  1453. "email": "beau@dflydev.com",
  1454. "homepage": "http://beausimensen.com"
  1455. },
  1456. {
  1457. "name": "Carlos Frutos",
  1458. "email": "carlos@kiwing.it",
  1459. "homepage": "https://github.com/cfrutos"
  1460. },
  1461. {
  1462. "name": "Colin O'Dell",
  1463. "email": "colinodell@gmail.com",
  1464. "homepage": "https://www.colinodell.com"
  1465. }
  1466. ],
  1467. "description": "Given a deep data structure, access data by dot notation.",
  1468. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1469. "keywords": [
  1470. "access",
  1471. "data",
  1472. "dot",
  1473. "notation"
  1474. ],
  1475. "support": {
  1476. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  1477. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2"
  1478. },
  1479. "time": "2022-10-27T11:44:00+00:00"
  1480. },
  1481. {
  1482. "name": "doctrine/cache",
  1483. "version": "1.13.0",
  1484. "source": {
  1485. "type": "git",
  1486. "url": "https://github.com/doctrine/cache.git",
  1487. "reference": "56cd022adb5514472cb144c087393c1821911d09"
  1488. },
  1489. "dist": {
  1490. "type": "zip",
  1491. "url": "https://api.github.com/repos/doctrine/cache/zipball/56cd022adb5514472cb144c087393c1821911d09",
  1492. "reference": "56cd022adb5514472cb144c087393c1821911d09",
  1493. "shasum": "",
  1494. "mirrors": [
  1495. {
  1496. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1497. "preferred": true
  1498. }
  1499. ]
  1500. },
  1501. "require": {
  1502. "php": "~7.1 || ^8.0"
  1503. },
  1504. "conflict": {
  1505. "doctrine/common": ">2.2,<2.4"
  1506. },
  1507. "require-dev": {
  1508. "alcaeus/mongo-php-adapter": "^1.1",
  1509. "cache/integration-tests": "dev-master",
  1510. "doctrine/coding-standard": "^9",
  1511. "mongodb/mongodb": "^1.1",
  1512. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1513. "predis/predis": "~1.0",
  1514. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  1515. "symfony/cache": "^4.4 || ^5.4 || ^6",
  1516. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  1517. },
  1518. "suggest": {
  1519. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  1520. },
  1521. "type": "library",
  1522. "autoload": {
  1523. "psr-4": {
  1524. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1525. }
  1526. },
  1527. "notification-url": "https://packagist.org/downloads/",
  1528. "license": [
  1529. "MIT"
  1530. ],
  1531. "authors": [
  1532. {
  1533. "name": "Guilherme Blanco",
  1534. "email": "guilhermeblanco@gmail.com"
  1535. },
  1536. {
  1537. "name": "Roman Borschel",
  1538. "email": "roman@code-factory.org"
  1539. },
  1540. {
  1541. "name": "Benjamin Eberlei",
  1542. "email": "kontakt@beberlei.de"
  1543. },
  1544. {
  1545. "name": "Jonathan Wage",
  1546. "email": "jonwage@gmail.com"
  1547. },
  1548. {
  1549. "name": "Johannes Schmitt",
  1550. "email": "schmittjoh@gmail.com"
  1551. }
  1552. ],
  1553. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  1554. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  1555. "keywords": [
  1556. "abstraction",
  1557. "apcu",
  1558. "cache",
  1559. "caching",
  1560. "couchdb",
  1561. "memcached",
  1562. "php",
  1563. "redis",
  1564. "xcache"
  1565. ],
  1566. "support": {
  1567. "issues": "https://github.com/doctrine/cache/issues",
  1568. "source": "https://github.com/doctrine/cache/tree/1.13.0"
  1569. },
  1570. "funding": [
  1571. {
  1572. "url": "https://www.doctrine-project.org/sponsorship.html",
  1573. "type": "custom"
  1574. },
  1575. {
  1576. "url": "https://www.patreon.com/phpdoctrine",
  1577. "type": "patreon"
  1578. },
  1579. {
  1580. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  1581. "type": "tidelift"
  1582. }
  1583. ],
  1584. "time": "2022-05-20T20:06:54+00:00"
  1585. },
  1586. {
  1587. "name": "doctrine/inflector",
  1588. "version": "2.0.8",
  1589. "source": {
  1590. "type": "git",
  1591. "url": "https://github.com/doctrine/inflector.git",
  1592. "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff"
  1593. },
  1594. "dist": {
  1595. "type": "zip",
  1596. "url": "https://api.github.com/repos/doctrine/inflector/zipball/f9301a5b2fb1216b2b08f02ba04dc45423db6bff",
  1597. "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff",
  1598. "shasum": ""
  1599. },
  1600. "require": {
  1601. "php": "^7.2 || ^8.0"
  1602. },
  1603. "require-dev": {
  1604. "doctrine/coding-standard": "^11.0",
  1605. "phpstan/phpstan": "^1.8",
  1606. "phpstan/phpstan-phpunit": "^1.1",
  1607. "phpstan/phpstan-strict-rules": "^1.3",
  1608. "phpunit/phpunit": "^8.5 || ^9.5",
  1609. "vimeo/psalm": "^4.25 || ^5.4"
  1610. },
  1611. "type": "library",
  1612. "autoload": {
  1613. "psr-4": {
  1614. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1615. }
  1616. },
  1617. "notification-url": "https://packagist.org/downloads/",
  1618. "license": [
  1619. "MIT"
  1620. ],
  1621. "authors": [
  1622. {
  1623. "name": "Guilherme Blanco",
  1624. "email": "guilhermeblanco@gmail.com"
  1625. },
  1626. {
  1627. "name": "Roman Borschel",
  1628. "email": "roman@code-factory.org"
  1629. },
  1630. {
  1631. "name": "Benjamin Eberlei",
  1632. "email": "kontakt@beberlei.de"
  1633. },
  1634. {
  1635. "name": "Jonathan Wage",
  1636. "email": "jonwage@gmail.com"
  1637. },
  1638. {
  1639. "name": "Johannes Schmitt",
  1640. "email": "schmittjoh@gmail.com"
  1641. }
  1642. ],
  1643. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1644. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1645. "keywords": [
  1646. "inflection",
  1647. "inflector",
  1648. "lowercase",
  1649. "manipulation",
  1650. "php",
  1651. "plural",
  1652. "singular",
  1653. "strings",
  1654. "uppercase",
  1655. "words"
  1656. ],
  1657. "support": {
  1658. "issues": "https://github.com/doctrine/inflector/issues",
  1659. "source": "https://github.com/doctrine/inflector/tree/2.0.8"
  1660. },
  1661. "funding": [
  1662. {
  1663. "url": "https://www.doctrine-project.org/sponsorship.html",
  1664. "type": "custom"
  1665. },
  1666. {
  1667. "url": "https://www.patreon.com/phpdoctrine",
  1668. "type": "patreon"
  1669. },
  1670. {
  1671. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1672. "type": "tidelift"
  1673. }
  1674. ],
  1675. "time": "2023-06-16T13:40:37+00:00"
  1676. },
  1677. {
  1678. "name": "doctrine/lexer",
  1679. "version": "1.2.3",
  1680. "source": {
  1681. "type": "git",
  1682. "url": "https://github.com/doctrine/lexer.git",
  1683. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  1684. },
  1685. "dist": {
  1686. "type": "zip",
  1687. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1688. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1689. "shasum": ""
  1690. },
  1691. "require": {
  1692. "php": "^7.1 || ^8.0"
  1693. },
  1694. "require-dev": {
  1695. "doctrine/coding-standard": "^9.0",
  1696. "phpstan/phpstan": "^1.3",
  1697. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1698. "vimeo/psalm": "^4.11"
  1699. },
  1700. "type": "library",
  1701. "autoload": {
  1702. "psr-4": {
  1703. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1704. }
  1705. },
  1706. "notification-url": "https://packagist.org/downloads/",
  1707. "license": [
  1708. "MIT"
  1709. ],
  1710. "authors": [
  1711. {
  1712. "name": "Guilherme Blanco",
  1713. "email": "guilhermeblanco@gmail.com"
  1714. },
  1715. {
  1716. "name": "Roman Borschel",
  1717. "email": "roman@code-factory.org"
  1718. },
  1719. {
  1720. "name": "Johannes Schmitt",
  1721. "email": "schmittjoh@gmail.com"
  1722. }
  1723. ],
  1724. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1725. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1726. "keywords": [
  1727. "annotations",
  1728. "docblock",
  1729. "lexer",
  1730. "parser",
  1731. "php"
  1732. ],
  1733. "support": {
  1734. "issues": "https://github.com/doctrine/lexer/issues",
  1735. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  1736. },
  1737. "funding": [
  1738. {
  1739. "url": "https://www.doctrine-project.org/sponsorship.html",
  1740. "type": "custom"
  1741. },
  1742. {
  1743. "url": "https://www.patreon.com/phpdoctrine",
  1744. "type": "patreon"
  1745. },
  1746. {
  1747. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1748. "type": "tidelift"
  1749. }
  1750. ],
  1751. "time": "2022-02-28T11:07:21+00:00"
  1752. },
  1753. {
  1754. "name": "dragonmantank/cron-expression",
  1755. "version": "v3.3.3",
  1756. "source": {
  1757. "type": "git",
  1758. "url": "https://github.com/dragonmantank/cron-expression.git",
  1759. "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a"
  1760. },
  1761. "dist": {
  1762. "type": "zip",
  1763. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
  1764. "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
  1765. "shasum": ""
  1766. },
  1767. "require": {
  1768. "php": "^7.2|^8.0",
  1769. "webmozart/assert": "^1.0"
  1770. },
  1771. "replace": {
  1772. "mtdowling/cron-expression": "^1.0"
  1773. },
  1774. "require-dev": {
  1775. "phpstan/extension-installer": "^1.0",
  1776. "phpstan/phpstan": "^1.0",
  1777. "phpstan/phpstan-webmozart-assert": "^1.0",
  1778. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  1779. },
  1780. "type": "library",
  1781. "autoload": {
  1782. "psr-4": {
  1783. "Cron\\": "src/Cron/"
  1784. }
  1785. },
  1786. "notification-url": "https://packagist.org/downloads/",
  1787. "license": [
  1788. "MIT"
  1789. ],
  1790. "authors": [
  1791. {
  1792. "name": "Chris Tankersley",
  1793. "email": "chris@ctankersley.com",
  1794. "homepage": "https://github.com/dragonmantank"
  1795. }
  1796. ],
  1797. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1798. "keywords": [
  1799. "cron",
  1800. "schedule"
  1801. ],
  1802. "support": {
  1803. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  1804. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.3"
  1805. },
  1806. "funding": [
  1807. {
  1808. "url": "https://github.com/dragonmantank",
  1809. "type": "github"
  1810. }
  1811. ],
  1812. "time": "2023-08-10T19:36:49+00:00"
  1813. },
  1814. {
  1815. "name": "egulias/email-validator",
  1816. "version": "2.1.25",
  1817. "source": {
  1818. "type": "git",
  1819. "url": "https://github.com/egulias/EmailValidator.git",
  1820. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  1821. },
  1822. "dist": {
  1823. "type": "zip",
  1824. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1825. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1826. "shasum": ""
  1827. },
  1828. "require": {
  1829. "doctrine/lexer": "^1.0.1",
  1830. "php": ">=5.5",
  1831. "symfony/polyfill-intl-idn": "^1.10"
  1832. },
  1833. "require-dev": {
  1834. "dominicsayers/isemail": "^3.0.7",
  1835. "phpunit/phpunit": "^4.8.36|^7.5.15",
  1836. "satooshi/php-coveralls": "^1.0.1"
  1837. },
  1838. "suggest": {
  1839. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1840. },
  1841. "type": "library",
  1842. "extra": {
  1843. "branch-alias": {
  1844. "dev-master": "2.1.x-dev"
  1845. }
  1846. },
  1847. "autoload": {
  1848. "psr-4": {
  1849. "Egulias\\EmailValidator\\": "src"
  1850. }
  1851. },
  1852. "notification-url": "https://packagist.org/downloads/",
  1853. "license": [
  1854. "MIT"
  1855. ],
  1856. "authors": [
  1857. {
  1858. "name": "Eduardo Gulias Davis"
  1859. }
  1860. ],
  1861. "description": "A library for validating emails against several RFCs",
  1862. "homepage": "https://github.com/egulias/EmailValidator",
  1863. "keywords": [
  1864. "email",
  1865. "emailvalidation",
  1866. "emailvalidator",
  1867. "validation",
  1868. "validator"
  1869. ],
  1870. "support": {
  1871. "issues": "https://github.com/egulias/EmailValidator/issues",
  1872. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  1873. },
  1874. "funding": [
  1875. {
  1876. "url": "https://github.com/egulias",
  1877. "type": "github"
  1878. }
  1879. ],
  1880. "time": "2020-12-29T14:50:06+00:00"
  1881. },
  1882. {
  1883. "name": "evenement/evenement",
  1884. "version": "v3.0.2",
  1885. "source": {
  1886. "type": "git",
  1887. "url": "https://github.com/igorw/evenement.git",
  1888. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  1889. },
  1890. "dist": {
  1891. "type": "zip",
  1892. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  1893. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  1894. "shasum": ""
  1895. },
  1896. "require": {
  1897. "php": ">=7.0"
  1898. },
  1899. "require-dev": {
  1900. "phpunit/phpunit": "^9 || ^6"
  1901. },
  1902. "type": "library",
  1903. "autoload": {
  1904. "psr-4": {
  1905. "Evenement\\": "src/"
  1906. }
  1907. },
  1908. "notification-url": "https://packagist.org/downloads/",
  1909. "license": [
  1910. "MIT"
  1911. ],
  1912. "authors": [
  1913. {
  1914. "name": "Igor Wiedler",
  1915. "email": "igor@wiedler.ch"
  1916. }
  1917. ],
  1918. "description": "Événement is a very simple event dispatching library for PHP",
  1919. "keywords": [
  1920. "event-dispatcher",
  1921. "event-emitter"
  1922. ],
  1923. "support": {
  1924. "issues": "https://github.com/igorw/evenement/issues",
  1925. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  1926. },
  1927. "time": "2023-08-08T05:53:35+00:00"
  1928. },
  1929. {
  1930. "name": "ezyang/htmlpurifier",
  1931. "version": "v4.17.0",
  1932. "source": {
  1933. "type": "git",
  1934. "url": "https://github.com/ezyang/htmlpurifier.git",
  1935. "reference": "bbc513d79acf6691fa9cf10f192c90dd2957f18c"
  1936. },
  1937. "dist": {
  1938. "type": "zip",
  1939. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/bbc513d79acf6691fa9cf10f192c90dd2957f18c",
  1940. "reference": "bbc513d79acf6691fa9cf10f192c90dd2957f18c",
  1941. "shasum": ""
  1942. },
  1943. "require": {
  1944. "php": "~5.6.0 || ~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  1945. },
  1946. "require-dev": {
  1947. "cerdic/css-tidy": "^1.7 || ^2.0",
  1948. "simpletest/simpletest": "dev-master"
  1949. },
  1950. "suggest": {
  1951. "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
  1952. "ext-bcmath": "Used for unit conversion and imagecrash protection",
  1953. "ext-iconv": "Converts text to and from non-UTF-8 encodings",
  1954. "ext-tidy": "Used for pretty-printing HTML"
  1955. },
  1956. "type": "library",
  1957. "autoload": {
  1958. "files": [
  1959. "library/HTMLPurifier.composer.php"
  1960. ],
  1961. "psr-0": {
  1962. "HTMLPurifier": "library/"
  1963. },
  1964. "exclude-from-classmap": [
  1965. "/library/HTMLPurifier/Language/"
  1966. ]
  1967. },
  1968. "notification-url": "https://packagist.org/downloads/",
  1969. "license": [
  1970. "LGPL-2.1-or-later"
  1971. ],
  1972. "authors": [
  1973. {
  1974. "name": "Edward Z. Yang",
  1975. "email": "admin@htmlpurifier.org",
  1976. "homepage": "http://ezyang.com"
  1977. }
  1978. ],
  1979. "description": "Standards compliant HTML filter written in PHP",
  1980. "homepage": "http://htmlpurifier.org/",
  1981. "keywords": [
  1982. "html"
  1983. ],
  1984. "support": {
  1985. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  1986. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.17.0"
  1987. },
  1988. "time": "2023-11-17T15:01:25+00:00"
  1989. },
  1990. {
  1991. "name": "fenguoz/data-types",
  1992. "version": "1.0.0",
  1993. "source": {
  1994. "type": "git",
  1995. "url": "https://github.com/Fenguoz/data-types.git",
  1996. "reference": "82cfdf1f0df382845d36c9bd81d9b22630970fca"
  1997. },
  1998. "dist": {
  1999. "type": "zip",
  2000. "url": "https://api.github.com/repos/Fenguoz/data-types/zipball/82cfdf1f0df382845d36c9bd81d9b22630970fca",
  2001. "reference": "82cfdf1f0df382845d36c9bd81d9b22630970fca",
  2002. "shasum": "",
  2003. "mirrors": [
  2004. {
  2005. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2006. "preferred": true
  2007. }
  2008. ]
  2009. },
  2010. "require": {
  2011. "ext-bcmath": "*",
  2012. "ext-mbstring": "*",
  2013. "php": ">=7.2"
  2014. },
  2015. "type": "library",
  2016. "autoload": {
  2017. "psr-4": {
  2018. "Comely\\DataTypes\\": [
  2019. "src"
  2020. ]
  2021. }
  2022. },
  2023. "notification-url": "https://packagist.org/downloads/",
  2024. "license": [
  2025. "MIT"
  2026. ],
  2027. "authors": [
  2028. {
  2029. "name": "Furqan A. Siddiqui",
  2030. "email": "hello@furqansiddiqui.com",
  2031. "homepage": "https://www.furqansiddiqui.com",
  2032. "role": "Author"
  2033. }
  2034. ],
  2035. "description": "PHP data types",
  2036. "homepage": "https://github.com/comely-io/data-types",
  2037. "support": {
  2038. "source": "https://github.com/Fenguoz/data-types/tree/1.0.0"
  2039. },
  2040. "time": "2023-02-09T05:42:25+00:00"
  2041. },
  2042. {
  2043. "name": "fenguoz/tron-api",
  2044. "version": "1.1.0",
  2045. "source": {
  2046. "type": "git",
  2047. "url": "https://github.com/Fenguoz/tron-api.git",
  2048. "reference": "76c8335bcecf8d39e6b139cf2c6ce6a224c75f1c"
  2049. },
  2050. "dist": {
  2051. "type": "zip",
  2052. "url": "https://api.github.com/repos/Fenguoz/tron-api/zipball/76c8335bcecf8d39e6b139cf2c6ce6a224c75f1c",
  2053. "reference": "76c8335bcecf8d39e6b139cf2c6ce6a224c75f1c",
  2054. "shasum": "",
  2055. "mirrors": [
  2056. {
  2057. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2058. "preferred": true
  2059. }
  2060. ]
  2061. },
  2062. "require": {
  2063. "ext-bcmath": "*",
  2064. "ext-json": "*",
  2065. "fenguoz/data-types": "^1.0",
  2066. "fenguoz/web3.php": "^1.0",
  2067. "guzzlehttp/guzzle": "^7.2",
  2068. "kornrunner/secp256k1": "^0.2",
  2069. "php": ">=8.0",
  2070. "simplito/elliptic-php": "^1.0"
  2071. },
  2072. "require-dev": {
  2073. "phpunit/phpunit": "~9.0"
  2074. },
  2075. "type": "library",
  2076. "autoload": {
  2077. "psr-4": {
  2078. "IEXBase\\TronAPI\\": "src"
  2079. }
  2080. },
  2081. "notification-url": "https://packagist.org/downloads/",
  2082. "license": [
  2083. "MIT"
  2084. ],
  2085. "authors": [
  2086. {
  2087. "name": "Shamsudin Serderov",
  2088. "email": "steein.shamsudin@gmail.com"
  2089. }
  2090. ],
  2091. "description": "A PHP API for interacting with Tron (Trx)",
  2092. "homepage": "https://github.com/fenguoz/tron-api",
  2093. "keywords": [
  2094. "tron-api",
  2095. "tron-lib",
  2096. "tron-php",
  2097. "tron-rest-api"
  2098. ],
  2099. "support": {
  2100. "source": "https://github.com/Fenguoz/tron-api/tree/1.1.0"
  2101. },
  2102. "time": "2023-02-09T08:00:44+00:00"
  2103. },
  2104. {
  2105. "name": "fenguoz/tron-php",
  2106. "version": "2.0.0",
  2107. "source": {
  2108. "type": "git",
  2109. "url": "https://github.com/Fenguoz/tron-php.git",
  2110. "reference": "e12b9d2d63e2fd46dcbedfbe6efc26d13c824b64"
  2111. },
  2112. "dist": {
  2113. "type": "zip",
  2114. "url": "https://api.github.com/repos/Fenguoz/tron-php/zipball/e12b9d2d63e2fd46dcbedfbe6efc26d13c824b64",
  2115. "reference": "e12b9d2d63e2fd46dcbedfbe6efc26d13c824b64",
  2116. "shasum": "",
  2117. "mirrors": [
  2118. {
  2119. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2120. "preferred": true
  2121. }
  2122. ]
  2123. },
  2124. "require": {
  2125. "fenguoz/tron-api": "~1.1",
  2126. "fenguoz/web3.php": "^1.0",
  2127. "ionux/phactor": "1.0.8",
  2128. "kornrunner/keccak": "~1.0",
  2129. "php": ">=8.0"
  2130. },
  2131. "require-dev": {
  2132. "phpunit/phpunit": "~7.5 || ~9.0"
  2133. },
  2134. "type": "library",
  2135. "autoload": {
  2136. "psr-4": {
  2137. "Tron\\": "src/"
  2138. }
  2139. },
  2140. "notification-url": "https://packagist.org/downloads/",
  2141. "license": [
  2142. "MIT"
  2143. ],
  2144. "authors": [
  2145. {
  2146. "name": "Fenguoz",
  2147. "email": "243944672@qq.com"
  2148. }
  2149. ],
  2150. "description": "Support TRON's TRX and TRC20, which include functions such as address creation, balance query, transaction transfer, query the latest blockchain, query information based on the blockchain, and query information based on the transaction hash",
  2151. "homepage": "https://github.com/Fenguoz/tron-php",
  2152. "keywords": [
  2153. "php",
  2154. "trc20",
  2155. "tron",
  2156. "trx"
  2157. ],
  2158. "support": {
  2159. "issues": "https://github.com/Fenguoz/tron-php/issues",
  2160. "source": "https://github.com/Fenguoz/tron-php/tree/2.0.0"
  2161. },
  2162. "time": "2023-02-09T08:08:18+00:00"
  2163. },
  2164. {
  2165. "name": "fenguoz/web3.php",
  2166. "version": "1.0",
  2167. "source": {
  2168. "type": "git",
  2169. "url": "https://github.com/Fenguoz/web3.php.git",
  2170. "reference": "5b1c11e2d1e15971a677721e93975db2e78afd3b"
  2171. },
  2172. "dist": {
  2173. "type": "zip",
  2174. "url": "https://api.github.com/repos/Fenguoz/web3.php/zipball/5b1c11e2d1e15971a677721e93975db2e78afd3b",
  2175. "reference": "5b1c11e2d1e15971a677721e93975db2e78afd3b",
  2176. "shasum": "",
  2177. "mirrors": [
  2178. {
  2179. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2180. "preferred": true
  2181. }
  2182. ]
  2183. },
  2184. "require": {
  2185. "ext-mbstring": "*",
  2186. "guzzlehttp/guzzle": "^6.3|~7.0",
  2187. "kornrunner/keccak": "~1.0",
  2188. "php": ">=7.2",
  2189. "phpseclib/phpseclib": "~2.0.30"
  2190. },
  2191. "require-dev": {
  2192. "phpunit/phpunit": "~8.0|~9.0"
  2193. },
  2194. "type": "library",
  2195. "autoload": {
  2196. "psr-4": {
  2197. "Web3\\": "src/"
  2198. }
  2199. },
  2200. "notification-url": "https://packagist.org/downloads/",
  2201. "license": [
  2202. "MIT"
  2203. ],
  2204. "authors": [
  2205. {
  2206. "name": "sc0Vu",
  2207. "email": "alk03073135@gmail.com"
  2208. }
  2209. ],
  2210. "description": "Ethereum web3 interface.",
  2211. "support": {
  2212. "source": "https://github.com/Fenguoz/web3.php/tree/1.0"
  2213. },
  2214. "time": "2023-02-08T09:33:09+00:00"
  2215. },
  2216. {
  2217. "name": "fgrosse/phpasn1",
  2218. "version": "v2.5.0",
  2219. "source": {
  2220. "type": "git",
  2221. "url": "https://github.com/fgrosse/PHPASN1.git",
  2222. "reference": "42060ed45344789fb9f21f9f1864fc47b9e3507b"
  2223. },
  2224. "dist": {
  2225. "type": "zip",
  2226. "url": "https://api.github.com/repos/fgrosse/PHPASN1/zipball/42060ed45344789fb9f21f9f1864fc47b9e3507b",
  2227. "reference": "42060ed45344789fb9f21f9f1864fc47b9e3507b",
  2228. "shasum": "",
  2229. "mirrors": [
  2230. {
  2231. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2232. "preferred": true
  2233. }
  2234. ]
  2235. },
  2236. "require": {
  2237. "php": "^7.1 || ^8.0"
  2238. },
  2239. "require-dev": {
  2240. "php-coveralls/php-coveralls": "~2.0",
  2241. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  2242. },
  2243. "suggest": {
  2244. "ext-bcmath": "BCmath is the fallback extension for big integer calculations",
  2245. "ext-curl": "For loading OID information from the web if they have not bee defined statically",
  2246. "ext-gmp": "GMP is the preferred extension for big integer calculations",
  2247. "phpseclib/bcmath_compat": "BCmath polyfill for servers where neither GMP nor BCmath is available"
  2248. },
  2249. "type": "library",
  2250. "extra": {
  2251. "branch-alias": {
  2252. "dev-master": "2.0.x-dev"
  2253. }
  2254. },
  2255. "autoload": {
  2256. "psr-4": {
  2257. "FG\\": "lib/"
  2258. }
  2259. },
  2260. "notification-url": "https://packagist.org/downloads/",
  2261. "license": [
  2262. "MIT"
  2263. ],
  2264. "authors": [
  2265. {
  2266. "name": "Friedrich Große",
  2267. "email": "friedrich.grosse@gmail.com",
  2268. "homepage": "https://github.com/FGrosse",
  2269. "role": "Author"
  2270. },
  2271. {
  2272. "name": "All contributors",
  2273. "homepage": "https://github.com/FGrosse/PHPASN1/contributors"
  2274. }
  2275. ],
  2276. "description": "A PHP Framework that allows you to encode and decode arbitrary ASN.1 structures using the ITU-T X.690 Encoding Rules.",
  2277. "homepage": "https://github.com/FGrosse/PHPASN1",
  2278. "keywords": [
  2279. "DER",
  2280. "asn.1",
  2281. "asn1",
  2282. "ber",
  2283. "binary",
  2284. "decoding",
  2285. "encoding",
  2286. "x.509",
  2287. "x.690",
  2288. "x509",
  2289. "x690"
  2290. ],
  2291. "support": {
  2292. "issues": "https://github.com/fgrosse/PHPASN1/issues",
  2293. "source": "https://github.com/fgrosse/PHPASN1/tree/v2.5.0"
  2294. },
  2295. "abandoned": true,
  2296. "time": "2022-12-19T11:08:26+00:00"
  2297. },
  2298. {
  2299. "name": "fideloper/proxy",
  2300. "version": "4.4.2",
  2301. "source": {
  2302. "type": "git",
  2303. "url": "https://github.com/fideloper/TrustedProxy.git",
  2304. "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750"
  2305. },
  2306. "dist": {
  2307. "type": "zip",
  2308. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/a751f2bc86dd8e6cfef12dc0cbdada82f5a18750",
  2309. "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750",
  2310. "shasum": ""
  2311. },
  2312. "require": {
  2313. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  2314. "php": ">=5.4.0"
  2315. },
  2316. "require-dev": {
  2317. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  2318. "mockery/mockery": "^1.0",
  2319. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2320. },
  2321. "type": "library",
  2322. "extra": {
  2323. "laravel": {
  2324. "providers": [
  2325. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  2326. ]
  2327. }
  2328. },
  2329. "autoload": {
  2330. "psr-4": {
  2331. "Fideloper\\Proxy\\": "src/"
  2332. }
  2333. },
  2334. "notification-url": "https://packagist.org/downloads/",
  2335. "license": [
  2336. "MIT"
  2337. ],
  2338. "authors": [
  2339. {
  2340. "name": "Chris Fidao",
  2341. "email": "fideloper@gmail.com"
  2342. }
  2343. ],
  2344. "description": "Set trusted proxies for Laravel",
  2345. "keywords": [
  2346. "load balancing",
  2347. "proxy",
  2348. "trusted proxy"
  2349. ],
  2350. "support": {
  2351. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  2352. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.2"
  2353. },
  2354. "time": "2022-02-09T13:33:34+00:00"
  2355. },
  2356. {
  2357. "name": "fruitcake/laravel-cors",
  2358. "version": "v2.2.0",
  2359. "source": {
  2360. "type": "git",
  2361. "url": "https://github.com/fruitcake/laravel-cors.git",
  2362. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534"
  2363. },
  2364. "dist": {
  2365. "type": "zip",
  2366. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/783a74f5e3431d7b9805be8afb60fd0a8f743534",
  2367. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534",
  2368. "shasum": ""
  2369. },
  2370. "require": {
  2371. "asm89/stack-cors": "^2.0.1",
  2372. "illuminate/contracts": "^6|^7|^8|^9",
  2373. "illuminate/support": "^6|^7|^8|^9",
  2374. "php": ">=7.2"
  2375. },
  2376. "require-dev": {
  2377. "laravel/framework": "^6|^7.24|^8",
  2378. "orchestra/testbench-dusk": "^4|^5|^6|^7",
  2379. "phpunit/phpunit": "^6|^7|^8|^9",
  2380. "squizlabs/php_codesniffer": "^3.5"
  2381. },
  2382. "type": "library",
  2383. "extra": {
  2384. "branch-alias": {
  2385. "dev-master": "2.1-dev"
  2386. },
  2387. "laravel": {
  2388. "providers": [
  2389. "Fruitcake\\Cors\\CorsServiceProvider"
  2390. ]
  2391. }
  2392. },
  2393. "autoload": {
  2394. "psr-4": {
  2395. "Fruitcake\\Cors\\": "src/"
  2396. }
  2397. },
  2398. "notification-url": "https://packagist.org/downloads/",
  2399. "license": [
  2400. "MIT"
  2401. ],
  2402. "authors": [
  2403. {
  2404. "name": "Fruitcake",
  2405. "homepage": "https://fruitcake.nl"
  2406. },
  2407. {
  2408. "name": "Barry vd. Heuvel",
  2409. "email": "barryvdh@gmail.com"
  2410. }
  2411. ],
  2412. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  2413. "keywords": [
  2414. "api",
  2415. "cors",
  2416. "crossdomain",
  2417. "laravel"
  2418. ],
  2419. "support": {
  2420. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  2421. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.2.0"
  2422. },
  2423. "funding": [
  2424. {
  2425. "url": "https://fruitcake.nl",
  2426. "type": "custom"
  2427. },
  2428. {
  2429. "url": "https://github.com/barryvdh",
  2430. "type": "github"
  2431. }
  2432. ],
  2433. "abandoned": true,
  2434. "time": "2022-02-23T14:25:13+00:00"
  2435. },
  2436. {
  2437. "name": "getuilaboratory/getui-pushapi-php-client-v2",
  2438. "version": "dev-master",
  2439. "source": {
  2440. "type": "git",
  2441. "url": "https://github.com/GetuiLaboratory/getui-pushapi-php-client-v2.git",
  2442. "reference": "255cc076624d049c0481d7172cd3c519ae7b07f6"
  2443. },
  2444. "dist": {
  2445. "type": "zip",
  2446. "url": "https://api.github.com/repos/GetuiLaboratory/getui-pushapi-php-client-v2/zipball/255cc076624d049c0481d7172cd3c519ae7b07f6",
  2447. "reference": "255cc076624d049c0481d7172cd3c519ae7b07f6",
  2448. "shasum": ""
  2449. },
  2450. "default-branch": true,
  2451. "type": "library",
  2452. "autoload": {
  2453. "classmap": [
  2454. ""
  2455. ]
  2456. },
  2457. "notification-url": "https://packagist.org/downloads/",
  2458. "license": [
  2459. "MIT"
  2460. ],
  2461. "authors": [
  2462. {
  2463. "name": "getui",
  2464. "homepage": "https://www.getui.com/cn"
  2465. }
  2466. ],
  2467. "description": "getui php client V2",
  2468. "homepage": "https://www.getui.com/cn/",
  2469. "keywords": [
  2470. "GeTui",
  2471. "GetuiLaboratory",
  2472. "getui-pushapi-php-client",
  2473. "getui-pushapi-php-client-v2",
  2474. "pushapi"
  2475. ],
  2476. "support": {
  2477. "issues": "https://github.com/GetuiLaboratory/getui-pushapi-php-client-v2/issues",
  2478. "source": "https://github.com/GetuiLaboratory/getui-pushapi-php-client-v2/tree/master"
  2479. },
  2480. "time": "2021-06-21T03:22:42+00:00"
  2481. },
  2482. {
  2483. "name": "graham-campbell/result-type",
  2484. "version": "v1.1.2",
  2485. "source": {
  2486. "type": "git",
  2487. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  2488. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862"
  2489. },
  2490. "dist": {
  2491. "type": "zip",
  2492. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/fbd48bce38f73f8a4ec8583362e732e4095e5862",
  2493. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862",
  2494. "shasum": ""
  2495. },
  2496. "require": {
  2497. "php": "^7.2.5 || ^8.0",
  2498. "phpoption/phpoption": "^1.9.2"
  2499. },
  2500. "require-dev": {
  2501. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  2502. },
  2503. "type": "library",
  2504. "autoload": {
  2505. "psr-4": {
  2506. "GrahamCampbell\\ResultType\\": "src/"
  2507. }
  2508. },
  2509. "notification-url": "https://packagist.org/downloads/",
  2510. "license": [
  2511. "MIT"
  2512. ],
  2513. "authors": [
  2514. {
  2515. "name": "Graham Campbell",
  2516. "email": "hello@gjcampbell.co.uk",
  2517. "homepage": "https://github.com/GrahamCampbell"
  2518. }
  2519. ],
  2520. "description": "An Implementation Of The Result Type",
  2521. "keywords": [
  2522. "Graham Campbell",
  2523. "GrahamCampbell",
  2524. "Result Type",
  2525. "Result-Type",
  2526. "result"
  2527. ],
  2528. "support": {
  2529. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  2530. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.2"
  2531. },
  2532. "funding": [
  2533. {
  2534. "url": "https://github.com/GrahamCampbell",
  2535. "type": "github"
  2536. },
  2537. {
  2538. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  2539. "type": "tidelift"
  2540. }
  2541. ],
  2542. "time": "2023-11-12T22:16:48+00:00"
  2543. },
  2544. {
  2545. "name": "gregwar/captcha",
  2546. "version": "v1.2.1",
  2547. "source": {
  2548. "type": "git",
  2549. "url": "https://github.com/Gregwar/Captcha.git",
  2550. "reference": "229d3cdfe33d6f1349e0aec94a26e9205a6db08e"
  2551. },
  2552. "dist": {
  2553. "type": "zip",
  2554. "url": "https://api.github.com/repos/Gregwar/Captcha/zipball/229d3cdfe33d6f1349e0aec94a26e9205a6db08e",
  2555. "reference": "229d3cdfe33d6f1349e0aec94a26e9205a6db08e",
  2556. "shasum": ""
  2557. },
  2558. "require": {
  2559. "ext-gd": "*",
  2560. "ext-mbstring": "*",
  2561. "php": ">=5.3.0",
  2562. "symfony/finder": "*"
  2563. },
  2564. "require-dev": {
  2565. "phpunit/phpunit": "^6.4"
  2566. },
  2567. "type": "library",
  2568. "autoload": {
  2569. "psr-4": {
  2570. "Gregwar\\": "src/Gregwar"
  2571. }
  2572. },
  2573. "notification-url": "https://packagist.org/downloads/",
  2574. "license": [
  2575. "MIT"
  2576. ],
  2577. "authors": [
  2578. {
  2579. "name": "Grégoire Passault",
  2580. "email": "g.passault@gmail.com",
  2581. "homepage": "http://www.gregwar.com/"
  2582. },
  2583. {
  2584. "name": "Jeremy Livingston",
  2585. "email": "jeremy.j.livingston@gmail.com"
  2586. }
  2587. ],
  2588. "description": "Captcha generator",
  2589. "homepage": "https://github.com/Gregwar/Captcha",
  2590. "keywords": [
  2591. "bot",
  2592. "captcha",
  2593. "spam"
  2594. ],
  2595. "support": {
  2596. "issues": "https://github.com/Gregwar/Captcha/issues",
  2597. "source": "https://github.com/Gregwar/Captcha/tree/v1.2.1"
  2598. },
  2599. "time": "2023-09-26T13:45:37+00:00"
  2600. },
  2601. {
  2602. "name": "guzzlehttp/guzzle",
  2603. "version": "7.8.1",
  2604. "source": {
  2605. "type": "git",
  2606. "url": "https://github.com/guzzle/guzzle.git",
  2607. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104"
  2608. },
  2609. "dist": {
  2610. "type": "zip",
  2611. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104",
  2612. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104",
  2613. "shasum": ""
  2614. },
  2615. "require": {
  2616. "ext-json": "*",
  2617. "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
  2618. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  2619. "php": "^7.2.5 || ^8.0",
  2620. "psr/http-client": "^1.0",
  2621. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  2622. },
  2623. "provide": {
  2624. "psr/http-client-implementation": "1.0"
  2625. },
  2626. "require-dev": {
  2627. "bamarni/composer-bin-plugin": "^1.8.2",
  2628. "ext-curl": "*",
  2629. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  2630. "php-http/message-factory": "^1.1",
  2631. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  2632. "psr/log": "^1.1 || ^2.0 || ^3.0"
  2633. },
  2634. "suggest": {
  2635. "ext-curl": "Required for CURL handler support",
  2636. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  2637. "psr/log": "Required for using the Log middleware"
  2638. },
  2639. "type": "library",
  2640. "extra": {
  2641. "bamarni-bin": {
  2642. "bin-links": true,
  2643. "forward-command": false
  2644. }
  2645. },
  2646. "autoload": {
  2647. "files": [
  2648. "src/functions_include.php"
  2649. ],
  2650. "psr-4": {
  2651. "GuzzleHttp\\": "src/"
  2652. }
  2653. },
  2654. "notification-url": "https://packagist.org/downloads/",
  2655. "license": [
  2656. "MIT"
  2657. ],
  2658. "authors": [
  2659. {
  2660. "name": "Graham Campbell",
  2661. "email": "hello@gjcampbell.co.uk",
  2662. "homepage": "https://github.com/GrahamCampbell"
  2663. },
  2664. {
  2665. "name": "Michael Dowling",
  2666. "email": "mtdowling@gmail.com",
  2667. "homepage": "https://github.com/mtdowling"
  2668. },
  2669. {
  2670. "name": "Jeremy Lindblom",
  2671. "email": "jeremeamia@gmail.com",
  2672. "homepage": "https://github.com/jeremeamia"
  2673. },
  2674. {
  2675. "name": "George Mponos",
  2676. "email": "gmponos@gmail.com",
  2677. "homepage": "https://github.com/gmponos"
  2678. },
  2679. {
  2680. "name": "Tobias Nyholm",
  2681. "email": "tobias.nyholm@gmail.com",
  2682. "homepage": "https://github.com/Nyholm"
  2683. },
  2684. {
  2685. "name": "Márk Sági-Kazár",
  2686. "email": "mark.sagikazar@gmail.com",
  2687. "homepage": "https://github.com/sagikazarmark"
  2688. },
  2689. {
  2690. "name": "Tobias Schultze",
  2691. "email": "webmaster@tubo-world.de",
  2692. "homepage": "https://github.com/Tobion"
  2693. }
  2694. ],
  2695. "description": "Guzzle is a PHP HTTP client library",
  2696. "keywords": [
  2697. "client",
  2698. "curl",
  2699. "framework",
  2700. "http",
  2701. "http client",
  2702. "psr-18",
  2703. "psr-7",
  2704. "rest",
  2705. "web service"
  2706. ],
  2707. "support": {
  2708. "issues": "https://github.com/guzzle/guzzle/issues",
  2709. "source": "https://github.com/guzzle/guzzle/tree/7.8.1"
  2710. },
  2711. "funding": [
  2712. {
  2713. "url": "https://github.com/GrahamCampbell",
  2714. "type": "github"
  2715. },
  2716. {
  2717. "url": "https://github.com/Nyholm",
  2718. "type": "github"
  2719. },
  2720. {
  2721. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  2722. "type": "tidelift"
  2723. }
  2724. ],
  2725. "time": "2023-12-03T20:35:24+00:00"
  2726. },
  2727. {
  2728. "name": "guzzlehttp/promises",
  2729. "version": "2.0.2",
  2730. "source": {
  2731. "type": "git",
  2732. "url": "https://github.com/guzzle/promises.git",
  2733. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223"
  2734. },
  2735. "dist": {
  2736. "type": "zip",
  2737. "url": "https://api.github.com/repos/guzzle/promises/zipball/bbff78d96034045e58e13dedd6ad91b5d1253223",
  2738. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223",
  2739. "shasum": ""
  2740. },
  2741. "require": {
  2742. "php": "^7.2.5 || ^8.0"
  2743. },
  2744. "require-dev": {
  2745. "bamarni/composer-bin-plugin": "^1.8.2",
  2746. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  2747. },
  2748. "type": "library",
  2749. "extra": {
  2750. "bamarni-bin": {
  2751. "bin-links": true,
  2752. "forward-command": false
  2753. }
  2754. },
  2755. "autoload": {
  2756. "psr-4": {
  2757. "GuzzleHttp\\Promise\\": "src/"
  2758. }
  2759. },
  2760. "notification-url": "https://packagist.org/downloads/",
  2761. "license": [
  2762. "MIT"
  2763. ],
  2764. "authors": [
  2765. {
  2766. "name": "Graham Campbell",
  2767. "email": "hello@gjcampbell.co.uk",
  2768. "homepage": "https://github.com/GrahamCampbell"
  2769. },
  2770. {
  2771. "name": "Michael Dowling",
  2772. "email": "mtdowling@gmail.com",
  2773. "homepage": "https://github.com/mtdowling"
  2774. },
  2775. {
  2776. "name": "Tobias Nyholm",
  2777. "email": "tobias.nyholm@gmail.com",
  2778. "homepage": "https://github.com/Nyholm"
  2779. },
  2780. {
  2781. "name": "Tobias Schultze",
  2782. "email": "webmaster@tubo-world.de",
  2783. "homepage": "https://github.com/Tobion"
  2784. }
  2785. ],
  2786. "description": "Guzzle promises library",
  2787. "keywords": [
  2788. "promise"
  2789. ],
  2790. "support": {
  2791. "issues": "https://github.com/guzzle/promises/issues",
  2792. "source": "https://github.com/guzzle/promises/tree/2.0.2"
  2793. },
  2794. "funding": [
  2795. {
  2796. "url": "https://github.com/GrahamCampbell",
  2797. "type": "github"
  2798. },
  2799. {
  2800. "url": "https://github.com/Nyholm",
  2801. "type": "github"
  2802. },
  2803. {
  2804. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  2805. "type": "tidelift"
  2806. }
  2807. ],
  2808. "time": "2023-12-03T20:19:20+00:00"
  2809. },
  2810. {
  2811. "name": "guzzlehttp/psr7",
  2812. "version": "2.6.2",
  2813. "source": {
  2814. "type": "git",
  2815. "url": "https://github.com/guzzle/psr7.git",
  2816. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221"
  2817. },
  2818. "dist": {
  2819. "type": "zip",
  2820. "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221",
  2821. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221",
  2822. "shasum": ""
  2823. },
  2824. "require": {
  2825. "php": "^7.2.5 || ^8.0",
  2826. "psr/http-factory": "^1.0",
  2827. "psr/http-message": "^1.1 || ^2.0",
  2828. "ralouphie/getallheaders": "^3.0"
  2829. },
  2830. "provide": {
  2831. "psr/http-factory-implementation": "1.0",
  2832. "psr/http-message-implementation": "1.0"
  2833. },
  2834. "require-dev": {
  2835. "bamarni/composer-bin-plugin": "^1.8.2",
  2836. "http-interop/http-factory-tests": "^0.9",
  2837. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  2838. },
  2839. "suggest": {
  2840. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  2841. },
  2842. "type": "library",
  2843. "extra": {
  2844. "bamarni-bin": {
  2845. "bin-links": true,
  2846. "forward-command": false
  2847. }
  2848. },
  2849. "autoload": {
  2850. "psr-4": {
  2851. "GuzzleHttp\\Psr7\\": "src/"
  2852. }
  2853. },
  2854. "notification-url": "https://packagist.org/downloads/",
  2855. "license": [
  2856. "MIT"
  2857. ],
  2858. "authors": [
  2859. {
  2860. "name": "Graham Campbell",
  2861. "email": "hello@gjcampbell.co.uk",
  2862. "homepage": "https://github.com/GrahamCampbell"
  2863. },
  2864. {
  2865. "name": "Michael Dowling",
  2866. "email": "mtdowling@gmail.com",
  2867. "homepage": "https://github.com/mtdowling"
  2868. },
  2869. {
  2870. "name": "George Mponos",
  2871. "email": "gmponos@gmail.com",
  2872. "homepage": "https://github.com/gmponos"
  2873. },
  2874. {
  2875. "name": "Tobias Nyholm",
  2876. "email": "tobias.nyholm@gmail.com",
  2877. "homepage": "https://github.com/Nyholm"
  2878. },
  2879. {
  2880. "name": "Márk Sági-Kazár",
  2881. "email": "mark.sagikazar@gmail.com",
  2882. "homepage": "https://github.com/sagikazarmark"
  2883. },
  2884. {
  2885. "name": "Tobias Schultze",
  2886. "email": "webmaster@tubo-world.de",
  2887. "homepage": "https://github.com/Tobion"
  2888. },
  2889. {
  2890. "name": "Márk Sági-Kazár",
  2891. "email": "mark.sagikazar@gmail.com",
  2892. "homepage": "https://sagikazarmark.hu"
  2893. }
  2894. ],
  2895. "description": "PSR-7 message implementation that also provides common utility methods",
  2896. "keywords": [
  2897. "http",
  2898. "message",
  2899. "psr-7",
  2900. "request",
  2901. "response",
  2902. "stream",
  2903. "uri",
  2904. "url"
  2905. ],
  2906. "support": {
  2907. "issues": "https://github.com/guzzle/psr7/issues",
  2908. "source": "https://github.com/guzzle/psr7/tree/2.6.2"
  2909. },
  2910. "funding": [
  2911. {
  2912. "url": "https://github.com/GrahamCampbell",
  2913. "type": "github"
  2914. },
  2915. {
  2916. "url": "https://github.com/Nyholm",
  2917. "type": "github"
  2918. },
  2919. {
  2920. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  2921. "type": "tidelift"
  2922. }
  2923. ],
  2924. "time": "2023-12-03T20:05:35+00:00"
  2925. },
  2926. {
  2927. "name": "hanson/foundation-sdk",
  2928. "version": "5.0.2",
  2929. "source": {
  2930. "type": "git",
  2931. "url": "https://github.com/Hanson/foundation-sdk.git",
  2932. "reference": "cffcef228937105b8c87c1376548b56f3e0564a4"
  2933. },
  2934. "dist": {
  2935. "type": "zip",
  2936. "url": "https://api.github.com/repos/Hanson/foundation-sdk/zipball/cffcef228937105b8c87c1376548b56f3e0564a4",
  2937. "reference": "cffcef228937105b8c87c1376548b56f3e0564a4",
  2938. "shasum": "",
  2939. "mirrors": [
  2940. {
  2941. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2942. "preferred": true
  2943. }
  2944. ]
  2945. },
  2946. "require": {
  2947. "doctrine/cache": "^1.6",
  2948. "ext-curl": "*",
  2949. "guzzlehttp/guzzle": "^6.2|^7.0",
  2950. "monolog/monolog": "^1.22|^2.0|^3.0",
  2951. "php": "^7.0|^8.0",
  2952. "pimple/pimple": "^3.0",
  2953. "symfony/http-foundation": "^3.3|^4.0|^5.0|^6.0"
  2954. },
  2955. "require-dev": {
  2956. "phpunit/phpunit": "^9.3"
  2957. },
  2958. "type": "library",
  2959. "autoload": {
  2960. "psr-4": {
  2961. "Hanson\\Foundation\\": "src/"
  2962. }
  2963. },
  2964. "notification-url": "https://packagist.org/downloads/",
  2965. "license": [
  2966. "MIT"
  2967. ],
  2968. "authors": [
  2969. {
  2970. "name": "HanSon",
  2971. "email": "h@hanc.cc"
  2972. }
  2973. ],
  2974. "support": {
  2975. "issues": "https://github.com/Hanson/foundation-sdk/issues",
  2976. "source": "https://github.com/Hanson/foundation-sdk/tree/5.0.2"
  2977. },
  2978. "time": "2023-05-31T05:51:32+00:00"
  2979. },
  2980. {
  2981. "name": "ionux/phactor",
  2982. "version": "v1.0.8",
  2983. "source": {
  2984. "type": "git",
  2985. "url": "https://github.com/ionux/phactor.git",
  2986. "reference": "271373b65cffe75a8c28f7f8c392fe460251f4f7"
  2987. },
  2988. "dist": {
  2989. "type": "zip",
  2990. "url": "https://api.github.com/repos/ionux/phactor/zipball/271373b65cffe75a8c28f7f8c392fe460251f4f7",
  2991. "reference": "271373b65cffe75a8c28f7f8c392fe460251f4f7",
  2992. "shasum": "",
  2993. "mirrors": [
  2994. {
  2995. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2996. "preferred": true
  2997. }
  2998. ]
  2999. },
  3000. "require": {
  3001. "ext-bcmath": "*",
  3002. "ext-openssl": "*",
  3003. "php": ">=5.6.0"
  3004. },
  3005. "require-dev": {
  3006. "phpunit/phpunit": "^5.7.9"
  3007. },
  3008. "suggest": {
  3009. "ext-gmp": "Highest performing math library and preferred for this library's Elliptic Curve calculations."
  3010. },
  3011. "type": "library",
  3012. "autoload": {
  3013. "psr-4": {
  3014. "Phactor\\": "src/"
  3015. }
  3016. },
  3017. "notification-url": "https://packagist.org/downloads/",
  3018. "license": [
  3019. "MIT"
  3020. ],
  3021. "authors": [
  3022. {
  3023. "name": "Rich Morgan",
  3024. "email": "rich@richmorgan.me",
  3025. "role": "Creator and Lead Developer"
  3026. }
  3027. ],
  3028. "description": "Phactor is a high-performance PHP implementation of the elliptic curve math functions required to generate & verify private/public (asymmetric) EC keypairs and ECDSA signatures based on secp256k1 curve parameters. This library also includes a class to generate Service Identification Numbers (SINs) based on the published Identity Protocol v1 spec.",
  3029. "homepage": "https://github.com/ionux/phactor",
  3030. "keywords": [
  3031. "Algorithm",
  3032. "BIP",
  3033. "ECDSA",
  3034. "SIN",
  3035. "arbitrary",
  3036. "asymmetric",
  3037. "base",
  3038. "base58",
  3039. "bcmath",
  3040. "binary",
  3041. "bitcoin",
  3042. "calculator",
  3043. "coprime",
  3044. "crypto",
  3045. "cryptography",
  3046. "curve",
  3047. "digital",
  3048. "dsa",
  3049. "ec",
  3050. "elliptic",
  3051. "encryption",
  3052. "generate",
  3053. "gmp",
  3054. "hex",
  3055. "identification",
  3056. "identity",
  3057. "integer",
  3058. "key",
  3059. "keygen",
  3060. "keypair",
  3061. "keys",
  3062. "library",
  3063. "math",
  3064. "number",
  3065. "performance",
  3066. "phactor",
  3067. "precision",
  3068. "prime",
  3069. "private",
  3070. "protocol",
  3071. "public",
  3072. "secp256k1",
  3073. "service",
  3074. "signature",
  3075. "verify"
  3076. ],
  3077. "support": {
  3078. "email": "rich@richmorgan.me",
  3079. "issues": "https://github.com/ionux/phactor/issues",
  3080. "source": "https://github.com/ionux/phactor"
  3081. },
  3082. "time": "2018-04-27T16:49:28+00:00"
  3083. },
  3084. {
  3085. "name": "jaeger/g-http",
  3086. "version": "V1.7.2",
  3087. "source": {
  3088. "type": "git",
  3089. "url": "https://github.com/jae-jae/GHttp.git",
  3090. "reference": "82585ddd5e2c6651e37ab1d8166efcdbb6b293d4"
  3091. },
  3092. "dist": {
  3093. "type": "zip",
  3094. "url": "https://api.github.com/repos/jae-jae/GHttp/zipball/82585ddd5e2c6651e37ab1d8166efcdbb6b293d4",
  3095. "reference": "82585ddd5e2c6651e37ab1d8166efcdbb6b293d4",
  3096. "shasum": ""
  3097. },
  3098. "require": {
  3099. "cache/filesystem-adapter": "^1",
  3100. "guzzlehttp/guzzle": "^6.0 | ^7.0"
  3101. },
  3102. "type": "library",
  3103. "autoload": {
  3104. "psr-4": {
  3105. "Jaeger\\": "src"
  3106. }
  3107. },
  3108. "notification-url": "https://packagist.org/downloads/",
  3109. "license": [
  3110. "MIT"
  3111. ],
  3112. "authors": [
  3113. {
  3114. "name": "Jaeger",
  3115. "email": "JaegerCode@gmail.com"
  3116. }
  3117. ],
  3118. "description": "Simple Http client base on GuzzleHttp",
  3119. "support": {
  3120. "issues": "https://github.com/jae-jae/GHttp/issues",
  3121. "source": "https://github.com/jae-jae/GHttp/tree/V1.7.2"
  3122. },
  3123. "time": "2021-08-08T04:59:44+00:00"
  3124. },
  3125. {
  3126. "name": "jaeger/phpquery-single",
  3127. "version": "1.1.1",
  3128. "source": {
  3129. "type": "git",
  3130. "url": "https://github.com/jae-jae/phpQuery-single.git",
  3131. "reference": "39a650ade692a6b480c22220dce0c198d6a946fb"
  3132. },
  3133. "dist": {
  3134. "type": "zip",
  3135. "url": "https://api.github.com/repos/jae-jae/phpQuery-single/zipball/39a650ade692a6b480c22220dce0c198d6a946fb",
  3136. "reference": "39a650ade692a6b480c22220dce0c198d6a946fb",
  3137. "shasum": ""
  3138. },
  3139. "require": {
  3140. "php": ">=5.3.0"
  3141. },
  3142. "type": "library",
  3143. "autoload": {
  3144. "classmap": [
  3145. "phpQuery.php"
  3146. ]
  3147. },
  3148. "notification-url": "https://packagist.org/downloads/",
  3149. "license": [
  3150. "MIT"
  3151. ],
  3152. "authors": [
  3153. {
  3154. "name": "Tobiasz Cudnik",
  3155. "email": "tobiasz.cudnik@gmail.com",
  3156. "homepage": "https://github.com/TobiaszCudnik",
  3157. "role": "Developer"
  3158. },
  3159. {
  3160. "name": "Jaeger",
  3161. "role": "Packager"
  3162. }
  3163. ],
  3164. "description": "phpQuery单文件版本,是Querylist的依赖(http://querylist.cc/),phpQuery项目主页:http://code.google.com/p/phpquery/",
  3165. "homepage": "http://code.google.com/p/phpquery/",
  3166. "support": {
  3167. "issues": "https://github.com/jae-jae/phpQuery-single/issues",
  3168. "source": "https://github.com/jae-jae/phpQuery-single/tree/1.1.1"
  3169. },
  3170. "time": "2022-03-26T15:01:16+00:00"
  3171. },
  3172. {
  3173. "name": "jaeger/querylist",
  3174. "version": "V4.2.8",
  3175. "source": {
  3176. "type": "git",
  3177. "url": "https://github.com/jae-jae/QueryList.git",
  3178. "reference": "39dc0ca9c668bec7a793e20472ccd7d26ef89ea4"
  3179. },
  3180. "dist": {
  3181. "type": "zip",
  3182. "url": "https://api.github.com/repos/jae-jae/QueryList/zipball/39dc0ca9c668bec7a793e20472ccd7d26ef89ea4",
  3183. "reference": "39dc0ca9c668bec7a793e20472ccd7d26ef89ea4",
  3184. "shasum": ""
  3185. },
  3186. "require": {
  3187. "ext-dom": "*",
  3188. "jaeger/g-http": "^1.1",
  3189. "jaeger/phpquery-single": "^1",
  3190. "php": ">=7.1",
  3191. "tightenco/collect": ">5.0"
  3192. },
  3193. "require-dev": {
  3194. "phpunit/phpunit": "^8.5",
  3195. "symfony/var-dumper": "^3.3"
  3196. },
  3197. "type": "library",
  3198. "autoload": {
  3199. "psr-4": {
  3200. "QL\\": "src"
  3201. }
  3202. },
  3203. "notification-url": "https://packagist.org/downloads/",
  3204. "license": [
  3205. "MIT"
  3206. ],
  3207. "authors": [
  3208. {
  3209. "name": "Jaeger",
  3210. "email": "JaegerCode@gmail.com"
  3211. }
  3212. ],
  3213. "description": "Simple, elegant, extensible PHP Web Scraper (crawler/spider),Use the css3 dom selector,Based on phpQuery! 简洁、优雅、可扩展的PHP采集工具(爬虫),基于phpQuery。",
  3214. "homepage": "http://querylist.cc",
  3215. "keywords": [
  3216. "QueryList",
  3217. "phpQuery",
  3218. "spider"
  3219. ],
  3220. "support": {
  3221. "issues": "https://github.com/jae-jae/QueryList/issues",
  3222. "source": "https://github.com/jae-jae/QueryList/tree/V4.2.8"
  3223. },
  3224. "funding": [
  3225. {
  3226. "url": "https://opencollective.com/querylist",
  3227. "type": "open_collective"
  3228. }
  3229. ],
  3230. "time": "2021-07-05T06:07:58+00:00"
  3231. },
  3232. {
  3233. "name": "kornrunner/keccak",
  3234. "version": "1.1.0",
  3235. "source": {
  3236. "type": "git",
  3237. "url": "https://github.com/kornrunner/php-keccak.git",
  3238. "reference": "433749d28e117fb97baf9f2631b92b5d9ab3c890"
  3239. },
  3240. "dist": {
  3241. "type": "zip",
  3242. "url": "https://api.github.com/repos/kornrunner/php-keccak/zipball/433749d28e117fb97baf9f2631b92b5d9ab3c890",
  3243. "reference": "433749d28e117fb97baf9f2631b92b5d9ab3c890",
  3244. "shasum": "",
  3245. "mirrors": [
  3246. {
  3247. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3248. "preferred": true
  3249. }
  3250. ]
  3251. },
  3252. "require": {
  3253. "php": ">=7.3",
  3254. "symfony/polyfill-mbstring": "^1.8"
  3255. },
  3256. "require-dev": {
  3257. "phpunit/phpunit": "^8.2"
  3258. },
  3259. "type": "library",
  3260. "autoload": {
  3261. "psr-4": {
  3262. "kornrunner\\": "src"
  3263. }
  3264. },
  3265. "notification-url": "https://packagist.org/downloads/",
  3266. "license": [
  3267. "MIT"
  3268. ],
  3269. "authors": [
  3270. {
  3271. "name": "Boris Momcilovic",
  3272. "homepage": "https://github.com/kornrunner/php-keccak"
  3273. }
  3274. ],
  3275. "description": "Pure PHP implementation of Keccak",
  3276. "keywords": [
  3277. "keccak",
  3278. "sha-3",
  3279. "sha3-256"
  3280. ],
  3281. "support": {
  3282. "issues": "https://github.com/kornrunner/php-keccak/issues",
  3283. "source": "https://github.com/kornrunner/php-keccak/tree/1.1.0"
  3284. },
  3285. "time": "2020-12-07T15:40:44+00:00"
  3286. },
  3287. {
  3288. "name": "kornrunner/secp256k1",
  3289. "version": "0.2.0",
  3290. "source": {
  3291. "type": "git",
  3292. "url": "https://github.com/kornrunner/php-secp256k1.git",
  3293. "reference": "c3990dba47c7a8b0c9fd858fb29c61a5794fbb39"
  3294. },
  3295. "dist": {
  3296. "type": "zip",
  3297. "url": "https://api.github.com/repos/kornrunner/php-secp256k1/zipball/c3990dba47c7a8b0c9fd858fb29c61a5794fbb39",
  3298. "reference": "c3990dba47c7a8b0c9fd858fb29c61a5794fbb39",
  3299. "shasum": "",
  3300. "mirrors": [
  3301. {
  3302. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3303. "preferred": true
  3304. }
  3305. ]
  3306. },
  3307. "require": {
  3308. "mdanter/ecc": "^1",
  3309. "php": ">=7.3"
  3310. },
  3311. "require-dev": {
  3312. "phpunit/phpunit": "^9"
  3313. },
  3314. "type": "library",
  3315. "autoload": {
  3316. "psr-4": {
  3317. "kornrunner\\": "src/"
  3318. }
  3319. },
  3320. "notification-url": "https://packagist.org/downloads/",
  3321. "license": [
  3322. "MIT"
  3323. ],
  3324. "authors": [
  3325. {
  3326. "name": "Boris Momčilović",
  3327. "email": "boris.momcilovic@gmail.com"
  3328. }
  3329. ],
  3330. "description": "Pure PHP secp256k1",
  3331. "keywords": [
  3332. "curve",
  3333. "ecc",
  3334. "elliptic",
  3335. "secp256k1"
  3336. ],
  3337. "support": {
  3338. "issues": "https://github.com/kornrunner/php-secp256k1/issues",
  3339. "source": "https://github.com/kornrunner/php-secp256k1/tree/0.2.0"
  3340. },
  3341. "time": "2021-01-19T03:30:01+00:00"
  3342. },
  3343. {
  3344. "name": "laravel/framework",
  3345. "version": "v8.83.27",
  3346. "source": {
  3347. "type": "git",
  3348. "url": "https://github.com/laravel/framework.git",
  3349. "reference": "e1afe088b4ca613fb96dc57e6d8dbcb8cc2c6b49"
  3350. },
  3351. "dist": {
  3352. "type": "zip",
  3353. "url": "https://api.github.com/repos/laravel/framework/zipball/e1afe088b4ca613fb96dc57e6d8dbcb8cc2c6b49",
  3354. "reference": "e1afe088b4ca613fb96dc57e6d8dbcb8cc2c6b49",
  3355. "shasum": ""
  3356. },
  3357. "require": {
  3358. "doctrine/inflector": "^1.4|^2.0",
  3359. "dragonmantank/cron-expression": "^3.0.2",
  3360. "egulias/email-validator": "^2.1.10",
  3361. "ext-json": "*",
  3362. "ext-mbstring": "*",
  3363. "ext-openssl": "*",
  3364. "laravel/serializable-closure": "^1.0",
  3365. "league/commonmark": "^1.3|^2.0.2",
  3366. "league/flysystem": "^1.1",
  3367. "monolog/monolog": "^2.0",
  3368. "nesbot/carbon": "^2.53.1",
  3369. "opis/closure": "^3.6",
  3370. "php": "^7.3|^8.0",
  3371. "psr/container": "^1.0",
  3372. "psr/log": "^1.0|^2.0",
  3373. "psr/simple-cache": "^1.0",
  3374. "ramsey/uuid": "^4.2.2",
  3375. "swiftmailer/swiftmailer": "^6.3",
  3376. "symfony/console": "^5.4",
  3377. "symfony/error-handler": "^5.4",
  3378. "symfony/finder": "^5.4",
  3379. "symfony/http-foundation": "^5.4",
  3380. "symfony/http-kernel": "^5.4",
  3381. "symfony/mime": "^5.4",
  3382. "symfony/process": "^5.4",
  3383. "symfony/routing": "^5.4",
  3384. "symfony/var-dumper": "^5.4",
  3385. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  3386. "vlucas/phpdotenv": "^5.4.1",
  3387. "voku/portable-ascii": "^1.6.1"
  3388. },
  3389. "conflict": {
  3390. "tightenco/collect": "<5.5.33"
  3391. },
  3392. "provide": {
  3393. "psr/container-implementation": "1.0",
  3394. "psr/simple-cache-implementation": "1.0"
  3395. },
  3396. "replace": {
  3397. "illuminate/auth": "self.version",
  3398. "illuminate/broadcasting": "self.version",
  3399. "illuminate/bus": "self.version",
  3400. "illuminate/cache": "self.version",
  3401. "illuminate/collections": "self.version",
  3402. "illuminate/config": "self.version",
  3403. "illuminate/console": "self.version",
  3404. "illuminate/container": "self.version",
  3405. "illuminate/contracts": "self.version",
  3406. "illuminate/cookie": "self.version",
  3407. "illuminate/database": "self.version",
  3408. "illuminate/encryption": "self.version",
  3409. "illuminate/events": "self.version",
  3410. "illuminate/filesystem": "self.version",
  3411. "illuminate/hashing": "self.version",
  3412. "illuminate/http": "self.version",
  3413. "illuminate/log": "self.version",
  3414. "illuminate/macroable": "self.version",
  3415. "illuminate/mail": "self.version",
  3416. "illuminate/notifications": "self.version",
  3417. "illuminate/pagination": "self.version",
  3418. "illuminate/pipeline": "self.version",
  3419. "illuminate/queue": "self.version",
  3420. "illuminate/redis": "self.version",
  3421. "illuminate/routing": "self.version",
  3422. "illuminate/session": "self.version",
  3423. "illuminate/support": "self.version",
  3424. "illuminate/testing": "self.version",
  3425. "illuminate/translation": "self.version",
  3426. "illuminate/validation": "self.version",
  3427. "illuminate/view": "self.version"
  3428. },
  3429. "require-dev": {
  3430. "aws/aws-sdk-php": "^3.198.1",
  3431. "doctrine/dbal": "^2.13.3|^3.1.4",
  3432. "filp/whoops": "^2.14.3",
  3433. "guzzlehttp/guzzle": "^6.5.5|^7.0.1",
  3434. "league/flysystem-cached-adapter": "^1.0",
  3435. "mockery/mockery": "^1.4.4",
  3436. "orchestra/testbench-core": "^6.27",
  3437. "pda/pheanstalk": "^4.0",
  3438. "phpunit/phpunit": "^8.5.19|^9.5.8",
  3439. "predis/predis": "^1.1.9",
  3440. "symfony/cache": "^5.4"
  3441. },
  3442. "suggest": {
  3443. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  3444. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.198.1).",
  3445. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  3446. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
  3447. "ext-bcmath": "Required to use the multiple_of validation rule.",
  3448. "ext-ftp": "Required to use the Flysystem FTP driver.",
  3449. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  3450. "ext-memcached": "Required to use the memcache cache driver.",
  3451. "ext-pcntl": "Required to use all features of the queue worker.",
  3452. "ext-posix": "Required to use all features of the queue worker.",
  3453. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  3454. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  3455. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  3456. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.5.5|^7.0.1).",
  3457. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  3458. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  3459. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  3460. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  3461. "mockery/mockery": "Required to use mocking (^1.4.4).",
  3462. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  3463. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  3464. "phpunit/phpunit": "Required to use assertions and run tests (^8.5.19|^9.5.8).",
  3465. "predis/predis": "Required to use the predis connector (^1.1.9).",
  3466. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  3467. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0|^5.0|^6.0|^7.0).",
  3468. "symfony/cache": "Required to PSR-6 cache bridge (^5.4).",
  3469. "symfony/filesystem": "Required to enable support for relative symbolic links (^5.4).",
  3470. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  3471. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  3472. },
  3473. "type": "library",
  3474. "extra": {
  3475. "branch-alias": {
  3476. "dev-master": "8.x-dev"
  3477. }
  3478. },
  3479. "autoload": {
  3480. "files": [
  3481. "src/Illuminate/Collections/helpers.php",
  3482. "src/Illuminate/Events/functions.php",
  3483. "src/Illuminate/Foundation/helpers.php",
  3484. "src/Illuminate/Support/helpers.php"
  3485. ],
  3486. "psr-4": {
  3487. "Illuminate\\": "src/Illuminate/",
  3488. "Illuminate\\Support\\": [
  3489. "src/Illuminate/Macroable/",
  3490. "src/Illuminate/Collections/"
  3491. ]
  3492. }
  3493. },
  3494. "notification-url": "https://packagist.org/downloads/",
  3495. "license": [
  3496. "MIT"
  3497. ],
  3498. "authors": [
  3499. {
  3500. "name": "Taylor Otwell",
  3501. "email": "taylor@laravel.com"
  3502. }
  3503. ],
  3504. "description": "The Laravel Framework.",
  3505. "homepage": "https://laravel.com",
  3506. "keywords": [
  3507. "framework",
  3508. "laravel"
  3509. ],
  3510. "support": {
  3511. "issues": "https://github.com/laravel/framework/issues",
  3512. "source": "https://github.com/laravel/framework"
  3513. },
  3514. "time": "2022-12-08T15:28:55+00:00"
  3515. },
  3516. {
  3517. "name": "laravel/serializable-closure",
  3518. "version": "v1.3.3",
  3519. "source": {
  3520. "type": "git",
  3521. "url": "https://github.com/laravel/serializable-closure.git",
  3522. "reference": "3dbf8a8e914634c48d389c1234552666b3d43754"
  3523. },
  3524. "dist": {
  3525. "type": "zip",
  3526. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/3dbf8a8e914634c48d389c1234552666b3d43754",
  3527. "reference": "3dbf8a8e914634c48d389c1234552666b3d43754",
  3528. "shasum": ""
  3529. },
  3530. "require": {
  3531. "php": "^7.3|^8.0"
  3532. },
  3533. "require-dev": {
  3534. "nesbot/carbon": "^2.61",
  3535. "pestphp/pest": "^1.21.3",
  3536. "phpstan/phpstan": "^1.8.2",
  3537. "symfony/var-dumper": "^5.4.11"
  3538. },
  3539. "type": "library",
  3540. "extra": {
  3541. "branch-alias": {
  3542. "dev-master": "1.x-dev"
  3543. }
  3544. },
  3545. "autoload": {
  3546. "psr-4": {
  3547. "Laravel\\SerializableClosure\\": "src/"
  3548. }
  3549. },
  3550. "notification-url": "https://packagist.org/downloads/",
  3551. "license": [
  3552. "MIT"
  3553. ],
  3554. "authors": [
  3555. {
  3556. "name": "Taylor Otwell",
  3557. "email": "taylor@laravel.com"
  3558. },
  3559. {
  3560. "name": "Nuno Maduro",
  3561. "email": "nuno@laravel.com"
  3562. }
  3563. ],
  3564. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  3565. "keywords": [
  3566. "closure",
  3567. "laravel",
  3568. "serializable"
  3569. ],
  3570. "support": {
  3571. "issues": "https://github.com/laravel/serializable-closure/issues",
  3572. "source": "https://github.com/laravel/serializable-closure"
  3573. },
  3574. "time": "2023-11-08T14:08:06+00:00"
  3575. },
  3576. {
  3577. "name": "laravel/socialite",
  3578. "version": "v5.11.0",
  3579. "source": {
  3580. "type": "git",
  3581. "url": "https://github.com/laravel/socialite.git",
  3582. "reference": "4f6a8af6f3f7c18da03d19842dd0514315501c10"
  3583. },
  3584. "dist": {
  3585. "type": "zip",
  3586. "url": "https://api.github.com/repos/laravel/socialite/zipball/4f6a8af6f3f7c18da03d19842dd0514315501c10",
  3587. "reference": "4f6a8af6f3f7c18da03d19842dd0514315501c10",
  3588. "shasum": ""
  3589. },
  3590. "require": {
  3591. "ext-json": "*",
  3592. "guzzlehttp/guzzle": "^6.0|^7.0",
  3593. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3594. "illuminate/http": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3595. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3596. "league/oauth1-client": "^1.10.1",
  3597. "php": "^7.2|^8.0"
  3598. },
  3599. "require-dev": {
  3600. "mockery/mockery": "^1.0",
  3601. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0",
  3602. "phpstan/phpstan": "^1.10",
  3603. "phpunit/phpunit": "^8.0|^9.3|^10.4"
  3604. },
  3605. "type": "library",
  3606. "extra": {
  3607. "branch-alias": {
  3608. "dev-master": "5.x-dev"
  3609. },
  3610. "laravel": {
  3611. "providers": [
  3612. "Laravel\\Socialite\\SocialiteServiceProvider"
  3613. ],
  3614. "aliases": {
  3615. "Socialite": "Laravel\\Socialite\\Facades\\Socialite"
  3616. }
  3617. }
  3618. },
  3619. "autoload": {
  3620. "psr-4": {
  3621. "Laravel\\Socialite\\": "src/"
  3622. }
  3623. },
  3624. "notification-url": "https://packagist.org/downloads/",
  3625. "license": [
  3626. "MIT"
  3627. ],
  3628. "authors": [
  3629. {
  3630. "name": "Taylor Otwell",
  3631. "email": "taylor@laravel.com"
  3632. }
  3633. ],
  3634. "description": "Laravel wrapper around OAuth 1 & OAuth 2 libraries.",
  3635. "homepage": "https://laravel.com",
  3636. "keywords": [
  3637. "laravel",
  3638. "oauth"
  3639. ],
  3640. "support": {
  3641. "issues": "https://github.com/laravel/socialite/issues",
  3642. "source": "https://github.com/laravel/socialite"
  3643. },
  3644. "time": "2023-12-02T18:22:36+00:00"
  3645. },
  3646. {
  3647. "name": "laravel/tinker",
  3648. "version": "v2.8.2",
  3649. "source": {
  3650. "type": "git",
  3651. "url": "https://github.com/laravel/tinker.git",
  3652. "reference": "b936d415b252b499e8c3b1f795cd4fc20f57e1f3"
  3653. },
  3654. "dist": {
  3655. "type": "zip",
  3656. "url": "https://api.github.com/repos/laravel/tinker/zipball/b936d415b252b499e8c3b1f795cd4fc20f57e1f3",
  3657. "reference": "b936d415b252b499e8c3b1f795cd4fc20f57e1f3",
  3658. "shasum": ""
  3659. },
  3660. "require": {
  3661. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0",
  3662. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0",
  3663. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
  3664. "php": "^7.2.5|^8.0",
  3665. "psy/psysh": "^0.10.4|^0.11.1",
  3666. "symfony/var-dumper": "^4.3.4|^5.0|^6.0"
  3667. },
  3668. "require-dev": {
  3669. "mockery/mockery": "~1.3.3|^1.4.2",
  3670. "phpstan/phpstan": "^1.10",
  3671. "phpunit/phpunit": "^8.5.8|^9.3.3"
  3672. },
  3673. "suggest": {
  3674. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0)."
  3675. },
  3676. "type": "library",
  3677. "extra": {
  3678. "branch-alias": {
  3679. "dev-master": "2.x-dev"
  3680. },
  3681. "laravel": {
  3682. "providers": [
  3683. "Laravel\\Tinker\\TinkerServiceProvider"
  3684. ]
  3685. }
  3686. },
  3687. "autoload": {
  3688. "psr-4": {
  3689. "Laravel\\Tinker\\": "src/"
  3690. }
  3691. },
  3692. "notification-url": "https://packagist.org/downloads/",
  3693. "license": [
  3694. "MIT"
  3695. ],
  3696. "authors": [
  3697. {
  3698. "name": "Taylor Otwell",
  3699. "email": "taylor@laravel.com"
  3700. }
  3701. ],
  3702. "description": "Powerful REPL for the Laravel framework.",
  3703. "keywords": [
  3704. "REPL",
  3705. "Tinker",
  3706. "laravel",
  3707. "psysh"
  3708. ],
  3709. "support": {
  3710. "issues": "https://github.com/laravel/tinker/issues",
  3711. "source": "https://github.com/laravel/tinker/tree/v2.8.2"
  3712. },
  3713. "time": "2023-08-15T14:27:00+00:00"
  3714. },
  3715. {
  3716. "name": "league/commonmark",
  3717. "version": "2.4.1",
  3718. "source": {
  3719. "type": "git",
  3720. "url": "https://github.com/thephpleague/commonmark.git",
  3721. "reference": "3669d6d5f7a47a93c08ddff335e6d945481a1dd5"
  3722. },
  3723. "dist": {
  3724. "type": "zip",
  3725. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/3669d6d5f7a47a93c08ddff335e6d945481a1dd5",
  3726. "reference": "3669d6d5f7a47a93c08ddff335e6d945481a1dd5",
  3727. "shasum": ""
  3728. },
  3729. "require": {
  3730. "ext-mbstring": "*",
  3731. "league/config": "^1.1.1",
  3732. "php": "^7.4 || ^8.0",
  3733. "psr/event-dispatcher": "^1.0",
  3734. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  3735. "symfony/polyfill-php80": "^1.16"
  3736. },
  3737. "require-dev": {
  3738. "cebe/markdown": "^1.0",
  3739. "commonmark/cmark": "0.30.0",
  3740. "commonmark/commonmark.js": "0.30.0",
  3741. "composer/package-versions-deprecated": "^1.8",
  3742. "embed/embed": "^4.4",
  3743. "erusev/parsedown": "^1.0",
  3744. "ext-json": "*",
  3745. "github/gfm": "0.29.0",
  3746. "michelf/php-markdown": "^1.4 || ^2.0",
  3747. "nyholm/psr7": "^1.5",
  3748. "phpstan/phpstan": "^1.8.2",
  3749. "phpunit/phpunit": "^9.5.21",
  3750. "scrutinizer/ocular": "^1.8.1",
  3751. "symfony/finder": "^5.3 | ^6.0",
  3752. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0",
  3753. "unleashedtech/php-coding-standard": "^3.1.1",
  3754. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  3755. },
  3756. "suggest": {
  3757. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  3758. },
  3759. "type": "library",
  3760. "extra": {
  3761. "branch-alias": {
  3762. "dev-main": "2.5-dev"
  3763. }
  3764. },
  3765. "autoload": {
  3766. "psr-4": {
  3767. "League\\CommonMark\\": "src"
  3768. }
  3769. },
  3770. "notification-url": "https://packagist.org/downloads/",
  3771. "license": [
  3772. "BSD-3-Clause"
  3773. ],
  3774. "authors": [
  3775. {
  3776. "name": "Colin O'Dell",
  3777. "email": "colinodell@gmail.com",
  3778. "homepage": "https://www.colinodell.com",
  3779. "role": "Lead Developer"
  3780. }
  3781. ],
  3782. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  3783. "homepage": "https://commonmark.thephpleague.com",
  3784. "keywords": [
  3785. "commonmark",
  3786. "flavored",
  3787. "gfm",
  3788. "github",
  3789. "github-flavored",
  3790. "markdown",
  3791. "md",
  3792. "parser"
  3793. ],
  3794. "support": {
  3795. "docs": "https://commonmark.thephpleague.com/",
  3796. "forum": "https://github.com/thephpleague/commonmark/discussions",
  3797. "issues": "https://github.com/thephpleague/commonmark/issues",
  3798. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  3799. "source": "https://github.com/thephpleague/commonmark"
  3800. },
  3801. "funding": [
  3802. {
  3803. "url": "https://www.colinodell.com/sponsor",
  3804. "type": "custom"
  3805. },
  3806. {
  3807. "url": "https://www.paypal.me/colinpodell/10.00",
  3808. "type": "custom"
  3809. },
  3810. {
  3811. "url": "https://github.com/colinodell",
  3812. "type": "github"
  3813. },
  3814. {
  3815. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  3816. "type": "tidelift"
  3817. }
  3818. ],
  3819. "time": "2023-08-30T16:55:00+00:00"
  3820. },
  3821. {
  3822. "name": "league/config",
  3823. "version": "v1.2.0",
  3824. "source": {
  3825. "type": "git",
  3826. "url": "https://github.com/thephpleague/config.git",
  3827. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  3828. },
  3829. "dist": {
  3830. "type": "zip",
  3831. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  3832. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  3833. "shasum": ""
  3834. },
  3835. "require": {
  3836. "dflydev/dot-access-data": "^3.0.1",
  3837. "nette/schema": "^1.2",
  3838. "php": "^7.4 || ^8.0"
  3839. },
  3840. "require-dev": {
  3841. "phpstan/phpstan": "^1.8.2",
  3842. "phpunit/phpunit": "^9.5.5",
  3843. "scrutinizer/ocular": "^1.8.1",
  3844. "unleashedtech/php-coding-standard": "^3.1",
  3845. "vimeo/psalm": "^4.7.3"
  3846. },
  3847. "type": "library",
  3848. "extra": {
  3849. "branch-alias": {
  3850. "dev-main": "1.2-dev"
  3851. }
  3852. },
  3853. "autoload": {
  3854. "psr-4": {
  3855. "League\\Config\\": "src"
  3856. }
  3857. },
  3858. "notification-url": "https://packagist.org/downloads/",
  3859. "license": [
  3860. "BSD-3-Clause"
  3861. ],
  3862. "authors": [
  3863. {
  3864. "name": "Colin O'Dell",
  3865. "email": "colinodell@gmail.com",
  3866. "homepage": "https://www.colinodell.com",
  3867. "role": "Lead Developer"
  3868. }
  3869. ],
  3870. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  3871. "homepage": "https://config.thephpleague.com",
  3872. "keywords": [
  3873. "array",
  3874. "config",
  3875. "configuration",
  3876. "dot",
  3877. "dot-access",
  3878. "nested",
  3879. "schema"
  3880. ],
  3881. "support": {
  3882. "docs": "https://config.thephpleague.com/",
  3883. "issues": "https://github.com/thephpleague/config/issues",
  3884. "rss": "https://github.com/thephpleague/config/releases.atom",
  3885. "source": "https://github.com/thephpleague/config"
  3886. },
  3887. "funding": [
  3888. {
  3889. "url": "https://www.colinodell.com/sponsor",
  3890. "type": "custom"
  3891. },
  3892. {
  3893. "url": "https://www.paypal.me/colinpodell/10.00",
  3894. "type": "custom"
  3895. },
  3896. {
  3897. "url": "https://github.com/colinodell",
  3898. "type": "github"
  3899. }
  3900. ],
  3901. "time": "2022-12-11T20:36:23+00:00"
  3902. },
  3903. {
  3904. "name": "league/flysystem",
  3905. "version": "1.1.10",
  3906. "source": {
  3907. "type": "git",
  3908. "url": "https://github.com/thephpleague/flysystem.git",
  3909. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1"
  3910. },
  3911. "dist": {
  3912. "type": "zip",
  3913. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/3239285c825c152bcc315fe0e87d6b55f5972ed1",
  3914. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1",
  3915. "shasum": ""
  3916. },
  3917. "require": {
  3918. "ext-fileinfo": "*",
  3919. "league/mime-type-detection": "^1.3",
  3920. "php": "^7.2.5 || ^8.0"
  3921. },
  3922. "conflict": {
  3923. "league/flysystem-sftp": "<1.0.6"
  3924. },
  3925. "require-dev": {
  3926. "phpspec/prophecy": "^1.11.1",
  3927. "phpunit/phpunit": "^8.5.8"
  3928. },
  3929. "suggest": {
  3930. "ext-ftp": "Allows you to use FTP server storage",
  3931. "ext-openssl": "Allows you to use FTPS server storage",
  3932. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  3933. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  3934. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  3935. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  3936. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  3937. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  3938. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  3939. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  3940. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  3941. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  3942. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  3943. },
  3944. "type": "library",
  3945. "extra": {
  3946. "branch-alias": {
  3947. "dev-master": "1.1-dev"
  3948. }
  3949. },
  3950. "autoload": {
  3951. "psr-4": {
  3952. "League\\Flysystem\\": "src/"
  3953. }
  3954. },
  3955. "notification-url": "https://packagist.org/downloads/",
  3956. "license": [
  3957. "MIT"
  3958. ],
  3959. "authors": [
  3960. {
  3961. "name": "Frank de Jonge",
  3962. "email": "info@frenky.net"
  3963. }
  3964. ],
  3965. "description": "Filesystem abstraction: Many filesystems, one API.",
  3966. "keywords": [
  3967. "Cloud Files",
  3968. "WebDAV",
  3969. "abstraction",
  3970. "aws",
  3971. "cloud",
  3972. "copy.com",
  3973. "dropbox",
  3974. "file systems",
  3975. "files",
  3976. "filesystem",
  3977. "filesystems",
  3978. "ftp",
  3979. "rackspace",
  3980. "remote",
  3981. "s3",
  3982. "sftp",
  3983. "storage"
  3984. ],
  3985. "support": {
  3986. "issues": "https://github.com/thephpleague/flysystem/issues",
  3987. "source": "https://github.com/thephpleague/flysystem/tree/1.1.10"
  3988. },
  3989. "funding": [
  3990. {
  3991. "url": "https://offset.earth/frankdejonge",
  3992. "type": "other"
  3993. }
  3994. ],
  3995. "time": "2022-10-04T09:16:37+00:00"
  3996. },
  3997. {
  3998. "name": "league/mime-type-detection",
  3999. "version": "1.14.0",
  4000. "source": {
  4001. "type": "git",
  4002. "url": "https://github.com/thephpleague/mime-type-detection.git",
  4003. "reference": "b6a5854368533df0295c5761a0253656a2e52d9e"
  4004. },
  4005. "dist": {
  4006. "type": "zip",
  4007. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/b6a5854368533df0295c5761a0253656a2e52d9e",
  4008. "reference": "b6a5854368533df0295c5761a0253656a2e52d9e",
  4009. "shasum": ""
  4010. },
  4011. "require": {
  4012. "ext-fileinfo": "*",
  4013. "php": "^7.4 || ^8.0"
  4014. },
  4015. "require-dev": {
  4016. "friendsofphp/php-cs-fixer": "^3.2",
  4017. "phpstan/phpstan": "^0.12.68",
  4018. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  4019. },
  4020. "type": "library",
  4021. "autoload": {
  4022. "psr-4": {
  4023. "League\\MimeTypeDetection\\": "src"
  4024. }
  4025. },
  4026. "notification-url": "https://packagist.org/downloads/",
  4027. "license": [
  4028. "MIT"
  4029. ],
  4030. "authors": [
  4031. {
  4032. "name": "Frank de Jonge",
  4033. "email": "info@frankdejonge.nl"
  4034. }
  4035. ],
  4036. "description": "Mime-type detection for Flysystem",
  4037. "support": {
  4038. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  4039. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.14.0"
  4040. },
  4041. "funding": [
  4042. {
  4043. "url": "https://github.com/frankdejonge",
  4044. "type": "github"
  4045. },
  4046. {
  4047. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  4048. "type": "tidelift"
  4049. }
  4050. ],
  4051. "time": "2023-10-17T14:13:20+00:00"
  4052. },
  4053. {
  4054. "name": "league/oauth1-client",
  4055. "version": "v1.10.1",
  4056. "source": {
  4057. "type": "git",
  4058. "url": "https://github.com/thephpleague/oauth1-client.git",
  4059. "reference": "d6365b901b5c287dd41f143033315e2f777e1167"
  4060. },
  4061. "dist": {
  4062. "type": "zip",
  4063. "url": "https://api.github.com/repos/thephpleague/oauth1-client/zipball/d6365b901b5c287dd41f143033315e2f777e1167",
  4064. "reference": "d6365b901b5c287dd41f143033315e2f777e1167",
  4065. "shasum": ""
  4066. },
  4067. "require": {
  4068. "ext-json": "*",
  4069. "ext-openssl": "*",
  4070. "guzzlehttp/guzzle": "^6.0|^7.0",
  4071. "guzzlehttp/psr7": "^1.7|^2.0",
  4072. "php": ">=7.1||>=8.0"
  4073. },
  4074. "require-dev": {
  4075. "ext-simplexml": "*",
  4076. "friendsofphp/php-cs-fixer": "^2.17",
  4077. "mockery/mockery": "^1.3.3",
  4078. "phpstan/phpstan": "^0.12.42",
  4079. "phpunit/phpunit": "^7.5||9.5"
  4080. },
  4081. "suggest": {
  4082. "ext-simplexml": "For decoding XML-based responses."
  4083. },
  4084. "type": "library",
  4085. "extra": {
  4086. "branch-alias": {
  4087. "dev-master": "1.0-dev",
  4088. "dev-develop": "2.0-dev"
  4089. }
  4090. },
  4091. "autoload": {
  4092. "psr-4": {
  4093. "League\\OAuth1\\Client\\": "src/"
  4094. }
  4095. },
  4096. "notification-url": "https://packagist.org/downloads/",
  4097. "license": [
  4098. "MIT"
  4099. ],
  4100. "authors": [
  4101. {
  4102. "name": "Ben Corlett",
  4103. "email": "bencorlett@me.com",
  4104. "homepage": "http://www.webcomm.com.au",
  4105. "role": "Developer"
  4106. }
  4107. ],
  4108. "description": "OAuth 1.0 Client Library",
  4109. "keywords": [
  4110. "Authentication",
  4111. "SSO",
  4112. "authorization",
  4113. "bitbucket",
  4114. "identity",
  4115. "idp",
  4116. "oauth",
  4117. "oauth1",
  4118. "single sign on",
  4119. "trello",
  4120. "tumblr",
  4121. "twitter"
  4122. ],
  4123. "support": {
  4124. "issues": "https://github.com/thephpleague/oauth1-client/issues",
  4125. "source": "https://github.com/thephpleague/oauth1-client/tree/v1.10.1"
  4126. },
  4127. "time": "2022-04-15T14:02:14+00:00"
  4128. },
  4129. {
  4130. "name": "lizhichao/one-sm",
  4131. "version": "1.10",
  4132. "source": {
  4133. "type": "git",
  4134. "url": "https://github.com/lizhichao/sm.git",
  4135. "reference": "687a012a44a5bfd4d9143a0234e1060543be455a"
  4136. },
  4137. "dist": {
  4138. "type": "zip",
  4139. "url": "https://api.github.com/repos/lizhichao/sm/zipball/687a012a44a5bfd4d9143a0234e1060543be455a",
  4140. "reference": "687a012a44a5bfd4d9143a0234e1060543be455a",
  4141. "shasum": ""
  4142. },
  4143. "require": {
  4144. "php": ">=5.6"
  4145. },
  4146. "type": "library",
  4147. "autoload": {
  4148. "psr-4": {
  4149. "OneSm\\": "src/"
  4150. }
  4151. },
  4152. "notification-url": "https://packagist.org/downloads/",
  4153. "license": [
  4154. "Apache-2.0"
  4155. ],
  4156. "authors": [
  4157. {
  4158. "name": "tanszhe",
  4159. "email": "1018595261@qq.com"
  4160. }
  4161. ],
  4162. "description": "国密sm3",
  4163. "keywords": [
  4164. "php",
  4165. "sm3"
  4166. ],
  4167. "support": {
  4168. "issues": "https://github.com/lizhichao/sm/issues",
  4169. "source": "https://github.com/lizhichao/sm/tree/1.10"
  4170. },
  4171. "funding": [
  4172. {
  4173. "url": "https://www.vicsdf.com/img/w.jpg",
  4174. "type": "custom"
  4175. },
  4176. {
  4177. "url": "https://www.vicsdf.com/img/z.jpg",
  4178. "type": "custom"
  4179. }
  4180. ],
  4181. "time": "2021-05-26T06:19:22+00:00"
  4182. },
  4183. {
  4184. "name": "maatwebsite/excel",
  4185. "version": "3.1.51",
  4186. "source": {
  4187. "type": "git",
  4188. "url": "https://github.com/SpartnerNL/Laravel-Excel.git",
  4189. "reference": "6d3c78ce6645abada32e03b40dc7f3c561878bc3"
  4190. },
  4191. "dist": {
  4192. "type": "zip",
  4193. "url": "https://api.github.com/repos/SpartnerNL/Laravel-Excel/zipball/6d3c78ce6645abada32e03b40dc7f3c561878bc3",
  4194. "reference": "6d3c78ce6645abada32e03b40dc7f3c561878bc3",
  4195. "shasum": ""
  4196. },
  4197. "require": {
  4198. "composer/semver": "^3.3",
  4199. "ext-json": "*",
  4200. "illuminate/support": "5.8.*||^6.0||^7.0||^8.0||^9.0||^10.0",
  4201. "php": "^7.0||^8.0",
  4202. "phpoffice/phpspreadsheet": "^1.18",
  4203. "psr/simple-cache": "^1.0||^2.0||^3.0"
  4204. },
  4205. "require-dev": {
  4206. "orchestra/testbench": "^6.0||^7.0||^8.0",
  4207. "predis/predis": "^1.1"
  4208. },
  4209. "type": "library",
  4210. "extra": {
  4211. "laravel": {
  4212. "providers": [
  4213. "Maatwebsite\\Excel\\ExcelServiceProvider"
  4214. ],
  4215. "aliases": {
  4216. "Excel": "Maatwebsite\\Excel\\Facades\\Excel"
  4217. }
  4218. }
  4219. },
  4220. "autoload": {
  4221. "psr-4": {
  4222. "Maatwebsite\\Excel\\": "src/"
  4223. }
  4224. },
  4225. "notification-url": "https://packagist.org/downloads/",
  4226. "license": [
  4227. "MIT"
  4228. ],
  4229. "authors": [
  4230. {
  4231. "name": "Patrick Brouwers",
  4232. "email": "patrick@spartner.nl"
  4233. }
  4234. ],
  4235. "description": "Supercharged Excel exports and imports in Laravel",
  4236. "keywords": [
  4237. "PHPExcel",
  4238. "batch",
  4239. "csv",
  4240. "excel",
  4241. "export",
  4242. "import",
  4243. "laravel",
  4244. "php",
  4245. "phpspreadsheet"
  4246. ],
  4247. "support": {
  4248. "issues": "https://github.com/SpartnerNL/Laravel-Excel/issues",
  4249. "source": "https://github.com/SpartnerNL/Laravel-Excel/tree/3.1.51"
  4250. },
  4251. "funding": [
  4252. {
  4253. "url": "https://laravel-excel.com/commercial-support",
  4254. "type": "custom"
  4255. },
  4256. {
  4257. "url": "https://github.com/patrickbrouwers",
  4258. "type": "github"
  4259. }
  4260. ],
  4261. "time": "2023-12-08T12:44:49+00:00"
  4262. },
  4263. {
  4264. "name": "maennchen/zipstream-php",
  4265. "version": "2.4.0",
  4266. "source": {
  4267. "type": "git",
  4268. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  4269. "reference": "3fa72e4c71a43f9e9118752a5c90e476a8dc9eb3"
  4270. },
  4271. "dist": {
  4272. "type": "zip",
  4273. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/3fa72e4c71a43f9e9118752a5c90e476a8dc9eb3",
  4274. "reference": "3fa72e4c71a43f9e9118752a5c90e476a8dc9eb3",
  4275. "shasum": ""
  4276. },
  4277. "require": {
  4278. "ext-mbstring": "*",
  4279. "myclabs/php-enum": "^1.5",
  4280. "php": "^8.0",
  4281. "psr/http-message": "^1.0"
  4282. },
  4283. "require-dev": {
  4284. "ext-zip": "*",
  4285. "friendsofphp/php-cs-fixer": "^3.9",
  4286. "guzzlehttp/guzzle": "^6.5.3 || ^7.2.0",
  4287. "mikey179/vfsstream": "^1.6",
  4288. "php-coveralls/php-coveralls": "^2.4",
  4289. "phpunit/phpunit": "^8.5.8 || ^9.4.2",
  4290. "vimeo/psalm": "^5.0"
  4291. },
  4292. "type": "library",
  4293. "autoload": {
  4294. "psr-4": {
  4295. "ZipStream\\": "src/"
  4296. }
  4297. },
  4298. "notification-url": "https://packagist.org/downloads/",
  4299. "license": [
  4300. "MIT"
  4301. ],
  4302. "authors": [
  4303. {
  4304. "name": "Paul Duncan",
  4305. "email": "pabs@pablotron.org"
  4306. },
  4307. {
  4308. "name": "Jonatan Männchen",
  4309. "email": "jonatan@maennchen.ch"
  4310. },
  4311. {
  4312. "name": "Jesse Donat",
  4313. "email": "donatj@gmail.com"
  4314. },
  4315. {
  4316. "name": "András Kolesár",
  4317. "email": "kolesar@kolesar.hu"
  4318. }
  4319. ],
  4320. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  4321. "keywords": [
  4322. "stream",
  4323. "zip"
  4324. ],
  4325. "support": {
  4326. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  4327. "source": "https://github.com/maennchen/ZipStream-PHP/tree/2.4.0"
  4328. },
  4329. "funding": [
  4330. {
  4331. "url": "https://github.com/maennchen",
  4332. "type": "github"
  4333. },
  4334. {
  4335. "url": "https://opencollective.com/zipstream",
  4336. "type": "open_collective"
  4337. }
  4338. ],
  4339. "time": "2022-12-08T12:29:14+00:00"
  4340. },
  4341. {
  4342. "name": "markbaker/complex",
  4343. "version": "3.0.2",
  4344. "source": {
  4345. "type": "git",
  4346. "url": "https://github.com/MarkBaker/PHPComplex.git",
  4347. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9"
  4348. },
  4349. "dist": {
  4350. "type": "zip",
  4351. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  4352. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  4353. "shasum": ""
  4354. },
  4355. "require": {
  4356. "php": "^7.2 || ^8.0"
  4357. },
  4358. "require-dev": {
  4359. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  4360. "phpcompatibility/php-compatibility": "^9.3",
  4361. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  4362. "squizlabs/php_codesniffer": "^3.7"
  4363. },
  4364. "type": "library",
  4365. "autoload": {
  4366. "psr-4": {
  4367. "Complex\\": "classes/src/"
  4368. }
  4369. },
  4370. "notification-url": "https://packagist.org/downloads/",
  4371. "license": [
  4372. "MIT"
  4373. ],
  4374. "authors": [
  4375. {
  4376. "name": "Mark Baker",
  4377. "email": "mark@lange.demon.co.uk"
  4378. }
  4379. ],
  4380. "description": "PHP Class for working with complex numbers",
  4381. "homepage": "https://github.com/MarkBaker/PHPComplex",
  4382. "keywords": [
  4383. "complex",
  4384. "mathematics"
  4385. ],
  4386. "support": {
  4387. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  4388. "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.2"
  4389. },
  4390. "time": "2022-12-06T16:21:08+00:00"
  4391. },
  4392. {
  4393. "name": "markbaker/matrix",
  4394. "version": "3.0.1",
  4395. "source": {
  4396. "type": "git",
  4397. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  4398. "reference": "728434227fe21be27ff6d86621a1b13107a2562c"
  4399. },
  4400. "dist": {
  4401. "type": "zip",
  4402. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/728434227fe21be27ff6d86621a1b13107a2562c",
  4403. "reference": "728434227fe21be27ff6d86621a1b13107a2562c",
  4404. "shasum": ""
  4405. },
  4406. "require": {
  4407. "php": "^7.1 || ^8.0"
  4408. },
  4409. "require-dev": {
  4410. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  4411. "phpcompatibility/php-compatibility": "^9.3",
  4412. "phpdocumentor/phpdocumentor": "2.*",
  4413. "phploc/phploc": "^4.0",
  4414. "phpmd/phpmd": "2.*",
  4415. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  4416. "sebastian/phpcpd": "^4.0",
  4417. "squizlabs/php_codesniffer": "^3.7"
  4418. },
  4419. "type": "library",
  4420. "autoload": {
  4421. "psr-4": {
  4422. "Matrix\\": "classes/src/"
  4423. }
  4424. },
  4425. "notification-url": "https://packagist.org/downloads/",
  4426. "license": [
  4427. "MIT"
  4428. ],
  4429. "authors": [
  4430. {
  4431. "name": "Mark Baker",
  4432. "email": "mark@demon-angel.eu"
  4433. }
  4434. ],
  4435. "description": "PHP Class for working with matrices",
  4436. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  4437. "keywords": [
  4438. "mathematics",
  4439. "matrix",
  4440. "vector"
  4441. ],
  4442. "support": {
  4443. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  4444. "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.1"
  4445. },
  4446. "time": "2022-12-02T22:17:43+00:00"
  4447. },
  4448. {
  4449. "name": "mdanter/ecc",
  4450. "version": "v1.0.0",
  4451. "source": {
  4452. "type": "git",
  4453. "url": "https://github.com/phpecc/phpecc.git",
  4454. "reference": "34e2eec096bf3dcda814e8f66dd91ae87a2db7cd"
  4455. },
  4456. "dist": {
  4457. "type": "zip",
  4458. "url": "https://api.github.com/repos/phpecc/phpecc/zipball/34e2eec096bf3dcda814e8f66dd91ae87a2db7cd",
  4459. "reference": "34e2eec096bf3dcda814e8f66dd91ae87a2db7cd",
  4460. "shasum": "",
  4461. "mirrors": [
  4462. {
  4463. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4464. "preferred": true
  4465. }
  4466. ]
  4467. },
  4468. "require": {
  4469. "ext-gmp": "*",
  4470. "fgrosse/phpasn1": "^2.0",
  4471. "php": "^7.0||^8.0"
  4472. },
  4473. "require-dev": {
  4474. "phpunit/phpunit": "^6.0||^8.0||^9.0",
  4475. "squizlabs/php_codesniffer": "^2.0",
  4476. "symfony/yaml": "^2.6|^3.0"
  4477. },
  4478. "type": "library",
  4479. "autoload": {
  4480. "psr-4": {
  4481. "Mdanter\\Ecc\\": "src/"
  4482. }
  4483. },
  4484. "notification-url": "https://packagist.org/downloads/",
  4485. "license": [
  4486. "MIT"
  4487. ],
  4488. "authors": [
  4489. {
  4490. "name": "Matyas Danter",
  4491. "homepage": "http://matejdanter.com/",
  4492. "role": "Author"
  4493. },
  4494. {
  4495. "name": "Thibaud Fabre",
  4496. "email": "thibaud@aztech.io",
  4497. "homepage": "http://aztech.io",
  4498. "role": "Maintainer"
  4499. },
  4500. {
  4501. "name": "Thomas Kerin",
  4502. "email": "afk11@users.noreply.github.com",
  4503. "role": "Maintainer"
  4504. }
  4505. ],
  4506. "description": "PHP Elliptic Curve Cryptography library",
  4507. "homepage": "https://github.com/phpecc/phpecc",
  4508. "keywords": [
  4509. "Diffie",
  4510. "ECDSA",
  4511. "Hellman",
  4512. "curve",
  4513. "ecdh",
  4514. "elliptic",
  4515. "nistp192",
  4516. "nistp224",
  4517. "nistp256",
  4518. "nistp384",
  4519. "nistp521",
  4520. "phpecc",
  4521. "secp256k1",
  4522. "secp256r1"
  4523. ],
  4524. "support": {
  4525. "issues": "https://github.com/phpecc/phpecc/issues",
  4526. "source": "https://github.com/phpecc/phpecc/tree/v1.0.0"
  4527. },
  4528. "time": "2021-01-16T19:42:14+00:00"
  4529. },
  4530. {
  4531. "name": "monolog/monolog",
  4532. "version": "2.9.2",
  4533. "source": {
  4534. "type": "git",
  4535. "url": "https://github.com/Seldaek/monolog.git",
  4536. "reference": "437cb3628f4cf6042cc10ae97fc2b8472e48ca1f"
  4537. },
  4538. "dist": {
  4539. "type": "zip",
  4540. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/437cb3628f4cf6042cc10ae97fc2b8472e48ca1f",
  4541. "reference": "437cb3628f4cf6042cc10ae97fc2b8472e48ca1f",
  4542. "shasum": ""
  4543. },
  4544. "require": {
  4545. "php": ">=7.2",
  4546. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  4547. },
  4548. "provide": {
  4549. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  4550. },
  4551. "require-dev": {
  4552. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  4553. "doctrine/couchdb": "~1.0@dev",
  4554. "elasticsearch/elasticsearch": "^7 || ^8",
  4555. "ext-json": "*",
  4556. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  4557. "guzzlehttp/guzzle": "^7.4",
  4558. "guzzlehttp/psr7": "^2.2",
  4559. "mongodb/mongodb": "^1.8",
  4560. "php-amqplib/php-amqplib": "~2.4 || ^3",
  4561. "phpspec/prophecy": "^1.15",
  4562. "phpstan/phpstan": "^0.12.91",
  4563. "phpunit/phpunit": "^8.5.14",
  4564. "predis/predis": "^1.1 || ^2.0",
  4565. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  4566. "ruflin/elastica": "^7",
  4567. "swiftmailer/swiftmailer": "^5.3|^6.0",
  4568. "symfony/mailer": "^5.4 || ^6",
  4569. "symfony/mime": "^5.4 || ^6"
  4570. },
  4571. "suggest": {
  4572. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  4573. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  4574. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  4575. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  4576. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  4577. "ext-mbstring": "Allow to work properly with unicode symbols",
  4578. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  4579. "ext-openssl": "Required to send log messages using SSL",
  4580. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  4581. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  4582. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  4583. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  4584. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  4585. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  4586. },
  4587. "type": "library",
  4588. "extra": {
  4589. "branch-alias": {
  4590. "dev-main": "2.x-dev"
  4591. }
  4592. },
  4593. "autoload": {
  4594. "psr-4": {
  4595. "Monolog\\": "src/Monolog"
  4596. }
  4597. },
  4598. "notification-url": "https://packagist.org/downloads/",
  4599. "license": [
  4600. "MIT"
  4601. ],
  4602. "authors": [
  4603. {
  4604. "name": "Jordi Boggiano",
  4605. "email": "j.boggiano@seld.be",
  4606. "homepage": "https://seld.be"
  4607. }
  4608. ],
  4609. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  4610. "homepage": "https://github.com/Seldaek/monolog",
  4611. "keywords": [
  4612. "log",
  4613. "logging",
  4614. "psr-3"
  4615. ],
  4616. "support": {
  4617. "issues": "https://github.com/Seldaek/monolog/issues",
  4618. "source": "https://github.com/Seldaek/monolog/tree/2.9.2"
  4619. },
  4620. "funding": [
  4621. {
  4622. "url": "https://github.com/Seldaek",
  4623. "type": "github"
  4624. },
  4625. {
  4626. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  4627. "type": "tidelift"
  4628. }
  4629. ],
  4630. "time": "2023-10-27T15:25:26+00:00"
  4631. },
  4632. {
  4633. "name": "mtdowling/jmespath.php",
  4634. "version": "2.7.0",
  4635. "source": {
  4636. "type": "git",
  4637. "url": "https://github.com/jmespath/jmespath.php.git",
  4638. "reference": "bbb69a935c2cbb0c03d7f481a238027430f6440b"
  4639. },
  4640. "dist": {
  4641. "type": "zip",
  4642. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/bbb69a935c2cbb0c03d7f481a238027430f6440b",
  4643. "reference": "bbb69a935c2cbb0c03d7f481a238027430f6440b",
  4644. "shasum": ""
  4645. },
  4646. "require": {
  4647. "php": "^7.2.5 || ^8.0",
  4648. "symfony/polyfill-mbstring": "^1.17"
  4649. },
  4650. "require-dev": {
  4651. "composer/xdebug-handler": "^3.0.3",
  4652. "phpunit/phpunit": "^8.5.33"
  4653. },
  4654. "bin": [
  4655. "bin/jp.php"
  4656. ],
  4657. "type": "library",
  4658. "extra": {
  4659. "branch-alias": {
  4660. "dev-master": "2.7-dev"
  4661. }
  4662. },
  4663. "autoload": {
  4664. "files": [
  4665. "src/JmesPath.php"
  4666. ],
  4667. "psr-4": {
  4668. "JmesPath\\": "src/"
  4669. }
  4670. },
  4671. "notification-url": "https://packagist.org/downloads/",
  4672. "license": [
  4673. "MIT"
  4674. ],
  4675. "authors": [
  4676. {
  4677. "name": "Graham Campbell",
  4678. "email": "hello@gjcampbell.co.uk",
  4679. "homepage": "https://github.com/GrahamCampbell"
  4680. },
  4681. {
  4682. "name": "Michael Dowling",
  4683. "email": "mtdowling@gmail.com",
  4684. "homepage": "https://github.com/mtdowling"
  4685. }
  4686. ],
  4687. "description": "Declaratively specify how to extract elements from a JSON document",
  4688. "keywords": [
  4689. "json",
  4690. "jsonpath"
  4691. ],
  4692. "support": {
  4693. "issues": "https://github.com/jmespath/jmespath.php/issues",
  4694. "source": "https://github.com/jmespath/jmespath.php/tree/2.7.0"
  4695. },
  4696. "time": "2023-08-25T10:54:48+00:00"
  4697. },
  4698. {
  4699. "name": "myclabs/php-enum",
  4700. "version": "1.8.4",
  4701. "source": {
  4702. "type": "git",
  4703. "url": "https://github.com/myclabs/php-enum.git",
  4704. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483"
  4705. },
  4706. "dist": {
  4707. "type": "zip",
  4708. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/a867478eae49c9f59ece437ae7f9506bfaa27483",
  4709. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483",
  4710. "shasum": ""
  4711. },
  4712. "require": {
  4713. "ext-json": "*",
  4714. "php": "^7.3 || ^8.0"
  4715. },
  4716. "require-dev": {
  4717. "phpunit/phpunit": "^9.5",
  4718. "squizlabs/php_codesniffer": "1.*",
  4719. "vimeo/psalm": "^4.6.2"
  4720. },
  4721. "type": "library",
  4722. "autoload": {
  4723. "psr-4": {
  4724. "MyCLabs\\Enum\\": "src/"
  4725. },
  4726. "classmap": [
  4727. "stubs/Stringable.php"
  4728. ]
  4729. },
  4730. "notification-url": "https://packagist.org/downloads/",
  4731. "license": [
  4732. "MIT"
  4733. ],
  4734. "authors": [
  4735. {
  4736. "name": "PHP Enum contributors",
  4737. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  4738. }
  4739. ],
  4740. "description": "PHP Enum implementation",
  4741. "homepage": "http://github.com/myclabs/php-enum",
  4742. "keywords": [
  4743. "enum"
  4744. ],
  4745. "support": {
  4746. "issues": "https://github.com/myclabs/php-enum/issues",
  4747. "source": "https://github.com/myclabs/php-enum/tree/1.8.4"
  4748. },
  4749. "funding": [
  4750. {
  4751. "url": "https://github.com/mnapoli",
  4752. "type": "github"
  4753. },
  4754. {
  4755. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  4756. "type": "tidelift"
  4757. }
  4758. ],
  4759. "time": "2022-08-04T09:53:51+00:00"
  4760. },
  4761. {
  4762. "name": "nesbot/carbon",
  4763. "version": "2.72.1",
  4764. "source": {
  4765. "type": "git",
  4766. "url": "https://github.com/briannesbitt/Carbon.git",
  4767. "reference": "2b3b3db0a2d0556a177392ff1a3bf5608fa09f78"
  4768. },
  4769. "dist": {
  4770. "type": "zip",
  4771. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/2b3b3db0a2d0556a177392ff1a3bf5608fa09f78",
  4772. "reference": "2b3b3db0a2d0556a177392ff1a3bf5608fa09f78",
  4773. "shasum": ""
  4774. },
  4775. "require": {
  4776. "carbonphp/carbon-doctrine-types": "*",
  4777. "ext-json": "*",
  4778. "php": "^7.1.8 || ^8.0",
  4779. "psr/clock": "^1.0",
  4780. "symfony/polyfill-mbstring": "^1.0",
  4781. "symfony/polyfill-php80": "^1.16",
  4782. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  4783. },
  4784. "provide": {
  4785. "psr/clock-implementation": "1.0"
  4786. },
  4787. "require-dev": {
  4788. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  4789. "doctrine/orm": "^2.7 || ^3.0",
  4790. "friendsofphp/php-cs-fixer": "^3.0",
  4791. "kylekatarnls/multi-tester": "^2.0",
  4792. "ondrejmirtes/better-reflection": "*",
  4793. "phpmd/phpmd": "^2.9",
  4794. "phpstan/extension-installer": "^1.0",
  4795. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  4796. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  4797. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  4798. "squizlabs/php_codesniffer": "^3.4"
  4799. },
  4800. "bin": [
  4801. "bin/carbon"
  4802. ],
  4803. "type": "library",
  4804. "extra": {
  4805. "branch-alias": {
  4806. "dev-3.x": "3.x-dev",
  4807. "dev-master": "2.x-dev"
  4808. },
  4809. "laravel": {
  4810. "providers": [
  4811. "Carbon\\Laravel\\ServiceProvider"
  4812. ]
  4813. },
  4814. "phpstan": {
  4815. "includes": [
  4816. "extension.neon"
  4817. ]
  4818. }
  4819. },
  4820. "autoload": {
  4821. "psr-4": {
  4822. "Carbon\\": "src/Carbon/"
  4823. }
  4824. },
  4825. "notification-url": "https://packagist.org/downloads/",
  4826. "license": [
  4827. "MIT"
  4828. ],
  4829. "authors": [
  4830. {
  4831. "name": "Brian Nesbitt",
  4832. "email": "brian@nesbot.com",
  4833. "homepage": "https://markido.com"
  4834. },
  4835. {
  4836. "name": "kylekatarnls",
  4837. "homepage": "https://github.com/kylekatarnls"
  4838. }
  4839. ],
  4840. "description": "An API extension for DateTime that supports 281 different languages.",
  4841. "homepage": "https://carbon.nesbot.com",
  4842. "keywords": [
  4843. "date",
  4844. "datetime",
  4845. "time"
  4846. ],
  4847. "support": {
  4848. "docs": "https://carbon.nesbot.com/docs",
  4849. "issues": "https://github.com/briannesbitt/Carbon/issues",
  4850. "source": "https://github.com/briannesbitt/Carbon"
  4851. },
  4852. "funding": [
  4853. {
  4854. "url": "https://github.com/sponsors/kylekatarnls",
  4855. "type": "github"
  4856. },
  4857. {
  4858. "url": "https://opencollective.com/Carbon#sponsor",
  4859. "type": "opencollective"
  4860. },
  4861. {
  4862. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  4863. "type": "tidelift"
  4864. }
  4865. ],
  4866. "time": "2023-12-08T23:47:49+00:00"
  4867. },
  4868. {
  4869. "name": "nette/schema",
  4870. "version": "v1.2.5",
  4871. "source": {
  4872. "type": "git",
  4873. "url": "https://github.com/nette/schema.git",
  4874. "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a"
  4875. },
  4876. "dist": {
  4877. "type": "zip",
  4878. "url": "https://api.github.com/repos/nette/schema/zipball/0462f0166e823aad657c9224d0f849ecac1ba10a",
  4879. "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a",
  4880. "shasum": ""
  4881. },
  4882. "require": {
  4883. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  4884. "php": "7.1 - 8.3"
  4885. },
  4886. "require-dev": {
  4887. "nette/tester": "^2.3 || ^2.4",
  4888. "phpstan/phpstan-nette": "^1.0",
  4889. "tracy/tracy": "^2.7"
  4890. },
  4891. "type": "library",
  4892. "extra": {
  4893. "branch-alias": {
  4894. "dev-master": "1.2-dev"
  4895. }
  4896. },
  4897. "autoload": {
  4898. "classmap": [
  4899. "src/"
  4900. ]
  4901. },
  4902. "notification-url": "https://packagist.org/downloads/",
  4903. "license": [
  4904. "BSD-3-Clause",
  4905. "GPL-2.0-only",
  4906. "GPL-3.0-only"
  4907. ],
  4908. "authors": [
  4909. {
  4910. "name": "David Grudl",
  4911. "homepage": "https://davidgrudl.com"
  4912. },
  4913. {
  4914. "name": "Nette Community",
  4915. "homepage": "https://nette.org/contributors"
  4916. }
  4917. ],
  4918. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  4919. "homepage": "https://nette.org",
  4920. "keywords": [
  4921. "config",
  4922. "nette"
  4923. ],
  4924. "support": {
  4925. "issues": "https://github.com/nette/schema/issues",
  4926. "source": "https://github.com/nette/schema/tree/v1.2.5"
  4927. },
  4928. "time": "2023-10-05T20:37:59+00:00"
  4929. },
  4930. {
  4931. "name": "nette/utils",
  4932. "version": "v4.0.3",
  4933. "source": {
  4934. "type": "git",
  4935. "url": "https://github.com/nette/utils.git",
  4936. "reference": "a9d127dd6a203ce6d255b2e2db49759f7506e015"
  4937. },
  4938. "dist": {
  4939. "type": "zip",
  4940. "url": "https://api.github.com/repos/nette/utils/zipball/a9d127dd6a203ce6d255b2e2db49759f7506e015",
  4941. "reference": "a9d127dd6a203ce6d255b2e2db49759f7506e015",
  4942. "shasum": ""
  4943. },
  4944. "require": {
  4945. "php": ">=8.0 <8.4"
  4946. },
  4947. "conflict": {
  4948. "nette/finder": "<3",
  4949. "nette/schema": "<1.2.2"
  4950. },
  4951. "require-dev": {
  4952. "jetbrains/phpstorm-attributes": "dev-master",
  4953. "nette/tester": "^2.5",
  4954. "phpstan/phpstan": "^1.0",
  4955. "tracy/tracy": "^2.9"
  4956. },
  4957. "suggest": {
  4958. "ext-gd": "to use Image",
  4959. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  4960. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  4961. "ext-json": "to use Nette\\Utils\\Json",
  4962. "ext-mbstring": "to use Strings::lower() etc...",
  4963. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  4964. },
  4965. "type": "library",
  4966. "extra": {
  4967. "branch-alias": {
  4968. "dev-master": "4.0-dev"
  4969. }
  4970. },
  4971. "autoload": {
  4972. "classmap": [
  4973. "src/"
  4974. ]
  4975. },
  4976. "notification-url": "https://packagist.org/downloads/",
  4977. "license": [
  4978. "BSD-3-Clause",
  4979. "GPL-2.0-only",
  4980. "GPL-3.0-only"
  4981. ],
  4982. "authors": [
  4983. {
  4984. "name": "David Grudl",
  4985. "homepage": "https://davidgrudl.com"
  4986. },
  4987. {
  4988. "name": "Nette Community",
  4989. "homepage": "https://nette.org/contributors"
  4990. }
  4991. ],
  4992. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  4993. "homepage": "https://nette.org",
  4994. "keywords": [
  4995. "array",
  4996. "core",
  4997. "datetime",
  4998. "images",
  4999. "json",
  5000. "nette",
  5001. "paginator",
  5002. "password",
  5003. "slugify",
  5004. "string",
  5005. "unicode",
  5006. "utf-8",
  5007. "utility",
  5008. "validation"
  5009. ],
  5010. "support": {
  5011. "issues": "https://github.com/nette/utils/issues",
  5012. "source": "https://github.com/nette/utils/tree/v4.0.3"
  5013. },
  5014. "time": "2023-10-29T21:02:13+00:00"
  5015. },
  5016. {
  5017. "name": "nikic/php-parser",
  5018. "version": "v4.18.0",
  5019. "source": {
  5020. "type": "git",
  5021. "url": "https://github.com/nikic/PHP-Parser.git",
  5022. "reference": "1bcbb2179f97633e98bbbc87044ee2611c7d7999"
  5023. },
  5024. "dist": {
  5025. "type": "zip",
  5026. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/1bcbb2179f97633e98bbbc87044ee2611c7d7999",
  5027. "reference": "1bcbb2179f97633e98bbbc87044ee2611c7d7999",
  5028. "shasum": ""
  5029. },
  5030. "require": {
  5031. "ext-tokenizer": "*",
  5032. "php": ">=7.0"
  5033. },
  5034. "require-dev": {
  5035. "ircmaxell/php-yacc": "^0.0.7",
  5036. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  5037. },
  5038. "bin": [
  5039. "bin/php-parse"
  5040. ],
  5041. "type": "library",
  5042. "extra": {
  5043. "branch-alias": {
  5044. "dev-master": "4.9-dev"
  5045. }
  5046. },
  5047. "autoload": {
  5048. "psr-4": {
  5049. "PhpParser\\": "lib/PhpParser"
  5050. }
  5051. },
  5052. "notification-url": "https://packagist.org/downloads/",
  5053. "license": [
  5054. "BSD-3-Clause"
  5055. ],
  5056. "authors": [
  5057. {
  5058. "name": "Nikita Popov"
  5059. }
  5060. ],
  5061. "description": "A PHP parser written in PHP",
  5062. "keywords": [
  5063. "parser",
  5064. "php"
  5065. ],
  5066. "support": {
  5067. "issues": "https://github.com/nikic/PHP-Parser/issues",
  5068. "source": "https://github.com/nikic/PHP-Parser/tree/v4.18.0"
  5069. },
  5070. "time": "2023-12-10T21:03:43+00:00"
  5071. },
  5072. {
  5073. "name": "opis/closure",
  5074. "version": "3.6.3",
  5075. "source": {
  5076. "type": "git",
  5077. "url": "https://github.com/opis/closure.git",
  5078. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad"
  5079. },
  5080. "dist": {
  5081. "type": "zip",
  5082. "url": "https://api.github.com/repos/opis/closure/zipball/3d81e4309d2a927abbe66df935f4bb60082805ad",
  5083. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad",
  5084. "shasum": ""
  5085. },
  5086. "require": {
  5087. "php": "^5.4 || ^7.0 || ^8.0"
  5088. },
  5089. "require-dev": {
  5090. "jeremeamia/superclosure": "^2.0",
  5091. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  5092. },
  5093. "type": "library",
  5094. "extra": {
  5095. "branch-alias": {
  5096. "dev-master": "3.6.x-dev"
  5097. }
  5098. },
  5099. "autoload": {
  5100. "files": [
  5101. "functions.php"
  5102. ],
  5103. "psr-4": {
  5104. "Opis\\Closure\\": "src/"
  5105. }
  5106. },
  5107. "notification-url": "https://packagist.org/downloads/",
  5108. "license": [
  5109. "MIT"
  5110. ],
  5111. "authors": [
  5112. {
  5113. "name": "Marius Sarca",
  5114. "email": "marius.sarca@gmail.com"
  5115. },
  5116. {
  5117. "name": "Sorin Sarca",
  5118. "email": "sarca_sorin@hotmail.com"
  5119. }
  5120. ],
  5121. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  5122. "homepage": "https://opis.io/closure",
  5123. "keywords": [
  5124. "anonymous functions",
  5125. "closure",
  5126. "function",
  5127. "serializable",
  5128. "serialization",
  5129. "serialize"
  5130. ],
  5131. "support": {
  5132. "issues": "https://github.com/opis/closure/issues",
  5133. "source": "https://github.com/opis/closure/tree/3.6.3"
  5134. },
  5135. "time": "2022-01-27T09:35:39+00:00"
  5136. },
  5137. {
  5138. "name": "php-ffmpeg/php-ffmpeg",
  5139. "version": "v1.2.0",
  5140. "source": {
  5141. "type": "git",
  5142. "url": "https://github.com/PHP-FFMpeg/PHP-FFMpeg.git",
  5143. "reference": "785a5ba05dd88b3b8146f85f18476b259b23917c"
  5144. },
  5145. "dist": {
  5146. "type": "zip",
  5147. "url": "https://api.github.com/repos/PHP-FFMpeg/PHP-FFMpeg/zipball/785a5ba05dd88b3b8146f85f18476b259b23917c",
  5148. "reference": "785a5ba05dd88b3b8146f85f18476b259b23917c",
  5149. "shasum": "",
  5150. "mirrors": [
  5151. {
  5152. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5153. "preferred": true
  5154. }
  5155. ]
  5156. },
  5157. "require": {
  5158. "evenement/evenement": "^3.0",
  5159. "php": "^8.0 || ^8.1 || ^8.2 || ^8.3",
  5160. "psr/log": "^1.0 || ^2.0 || ^3.0",
  5161. "spatie/temporary-directory": "^2.0",
  5162. "symfony/cache": "^5.4 || ^6.0 || ^7.0",
  5163. "symfony/process": "^5.4 || ^6.0 || ^7.0"
  5164. },
  5165. "require-dev": {
  5166. "mockery/mockery": "^1.5",
  5167. "phpunit/phpunit": "^9.5.10"
  5168. },
  5169. "suggest": {
  5170. "php-ffmpeg/extras": "A compilation of common audio & video drivers for PHP-FFMpeg"
  5171. },
  5172. "type": "library",
  5173. "autoload": {
  5174. "psr-4": {
  5175. "FFMpeg\\": "src/FFMpeg",
  5176. "Alchemy\\BinaryDriver\\": "src/Alchemy/BinaryDriver"
  5177. }
  5178. },
  5179. "notification-url": "https://packagist.org/downloads/",
  5180. "license": [
  5181. "MIT"
  5182. ],
  5183. "authors": [
  5184. {
  5185. "name": "Romain Neutron",
  5186. "email": "imprec@gmail.com",
  5187. "homepage": "http://www.lickmychip.com/"
  5188. },
  5189. {
  5190. "name": "Phraseanet Team",
  5191. "email": "info@alchemy.fr",
  5192. "homepage": "http://www.phraseanet.com/"
  5193. },
  5194. {
  5195. "name": "Patrik Karisch",
  5196. "email": "patrik@karisch.guru",
  5197. "homepage": "http://www.karisch.guru"
  5198. },
  5199. {
  5200. "name": "Romain Biard",
  5201. "email": "romain.biard@gmail.com",
  5202. "homepage": "https://www.strime.io/"
  5203. },
  5204. {
  5205. "name": "Jens Hausdorf",
  5206. "email": "hello@jens-hausdorf.de",
  5207. "homepage": "https://jens-hausdorf.de"
  5208. },
  5209. {
  5210. "name": "Pascal Baljet",
  5211. "email": "pascal@protone.media",
  5212. "homepage": "https://protone.media"
  5213. }
  5214. ],
  5215. "description": "FFMpeg PHP, an Object Oriented library to communicate with AVconv / ffmpeg",
  5216. "keywords": [
  5217. "audio",
  5218. "audio processing",
  5219. "avconv",
  5220. "avprobe",
  5221. "ffmpeg",
  5222. "ffprobe",
  5223. "video",
  5224. "video processing"
  5225. ],
  5226. "support": {
  5227. "issues": "https://github.com/PHP-FFMpeg/PHP-FFMpeg/issues",
  5228. "source": "https://github.com/PHP-FFMpeg/PHP-FFMpeg/tree/v1.2.0"
  5229. },
  5230. "time": "2024-01-02T10:37:01+00:00"
  5231. },
  5232. {
  5233. "name": "phpoffice/phpspreadsheet",
  5234. "version": "1.29.0",
  5235. "source": {
  5236. "type": "git",
  5237. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  5238. "reference": "fde2ccf55eaef7e86021ff1acce26479160a0fa0"
  5239. },
  5240. "dist": {
  5241. "type": "zip",
  5242. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/fde2ccf55eaef7e86021ff1acce26479160a0fa0",
  5243. "reference": "fde2ccf55eaef7e86021ff1acce26479160a0fa0",
  5244. "shasum": ""
  5245. },
  5246. "require": {
  5247. "ext-ctype": "*",
  5248. "ext-dom": "*",
  5249. "ext-fileinfo": "*",
  5250. "ext-gd": "*",
  5251. "ext-iconv": "*",
  5252. "ext-libxml": "*",
  5253. "ext-mbstring": "*",
  5254. "ext-simplexml": "*",
  5255. "ext-xml": "*",
  5256. "ext-xmlreader": "*",
  5257. "ext-xmlwriter": "*",
  5258. "ext-zip": "*",
  5259. "ext-zlib": "*",
  5260. "ezyang/htmlpurifier": "^4.15",
  5261. "maennchen/zipstream-php": "^2.1 || ^3.0",
  5262. "markbaker/complex": "^3.0",
  5263. "markbaker/matrix": "^3.0",
  5264. "php": "^7.4 || ^8.0",
  5265. "psr/http-client": "^1.0",
  5266. "psr/http-factory": "^1.0",
  5267. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  5268. },
  5269. "require-dev": {
  5270. "dealerdirect/phpcodesniffer-composer-installer": "dev-main",
  5271. "dompdf/dompdf": "^1.0 || ^2.0",
  5272. "friendsofphp/php-cs-fixer": "^3.2",
  5273. "mitoteam/jpgraph": "^10.3",
  5274. "mpdf/mpdf": "^8.1.1",
  5275. "phpcompatibility/php-compatibility": "^9.3",
  5276. "phpstan/phpstan": "^1.1",
  5277. "phpstan/phpstan-phpunit": "^1.0",
  5278. "phpunit/phpunit": "^8.5 || ^9.0 || ^10.0",
  5279. "squizlabs/php_codesniffer": "^3.7",
  5280. "tecnickcom/tcpdf": "^6.5"
  5281. },
  5282. "suggest": {
  5283. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  5284. "ext-intl": "PHP Internationalization Functions",
  5285. "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  5286. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  5287. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  5288. },
  5289. "type": "library",
  5290. "autoload": {
  5291. "psr-4": {
  5292. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  5293. }
  5294. },
  5295. "notification-url": "https://packagist.org/downloads/",
  5296. "license": [
  5297. "MIT"
  5298. ],
  5299. "authors": [
  5300. {
  5301. "name": "Maarten Balliauw",
  5302. "homepage": "https://blog.maartenballiauw.be"
  5303. },
  5304. {
  5305. "name": "Mark Baker",
  5306. "homepage": "https://markbakeruk.net"
  5307. },
  5308. {
  5309. "name": "Franck Lefevre",
  5310. "homepage": "https://rootslabs.net"
  5311. },
  5312. {
  5313. "name": "Erik Tilt"
  5314. },
  5315. {
  5316. "name": "Adrien Crivelli"
  5317. }
  5318. ],
  5319. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  5320. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  5321. "keywords": [
  5322. "OpenXML",
  5323. "excel",
  5324. "gnumeric",
  5325. "ods",
  5326. "php",
  5327. "spreadsheet",
  5328. "xls",
  5329. "xlsx"
  5330. ],
  5331. "support": {
  5332. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  5333. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.29.0"
  5334. },
  5335. "time": "2023-06-14T22:48:31+00:00"
  5336. },
  5337. {
  5338. "name": "phpoption/phpoption",
  5339. "version": "1.9.2",
  5340. "source": {
  5341. "type": "git",
  5342. "url": "https://github.com/schmittjoh/php-option.git",
  5343. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820"
  5344. },
  5345. "dist": {
  5346. "type": "zip",
  5347. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/80735db690fe4fc5c76dfa7f9b770634285fa820",
  5348. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820",
  5349. "shasum": ""
  5350. },
  5351. "require": {
  5352. "php": "^7.2.5 || ^8.0"
  5353. },
  5354. "require-dev": {
  5355. "bamarni/composer-bin-plugin": "^1.8.2",
  5356. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  5357. },
  5358. "type": "library",
  5359. "extra": {
  5360. "bamarni-bin": {
  5361. "bin-links": true,
  5362. "forward-command": true
  5363. },
  5364. "branch-alias": {
  5365. "dev-master": "1.9-dev"
  5366. }
  5367. },
  5368. "autoload": {
  5369. "psr-4": {
  5370. "PhpOption\\": "src/PhpOption/"
  5371. }
  5372. },
  5373. "notification-url": "https://packagist.org/downloads/",
  5374. "license": [
  5375. "Apache-2.0"
  5376. ],
  5377. "authors": [
  5378. {
  5379. "name": "Johannes M. Schmitt",
  5380. "email": "schmittjoh@gmail.com",
  5381. "homepage": "https://github.com/schmittjoh"
  5382. },
  5383. {
  5384. "name": "Graham Campbell",
  5385. "email": "hello@gjcampbell.co.uk",
  5386. "homepage": "https://github.com/GrahamCampbell"
  5387. }
  5388. ],
  5389. "description": "Option Type for PHP",
  5390. "keywords": [
  5391. "language",
  5392. "option",
  5393. "php",
  5394. "type"
  5395. ],
  5396. "support": {
  5397. "issues": "https://github.com/schmittjoh/php-option/issues",
  5398. "source": "https://github.com/schmittjoh/php-option/tree/1.9.2"
  5399. },
  5400. "funding": [
  5401. {
  5402. "url": "https://github.com/GrahamCampbell",
  5403. "type": "github"
  5404. },
  5405. {
  5406. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  5407. "type": "tidelift"
  5408. }
  5409. ],
  5410. "time": "2023-11-12T21:59:55+00:00"
  5411. },
  5412. {
  5413. "name": "phpseclib/phpseclib",
  5414. "version": "2.0.46",
  5415. "source": {
  5416. "type": "git",
  5417. "url": "https://github.com/phpseclib/phpseclib.git",
  5418. "reference": "498e67a0c82bd5791fda9b0dd0f4ec8e8aebb02d"
  5419. },
  5420. "dist": {
  5421. "type": "zip",
  5422. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/498e67a0c82bd5791fda9b0dd0f4ec8e8aebb02d",
  5423. "reference": "498e67a0c82bd5791fda9b0dd0f4ec8e8aebb02d",
  5424. "shasum": "",
  5425. "mirrors": [
  5426. {
  5427. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5428. "preferred": true
  5429. }
  5430. ]
  5431. },
  5432. "require": {
  5433. "php": ">=5.3.3"
  5434. },
  5435. "require-dev": {
  5436. "phing/phing": "~2.7",
  5437. "phpunit/phpunit": "^4.8.35|^5.7|^6.0|^9.4",
  5438. "squizlabs/php_codesniffer": "~2.0"
  5439. },
  5440. "suggest": {
  5441. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  5442. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  5443. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  5444. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations.",
  5445. "ext-xml": "Install the XML extension to load XML formatted public keys."
  5446. },
  5447. "type": "library",
  5448. "autoload": {
  5449. "files": [
  5450. "phpseclib/bootstrap.php"
  5451. ],
  5452. "psr-4": {
  5453. "phpseclib\\": "phpseclib/"
  5454. }
  5455. },
  5456. "notification-url": "https://packagist.org/downloads/",
  5457. "license": [
  5458. "MIT"
  5459. ],
  5460. "authors": [
  5461. {
  5462. "name": "Jim Wigginton",
  5463. "email": "terrafrost@php.net",
  5464. "role": "Lead Developer"
  5465. },
  5466. {
  5467. "name": "Patrick Monnerat",
  5468. "email": "pm@datasphere.ch",
  5469. "role": "Developer"
  5470. },
  5471. {
  5472. "name": "Andreas Fischer",
  5473. "email": "bantu@phpbb.com",
  5474. "role": "Developer"
  5475. },
  5476. {
  5477. "name": "Hans-Jürgen Petrich",
  5478. "email": "petrich@tronic-media.com",
  5479. "role": "Developer"
  5480. },
  5481. {
  5482. "name": "Graham Campbell",
  5483. "email": "graham@alt-three.com",
  5484. "role": "Developer"
  5485. }
  5486. ],
  5487. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  5488. "homepage": "http://phpseclib.sourceforge.net",
  5489. "keywords": [
  5490. "BigInteger",
  5491. "aes",
  5492. "asn.1",
  5493. "asn1",
  5494. "blowfish",
  5495. "crypto",
  5496. "cryptography",
  5497. "encryption",
  5498. "rsa",
  5499. "security",
  5500. "sftp",
  5501. "signature",
  5502. "signing",
  5503. "ssh",
  5504. "twofish",
  5505. "x.509",
  5506. "x509"
  5507. ],
  5508. "support": {
  5509. "issues": "https://github.com/phpseclib/phpseclib/issues",
  5510. "source": "https://github.com/phpseclib/phpseclib/tree/2.0.46"
  5511. },
  5512. "funding": [
  5513. {
  5514. "url": "https://github.com/terrafrost",
  5515. "type": "github"
  5516. },
  5517. {
  5518. "url": "https://www.patreon.com/phpseclib",
  5519. "type": "patreon"
  5520. },
  5521. {
  5522. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  5523. "type": "tidelift"
  5524. }
  5525. ],
  5526. "time": "2023-12-29T01:52:43+00:00"
  5527. },
  5528. {
  5529. "name": "pimple/pimple",
  5530. "version": "v3.5.0",
  5531. "source": {
  5532. "type": "git",
  5533. "url": "https://github.com/silexphp/Pimple.git",
  5534. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed"
  5535. },
  5536. "dist": {
  5537. "type": "zip",
  5538. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  5539. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  5540. "shasum": "",
  5541. "mirrors": [
  5542. {
  5543. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5544. "preferred": true
  5545. }
  5546. ]
  5547. },
  5548. "require": {
  5549. "php": ">=7.2.5",
  5550. "psr/container": "^1.1 || ^2.0"
  5551. },
  5552. "require-dev": {
  5553. "symfony/phpunit-bridge": "^5.4@dev"
  5554. },
  5555. "type": "library",
  5556. "extra": {
  5557. "branch-alias": {
  5558. "dev-master": "3.4.x-dev"
  5559. }
  5560. },
  5561. "autoload": {
  5562. "psr-0": {
  5563. "Pimple": "src/"
  5564. }
  5565. },
  5566. "notification-url": "https://packagist.org/downloads/",
  5567. "license": [
  5568. "MIT"
  5569. ],
  5570. "authors": [
  5571. {
  5572. "name": "Fabien Potencier",
  5573. "email": "fabien@symfony.com"
  5574. }
  5575. ],
  5576. "description": "Pimple, a simple Dependency Injection Container",
  5577. "homepage": "https://pimple.symfony.com",
  5578. "keywords": [
  5579. "container",
  5580. "dependency injection"
  5581. ],
  5582. "support": {
  5583. "source": "https://github.com/silexphp/Pimple/tree/v3.5.0"
  5584. },
  5585. "time": "2021-10-28T11:13:42+00:00"
  5586. },
  5587. {
  5588. "name": "psr/cache",
  5589. "version": "2.0.0",
  5590. "source": {
  5591. "type": "git",
  5592. "url": "https://github.com/php-fig/cache.git",
  5593. "reference": "213f9dbc5b9bfbc4f8db86d2838dc968752ce13b"
  5594. },
  5595. "dist": {
  5596. "type": "zip",
  5597. "url": "https://api.github.com/repos/php-fig/cache/zipball/213f9dbc5b9bfbc4f8db86d2838dc968752ce13b",
  5598. "reference": "213f9dbc5b9bfbc4f8db86d2838dc968752ce13b",
  5599. "shasum": ""
  5600. },
  5601. "require": {
  5602. "php": ">=8.0.0"
  5603. },
  5604. "type": "library",
  5605. "extra": {
  5606. "branch-alias": {
  5607. "dev-master": "1.0.x-dev"
  5608. }
  5609. },
  5610. "autoload": {
  5611. "psr-4": {
  5612. "Psr\\Cache\\": "src/"
  5613. }
  5614. },
  5615. "notification-url": "https://packagist.org/downloads/",
  5616. "license": [
  5617. "MIT"
  5618. ],
  5619. "authors": [
  5620. {
  5621. "name": "PHP-FIG",
  5622. "homepage": "https://www.php-fig.org/"
  5623. }
  5624. ],
  5625. "description": "Common interface for caching libraries",
  5626. "keywords": [
  5627. "cache",
  5628. "psr",
  5629. "psr-6"
  5630. ],
  5631. "support": {
  5632. "source": "https://github.com/php-fig/cache/tree/2.0.0"
  5633. },
  5634. "time": "2021-02-03T23:23:37+00:00"
  5635. },
  5636. {
  5637. "name": "psr/clock",
  5638. "version": "1.0.0",
  5639. "source": {
  5640. "type": "git",
  5641. "url": "https://github.com/php-fig/clock.git",
  5642. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  5643. },
  5644. "dist": {
  5645. "type": "zip",
  5646. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5647. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5648. "shasum": ""
  5649. },
  5650. "require": {
  5651. "php": "^7.0 || ^8.0"
  5652. },
  5653. "type": "library",
  5654. "autoload": {
  5655. "psr-4": {
  5656. "Psr\\Clock\\": "src/"
  5657. }
  5658. },
  5659. "notification-url": "https://packagist.org/downloads/",
  5660. "license": [
  5661. "MIT"
  5662. ],
  5663. "authors": [
  5664. {
  5665. "name": "PHP-FIG",
  5666. "homepage": "https://www.php-fig.org/"
  5667. }
  5668. ],
  5669. "description": "Common interface for reading the clock.",
  5670. "homepage": "https://github.com/php-fig/clock",
  5671. "keywords": [
  5672. "clock",
  5673. "now",
  5674. "psr",
  5675. "psr-20",
  5676. "time"
  5677. ],
  5678. "support": {
  5679. "issues": "https://github.com/php-fig/clock/issues",
  5680. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  5681. },
  5682. "time": "2022-11-25T14:36:26+00:00"
  5683. },
  5684. {
  5685. "name": "psr/container",
  5686. "version": "1.1.2",
  5687. "source": {
  5688. "type": "git",
  5689. "url": "https://github.com/php-fig/container.git",
  5690. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  5691. },
  5692. "dist": {
  5693. "type": "zip",
  5694. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  5695. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  5696. "shasum": ""
  5697. },
  5698. "require": {
  5699. "php": ">=7.4.0"
  5700. },
  5701. "type": "library",
  5702. "autoload": {
  5703. "psr-4": {
  5704. "Psr\\Container\\": "src/"
  5705. }
  5706. },
  5707. "notification-url": "https://packagist.org/downloads/",
  5708. "license": [
  5709. "MIT"
  5710. ],
  5711. "authors": [
  5712. {
  5713. "name": "PHP-FIG",
  5714. "homepage": "https://www.php-fig.org/"
  5715. }
  5716. ],
  5717. "description": "Common Container Interface (PHP FIG PSR-11)",
  5718. "homepage": "https://github.com/php-fig/container",
  5719. "keywords": [
  5720. "PSR-11",
  5721. "container",
  5722. "container-interface",
  5723. "container-interop",
  5724. "psr"
  5725. ],
  5726. "support": {
  5727. "issues": "https://github.com/php-fig/container/issues",
  5728. "source": "https://github.com/php-fig/container/tree/1.1.2"
  5729. },
  5730. "time": "2021-11-05T16:50:12+00:00"
  5731. },
  5732. {
  5733. "name": "psr/event-dispatcher",
  5734. "version": "1.0.0",
  5735. "source": {
  5736. "type": "git",
  5737. "url": "https://github.com/php-fig/event-dispatcher.git",
  5738. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5739. },
  5740. "dist": {
  5741. "type": "zip",
  5742. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5743. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5744. "shasum": ""
  5745. },
  5746. "require": {
  5747. "php": ">=7.2.0"
  5748. },
  5749. "type": "library",
  5750. "extra": {
  5751. "branch-alias": {
  5752. "dev-master": "1.0.x-dev"
  5753. }
  5754. },
  5755. "autoload": {
  5756. "psr-4": {
  5757. "Psr\\EventDispatcher\\": "src/"
  5758. }
  5759. },
  5760. "notification-url": "https://packagist.org/downloads/",
  5761. "license": [
  5762. "MIT"
  5763. ],
  5764. "authors": [
  5765. {
  5766. "name": "PHP-FIG",
  5767. "homepage": "http://www.php-fig.org/"
  5768. }
  5769. ],
  5770. "description": "Standard interfaces for event handling.",
  5771. "keywords": [
  5772. "events",
  5773. "psr",
  5774. "psr-14"
  5775. ],
  5776. "support": {
  5777. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5778. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5779. },
  5780. "time": "2019-01-08T18:20:26+00:00"
  5781. },
  5782. {
  5783. "name": "psr/http-client",
  5784. "version": "1.0.3",
  5785. "source": {
  5786. "type": "git",
  5787. "url": "https://github.com/php-fig/http-client.git",
  5788. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  5789. },
  5790. "dist": {
  5791. "type": "zip",
  5792. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5793. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5794. "shasum": ""
  5795. },
  5796. "require": {
  5797. "php": "^7.0 || ^8.0",
  5798. "psr/http-message": "^1.0 || ^2.0"
  5799. },
  5800. "type": "library",
  5801. "extra": {
  5802. "branch-alias": {
  5803. "dev-master": "1.0.x-dev"
  5804. }
  5805. },
  5806. "autoload": {
  5807. "psr-4": {
  5808. "Psr\\Http\\Client\\": "src/"
  5809. }
  5810. },
  5811. "notification-url": "https://packagist.org/downloads/",
  5812. "license": [
  5813. "MIT"
  5814. ],
  5815. "authors": [
  5816. {
  5817. "name": "PHP-FIG",
  5818. "homepage": "https://www.php-fig.org/"
  5819. }
  5820. ],
  5821. "description": "Common interface for HTTP clients",
  5822. "homepage": "https://github.com/php-fig/http-client",
  5823. "keywords": [
  5824. "http",
  5825. "http-client",
  5826. "psr",
  5827. "psr-18"
  5828. ],
  5829. "support": {
  5830. "source": "https://github.com/php-fig/http-client"
  5831. },
  5832. "time": "2023-09-23T14:17:50+00:00"
  5833. },
  5834. {
  5835. "name": "psr/http-factory",
  5836. "version": "1.0.2",
  5837. "source": {
  5838. "type": "git",
  5839. "url": "https://github.com/php-fig/http-factory.git",
  5840. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  5841. },
  5842. "dist": {
  5843. "type": "zip",
  5844. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  5845. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  5846. "shasum": ""
  5847. },
  5848. "require": {
  5849. "php": ">=7.0.0",
  5850. "psr/http-message": "^1.0 || ^2.0"
  5851. },
  5852. "type": "library",
  5853. "extra": {
  5854. "branch-alias": {
  5855. "dev-master": "1.0.x-dev"
  5856. }
  5857. },
  5858. "autoload": {
  5859. "psr-4": {
  5860. "Psr\\Http\\Message\\": "src/"
  5861. }
  5862. },
  5863. "notification-url": "https://packagist.org/downloads/",
  5864. "license": [
  5865. "MIT"
  5866. ],
  5867. "authors": [
  5868. {
  5869. "name": "PHP-FIG",
  5870. "homepage": "https://www.php-fig.org/"
  5871. }
  5872. ],
  5873. "description": "Common interfaces for PSR-7 HTTP message factories",
  5874. "keywords": [
  5875. "factory",
  5876. "http",
  5877. "message",
  5878. "psr",
  5879. "psr-17",
  5880. "psr-7",
  5881. "request",
  5882. "response"
  5883. ],
  5884. "support": {
  5885. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  5886. },
  5887. "time": "2023-04-10T20:10:41+00:00"
  5888. },
  5889. {
  5890. "name": "psr/http-message",
  5891. "version": "1.1",
  5892. "source": {
  5893. "type": "git",
  5894. "url": "https://github.com/php-fig/http-message.git",
  5895. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  5896. },
  5897. "dist": {
  5898. "type": "zip",
  5899. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  5900. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  5901. "shasum": ""
  5902. },
  5903. "require": {
  5904. "php": "^7.2 || ^8.0"
  5905. },
  5906. "type": "library",
  5907. "extra": {
  5908. "branch-alias": {
  5909. "dev-master": "1.1.x-dev"
  5910. }
  5911. },
  5912. "autoload": {
  5913. "psr-4": {
  5914. "Psr\\Http\\Message\\": "src/"
  5915. }
  5916. },
  5917. "notification-url": "https://packagist.org/downloads/",
  5918. "license": [
  5919. "MIT"
  5920. ],
  5921. "authors": [
  5922. {
  5923. "name": "PHP-FIG",
  5924. "homepage": "http://www.php-fig.org/"
  5925. }
  5926. ],
  5927. "description": "Common interface for HTTP messages",
  5928. "homepage": "https://github.com/php-fig/http-message",
  5929. "keywords": [
  5930. "http",
  5931. "http-message",
  5932. "psr",
  5933. "psr-7",
  5934. "request",
  5935. "response"
  5936. ],
  5937. "support": {
  5938. "source": "https://github.com/php-fig/http-message/tree/1.1"
  5939. },
  5940. "time": "2023-04-04T09:50:52+00:00"
  5941. },
  5942. {
  5943. "name": "psr/log",
  5944. "version": "2.0.0",
  5945. "source": {
  5946. "type": "git",
  5947. "url": "https://github.com/php-fig/log.git",
  5948. "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376"
  5949. },
  5950. "dist": {
  5951. "type": "zip",
  5952. "url": "https://api.github.com/repos/php-fig/log/zipball/ef29f6d262798707a9edd554e2b82517ef3a9376",
  5953. "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376",
  5954. "shasum": ""
  5955. },
  5956. "require": {
  5957. "php": ">=8.0.0"
  5958. },
  5959. "type": "library",
  5960. "extra": {
  5961. "branch-alias": {
  5962. "dev-master": "2.0.x-dev"
  5963. }
  5964. },
  5965. "autoload": {
  5966. "psr-4": {
  5967. "Psr\\Log\\": "src"
  5968. }
  5969. },
  5970. "notification-url": "https://packagist.org/downloads/",
  5971. "license": [
  5972. "MIT"
  5973. ],
  5974. "authors": [
  5975. {
  5976. "name": "PHP-FIG",
  5977. "homepage": "https://www.php-fig.org/"
  5978. }
  5979. ],
  5980. "description": "Common interface for logging libraries",
  5981. "homepage": "https://github.com/php-fig/log",
  5982. "keywords": [
  5983. "log",
  5984. "psr",
  5985. "psr-3"
  5986. ],
  5987. "support": {
  5988. "source": "https://github.com/php-fig/log/tree/2.0.0"
  5989. },
  5990. "time": "2021-07-14T16:41:46+00:00"
  5991. },
  5992. {
  5993. "name": "psr/simple-cache",
  5994. "version": "1.0.1",
  5995. "source": {
  5996. "type": "git",
  5997. "url": "https://github.com/php-fig/simple-cache.git",
  5998. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  5999. },
  6000. "dist": {
  6001. "type": "zip",
  6002. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  6003. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  6004. "shasum": ""
  6005. },
  6006. "require": {
  6007. "php": ">=5.3.0"
  6008. },
  6009. "type": "library",
  6010. "extra": {
  6011. "branch-alias": {
  6012. "dev-master": "1.0.x-dev"
  6013. }
  6014. },
  6015. "autoload": {
  6016. "psr-4": {
  6017. "Psr\\SimpleCache\\": "src/"
  6018. }
  6019. },
  6020. "notification-url": "https://packagist.org/downloads/",
  6021. "license": [
  6022. "MIT"
  6023. ],
  6024. "authors": [
  6025. {
  6026. "name": "PHP-FIG",
  6027. "homepage": "http://www.php-fig.org/"
  6028. }
  6029. ],
  6030. "description": "Common interfaces for simple caching",
  6031. "keywords": [
  6032. "cache",
  6033. "caching",
  6034. "psr",
  6035. "psr-16",
  6036. "simple-cache"
  6037. ],
  6038. "support": {
  6039. "source": "https://github.com/php-fig/simple-cache/tree/master"
  6040. },
  6041. "time": "2017-10-23T01:57:42+00:00"
  6042. },
  6043. {
  6044. "name": "psy/psysh",
  6045. "version": "v0.11.22",
  6046. "source": {
  6047. "type": "git",
  6048. "url": "https://github.com/bobthecow/psysh.git",
  6049. "reference": "128fa1b608be651999ed9789c95e6e2a31b5802b"
  6050. },
  6051. "dist": {
  6052. "type": "zip",
  6053. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/128fa1b608be651999ed9789c95e6e2a31b5802b",
  6054. "reference": "128fa1b608be651999ed9789c95e6e2a31b5802b",
  6055. "shasum": ""
  6056. },
  6057. "require": {
  6058. "ext-json": "*",
  6059. "ext-tokenizer": "*",
  6060. "nikic/php-parser": "^4.0 || ^3.1",
  6061. "php": "^8.0 || ^7.0.8",
  6062. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  6063. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  6064. },
  6065. "conflict": {
  6066. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  6067. },
  6068. "require-dev": {
  6069. "bamarni/composer-bin-plugin": "^1.2"
  6070. },
  6071. "suggest": {
  6072. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  6073. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  6074. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  6075. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
  6076. },
  6077. "bin": [
  6078. "bin/psysh"
  6079. ],
  6080. "type": "library",
  6081. "extra": {
  6082. "branch-alias": {
  6083. "dev-0.11": "0.11.x-dev"
  6084. },
  6085. "bamarni-bin": {
  6086. "bin-links": false,
  6087. "forward-command": false
  6088. }
  6089. },
  6090. "autoload": {
  6091. "files": [
  6092. "src/functions.php"
  6093. ],
  6094. "psr-4": {
  6095. "Psy\\": "src/"
  6096. }
  6097. },
  6098. "notification-url": "https://packagist.org/downloads/",
  6099. "license": [
  6100. "MIT"
  6101. ],
  6102. "authors": [
  6103. {
  6104. "name": "Justin Hileman",
  6105. "email": "justin@justinhileman.info",
  6106. "homepage": "http://justinhileman.com"
  6107. }
  6108. ],
  6109. "description": "An interactive shell for modern PHP.",
  6110. "homepage": "http://psysh.org",
  6111. "keywords": [
  6112. "REPL",
  6113. "console",
  6114. "interactive",
  6115. "shell"
  6116. ],
  6117. "support": {
  6118. "issues": "https://github.com/bobthecow/psysh/issues",
  6119. "source": "https://github.com/bobthecow/psysh/tree/v0.11.22"
  6120. },
  6121. "time": "2023-10-14T21:56:36+00:00"
  6122. },
  6123. {
  6124. "name": "ralouphie/getallheaders",
  6125. "version": "3.0.3",
  6126. "source": {
  6127. "type": "git",
  6128. "url": "https://github.com/ralouphie/getallheaders.git",
  6129. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  6130. },
  6131. "dist": {
  6132. "type": "zip",
  6133. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  6134. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  6135. "shasum": ""
  6136. },
  6137. "require": {
  6138. "php": ">=5.6"
  6139. },
  6140. "require-dev": {
  6141. "php-coveralls/php-coveralls": "^2.1",
  6142. "phpunit/phpunit": "^5 || ^6.5"
  6143. },
  6144. "type": "library",
  6145. "autoload": {
  6146. "files": [
  6147. "src/getallheaders.php"
  6148. ]
  6149. },
  6150. "notification-url": "https://packagist.org/downloads/",
  6151. "license": [
  6152. "MIT"
  6153. ],
  6154. "authors": [
  6155. {
  6156. "name": "Ralph Khattar",
  6157. "email": "ralph.khattar@gmail.com"
  6158. }
  6159. ],
  6160. "description": "A polyfill for getallheaders.",
  6161. "support": {
  6162. "issues": "https://github.com/ralouphie/getallheaders/issues",
  6163. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  6164. },
  6165. "time": "2019-03-08T08:55:37+00:00"
  6166. },
  6167. {
  6168. "name": "ramsey/collection",
  6169. "version": "1.3.0",
  6170. "source": {
  6171. "type": "git",
  6172. "url": "https://github.com/ramsey/collection.git",
  6173. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4"
  6174. },
  6175. "dist": {
  6176. "type": "zip",
  6177. "url": "https://api.github.com/repos/ramsey/collection/zipball/ad7475d1c9e70b190ecffc58f2d989416af339b4",
  6178. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4",
  6179. "shasum": ""
  6180. },
  6181. "require": {
  6182. "php": "^7.4 || ^8.0",
  6183. "symfony/polyfill-php81": "^1.23"
  6184. },
  6185. "require-dev": {
  6186. "captainhook/plugin-composer": "^5.3",
  6187. "ergebnis/composer-normalize": "^2.28.3",
  6188. "fakerphp/faker": "^1.21",
  6189. "hamcrest/hamcrest-php": "^2.0",
  6190. "jangregor/phpstan-prophecy": "^1.0",
  6191. "mockery/mockery": "^1.5",
  6192. "php-parallel-lint/php-console-highlighter": "^1.0",
  6193. "php-parallel-lint/php-parallel-lint": "^1.3",
  6194. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  6195. "phpspec/prophecy-phpunit": "^2.0",
  6196. "phpstan/extension-installer": "^1.2",
  6197. "phpstan/phpstan": "^1.9",
  6198. "phpstan/phpstan-mockery": "^1.1",
  6199. "phpstan/phpstan-phpunit": "^1.3",
  6200. "phpunit/phpunit": "^9.5",
  6201. "psalm/plugin-mockery": "^1.1",
  6202. "psalm/plugin-phpunit": "^0.18.4",
  6203. "ramsey/coding-standard": "^2.0.3",
  6204. "ramsey/conventional-commits": "^1.3",
  6205. "vimeo/psalm": "^5.4"
  6206. },
  6207. "type": "library",
  6208. "extra": {
  6209. "captainhook": {
  6210. "force-install": true
  6211. },
  6212. "ramsey/conventional-commits": {
  6213. "configFile": "conventional-commits.json"
  6214. }
  6215. },
  6216. "autoload": {
  6217. "psr-4": {
  6218. "Ramsey\\Collection\\": "src/"
  6219. }
  6220. },
  6221. "notification-url": "https://packagist.org/downloads/",
  6222. "license": [
  6223. "MIT"
  6224. ],
  6225. "authors": [
  6226. {
  6227. "name": "Ben Ramsey",
  6228. "email": "ben@benramsey.com",
  6229. "homepage": "https://benramsey.com"
  6230. }
  6231. ],
  6232. "description": "A PHP library for representing and manipulating collections.",
  6233. "keywords": [
  6234. "array",
  6235. "collection",
  6236. "hash",
  6237. "map",
  6238. "queue",
  6239. "set"
  6240. ],
  6241. "support": {
  6242. "issues": "https://github.com/ramsey/collection/issues",
  6243. "source": "https://github.com/ramsey/collection/tree/1.3.0"
  6244. },
  6245. "funding": [
  6246. {
  6247. "url": "https://github.com/ramsey",
  6248. "type": "github"
  6249. },
  6250. {
  6251. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  6252. "type": "tidelift"
  6253. }
  6254. ],
  6255. "time": "2022-12-27T19:12:24+00:00"
  6256. },
  6257. {
  6258. "name": "ramsey/uuid",
  6259. "version": "4.7.5",
  6260. "source": {
  6261. "type": "git",
  6262. "url": "https://github.com/ramsey/uuid.git",
  6263. "reference": "5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e"
  6264. },
  6265. "dist": {
  6266. "type": "zip",
  6267. "url": "https://api.github.com/repos/ramsey/uuid/zipball/5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e",
  6268. "reference": "5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e",
  6269. "shasum": ""
  6270. },
  6271. "require": {
  6272. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11",
  6273. "ext-json": "*",
  6274. "php": "^8.0",
  6275. "ramsey/collection": "^1.2 || ^2.0"
  6276. },
  6277. "replace": {
  6278. "rhumsaa/uuid": "self.version"
  6279. },
  6280. "require-dev": {
  6281. "captainhook/captainhook": "^5.10",
  6282. "captainhook/plugin-composer": "^5.3",
  6283. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  6284. "doctrine/annotations": "^1.8",
  6285. "ergebnis/composer-normalize": "^2.15",
  6286. "mockery/mockery": "^1.3",
  6287. "paragonie/random-lib": "^2",
  6288. "php-mock/php-mock": "^2.2",
  6289. "php-mock/php-mock-mockery": "^1.3",
  6290. "php-parallel-lint/php-parallel-lint": "^1.1",
  6291. "phpbench/phpbench": "^1.0",
  6292. "phpstan/extension-installer": "^1.1",
  6293. "phpstan/phpstan": "^1.8",
  6294. "phpstan/phpstan-mockery": "^1.1",
  6295. "phpstan/phpstan-phpunit": "^1.1",
  6296. "phpunit/phpunit": "^8.5 || ^9",
  6297. "ramsey/composer-repl": "^1.4",
  6298. "slevomat/coding-standard": "^8.4",
  6299. "squizlabs/php_codesniffer": "^3.5",
  6300. "vimeo/psalm": "^4.9"
  6301. },
  6302. "suggest": {
  6303. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  6304. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  6305. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  6306. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  6307. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  6308. },
  6309. "type": "library",
  6310. "extra": {
  6311. "captainhook": {
  6312. "force-install": true
  6313. }
  6314. },
  6315. "autoload": {
  6316. "files": [
  6317. "src/functions.php"
  6318. ],
  6319. "psr-4": {
  6320. "Ramsey\\Uuid\\": "src/"
  6321. }
  6322. },
  6323. "notification-url": "https://packagist.org/downloads/",
  6324. "license": [
  6325. "MIT"
  6326. ],
  6327. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  6328. "keywords": [
  6329. "guid",
  6330. "identifier",
  6331. "uuid"
  6332. ],
  6333. "support": {
  6334. "issues": "https://github.com/ramsey/uuid/issues",
  6335. "source": "https://github.com/ramsey/uuid/tree/4.7.5"
  6336. },
  6337. "funding": [
  6338. {
  6339. "url": "https://github.com/ramsey",
  6340. "type": "github"
  6341. },
  6342. {
  6343. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  6344. "type": "tidelift"
  6345. }
  6346. ],
  6347. "time": "2023-11-08T05:53:05+00:00"
  6348. },
  6349. {
  6350. "name": "ratchet/rfc6455",
  6351. "version": "v0.3.1",
  6352. "source": {
  6353. "type": "git",
  6354. "url": "https://github.com/ratchetphp/RFC6455.git",
  6355. "reference": "7c964514e93456a52a99a20fcfa0de242a43ccdb"
  6356. },
  6357. "dist": {
  6358. "type": "zip",
  6359. "url": "https://api.github.com/repos/ratchetphp/RFC6455/zipball/7c964514e93456a52a99a20fcfa0de242a43ccdb",
  6360. "reference": "7c964514e93456a52a99a20fcfa0de242a43ccdb",
  6361. "shasum": ""
  6362. },
  6363. "require": {
  6364. "guzzlehttp/psr7": "^2 || ^1.7",
  6365. "php": ">=5.4.2"
  6366. },
  6367. "require-dev": {
  6368. "phpunit/phpunit": "^5.7",
  6369. "react/socket": "^1.3"
  6370. },
  6371. "type": "library",
  6372. "autoload": {
  6373. "psr-4": {
  6374. "Ratchet\\RFC6455\\": "src"
  6375. }
  6376. },
  6377. "notification-url": "https://packagist.org/downloads/",
  6378. "license": [
  6379. "MIT"
  6380. ],
  6381. "authors": [
  6382. {
  6383. "name": "Chris Boden",
  6384. "email": "cboden@gmail.com",
  6385. "role": "Developer"
  6386. },
  6387. {
  6388. "name": "Matt Bonneau",
  6389. "role": "Developer"
  6390. }
  6391. ],
  6392. "description": "RFC6455 WebSocket protocol handler",
  6393. "homepage": "http://socketo.me",
  6394. "keywords": [
  6395. "WebSockets",
  6396. "rfc6455",
  6397. "websocket"
  6398. ],
  6399. "support": {
  6400. "chat": "https://gitter.im/reactphp/reactphp",
  6401. "issues": "https://github.com/ratchetphp/RFC6455/issues",
  6402. "source": "https://github.com/ratchetphp/RFC6455/tree/v0.3.1"
  6403. },
  6404. "time": "2021-12-09T23:20:49+00:00"
  6405. },
  6406. {
  6407. "name": "react/cache",
  6408. "version": "v1.2.0",
  6409. "source": {
  6410. "type": "git",
  6411. "url": "https://github.com/reactphp/cache.git",
  6412. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  6413. },
  6414. "dist": {
  6415. "type": "zip",
  6416. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  6417. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  6418. "shasum": ""
  6419. },
  6420. "require": {
  6421. "php": ">=5.3.0",
  6422. "react/promise": "^3.0 || ^2.0 || ^1.1"
  6423. },
  6424. "require-dev": {
  6425. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  6426. },
  6427. "type": "library",
  6428. "autoload": {
  6429. "psr-4": {
  6430. "React\\Cache\\": "src/"
  6431. }
  6432. },
  6433. "notification-url": "https://packagist.org/downloads/",
  6434. "license": [
  6435. "MIT"
  6436. ],
  6437. "authors": [
  6438. {
  6439. "name": "Christian Lück",
  6440. "email": "christian@clue.engineering",
  6441. "homepage": "https://clue.engineering/"
  6442. },
  6443. {
  6444. "name": "Cees-Jan Kiewiet",
  6445. "email": "reactphp@ceesjankiewiet.nl",
  6446. "homepage": "https://wyrihaximus.net/"
  6447. },
  6448. {
  6449. "name": "Jan Sorgalla",
  6450. "email": "jsorgalla@gmail.com",
  6451. "homepage": "https://sorgalla.com/"
  6452. },
  6453. {
  6454. "name": "Chris Boden",
  6455. "email": "cboden@gmail.com",
  6456. "homepage": "https://cboden.dev/"
  6457. }
  6458. ],
  6459. "description": "Async, Promise-based cache interface for ReactPHP",
  6460. "keywords": [
  6461. "cache",
  6462. "caching",
  6463. "promise",
  6464. "reactphp"
  6465. ],
  6466. "support": {
  6467. "issues": "https://github.com/reactphp/cache/issues",
  6468. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  6469. },
  6470. "funding": [
  6471. {
  6472. "url": "https://opencollective.com/reactphp",
  6473. "type": "open_collective"
  6474. }
  6475. ],
  6476. "time": "2022-11-30T15:59:55+00:00"
  6477. },
  6478. {
  6479. "name": "react/dns",
  6480. "version": "v1.12.0",
  6481. "source": {
  6482. "type": "git",
  6483. "url": "https://github.com/reactphp/dns.git",
  6484. "reference": "c134600642fa615b46b41237ef243daa65bb64ec"
  6485. },
  6486. "dist": {
  6487. "type": "zip",
  6488. "url": "https://api.github.com/repos/reactphp/dns/zipball/c134600642fa615b46b41237ef243daa65bb64ec",
  6489. "reference": "c134600642fa615b46b41237ef243daa65bb64ec",
  6490. "shasum": ""
  6491. },
  6492. "require": {
  6493. "php": ">=5.3.0",
  6494. "react/cache": "^1.0 || ^0.6 || ^0.5",
  6495. "react/event-loop": "^1.2",
  6496. "react/promise": "^3.0 || ^2.7 || ^1.2.1"
  6497. },
  6498. "require-dev": {
  6499. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  6500. "react/async": "^4 || ^3 || ^2",
  6501. "react/promise-timer": "^1.9"
  6502. },
  6503. "type": "library",
  6504. "autoload": {
  6505. "psr-4": {
  6506. "React\\Dns\\": "src/"
  6507. }
  6508. },
  6509. "notification-url": "https://packagist.org/downloads/",
  6510. "license": [
  6511. "MIT"
  6512. ],
  6513. "authors": [
  6514. {
  6515. "name": "Christian Lück",
  6516. "email": "christian@clue.engineering",
  6517. "homepage": "https://clue.engineering/"
  6518. },
  6519. {
  6520. "name": "Cees-Jan Kiewiet",
  6521. "email": "reactphp@ceesjankiewiet.nl",
  6522. "homepage": "https://wyrihaximus.net/"
  6523. },
  6524. {
  6525. "name": "Jan Sorgalla",
  6526. "email": "jsorgalla@gmail.com",
  6527. "homepage": "https://sorgalla.com/"
  6528. },
  6529. {
  6530. "name": "Chris Boden",
  6531. "email": "cboden@gmail.com",
  6532. "homepage": "https://cboden.dev/"
  6533. }
  6534. ],
  6535. "description": "Async DNS resolver for ReactPHP",
  6536. "keywords": [
  6537. "async",
  6538. "dns",
  6539. "dns-resolver",
  6540. "reactphp"
  6541. ],
  6542. "support": {
  6543. "issues": "https://github.com/reactphp/dns/issues",
  6544. "source": "https://github.com/reactphp/dns/tree/v1.12.0"
  6545. },
  6546. "funding": [
  6547. {
  6548. "url": "https://opencollective.com/reactphp",
  6549. "type": "open_collective"
  6550. }
  6551. ],
  6552. "time": "2023-11-29T12:41:06+00:00"
  6553. },
  6554. {
  6555. "name": "react/event-loop",
  6556. "version": "v1.5.0",
  6557. "source": {
  6558. "type": "git",
  6559. "url": "https://github.com/reactphp/event-loop.git",
  6560. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  6561. },
  6562. "dist": {
  6563. "type": "zip",
  6564. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  6565. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  6566. "shasum": ""
  6567. },
  6568. "require": {
  6569. "php": ">=5.3.0"
  6570. },
  6571. "require-dev": {
  6572. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  6573. },
  6574. "suggest": {
  6575. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  6576. },
  6577. "type": "library",
  6578. "autoload": {
  6579. "psr-4": {
  6580. "React\\EventLoop\\": "src/"
  6581. }
  6582. },
  6583. "notification-url": "https://packagist.org/downloads/",
  6584. "license": [
  6585. "MIT"
  6586. ],
  6587. "authors": [
  6588. {
  6589. "name": "Christian Lück",
  6590. "email": "christian@clue.engineering",
  6591. "homepage": "https://clue.engineering/"
  6592. },
  6593. {
  6594. "name": "Cees-Jan Kiewiet",
  6595. "email": "reactphp@ceesjankiewiet.nl",
  6596. "homepage": "https://wyrihaximus.net/"
  6597. },
  6598. {
  6599. "name": "Jan Sorgalla",
  6600. "email": "jsorgalla@gmail.com",
  6601. "homepage": "https://sorgalla.com/"
  6602. },
  6603. {
  6604. "name": "Chris Boden",
  6605. "email": "cboden@gmail.com",
  6606. "homepage": "https://cboden.dev/"
  6607. }
  6608. ],
  6609. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  6610. "keywords": [
  6611. "asynchronous",
  6612. "event-loop"
  6613. ],
  6614. "support": {
  6615. "issues": "https://github.com/reactphp/event-loop/issues",
  6616. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  6617. },
  6618. "funding": [
  6619. {
  6620. "url": "https://opencollective.com/reactphp",
  6621. "type": "open_collective"
  6622. }
  6623. ],
  6624. "time": "2023-11-13T13:48:05+00:00"
  6625. },
  6626. {
  6627. "name": "react/promise",
  6628. "version": "v3.1.0",
  6629. "source": {
  6630. "type": "git",
  6631. "url": "https://github.com/reactphp/promise.git",
  6632. "reference": "e563d55d1641de1dea9f5e84f3cccc66d2bfe02c"
  6633. },
  6634. "dist": {
  6635. "type": "zip",
  6636. "url": "https://api.github.com/repos/reactphp/promise/zipball/e563d55d1641de1dea9f5e84f3cccc66d2bfe02c",
  6637. "reference": "e563d55d1641de1dea9f5e84f3cccc66d2bfe02c",
  6638. "shasum": ""
  6639. },
  6640. "require": {
  6641. "php": ">=7.1.0"
  6642. },
  6643. "require-dev": {
  6644. "phpstan/phpstan": "1.10.39 || 1.4.10",
  6645. "phpunit/phpunit": "^9.6 || ^7.5"
  6646. },
  6647. "type": "library",
  6648. "autoload": {
  6649. "files": [
  6650. "src/functions_include.php"
  6651. ],
  6652. "psr-4": {
  6653. "React\\Promise\\": "src/"
  6654. }
  6655. },
  6656. "notification-url": "https://packagist.org/downloads/",
  6657. "license": [
  6658. "MIT"
  6659. ],
  6660. "authors": [
  6661. {
  6662. "name": "Jan Sorgalla",
  6663. "email": "jsorgalla@gmail.com",
  6664. "homepage": "https://sorgalla.com/"
  6665. },
  6666. {
  6667. "name": "Christian Lück",
  6668. "email": "christian@clue.engineering",
  6669. "homepage": "https://clue.engineering/"
  6670. },
  6671. {
  6672. "name": "Cees-Jan Kiewiet",
  6673. "email": "reactphp@ceesjankiewiet.nl",
  6674. "homepage": "https://wyrihaximus.net/"
  6675. },
  6676. {
  6677. "name": "Chris Boden",
  6678. "email": "cboden@gmail.com",
  6679. "homepage": "https://cboden.dev/"
  6680. }
  6681. ],
  6682. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  6683. "keywords": [
  6684. "promise",
  6685. "promises"
  6686. ],
  6687. "support": {
  6688. "issues": "https://github.com/reactphp/promise/issues",
  6689. "source": "https://github.com/reactphp/promise/tree/v3.1.0"
  6690. },
  6691. "funding": [
  6692. {
  6693. "url": "https://opencollective.com/reactphp",
  6694. "type": "open_collective"
  6695. }
  6696. ],
  6697. "time": "2023-11-16T16:21:57+00:00"
  6698. },
  6699. {
  6700. "name": "react/socket",
  6701. "version": "v1.15.0",
  6702. "source": {
  6703. "type": "git",
  6704. "url": "https://github.com/reactphp/socket.git",
  6705. "reference": "216d3aec0b87f04a40ca04f481e6af01bdd1d038"
  6706. },
  6707. "dist": {
  6708. "type": "zip",
  6709. "url": "https://api.github.com/repos/reactphp/socket/zipball/216d3aec0b87f04a40ca04f481e6af01bdd1d038",
  6710. "reference": "216d3aec0b87f04a40ca04f481e6af01bdd1d038",
  6711. "shasum": ""
  6712. },
  6713. "require": {
  6714. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  6715. "php": ">=5.3.0",
  6716. "react/dns": "^1.11",
  6717. "react/event-loop": "^1.2",
  6718. "react/promise": "^3 || ^2.6 || ^1.2.1",
  6719. "react/stream": "^1.2"
  6720. },
  6721. "require-dev": {
  6722. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  6723. "react/async": "^4 || ^3 || ^2",
  6724. "react/promise-stream": "^1.4",
  6725. "react/promise-timer": "^1.10"
  6726. },
  6727. "type": "library",
  6728. "autoload": {
  6729. "psr-4": {
  6730. "React\\Socket\\": "src/"
  6731. }
  6732. },
  6733. "notification-url": "https://packagist.org/downloads/",
  6734. "license": [
  6735. "MIT"
  6736. ],
  6737. "authors": [
  6738. {
  6739. "name": "Christian Lück",
  6740. "email": "christian@clue.engineering",
  6741. "homepage": "https://clue.engineering/"
  6742. },
  6743. {
  6744. "name": "Cees-Jan Kiewiet",
  6745. "email": "reactphp@ceesjankiewiet.nl",
  6746. "homepage": "https://wyrihaximus.net/"
  6747. },
  6748. {
  6749. "name": "Jan Sorgalla",
  6750. "email": "jsorgalla@gmail.com",
  6751. "homepage": "https://sorgalla.com/"
  6752. },
  6753. {
  6754. "name": "Chris Boden",
  6755. "email": "cboden@gmail.com",
  6756. "homepage": "https://cboden.dev/"
  6757. }
  6758. ],
  6759. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  6760. "keywords": [
  6761. "Connection",
  6762. "Socket",
  6763. "async",
  6764. "reactphp",
  6765. "stream"
  6766. ],
  6767. "support": {
  6768. "issues": "https://github.com/reactphp/socket/issues",
  6769. "source": "https://github.com/reactphp/socket/tree/v1.15.0"
  6770. },
  6771. "funding": [
  6772. {
  6773. "url": "https://opencollective.com/reactphp",
  6774. "type": "open_collective"
  6775. }
  6776. ],
  6777. "time": "2023-12-15T11:02:10+00:00"
  6778. },
  6779. {
  6780. "name": "react/stream",
  6781. "version": "v1.3.0",
  6782. "source": {
  6783. "type": "git",
  6784. "url": "https://github.com/reactphp/stream.git",
  6785. "reference": "6fbc9672905c7d5a885f2da2fc696f65840f4a66"
  6786. },
  6787. "dist": {
  6788. "type": "zip",
  6789. "url": "https://api.github.com/repos/reactphp/stream/zipball/6fbc9672905c7d5a885f2da2fc696f65840f4a66",
  6790. "reference": "6fbc9672905c7d5a885f2da2fc696f65840f4a66",
  6791. "shasum": ""
  6792. },
  6793. "require": {
  6794. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  6795. "php": ">=5.3.8",
  6796. "react/event-loop": "^1.2"
  6797. },
  6798. "require-dev": {
  6799. "clue/stream-filter": "~1.2",
  6800. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  6801. },
  6802. "type": "library",
  6803. "autoload": {
  6804. "psr-4": {
  6805. "React\\Stream\\": "src/"
  6806. }
  6807. },
  6808. "notification-url": "https://packagist.org/downloads/",
  6809. "license": [
  6810. "MIT"
  6811. ],
  6812. "authors": [
  6813. {
  6814. "name": "Christian Lück",
  6815. "email": "christian@clue.engineering",
  6816. "homepage": "https://clue.engineering/"
  6817. },
  6818. {
  6819. "name": "Cees-Jan Kiewiet",
  6820. "email": "reactphp@ceesjankiewiet.nl",
  6821. "homepage": "https://wyrihaximus.net/"
  6822. },
  6823. {
  6824. "name": "Jan Sorgalla",
  6825. "email": "jsorgalla@gmail.com",
  6826. "homepage": "https://sorgalla.com/"
  6827. },
  6828. {
  6829. "name": "Chris Boden",
  6830. "email": "cboden@gmail.com",
  6831. "homepage": "https://cboden.dev/"
  6832. }
  6833. ],
  6834. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  6835. "keywords": [
  6836. "event-driven",
  6837. "io",
  6838. "non-blocking",
  6839. "pipe",
  6840. "reactphp",
  6841. "readable",
  6842. "stream",
  6843. "writable"
  6844. ],
  6845. "support": {
  6846. "issues": "https://github.com/reactphp/stream/issues",
  6847. "source": "https://github.com/reactphp/stream/tree/v1.3.0"
  6848. },
  6849. "funding": [
  6850. {
  6851. "url": "https://opencollective.com/reactphp",
  6852. "type": "open_collective"
  6853. }
  6854. ],
  6855. "time": "2023-06-16T10:52:11+00:00"
  6856. },
  6857. {
  6858. "name": "simplito/bigint-wrapper-php",
  6859. "version": "1.0.0",
  6860. "source": {
  6861. "type": "git",
  6862. "url": "https://github.com/simplito/bigint-wrapper-php.git",
  6863. "reference": "cf21ec76d33f103add487b3eadbd9f5033a25930"
  6864. },
  6865. "dist": {
  6866. "type": "zip",
  6867. "url": "https://api.github.com/repos/simplito/bigint-wrapper-php/zipball/cf21ec76d33f103add487b3eadbd9f5033a25930",
  6868. "reference": "cf21ec76d33f103add487b3eadbd9f5033a25930",
  6869. "shasum": "",
  6870. "mirrors": [
  6871. {
  6872. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6873. "preferred": true
  6874. }
  6875. ]
  6876. },
  6877. "type": "library",
  6878. "autoload": {
  6879. "psr-4": {
  6880. "BI\\": "lib/"
  6881. }
  6882. },
  6883. "notification-url": "https://packagist.org/downloads/",
  6884. "license": [
  6885. "MIT"
  6886. ],
  6887. "authors": [
  6888. {
  6889. "name": "Simplito Team",
  6890. "email": "s.smyczynski@simplito.com",
  6891. "homepage": "https://simplito.com"
  6892. }
  6893. ],
  6894. "description": "Common interface for php_gmp and php_bcmath modules",
  6895. "support": {
  6896. "issues": "https://github.com/simplito/bigint-wrapper-php/issues",
  6897. "source": "https://github.com/simplito/bigint-wrapper-php/tree/1.0.0"
  6898. },
  6899. "time": "2018-02-27T12:38:08+00:00"
  6900. },
  6901. {
  6902. "name": "simplito/bn-php",
  6903. "version": "1.1.3",
  6904. "source": {
  6905. "type": "git",
  6906. "url": "https://github.com/simplito/bn-php.git",
  6907. "reference": "189167f940cdb681288a967b0f4d66de81adcd97"
  6908. },
  6909. "dist": {
  6910. "type": "zip",
  6911. "url": "https://api.github.com/repos/simplito/bn-php/zipball/189167f940cdb681288a967b0f4d66de81adcd97",
  6912. "reference": "189167f940cdb681288a967b0f4d66de81adcd97",
  6913. "shasum": "",
  6914. "mirrors": [
  6915. {
  6916. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6917. "preferred": true
  6918. }
  6919. ]
  6920. },
  6921. "require": {
  6922. "simplito/bigint-wrapper-php": "~1.0.0"
  6923. },
  6924. "require-dev": {
  6925. "phpunit/phpunit": "*"
  6926. },
  6927. "type": "library",
  6928. "autoload": {
  6929. "psr-4": {
  6930. "BN\\": "lib/"
  6931. }
  6932. },
  6933. "notification-url": "https://packagist.org/downloads/",
  6934. "license": [
  6935. "MIT"
  6936. ],
  6937. "authors": [
  6938. {
  6939. "name": "Simplito Team",
  6940. "email": "s.smyczynski@simplito.com",
  6941. "homepage": "https://simplito.com"
  6942. }
  6943. ],
  6944. "description": "Big number implementation compatible with bn.js",
  6945. "support": {
  6946. "issues": "https://github.com/simplito/bn-php/issues",
  6947. "source": "https://github.com/simplito/bn-php/tree/1.1.3"
  6948. },
  6949. "time": "2022-08-12T18:58:14+00:00"
  6950. },
  6951. {
  6952. "name": "simplito/elliptic-php",
  6953. "version": "1.0.12",
  6954. "source": {
  6955. "type": "git",
  6956. "url": "https://github.com/simplito/elliptic-php.git",
  6957. "reference": "be321666781be2be2c89c79c43ffcac834bc8868"
  6958. },
  6959. "dist": {
  6960. "type": "zip",
  6961. "url": "https://api.github.com/repos/simplito/elliptic-php/zipball/be321666781be2be2c89c79c43ffcac834bc8868",
  6962. "reference": "be321666781be2be2c89c79c43ffcac834bc8868",
  6963. "shasum": "",
  6964. "mirrors": [
  6965. {
  6966. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6967. "preferred": true
  6968. }
  6969. ]
  6970. },
  6971. "require": {
  6972. "ext-gmp": "*",
  6973. "simplito/bn-php": "~1.1.0"
  6974. },
  6975. "require-dev": {
  6976. "phpbench/phpbench": "@dev",
  6977. "phpunit/phpunit": "*"
  6978. },
  6979. "type": "library",
  6980. "autoload": {
  6981. "psr-4": {
  6982. "Elliptic\\": "lib/"
  6983. }
  6984. },
  6985. "notification-url": "https://packagist.org/downloads/",
  6986. "license": [
  6987. "MIT"
  6988. ],
  6989. "authors": [
  6990. {
  6991. "name": "Simplito Team",
  6992. "email": "s.smyczynski@simplito.com",
  6993. "homepage": "https://simplito.com"
  6994. }
  6995. ],
  6996. "description": "Fast elliptic curve cryptography",
  6997. "homepage": "https://github.com/simplito/elliptic-php",
  6998. "keywords": [
  6999. "Curve25519",
  7000. "ECDSA",
  7001. "Ed25519",
  7002. "EdDSA",
  7003. "cryptography",
  7004. "curve",
  7005. "curve25519-weier",
  7006. "ecc",
  7007. "ecdh",
  7008. "elliptic",
  7009. "nistp192",
  7010. "nistp224",
  7011. "nistp256",
  7012. "nistp384",
  7013. "nistp521",
  7014. "secp256k1"
  7015. ],
  7016. "support": {
  7017. "issues": "https://github.com/simplito/elliptic-php/issues",
  7018. "source": "https://github.com/simplito/elliptic-php/tree/1.0.12"
  7019. },
  7020. "time": "2024-01-09T14:57:04+00:00"
  7021. },
  7022. {
  7023. "name": "socialiteproviders/manager",
  7024. "version": "v4.4.0",
  7025. "source": {
  7026. "type": "git",
  7027. "url": "https://github.com/SocialiteProviders/Manager.git",
  7028. "reference": "df5e45b53d918ec3d689f014d98a6c838b98ed96"
  7029. },
  7030. "dist": {
  7031. "type": "zip",
  7032. "url": "https://api.github.com/repos/SocialiteProviders/Manager/zipball/df5e45b53d918ec3d689f014d98a6c838b98ed96",
  7033. "reference": "df5e45b53d918ec3d689f014d98a6c838b98ed96",
  7034. "shasum": ""
  7035. },
  7036. "require": {
  7037. "illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0",
  7038. "laravel/socialite": "~5.0",
  7039. "php": "^8.0"
  7040. },
  7041. "require-dev": {
  7042. "mockery/mockery": "^1.2",
  7043. "phpunit/phpunit": "^6.0 || ^9.0"
  7044. },
  7045. "type": "library",
  7046. "extra": {
  7047. "laravel": {
  7048. "providers": [
  7049. "SocialiteProviders\\Manager\\ServiceProvider"
  7050. ]
  7051. }
  7052. },
  7053. "autoload": {
  7054. "psr-4": {
  7055. "SocialiteProviders\\Manager\\": "src/"
  7056. }
  7057. },
  7058. "notification-url": "https://packagist.org/downloads/",
  7059. "license": [
  7060. "MIT"
  7061. ],
  7062. "authors": [
  7063. {
  7064. "name": "Andy Wendt",
  7065. "email": "andy@awendt.com"
  7066. },
  7067. {
  7068. "name": "Anton Komarev",
  7069. "email": "a.komarev@cybercog.su"
  7070. },
  7071. {
  7072. "name": "Miguel Piedrafita",
  7073. "email": "soy@miguelpiedrafita.com"
  7074. },
  7075. {
  7076. "name": "atymic",
  7077. "email": "atymicq@gmail.com",
  7078. "homepage": "https://atymic.dev"
  7079. }
  7080. ],
  7081. "description": "Easily add new or override built-in providers in Laravel Socialite.",
  7082. "homepage": "https://socialiteproviders.com",
  7083. "keywords": [
  7084. "laravel",
  7085. "manager",
  7086. "oauth",
  7087. "providers",
  7088. "socialite"
  7089. ],
  7090. "support": {
  7091. "issues": "https://github.com/socialiteproviders/manager/issues",
  7092. "source": "https://github.com/socialiteproviders/manager"
  7093. },
  7094. "time": "2023-08-27T23:46:34+00:00"
  7095. },
  7096. {
  7097. "name": "socialiteproviders/weixin",
  7098. "version": "4.1.0",
  7099. "source": {
  7100. "type": "git",
  7101. "url": "https://github.com/SocialiteProviders/Weixin.git",
  7102. "reference": "4f5ca3ee25e1a46e0dc6bb00bd6ba77f344e340f"
  7103. },
  7104. "dist": {
  7105. "type": "zip",
  7106. "url": "https://api.github.com/repos/SocialiteProviders/Weixin/zipball/4f5ca3ee25e1a46e0dc6bb00bd6ba77f344e340f",
  7107. "reference": "4f5ca3ee25e1a46e0dc6bb00bd6ba77f344e340f",
  7108. "shasum": ""
  7109. },
  7110. "require": {
  7111. "ext-json": "*",
  7112. "php": "^7.2 || ^8.0",
  7113. "socialiteproviders/manager": "~4.0"
  7114. },
  7115. "type": "library",
  7116. "autoload": {
  7117. "psr-4": {
  7118. "SocialiteProviders\\Weixin\\": ""
  7119. }
  7120. },
  7121. "notification-url": "https://packagist.org/downloads/",
  7122. "license": [
  7123. "MIT"
  7124. ],
  7125. "authors": [
  7126. {
  7127. "name": "xyxu",
  7128. "email": "techxu@gmail.com"
  7129. },
  7130. {
  7131. "name": "xiami",
  7132. "email": "jhdxr@php.net"
  7133. }
  7134. ],
  7135. "description": "Weixin OAuth2 Provider for Laravel Socialite",
  7136. "support": {
  7137. "source": "https://github.com/SocialiteProviders/Weixin/tree/4.1.0"
  7138. },
  7139. "time": "2020-12-01T23:10:59+00:00"
  7140. },
  7141. {
  7142. "name": "socialiteproviders/weixin-web",
  7143. "version": "4.1.0",
  7144. "source": {
  7145. "type": "git",
  7146. "url": "https://github.com/SocialiteProviders/Weixin-Web.git",
  7147. "reference": "3862d3a2e3e55bb0381efd0b73958bfc4dffd7b3"
  7148. },
  7149. "dist": {
  7150. "type": "zip",
  7151. "url": "https://api.github.com/repos/SocialiteProviders/Weixin-Web/zipball/3862d3a2e3e55bb0381efd0b73958bfc4dffd7b3",
  7152. "reference": "3862d3a2e3e55bb0381efd0b73958bfc4dffd7b3",
  7153. "shasum": ""
  7154. },
  7155. "require": {
  7156. "ext-json": "*",
  7157. "php": "^7.2 || ^8.0",
  7158. "socialiteproviders/manager": "~4.0"
  7159. },
  7160. "type": "library",
  7161. "autoload": {
  7162. "psr-4": {
  7163. "SocialiteProviders\\WeixinWeb\\": ""
  7164. }
  7165. },
  7166. "notification-url": "https://packagist.org/downloads/",
  7167. "license": [
  7168. "MIT"
  7169. ],
  7170. "authors": [
  7171. {
  7172. "name": "xyxu",
  7173. "email": "techxu@gmail.com"
  7174. }
  7175. ],
  7176. "description": "Weixin-Web OAuth2 Provider for Laravel Socialite",
  7177. "support": {
  7178. "source": "https://github.com/SocialiteProviders/Weixin-Web/tree/4.1.0"
  7179. },
  7180. "time": "2020-12-01T23:10:59+00:00"
  7181. },
  7182. {
  7183. "name": "spatie/temporary-directory",
  7184. "version": "2.2.1",
  7185. "source": {
  7186. "type": "git",
  7187. "url": "https://github.com/spatie/temporary-directory.git",
  7188. "reference": "76949fa18f8e1a7f663fd2eaa1d00e0bcea0752a"
  7189. },
  7190. "dist": {
  7191. "type": "zip",
  7192. "url": "https://api.github.com/repos/spatie/temporary-directory/zipball/76949fa18f8e1a7f663fd2eaa1d00e0bcea0752a",
  7193. "reference": "76949fa18f8e1a7f663fd2eaa1d00e0bcea0752a",
  7194. "shasum": "",
  7195. "mirrors": [
  7196. {
  7197. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7198. "preferred": true
  7199. }
  7200. ]
  7201. },
  7202. "require": {
  7203. "php": "^8.0"
  7204. },
  7205. "require-dev": {
  7206. "phpunit/phpunit": "^9.5"
  7207. },
  7208. "type": "library",
  7209. "autoload": {
  7210. "psr-4": {
  7211. "Spatie\\TemporaryDirectory\\": "src"
  7212. }
  7213. },
  7214. "notification-url": "https://packagist.org/downloads/",
  7215. "license": [
  7216. "MIT"
  7217. ],
  7218. "authors": [
  7219. {
  7220. "name": "Alex Vanderbist",
  7221. "email": "alex@spatie.be",
  7222. "homepage": "https://spatie.be",
  7223. "role": "Developer"
  7224. }
  7225. ],
  7226. "description": "Easily create, use and destroy temporary directories",
  7227. "homepage": "https://github.com/spatie/temporary-directory",
  7228. "keywords": [
  7229. "php",
  7230. "spatie",
  7231. "temporary-directory"
  7232. ],
  7233. "support": {
  7234. "issues": "https://github.com/spatie/temporary-directory/issues",
  7235. "source": "https://github.com/spatie/temporary-directory/tree/2.2.1"
  7236. },
  7237. "funding": [
  7238. {
  7239. "url": "https://spatie.be/open-source/support-us",
  7240. "type": "custom"
  7241. },
  7242. {
  7243. "url": "https://github.com/spatie",
  7244. "type": "github"
  7245. }
  7246. ],
  7247. "time": "2023-12-25T11:46:58+00:00"
  7248. },
  7249. {
  7250. "name": "swiftmailer/swiftmailer",
  7251. "version": "v6.3.0",
  7252. "source": {
  7253. "type": "git",
  7254. "url": "https://github.com/swiftmailer/swiftmailer.git",
  7255. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  7256. },
  7257. "dist": {
  7258. "type": "zip",
  7259. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  7260. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  7261. "shasum": ""
  7262. },
  7263. "require": {
  7264. "egulias/email-validator": "^2.0|^3.1",
  7265. "php": ">=7.0.0",
  7266. "symfony/polyfill-iconv": "^1.0",
  7267. "symfony/polyfill-intl-idn": "^1.10",
  7268. "symfony/polyfill-mbstring": "^1.0"
  7269. },
  7270. "require-dev": {
  7271. "mockery/mockery": "^1.0",
  7272. "symfony/phpunit-bridge": "^4.4|^5.4"
  7273. },
  7274. "suggest": {
  7275. "ext-intl": "Needed to support internationalized email addresses"
  7276. },
  7277. "type": "library",
  7278. "extra": {
  7279. "branch-alias": {
  7280. "dev-master": "6.2-dev"
  7281. }
  7282. },
  7283. "autoload": {
  7284. "files": [
  7285. "lib/swift_required.php"
  7286. ]
  7287. },
  7288. "notification-url": "https://packagist.org/downloads/",
  7289. "license": [
  7290. "MIT"
  7291. ],
  7292. "authors": [
  7293. {
  7294. "name": "Chris Corbyn"
  7295. },
  7296. {
  7297. "name": "Fabien Potencier",
  7298. "email": "fabien@symfony.com"
  7299. }
  7300. ],
  7301. "description": "Swiftmailer, free feature-rich PHP mailer",
  7302. "homepage": "https://swiftmailer.symfony.com",
  7303. "keywords": [
  7304. "email",
  7305. "mail",
  7306. "mailer"
  7307. ],
  7308. "support": {
  7309. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  7310. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  7311. },
  7312. "funding": [
  7313. {
  7314. "url": "https://github.com/fabpot",
  7315. "type": "github"
  7316. },
  7317. {
  7318. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  7319. "type": "tidelift"
  7320. }
  7321. ],
  7322. "abandoned": "symfony/mailer",
  7323. "time": "2021-10-18T15:26:12+00:00"
  7324. },
  7325. {
  7326. "name": "symfony/cache",
  7327. "version": "v6.0.19",
  7328. "source": {
  7329. "type": "git",
  7330. "url": "https://github.com/symfony/cache.git",
  7331. "reference": "81ca309f056e836480928b20280ec52ce8369bb3"
  7332. },
  7333. "dist": {
  7334. "type": "zip",
  7335. "url": "https://api.github.com/repos/symfony/cache/zipball/81ca309f056e836480928b20280ec52ce8369bb3",
  7336. "reference": "81ca309f056e836480928b20280ec52ce8369bb3",
  7337. "shasum": "",
  7338. "mirrors": [
  7339. {
  7340. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7341. "preferred": true
  7342. }
  7343. ]
  7344. },
  7345. "require": {
  7346. "php": ">=8.0.2",
  7347. "psr/cache": "^2.0|^3.0",
  7348. "psr/log": "^1.1|^2|^3",
  7349. "symfony/cache-contracts": "^1.1.7|^2|^3",
  7350. "symfony/service-contracts": "^1.1|^2|^3",
  7351. "symfony/var-exporter": "^5.4|^6.0"
  7352. },
  7353. "conflict": {
  7354. "doctrine/dbal": "<2.13.1",
  7355. "symfony/dependency-injection": "<5.4",
  7356. "symfony/http-kernel": "<5.4",
  7357. "symfony/var-dumper": "<5.4"
  7358. },
  7359. "provide": {
  7360. "psr/cache-implementation": "2.0|3.0",
  7361. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  7362. "symfony/cache-implementation": "1.1|2.0|3.0"
  7363. },
  7364. "require-dev": {
  7365. "cache/integration-tests": "dev-master",
  7366. "doctrine/dbal": "^2.13.1|^3.0",
  7367. "predis/predis": "^1.1",
  7368. "psr/simple-cache": "^1.0|^2.0|^3.0",
  7369. "symfony/config": "^5.4|^6.0",
  7370. "symfony/dependency-injection": "^5.4|^6.0",
  7371. "symfony/filesystem": "^5.4|^6.0",
  7372. "symfony/http-kernel": "^5.4|^6.0",
  7373. "symfony/messenger": "^5.4|^6.0",
  7374. "symfony/var-dumper": "^5.4|^6.0"
  7375. },
  7376. "type": "library",
  7377. "autoload": {
  7378. "psr-4": {
  7379. "Symfony\\Component\\Cache\\": ""
  7380. },
  7381. "exclude-from-classmap": [
  7382. "/Tests/"
  7383. ]
  7384. },
  7385. "notification-url": "https://packagist.org/downloads/",
  7386. "license": [
  7387. "MIT"
  7388. ],
  7389. "authors": [
  7390. {
  7391. "name": "Nicolas Grekas",
  7392. "email": "p@tchwork.com"
  7393. },
  7394. {
  7395. "name": "Symfony Community",
  7396. "homepage": "https://symfony.com/contributors"
  7397. }
  7398. ],
  7399. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  7400. "homepage": "https://symfony.com",
  7401. "keywords": [
  7402. "caching",
  7403. "psr6"
  7404. ],
  7405. "support": {
  7406. "source": "https://github.com/symfony/cache/tree/v6.0.19"
  7407. },
  7408. "funding": [
  7409. {
  7410. "url": "https://symfony.com/sponsor",
  7411. "type": "custom"
  7412. },
  7413. {
  7414. "url": "https://github.com/fabpot",
  7415. "type": "github"
  7416. },
  7417. {
  7418. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7419. "type": "tidelift"
  7420. }
  7421. ],
  7422. "time": "2023-01-20T17:44:14+00:00"
  7423. },
  7424. {
  7425. "name": "symfony/cache-contracts",
  7426. "version": "v2.5.2",
  7427. "source": {
  7428. "type": "git",
  7429. "url": "https://github.com/symfony/cache-contracts.git",
  7430. "reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc"
  7431. },
  7432. "dist": {
  7433. "type": "zip",
  7434. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/64be4a7acb83b6f2bf6de9a02cee6dad41277ebc",
  7435. "reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc",
  7436. "shasum": "",
  7437. "mirrors": [
  7438. {
  7439. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7440. "preferred": true
  7441. }
  7442. ]
  7443. },
  7444. "require": {
  7445. "php": ">=7.2.5",
  7446. "psr/cache": "^1.0|^2.0|^3.0"
  7447. },
  7448. "suggest": {
  7449. "symfony/cache-implementation": ""
  7450. },
  7451. "type": "library",
  7452. "extra": {
  7453. "branch-alias": {
  7454. "dev-main": "2.5-dev"
  7455. },
  7456. "thanks": {
  7457. "name": "symfony/contracts",
  7458. "url": "https://github.com/symfony/contracts"
  7459. }
  7460. },
  7461. "autoload": {
  7462. "psr-4": {
  7463. "Symfony\\Contracts\\Cache\\": ""
  7464. }
  7465. },
  7466. "notification-url": "https://packagist.org/downloads/",
  7467. "license": [
  7468. "MIT"
  7469. ],
  7470. "authors": [
  7471. {
  7472. "name": "Nicolas Grekas",
  7473. "email": "p@tchwork.com"
  7474. },
  7475. {
  7476. "name": "Symfony Community",
  7477. "homepage": "https://symfony.com/contributors"
  7478. }
  7479. ],
  7480. "description": "Generic abstractions related to caching",
  7481. "homepage": "https://symfony.com",
  7482. "keywords": [
  7483. "abstractions",
  7484. "contracts",
  7485. "decoupling",
  7486. "interfaces",
  7487. "interoperability",
  7488. "standards"
  7489. ],
  7490. "support": {
  7491. "source": "https://github.com/symfony/cache-contracts/tree/v2.5.2"
  7492. },
  7493. "funding": [
  7494. {
  7495. "url": "https://symfony.com/sponsor",
  7496. "type": "custom"
  7497. },
  7498. {
  7499. "url": "https://github.com/fabpot",
  7500. "type": "github"
  7501. },
  7502. {
  7503. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7504. "type": "tidelift"
  7505. }
  7506. ],
  7507. "time": "2022-01-02T09:53:40+00:00"
  7508. },
  7509. {
  7510. "name": "symfony/console",
  7511. "version": "v5.4.32",
  7512. "source": {
  7513. "type": "git",
  7514. "url": "https://github.com/symfony/console.git",
  7515. "reference": "c70df1ffaf23a8d340bded3cfab1b86752ad6ed7"
  7516. },
  7517. "dist": {
  7518. "type": "zip",
  7519. "url": "https://api.github.com/repos/symfony/console/zipball/c70df1ffaf23a8d340bded3cfab1b86752ad6ed7",
  7520. "reference": "c70df1ffaf23a8d340bded3cfab1b86752ad6ed7",
  7521. "shasum": ""
  7522. },
  7523. "require": {
  7524. "php": ">=7.2.5",
  7525. "symfony/deprecation-contracts": "^2.1|^3",
  7526. "symfony/polyfill-mbstring": "~1.0",
  7527. "symfony/polyfill-php73": "^1.9",
  7528. "symfony/polyfill-php80": "^1.16",
  7529. "symfony/service-contracts": "^1.1|^2|^3",
  7530. "symfony/string": "^5.1|^6.0"
  7531. },
  7532. "conflict": {
  7533. "psr/log": ">=3",
  7534. "symfony/dependency-injection": "<4.4",
  7535. "symfony/dotenv": "<5.1",
  7536. "symfony/event-dispatcher": "<4.4",
  7537. "symfony/lock": "<4.4",
  7538. "symfony/process": "<4.4"
  7539. },
  7540. "provide": {
  7541. "psr/log-implementation": "1.0|2.0"
  7542. },
  7543. "require-dev": {
  7544. "psr/log": "^1|^2",
  7545. "symfony/config": "^4.4|^5.0|^6.0",
  7546. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  7547. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  7548. "symfony/lock": "^4.4|^5.0|^6.0",
  7549. "symfony/process": "^4.4|^5.0|^6.0",
  7550. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  7551. },
  7552. "suggest": {
  7553. "psr/log": "For using the console logger",
  7554. "symfony/event-dispatcher": "",
  7555. "symfony/lock": "",
  7556. "symfony/process": ""
  7557. },
  7558. "type": "library",
  7559. "autoload": {
  7560. "psr-4": {
  7561. "Symfony\\Component\\Console\\": ""
  7562. },
  7563. "exclude-from-classmap": [
  7564. "/Tests/"
  7565. ]
  7566. },
  7567. "notification-url": "https://packagist.org/downloads/",
  7568. "license": [
  7569. "MIT"
  7570. ],
  7571. "authors": [
  7572. {
  7573. "name": "Fabien Potencier",
  7574. "email": "fabien@symfony.com"
  7575. },
  7576. {
  7577. "name": "Symfony Community",
  7578. "homepage": "https://symfony.com/contributors"
  7579. }
  7580. ],
  7581. "description": "Eases the creation of beautiful and testable command line interfaces",
  7582. "homepage": "https://symfony.com",
  7583. "keywords": [
  7584. "cli",
  7585. "command-line",
  7586. "console",
  7587. "terminal"
  7588. ],
  7589. "support": {
  7590. "source": "https://github.com/symfony/console/tree/v5.4.32"
  7591. },
  7592. "funding": [
  7593. {
  7594. "url": "https://symfony.com/sponsor",
  7595. "type": "custom"
  7596. },
  7597. {
  7598. "url": "https://github.com/fabpot",
  7599. "type": "github"
  7600. },
  7601. {
  7602. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7603. "type": "tidelift"
  7604. }
  7605. ],
  7606. "time": "2023-11-18T18:23:04+00:00"
  7607. },
  7608. {
  7609. "name": "symfony/css-selector",
  7610. "version": "v6.0.19",
  7611. "source": {
  7612. "type": "git",
  7613. "url": "https://github.com/symfony/css-selector.git",
  7614. "reference": "f1d00bddb83a4cb2138564b2150001cb6ce272b1"
  7615. },
  7616. "dist": {
  7617. "type": "zip",
  7618. "url": "https://api.github.com/repos/symfony/css-selector/zipball/f1d00bddb83a4cb2138564b2150001cb6ce272b1",
  7619. "reference": "f1d00bddb83a4cb2138564b2150001cb6ce272b1",
  7620. "shasum": ""
  7621. },
  7622. "require": {
  7623. "php": ">=8.0.2"
  7624. },
  7625. "type": "library",
  7626. "autoload": {
  7627. "psr-4": {
  7628. "Symfony\\Component\\CssSelector\\": ""
  7629. },
  7630. "exclude-from-classmap": [
  7631. "/Tests/"
  7632. ]
  7633. },
  7634. "notification-url": "https://packagist.org/downloads/",
  7635. "license": [
  7636. "MIT"
  7637. ],
  7638. "authors": [
  7639. {
  7640. "name": "Fabien Potencier",
  7641. "email": "fabien@symfony.com"
  7642. },
  7643. {
  7644. "name": "Jean-François Simon",
  7645. "email": "jeanfrancois.simon@sensiolabs.com"
  7646. },
  7647. {
  7648. "name": "Symfony Community",
  7649. "homepage": "https://symfony.com/contributors"
  7650. }
  7651. ],
  7652. "description": "Converts CSS selectors to XPath expressions",
  7653. "homepage": "https://symfony.com",
  7654. "support": {
  7655. "source": "https://github.com/symfony/css-selector/tree/v6.0.19"
  7656. },
  7657. "funding": [
  7658. {
  7659. "url": "https://symfony.com/sponsor",
  7660. "type": "custom"
  7661. },
  7662. {
  7663. "url": "https://github.com/fabpot",
  7664. "type": "github"
  7665. },
  7666. {
  7667. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7668. "type": "tidelift"
  7669. }
  7670. ],
  7671. "time": "2023-01-01T08:36:10+00:00"
  7672. },
  7673. {
  7674. "name": "symfony/deprecation-contracts",
  7675. "version": "v3.0.2",
  7676. "source": {
  7677. "type": "git",
  7678. "url": "https://github.com/symfony/deprecation-contracts.git",
  7679. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c"
  7680. },
  7681. "dist": {
  7682. "type": "zip",
  7683. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  7684. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  7685. "shasum": ""
  7686. },
  7687. "require": {
  7688. "php": ">=8.0.2"
  7689. },
  7690. "type": "library",
  7691. "extra": {
  7692. "branch-alias": {
  7693. "dev-main": "3.0-dev"
  7694. },
  7695. "thanks": {
  7696. "name": "symfony/contracts",
  7697. "url": "https://github.com/symfony/contracts"
  7698. }
  7699. },
  7700. "autoload": {
  7701. "files": [
  7702. "function.php"
  7703. ]
  7704. },
  7705. "notification-url": "https://packagist.org/downloads/",
  7706. "license": [
  7707. "MIT"
  7708. ],
  7709. "authors": [
  7710. {
  7711. "name": "Nicolas Grekas",
  7712. "email": "p@tchwork.com"
  7713. },
  7714. {
  7715. "name": "Symfony Community",
  7716. "homepage": "https://symfony.com/contributors"
  7717. }
  7718. ],
  7719. "description": "A generic function and convention to trigger deprecation notices",
  7720. "homepage": "https://symfony.com",
  7721. "support": {
  7722. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.0.2"
  7723. },
  7724. "funding": [
  7725. {
  7726. "url": "https://symfony.com/sponsor",
  7727. "type": "custom"
  7728. },
  7729. {
  7730. "url": "https://github.com/fabpot",
  7731. "type": "github"
  7732. },
  7733. {
  7734. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7735. "type": "tidelift"
  7736. }
  7737. ],
  7738. "time": "2022-01-02T09:55:41+00:00"
  7739. },
  7740. {
  7741. "name": "symfony/error-handler",
  7742. "version": "v5.4.29",
  7743. "source": {
  7744. "type": "git",
  7745. "url": "https://github.com/symfony/error-handler.git",
  7746. "reference": "328c6fcfd2f90b64c16efaf0ea67a311d672f078"
  7747. },
  7748. "dist": {
  7749. "type": "zip",
  7750. "url": "https://api.github.com/repos/symfony/error-handler/zipball/328c6fcfd2f90b64c16efaf0ea67a311d672f078",
  7751. "reference": "328c6fcfd2f90b64c16efaf0ea67a311d672f078",
  7752. "shasum": ""
  7753. },
  7754. "require": {
  7755. "php": ">=7.2.5",
  7756. "psr/log": "^1|^2|^3",
  7757. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  7758. },
  7759. "require-dev": {
  7760. "symfony/deprecation-contracts": "^2.1|^3",
  7761. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  7762. "symfony/serializer": "^4.4|^5.0|^6.0"
  7763. },
  7764. "bin": [
  7765. "Resources/bin/patch-type-declarations"
  7766. ],
  7767. "type": "library",
  7768. "autoload": {
  7769. "psr-4": {
  7770. "Symfony\\Component\\ErrorHandler\\": ""
  7771. },
  7772. "exclude-from-classmap": [
  7773. "/Tests/"
  7774. ]
  7775. },
  7776. "notification-url": "https://packagist.org/downloads/",
  7777. "license": [
  7778. "MIT"
  7779. ],
  7780. "authors": [
  7781. {
  7782. "name": "Fabien Potencier",
  7783. "email": "fabien@symfony.com"
  7784. },
  7785. {
  7786. "name": "Symfony Community",
  7787. "homepage": "https://symfony.com/contributors"
  7788. }
  7789. ],
  7790. "description": "Provides tools to manage errors and ease debugging PHP code",
  7791. "homepage": "https://symfony.com",
  7792. "support": {
  7793. "source": "https://github.com/symfony/error-handler/tree/v5.4.29"
  7794. },
  7795. "funding": [
  7796. {
  7797. "url": "https://symfony.com/sponsor",
  7798. "type": "custom"
  7799. },
  7800. {
  7801. "url": "https://github.com/fabpot",
  7802. "type": "github"
  7803. },
  7804. {
  7805. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7806. "type": "tidelift"
  7807. }
  7808. ],
  7809. "time": "2023-09-06T21:54:06+00:00"
  7810. },
  7811. {
  7812. "name": "symfony/event-dispatcher",
  7813. "version": "v6.0.19",
  7814. "source": {
  7815. "type": "git",
  7816. "url": "https://github.com/symfony/event-dispatcher.git",
  7817. "reference": "2eaf8e63bc5b8cefabd4a800157f0d0c094f677a"
  7818. },
  7819. "dist": {
  7820. "type": "zip",
  7821. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/2eaf8e63bc5b8cefabd4a800157f0d0c094f677a",
  7822. "reference": "2eaf8e63bc5b8cefabd4a800157f0d0c094f677a",
  7823. "shasum": ""
  7824. },
  7825. "require": {
  7826. "php": ">=8.0.2",
  7827. "symfony/event-dispatcher-contracts": "^2|^3"
  7828. },
  7829. "conflict": {
  7830. "symfony/dependency-injection": "<5.4"
  7831. },
  7832. "provide": {
  7833. "psr/event-dispatcher-implementation": "1.0",
  7834. "symfony/event-dispatcher-implementation": "2.0|3.0"
  7835. },
  7836. "require-dev": {
  7837. "psr/log": "^1|^2|^3",
  7838. "symfony/config": "^5.4|^6.0",
  7839. "symfony/dependency-injection": "^5.4|^6.0",
  7840. "symfony/error-handler": "^5.4|^6.0",
  7841. "symfony/expression-language": "^5.4|^6.0",
  7842. "symfony/http-foundation": "^5.4|^6.0",
  7843. "symfony/service-contracts": "^1.1|^2|^3",
  7844. "symfony/stopwatch": "^5.4|^6.0"
  7845. },
  7846. "suggest": {
  7847. "symfony/dependency-injection": "",
  7848. "symfony/http-kernel": ""
  7849. },
  7850. "type": "library",
  7851. "autoload": {
  7852. "psr-4": {
  7853. "Symfony\\Component\\EventDispatcher\\": ""
  7854. },
  7855. "exclude-from-classmap": [
  7856. "/Tests/"
  7857. ]
  7858. },
  7859. "notification-url": "https://packagist.org/downloads/",
  7860. "license": [
  7861. "MIT"
  7862. ],
  7863. "authors": [
  7864. {
  7865. "name": "Fabien Potencier",
  7866. "email": "fabien@symfony.com"
  7867. },
  7868. {
  7869. "name": "Symfony Community",
  7870. "homepage": "https://symfony.com/contributors"
  7871. }
  7872. ],
  7873. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  7874. "homepage": "https://symfony.com",
  7875. "support": {
  7876. "source": "https://github.com/symfony/event-dispatcher/tree/v6.0.19"
  7877. },
  7878. "funding": [
  7879. {
  7880. "url": "https://symfony.com/sponsor",
  7881. "type": "custom"
  7882. },
  7883. {
  7884. "url": "https://github.com/fabpot",
  7885. "type": "github"
  7886. },
  7887. {
  7888. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7889. "type": "tidelift"
  7890. }
  7891. ],
  7892. "time": "2023-01-01T08:36:10+00:00"
  7893. },
  7894. {
  7895. "name": "symfony/event-dispatcher-contracts",
  7896. "version": "v3.0.2",
  7897. "source": {
  7898. "type": "git",
  7899. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  7900. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051"
  7901. },
  7902. "dist": {
  7903. "type": "zip",
  7904. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7bc61cc2db649b4637d331240c5346dcc7708051",
  7905. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051",
  7906. "shasum": ""
  7907. },
  7908. "require": {
  7909. "php": ">=8.0.2",
  7910. "psr/event-dispatcher": "^1"
  7911. },
  7912. "suggest": {
  7913. "symfony/event-dispatcher-implementation": ""
  7914. },
  7915. "type": "library",
  7916. "extra": {
  7917. "branch-alias": {
  7918. "dev-main": "3.0-dev"
  7919. },
  7920. "thanks": {
  7921. "name": "symfony/contracts",
  7922. "url": "https://github.com/symfony/contracts"
  7923. }
  7924. },
  7925. "autoload": {
  7926. "psr-4": {
  7927. "Symfony\\Contracts\\EventDispatcher\\": ""
  7928. }
  7929. },
  7930. "notification-url": "https://packagist.org/downloads/",
  7931. "license": [
  7932. "MIT"
  7933. ],
  7934. "authors": [
  7935. {
  7936. "name": "Nicolas Grekas",
  7937. "email": "p@tchwork.com"
  7938. },
  7939. {
  7940. "name": "Symfony Community",
  7941. "homepage": "https://symfony.com/contributors"
  7942. }
  7943. ],
  7944. "description": "Generic abstractions related to dispatching event",
  7945. "homepage": "https://symfony.com",
  7946. "keywords": [
  7947. "abstractions",
  7948. "contracts",
  7949. "decoupling",
  7950. "interfaces",
  7951. "interoperability",
  7952. "standards"
  7953. ],
  7954. "support": {
  7955. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.0.2"
  7956. },
  7957. "funding": [
  7958. {
  7959. "url": "https://symfony.com/sponsor",
  7960. "type": "custom"
  7961. },
  7962. {
  7963. "url": "https://github.com/fabpot",
  7964. "type": "github"
  7965. },
  7966. {
  7967. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7968. "type": "tidelift"
  7969. }
  7970. ],
  7971. "time": "2022-01-02T09:55:41+00:00"
  7972. },
  7973. {
  7974. "name": "symfony/finder",
  7975. "version": "v5.4.27",
  7976. "source": {
  7977. "type": "git",
  7978. "url": "https://github.com/symfony/finder.git",
  7979. "reference": "ff4bce3c33451e7ec778070e45bd23f74214cd5d"
  7980. },
  7981. "dist": {
  7982. "type": "zip",
  7983. "url": "https://api.github.com/repos/symfony/finder/zipball/ff4bce3c33451e7ec778070e45bd23f74214cd5d",
  7984. "reference": "ff4bce3c33451e7ec778070e45bd23f74214cd5d",
  7985. "shasum": ""
  7986. },
  7987. "require": {
  7988. "php": ">=7.2.5",
  7989. "symfony/deprecation-contracts": "^2.1|^3",
  7990. "symfony/polyfill-php80": "^1.16"
  7991. },
  7992. "type": "library",
  7993. "autoload": {
  7994. "psr-4": {
  7995. "Symfony\\Component\\Finder\\": ""
  7996. },
  7997. "exclude-from-classmap": [
  7998. "/Tests/"
  7999. ]
  8000. },
  8001. "notification-url": "https://packagist.org/downloads/",
  8002. "license": [
  8003. "MIT"
  8004. ],
  8005. "authors": [
  8006. {
  8007. "name": "Fabien Potencier",
  8008. "email": "fabien@symfony.com"
  8009. },
  8010. {
  8011. "name": "Symfony Community",
  8012. "homepage": "https://symfony.com/contributors"
  8013. }
  8014. ],
  8015. "description": "Finds files and directories via an intuitive fluent interface",
  8016. "homepage": "https://symfony.com",
  8017. "support": {
  8018. "source": "https://github.com/symfony/finder/tree/v5.4.27"
  8019. },
  8020. "funding": [
  8021. {
  8022. "url": "https://symfony.com/sponsor",
  8023. "type": "custom"
  8024. },
  8025. {
  8026. "url": "https://github.com/fabpot",
  8027. "type": "github"
  8028. },
  8029. {
  8030. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8031. "type": "tidelift"
  8032. }
  8033. ],
  8034. "time": "2023-07-31T08:02:31+00:00"
  8035. },
  8036. {
  8037. "name": "symfony/http-foundation",
  8038. "version": "v5.4.32",
  8039. "source": {
  8040. "type": "git",
  8041. "url": "https://github.com/symfony/http-foundation.git",
  8042. "reference": "cbcd80a4c36f59772d62860fdb0cb6a38da63fd2"
  8043. },
  8044. "dist": {
  8045. "type": "zip",
  8046. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/cbcd80a4c36f59772d62860fdb0cb6a38da63fd2",
  8047. "reference": "cbcd80a4c36f59772d62860fdb0cb6a38da63fd2",
  8048. "shasum": ""
  8049. },
  8050. "require": {
  8051. "php": ">=7.2.5",
  8052. "symfony/deprecation-contracts": "^2.1|^3",
  8053. "symfony/polyfill-mbstring": "~1.1",
  8054. "symfony/polyfill-php80": "^1.16"
  8055. },
  8056. "require-dev": {
  8057. "predis/predis": "~1.0",
  8058. "symfony/cache": "^4.4|^5.0|^6.0",
  8059. "symfony/dependency-injection": "^5.4|^6.0",
  8060. "symfony/expression-language": "^4.4|^5.0|^6.0",
  8061. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  8062. "symfony/mime": "^4.4|^5.0|^6.0",
  8063. "symfony/rate-limiter": "^5.2|^6.0"
  8064. },
  8065. "suggest": {
  8066. "symfony/mime": "To use the file extension guesser"
  8067. },
  8068. "type": "library",
  8069. "autoload": {
  8070. "psr-4": {
  8071. "Symfony\\Component\\HttpFoundation\\": ""
  8072. },
  8073. "exclude-from-classmap": [
  8074. "/Tests/"
  8075. ]
  8076. },
  8077. "notification-url": "https://packagist.org/downloads/",
  8078. "license": [
  8079. "MIT"
  8080. ],
  8081. "authors": [
  8082. {
  8083. "name": "Fabien Potencier",
  8084. "email": "fabien@symfony.com"
  8085. },
  8086. {
  8087. "name": "Symfony Community",
  8088. "homepage": "https://symfony.com/contributors"
  8089. }
  8090. ],
  8091. "description": "Defines an object-oriented layer for the HTTP specification",
  8092. "homepage": "https://symfony.com",
  8093. "support": {
  8094. "source": "https://github.com/symfony/http-foundation/tree/v5.4.32"
  8095. },
  8096. "funding": [
  8097. {
  8098. "url": "https://symfony.com/sponsor",
  8099. "type": "custom"
  8100. },
  8101. {
  8102. "url": "https://github.com/fabpot",
  8103. "type": "github"
  8104. },
  8105. {
  8106. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8107. "type": "tidelift"
  8108. }
  8109. ],
  8110. "time": "2023-11-20T15:40:25+00:00"
  8111. },
  8112. {
  8113. "name": "symfony/http-kernel",
  8114. "version": "v5.4.33",
  8115. "source": {
  8116. "type": "git",
  8117. "url": "https://github.com/symfony/http-kernel.git",
  8118. "reference": "892636f9279f953dc266dc088f900b03eecb4ffa"
  8119. },
  8120. "dist": {
  8121. "type": "zip",
  8122. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/892636f9279f953dc266dc088f900b03eecb4ffa",
  8123. "reference": "892636f9279f953dc266dc088f900b03eecb4ffa",
  8124. "shasum": ""
  8125. },
  8126. "require": {
  8127. "php": ">=7.2.5",
  8128. "psr/log": "^1|^2",
  8129. "symfony/deprecation-contracts": "^2.1|^3",
  8130. "symfony/error-handler": "^4.4|^5.0|^6.0",
  8131. "symfony/event-dispatcher": "^5.0|^6.0",
  8132. "symfony/http-foundation": "^5.4.21|^6.2.7",
  8133. "symfony/polyfill-ctype": "^1.8",
  8134. "symfony/polyfill-php73": "^1.9",
  8135. "symfony/polyfill-php80": "^1.16"
  8136. },
  8137. "conflict": {
  8138. "symfony/browser-kit": "<5.4",
  8139. "symfony/cache": "<5.0",
  8140. "symfony/config": "<5.0",
  8141. "symfony/console": "<4.4",
  8142. "symfony/dependency-injection": "<5.3",
  8143. "symfony/doctrine-bridge": "<5.0",
  8144. "symfony/form": "<5.0",
  8145. "symfony/http-client": "<5.0",
  8146. "symfony/mailer": "<5.0",
  8147. "symfony/messenger": "<5.0",
  8148. "symfony/translation": "<5.0",
  8149. "symfony/twig-bridge": "<5.0",
  8150. "symfony/validator": "<5.0",
  8151. "twig/twig": "<2.13"
  8152. },
  8153. "provide": {
  8154. "psr/log-implementation": "1.0|2.0"
  8155. },
  8156. "require-dev": {
  8157. "psr/cache": "^1.0|^2.0|^3.0",
  8158. "symfony/browser-kit": "^5.4|^6.0",
  8159. "symfony/config": "^5.0|^6.0",
  8160. "symfony/console": "^4.4|^5.0|^6.0",
  8161. "symfony/css-selector": "^4.4|^5.0|^6.0",
  8162. "symfony/dependency-injection": "^5.3|^6.0",
  8163. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  8164. "symfony/expression-language": "^4.4|^5.0|^6.0",
  8165. "symfony/finder": "^4.4|^5.0|^6.0",
  8166. "symfony/http-client-contracts": "^1.1|^2|^3",
  8167. "symfony/process": "^4.4|^5.0|^6.0",
  8168. "symfony/routing": "^4.4|^5.0|^6.0",
  8169. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  8170. "symfony/translation": "^4.4|^5.0|^6.0",
  8171. "symfony/translation-contracts": "^1.1|^2|^3",
  8172. "twig/twig": "^2.13|^3.0.4"
  8173. },
  8174. "suggest": {
  8175. "symfony/browser-kit": "",
  8176. "symfony/config": "",
  8177. "symfony/console": "",
  8178. "symfony/dependency-injection": ""
  8179. },
  8180. "type": "library",
  8181. "autoload": {
  8182. "psr-4": {
  8183. "Symfony\\Component\\HttpKernel\\": ""
  8184. },
  8185. "exclude-from-classmap": [
  8186. "/Tests/"
  8187. ]
  8188. },
  8189. "notification-url": "https://packagist.org/downloads/",
  8190. "license": [
  8191. "MIT"
  8192. ],
  8193. "authors": [
  8194. {
  8195. "name": "Fabien Potencier",
  8196. "email": "fabien@symfony.com"
  8197. },
  8198. {
  8199. "name": "Symfony Community",
  8200. "homepage": "https://symfony.com/contributors"
  8201. }
  8202. ],
  8203. "description": "Provides a structured process for converting a Request into a Response",
  8204. "homepage": "https://symfony.com",
  8205. "support": {
  8206. "source": "https://github.com/symfony/http-kernel/tree/v5.4.33"
  8207. },
  8208. "funding": [
  8209. {
  8210. "url": "https://symfony.com/sponsor",
  8211. "type": "custom"
  8212. },
  8213. {
  8214. "url": "https://github.com/fabpot",
  8215. "type": "github"
  8216. },
  8217. {
  8218. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8219. "type": "tidelift"
  8220. }
  8221. ],
  8222. "time": "2023-12-01T16:51:11+00:00"
  8223. },
  8224. {
  8225. "name": "symfony/mime",
  8226. "version": "v5.4.26",
  8227. "source": {
  8228. "type": "git",
  8229. "url": "https://github.com/symfony/mime.git",
  8230. "reference": "2ea06dfeee20000a319d8407cea1d47533d5a9d2"
  8231. },
  8232. "dist": {
  8233. "type": "zip",
  8234. "url": "https://api.github.com/repos/symfony/mime/zipball/2ea06dfeee20000a319d8407cea1d47533d5a9d2",
  8235. "reference": "2ea06dfeee20000a319d8407cea1d47533d5a9d2",
  8236. "shasum": ""
  8237. },
  8238. "require": {
  8239. "php": ">=7.2.5",
  8240. "symfony/deprecation-contracts": "^2.1|^3",
  8241. "symfony/polyfill-intl-idn": "^1.10",
  8242. "symfony/polyfill-mbstring": "^1.0",
  8243. "symfony/polyfill-php80": "^1.16"
  8244. },
  8245. "conflict": {
  8246. "egulias/email-validator": "~3.0.0",
  8247. "phpdocumentor/reflection-docblock": "<3.2.2",
  8248. "phpdocumentor/type-resolver": "<1.4.0",
  8249. "symfony/mailer": "<4.4",
  8250. "symfony/serializer": "<5.4.26|>=6,<6.2.13|>=6.3,<6.3.2"
  8251. },
  8252. "require-dev": {
  8253. "egulias/email-validator": "^2.1.10|^3.1|^4",
  8254. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  8255. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  8256. "symfony/property-access": "^4.4|^5.1|^6.0",
  8257. "symfony/property-info": "^4.4|^5.1|^6.0",
  8258. "symfony/serializer": "^5.4.26|~6.2.13|^6.3.2"
  8259. },
  8260. "type": "library",
  8261. "autoload": {
  8262. "psr-4": {
  8263. "Symfony\\Component\\Mime\\": ""
  8264. },
  8265. "exclude-from-classmap": [
  8266. "/Tests/"
  8267. ]
  8268. },
  8269. "notification-url": "https://packagist.org/downloads/",
  8270. "license": [
  8271. "MIT"
  8272. ],
  8273. "authors": [
  8274. {
  8275. "name": "Fabien Potencier",
  8276. "email": "fabien@symfony.com"
  8277. },
  8278. {
  8279. "name": "Symfony Community",
  8280. "homepage": "https://symfony.com/contributors"
  8281. }
  8282. ],
  8283. "description": "Allows manipulating MIME messages",
  8284. "homepage": "https://symfony.com",
  8285. "keywords": [
  8286. "mime",
  8287. "mime-type"
  8288. ],
  8289. "support": {
  8290. "source": "https://github.com/symfony/mime/tree/v5.4.26"
  8291. },
  8292. "funding": [
  8293. {
  8294. "url": "https://symfony.com/sponsor",
  8295. "type": "custom"
  8296. },
  8297. {
  8298. "url": "https://github.com/fabpot",
  8299. "type": "github"
  8300. },
  8301. {
  8302. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8303. "type": "tidelift"
  8304. }
  8305. ],
  8306. "time": "2023-07-27T06:29:31+00:00"
  8307. },
  8308. {
  8309. "name": "symfony/polyfill-ctype",
  8310. "version": "v1.28.0",
  8311. "source": {
  8312. "type": "git",
  8313. "url": "https://github.com/symfony/polyfill-ctype.git",
  8314. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb"
  8315. },
  8316. "dist": {
  8317. "type": "zip",
  8318. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
  8319. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
  8320. "shasum": ""
  8321. },
  8322. "require": {
  8323. "php": ">=7.1"
  8324. },
  8325. "provide": {
  8326. "ext-ctype": "*"
  8327. },
  8328. "suggest": {
  8329. "ext-ctype": "For best performance"
  8330. },
  8331. "type": "library",
  8332. "extra": {
  8333. "branch-alias": {
  8334. "dev-main": "1.28-dev"
  8335. },
  8336. "thanks": {
  8337. "name": "symfony/polyfill",
  8338. "url": "https://github.com/symfony/polyfill"
  8339. }
  8340. },
  8341. "autoload": {
  8342. "files": [
  8343. "bootstrap.php"
  8344. ],
  8345. "psr-4": {
  8346. "Symfony\\Polyfill\\Ctype\\": ""
  8347. }
  8348. },
  8349. "notification-url": "https://packagist.org/downloads/",
  8350. "license": [
  8351. "MIT"
  8352. ],
  8353. "authors": [
  8354. {
  8355. "name": "Gert de Pagter",
  8356. "email": "BackEndTea@gmail.com"
  8357. },
  8358. {
  8359. "name": "Symfony Community",
  8360. "homepage": "https://symfony.com/contributors"
  8361. }
  8362. ],
  8363. "description": "Symfony polyfill for ctype functions",
  8364. "homepage": "https://symfony.com",
  8365. "keywords": [
  8366. "compatibility",
  8367. "ctype",
  8368. "polyfill",
  8369. "portable"
  8370. ],
  8371. "support": {
  8372. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.28.0"
  8373. },
  8374. "funding": [
  8375. {
  8376. "url": "https://symfony.com/sponsor",
  8377. "type": "custom"
  8378. },
  8379. {
  8380. "url": "https://github.com/fabpot",
  8381. "type": "github"
  8382. },
  8383. {
  8384. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8385. "type": "tidelift"
  8386. }
  8387. ],
  8388. "time": "2023-01-26T09:26:14+00:00"
  8389. },
  8390. {
  8391. "name": "symfony/polyfill-iconv",
  8392. "version": "v1.28.0",
  8393. "source": {
  8394. "type": "git",
  8395. "url": "https://github.com/symfony/polyfill-iconv.git",
  8396. "reference": "6de50471469b8c9afc38164452ab2b6170ee71c1"
  8397. },
  8398. "dist": {
  8399. "type": "zip",
  8400. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/6de50471469b8c9afc38164452ab2b6170ee71c1",
  8401. "reference": "6de50471469b8c9afc38164452ab2b6170ee71c1",
  8402. "shasum": ""
  8403. },
  8404. "require": {
  8405. "php": ">=7.1"
  8406. },
  8407. "provide": {
  8408. "ext-iconv": "*"
  8409. },
  8410. "suggest": {
  8411. "ext-iconv": "For best performance"
  8412. },
  8413. "type": "library",
  8414. "extra": {
  8415. "branch-alias": {
  8416. "dev-main": "1.28-dev"
  8417. },
  8418. "thanks": {
  8419. "name": "symfony/polyfill",
  8420. "url": "https://github.com/symfony/polyfill"
  8421. }
  8422. },
  8423. "autoload": {
  8424. "files": [
  8425. "bootstrap.php"
  8426. ],
  8427. "psr-4": {
  8428. "Symfony\\Polyfill\\Iconv\\": ""
  8429. }
  8430. },
  8431. "notification-url": "https://packagist.org/downloads/",
  8432. "license": [
  8433. "MIT"
  8434. ],
  8435. "authors": [
  8436. {
  8437. "name": "Nicolas Grekas",
  8438. "email": "p@tchwork.com"
  8439. },
  8440. {
  8441. "name": "Symfony Community",
  8442. "homepage": "https://symfony.com/contributors"
  8443. }
  8444. ],
  8445. "description": "Symfony polyfill for the Iconv extension",
  8446. "homepage": "https://symfony.com",
  8447. "keywords": [
  8448. "compatibility",
  8449. "iconv",
  8450. "polyfill",
  8451. "portable",
  8452. "shim"
  8453. ],
  8454. "support": {
  8455. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.28.0"
  8456. },
  8457. "funding": [
  8458. {
  8459. "url": "https://symfony.com/sponsor",
  8460. "type": "custom"
  8461. },
  8462. {
  8463. "url": "https://github.com/fabpot",
  8464. "type": "github"
  8465. },
  8466. {
  8467. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8468. "type": "tidelift"
  8469. }
  8470. ],
  8471. "time": "2023-01-26T09:26:14+00:00"
  8472. },
  8473. {
  8474. "name": "symfony/polyfill-intl-grapheme",
  8475. "version": "v1.28.0",
  8476. "source": {
  8477. "type": "git",
  8478. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  8479. "reference": "875e90aeea2777b6f135677f618529449334a612"
  8480. },
  8481. "dist": {
  8482. "type": "zip",
  8483. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/875e90aeea2777b6f135677f618529449334a612",
  8484. "reference": "875e90aeea2777b6f135677f618529449334a612",
  8485. "shasum": ""
  8486. },
  8487. "require": {
  8488. "php": ">=7.1"
  8489. },
  8490. "suggest": {
  8491. "ext-intl": "For best performance"
  8492. },
  8493. "type": "library",
  8494. "extra": {
  8495. "branch-alias": {
  8496. "dev-main": "1.28-dev"
  8497. },
  8498. "thanks": {
  8499. "name": "symfony/polyfill",
  8500. "url": "https://github.com/symfony/polyfill"
  8501. }
  8502. },
  8503. "autoload": {
  8504. "files": [
  8505. "bootstrap.php"
  8506. ],
  8507. "psr-4": {
  8508. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  8509. }
  8510. },
  8511. "notification-url": "https://packagist.org/downloads/",
  8512. "license": [
  8513. "MIT"
  8514. ],
  8515. "authors": [
  8516. {
  8517. "name": "Nicolas Grekas",
  8518. "email": "p@tchwork.com"
  8519. },
  8520. {
  8521. "name": "Symfony Community",
  8522. "homepage": "https://symfony.com/contributors"
  8523. }
  8524. ],
  8525. "description": "Symfony polyfill for intl's grapheme_* functions",
  8526. "homepage": "https://symfony.com",
  8527. "keywords": [
  8528. "compatibility",
  8529. "grapheme",
  8530. "intl",
  8531. "polyfill",
  8532. "portable",
  8533. "shim"
  8534. ],
  8535. "support": {
  8536. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.28.0"
  8537. },
  8538. "funding": [
  8539. {
  8540. "url": "https://symfony.com/sponsor",
  8541. "type": "custom"
  8542. },
  8543. {
  8544. "url": "https://github.com/fabpot",
  8545. "type": "github"
  8546. },
  8547. {
  8548. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8549. "type": "tidelift"
  8550. }
  8551. ],
  8552. "time": "2023-01-26T09:26:14+00:00"
  8553. },
  8554. {
  8555. "name": "symfony/polyfill-intl-idn",
  8556. "version": "v1.28.0",
  8557. "source": {
  8558. "type": "git",
  8559. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  8560. "reference": "ecaafce9f77234a6a449d29e49267ba10499116d"
  8561. },
  8562. "dist": {
  8563. "type": "zip",
  8564. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/ecaafce9f77234a6a449d29e49267ba10499116d",
  8565. "reference": "ecaafce9f77234a6a449d29e49267ba10499116d",
  8566. "shasum": ""
  8567. },
  8568. "require": {
  8569. "php": ">=7.1",
  8570. "symfony/polyfill-intl-normalizer": "^1.10",
  8571. "symfony/polyfill-php72": "^1.10"
  8572. },
  8573. "suggest": {
  8574. "ext-intl": "For best performance"
  8575. },
  8576. "type": "library",
  8577. "extra": {
  8578. "branch-alias": {
  8579. "dev-main": "1.28-dev"
  8580. },
  8581. "thanks": {
  8582. "name": "symfony/polyfill",
  8583. "url": "https://github.com/symfony/polyfill"
  8584. }
  8585. },
  8586. "autoload": {
  8587. "files": [
  8588. "bootstrap.php"
  8589. ],
  8590. "psr-4": {
  8591. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  8592. }
  8593. },
  8594. "notification-url": "https://packagist.org/downloads/",
  8595. "license": [
  8596. "MIT"
  8597. ],
  8598. "authors": [
  8599. {
  8600. "name": "Laurent Bassin",
  8601. "email": "laurent@bassin.info"
  8602. },
  8603. {
  8604. "name": "Trevor Rowbotham",
  8605. "email": "trevor.rowbotham@pm.me"
  8606. },
  8607. {
  8608. "name": "Symfony Community",
  8609. "homepage": "https://symfony.com/contributors"
  8610. }
  8611. ],
  8612. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  8613. "homepage": "https://symfony.com",
  8614. "keywords": [
  8615. "compatibility",
  8616. "idn",
  8617. "intl",
  8618. "polyfill",
  8619. "portable",
  8620. "shim"
  8621. ],
  8622. "support": {
  8623. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.28.0"
  8624. },
  8625. "funding": [
  8626. {
  8627. "url": "https://symfony.com/sponsor",
  8628. "type": "custom"
  8629. },
  8630. {
  8631. "url": "https://github.com/fabpot",
  8632. "type": "github"
  8633. },
  8634. {
  8635. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8636. "type": "tidelift"
  8637. }
  8638. ],
  8639. "time": "2023-01-26T09:30:37+00:00"
  8640. },
  8641. {
  8642. "name": "symfony/polyfill-intl-normalizer",
  8643. "version": "v1.28.0",
  8644. "source": {
  8645. "type": "git",
  8646. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  8647. "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92"
  8648. },
  8649. "dist": {
  8650. "type": "zip",
  8651. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
  8652. "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
  8653. "shasum": ""
  8654. },
  8655. "require": {
  8656. "php": ">=7.1"
  8657. },
  8658. "suggest": {
  8659. "ext-intl": "For best performance"
  8660. },
  8661. "type": "library",
  8662. "extra": {
  8663. "branch-alias": {
  8664. "dev-main": "1.28-dev"
  8665. },
  8666. "thanks": {
  8667. "name": "symfony/polyfill",
  8668. "url": "https://github.com/symfony/polyfill"
  8669. }
  8670. },
  8671. "autoload": {
  8672. "files": [
  8673. "bootstrap.php"
  8674. ],
  8675. "psr-4": {
  8676. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  8677. },
  8678. "classmap": [
  8679. "Resources/stubs"
  8680. ]
  8681. },
  8682. "notification-url": "https://packagist.org/downloads/",
  8683. "license": [
  8684. "MIT"
  8685. ],
  8686. "authors": [
  8687. {
  8688. "name": "Nicolas Grekas",
  8689. "email": "p@tchwork.com"
  8690. },
  8691. {
  8692. "name": "Symfony Community",
  8693. "homepage": "https://symfony.com/contributors"
  8694. }
  8695. ],
  8696. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  8697. "homepage": "https://symfony.com",
  8698. "keywords": [
  8699. "compatibility",
  8700. "intl",
  8701. "normalizer",
  8702. "polyfill",
  8703. "portable",
  8704. "shim"
  8705. ],
  8706. "support": {
  8707. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.28.0"
  8708. },
  8709. "funding": [
  8710. {
  8711. "url": "https://symfony.com/sponsor",
  8712. "type": "custom"
  8713. },
  8714. {
  8715. "url": "https://github.com/fabpot",
  8716. "type": "github"
  8717. },
  8718. {
  8719. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8720. "type": "tidelift"
  8721. }
  8722. ],
  8723. "time": "2023-01-26T09:26:14+00:00"
  8724. },
  8725. {
  8726. "name": "symfony/polyfill-mbstring",
  8727. "version": "v1.28.0",
  8728. "source": {
  8729. "type": "git",
  8730. "url": "https://github.com/symfony/polyfill-mbstring.git",
  8731. "reference": "42292d99c55abe617799667f454222c54c60e229"
  8732. },
  8733. "dist": {
  8734. "type": "zip",
  8735. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/42292d99c55abe617799667f454222c54c60e229",
  8736. "reference": "42292d99c55abe617799667f454222c54c60e229",
  8737. "shasum": ""
  8738. },
  8739. "require": {
  8740. "php": ">=7.1"
  8741. },
  8742. "provide": {
  8743. "ext-mbstring": "*"
  8744. },
  8745. "suggest": {
  8746. "ext-mbstring": "For best performance"
  8747. },
  8748. "type": "library",
  8749. "extra": {
  8750. "branch-alias": {
  8751. "dev-main": "1.28-dev"
  8752. },
  8753. "thanks": {
  8754. "name": "symfony/polyfill",
  8755. "url": "https://github.com/symfony/polyfill"
  8756. }
  8757. },
  8758. "autoload": {
  8759. "files": [
  8760. "bootstrap.php"
  8761. ],
  8762. "psr-4": {
  8763. "Symfony\\Polyfill\\Mbstring\\": ""
  8764. }
  8765. },
  8766. "notification-url": "https://packagist.org/downloads/",
  8767. "license": [
  8768. "MIT"
  8769. ],
  8770. "authors": [
  8771. {
  8772. "name": "Nicolas Grekas",
  8773. "email": "p@tchwork.com"
  8774. },
  8775. {
  8776. "name": "Symfony Community",
  8777. "homepage": "https://symfony.com/contributors"
  8778. }
  8779. ],
  8780. "description": "Symfony polyfill for the Mbstring extension",
  8781. "homepage": "https://symfony.com",
  8782. "keywords": [
  8783. "compatibility",
  8784. "mbstring",
  8785. "polyfill",
  8786. "portable",
  8787. "shim"
  8788. ],
  8789. "support": {
  8790. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.28.0"
  8791. },
  8792. "funding": [
  8793. {
  8794. "url": "https://symfony.com/sponsor",
  8795. "type": "custom"
  8796. },
  8797. {
  8798. "url": "https://github.com/fabpot",
  8799. "type": "github"
  8800. },
  8801. {
  8802. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8803. "type": "tidelift"
  8804. }
  8805. ],
  8806. "time": "2023-07-28T09:04:16+00:00"
  8807. },
  8808. {
  8809. "name": "symfony/polyfill-php72",
  8810. "version": "v1.28.0",
  8811. "source": {
  8812. "type": "git",
  8813. "url": "https://github.com/symfony/polyfill-php72.git",
  8814. "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179"
  8815. },
  8816. "dist": {
  8817. "type": "zip",
  8818. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/70f4aebd92afca2f865444d30a4d2151c13c3179",
  8819. "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179",
  8820. "shasum": ""
  8821. },
  8822. "require": {
  8823. "php": ">=7.1"
  8824. },
  8825. "type": "library",
  8826. "extra": {
  8827. "branch-alias": {
  8828. "dev-main": "1.28-dev"
  8829. },
  8830. "thanks": {
  8831. "name": "symfony/polyfill",
  8832. "url": "https://github.com/symfony/polyfill"
  8833. }
  8834. },
  8835. "autoload": {
  8836. "files": [
  8837. "bootstrap.php"
  8838. ],
  8839. "psr-4": {
  8840. "Symfony\\Polyfill\\Php72\\": ""
  8841. }
  8842. },
  8843. "notification-url": "https://packagist.org/downloads/",
  8844. "license": [
  8845. "MIT"
  8846. ],
  8847. "authors": [
  8848. {
  8849. "name": "Nicolas Grekas",
  8850. "email": "p@tchwork.com"
  8851. },
  8852. {
  8853. "name": "Symfony Community",
  8854. "homepage": "https://symfony.com/contributors"
  8855. }
  8856. ],
  8857. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  8858. "homepage": "https://symfony.com",
  8859. "keywords": [
  8860. "compatibility",
  8861. "polyfill",
  8862. "portable",
  8863. "shim"
  8864. ],
  8865. "support": {
  8866. "source": "https://github.com/symfony/polyfill-php72/tree/v1.28.0"
  8867. },
  8868. "funding": [
  8869. {
  8870. "url": "https://symfony.com/sponsor",
  8871. "type": "custom"
  8872. },
  8873. {
  8874. "url": "https://github.com/fabpot",
  8875. "type": "github"
  8876. },
  8877. {
  8878. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8879. "type": "tidelift"
  8880. }
  8881. ],
  8882. "time": "2023-01-26T09:26:14+00:00"
  8883. },
  8884. {
  8885. "name": "symfony/polyfill-php73",
  8886. "version": "v1.28.0",
  8887. "source": {
  8888. "type": "git",
  8889. "url": "https://github.com/symfony/polyfill-php73.git",
  8890. "reference": "fe2f306d1d9d346a7fee353d0d5012e401e984b5"
  8891. },
  8892. "dist": {
  8893. "type": "zip",
  8894. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fe2f306d1d9d346a7fee353d0d5012e401e984b5",
  8895. "reference": "fe2f306d1d9d346a7fee353d0d5012e401e984b5",
  8896. "shasum": ""
  8897. },
  8898. "require": {
  8899. "php": ">=7.1"
  8900. },
  8901. "type": "library",
  8902. "extra": {
  8903. "branch-alias": {
  8904. "dev-main": "1.28-dev"
  8905. },
  8906. "thanks": {
  8907. "name": "symfony/polyfill",
  8908. "url": "https://github.com/symfony/polyfill"
  8909. }
  8910. },
  8911. "autoload": {
  8912. "files": [
  8913. "bootstrap.php"
  8914. ],
  8915. "psr-4": {
  8916. "Symfony\\Polyfill\\Php73\\": ""
  8917. },
  8918. "classmap": [
  8919. "Resources/stubs"
  8920. ]
  8921. },
  8922. "notification-url": "https://packagist.org/downloads/",
  8923. "license": [
  8924. "MIT"
  8925. ],
  8926. "authors": [
  8927. {
  8928. "name": "Nicolas Grekas",
  8929. "email": "p@tchwork.com"
  8930. },
  8931. {
  8932. "name": "Symfony Community",
  8933. "homepage": "https://symfony.com/contributors"
  8934. }
  8935. ],
  8936. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  8937. "homepage": "https://symfony.com",
  8938. "keywords": [
  8939. "compatibility",
  8940. "polyfill",
  8941. "portable",
  8942. "shim"
  8943. ],
  8944. "support": {
  8945. "source": "https://github.com/symfony/polyfill-php73/tree/v1.28.0"
  8946. },
  8947. "funding": [
  8948. {
  8949. "url": "https://symfony.com/sponsor",
  8950. "type": "custom"
  8951. },
  8952. {
  8953. "url": "https://github.com/fabpot",
  8954. "type": "github"
  8955. },
  8956. {
  8957. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8958. "type": "tidelift"
  8959. }
  8960. ],
  8961. "time": "2023-01-26T09:26:14+00:00"
  8962. },
  8963. {
  8964. "name": "symfony/polyfill-php80",
  8965. "version": "v1.28.0",
  8966. "source": {
  8967. "type": "git",
  8968. "url": "https://github.com/symfony/polyfill-php80.git",
  8969. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5"
  8970. },
  8971. "dist": {
  8972. "type": "zip",
  8973. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  8974. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  8975. "shasum": ""
  8976. },
  8977. "require": {
  8978. "php": ">=7.1"
  8979. },
  8980. "type": "library",
  8981. "extra": {
  8982. "branch-alias": {
  8983. "dev-main": "1.28-dev"
  8984. },
  8985. "thanks": {
  8986. "name": "symfony/polyfill",
  8987. "url": "https://github.com/symfony/polyfill"
  8988. }
  8989. },
  8990. "autoload": {
  8991. "files": [
  8992. "bootstrap.php"
  8993. ],
  8994. "psr-4": {
  8995. "Symfony\\Polyfill\\Php80\\": ""
  8996. },
  8997. "classmap": [
  8998. "Resources/stubs"
  8999. ]
  9000. },
  9001. "notification-url": "https://packagist.org/downloads/",
  9002. "license": [
  9003. "MIT"
  9004. ],
  9005. "authors": [
  9006. {
  9007. "name": "Ion Bazan",
  9008. "email": "ion.bazan@gmail.com"
  9009. },
  9010. {
  9011. "name": "Nicolas Grekas",
  9012. "email": "p@tchwork.com"
  9013. },
  9014. {
  9015. "name": "Symfony Community",
  9016. "homepage": "https://symfony.com/contributors"
  9017. }
  9018. ],
  9019. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  9020. "homepage": "https://symfony.com",
  9021. "keywords": [
  9022. "compatibility",
  9023. "polyfill",
  9024. "portable",
  9025. "shim"
  9026. ],
  9027. "support": {
  9028. "source": "https://github.com/symfony/polyfill-php80/tree/v1.28.0"
  9029. },
  9030. "funding": [
  9031. {
  9032. "url": "https://symfony.com/sponsor",
  9033. "type": "custom"
  9034. },
  9035. {
  9036. "url": "https://github.com/fabpot",
  9037. "type": "github"
  9038. },
  9039. {
  9040. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9041. "type": "tidelift"
  9042. }
  9043. ],
  9044. "time": "2023-01-26T09:26:14+00:00"
  9045. },
  9046. {
  9047. "name": "symfony/polyfill-php81",
  9048. "version": "v1.28.0",
  9049. "source": {
  9050. "type": "git",
  9051. "url": "https://github.com/symfony/polyfill-php81.git",
  9052. "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b"
  9053. },
  9054. "dist": {
  9055. "type": "zip",
  9056. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/7581cd600fa9fd681b797d00b02f068e2f13263b",
  9057. "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b",
  9058. "shasum": ""
  9059. },
  9060. "require": {
  9061. "php": ">=7.1"
  9062. },
  9063. "type": "library",
  9064. "extra": {
  9065. "branch-alias": {
  9066. "dev-main": "1.28-dev"
  9067. },
  9068. "thanks": {
  9069. "name": "symfony/polyfill",
  9070. "url": "https://github.com/symfony/polyfill"
  9071. }
  9072. },
  9073. "autoload": {
  9074. "files": [
  9075. "bootstrap.php"
  9076. ],
  9077. "psr-4": {
  9078. "Symfony\\Polyfill\\Php81\\": ""
  9079. },
  9080. "classmap": [
  9081. "Resources/stubs"
  9082. ]
  9083. },
  9084. "notification-url": "https://packagist.org/downloads/",
  9085. "license": [
  9086. "MIT"
  9087. ],
  9088. "authors": [
  9089. {
  9090. "name": "Nicolas Grekas",
  9091. "email": "p@tchwork.com"
  9092. },
  9093. {
  9094. "name": "Symfony Community",
  9095. "homepage": "https://symfony.com/contributors"
  9096. }
  9097. ],
  9098. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  9099. "homepage": "https://symfony.com",
  9100. "keywords": [
  9101. "compatibility",
  9102. "polyfill",
  9103. "portable",
  9104. "shim"
  9105. ],
  9106. "support": {
  9107. "source": "https://github.com/symfony/polyfill-php81/tree/v1.28.0"
  9108. },
  9109. "funding": [
  9110. {
  9111. "url": "https://symfony.com/sponsor",
  9112. "type": "custom"
  9113. },
  9114. {
  9115. "url": "https://github.com/fabpot",
  9116. "type": "github"
  9117. },
  9118. {
  9119. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9120. "type": "tidelift"
  9121. }
  9122. ],
  9123. "time": "2023-01-26T09:26:14+00:00"
  9124. },
  9125. {
  9126. "name": "symfony/process",
  9127. "version": "v5.4.28",
  9128. "source": {
  9129. "type": "git",
  9130. "url": "https://github.com/symfony/process.git",
  9131. "reference": "45261e1fccad1b5447a8d7a8e67aa7b4a9798b7b"
  9132. },
  9133. "dist": {
  9134. "type": "zip",
  9135. "url": "https://api.github.com/repos/symfony/process/zipball/45261e1fccad1b5447a8d7a8e67aa7b4a9798b7b",
  9136. "reference": "45261e1fccad1b5447a8d7a8e67aa7b4a9798b7b",
  9137. "shasum": ""
  9138. },
  9139. "require": {
  9140. "php": ">=7.2.5",
  9141. "symfony/polyfill-php80": "^1.16"
  9142. },
  9143. "type": "library",
  9144. "autoload": {
  9145. "psr-4": {
  9146. "Symfony\\Component\\Process\\": ""
  9147. },
  9148. "exclude-from-classmap": [
  9149. "/Tests/"
  9150. ]
  9151. },
  9152. "notification-url": "https://packagist.org/downloads/",
  9153. "license": [
  9154. "MIT"
  9155. ],
  9156. "authors": [
  9157. {
  9158. "name": "Fabien Potencier",
  9159. "email": "fabien@symfony.com"
  9160. },
  9161. {
  9162. "name": "Symfony Community",
  9163. "homepage": "https://symfony.com/contributors"
  9164. }
  9165. ],
  9166. "description": "Executes commands in sub-processes",
  9167. "homepage": "https://symfony.com",
  9168. "support": {
  9169. "source": "https://github.com/symfony/process/tree/v5.4.28"
  9170. },
  9171. "funding": [
  9172. {
  9173. "url": "https://symfony.com/sponsor",
  9174. "type": "custom"
  9175. },
  9176. {
  9177. "url": "https://github.com/fabpot",
  9178. "type": "github"
  9179. },
  9180. {
  9181. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9182. "type": "tidelift"
  9183. }
  9184. ],
  9185. "time": "2023-08-07T10:36:04+00:00"
  9186. },
  9187. {
  9188. "name": "symfony/routing",
  9189. "version": "v5.4.33",
  9190. "source": {
  9191. "type": "git",
  9192. "url": "https://github.com/symfony/routing.git",
  9193. "reference": "5b5b86670f947db92ab54cdcff585e76064d0b04"
  9194. },
  9195. "dist": {
  9196. "type": "zip",
  9197. "url": "https://api.github.com/repos/symfony/routing/zipball/5b5b86670f947db92ab54cdcff585e76064d0b04",
  9198. "reference": "5b5b86670f947db92ab54cdcff585e76064d0b04",
  9199. "shasum": ""
  9200. },
  9201. "require": {
  9202. "php": ">=7.2.5",
  9203. "symfony/deprecation-contracts": "^2.1|^3",
  9204. "symfony/polyfill-php80": "^1.16"
  9205. },
  9206. "conflict": {
  9207. "doctrine/annotations": "<1.12",
  9208. "symfony/config": "<5.3",
  9209. "symfony/dependency-injection": "<4.4",
  9210. "symfony/yaml": "<4.4"
  9211. },
  9212. "require-dev": {
  9213. "doctrine/annotations": "^1.12|^2",
  9214. "psr/log": "^1|^2|^3",
  9215. "symfony/config": "^5.3|^6.0",
  9216. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  9217. "symfony/expression-language": "^4.4|^5.0|^6.0",
  9218. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  9219. "symfony/yaml": "^4.4|^5.0|^6.0"
  9220. },
  9221. "suggest": {
  9222. "symfony/config": "For using the all-in-one router or any loader",
  9223. "symfony/expression-language": "For using expression matching",
  9224. "symfony/http-foundation": "For using a Symfony Request object",
  9225. "symfony/yaml": "For using the YAML loader"
  9226. },
  9227. "type": "library",
  9228. "autoload": {
  9229. "psr-4": {
  9230. "Symfony\\Component\\Routing\\": ""
  9231. },
  9232. "exclude-from-classmap": [
  9233. "/Tests/"
  9234. ]
  9235. },
  9236. "notification-url": "https://packagist.org/downloads/",
  9237. "license": [
  9238. "MIT"
  9239. ],
  9240. "authors": [
  9241. {
  9242. "name": "Fabien Potencier",
  9243. "email": "fabien@symfony.com"
  9244. },
  9245. {
  9246. "name": "Symfony Community",
  9247. "homepage": "https://symfony.com/contributors"
  9248. }
  9249. ],
  9250. "description": "Maps an HTTP request to a set of configuration variables",
  9251. "homepage": "https://symfony.com",
  9252. "keywords": [
  9253. "router",
  9254. "routing",
  9255. "uri",
  9256. "url"
  9257. ],
  9258. "support": {
  9259. "source": "https://github.com/symfony/routing/tree/v5.4.33"
  9260. },
  9261. "funding": [
  9262. {
  9263. "url": "https://symfony.com/sponsor",
  9264. "type": "custom"
  9265. },
  9266. {
  9267. "url": "https://github.com/fabpot",
  9268. "type": "github"
  9269. },
  9270. {
  9271. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9272. "type": "tidelift"
  9273. }
  9274. ],
  9275. "time": "2023-12-01T09:28:00+00:00"
  9276. },
  9277. {
  9278. "name": "symfony/service-contracts",
  9279. "version": "v2.5.2",
  9280. "source": {
  9281. "type": "git",
  9282. "url": "https://github.com/symfony/service-contracts.git",
  9283. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c"
  9284. },
  9285. "dist": {
  9286. "type": "zip",
  9287. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  9288. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  9289. "shasum": ""
  9290. },
  9291. "require": {
  9292. "php": ">=7.2.5",
  9293. "psr/container": "^1.1",
  9294. "symfony/deprecation-contracts": "^2.1|^3"
  9295. },
  9296. "conflict": {
  9297. "ext-psr": "<1.1|>=2"
  9298. },
  9299. "suggest": {
  9300. "symfony/service-implementation": ""
  9301. },
  9302. "type": "library",
  9303. "extra": {
  9304. "branch-alias": {
  9305. "dev-main": "2.5-dev"
  9306. },
  9307. "thanks": {
  9308. "name": "symfony/contracts",
  9309. "url": "https://github.com/symfony/contracts"
  9310. }
  9311. },
  9312. "autoload": {
  9313. "psr-4": {
  9314. "Symfony\\Contracts\\Service\\": ""
  9315. }
  9316. },
  9317. "notification-url": "https://packagist.org/downloads/",
  9318. "license": [
  9319. "MIT"
  9320. ],
  9321. "authors": [
  9322. {
  9323. "name": "Nicolas Grekas",
  9324. "email": "p@tchwork.com"
  9325. },
  9326. {
  9327. "name": "Symfony Community",
  9328. "homepage": "https://symfony.com/contributors"
  9329. }
  9330. ],
  9331. "description": "Generic abstractions related to writing services",
  9332. "homepage": "https://symfony.com",
  9333. "keywords": [
  9334. "abstractions",
  9335. "contracts",
  9336. "decoupling",
  9337. "interfaces",
  9338. "interoperability",
  9339. "standards"
  9340. ],
  9341. "support": {
  9342. "source": "https://github.com/symfony/service-contracts/tree/v2.5.2"
  9343. },
  9344. "funding": [
  9345. {
  9346. "url": "https://symfony.com/sponsor",
  9347. "type": "custom"
  9348. },
  9349. {
  9350. "url": "https://github.com/fabpot",
  9351. "type": "github"
  9352. },
  9353. {
  9354. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9355. "type": "tidelift"
  9356. }
  9357. ],
  9358. "time": "2022-05-30T19:17:29+00:00"
  9359. },
  9360. {
  9361. "name": "symfony/string",
  9362. "version": "v6.0.19",
  9363. "source": {
  9364. "type": "git",
  9365. "url": "https://github.com/symfony/string.git",
  9366. "reference": "d9e72497367c23e08bf94176d2be45b00a9d232a"
  9367. },
  9368. "dist": {
  9369. "type": "zip",
  9370. "url": "https://api.github.com/repos/symfony/string/zipball/d9e72497367c23e08bf94176d2be45b00a9d232a",
  9371. "reference": "d9e72497367c23e08bf94176d2be45b00a9d232a",
  9372. "shasum": ""
  9373. },
  9374. "require": {
  9375. "php": ">=8.0.2",
  9376. "symfony/polyfill-ctype": "~1.8",
  9377. "symfony/polyfill-intl-grapheme": "~1.0",
  9378. "symfony/polyfill-intl-normalizer": "~1.0",
  9379. "symfony/polyfill-mbstring": "~1.0"
  9380. },
  9381. "conflict": {
  9382. "symfony/translation-contracts": "<2.0"
  9383. },
  9384. "require-dev": {
  9385. "symfony/error-handler": "^5.4|^6.0",
  9386. "symfony/http-client": "^5.4|^6.0",
  9387. "symfony/translation-contracts": "^2.0|^3.0",
  9388. "symfony/var-exporter": "^5.4|^6.0"
  9389. },
  9390. "type": "library",
  9391. "autoload": {
  9392. "files": [
  9393. "Resources/functions.php"
  9394. ],
  9395. "psr-4": {
  9396. "Symfony\\Component\\String\\": ""
  9397. },
  9398. "exclude-from-classmap": [
  9399. "/Tests/"
  9400. ]
  9401. },
  9402. "notification-url": "https://packagist.org/downloads/",
  9403. "license": [
  9404. "MIT"
  9405. ],
  9406. "authors": [
  9407. {
  9408. "name": "Nicolas Grekas",
  9409. "email": "p@tchwork.com"
  9410. },
  9411. {
  9412. "name": "Symfony Community",
  9413. "homepage": "https://symfony.com/contributors"
  9414. }
  9415. ],
  9416. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  9417. "homepage": "https://symfony.com",
  9418. "keywords": [
  9419. "grapheme",
  9420. "i18n",
  9421. "string",
  9422. "unicode",
  9423. "utf-8",
  9424. "utf8"
  9425. ],
  9426. "support": {
  9427. "source": "https://github.com/symfony/string/tree/v6.0.19"
  9428. },
  9429. "funding": [
  9430. {
  9431. "url": "https://symfony.com/sponsor",
  9432. "type": "custom"
  9433. },
  9434. {
  9435. "url": "https://github.com/fabpot",
  9436. "type": "github"
  9437. },
  9438. {
  9439. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9440. "type": "tidelift"
  9441. }
  9442. ],
  9443. "time": "2023-01-01T08:36:10+00:00"
  9444. },
  9445. {
  9446. "name": "symfony/translation",
  9447. "version": "v6.0.19",
  9448. "source": {
  9449. "type": "git",
  9450. "url": "https://github.com/symfony/translation.git",
  9451. "reference": "9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f"
  9452. },
  9453. "dist": {
  9454. "type": "zip",
  9455. "url": "https://api.github.com/repos/symfony/translation/zipball/9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f",
  9456. "reference": "9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f",
  9457. "shasum": ""
  9458. },
  9459. "require": {
  9460. "php": ">=8.0.2",
  9461. "symfony/polyfill-mbstring": "~1.0",
  9462. "symfony/translation-contracts": "^2.3|^3.0"
  9463. },
  9464. "conflict": {
  9465. "symfony/config": "<5.4",
  9466. "symfony/console": "<5.4",
  9467. "symfony/dependency-injection": "<5.4",
  9468. "symfony/http-kernel": "<5.4",
  9469. "symfony/twig-bundle": "<5.4",
  9470. "symfony/yaml": "<5.4"
  9471. },
  9472. "provide": {
  9473. "symfony/translation-implementation": "2.3|3.0"
  9474. },
  9475. "require-dev": {
  9476. "psr/log": "^1|^2|^3",
  9477. "symfony/config": "^5.4|^6.0",
  9478. "symfony/console": "^5.4|^6.0",
  9479. "symfony/dependency-injection": "^5.4|^6.0",
  9480. "symfony/finder": "^5.4|^6.0",
  9481. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  9482. "symfony/http-kernel": "^5.4|^6.0",
  9483. "symfony/intl": "^5.4|^6.0",
  9484. "symfony/polyfill-intl-icu": "^1.21",
  9485. "symfony/service-contracts": "^1.1.2|^2|^3",
  9486. "symfony/yaml": "^5.4|^6.0"
  9487. },
  9488. "suggest": {
  9489. "psr/log-implementation": "To use logging capability in translator",
  9490. "symfony/config": "",
  9491. "symfony/yaml": ""
  9492. },
  9493. "type": "library",
  9494. "autoload": {
  9495. "files": [
  9496. "Resources/functions.php"
  9497. ],
  9498. "psr-4": {
  9499. "Symfony\\Component\\Translation\\": ""
  9500. },
  9501. "exclude-from-classmap": [
  9502. "/Tests/"
  9503. ]
  9504. },
  9505. "notification-url": "https://packagist.org/downloads/",
  9506. "license": [
  9507. "MIT"
  9508. ],
  9509. "authors": [
  9510. {
  9511. "name": "Fabien Potencier",
  9512. "email": "fabien@symfony.com"
  9513. },
  9514. {
  9515. "name": "Symfony Community",
  9516. "homepage": "https://symfony.com/contributors"
  9517. }
  9518. ],
  9519. "description": "Provides tools to internationalize your application",
  9520. "homepage": "https://symfony.com",
  9521. "support": {
  9522. "source": "https://github.com/symfony/translation/tree/v6.0.19"
  9523. },
  9524. "funding": [
  9525. {
  9526. "url": "https://symfony.com/sponsor",
  9527. "type": "custom"
  9528. },
  9529. {
  9530. "url": "https://github.com/fabpot",
  9531. "type": "github"
  9532. },
  9533. {
  9534. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9535. "type": "tidelift"
  9536. }
  9537. ],
  9538. "time": "2023-01-01T08:36:10+00:00"
  9539. },
  9540. {
  9541. "name": "symfony/translation-contracts",
  9542. "version": "v3.0.2",
  9543. "source": {
  9544. "type": "git",
  9545. "url": "https://github.com/symfony/translation-contracts.git",
  9546. "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282"
  9547. },
  9548. "dist": {
  9549. "type": "zip",
  9550. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/acbfbb274e730e5a0236f619b6168d9dedb3e282",
  9551. "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282",
  9552. "shasum": ""
  9553. },
  9554. "require": {
  9555. "php": ">=8.0.2"
  9556. },
  9557. "suggest": {
  9558. "symfony/translation-implementation": ""
  9559. },
  9560. "type": "library",
  9561. "extra": {
  9562. "branch-alias": {
  9563. "dev-main": "3.0-dev"
  9564. },
  9565. "thanks": {
  9566. "name": "symfony/contracts",
  9567. "url": "https://github.com/symfony/contracts"
  9568. }
  9569. },
  9570. "autoload": {
  9571. "psr-4": {
  9572. "Symfony\\Contracts\\Translation\\": ""
  9573. }
  9574. },
  9575. "notification-url": "https://packagist.org/downloads/",
  9576. "license": [
  9577. "MIT"
  9578. ],
  9579. "authors": [
  9580. {
  9581. "name": "Nicolas Grekas",
  9582. "email": "p@tchwork.com"
  9583. },
  9584. {
  9585. "name": "Symfony Community",
  9586. "homepage": "https://symfony.com/contributors"
  9587. }
  9588. ],
  9589. "description": "Generic abstractions related to translation",
  9590. "homepage": "https://symfony.com",
  9591. "keywords": [
  9592. "abstractions",
  9593. "contracts",
  9594. "decoupling",
  9595. "interfaces",
  9596. "interoperability",
  9597. "standards"
  9598. ],
  9599. "support": {
  9600. "source": "https://github.com/symfony/translation-contracts/tree/v3.0.2"
  9601. },
  9602. "funding": [
  9603. {
  9604. "url": "https://symfony.com/sponsor",
  9605. "type": "custom"
  9606. },
  9607. {
  9608. "url": "https://github.com/fabpot",
  9609. "type": "github"
  9610. },
  9611. {
  9612. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9613. "type": "tidelift"
  9614. }
  9615. ],
  9616. "time": "2022-06-27T17:10:44+00:00"
  9617. },
  9618. {
  9619. "name": "symfony/var-dumper",
  9620. "version": "v5.4.29",
  9621. "source": {
  9622. "type": "git",
  9623. "url": "https://github.com/symfony/var-dumper.git",
  9624. "reference": "6172e4ae3534d25ee9e07eb487c20be7760fcc65"
  9625. },
  9626. "dist": {
  9627. "type": "zip",
  9628. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/6172e4ae3534d25ee9e07eb487c20be7760fcc65",
  9629. "reference": "6172e4ae3534d25ee9e07eb487c20be7760fcc65",
  9630. "shasum": ""
  9631. },
  9632. "require": {
  9633. "php": ">=7.2.5",
  9634. "symfony/polyfill-mbstring": "~1.0",
  9635. "symfony/polyfill-php80": "^1.16"
  9636. },
  9637. "conflict": {
  9638. "symfony/console": "<4.4"
  9639. },
  9640. "require-dev": {
  9641. "ext-iconv": "*",
  9642. "symfony/console": "^4.4|^5.0|^6.0",
  9643. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  9644. "symfony/process": "^4.4|^5.0|^6.0",
  9645. "symfony/uid": "^5.1|^6.0",
  9646. "twig/twig": "^2.13|^3.0.4"
  9647. },
  9648. "suggest": {
  9649. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  9650. "ext-intl": "To show region name in time zone dump",
  9651. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  9652. },
  9653. "bin": [
  9654. "Resources/bin/var-dump-server"
  9655. ],
  9656. "type": "library",
  9657. "autoload": {
  9658. "files": [
  9659. "Resources/functions/dump.php"
  9660. ],
  9661. "psr-4": {
  9662. "Symfony\\Component\\VarDumper\\": ""
  9663. },
  9664. "exclude-from-classmap": [
  9665. "/Tests/"
  9666. ]
  9667. },
  9668. "notification-url": "https://packagist.org/downloads/",
  9669. "license": [
  9670. "MIT"
  9671. ],
  9672. "authors": [
  9673. {
  9674. "name": "Nicolas Grekas",
  9675. "email": "p@tchwork.com"
  9676. },
  9677. {
  9678. "name": "Symfony Community",
  9679. "homepage": "https://symfony.com/contributors"
  9680. }
  9681. ],
  9682. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  9683. "homepage": "https://symfony.com",
  9684. "keywords": [
  9685. "debug",
  9686. "dump"
  9687. ],
  9688. "support": {
  9689. "source": "https://github.com/symfony/var-dumper/tree/v5.4.29"
  9690. },
  9691. "funding": [
  9692. {
  9693. "url": "https://symfony.com/sponsor",
  9694. "type": "custom"
  9695. },
  9696. {
  9697. "url": "https://github.com/fabpot",
  9698. "type": "github"
  9699. },
  9700. {
  9701. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9702. "type": "tidelift"
  9703. }
  9704. ],
  9705. "time": "2023-09-12T10:09:58+00:00"
  9706. },
  9707. {
  9708. "name": "symfony/var-exporter",
  9709. "version": "v6.0.19",
  9710. "source": {
  9711. "type": "git",
  9712. "url": "https://github.com/symfony/var-exporter.git",
  9713. "reference": "df56f53818c2d5d9f683f4ad2e365ba73a3b69d2"
  9714. },
  9715. "dist": {
  9716. "type": "zip",
  9717. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/df56f53818c2d5d9f683f4ad2e365ba73a3b69d2",
  9718. "reference": "df56f53818c2d5d9f683f4ad2e365ba73a3b69d2",
  9719. "shasum": "",
  9720. "mirrors": [
  9721. {
  9722. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9723. "preferred": true
  9724. }
  9725. ]
  9726. },
  9727. "require": {
  9728. "php": ">=8.0.2"
  9729. },
  9730. "require-dev": {
  9731. "symfony/var-dumper": "^5.4|^6.0"
  9732. },
  9733. "type": "library",
  9734. "autoload": {
  9735. "psr-4": {
  9736. "Symfony\\Component\\VarExporter\\": ""
  9737. },
  9738. "exclude-from-classmap": [
  9739. "/Tests/"
  9740. ]
  9741. },
  9742. "notification-url": "https://packagist.org/downloads/",
  9743. "license": [
  9744. "MIT"
  9745. ],
  9746. "authors": [
  9747. {
  9748. "name": "Nicolas Grekas",
  9749. "email": "p@tchwork.com"
  9750. },
  9751. {
  9752. "name": "Symfony Community",
  9753. "homepage": "https://symfony.com/contributors"
  9754. }
  9755. ],
  9756. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  9757. "homepage": "https://symfony.com",
  9758. "keywords": [
  9759. "clone",
  9760. "construct",
  9761. "export",
  9762. "hydrate",
  9763. "instantiate",
  9764. "serialize"
  9765. ],
  9766. "support": {
  9767. "source": "https://github.com/symfony/var-exporter/tree/v6.0.19"
  9768. },
  9769. "funding": [
  9770. {
  9771. "url": "https://symfony.com/sponsor",
  9772. "type": "custom"
  9773. },
  9774. {
  9775. "url": "https://github.com/fabpot",
  9776. "type": "github"
  9777. },
  9778. {
  9779. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9780. "type": "tidelift"
  9781. }
  9782. ],
  9783. "time": "2023-01-13T08:34:10+00:00"
  9784. },
  9785. {
  9786. "name": "tightenco/collect",
  9787. "version": "v9.52.7",
  9788. "source": {
  9789. "type": "git",
  9790. "url": "https://github.com/tighten/collect.git",
  9791. "reference": "b15143cd11fe01a700fcc449df61adc64452fa6d"
  9792. },
  9793. "dist": {
  9794. "type": "zip",
  9795. "url": "https://api.github.com/repos/tighten/collect/zipball/b15143cd11fe01a700fcc449df61adc64452fa6d",
  9796. "reference": "b15143cd11fe01a700fcc449df61adc64452fa6d",
  9797. "shasum": ""
  9798. },
  9799. "require": {
  9800. "php": "^8.0",
  9801. "symfony/var-dumper": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  9802. },
  9803. "require-dev": {
  9804. "mockery/mockery": "^1.0",
  9805. "nesbot/carbon": "^2.23.0",
  9806. "phpunit/phpunit": "^8.3"
  9807. },
  9808. "type": "library",
  9809. "autoload": {
  9810. "files": [
  9811. "src/Collect/Support/helpers.php",
  9812. "src/Collect/Support/alias.php"
  9813. ],
  9814. "psr-4": {
  9815. "Tightenco\\Collect\\": "src/Collect"
  9816. }
  9817. },
  9818. "notification-url": "https://packagist.org/downloads/",
  9819. "license": [
  9820. "MIT"
  9821. ],
  9822. "authors": [
  9823. {
  9824. "name": "Taylor Otwell",
  9825. "email": "taylorotwell@gmail.com"
  9826. }
  9827. ],
  9828. "description": "Collect - Illuminate Collections as a separate package.",
  9829. "keywords": [
  9830. "collection",
  9831. "laravel"
  9832. ],
  9833. "support": {
  9834. "issues": "https://github.com/tighten/collect/issues",
  9835. "source": "https://github.com/tighten/collect/tree/v9.52.7"
  9836. },
  9837. "time": "2023-04-14T21:51:36+00:00"
  9838. },
  9839. {
  9840. "name": "tijsverkoyen/css-to-inline-styles",
  9841. "version": "v2.2.7",
  9842. "source": {
  9843. "type": "git",
  9844. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  9845. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb"
  9846. },
  9847. "dist": {
  9848. "type": "zip",
  9849. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/83ee6f38df0a63106a9e4536e3060458b74ccedb",
  9850. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb",
  9851. "shasum": ""
  9852. },
  9853. "require": {
  9854. "ext-dom": "*",
  9855. "ext-libxml": "*",
  9856. "php": "^5.5 || ^7.0 || ^8.0",
  9857. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0"
  9858. },
  9859. "require-dev": {
  9860. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  9861. },
  9862. "type": "library",
  9863. "extra": {
  9864. "branch-alias": {
  9865. "dev-master": "2.2.x-dev"
  9866. }
  9867. },
  9868. "autoload": {
  9869. "psr-4": {
  9870. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  9871. }
  9872. },
  9873. "notification-url": "https://packagist.org/downloads/",
  9874. "license": [
  9875. "BSD-3-Clause"
  9876. ],
  9877. "authors": [
  9878. {
  9879. "name": "Tijs Verkoyen",
  9880. "email": "css_to_inline_styles@verkoyen.eu",
  9881. "role": "Developer"
  9882. }
  9883. ],
  9884. "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.",
  9885. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  9886. "support": {
  9887. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  9888. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.2.7"
  9889. },
  9890. "time": "2023-12-08T13:03:43+00:00"
  9891. },
  9892. {
  9893. "name": "uduncloud/udun-wallet-sdk",
  9894. "version": "1.0.0",
  9895. "source": {
  9896. "type": "git",
  9897. "url": "https://github.com/uduncloud/udun-sdk-php.git",
  9898. "reference": "026af997276590542e29f281cfadf4e97c157087"
  9899. },
  9900. "dist": {
  9901. "type": "zip",
  9902. "url": "https://api.github.com/repos/uduncloud/udun-sdk-php/zipball/026af997276590542e29f281cfadf4e97c157087",
  9903. "reference": "026af997276590542e29f281cfadf4e97c157087",
  9904. "shasum": "",
  9905. "mirrors": [
  9906. {
  9907. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9908. "preferred": true
  9909. }
  9910. ]
  9911. },
  9912. "require": {
  9913. "hanson/foundation-sdk": "^5.0",
  9914. "php": ">=7.0"
  9915. },
  9916. "require-dev": {
  9917. "phpunit/phpunit": "^9.5"
  9918. },
  9919. "type": "1",
  9920. "autoload": {
  9921. "psr-4": {
  9922. "Udun\\Dispatch\\": "src/"
  9923. }
  9924. },
  9925. "notification-url": "https://packagist.org/downloads/",
  9926. "license": [
  9927. "MIT"
  9928. ],
  9929. "authors": [
  9930. {
  9931. "name": "udun wallet"
  9932. }
  9933. ],
  9934. "description": "udun-wallet-sdk",
  9935. "support": {
  9936. "issues": "https://github.com/uduncloud/udun-sdk-php/issues",
  9937. "source": "https://github.com/uduncloud/udun-sdk-php/tree/v1.0.0"
  9938. },
  9939. "time": "2022-07-29T09:37:18+00:00"
  9940. },
  9941. {
  9942. "name": "vlucas/phpdotenv",
  9943. "version": "v5.6.0",
  9944. "source": {
  9945. "type": "git",
  9946. "url": "https://github.com/vlucas/phpdotenv.git",
  9947. "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4"
  9948. },
  9949. "dist": {
  9950. "type": "zip",
  9951. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
  9952. "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
  9953. "shasum": ""
  9954. },
  9955. "require": {
  9956. "ext-pcre": "*",
  9957. "graham-campbell/result-type": "^1.1.2",
  9958. "php": "^7.2.5 || ^8.0",
  9959. "phpoption/phpoption": "^1.9.2",
  9960. "symfony/polyfill-ctype": "^1.24",
  9961. "symfony/polyfill-mbstring": "^1.24",
  9962. "symfony/polyfill-php80": "^1.24"
  9963. },
  9964. "require-dev": {
  9965. "bamarni/composer-bin-plugin": "^1.8.2",
  9966. "ext-filter": "*",
  9967. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  9968. },
  9969. "suggest": {
  9970. "ext-filter": "Required to use the boolean validator."
  9971. },
  9972. "type": "library",
  9973. "extra": {
  9974. "bamarni-bin": {
  9975. "bin-links": true,
  9976. "forward-command": true
  9977. },
  9978. "branch-alias": {
  9979. "dev-master": "5.6-dev"
  9980. }
  9981. },
  9982. "autoload": {
  9983. "psr-4": {
  9984. "Dotenv\\": "src/"
  9985. }
  9986. },
  9987. "notification-url": "https://packagist.org/downloads/",
  9988. "license": [
  9989. "BSD-3-Clause"
  9990. ],
  9991. "authors": [
  9992. {
  9993. "name": "Graham Campbell",
  9994. "email": "hello@gjcampbell.co.uk",
  9995. "homepage": "https://github.com/GrahamCampbell"
  9996. },
  9997. {
  9998. "name": "Vance Lucas",
  9999. "email": "vance@vancelucas.com",
  10000. "homepage": "https://github.com/vlucas"
  10001. }
  10002. ],
  10003. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  10004. "keywords": [
  10005. "dotenv",
  10006. "env",
  10007. "environment"
  10008. ],
  10009. "support": {
  10010. "issues": "https://github.com/vlucas/phpdotenv/issues",
  10011. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.0"
  10012. },
  10013. "funding": [
  10014. {
  10015. "url": "https://github.com/GrahamCampbell",
  10016. "type": "github"
  10017. },
  10018. {
  10019. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  10020. "type": "tidelift"
  10021. }
  10022. ],
  10023. "time": "2023-11-12T22:43:29+00:00"
  10024. },
  10025. {
  10026. "name": "voku/portable-ascii",
  10027. "version": "1.6.1",
  10028. "source": {
  10029. "type": "git",
  10030. "url": "https://github.com/voku/portable-ascii.git",
  10031. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a"
  10032. },
  10033. "dist": {
  10034. "type": "zip",
  10035. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/87337c91b9dfacee02452244ee14ab3c43bc485a",
  10036. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a",
  10037. "shasum": ""
  10038. },
  10039. "require": {
  10040. "php": ">=7.0.0"
  10041. },
  10042. "require-dev": {
  10043. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  10044. },
  10045. "suggest": {
  10046. "ext-intl": "Use Intl for transliterator_transliterate() support"
  10047. },
  10048. "type": "library",
  10049. "autoload": {
  10050. "psr-4": {
  10051. "voku\\": "src/voku/"
  10052. }
  10053. },
  10054. "notification-url": "https://packagist.org/downloads/",
  10055. "license": [
  10056. "MIT"
  10057. ],
  10058. "authors": [
  10059. {
  10060. "name": "Lars Moelleken",
  10061. "homepage": "http://www.moelleken.org/"
  10062. }
  10063. ],
  10064. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  10065. "homepage": "https://github.com/voku/portable-ascii",
  10066. "keywords": [
  10067. "ascii",
  10068. "clean",
  10069. "php"
  10070. ],
  10071. "support": {
  10072. "issues": "https://github.com/voku/portable-ascii/issues",
  10073. "source": "https://github.com/voku/portable-ascii/tree/1.6.1"
  10074. },
  10075. "funding": [
  10076. {
  10077. "url": "https://www.paypal.me/moelleken",
  10078. "type": "custom"
  10079. },
  10080. {
  10081. "url": "https://github.com/voku",
  10082. "type": "github"
  10083. },
  10084. {
  10085. "url": "https://opencollective.com/portable-ascii",
  10086. "type": "open_collective"
  10087. },
  10088. {
  10089. "url": "https://www.patreon.com/voku",
  10090. "type": "patreon"
  10091. },
  10092. {
  10093. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  10094. "type": "tidelift"
  10095. }
  10096. ],
  10097. "time": "2022-01-24T18:55:24+00:00"
  10098. },
  10099. {
  10100. "name": "webmozart/assert",
  10101. "version": "1.11.0",
  10102. "source": {
  10103. "type": "git",
  10104. "url": "https://github.com/webmozarts/assert.git",
  10105. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  10106. },
  10107. "dist": {
  10108. "type": "zip",
  10109. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  10110. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  10111. "shasum": ""
  10112. },
  10113. "require": {
  10114. "ext-ctype": "*",
  10115. "php": "^7.2 || ^8.0"
  10116. },
  10117. "conflict": {
  10118. "phpstan/phpstan": "<0.12.20",
  10119. "vimeo/psalm": "<4.6.1 || 4.6.2"
  10120. },
  10121. "require-dev": {
  10122. "phpunit/phpunit": "^8.5.13"
  10123. },
  10124. "type": "library",
  10125. "extra": {
  10126. "branch-alias": {
  10127. "dev-master": "1.10-dev"
  10128. }
  10129. },
  10130. "autoload": {
  10131. "psr-4": {
  10132. "Webmozart\\Assert\\": "src/"
  10133. }
  10134. },
  10135. "notification-url": "https://packagist.org/downloads/",
  10136. "license": [
  10137. "MIT"
  10138. ],
  10139. "authors": [
  10140. {
  10141. "name": "Bernhard Schussek",
  10142. "email": "bschussek@gmail.com"
  10143. }
  10144. ],
  10145. "description": "Assertions to validate method input/output with nice error messages.",
  10146. "keywords": [
  10147. "assert",
  10148. "check",
  10149. "validate"
  10150. ],
  10151. "support": {
  10152. "issues": "https://github.com/webmozarts/assert/issues",
  10153. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  10154. },
  10155. "time": "2022-06-03T18:03:27+00:00"
  10156. },
  10157. {
  10158. "name": "wechatpay/wechatpay-guzzle-middleware",
  10159. "version": "0.2.2",
  10160. "source": {
  10161. "type": "git",
  10162. "url": "https://github.com/wechatpay-apiv3/wechatpay-guzzle-middleware.git",
  10163. "reference": "6782ac33ed8cf97628609a71cdc5e84a6a40677a"
  10164. },
  10165. "dist": {
  10166. "type": "zip",
  10167. "url": "https://api.github.com/repos/wechatpay-apiv3/wechatpay-guzzle-middleware/zipball/6782ac33ed8cf97628609a71cdc5e84a6a40677a",
  10168. "reference": "6782ac33ed8cf97628609a71cdc5e84a6a40677a",
  10169. "shasum": ""
  10170. },
  10171. "require": {
  10172. "ext-openssl": "*",
  10173. "php": ">=5.5"
  10174. },
  10175. "require-dev": {
  10176. "guzzlehttp/guzzle": "^6.3"
  10177. },
  10178. "suggest": {
  10179. "ext-bcmath": "Require bcmath in php 5.* version.",
  10180. "guzzlehttp/guzzle": "For using wechatpay guzzle middleware."
  10181. },
  10182. "bin": [
  10183. "tool/CertificateDownloader.php"
  10184. ],
  10185. "type": "library",
  10186. "autoload": {
  10187. "psr-4": {
  10188. "WechatPay\\GuzzleMiddleware\\": "src/"
  10189. }
  10190. },
  10191. "notification-url": "https://packagist.org/downloads/",
  10192. "license": [
  10193. "Apache-2.0"
  10194. ],
  10195. "description": "WechatPay API V3 Guzzle Middleware",
  10196. "homepage": "https://wechatpay-api.gitbook.io/wechatpay-api-v3/",
  10197. "keywords": [
  10198. "wechatpay"
  10199. ],
  10200. "support": {
  10201. "issues": "https://github.com/wechatpay-apiv3/wechatpay-guzzle-middleware/issues",
  10202. "source": "https://github.com/wechatpay-apiv3/wechatpay-guzzle-middleware/tree/v0.2.2"
  10203. },
  10204. "time": "2021-03-05T03:09:29+00:00"
  10205. },
  10206. {
  10207. "name": "yansongda/pay",
  10208. "version": "v3.4.2",
  10209. "source": {
  10210. "type": "git",
  10211. "url": "https://github.com/yansongda/pay.git",
  10212. "reference": "de827f7a594ef02432432da1f873926662b478fc"
  10213. },
  10214. "dist": {
  10215. "type": "zip",
  10216. "url": "https://api.github.com/repos/yansongda/pay/zipball/de827f7a594ef02432432da1f873926662b478fc",
  10217. "reference": "de827f7a594ef02432432da1f873926662b478fc",
  10218. "shasum": ""
  10219. },
  10220. "require": {
  10221. "ext-bcmath": "*",
  10222. "ext-json": "*",
  10223. "ext-libxml": "*",
  10224. "ext-openssl": "*",
  10225. "ext-simplexml": "*",
  10226. "php": ">=8.0",
  10227. "psr/container": "^1.1 || ^2.0",
  10228. "psr/event-dispatcher": "^1.0",
  10229. "psr/http-client": "^1.0",
  10230. "psr/http-message": "^1.1 || ^2.0",
  10231. "psr/log": "^1.1 || ^2.0 || ^3.0",
  10232. "yansongda/supports": "~4.0.0"
  10233. },
  10234. "conflict": {
  10235. "hyperf/framework": "<3.0"
  10236. },
  10237. "require-dev": {
  10238. "friendsofphp/php-cs-fixer": "^3.0",
  10239. "guzzlehttp/guzzle": "^7.0",
  10240. "hyperf/pimple": "^2.2",
  10241. "mockery/mockery": "^1.4",
  10242. "monolog/monolog": "^2.2",
  10243. "phpstan/phpstan": "^1.0.0",
  10244. "phpunit/phpunit": "^9.0",
  10245. "symfony/event-dispatcher": "^5.2.0",
  10246. "symfony/http-foundation": "^5.2.0",
  10247. "symfony/psr-http-message-bridge": "^2.1",
  10248. "symfony/var-dumper": "^5.1"
  10249. },
  10250. "suggest": {
  10251. "hyperf/pimple": "其它/无框架下使用 SDK,请安装",
  10252. "hyperf/utils": "Hyperf 框架下使用 SDK,请安装",
  10253. "illuminate/container": "Laravel 框架下使用 SDK,请安装"
  10254. },
  10255. "type": "library",
  10256. "autoload": {
  10257. "files": [
  10258. "src/Functions.php"
  10259. ],
  10260. "psr-4": {
  10261. "Yansongda\\Pay\\": "src"
  10262. }
  10263. },
  10264. "notification-url": "https://packagist.org/downloads/",
  10265. "license": [
  10266. "MIT"
  10267. ],
  10268. "authors": [
  10269. {
  10270. "name": "yansongda",
  10271. "email": "me@yansongda.cn"
  10272. }
  10273. ],
  10274. "description": "可能是我用过的最优雅的 Alipay 和 WeChat 的支付 SDK 扩展包了",
  10275. "keywords": [
  10276. "alipay",
  10277. "pay",
  10278. "wechat"
  10279. ],
  10280. "support": {
  10281. "homepage": "https://pay.yansongda.cn",
  10282. "issues": "https://github.com/yansongda/pay/issues",
  10283. "source": "https://github.com/yansongda/pay"
  10284. },
  10285. "time": "2023-06-27T09:54:37+00:00"
  10286. },
  10287. {
  10288. "name": "yansongda/supports",
  10289. "version": "v4.0.3",
  10290. "source": {
  10291. "type": "git",
  10292. "url": "https://github.com/yansongda/supports.git",
  10293. "reference": "73e01ed827202b33395c0827943410f6dbd790a4"
  10294. },
  10295. "dist": {
  10296. "type": "zip",
  10297. "url": "https://api.github.com/repos/yansongda/supports/zipball/73e01ed827202b33395c0827943410f6dbd790a4",
  10298. "reference": "73e01ed827202b33395c0827943410f6dbd790a4",
  10299. "shasum": ""
  10300. },
  10301. "require": {
  10302. "php": ">=8.0"
  10303. },
  10304. "require-dev": {
  10305. "friendsofphp/php-cs-fixer": "^3.0",
  10306. "mockery/mockery": "^1.4",
  10307. "phpstan/phpstan": "^1.1.0",
  10308. "phpunit/phpunit": "^9.0"
  10309. },
  10310. "suggest": {
  10311. "monolog/monolog": "Use logger",
  10312. "symfony/console": "Use stdout logger"
  10313. },
  10314. "type": "library",
  10315. "autoload": {
  10316. "files": [
  10317. "src/Functions.php"
  10318. ],
  10319. "psr-4": {
  10320. "Yansongda\\Supports\\": "src/"
  10321. }
  10322. },
  10323. "notification-url": "https://packagist.org/downloads/",
  10324. "license": [
  10325. "MIT"
  10326. ],
  10327. "authors": [
  10328. {
  10329. "name": "yansongda",
  10330. "email": "me@yansongda.cn"
  10331. }
  10332. ],
  10333. "description": "common components",
  10334. "keywords": [
  10335. "array",
  10336. "collection",
  10337. "config",
  10338. "support"
  10339. ],
  10340. "support": {
  10341. "issues": "https://github.com/yansongda/supports/issues",
  10342. "source": "https://github.com/yansongda/supports"
  10343. },
  10344. "time": "2023-12-23T15:04:07+00:00"
  10345. }
  10346. ],
  10347. "packages-dev": [
  10348. {
  10349. "name": "doctrine/instantiator",
  10350. "version": "1.5.0",
  10351. "source": {
  10352. "type": "git",
  10353. "url": "https://github.com/doctrine/instantiator.git",
  10354. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  10355. },
  10356. "dist": {
  10357. "type": "zip",
  10358. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  10359. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  10360. "shasum": ""
  10361. },
  10362. "require": {
  10363. "php": "^7.1 || ^8.0"
  10364. },
  10365. "require-dev": {
  10366. "doctrine/coding-standard": "^9 || ^11",
  10367. "ext-pdo": "*",
  10368. "ext-phar": "*",
  10369. "phpbench/phpbench": "^0.16 || ^1",
  10370. "phpstan/phpstan": "^1.4",
  10371. "phpstan/phpstan-phpunit": "^1",
  10372. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  10373. "vimeo/psalm": "^4.30 || ^5.4"
  10374. },
  10375. "type": "library",
  10376. "autoload": {
  10377. "psr-4": {
  10378. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  10379. }
  10380. },
  10381. "notification-url": "https://packagist.org/downloads/",
  10382. "license": [
  10383. "MIT"
  10384. ],
  10385. "authors": [
  10386. {
  10387. "name": "Marco Pivetta",
  10388. "email": "ocramius@gmail.com",
  10389. "homepage": "https://ocramius.github.io/"
  10390. }
  10391. ],
  10392. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  10393. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  10394. "keywords": [
  10395. "constructor",
  10396. "instantiate"
  10397. ],
  10398. "support": {
  10399. "issues": "https://github.com/doctrine/instantiator/issues",
  10400. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  10401. },
  10402. "funding": [
  10403. {
  10404. "url": "https://www.doctrine-project.org/sponsorship.html",
  10405. "type": "custom"
  10406. },
  10407. {
  10408. "url": "https://www.patreon.com/phpdoctrine",
  10409. "type": "patreon"
  10410. },
  10411. {
  10412. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  10413. "type": "tidelift"
  10414. }
  10415. ],
  10416. "time": "2022-12-30T00:15:36+00:00"
  10417. },
  10418. {
  10419. "name": "facade/flare-client-php",
  10420. "version": "1.10.0",
  10421. "source": {
  10422. "type": "git",
  10423. "url": "https://github.com/facade/flare-client-php.git",
  10424. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8"
  10425. },
  10426. "dist": {
  10427. "type": "zip",
  10428. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  10429. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  10430. "shasum": ""
  10431. },
  10432. "require": {
  10433. "facade/ignition-contracts": "~1.0",
  10434. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  10435. "php": "^7.1|^8.0",
  10436. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  10437. "symfony/mime": "^3.4|^4.0|^5.1",
  10438. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  10439. },
  10440. "require-dev": {
  10441. "friendsofphp/php-cs-fixer": "^2.14",
  10442. "phpunit/phpunit": "^7.5",
  10443. "spatie/phpunit-snapshot-assertions": "^2.0"
  10444. },
  10445. "type": "library",
  10446. "extra": {
  10447. "branch-alias": {
  10448. "dev-master": "1.0-dev"
  10449. }
  10450. },
  10451. "autoload": {
  10452. "files": [
  10453. "src/helpers.php"
  10454. ],
  10455. "psr-4": {
  10456. "Facade\\FlareClient\\": "src"
  10457. }
  10458. },
  10459. "notification-url": "https://packagist.org/downloads/",
  10460. "license": [
  10461. "MIT"
  10462. ],
  10463. "description": "Send PHP errors to Flare",
  10464. "homepage": "https://github.com/facade/flare-client-php",
  10465. "keywords": [
  10466. "exception",
  10467. "facade",
  10468. "flare",
  10469. "reporting"
  10470. ],
  10471. "support": {
  10472. "issues": "https://github.com/facade/flare-client-php/issues",
  10473. "source": "https://github.com/facade/flare-client-php/tree/1.10.0"
  10474. },
  10475. "funding": [
  10476. {
  10477. "url": "https://github.com/spatie",
  10478. "type": "github"
  10479. }
  10480. ],
  10481. "time": "2022-08-09T11:23:57+00:00"
  10482. },
  10483. {
  10484. "name": "facade/ignition",
  10485. "version": "2.17.7",
  10486. "source": {
  10487. "type": "git",
  10488. "url": "https://github.com/facade/ignition.git",
  10489. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9"
  10490. },
  10491. "dist": {
  10492. "type": "zip",
  10493. "url": "https://api.github.com/repos/facade/ignition/zipball/b4f5955825bb4b74cba0f94001761c46335c33e9",
  10494. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9",
  10495. "shasum": ""
  10496. },
  10497. "require": {
  10498. "ext-curl": "*",
  10499. "ext-json": "*",
  10500. "ext-mbstring": "*",
  10501. "facade/flare-client-php": "^1.9.1",
  10502. "facade/ignition-contracts": "^1.0.2",
  10503. "illuminate/support": "^7.0|^8.0",
  10504. "monolog/monolog": "^2.0",
  10505. "php": "^7.2.5|^8.0",
  10506. "symfony/console": "^5.0",
  10507. "symfony/var-dumper": "^5.0"
  10508. },
  10509. "require-dev": {
  10510. "friendsofphp/php-cs-fixer": "^2.14",
  10511. "livewire/livewire": "^2.4",
  10512. "mockery/mockery": "^1.3",
  10513. "orchestra/testbench": "^5.0|^6.0",
  10514. "psalm/plugin-laravel": "^1.2"
  10515. },
  10516. "suggest": {
  10517. "laravel/telescope": "^3.1"
  10518. },
  10519. "type": "library",
  10520. "extra": {
  10521. "branch-alias": {
  10522. "dev-master": "2.x-dev"
  10523. },
  10524. "laravel": {
  10525. "providers": [
  10526. "Facade\\Ignition\\IgnitionServiceProvider"
  10527. ],
  10528. "aliases": {
  10529. "Flare": "Facade\\Ignition\\Facades\\Flare"
  10530. }
  10531. }
  10532. },
  10533. "autoload": {
  10534. "files": [
  10535. "src/helpers.php"
  10536. ],
  10537. "psr-4": {
  10538. "Facade\\Ignition\\": "src"
  10539. }
  10540. },
  10541. "notification-url": "https://packagist.org/downloads/",
  10542. "license": [
  10543. "MIT"
  10544. ],
  10545. "description": "A beautiful error page for Laravel applications.",
  10546. "homepage": "https://github.com/facade/ignition",
  10547. "keywords": [
  10548. "error",
  10549. "flare",
  10550. "laravel",
  10551. "page"
  10552. ],
  10553. "support": {
  10554. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  10555. "forum": "https://twitter.com/flareappio",
  10556. "issues": "https://github.com/facade/ignition/issues",
  10557. "source": "https://github.com/facade/ignition"
  10558. },
  10559. "time": "2023-01-26T12:34:59+00:00"
  10560. },
  10561. {
  10562. "name": "facade/ignition-contracts",
  10563. "version": "1.0.2",
  10564. "source": {
  10565. "type": "git",
  10566. "url": "https://github.com/facade/ignition-contracts.git",
  10567. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  10568. },
  10569. "dist": {
  10570. "type": "zip",
  10571. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  10572. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  10573. "shasum": ""
  10574. },
  10575. "require": {
  10576. "php": "^7.3|^8.0"
  10577. },
  10578. "require-dev": {
  10579. "friendsofphp/php-cs-fixer": "^v2.15.8",
  10580. "phpunit/phpunit": "^9.3.11",
  10581. "vimeo/psalm": "^3.17.1"
  10582. },
  10583. "type": "library",
  10584. "autoload": {
  10585. "psr-4": {
  10586. "Facade\\IgnitionContracts\\": "src"
  10587. }
  10588. },
  10589. "notification-url": "https://packagist.org/downloads/",
  10590. "license": [
  10591. "MIT"
  10592. ],
  10593. "authors": [
  10594. {
  10595. "name": "Freek Van der Herten",
  10596. "email": "freek@spatie.be",
  10597. "homepage": "https://flareapp.io",
  10598. "role": "Developer"
  10599. }
  10600. ],
  10601. "description": "Solution contracts for Ignition",
  10602. "homepage": "https://github.com/facade/ignition-contracts",
  10603. "keywords": [
  10604. "contracts",
  10605. "flare",
  10606. "ignition"
  10607. ],
  10608. "support": {
  10609. "issues": "https://github.com/facade/ignition-contracts/issues",
  10610. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  10611. },
  10612. "time": "2020-10-16T08:27:54+00:00"
  10613. },
  10614. {
  10615. "name": "fakerphp/faker",
  10616. "version": "v1.23.0",
  10617. "source": {
  10618. "type": "git",
  10619. "url": "https://github.com/FakerPHP/Faker.git",
  10620. "reference": "e3daa170d00fde61ea7719ef47bb09bb8f1d9b01"
  10621. },
  10622. "dist": {
  10623. "type": "zip",
  10624. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e3daa170d00fde61ea7719ef47bb09bb8f1d9b01",
  10625. "reference": "e3daa170d00fde61ea7719ef47bb09bb8f1d9b01",
  10626. "shasum": ""
  10627. },
  10628. "require": {
  10629. "php": "^7.4 || ^8.0",
  10630. "psr/container": "^1.0 || ^2.0",
  10631. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  10632. },
  10633. "conflict": {
  10634. "fzaninotto/faker": "*"
  10635. },
  10636. "require-dev": {
  10637. "bamarni/composer-bin-plugin": "^1.4.1",
  10638. "doctrine/persistence": "^1.3 || ^2.0",
  10639. "ext-intl": "*",
  10640. "phpunit/phpunit": "^9.5.26",
  10641. "symfony/phpunit-bridge": "^5.4.16"
  10642. },
  10643. "suggest": {
  10644. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  10645. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  10646. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  10647. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  10648. "ext-mbstring": "Required for multibyte Unicode string functionality."
  10649. },
  10650. "type": "library",
  10651. "extra": {
  10652. "branch-alias": {
  10653. "dev-main": "v1.21-dev"
  10654. }
  10655. },
  10656. "autoload": {
  10657. "psr-4": {
  10658. "Faker\\": "src/Faker/"
  10659. }
  10660. },
  10661. "notification-url": "https://packagist.org/downloads/",
  10662. "license": [
  10663. "MIT"
  10664. ],
  10665. "authors": [
  10666. {
  10667. "name": "François Zaninotto"
  10668. }
  10669. ],
  10670. "description": "Faker is a PHP library that generates fake data for you.",
  10671. "keywords": [
  10672. "data",
  10673. "faker",
  10674. "fixtures"
  10675. ],
  10676. "support": {
  10677. "issues": "https://github.com/FakerPHP/Faker/issues",
  10678. "source": "https://github.com/FakerPHP/Faker/tree/v1.23.0"
  10679. },
  10680. "time": "2023-06-12T08:44:38+00:00"
  10681. },
  10682. {
  10683. "name": "filp/whoops",
  10684. "version": "2.15.4",
  10685. "source": {
  10686. "type": "git",
  10687. "url": "https://github.com/filp/whoops.git",
  10688. "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546"
  10689. },
  10690. "dist": {
  10691. "type": "zip",
  10692. "url": "https://api.github.com/repos/filp/whoops/zipball/a139776fa3f5985a50b509f2a02ff0f709d2a546",
  10693. "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546",
  10694. "shasum": ""
  10695. },
  10696. "require": {
  10697. "php": "^5.5.9 || ^7.0 || ^8.0",
  10698. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  10699. },
  10700. "require-dev": {
  10701. "mockery/mockery": "^0.9 || ^1.0",
  10702. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  10703. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  10704. },
  10705. "suggest": {
  10706. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  10707. "whoops/soap": "Formats errors as SOAP responses"
  10708. },
  10709. "type": "library",
  10710. "extra": {
  10711. "branch-alias": {
  10712. "dev-master": "2.7-dev"
  10713. }
  10714. },
  10715. "autoload": {
  10716. "psr-4": {
  10717. "Whoops\\": "src/Whoops/"
  10718. }
  10719. },
  10720. "notification-url": "https://packagist.org/downloads/",
  10721. "license": [
  10722. "MIT"
  10723. ],
  10724. "authors": [
  10725. {
  10726. "name": "Filipe Dobreira",
  10727. "homepage": "https://github.com/filp",
  10728. "role": "Developer"
  10729. }
  10730. ],
  10731. "description": "php error handling for cool kids",
  10732. "homepage": "https://filp.github.io/whoops/",
  10733. "keywords": [
  10734. "error",
  10735. "exception",
  10736. "handling",
  10737. "library",
  10738. "throwable",
  10739. "whoops"
  10740. ],
  10741. "support": {
  10742. "issues": "https://github.com/filp/whoops/issues",
  10743. "source": "https://github.com/filp/whoops/tree/2.15.4"
  10744. },
  10745. "funding": [
  10746. {
  10747. "url": "https://github.com/denis-sokolov",
  10748. "type": "github"
  10749. }
  10750. ],
  10751. "time": "2023-11-03T12:00:00+00:00"
  10752. },
  10753. {
  10754. "name": "hamcrest/hamcrest-php",
  10755. "version": "v2.0.1",
  10756. "source": {
  10757. "type": "git",
  10758. "url": "https://github.com/hamcrest/hamcrest-php.git",
  10759. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  10760. },
  10761. "dist": {
  10762. "type": "zip",
  10763. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  10764. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  10765. "shasum": ""
  10766. },
  10767. "require": {
  10768. "php": "^5.3|^7.0|^8.0"
  10769. },
  10770. "replace": {
  10771. "cordoval/hamcrest-php": "*",
  10772. "davedevelopment/hamcrest-php": "*",
  10773. "kodova/hamcrest-php": "*"
  10774. },
  10775. "require-dev": {
  10776. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  10777. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  10778. },
  10779. "type": "library",
  10780. "extra": {
  10781. "branch-alias": {
  10782. "dev-master": "2.1-dev"
  10783. }
  10784. },
  10785. "autoload": {
  10786. "classmap": [
  10787. "hamcrest"
  10788. ]
  10789. },
  10790. "notification-url": "https://packagist.org/downloads/",
  10791. "license": [
  10792. "BSD-3-Clause"
  10793. ],
  10794. "description": "This is the PHP port of Hamcrest Matchers",
  10795. "keywords": [
  10796. "test"
  10797. ],
  10798. "support": {
  10799. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  10800. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  10801. },
  10802. "time": "2020-07-09T08:09:16+00:00"
  10803. },
  10804. {
  10805. "name": "mockery/mockery",
  10806. "version": "1.6.7",
  10807. "source": {
  10808. "type": "git",
  10809. "url": "https://github.com/mockery/mockery.git",
  10810. "reference": "0cc058854b3195ba21dc6b1f7b1f60f4ef3a9c06"
  10811. },
  10812. "dist": {
  10813. "type": "zip",
  10814. "url": "https://api.github.com/repos/mockery/mockery/zipball/0cc058854b3195ba21dc6b1f7b1f60f4ef3a9c06",
  10815. "reference": "0cc058854b3195ba21dc6b1f7b1f60f4ef3a9c06",
  10816. "shasum": ""
  10817. },
  10818. "require": {
  10819. "hamcrest/hamcrest-php": "^2.0.1",
  10820. "lib-pcre": ">=7.0",
  10821. "php": ">=7.3"
  10822. },
  10823. "conflict": {
  10824. "phpunit/phpunit": "<8.0"
  10825. },
  10826. "require-dev": {
  10827. "phpunit/phpunit": "^8.5 || ^9.6.10",
  10828. "symplify/easy-coding-standard": "^12.0.8"
  10829. },
  10830. "type": "library",
  10831. "autoload": {
  10832. "files": [
  10833. "library/helpers.php",
  10834. "library/Mockery.php"
  10835. ],
  10836. "psr-4": {
  10837. "Mockery\\": "library/Mockery"
  10838. }
  10839. },
  10840. "notification-url": "https://packagist.org/downloads/",
  10841. "license": [
  10842. "BSD-3-Clause"
  10843. ],
  10844. "authors": [
  10845. {
  10846. "name": "Pádraic Brady",
  10847. "email": "padraic.brady@gmail.com",
  10848. "homepage": "https://github.com/padraic",
  10849. "role": "Author"
  10850. },
  10851. {
  10852. "name": "Dave Marshall",
  10853. "email": "dave.marshall@atstsolutions.co.uk",
  10854. "homepage": "https://davedevelopment.co.uk",
  10855. "role": "Developer"
  10856. },
  10857. {
  10858. "name": "Nathanael Esayeas",
  10859. "email": "nathanael.esayeas@protonmail.com",
  10860. "homepage": "https://github.com/ghostwriter",
  10861. "role": "Lead Developer"
  10862. }
  10863. ],
  10864. "description": "Mockery is a simple yet flexible PHP mock object framework",
  10865. "homepage": "https://github.com/mockery/mockery",
  10866. "keywords": [
  10867. "BDD",
  10868. "TDD",
  10869. "library",
  10870. "mock",
  10871. "mock objects",
  10872. "mockery",
  10873. "stub",
  10874. "test",
  10875. "test double",
  10876. "testing"
  10877. ],
  10878. "support": {
  10879. "docs": "https://docs.mockery.io/",
  10880. "issues": "https://github.com/mockery/mockery/issues",
  10881. "rss": "https://github.com/mockery/mockery/releases.atom",
  10882. "security": "https://github.com/mockery/mockery/security/advisories",
  10883. "source": "https://github.com/mockery/mockery"
  10884. },
  10885. "time": "2023-12-10T02:24:34+00:00"
  10886. },
  10887. {
  10888. "name": "myclabs/deep-copy",
  10889. "version": "1.11.1",
  10890. "source": {
  10891. "type": "git",
  10892. "url": "https://github.com/myclabs/DeepCopy.git",
  10893. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  10894. },
  10895. "dist": {
  10896. "type": "zip",
  10897. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  10898. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  10899. "shasum": ""
  10900. },
  10901. "require": {
  10902. "php": "^7.1 || ^8.0"
  10903. },
  10904. "conflict": {
  10905. "doctrine/collections": "<1.6.8",
  10906. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  10907. },
  10908. "require-dev": {
  10909. "doctrine/collections": "^1.6.8",
  10910. "doctrine/common": "^2.13.3 || ^3.2.2",
  10911. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  10912. },
  10913. "type": "library",
  10914. "autoload": {
  10915. "files": [
  10916. "src/DeepCopy/deep_copy.php"
  10917. ],
  10918. "psr-4": {
  10919. "DeepCopy\\": "src/DeepCopy/"
  10920. }
  10921. },
  10922. "notification-url": "https://packagist.org/downloads/",
  10923. "license": [
  10924. "MIT"
  10925. ],
  10926. "description": "Create deep copies (clones) of your objects",
  10927. "keywords": [
  10928. "clone",
  10929. "copy",
  10930. "duplicate",
  10931. "object",
  10932. "object graph"
  10933. ],
  10934. "support": {
  10935. "issues": "https://github.com/myclabs/DeepCopy/issues",
  10936. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  10937. },
  10938. "funding": [
  10939. {
  10940. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  10941. "type": "tidelift"
  10942. }
  10943. ],
  10944. "time": "2023-03-08T13:26:56+00:00"
  10945. },
  10946. {
  10947. "name": "nunomaduro/collision",
  10948. "version": "v5.11.0",
  10949. "source": {
  10950. "type": "git",
  10951. "url": "https://github.com/nunomaduro/collision.git",
  10952. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461"
  10953. },
  10954. "dist": {
  10955. "type": "zip",
  10956. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/8b610eef8582ccdc05d8f2ab23305e2d37049461",
  10957. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461",
  10958. "shasum": ""
  10959. },
  10960. "require": {
  10961. "facade/ignition-contracts": "^1.0",
  10962. "filp/whoops": "^2.14.3",
  10963. "php": "^7.3 || ^8.0",
  10964. "symfony/console": "^5.0"
  10965. },
  10966. "require-dev": {
  10967. "brianium/paratest": "^6.1",
  10968. "fideloper/proxy": "^4.4.1",
  10969. "fruitcake/laravel-cors": "^2.0.3",
  10970. "laravel/framework": "8.x-dev",
  10971. "nunomaduro/larastan": "^0.6.2",
  10972. "nunomaduro/mock-final-classes": "^1.0",
  10973. "orchestra/testbench": "^6.0",
  10974. "phpstan/phpstan": "^0.12.64",
  10975. "phpunit/phpunit": "^9.5.0"
  10976. },
  10977. "type": "library",
  10978. "extra": {
  10979. "laravel": {
  10980. "providers": [
  10981. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  10982. ]
  10983. }
  10984. },
  10985. "autoload": {
  10986. "psr-4": {
  10987. "NunoMaduro\\Collision\\": "src/"
  10988. }
  10989. },
  10990. "notification-url": "https://packagist.org/downloads/",
  10991. "license": [
  10992. "MIT"
  10993. ],
  10994. "authors": [
  10995. {
  10996. "name": "Nuno Maduro",
  10997. "email": "enunomaduro@gmail.com"
  10998. }
  10999. ],
  11000. "description": "Cli error handling for console/command-line PHP applications.",
  11001. "keywords": [
  11002. "artisan",
  11003. "cli",
  11004. "command-line",
  11005. "console",
  11006. "error",
  11007. "handling",
  11008. "laravel",
  11009. "laravel-zero",
  11010. "php",
  11011. "symfony"
  11012. ],
  11013. "support": {
  11014. "issues": "https://github.com/nunomaduro/collision/issues",
  11015. "source": "https://github.com/nunomaduro/collision"
  11016. },
  11017. "funding": [
  11018. {
  11019. "url": "https://www.paypal.com/paypalme/enunomaduro",
  11020. "type": "custom"
  11021. },
  11022. {
  11023. "url": "https://github.com/nunomaduro",
  11024. "type": "github"
  11025. },
  11026. {
  11027. "url": "https://www.patreon.com/nunomaduro",
  11028. "type": "patreon"
  11029. }
  11030. ],
  11031. "time": "2022-01-10T16:22:52+00:00"
  11032. },
  11033. {
  11034. "name": "phar-io/manifest",
  11035. "version": "2.0.3",
  11036. "source": {
  11037. "type": "git",
  11038. "url": "https://github.com/phar-io/manifest.git",
  11039. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  11040. },
  11041. "dist": {
  11042. "type": "zip",
  11043. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  11044. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  11045. "shasum": ""
  11046. },
  11047. "require": {
  11048. "ext-dom": "*",
  11049. "ext-phar": "*",
  11050. "ext-xmlwriter": "*",
  11051. "phar-io/version": "^3.0.1",
  11052. "php": "^7.2 || ^8.0"
  11053. },
  11054. "type": "library",
  11055. "extra": {
  11056. "branch-alias": {
  11057. "dev-master": "2.0.x-dev"
  11058. }
  11059. },
  11060. "autoload": {
  11061. "classmap": [
  11062. "src/"
  11063. ]
  11064. },
  11065. "notification-url": "https://packagist.org/downloads/",
  11066. "license": [
  11067. "BSD-3-Clause"
  11068. ],
  11069. "authors": [
  11070. {
  11071. "name": "Arne Blankerts",
  11072. "email": "arne@blankerts.de",
  11073. "role": "Developer"
  11074. },
  11075. {
  11076. "name": "Sebastian Heuer",
  11077. "email": "sebastian@phpeople.de",
  11078. "role": "Developer"
  11079. },
  11080. {
  11081. "name": "Sebastian Bergmann",
  11082. "email": "sebastian@phpunit.de",
  11083. "role": "Developer"
  11084. }
  11085. ],
  11086. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  11087. "support": {
  11088. "issues": "https://github.com/phar-io/manifest/issues",
  11089. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  11090. },
  11091. "time": "2021-07-20T11:28:43+00:00"
  11092. },
  11093. {
  11094. "name": "phar-io/version",
  11095. "version": "3.2.1",
  11096. "source": {
  11097. "type": "git",
  11098. "url": "https://github.com/phar-io/version.git",
  11099. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  11100. },
  11101. "dist": {
  11102. "type": "zip",
  11103. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  11104. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  11105. "shasum": ""
  11106. },
  11107. "require": {
  11108. "php": "^7.2 || ^8.0"
  11109. },
  11110. "type": "library",
  11111. "autoload": {
  11112. "classmap": [
  11113. "src/"
  11114. ]
  11115. },
  11116. "notification-url": "https://packagist.org/downloads/",
  11117. "license": [
  11118. "BSD-3-Clause"
  11119. ],
  11120. "authors": [
  11121. {
  11122. "name": "Arne Blankerts",
  11123. "email": "arne@blankerts.de",
  11124. "role": "Developer"
  11125. },
  11126. {
  11127. "name": "Sebastian Heuer",
  11128. "email": "sebastian@phpeople.de",
  11129. "role": "Developer"
  11130. },
  11131. {
  11132. "name": "Sebastian Bergmann",
  11133. "email": "sebastian@phpunit.de",
  11134. "role": "Developer"
  11135. }
  11136. ],
  11137. "description": "Library for handling version information and constraints",
  11138. "support": {
  11139. "issues": "https://github.com/phar-io/version/issues",
  11140. "source": "https://github.com/phar-io/version/tree/3.2.1"
  11141. },
  11142. "time": "2022-02-21T01:04:05+00:00"
  11143. },
  11144. {
  11145. "name": "phpunit/php-code-coverage",
  11146. "version": "9.2.30",
  11147. "source": {
  11148. "type": "git",
  11149. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  11150. "reference": "ca2bd87d2f9215904682a9cb9bb37dda98e76089"
  11151. },
  11152. "dist": {
  11153. "type": "zip",
  11154. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/ca2bd87d2f9215904682a9cb9bb37dda98e76089",
  11155. "reference": "ca2bd87d2f9215904682a9cb9bb37dda98e76089",
  11156. "shasum": ""
  11157. },
  11158. "require": {
  11159. "ext-dom": "*",
  11160. "ext-libxml": "*",
  11161. "ext-xmlwriter": "*",
  11162. "nikic/php-parser": "^4.18 || ^5.0",
  11163. "php": ">=7.3",
  11164. "phpunit/php-file-iterator": "^3.0.3",
  11165. "phpunit/php-text-template": "^2.0.2",
  11166. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  11167. "sebastian/complexity": "^2.0",
  11168. "sebastian/environment": "^5.1.2",
  11169. "sebastian/lines-of-code": "^1.0.3",
  11170. "sebastian/version": "^3.0.1",
  11171. "theseer/tokenizer": "^1.2.0"
  11172. },
  11173. "require-dev": {
  11174. "phpunit/phpunit": "^9.3"
  11175. },
  11176. "suggest": {
  11177. "ext-pcov": "PHP extension that provides line coverage",
  11178. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  11179. },
  11180. "type": "library",
  11181. "extra": {
  11182. "branch-alias": {
  11183. "dev-master": "9.2-dev"
  11184. }
  11185. },
  11186. "autoload": {
  11187. "classmap": [
  11188. "src/"
  11189. ]
  11190. },
  11191. "notification-url": "https://packagist.org/downloads/",
  11192. "license": [
  11193. "BSD-3-Clause"
  11194. ],
  11195. "authors": [
  11196. {
  11197. "name": "Sebastian Bergmann",
  11198. "email": "sebastian@phpunit.de",
  11199. "role": "lead"
  11200. }
  11201. ],
  11202. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  11203. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  11204. "keywords": [
  11205. "coverage",
  11206. "testing",
  11207. "xunit"
  11208. ],
  11209. "support": {
  11210. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  11211. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  11212. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.30"
  11213. },
  11214. "funding": [
  11215. {
  11216. "url": "https://github.com/sebastianbergmann",
  11217. "type": "github"
  11218. }
  11219. ],
  11220. "time": "2023-12-22T06:47:57+00:00"
  11221. },
  11222. {
  11223. "name": "phpunit/php-file-iterator",
  11224. "version": "3.0.6",
  11225. "source": {
  11226. "type": "git",
  11227. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  11228. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  11229. },
  11230. "dist": {
  11231. "type": "zip",
  11232. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  11233. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  11234. "shasum": ""
  11235. },
  11236. "require": {
  11237. "php": ">=7.3"
  11238. },
  11239. "require-dev": {
  11240. "phpunit/phpunit": "^9.3"
  11241. },
  11242. "type": "library",
  11243. "extra": {
  11244. "branch-alias": {
  11245. "dev-master": "3.0-dev"
  11246. }
  11247. },
  11248. "autoload": {
  11249. "classmap": [
  11250. "src/"
  11251. ]
  11252. },
  11253. "notification-url": "https://packagist.org/downloads/",
  11254. "license": [
  11255. "BSD-3-Clause"
  11256. ],
  11257. "authors": [
  11258. {
  11259. "name": "Sebastian Bergmann",
  11260. "email": "sebastian@phpunit.de",
  11261. "role": "lead"
  11262. }
  11263. ],
  11264. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  11265. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  11266. "keywords": [
  11267. "filesystem",
  11268. "iterator"
  11269. ],
  11270. "support": {
  11271. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  11272. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  11273. },
  11274. "funding": [
  11275. {
  11276. "url": "https://github.com/sebastianbergmann",
  11277. "type": "github"
  11278. }
  11279. ],
  11280. "time": "2021-12-02T12:48:52+00:00"
  11281. },
  11282. {
  11283. "name": "phpunit/php-invoker",
  11284. "version": "3.1.1",
  11285. "source": {
  11286. "type": "git",
  11287. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  11288. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  11289. },
  11290. "dist": {
  11291. "type": "zip",
  11292. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  11293. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  11294. "shasum": ""
  11295. },
  11296. "require": {
  11297. "php": ">=7.3"
  11298. },
  11299. "require-dev": {
  11300. "ext-pcntl": "*",
  11301. "phpunit/phpunit": "^9.3"
  11302. },
  11303. "suggest": {
  11304. "ext-pcntl": "*"
  11305. },
  11306. "type": "library",
  11307. "extra": {
  11308. "branch-alias": {
  11309. "dev-master": "3.1-dev"
  11310. }
  11311. },
  11312. "autoload": {
  11313. "classmap": [
  11314. "src/"
  11315. ]
  11316. },
  11317. "notification-url": "https://packagist.org/downloads/",
  11318. "license": [
  11319. "BSD-3-Clause"
  11320. ],
  11321. "authors": [
  11322. {
  11323. "name": "Sebastian Bergmann",
  11324. "email": "sebastian@phpunit.de",
  11325. "role": "lead"
  11326. }
  11327. ],
  11328. "description": "Invoke callables with a timeout",
  11329. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  11330. "keywords": [
  11331. "process"
  11332. ],
  11333. "support": {
  11334. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  11335. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  11336. },
  11337. "funding": [
  11338. {
  11339. "url": "https://github.com/sebastianbergmann",
  11340. "type": "github"
  11341. }
  11342. ],
  11343. "time": "2020-09-28T05:58:55+00:00"
  11344. },
  11345. {
  11346. "name": "phpunit/php-text-template",
  11347. "version": "2.0.4",
  11348. "source": {
  11349. "type": "git",
  11350. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  11351. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  11352. },
  11353. "dist": {
  11354. "type": "zip",
  11355. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  11356. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  11357. "shasum": ""
  11358. },
  11359. "require": {
  11360. "php": ">=7.3"
  11361. },
  11362. "require-dev": {
  11363. "phpunit/phpunit": "^9.3"
  11364. },
  11365. "type": "library",
  11366. "extra": {
  11367. "branch-alias": {
  11368. "dev-master": "2.0-dev"
  11369. }
  11370. },
  11371. "autoload": {
  11372. "classmap": [
  11373. "src/"
  11374. ]
  11375. },
  11376. "notification-url": "https://packagist.org/downloads/",
  11377. "license": [
  11378. "BSD-3-Clause"
  11379. ],
  11380. "authors": [
  11381. {
  11382. "name": "Sebastian Bergmann",
  11383. "email": "sebastian@phpunit.de",
  11384. "role": "lead"
  11385. }
  11386. ],
  11387. "description": "Simple template engine.",
  11388. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  11389. "keywords": [
  11390. "template"
  11391. ],
  11392. "support": {
  11393. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  11394. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  11395. },
  11396. "funding": [
  11397. {
  11398. "url": "https://github.com/sebastianbergmann",
  11399. "type": "github"
  11400. }
  11401. ],
  11402. "time": "2020-10-26T05:33:50+00:00"
  11403. },
  11404. {
  11405. "name": "phpunit/php-timer",
  11406. "version": "5.0.3",
  11407. "source": {
  11408. "type": "git",
  11409. "url": "https://github.com/sebastianbergmann/php-timer.git",
  11410. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  11411. },
  11412. "dist": {
  11413. "type": "zip",
  11414. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  11415. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  11416. "shasum": ""
  11417. },
  11418. "require": {
  11419. "php": ">=7.3"
  11420. },
  11421. "require-dev": {
  11422. "phpunit/phpunit": "^9.3"
  11423. },
  11424. "type": "library",
  11425. "extra": {
  11426. "branch-alias": {
  11427. "dev-master": "5.0-dev"
  11428. }
  11429. },
  11430. "autoload": {
  11431. "classmap": [
  11432. "src/"
  11433. ]
  11434. },
  11435. "notification-url": "https://packagist.org/downloads/",
  11436. "license": [
  11437. "BSD-3-Clause"
  11438. ],
  11439. "authors": [
  11440. {
  11441. "name": "Sebastian Bergmann",
  11442. "email": "sebastian@phpunit.de",
  11443. "role": "lead"
  11444. }
  11445. ],
  11446. "description": "Utility class for timing",
  11447. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  11448. "keywords": [
  11449. "timer"
  11450. ],
  11451. "support": {
  11452. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  11453. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  11454. },
  11455. "funding": [
  11456. {
  11457. "url": "https://github.com/sebastianbergmann",
  11458. "type": "github"
  11459. }
  11460. ],
  11461. "time": "2020-10-26T13:16:10+00:00"
  11462. },
  11463. {
  11464. "name": "phpunit/phpunit",
  11465. "version": "9.6.15",
  11466. "source": {
  11467. "type": "git",
  11468. "url": "https://github.com/sebastianbergmann/phpunit.git",
  11469. "reference": "05017b80304e0eb3f31d90194a563fd53a6021f1"
  11470. },
  11471. "dist": {
  11472. "type": "zip",
  11473. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/05017b80304e0eb3f31d90194a563fd53a6021f1",
  11474. "reference": "05017b80304e0eb3f31d90194a563fd53a6021f1",
  11475. "shasum": ""
  11476. },
  11477. "require": {
  11478. "doctrine/instantiator": "^1.3.1 || ^2",
  11479. "ext-dom": "*",
  11480. "ext-json": "*",
  11481. "ext-libxml": "*",
  11482. "ext-mbstring": "*",
  11483. "ext-xml": "*",
  11484. "ext-xmlwriter": "*",
  11485. "myclabs/deep-copy": "^1.10.1",
  11486. "phar-io/manifest": "^2.0.3",
  11487. "phar-io/version": "^3.0.2",
  11488. "php": ">=7.3",
  11489. "phpunit/php-code-coverage": "^9.2.28",
  11490. "phpunit/php-file-iterator": "^3.0.5",
  11491. "phpunit/php-invoker": "^3.1.1",
  11492. "phpunit/php-text-template": "^2.0.3",
  11493. "phpunit/php-timer": "^5.0.2",
  11494. "sebastian/cli-parser": "^1.0.1",
  11495. "sebastian/code-unit": "^1.0.6",
  11496. "sebastian/comparator": "^4.0.8",
  11497. "sebastian/diff": "^4.0.3",
  11498. "sebastian/environment": "^5.1.3",
  11499. "sebastian/exporter": "^4.0.5",
  11500. "sebastian/global-state": "^5.0.1",
  11501. "sebastian/object-enumerator": "^4.0.3",
  11502. "sebastian/resource-operations": "^3.0.3",
  11503. "sebastian/type": "^3.2",
  11504. "sebastian/version": "^3.0.2"
  11505. },
  11506. "suggest": {
  11507. "ext-soap": "To be able to generate mocks based on WSDL files",
  11508. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  11509. },
  11510. "bin": [
  11511. "phpunit"
  11512. ],
  11513. "type": "library",
  11514. "extra": {
  11515. "branch-alias": {
  11516. "dev-master": "9.6-dev"
  11517. }
  11518. },
  11519. "autoload": {
  11520. "files": [
  11521. "src/Framework/Assert/Functions.php"
  11522. ],
  11523. "classmap": [
  11524. "src/"
  11525. ]
  11526. },
  11527. "notification-url": "https://packagist.org/downloads/",
  11528. "license": [
  11529. "BSD-3-Clause"
  11530. ],
  11531. "authors": [
  11532. {
  11533. "name": "Sebastian Bergmann",
  11534. "email": "sebastian@phpunit.de",
  11535. "role": "lead"
  11536. }
  11537. ],
  11538. "description": "The PHP Unit Testing framework.",
  11539. "homepage": "https://phpunit.de/",
  11540. "keywords": [
  11541. "phpunit",
  11542. "testing",
  11543. "xunit"
  11544. ],
  11545. "support": {
  11546. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  11547. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  11548. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.15"
  11549. },
  11550. "funding": [
  11551. {
  11552. "url": "https://phpunit.de/sponsors.html",
  11553. "type": "custom"
  11554. },
  11555. {
  11556. "url": "https://github.com/sebastianbergmann",
  11557. "type": "github"
  11558. },
  11559. {
  11560. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  11561. "type": "tidelift"
  11562. }
  11563. ],
  11564. "time": "2023-12-01T16:55:19+00:00"
  11565. },
  11566. {
  11567. "name": "sebastian/cli-parser",
  11568. "version": "1.0.1",
  11569. "source": {
  11570. "type": "git",
  11571. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  11572. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  11573. },
  11574. "dist": {
  11575. "type": "zip",
  11576. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  11577. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  11578. "shasum": ""
  11579. },
  11580. "require": {
  11581. "php": ">=7.3"
  11582. },
  11583. "require-dev": {
  11584. "phpunit/phpunit": "^9.3"
  11585. },
  11586. "type": "library",
  11587. "extra": {
  11588. "branch-alias": {
  11589. "dev-master": "1.0-dev"
  11590. }
  11591. },
  11592. "autoload": {
  11593. "classmap": [
  11594. "src/"
  11595. ]
  11596. },
  11597. "notification-url": "https://packagist.org/downloads/",
  11598. "license": [
  11599. "BSD-3-Clause"
  11600. ],
  11601. "authors": [
  11602. {
  11603. "name": "Sebastian Bergmann",
  11604. "email": "sebastian@phpunit.de",
  11605. "role": "lead"
  11606. }
  11607. ],
  11608. "description": "Library for parsing CLI options",
  11609. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  11610. "support": {
  11611. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  11612. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  11613. },
  11614. "funding": [
  11615. {
  11616. "url": "https://github.com/sebastianbergmann",
  11617. "type": "github"
  11618. }
  11619. ],
  11620. "time": "2020-09-28T06:08:49+00:00"
  11621. },
  11622. {
  11623. "name": "sebastian/code-unit",
  11624. "version": "1.0.8",
  11625. "source": {
  11626. "type": "git",
  11627. "url": "https://github.com/sebastianbergmann/code-unit.git",
  11628. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  11629. },
  11630. "dist": {
  11631. "type": "zip",
  11632. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  11633. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  11634. "shasum": ""
  11635. },
  11636. "require": {
  11637. "php": ">=7.3"
  11638. },
  11639. "require-dev": {
  11640. "phpunit/phpunit": "^9.3"
  11641. },
  11642. "type": "library",
  11643. "extra": {
  11644. "branch-alias": {
  11645. "dev-master": "1.0-dev"
  11646. }
  11647. },
  11648. "autoload": {
  11649. "classmap": [
  11650. "src/"
  11651. ]
  11652. },
  11653. "notification-url": "https://packagist.org/downloads/",
  11654. "license": [
  11655. "BSD-3-Clause"
  11656. ],
  11657. "authors": [
  11658. {
  11659. "name": "Sebastian Bergmann",
  11660. "email": "sebastian@phpunit.de",
  11661. "role": "lead"
  11662. }
  11663. ],
  11664. "description": "Collection of value objects that represent the PHP code units",
  11665. "homepage": "https://github.com/sebastianbergmann/code-unit",
  11666. "support": {
  11667. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  11668. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  11669. },
  11670. "funding": [
  11671. {
  11672. "url": "https://github.com/sebastianbergmann",
  11673. "type": "github"
  11674. }
  11675. ],
  11676. "time": "2020-10-26T13:08:54+00:00"
  11677. },
  11678. {
  11679. "name": "sebastian/code-unit-reverse-lookup",
  11680. "version": "2.0.3",
  11681. "source": {
  11682. "type": "git",
  11683. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  11684. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  11685. },
  11686. "dist": {
  11687. "type": "zip",
  11688. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  11689. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  11690. "shasum": ""
  11691. },
  11692. "require": {
  11693. "php": ">=7.3"
  11694. },
  11695. "require-dev": {
  11696. "phpunit/phpunit": "^9.3"
  11697. },
  11698. "type": "library",
  11699. "extra": {
  11700. "branch-alias": {
  11701. "dev-master": "2.0-dev"
  11702. }
  11703. },
  11704. "autoload": {
  11705. "classmap": [
  11706. "src/"
  11707. ]
  11708. },
  11709. "notification-url": "https://packagist.org/downloads/",
  11710. "license": [
  11711. "BSD-3-Clause"
  11712. ],
  11713. "authors": [
  11714. {
  11715. "name": "Sebastian Bergmann",
  11716. "email": "sebastian@phpunit.de"
  11717. }
  11718. ],
  11719. "description": "Looks up which function or method a line of code belongs to",
  11720. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  11721. "support": {
  11722. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  11723. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  11724. },
  11725. "funding": [
  11726. {
  11727. "url": "https://github.com/sebastianbergmann",
  11728. "type": "github"
  11729. }
  11730. ],
  11731. "time": "2020-09-28T05:30:19+00:00"
  11732. },
  11733. {
  11734. "name": "sebastian/comparator",
  11735. "version": "4.0.8",
  11736. "source": {
  11737. "type": "git",
  11738. "url": "https://github.com/sebastianbergmann/comparator.git",
  11739. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  11740. },
  11741. "dist": {
  11742. "type": "zip",
  11743. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  11744. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  11745. "shasum": ""
  11746. },
  11747. "require": {
  11748. "php": ">=7.3",
  11749. "sebastian/diff": "^4.0",
  11750. "sebastian/exporter": "^4.0"
  11751. },
  11752. "require-dev": {
  11753. "phpunit/phpunit": "^9.3"
  11754. },
  11755. "type": "library",
  11756. "extra": {
  11757. "branch-alias": {
  11758. "dev-master": "4.0-dev"
  11759. }
  11760. },
  11761. "autoload": {
  11762. "classmap": [
  11763. "src/"
  11764. ]
  11765. },
  11766. "notification-url": "https://packagist.org/downloads/",
  11767. "license": [
  11768. "BSD-3-Clause"
  11769. ],
  11770. "authors": [
  11771. {
  11772. "name": "Sebastian Bergmann",
  11773. "email": "sebastian@phpunit.de"
  11774. },
  11775. {
  11776. "name": "Jeff Welch",
  11777. "email": "whatthejeff@gmail.com"
  11778. },
  11779. {
  11780. "name": "Volker Dusch",
  11781. "email": "github@wallbash.com"
  11782. },
  11783. {
  11784. "name": "Bernhard Schussek",
  11785. "email": "bschussek@2bepublished.at"
  11786. }
  11787. ],
  11788. "description": "Provides the functionality to compare PHP values for equality",
  11789. "homepage": "https://github.com/sebastianbergmann/comparator",
  11790. "keywords": [
  11791. "comparator",
  11792. "compare",
  11793. "equality"
  11794. ],
  11795. "support": {
  11796. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  11797. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  11798. },
  11799. "funding": [
  11800. {
  11801. "url": "https://github.com/sebastianbergmann",
  11802. "type": "github"
  11803. }
  11804. ],
  11805. "time": "2022-09-14T12:41:17+00:00"
  11806. },
  11807. {
  11808. "name": "sebastian/complexity",
  11809. "version": "2.0.3",
  11810. "source": {
  11811. "type": "git",
  11812. "url": "https://github.com/sebastianbergmann/complexity.git",
  11813. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a"
  11814. },
  11815. "dist": {
  11816. "type": "zip",
  11817. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a",
  11818. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a",
  11819. "shasum": ""
  11820. },
  11821. "require": {
  11822. "nikic/php-parser": "^4.18 || ^5.0",
  11823. "php": ">=7.3"
  11824. },
  11825. "require-dev": {
  11826. "phpunit/phpunit": "^9.3"
  11827. },
  11828. "type": "library",
  11829. "extra": {
  11830. "branch-alias": {
  11831. "dev-master": "2.0-dev"
  11832. }
  11833. },
  11834. "autoload": {
  11835. "classmap": [
  11836. "src/"
  11837. ]
  11838. },
  11839. "notification-url": "https://packagist.org/downloads/",
  11840. "license": [
  11841. "BSD-3-Clause"
  11842. ],
  11843. "authors": [
  11844. {
  11845. "name": "Sebastian Bergmann",
  11846. "email": "sebastian@phpunit.de",
  11847. "role": "lead"
  11848. }
  11849. ],
  11850. "description": "Library for calculating the complexity of PHP code units",
  11851. "homepage": "https://github.com/sebastianbergmann/complexity",
  11852. "support": {
  11853. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  11854. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3"
  11855. },
  11856. "funding": [
  11857. {
  11858. "url": "https://github.com/sebastianbergmann",
  11859. "type": "github"
  11860. }
  11861. ],
  11862. "time": "2023-12-22T06:19:30+00:00"
  11863. },
  11864. {
  11865. "name": "sebastian/diff",
  11866. "version": "4.0.5",
  11867. "source": {
  11868. "type": "git",
  11869. "url": "https://github.com/sebastianbergmann/diff.git",
  11870. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131"
  11871. },
  11872. "dist": {
  11873. "type": "zip",
  11874. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  11875. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  11876. "shasum": ""
  11877. },
  11878. "require": {
  11879. "php": ">=7.3"
  11880. },
  11881. "require-dev": {
  11882. "phpunit/phpunit": "^9.3",
  11883. "symfony/process": "^4.2 || ^5"
  11884. },
  11885. "type": "library",
  11886. "extra": {
  11887. "branch-alias": {
  11888. "dev-master": "4.0-dev"
  11889. }
  11890. },
  11891. "autoload": {
  11892. "classmap": [
  11893. "src/"
  11894. ]
  11895. },
  11896. "notification-url": "https://packagist.org/downloads/",
  11897. "license": [
  11898. "BSD-3-Clause"
  11899. ],
  11900. "authors": [
  11901. {
  11902. "name": "Sebastian Bergmann",
  11903. "email": "sebastian@phpunit.de"
  11904. },
  11905. {
  11906. "name": "Kore Nordmann",
  11907. "email": "mail@kore-nordmann.de"
  11908. }
  11909. ],
  11910. "description": "Diff implementation",
  11911. "homepage": "https://github.com/sebastianbergmann/diff",
  11912. "keywords": [
  11913. "diff",
  11914. "udiff",
  11915. "unidiff",
  11916. "unified diff"
  11917. ],
  11918. "support": {
  11919. "issues": "https://github.com/sebastianbergmann/diff/issues",
  11920. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.5"
  11921. },
  11922. "funding": [
  11923. {
  11924. "url": "https://github.com/sebastianbergmann",
  11925. "type": "github"
  11926. }
  11927. ],
  11928. "time": "2023-05-07T05:35:17+00:00"
  11929. },
  11930. {
  11931. "name": "sebastian/environment",
  11932. "version": "5.1.5",
  11933. "source": {
  11934. "type": "git",
  11935. "url": "https://github.com/sebastianbergmann/environment.git",
  11936. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  11937. },
  11938. "dist": {
  11939. "type": "zip",
  11940. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  11941. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  11942. "shasum": ""
  11943. },
  11944. "require": {
  11945. "php": ">=7.3"
  11946. },
  11947. "require-dev": {
  11948. "phpunit/phpunit": "^9.3"
  11949. },
  11950. "suggest": {
  11951. "ext-posix": "*"
  11952. },
  11953. "type": "library",
  11954. "extra": {
  11955. "branch-alias": {
  11956. "dev-master": "5.1-dev"
  11957. }
  11958. },
  11959. "autoload": {
  11960. "classmap": [
  11961. "src/"
  11962. ]
  11963. },
  11964. "notification-url": "https://packagist.org/downloads/",
  11965. "license": [
  11966. "BSD-3-Clause"
  11967. ],
  11968. "authors": [
  11969. {
  11970. "name": "Sebastian Bergmann",
  11971. "email": "sebastian@phpunit.de"
  11972. }
  11973. ],
  11974. "description": "Provides functionality to handle HHVM/PHP environments",
  11975. "homepage": "http://www.github.com/sebastianbergmann/environment",
  11976. "keywords": [
  11977. "Xdebug",
  11978. "environment",
  11979. "hhvm"
  11980. ],
  11981. "support": {
  11982. "issues": "https://github.com/sebastianbergmann/environment/issues",
  11983. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  11984. },
  11985. "funding": [
  11986. {
  11987. "url": "https://github.com/sebastianbergmann",
  11988. "type": "github"
  11989. }
  11990. ],
  11991. "time": "2023-02-03T06:03:51+00:00"
  11992. },
  11993. {
  11994. "name": "sebastian/exporter",
  11995. "version": "4.0.5",
  11996. "source": {
  11997. "type": "git",
  11998. "url": "https://github.com/sebastianbergmann/exporter.git",
  11999. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d"
  12000. },
  12001. "dist": {
  12002. "type": "zip",
  12003. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  12004. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  12005. "shasum": ""
  12006. },
  12007. "require": {
  12008. "php": ">=7.3",
  12009. "sebastian/recursion-context": "^4.0"
  12010. },
  12011. "require-dev": {
  12012. "ext-mbstring": "*",
  12013. "phpunit/phpunit": "^9.3"
  12014. },
  12015. "type": "library",
  12016. "extra": {
  12017. "branch-alias": {
  12018. "dev-master": "4.0-dev"
  12019. }
  12020. },
  12021. "autoload": {
  12022. "classmap": [
  12023. "src/"
  12024. ]
  12025. },
  12026. "notification-url": "https://packagist.org/downloads/",
  12027. "license": [
  12028. "BSD-3-Clause"
  12029. ],
  12030. "authors": [
  12031. {
  12032. "name": "Sebastian Bergmann",
  12033. "email": "sebastian@phpunit.de"
  12034. },
  12035. {
  12036. "name": "Jeff Welch",
  12037. "email": "whatthejeff@gmail.com"
  12038. },
  12039. {
  12040. "name": "Volker Dusch",
  12041. "email": "github@wallbash.com"
  12042. },
  12043. {
  12044. "name": "Adam Harvey",
  12045. "email": "aharvey@php.net"
  12046. },
  12047. {
  12048. "name": "Bernhard Schussek",
  12049. "email": "bschussek@gmail.com"
  12050. }
  12051. ],
  12052. "description": "Provides the functionality to export PHP variables for visualization",
  12053. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  12054. "keywords": [
  12055. "export",
  12056. "exporter"
  12057. ],
  12058. "support": {
  12059. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  12060. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5"
  12061. },
  12062. "funding": [
  12063. {
  12064. "url": "https://github.com/sebastianbergmann",
  12065. "type": "github"
  12066. }
  12067. ],
  12068. "time": "2022-09-14T06:03:37+00:00"
  12069. },
  12070. {
  12071. "name": "sebastian/global-state",
  12072. "version": "5.0.6",
  12073. "source": {
  12074. "type": "git",
  12075. "url": "https://github.com/sebastianbergmann/global-state.git",
  12076. "reference": "bde739e7565280bda77be70044ac1047bc007e34"
  12077. },
  12078. "dist": {
  12079. "type": "zip",
  12080. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bde739e7565280bda77be70044ac1047bc007e34",
  12081. "reference": "bde739e7565280bda77be70044ac1047bc007e34",
  12082. "shasum": ""
  12083. },
  12084. "require": {
  12085. "php": ">=7.3",
  12086. "sebastian/object-reflector": "^2.0",
  12087. "sebastian/recursion-context": "^4.0"
  12088. },
  12089. "require-dev": {
  12090. "ext-dom": "*",
  12091. "phpunit/phpunit": "^9.3"
  12092. },
  12093. "suggest": {
  12094. "ext-uopz": "*"
  12095. },
  12096. "type": "library",
  12097. "extra": {
  12098. "branch-alias": {
  12099. "dev-master": "5.0-dev"
  12100. }
  12101. },
  12102. "autoload": {
  12103. "classmap": [
  12104. "src/"
  12105. ]
  12106. },
  12107. "notification-url": "https://packagist.org/downloads/",
  12108. "license": [
  12109. "BSD-3-Clause"
  12110. ],
  12111. "authors": [
  12112. {
  12113. "name": "Sebastian Bergmann",
  12114. "email": "sebastian@phpunit.de"
  12115. }
  12116. ],
  12117. "description": "Snapshotting of global state",
  12118. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  12119. "keywords": [
  12120. "global state"
  12121. ],
  12122. "support": {
  12123. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  12124. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.6"
  12125. },
  12126. "funding": [
  12127. {
  12128. "url": "https://github.com/sebastianbergmann",
  12129. "type": "github"
  12130. }
  12131. ],
  12132. "time": "2023-08-02T09:26:13+00:00"
  12133. },
  12134. {
  12135. "name": "sebastian/lines-of-code",
  12136. "version": "1.0.4",
  12137. "source": {
  12138. "type": "git",
  12139. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  12140. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5"
  12141. },
  12142. "dist": {
  12143. "type": "zip",
  12144. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  12145. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  12146. "shasum": ""
  12147. },
  12148. "require": {
  12149. "nikic/php-parser": "^4.18 || ^5.0",
  12150. "php": ">=7.3"
  12151. },
  12152. "require-dev": {
  12153. "phpunit/phpunit": "^9.3"
  12154. },
  12155. "type": "library",
  12156. "extra": {
  12157. "branch-alias": {
  12158. "dev-master": "1.0-dev"
  12159. }
  12160. },
  12161. "autoload": {
  12162. "classmap": [
  12163. "src/"
  12164. ]
  12165. },
  12166. "notification-url": "https://packagist.org/downloads/",
  12167. "license": [
  12168. "BSD-3-Clause"
  12169. ],
  12170. "authors": [
  12171. {
  12172. "name": "Sebastian Bergmann",
  12173. "email": "sebastian@phpunit.de",
  12174. "role": "lead"
  12175. }
  12176. ],
  12177. "description": "Library for counting the lines of code in PHP source code",
  12178. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  12179. "support": {
  12180. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  12181. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4"
  12182. },
  12183. "funding": [
  12184. {
  12185. "url": "https://github.com/sebastianbergmann",
  12186. "type": "github"
  12187. }
  12188. ],
  12189. "time": "2023-12-22T06:20:34+00:00"
  12190. },
  12191. {
  12192. "name": "sebastian/object-enumerator",
  12193. "version": "4.0.4",
  12194. "source": {
  12195. "type": "git",
  12196. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  12197. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  12198. },
  12199. "dist": {
  12200. "type": "zip",
  12201. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  12202. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  12203. "shasum": ""
  12204. },
  12205. "require": {
  12206. "php": ">=7.3",
  12207. "sebastian/object-reflector": "^2.0",
  12208. "sebastian/recursion-context": "^4.0"
  12209. },
  12210. "require-dev": {
  12211. "phpunit/phpunit": "^9.3"
  12212. },
  12213. "type": "library",
  12214. "extra": {
  12215. "branch-alias": {
  12216. "dev-master": "4.0-dev"
  12217. }
  12218. },
  12219. "autoload": {
  12220. "classmap": [
  12221. "src/"
  12222. ]
  12223. },
  12224. "notification-url": "https://packagist.org/downloads/",
  12225. "license": [
  12226. "BSD-3-Clause"
  12227. ],
  12228. "authors": [
  12229. {
  12230. "name": "Sebastian Bergmann",
  12231. "email": "sebastian@phpunit.de"
  12232. }
  12233. ],
  12234. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  12235. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  12236. "support": {
  12237. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  12238. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  12239. },
  12240. "funding": [
  12241. {
  12242. "url": "https://github.com/sebastianbergmann",
  12243. "type": "github"
  12244. }
  12245. ],
  12246. "time": "2020-10-26T13:12:34+00:00"
  12247. },
  12248. {
  12249. "name": "sebastian/object-reflector",
  12250. "version": "2.0.4",
  12251. "source": {
  12252. "type": "git",
  12253. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  12254. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  12255. },
  12256. "dist": {
  12257. "type": "zip",
  12258. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  12259. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  12260. "shasum": ""
  12261. },
  12262. "require": {
  12263. "php": ">=7.3"
  12264. },
  12265. "require-dev": {
  12266. "phpunit/phpunit": "^9.3"
  12267. },
  12268. "type": "library",
  12269. "extra": {
  12270. "branch-alias": {
  12271. "dev-master": "2.0-dev"
  12272. }
  12273. },
  12274. "autoload": {
  12275. "classmap": [
  12276. "src/"
  12277. ]
  12278. },
  12279. "notification-url": "https://packagist.org/downloads/",
  12280. "license": [
  12281. "BSD-3-Clause"
  12282. ],
  12283. "authors": [
  12284. {
  12285. "name": "Sebastian Bergmann",
  12286. "email": "sebastian@phpunit.de"
  12287. }
  12288. ],
  12289. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  12290. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  12291. "support": {
  12292. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  12293. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  12294. },
  12295. "funding": [
  12296. {
  12297. "url": "https://github.com/sebastianbergmann",
  12298. "type": "github"
  12299. }
  12300. ],
  12301. "time": "2020-10-26T13:14:26+00:00"
  12302. },
  12303. {
  12304. "name": "sebastian/recursion-context",
  12305. "version": "4.0.5",
  12306. "source": {
  12307. "type": "git",
  12308. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  12309. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  12310. },
  12311. "dist": {
  12312. "type": "zip",
  12313. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  12314. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  12315. "shasum": ""
  12316. },
  12317. "require": {
  12318. "php": ">=7.3"
  12319. },
  12320. "require-dev": {
  12321. "phpunit/phpunit": "^9.3"
  12322. },
  12323. "type": "library",
  12324. "extra": {
  12325. "branch-alias": {
  12326. "dev-master": "4.0-dev"
  12327. }
  12328. },
  12329. "autoload": {
  12330. "classmap": [
  12331. "src/"
  12332. ]
  12333. },
  12334. "notification-url": "https://packagist.org/downloads/",
  12335. "license": [
  12336. "BSD-3-Clause"
  12337. ],
  12338. "authors": [
  12339. {
  12340. "name": "Sebastian Bergmann",
  12341. "email": "sebastian@phpunit.de"
  12342. },
  12343. {
  12344. "name": "Jeff Welch",
  12345. "email": "whatthejeff@gmail.com"
  12346. },
  12347. {
  12348. "name": "Adam Harvey",
  12349. "email": "aharvey@php.net"
  12350. }
  12351. ],
  12352. "description": "Provides functionality to recursively process PHP variables",
  12353. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  12354. "support": {
  12355. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  12356. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  12357. },
  12358. "funding": [
  12359. {
  12360. "url": "https://github.com/sebastianbergmann",
  12361. "type": "github"
  12362. }
  12363. ],
  12364. "time": "2023-02-03T06:07:39+00:00"
  12365. },
  12366. {
  12367. "name": "sebastian/resource-operations",
  12368. "version": "3.0.3",
  12369. "source": {
  12370. "type": "git",
  12371. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  12372. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  12373. },
  12374. "dist": {
  12375. "type": "zip",
  12376. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  12377. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  12378. "shasum": ""
  12379. },
  12380. "require": {
  12381. "php": ">=7.3"
  12382. },
  12383. "require-dev": {
  12384. "phpunit/phpunit": "^9.0"
  12385. },
  12386. "type": "library",
  12387. "extra": {
  12388. "branch-alias": {
  12389. "dev-master": "3.0-dev"
  12390. }
  12391. },
  12392. "autoload": {
  12393. "classmap": [
  12394. "src/"
  12395. ]
  12396. },
  12397. "notification-url": "https://packagist.org/downloads/",
  12398. "license": [
  12399. "BSD-3-Clause"
  12400. ],
  12401. "authors": [
  12402. {
  12403. "name": "Sebastian Bergmann",
  12404. "email": "sebastian@phpunit.de"
  12405. }
  12406. ],
  12407. "description": "Provides a list of PHP built-in functions that operate on resources",
  12408. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  12409. "support": {
  12410. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  12411. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  12412. },
  12413. "funding": [
  12414. {
  12415. "url": "https://github.com/sebastianbergmann",
  12416. "type": "github"
  12417. }
  12418. ],
  12419. "time": "2020-09-28T06:45:17+00:00"
  12420. },
  12421. {
  12422. "name": "sebastian/type",
  12423. "version": "3.2.1",
  12424. "source": {
  12425. "type": "git",
  12426. "url": "https://github.com/sebastianbergmann/type.git",
  12427. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  12428. },
  12429. "dist": {
  12430. "type": "zip",
  12431. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  12432. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  12433. "shasum": ""
  12434. },
  12435. "require": {
  12436. "php": ">=7.3"
  12437. },
  12438. "require-dev": {
  12439. "phpunit/phpunit": "^9.5"
  12440. },
  12441. "type": "library",
  12442. "extra": {
  12443. "branch-alias": {
  12444. "dev-master": "3.2-dev"
  12445. }
  12446. },
  12447. "autoload": {
  12448. "classmap": [
  12449. "src/"
  12450. ]
  12451. },
  12452. "notification-url": "https://packagist.org/downloads/",
  12453. "license": [
  12454. "BSD-3-Clause"
  12455. ],
  12456. "authors": [
  12457. {
  12458. "name": "Sebastian Bergmann",
  12459. "email": "sebastian@phpunit.de",
  12460. "role": "lead"
  12461. }
  12462. ],
  12463. "description": "Collection of value objects that represent the types of the PHP type system",
  12464. "homepage": "https://github.com/sebastianbergmann/type",
  12465. "support": {
  12466. "issues": "https://github.com/sebastianbergmann/type/issues",
  12467. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  12468. },
  12469. "funding": [
  12470. {
  12471. "url": "https://github.com/sebastianbergmann",
  12472. "type": "github"
  12473. }
  12474. ],
  12475. "time": "2023-02-03T06:13:03+00:00"
  12476. },
  12477. {
  12478. "name": "sebastian/version",
  12479. "version": "3.0.2",
  12480. "source": {
  12481. "type": "git",
  12482. "url": "https://github.com/sebastianbergmann/version.git",
  12483. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  12484. },
  12485. "dist": {
  12486. "type": "zip",
  12487. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  12488. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  12489. "shasum": ""
  12490. },
  12491. "require": {
  12492. "php": ">=7.3"
  12493. },
  12494. "type": "library",
  12495. "extra": {
  12496. "branch-alias": {
  12497. "dev-master": "3.0-dev"
  12498. }
  12499. },
  12500. "autoload": {
  12501. "classmap": [
  12502. "src/"
  12503. ]
  12504. },
  12505. "notification-url": "https://packagist.org/downloads/",
  12506. "license": [
  12507. "BSD-3-Clause"
  12508. ],
  12509. "authors": [
  12510. {
  12511. "name": "Sebastian Bergmann",
  12512. "email": "sebastian@phpunit.de",
  12513. "role": "lead"
  12514. }
  12515. ],
  12516. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  12517. "homepage": "https://github.com/sebastianbergmann/version",
  12518. "support": {
  12519. "issues": "https://github.com/sebastianbergmann/version/issues",
  12520. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  12521. },
  12522. "funding": [
  12523. {
  12524. "url": "https://github.com/sebastianbergmann",
  12525. "type": "github"
  12526. }
  12527. ],
  12528. "time": "2020-09-28T06:39:44+00:00"
  12529. },
  12530. {
  12531. "name": "theseer/tokenizer",
  12532. "version": "1.2.2",
  12533. "source": {
  12534. "type": "git",
  12535. "url": "https://github.com/theseer/tokenizer.git",
  12536. "reference": "b2ad5003ca10d4ee50a12da31de12a5774ba6b96"
  12537. },
  12538. "dist": {
  12539. "type": "zip",
  12540. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/b2ad5003ca10d4ee50a12da31de12a5774ba6b96",
  12541. "reference": "b2ad5003ca10d4ee50a12da31de12a5774ba6b96",
  12542. "shasum": ""
  12543. },
  12544. "require": {
  12545. "ext-dom": "*",
  12546. "ext-tokenizer": "*",
  12547. "ext-xmlwriter": "*",
  12548. "php": "^7.2 || ^8.0"
  12549. },
  12550. "type": "library",
  12551. "autoload": {
  12552. "classmap": [
  12553. "src/"
  12554. ]
  12555. },
  12556. "notification-url": "https://packagist.org/downloads/",
  12557. "license": [
  12558. "BSD-3-Clause"
  12559. ],
  12560. "authors": [
  12561. {
  12562. "name": "Arne Blankerts",
  12563. "email": "arne@blankerts.de",
  12564. "role": "Developer"
  12565. }
  12566. ],
  12567. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  12568. "support": {
  12569. "issues": "https://github.com/theseer/tokenizer/issues",
  12570. "source": "https://github.com/theseer/tokenizer/tree/1.2.2"
  12571. },
  12572. "funding": [
  12573. {
  12574. "url": "https://github.com/theseer",
  12575. "type": "github"
  12576. }
  12577. ],
  12578. "time": "2023-11-20T00:12:19+00:00"
  12579. }
  12580. ],
  12581. "aliases": [],
  12582. "minimum-stability": "dev",
  12583. "stability-flags": {
  12584. "getuilaboratory/getui-pushapi-php-client-v2": 20
  12585. },
  12586. "prefer-stable": true,
  12587. "prefer-lowest": false,
  12588. "platform": {
  12589. "php": "^8.0",
  12590. "ext-json": "*"
  12591. },
  12592. "platform-dev": [],
  12593. "plugin-api-version": "2.6.0"
  12594. }