composer.lock 401 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097
  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": "0dd729ca9353270648f6cb5292e5d3b2",
  8. "packages": [
  9. {
  10. "name": "adbario/php-dot-notation",
  11. "version": "2.5.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/adbario/php-dot-notation.git",
  15. "reference": "081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/adbario/php-dot-notation/zipball/081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae",
  20. "reference": "081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "ext-json": "*",
  25. "php": "^5.5 || ^7.0 || ^8.0"
  26. },
  27. "require-dev": {
  28. "phpunit/phpunit": "^4.8|^5.7|^6.6|^7.5|^8.5|^9.5",
  29. "squizlabs/php_codesniffer": "^3.6"
  30. },
  31. "type": "library",
  32. "autoload": {
  33. "files": [
  34. "src/helpers.php"
  35. ],
  36. "psr-4": {
  37. "Adbar\\": "src"
  38. }
  39. },
  40. "notification-url": "https://packagist.org/downloads/",
  41. "license": [
  42. "MIT"
  43. ],
  44. "authors": [
  45. {
  46. "name": "Riku Särkinen",
  47. "email": "riku@adbar.io"
  48. }
  49. ],
  50. "description": "PHP dot notation access to arrays",
  51. "homepage": "https://github.com/adbario/php-dot-notation",
  52. "keywords": [
  53. "ArrayAccess",
  54. "dotnotation"
  55. ],
  56. "support": {
  57. "issues": "https://github.com/adbario/php-dot-notation/issues",
  58. "source": "https://github.com/adbario/php-dot-notation/tree/2.5.0"
  59. },
  60. "time": "2022-10-14T20:31:46+00:00"
  61. },
  62. {
  63. "name": "alibabacloud/credentials",
  64. "version": "1.2.0",
  65. "source": {
  66. "type": "git",
  67. "url": "https://github.com/aliyun/credentials-php.git",
  68. "reference": "ebcda2e628180b4df235b46a86e1d014c561f5d9"
  69. },
  70. "dist": {
  71. "type": "zip",
  72. "url": "https://api.github.com/repos/aliyun/credentials-php/zipball/ebcda2e628180b4df235b46a86e1d014c561f5d9",
  73. "reference": "ebcda2e628180b4df235b46a86e1d014c561f5d9",
  74. "shasum": ""
  75. },
  76. "require": {
  77. "adbario/php-dot-notation": "^2.2",
  78. "alibabacloud/tea": "^3.0",
  79. "ext-curl": "*",
  80. "ext-json": "*",
  81. "ext-libxml": "*",
  82. "ext-mbstring": "*",
  83. "ext-openssl": "*",
  84. "ext-simplexml": "*",
  85. "ext-xmlwriter": "*",
  86. "guzzlehttp/guzzle": "^6.3|^7.0",
  87. "php": ">=5.6"
  88. },
  89. "require-dev": {
  90. "composer/composer": "^1.8",
  91. "drupal/coder": "^8.3",
  92. "ext-dom": "*",
  93. "ext-pcre": "*",
  94. "ext-sockets": "*",
  95. "ext-spl": "*",
  96. "mikey179/vfsstream": "^1.6",
  97. "monolog/monolog": "^1.24",
  98. "phpunit/phpunit": "^5.7|^6.6|^9.3",
  99. "psr/cache": "^1.0",
  100. "symfony/dotenv": "^3.4",
  101. "symfony/var-dumper": "^3.4"
  102. },
  103. "suggest": {
  104. "ext-sockets": "To use client-side monitoring"
  105. },
  106. "type": "library",
  107. "autoload": {
  108. "psr-4": {
  109. "AlibabaCloud\\Credentials\\": "src"
  110. }
  111. },
  112. "notification-url": "https://packagist.org/downloads/",
  113. "license": [
  114. "Apache-2.0"
  115. ],
  116. "authors": [
  117. {
  118. "name": "Alibaba Cloud SDK",
  119. "email": "sdk-team@alibabacloud.com",
  120. "homepage": "http://www.alibabacloud.com"
  121. }
  122. ],
  123. "description": "Alibaba Cloud Credentials for PHP",
  124. "homepage": "https://www.alibabacloud.com/",
  125. "keywords": [
  126. "alibaba",
  127. "alibabacloud",
  128. "aliyun",
  129. "client",
  130. "cloud",
  131. "credentials",
  132. "library",
  133. "sdk",
  134. "tool"
  135. ],
  136. "support": {
  137. "issues": "https://github.com/aliyun/credentials-php/issues",
  138. "source": "https://github.com/aliyun/credentials-php"
  139. },
  140. "time": "2024-10-16T13:29:17+00:00"
  141. },
  142. {
  143. "name": "alibabacloud/darabonba-openapi",
  144. "version": "0.2.13",
  145. "source": {
  146. "type": "git",
  147. "url": "https://github.com/alibabacloud-sdk-php/darabonba-openapi.git",
  148. "reference": "0213396384e2c064eefd614f3dd53636a63f987f"
  149. },
  150. "dist": {
  151. "type": "zip",
  152. "url": "https://api.github.com/repos/alibabacloud-sdk-php/darabonba-openapi/zipball/0213396384e2c064eefd614f3dd53636a63f987f",
  153. "reference": "0213396384e2c064eefd614f3dd53636a63f987f",
  154. "shasum": ""
  155. },
  156. "require": {
  157. "alibabacloud/credentials": "^1.1",
  158. "alibabacloud/gateway-spi": "^1",
  159. "alibabacloud/openapi-util": "^0.1.10|^0.2.1",
  160. "alibabacloud/tea-utils": "^0.2.21",
  161. "alibabacloud/tea-xml": "^0.2",
  162. "php": ">5.5"
  163. },
  164. "type": "library",
  165. "autoload": {
  166. "psr-4": {
  167. "Darabonba\\OpenApi\\": "src"
  168. }
  169. },
  170. "notification-url": "https://packagist.org/downloads/",
  171. "license": [
  172. "Apache-2.0"
  173. ],
  174. "authors": [
  175. {
  176. "name": "Alibaba Cloud SDK",
  177. "email": "sdk-team@alibabacloud.com"
  178. }
  179. ],
  180. "description": "Alibaba Cloud OpenApi Client",
  181. "support": {
  182. "issues": "https://github.com/alibabacloud-sdk-php/darabonba-openapi/issues",
  183. "source": "https://github.com/alibabacloud-sdk-php/darabonba-openapi/tree/0.2.13"
  184. },
  185. "time": "2024-07-15T13:11:36+00:00"
  186. },
  187. {
  188. "name": "alibabacloud/dysmsapi-20170525",
  189. "version": "3.1.1",
  190. "source": {
  191. "type": "git",
  192. "url": "https://github.com/alibabacloud-sdk-php/Dysmsapi-20170525.git",
  193. "reference": "5a301a076b29449a488607cbfbb7f12b8cc50c1f"
  194. },
  195. "dist": {
  196. "type": "zip",
  197. "url": "https://api.github.com/repos/alibabacloud-sdk-php/Dysmsapi-20170525/zipball/5a301a076b29449a488607cbfbb7f12b8cc50c1f",
  198. "reference": "5a301a076b29449a488607cbfbb7f12b8cc50c1f",
  199. "shasum": ""
  200. },
  201. "require": {
  202. "alibabacloud/darabonba-openapi": "^0.2.13",
  203. "alibabacloud/endpoint-util": "^0.1.0",
  204. "alibabacloud/openapi-util": "^0.1.10|^0.2.1",
  205. "alibabacloud/tea-utils": "^0.2.21",
  206. "php": ">5.5"
  207. },
  208. "type": "library",
  209. "autoload": {
  210. "psr-4": {
  211. "AlibabaCloud\\SDK\\Dysmsapi\\V20170525\\": "src"
  212. }
  213. },
  214. "notification-url": "https://packagist.org/downloads/",
  215. "license": [
  216. "Apache-2.0"
  217. ],
  218. "authors": [
  219. {
  220. "name": "Alibaba Cloud SDK",
  221. "email": "sdk-team@alibabacloud.com"
  222. }
  223. ],
  224. "description": "Alibaba Cloud Dysmsapi (20170525) SDK Library for PHP",
  225. "support": {
  226. "source": "https://github.com/alibabacloud-sdk-php/Dysmsapi-20170525/tree/3.1.1"
  227. },
  228. "time": "2025-01-03T17:14:56+00:00"
  229. },
  230. {
  231. "name": "alibabacloud/endpoint-util",
  232. "version": "0.1.1",
  233. "source": {
  234. "type": "git",
  235. "url": "https://github.com/alibabacloud-sdk-php/endpoint-util.git",
  236. "reference": "f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5"
  237. },
  238. "dist": {
  239. "type": "zip",
  240. "url": "https://api.github.com/repos/alibabacloud-sdk-php/endpoint-util/zipball/f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5",
  241. "reference": "f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5",
  242. "shasum": ""
  243. },
  244. "require": {
  245. "php": ">5.5"
  246. },
  247. "require-dev": {
  248. "phpunit/phpunit": "^4.8.35|^5.4.3"
  249. },
  250. "type": "library",
  251. "autoload": {
  252. "psr-4": {
  253. "AlibabaCloud\\Endpoint\\": "src"
  254. }
  255. },
  256. "notification-url": "https://packagist.org/downloads/",
  257. "license": [
  258. "Apache-2.0"
  259. ],
  260. "authors": [
  261. {
  262. "name": "Alibaba Cloud SDK",
  263. "email": "sdk-team@alibabacloud.com"
  264. }
  265. ],
  266. "description": "Alibaba Cloud Endpoint Library for PHP",
  267. "support": {
  268. "source": "https://github.com/alibabacloud-sdk-php/endpoint-util/tree/0.1.1"
  269. },
  270. "time": "2020-06-04T10:57:15+00:00"
  271. },
  272. {
  273. "name": "alibabacloud/gateway-spi",
  274. "version": "1.0.0",
  275. "source": {
  276. "type": "git",
  277. "url": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi.git",
  278. "reference": "7440f77750c329d8ab252db1d1d967314ccd1fcb"
  279. },
  280. "dist": {
  281. "type": "zip",
  282. "url": "https://api.github.com/repos/alibabacloud-sdk-php/alibabacloud-gateway-spi/zipball/7440f77750c329d8ab252db1d1d967314ccd1fcb",
  283. "reference": "7440f77750c329d8ab252db1d1d967314ccd1fcb",
  284. "shasum": ""
  285. },
  286. "require": {
  287. "alibabacloud/credentials": "^1.1",
  288. "php": ">5.5"
  289. },
  290. "type": "library",
  291. "autoload": {
  292. "psr-4": {
  293. "Darabonba\\GatewaySpi\\": "src"
  294. }
  295. },
  296. "notification-url": "https://packagist.org/downloads/",
  297. "license": [
  298. "Apache-2.0"
  299. ],
  300. "authors": [
  301. {
  302. "name": "Alibaba Cloud SDK",
  303. "email": "sdk-team@alibabacloud.com"
  304. }
  305. ],
  306. "description": "Alibaba Cloud Gateway SPI Client",
  307. "support": {
  308. "source": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi/tree/1.0.0"
  309. },
  310. "time": "2022-07-14T05:31:35+00:00"
  311. },
  312. {
  313. "name": "alibabacloud/openapi-util",
  314. "version": "0.2.1",
  315. "source": {
  316. "type": "git",
  317. "url": "https://github.com/alibabacloud-sdk-php/openapi-util.git",
  318. "reference": "f31f7bcd835e08ca24b6b8ba33637eb4eceb093a"
  319. },
  320. "dist": {
  321. "type": "zip",
  322. "url": "https://api.github.com/repos/alibabacloud-sdk-php/openapi-util/zipball/f31f7bcd835e08ca24b6b8ba33637eb4eceb093a",
  323. "reference": "f31f7bcd835e08ca24b6b8ba33637eb4eceb093a",
  324. "shasum": ""
  325. },
  326. "require": {
  327. "alibabacloud/tea": "^3.1",
  328. "alibabacloud/tea-utils": "^0.2",
  329. "lizhichao/one-sm": "^1.5",
  330. "php": ">5.5"
  331. },
  332. "require-dev": {
  333. "phpunit/phpunit": "*"
  334. },
  335. "type": "library",
  336. "autoload": {
  337. "psr-4": {
  338. "AlibabaCloud\\OpenApiUtil\\": "src"
  339. }
  340. },
  341. "notification-url": "https://packagist.org/downloads/",
  342. "license": [
  343. "Apache-2.0"
  344. ],
  345. "authors": [
  346. {
  347. "name": "Alibaba Cloud SDK",
  348. "email": "sdk-team@alibabacloud.com"
  349. }
  350. ],
  351. "description": "Alibaba Cloud OpenApi Util",
  352. "support": {
  353. "issues": "https://github.com/alibabacloud-sdk-php/openapi-util/issues",
  354. "source": "https://github.com/alibabacloud-sdk-php/openapi-util/tree/0.2.1"
  355. },
  356. "time": "2023-01-10T09:10:10+00:00"
  357. },
  358. {
  359. "name": "alibabacloud/tea",
  360. "version": "3.2.1",
  361. "source": {
  362. "type": "git",
  363. "url": "https://github.com/aliyun/tea-php.git",
  364. "reference": "1619cb96c158384f72b873e1f85de8b299c9c367"
  365. },
  366. "dist": {
  367. "type": "zip",
  368. "url": "https://api.github.com/repos/aliyun/tea-php/zipball/1619cb96c158384f72b873e1f85de8b299c9c367",
  369. "reference": "1619cb96c158384f72b873e1f85de8b299c9c367",
  370. "shasum": ""
  371. },
  372. "require": {
  373. "adbario/php-dot-notation": "^2.4",
  374. "ext-curl": "*",
  375. "ext-json": "*",
  376. "ext-libxml": "*",
  377. "ext-mbstring": "*",
  378. "ext-openssl": "*",
  379. "ext-simplexml": "*",
  380. "ext-xmlwriter": "*",
  381. "guzzlehttp/guzzle": "^6.3|^7.0",
  382. "php": ">=5.5"
  383. },
  384. "require-dev": {
  385. "phpunit/phpunit": "*",
  386. "symfony/dotenv": "^3.4",
  387. "symfony/var-dumper": "^3.4"
  388. },
  389. "suggest": {
  390. "ext-sockets": "To use client-side monitoring"
  391. },
  392. "type": "library",
  393. "autoload": {
  394. "psr-4": {
  395. "AlibabaCloud\\Tea\\": "src"
  396. }
  397. },
  398. "notification-url": "https://packagist.org/downloads/",
  399. "license": [
  400. "Apache-2.0"
  401. ],
  402. "authors": [
  403. {
  404. "name": "Alibaba Cloud SDK",
  405. "email": "sdk-team@alibabacloud.com",
  406. "homepage": "http://www.alibabacloud.com"
  407. }
  408. ],
  409. "description": "Client of Tea for PHP",
  410. "homepage": "https://www.alibabacloud.com/",
  411. "keywords": [
  412. "alibabacloud",
  413. "client",
  414. "cloud",
  415. "tea"
  416. ],
  417. "support": {
  418. "issues": "https://github.com/aliyun/tea-php/issues",
  419. "source": "https://github.com/aliyun/tea-php"
  420. },
  421. "time": "2023-05-16T06:43:41+00:00"
  422. },
  423. {
  424. "name": "alibabacloud/tea-utils",
  425. "version": "0.2.21",
  426. "source": {
  427. "type": "git",
  428. "url": "https://github.com/alibabacloud-sdk-php/tea-utils.git",
  429. "reference": "5039e45714c6456186d267f5d81a4b260a652495"
  430. },
  431. "dist": {
  432. "type": "zip",
  433. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-utils/zipball/5039e45714c6456186d267f5d81a4b260a652495",
  434. "reference": "5039e45714c6456186d267f5d81a4b260a652495",
  435. "shasum": ""
  436. },
  437. "require": {
  438. "alibabacloud/tea": "^3.1",
  439. "php": ">5.5"
  440. },
  441. "type": "library",
  442. "autoload": {
  443. "psr-4": {
  444. "AlibabaCloud\\Tea\\Utils\\": "src"
  445. }
  446. },
  447. "notification-url": "https://packagist.org/downloads/",
  448. "license": [
  449. "Apache-2.0"
  450. ],
  451. "authors": [
  452. {
  453. "name": "Alibaba Cloud SDK",
  454. "email": "sdk-team@alibabacloud.com"
  455. }
  456. ],
  457. "description": "Alibaba Cloud Tea Utils for PHP",
  458. "support": {
  459. "issues": "https://github.com/aliyun/tea-util/issues",
  460. "source": "https://github.com/aliyun/tea-util"
  461. },
  462. "time": "2024-07-05T06:05:54+00:00"
  463. },
  464. {
  465. "name": "alibabacloud/tea-xml",
  466. "version": "0.2.4",
  467. "source": {
  468. "type": "git",
  469. "url": "https://github.com/alibabacloud-sdk-php/tea-xml.git",
  470. "reference": "3e0c000bf536224eebbac913c371bef174c0a16a"
  471. },
  472. "dist": {
  473. "type": "zip",
  474. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-xml/zipball/3e0c000bf536224eebbac913c371bef174c0a16a",
  475. "reference": "3e0c000bf536224eebbac913c371bef174c0a16a",
  476. "shasum": ""
  477. },
  478. "require": {
  479. "php": ">5.5"
  480. },
  481. "require-dev": {
  482. "phpunit/phpunit": "*",
  483. "symfony/var-dumper": "*"
  484. },
  485. "type": "library",
  486. "autoload": {
  487. "psr-4": {
  488. "AlibabaCloud\\Tea\\XML\\": "src"
  489. }
  490. },
  491. "notification-url": "https://packagist.org/downloads/",
  492. "license": [
  493. "Apache-2.0"
  494. ],
  495. "authors": [
  496. {
  497. "name": "Alibaba Cloud SDK",
  498. "email": "sdk-team@alibabacloud.com"
  499. }
  500. ],
  501. "description": "Alibaba Cloud Tea XML Library for PHP",
  502. "support": {
  503. "source": "https://github.com/alibabacloud-sdk-php/tea-xml/tree/0.2.4"
  504. },
  505. "time": "2022-08-02T04:12:58+00:00"
  506. },
  507. {
  508. "name": "aliyuncs/oss-sdk-php",
  509. "version": "v2.7.2",
  510. "source": {
  511. "type": "git",
  512. "url": "https://github.com/aliyun/aliyun-oss-php-sdk.git",
  513. "reference": "483dd0b8bff5d47f0e4ffc99f6077a295c5ccbb5"
  514. },
  515. "dist": {
  516. "type": "zip",
  517. "url": "https://api.github.com/repos/aliyun/aliyun-oss-php-sdk/zipball/483dd0b8bff5d47f0e4ffc99f6077a295c5ccbb5",
  518. "reference": "483dd0b8bff5d47f0e4ffc99f6077a295c5ccbb5",
  519. "shasum": "",
  520. "mirrors": [
  521. {
  522. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  523. "preferred": true
  524. }
  525. ]
  526. },
  527. "require": {
  528. "php": ">=5.3"
  529. },
  530. "require-dev": {
  531. "php-coveralls/php-coveralls": "*",
  532. "phpunit/phpunit": "*"
  533. },
  534. "type": "library",
  535. "autoload": {
  536. "psr-4": {
  537. "OSS\\": "src/OSS"
  538. }
  539. },
  540. "notification-url": "https://packagist.org/downloads/",
  541. "license": [
  542. "MIT"
  543. ],
  544. "authors": [
  545. {
  546. "name": "Aliyuncs",
  547. "homepage": "http://www.aliyun.com"
  548. }
  549. ],
  550. "description": "Aliyun OSS SDK for PHP",
  551. "homepage": "http://www.aliyun.com/product/oss/",
  552. "support": {
  553. "issues": "https://github.com/aliyun/aliyun-oss-php-sdk/issues",
  554. "source": "https://github.com/aliyun/aliyun-oss-php-sdk/tree/v2.7.2"
  555. },
  556. "time": "2024-10-28T10:41:12+00:00"
  557. },
  558. {
  559. "name": "asm89/stack-cors",
  560. "version": "v2.1.1",
  561. "source": {
  562. "type": "git",
  563. "url": "https://github.com/asm89/stack-cors.git",
  564. "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a"
  565. },
  566. "dist": {
  567. "type": "zip",
  568. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
  569. "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
  570. "shasum": "",
  571. "mirrors": [
  572. {
  573. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  574. "preferred": true
  575. }
  576. ]
  577. },
  578. "require": {
  579. "php": "^7.2|^8.0",
  580. "symfony/http-foundation": "^4|^5|^6",
  581. "symfony/http-kernel": "^4|^5|^6"
  582. },
  583. "require-dev": {
  584. "phpunit/phpunit": "^7|^9",
  585. "squizlabs/php_codesniffer": "^3.5"
  586. },
  587. "type": "library",
  588. "extra": {
  589. "branch-alias": {
  590. "dev-master": "2.1-dev"
  591. }
  592. },
  593. "autoload": {
  594. "psr-4": {
  595. "Asm89\\Stack\\": "src/"
  596. }
  597. },
  598. "notification-url": "https://packagist.org/downloads/",
  599. "license": [
  600. "MIT"
  601. ],
  602. "authors": [
  603. {
  604. "name": "Alexander",
  605. "email": "iam.asm89@gmail.com"
  606. }
  607. ],
  608. "description": "Cross-origin resource sharing library and stack middleware",
  609. "homepage": "https://github.com/asm89/stack-cors",
  610. "keywords": [
  611. "cors",
  612. "stack"
  613. ],
  614. "support": {
  615. "issues": "https://github.com/asm89/stack-cors/issues",
  616. "source": "https://github.com/asm89/stack-cors/tree/v2.1.1"
  617. },
  618. "time": "2022-01-18T09:12:03+00:00"
  619. },
  620. {
  621. "name": "brick/math",
  622. "version": "0.9.3",
  623. "source": {
  624. "type": "git",
  625. "url": "https://github.com/brick/math.git",
  626. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae"
  627. },
  628. "dist": {
  629. "type": "zip",
  630. "url": "https://api.github.com/repos/brick/math/zipball/ca57d18f028f84f777b2168cd1911b0dee2343ae",
  631. "reference": "ca57d18f028f84f777b2168cd1911b0dee2343ae",
  632. "shasum": "",
  633. "mirrors": [
  634. {
  635. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  636. "preferred": true
  637. }
  638. ]
  639. },
  640. "require": {
  641. "ext-json": "*",
  642. "php": "^7.1 || ^8.0"
  643. },
  644. "require-dev": {
  645. "php-coveralls/php-coveralls": "^2.2",
  646. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.0",
  647. "vimeo/psalm": "4.9.2"
  648. },
  649. "type": "library",
  650. "autoload": {
  651. "psr-4": {
  652. "Brick\\Math\\": "src/"
  653. }
  654. },
  655. "notification-url": "https://packagist.org/downloads/",
  656. "license": [
  657. "MIT"
  658. ],
  659. "description": "Arbitrary-precision arithmetic library",
  660. "keywords": [
  661. "Arbitrary-precision",
  662. "BigInteger",
  663. "BigRational",
  664. "arithmetic",
  665. "bigdecimal",
  666. "bignum",
  667. "brick",
  668. "math"
  669. ],
  670. "support": {
  671. "issues": "https://github.com/brick/math/issues",
  672. "source": "https://github.com/brick/math/tree/0.9.3"
  673. },
  674. "funding": [
  675. {
  676. "url": "https://github.com/BenMorel",
  677. "type": "github"
  678. },
  679. {
  680. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  681. "type": "tidelift"
  682. }
  683. ],
  684. "time": "2021-08-15T20:50:18+00:00"
  685. },
  686. {
  687. "name": "carbonphp/carbon-doctrine-types",
  688. "version": "2.1.0",
  689. "source": {
  690. "type": "git",
  691. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  692. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb"
  693. },
  694. "dist": {
  695. "type": "zip",
  696. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  697. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  698. "shasum": "",
  699. "mirrors": [
  700. {
  701. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  702. "preferred": true
  703. }
  704. ]
  705. },
  706. "require": {
  707. "php": "^7.4 || ^8.0"
  708. },
  709. "conflict": {
  710. "doctrine/dbal": "<3.7.0 || >=4.0.0"
  711. },
  712. "require-dev": {
  713. "doctrine/dbal": "^3.7.0",
  714. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  715. "phpunit/phpunit": "^10.3"
  716. },
  717. "type": "library",
  718. "autoload": {
  719. "psr-4": {
  720. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  721. }
  722. },
  723. "notification-url": "https://packagist.org/downloads/",
  724. "license": [
  725. "MIT"
  726. ],
  727. "authors": [
  728. {
  729. "name": "KyleKatarn",
  730. "email": "kylekatarnls@gmail.com"
  731. }
  732. ],
  733. "description": "Types to use Carbon in Doctrine",
  734. "keywords": [
  735. "carbon",
  736. "date",
  737. "datetime",
  738. "doctrine",
  739. "time"
  740. ],
  741. "support": {
  742. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  743. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/2.1.0"
  744. },
  745. "funding": [
  746. {
  747. "url": "https://github.com/kylekatarnls",
  748. "type": "github"
  749. },
  750. {
  751. "url": "https://opencollective.com/Carbon",
  752. "type": "open_collective"
  753. },
  754. {
  755. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  756. "type": "tidelift"
  757. }
  758. ],
  759. "time": "2023-12-11T17:09:12+00:00"
  760. },
  761. {
  762. "name": "dflydev/dot-access-data",
  763. "version": "v3.0.2",
  764. "source": {
  765. "type": "git",
  766. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  767. "reference": "f41715465d65213d644d3141a6a93081be5d3549"
  768. },
  769. "dist": {
  770. "type": "zip",
  771. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549",
  772. "reference": "f41715465d65213d644d3141a6a93081be5d3549",
  773. "shasum": "",
  774. "mirrors": [
  775. {
  776. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  777. "preferred": true
  778. }
  779. ]
  780. },
  781. "require": {
  782. "php": "^7.1 || ^8.0"
  783. },
  784. "require-dev": {
  785. "phpstan/phpstan": "^0.12.42",
  786. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  787. "scrutinizer/ocular": "1.6.0",
  788. "squizlabs/php_codesniffer": "^3.5",
  789. "vimeo/psalm": "^4.0.0"
  790. },
  791. "type": "library",
  792. "extra": {
  793. "branch-alias": {
  794. "dev-main": "3.x-dev"
  795. }
  796. },
  797. "autoload": {
  798. "psr-4": {
  799. "Dflydev\\DotAccessData\\": "src/"
  800. }
  801. },
  802. "notification-url": "https://packagist.org/downloads/",
  803. "license": [
  804. "MIT"
  805. ],
  806. "authors": [
  807. {
  808. "name": "Dragonfly Development Inc.",
  809. "email": "info@dflydev.com",
  810. "homepage": "http://dflydev.com"
  811. },
  812. {
  813. "name": "Beau Simensen",
  814. "email": "beau@dflydev.com",
  815. "homepage": "http://beausimensen.com"
  816. },
  817. {
  818. "name": "Carlos Frutos",
  819. "email": "carlos@kiwing.it",
  820. "homepage": "https://github.com/cfrutos"
  821. },
  822. {
  823. "name": "Colin O'Dell",
  824. "email": "colinodell@gmail.com",
  825. "homepage": "https://www.colinodell.com"
  826. }
  827. ],
  828. "description": "Given a deep data structure, access data by dot notation.",
  829. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  830. "keywords": [
  831. "access",
  832. "data",
  833. "dot",
  834. "notation"
  835. ],
  836. "support": {
  837. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  838. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2"
  839. },
  840. "time": "2022-10-27T11:44:00+00:00"
  841. },
  842. {
  843. "name": "doctrine/inflector",
  844. "version": "2.0.8",
  845. "source": {
  846. "type": "git",
  847. "url": "https://github.com/doctrine/inflector.git",
  848. "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff"
  849. },
  850. "dist": {
  851. "type": "zip",
  852. "url": "https://api.github.com/repos/doctrine/inflector/zipball/f9301a5b2fb1216b2b08f02ba04dc45423db6bff",
  853. "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff",
  854. "shasum": "",
  855. "mirrors": [
  856. {
  857. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  858. "preferred": true
  859. }
  860. ]
  861. },
  862. "require": {
  863. "php": "^7.2 || ^8.0"
  864. },
  865. "require-dev": {
  866. "doctrine/coding-standard": "^11.0",
  867. "phpstan/phpstan": "^1.8",
  868. "phpstan/phpstan-phpunit": "^1.1",
  869. "phpstan/phpstan-strict-rules": "^1.3",
  870. "phpunit/phpunit": "^8.5 || ^9.5",
  871. "vimeo/psalm": "^4.25 || ^5.4"
  872. },
  873. "type": "library",
  874. "autoload": {
  875. "psr-4": {
  876. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  877. }
  878. },
  879. "notification-url": "https://packagist.org/downloads/",
  880. "license": [
  881. "MIT"
  882. ],
  883. "authors": [
  884. {
  885. "name": "Guilherme Blanco",
  886. "email": "guilhermeblanco@gmail.com"
  887. },
  888. {
  889. "name": "Roman Borschel",
  890. "email": "roman@code-factory.org"
  891. },
  892. {
  893. "name": "Benjamin Eberlei",
  894. "email": "kontakt@beberlei.de"
  895. },
  896. {
  897. "name": "Jonathan Wage",
  898. "email": "jonwage@gmail.com"
  899. },
  900. {
  901. "name": "Johannes Schmitt",
  902. "email": "schmittjoh@gmail.com"
  903. }
  904. ],
  905. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  906. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  907. "keywords": [
  908. "inflection",
  909. "inflector",
  910. "lowercase",
  911. "manipulation",
  912. "php",
  913. "plural",
  914. "singular",
  915. "strings",
  916. "uppercase",
  917. "words"
  918. ],
  919. "support": {
  920. "issues": "https://github.com/doctrine/inflector/issues",
  921. "source": "https://github.com/doctrine/inflector/tree/2.0.8"
  922. },
  923. "funding": [
  924. {
  925. "url": "https://www.doctrine-project.org/sponsorship.html",
  926. "type": "custom"
  927. },
  928. {
  929. "url": "https://www.patreon.com/phpdoctrine",
  930. "type": "patreon"
  931. },
  932. {
  933. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  934. "type": "tidelift"
  935. }
  936. ],
  937. "time": "2023-06-16T13:40:37+00:00"
  938. },
  939. {
  940. "name": "doctrine/lexer",
  941. "version": "1.2.3",
  942. "source": {
  943. "type": "git",
  944. "url": "https://github.com/doctrine/lexer.git",
  945. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  946. },
  947. "dist": {
  948. "type": "zip",
  949. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  950. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  951. "shasum": ""
  952. },
  953. "require": {
  954. "php": "^7.1 || ^8.0"
  955. },
  956. "require-dev": {
  957. "doctrine/coding-standard": "^9.0",
  958. "phpstan/phpstan": "^1.3",
  959. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  960. "vimeo/psalm": "^4.11"
  961. },
  962. "type": "library",
  963. "autoload": {
  964. "psr-4": {
  965. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  966. }
  967. },
  968. "notification-url": "https://packagist.org/downloads/",
  969. "license": [
  970. "MIT"
  971. ],
  972. "authors": [
  973. {
  974. "name": "Guilherme Blanco",
  975. "email": "guilhermeblanco@gmail.com"
  976. },
  977. {
  978. "name": "Roman Borschel",
  979. "email": "roman@code-factory.org"
  980. },
  981. {
  982. "name": "Johannes Schmitt",
  983. "email": "schmittjoh@gmail.com"
  984. }
  985. ],
  986. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  987. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  988. "keywords": [
  989. "annotations",
  990. "docblock",
  991. "lexer",
  992. "parser",
  993. "php"
  994. ],
  995. "support": {
  996. "issues": "https://github.com/doctrine/lexer/issues",
  997. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  998. },
  999. "funding": [
  1000. {
  1001. "url": "https://www.doctrine-project.org/sponsorship.html",
  1002. "type": "custom"
  1003. },
  1004. {
  1005. "url": "https://www.patreon.com/phpdoctrine",
  1006. "type": "patreon"
  1007. },
  1008. {
  1009. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1010. "type": "tidelift"
  1011. }
  1012. ],
  1013. "time": "2022-02-28T11:07:21+00:00"
  1014. },
  1015. {
  1016. "name": "dragonmantank/cron-expression",
  1017. "version": "v3.3.3",
  1018. "source": {
  1019. "type": "git",
  1020. "url": "https://github.com/dragonmantank/cron-expression.git",
  1021. "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a"
  1022. },
  1023. "dist": {
  1024. "type": "zip",
  1025. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
  1026. "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
  1027. "shasum": "",
  1028. "mirrors": [
  1029. {
  1030. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1031. "preferred": true
  1032. }
  1033. ]
  1034. },
  1035. "require": {
  1036. "php": "^7.2|^8.0",
  1037. "webmozart/assert": "^1.0"
  1038. },
  1039. "replace": {
  1040. "mtdowling/cron-expression": "^1.0"
  1041. },
  1042. "require-dev": {
  1043. "phpstan/extension-installer": "^1.0",
  1044. "phpstan/phpstan": "^1.0",
  1045. "phpstan/phpstan-webmozart-assert": "^1.0",
  1046. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  1047. },
  1048. "type": "library",
  1049. "autoload": {
  1050. "psr-4": {
  1051. "Cron\\": "src/Cron/"
  1052. }
  1053. },
  1054. "notification-url": "https://packagist.org/downloads/",
  1055. "license": [
  1056. "MIT"
  1057. ],
  1058. "authors": [
  1059. {
  1060. "name": "Chris Tankersley",
  1061. "email": "chris@ctankersley.com",
  1062. "homepage": "https://github.com/dragonmantank"
  1063. }
  1064. ],
  1065. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1066. "keywords": [
  1067. "cron",
  1068. "schedule"
  1069. ],
  1070. "support": {
  1071. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  1072. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.3"
  1073. },
  1074. "funding": [
  1075. {
  1076. "url": "https://github.com/dragonmantank",
  1077. "type": "github"
  1078. }
  1079. ],
  1080. "time": "2023-08-10T19:36:49+00:00"
  1081. },
  1082. {
  1083. "name": "easywechat-composer/easywechat-composer",
  1084. "version": "1.4.1",
  1085. "source": {
  1086. "type": "git",
  1087. "url": "https://github.com/mingyoung/easywechat-composer.git",
  1088. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd"
  1089. },
  1090. "dist": {
  1091. "type": "zip",
  1092. "url": "https://api.github.com/repos/mingyoung/easywechat-composer/zipball/3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  1093. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  1094. "shasum": ""
  1095. },
  1096. "require": {
  1097. "composer-plugin-api": "^1.0 || ^2.0",
  1098. "php": ">=7.0"
  1099. },
  1100. "require-dev": {
  1101. "composer/composer": "^1.0 || ^2.0",
  1102. "phpunit/phpunit": "^6.5 || ^7.0"
  1103. },
  1104. "type": "composer-plugin",
  1105. "extra": {
  1106. "class": "EasyWeChatComposer\\Plugin"
  1107. },
  1108. "autoload": {
  1109. "psr-4": {
  1110. "EasyWeChatComposer\\": "src/"
  1111. }
  1112. },
  1113. "notification-url": "https://packagist.org/downloads/",
  1114. "license": [
  1115. "MIT"
  1116. ],
  1117. "authors": [
  1118. {
  1119. "name": "张铭阳",
  1120. "email": "mingyoungcheung@gmail.com"
  1121. }
  1122. ],
  1123. "description": "The composer plugin for EasyWeChat",
  1124. "support": {
  1125. "issues": "https://github.com/mingyoung/easywechat-composer/issues",
  1126. "source": "https://github.com/mingyoung/easywechat-composer/tree/1.4.1"
  1127. },
  1128. "time": "2021-07-05T04:03:22+00:00"
  1129. },
  1130. {
  1131. "name": "egulias/email-validator",
  1132. "version": "2.1.25",
  1133. "source": {
  1134. "type": "git",
  1135. "url": "https://github.com/egulias/EmailValidator.git",
  1136. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  1137. },
  1138. "dist": {
  1139. "type": "zip",
  1140. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1141. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1142. "shasum": ""
  1143. },
  1144. "require": {
  1145. "doctrine/lexer": "^1.0.1",
  1146. "php": ">=5.5",
  1147. "symfony/polyfill-intl-idn": "^1.10"
  1148. },
  1149. "require-dev": {
  1150. "dominicsayers/isemail": "^3.0.7",
  1151. "phpunit/phpunit": "^4.8.36|^7.5.15",
  1152. "satooshi/php-coveralls": "^1.0.1"
  1153. },
  1154. "suggest": {
  1155. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1156. },
  1157. "type": "library",
  1158. "extra": {
  1159. "branch-alias": {
  1160. "dev-master": "2.1.x-dev"
  1161. }
  1162. },
  1163. "autoload": {
  1164. "psr-4": {
  1165. "Egulias\\EmailValidator\\": "src"
  1166. }
  1167. },
  1168. "notification-url": "https://packagist.org/downloads/",
  1169. "license": [
  1170. "MIT"
  1171. ],
  1172. "authors": [
  1173. {
  1174. "name": "Eduardo Gulias Davis"
  1175. }
  1176. ],
  1177. "description": "A library for validating emails against several RFCs",
  1178. "homepage": "https://github.com/egulias/EmailValidator",
  1179. "keywords": [
  1180. "email",
  1181. "emailvalidation",
  1182. "emailvalidator",
  1183. "validation",
  1184. "validator"
  1185. ],
  1186. "support": {
  1187. "issues": "https://github.com/egulias/EmailValidator/issues",
  1188. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  1189. },
  1190. "funding": [
  1191. {
  1192. "url": "https://github.com/egulias",
  1193. "type": "github"
  1194. }
  1195. ],
  1196. "time": "2020-12-29T14:50:06+00:00"
  1197. },
  1198. {
  1199. "name": "ezyang/htmlpurifier",
  1200. "version": "v4.16.0",
  1201. "source": {
  1202. "type": "git",
  1203. "url": "https://github.com/ezyang/htmlpurifier.git",
  1204. "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8"
  1205. },
  1206. "dist": {
  1207. "type": "zip",
  1208. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/523407fb06eb9e5f3d59889b3978d5bfe94299c8",
  1209. "reference": "523407fb06eb9e5f3d59889b3978d5bfe94299c8",
  1210. "shasum": "",
  1211. "mirrors": [
  1212. {
  1213. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1214. "preferred": true
  1215. }
  1216. ]
  1217. },
  1218. "require": {
  1219. "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"
  1220. },
  1221. "require-dev": {
  1222. "cerdic/css-tidy": "^1.7 || ^2.0",
  1223. "simpletest/simpletest": "dev-master"
  1224. },
  1225. "suggest": {
  1226. "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
  1227. "ext-bcmath": "Used for unit conversion and imagecrash protection",
  1228. "ext-iconv": "Converts text to and from non-UTF-8 encodings",
  1229. "ext-tidy": "Used for pretty-printing HTML"
  1230. },
  1231. "type": "library",
  1232. "autoload": {
  1233. "files": [
  1234. "library/HTMLPurifier.composer.php"
  1235. ],
  1236. "psr-0": {
  1237. "HTMLPurifier": "library/"
  1238. },
  1239. "exclude-from-classmap": [
  1240. "/library/HTMLPurifier/Language/"
  1241. ]
  1242. },
  1243. "notification-url": "https://packagist.org/downloads/",
  1244. "license": [
  1245. "LGPL-2.1-or-later"
  1246. ],
  1247. "authors": [
  1248. {
  1249. "name": "Edward Z. Yang",
  1250. "email": "admin@htmlpurifier.org",
  1251. "homepage": "http://ezyang.com"
  1252. }
  1253. ],
  1254. "description": "Standards compliant HTML filter written in PHP",
  1255. "homepage": "http://htmlpurifier.org/",
  1256. "keywords": [
  1257. "html"
  1258. ],
  1259. "support": {
  1260. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  1261. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.16.0"
  1262. },
  1263. "time": "2022-09-18T07:06:19+00:00"
  1264. },
  1265. {
  1266. "name": "fideloper/proxy",
  1267. "version": "4.4.2",
  1268. "source": {
  1269. "type": "git",
  1270. "url": "https://github.com/fideloper/TrustedProxy.git",
  1271. "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750"
  1272. },
  1273. "dist": {
  1274. "type": "zip",
  1275. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/a751f2bc86dd8e6cfef12dc0cbdada82f5a18750",
  1276. "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750",
  1277. "shasum": "",
  1278. "mirrors": [
  1279. {
  1280. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1281. "preferred": true
  1282. }
  1283. ]
  1284. },
  1285. "require": {
  1286. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1287. "php": ">=5.4.0"
  1288. },
  1289. "require-dev": {
  1290. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1291. "mockery/mockery": "^1.0",
  1292. "phpunit/phpunit": "^8.5.8|^9.3.3"
  1293. },
  1294. "type": "library",
  1295. "extra": {
  1296. "laravel": {
  1297. "providers": [
  1298. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  1299. ]
  1300. }
  1301. },
  1302. "autoload": {
  1303. "psr-4": {
  1304. "Fideloper\\Proxy\\": "src/"
  1305. }
  1306. },
  1307. "notification-url": "https://packagist.org/downloads/",
  1308. "license": [
  1309. "MIT"
  1310. ],
  1311. "authors": [
  1312. {
  1313. "name": "Chris Fidao",
  1314. "email": "fideloper@gmail.com"
  1315. }
  1316. ],
  1317. "description": "Set trusted proxies for Laravel",
  1318. "keywords": [
  1319. "load balancing",
  1320. "proxy",
  1321. "trusted proxy"
  1322. ],
  1323. "support": {
  1324. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  1325. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.2"
  1326. },
  1327. "time": "2022-02-09T13:33:34+00:00"
  1328. },
  1329. {
  1330. "name": "firebase/php-jwt",
  1331. "version": "v6.10.0",
  1332. "source": {
  1333. "type": "git",
  1334. "url": "https://github.com/firebase/php-jwt.git",
  1335. "reference": "a49db6f0a5033aef5143295342f1c95521b075ff"
  1336. },
  1337. "dist": {
  1338. "type": "zip",
  1339. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/a49db6f0a5033aef5143295342f1c95521b075ff",
  1340. "reference": "a49db6f0a5033aef5143295342f1c95521b075ff",
  1341. "shasum": ""
  1342. },
  1343. "require": {
  1344. "php": "^7.4||^8.0"
  1345. },
  1346. "require-dev": {
  1347. "guzzlehttp/guzzle": "^6.5||^7.4",
  1348. "phpspec/prophecy-phpunit": "^2.0",
  1349. "phpunit/phpunit": "^9.5",
  1350. "psr/cache": "^1.0||^2.0",
  1351. "psr/http-client": "^1.0",
  1352. "psr/http-factory": "^1.0"
  1353. },
  1354. "suggest": {
  1355. "ext-sodium": "Support EdDSA (Ed25519) signatures",
  1356. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  1357. },
  1358. "type": "library",
  1359. "autoload": {
  1360. "psr-4": {
  1361. "Firebase\\JWT\\": "src"
  1362. }
  1363. },
  1364. "notification-url": "https://packagist.org/downloads/",
  1365. "license": [
  1366. "BSD-3-Clause"
  1367. ],
  1368. "authors": [
  1369. {
  1370. "name": "Neuman Vong",
  1371. "email": "neuman+pear@twilio.com",
  1372. "role": "Developer"
  1373. },
  1374. {
  1375. "name": "Anant Narayanan",
  1376. "email": "anant@php.net",
  1377. "role": "Developer"
  1378. }
  1379. ],
  1380. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  1381. "homepage": "https://github.com/firebase/php-jwt",
  1382. "keywords": [
  1383. "jwt",
  1384. "php"
  1385. ],
  1386. "support": {
  1387. "issues": "https://github.com/firebase/php-jwt/issues",
  1388. "source": "https://github.com/firebase/php-jwt/tree/v6.10.0"
  1389. },
  1390. "time": "2023-12-01T16:26:39+00:00"
  1391. },
  1392. {
  1393. "name": "fruitcake/laravel-cors",
  1394. "version": "v2.2.0",
  1395. "source": {
  1396. "type": "git",
  1397. "url": "https://github.com/fruitcake/laravel-cors.git",
  1398. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534"
  1399. },
  1400. "dist": {
  1401. "type": "zip",
  1402. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/783a74f5e3431d7b9805be8afb60fd0a8f743534",
  1403. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534",
  1404. "shasum": "",
  1405. "mirrors": [
  1406. {
  1407. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1408. "preferred": true
  1409. }
  1410. ]
  1411. },
  1412. "require": {
  1413. "asm89/stack-cors": "^2.0.1",
  1414. "illuminate/contracts": "^6|^7|^8|^9",
  1415. "illuminate/support": "^6|^7|^8|^9",
  1416. "php": ">=7.2"
  1417. },
  1418. "require-dev": {
  1419. "laravel/framework": "^6|^7.24|^8",
  1420. "orchestra/testbench-dusk": "^4|^5|^6|^7",
  1421. "phpunit/phpunit": "^6|^7|^8|^9",
  1422. "squizlabs/php_codesniffer": "^3.5"
  1423. },
  1424. "type": "library",
  1425. "extra": {
  1426. "branch-alias": {
  1427. "dev-master": "2.1-dev"
  1428. },
  1429. "laravel": {
  1430. "providers": [
  1431. "Fruitcake\\Cors\\CorsServiceProvider"
  1432. ]
  1433. }
  1434. },
  1435. "autoload": {
  1436. "psr-4": {
  1437. "Fruitcake\\Cors\\": "src/"
  1438. }
  1439. },
  1440. "notification-url": "https://packagist.org/downloads/",
  1441. "license": [
  1442. "MIT"
  1443. ],
  1444. "authors": [
  1445. {
  1446. "name": "Fruitcake",
  1447. "homepage": "https://fruitcake.nl"
  1448. },
  1449. {
  1450. "name": "Barry vd. Heuvel",
  1451. "email": "barryvdh@gmail.com"
  1452. }
  1453. ],
  1454. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  1455. "keywords": [
  1456. "api",
  1457. "cors",
  1458. "crossdomain",
  1459. "laravel"
  1460. ],
  1461. "support": {
  1462. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  1463. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.2.0"
  1464. },
  1465. "funding": [
  1466. {
  1467. "url": "https://fruitcake.nl",
  1468. "type": "custom"
  1469. },
  1470. {
  1471. "url": "https://github.com/barryvdh",
  1472. "type": "github"
  1473. }
  1474. ],
  1475. "abandoned": true,
  1476. "time": "2022-02-23T14:25:13+00:00"
  1477. },
  1478. {
  1479. "name": "graham-campbell/manager",
  1480. "version": "v4.7.0",
  1481. "source": {
  1482. "type": "git",
  1483. "url": "https://github.com/GrahamCampbell/Laravel-Manager.git",
  1484. "reference": "b4cafa6491b9c92ecf7ce17521580050a27b8308"
  1485. },
  1486. "dist": {
  1487. "type": "zip",
  1488. "url": "https://api.github.com/repos/GrahamCampbell/Laravel-Manager/zipball/b4cafa6491b9c92ecf7ce17521580050a27b8308",
  1489. "reference": "b4cafa6491b9c92ecf7ce17521580050a27b8308",
  1490. "shasum": "",
  1491. "mirrors": [
  1492. {
  1493. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1494. "preferred": true
  1495. }
  1496. ]
  1497. },
  1498. "require": {
  1499. "illuminate/contracts": "^5.5 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
  1500. "illuminate/support": "^5.5 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
  1501. "php": "^7.1.3 || ^8.0"
  1502. },
  1503. "require-dev": {
  1504. "graham-campbell/analyzer": "^2.4 || ^3.0",
  1505. "graham-campbell/testbench-core": "^3.4",
  1506. "mockery/mockery": "^1.3.1",
  1507. "phpunit/phpunit": "^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.7"
  1508. },
  1509. "type": "library",
  1510. "autoload": {
  1511. "psr-4": {
  1512. "GrahamCampbell\\Manager\\": "src/"
  1513. }
  1514. },
  1515. "notification-url": "https://packagist.org/downloads/",
  1516. "license": [
  1517. "MIT"
  1518. ],
  1519. "authors": [
  1520. {
  1521. "name": "Graham Campbell",
  1522. "email": "hello@gjcampbell.co.uk",
  1523. "homepage": "https://github.com/GrahamCampbell"
  1524. }
  1525. ],
  1526. "description": "Manager Provides Some Manager Functionality For Laravel",
  1527. "keywords": [
  1528. "Graham Campbell",
  1529. "GrahamCampbell",
  1530. "Laravel Manager",
  1531. "Laravel-Manager",
  1532. "connector",
  1533. "framework",
  1534. "interface",
  1535. "laravel",
  1536. "manager"
  1537. ],
  1538. "support": {
  1539. "issues": "https://github.com/GrahamCampbell/Laravel-Manager/issues",
  1540. "source": "https://github.com/GrahamCampbell/Laravel-Manager/tree/v4.7.0"
  1541. },
  1542. "funding": [
  1543. {
  1544. "url": "https://github.com/GrahamCampbell",
  1545. "type": "github"
  1546. },
  1547. {
  1548. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/manager",
  1549. "type": "tidelift"
  1550. }
  1551. ],
  1552. "time": "2022-01-24T01:59:19+00:00"
  1553. },
  1554. {
  1555. "name": "graham-campbell/result-type",
  1556. "version": "v1.1.2",
  1557. "source": {
  1558. "type": "git",
  1559. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  1560. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862"
  1561. },
  1562. "dist": {
  1563. "type": "zip",
  1564. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/fbd48bce38f73f8a4ec8583362e732e4095e5862",
  1565. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862",
  1566. "shasum": "",
  1567. "mirrors": [
  1568. {
  1569. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1570. "preferred": true
  1571. }
  1572. ]
  1573. },
  1574. "require": {
  1575. "php": "^7.2.5 || ^8.0",
  1576. "phpoption/phpoption": "^1.9.2"
  1577. },
  1578. "require-dev": {
  1579. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  1580. },
  1581. "type": "library",
  1582. "autoload": {
  1583. "psr-4": {
  1584. "GrahamCampbell\\ResultType\\": "src/"
  1585. }
  1586. },
  1587. "notification-url": "https://packagist.org/downloads/",
  1588. "license": [
  1589. "MIT"
  1590. ],
  1591. "authors": [
  1592. {
  1593. "name": "Graham Campbell",
  1594. "email": "hello@gjcampbell.co.uk",
  1595. "homepage": "https://github.com/GrahamCampbell"
  1596. }
  1597. ],
  1598. "description": "An Implementation Of The Result Type",
  1599. "keywords": [
  1600. "Graham Campbell",
  1601. "GrahamCampbell",
  1602. "Result Type",
  1603. "Result-Type",
  1604. "result"
  1605. ],
  1606. "support": {
  1607. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  1608. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.2"
  1609. },
  1610. "funding": [
  1611. {
  1612. "url": "https://github.com/GrahamCampbell",
  1613. "type": "github"
  1614. },
  1615. {
  1616. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  1617. "type": "tidelift"
  1618. }
  1619. ],
  1620. "time": "2023-11-12T22:16:48+00:00"
  1621. },
  1622. {
  1623. "name": "guzzlehttp/guzzle",
  1624. "version": "7.8.1",
  1625. "source": {
  1626. "type": "git",
  1627. "url": "https://github.com/guzzle/guzzle.git",
  1628. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104"
  1629. },
  1630. "dist": {
  1631. "type": "zip",
  1632. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104",
  1633. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104",
  1634. "shasum": "",
  1635. "mirrors": [
  1636. {
  1637. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1638. "preferred": true
  1639. }
  1640. ]
  1641. },
  1642. "require": {
  1643. "ext-json": "*",
  1644. "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
  1645. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  1646. "php": "^7.2.5 || ^8.0",
  1647. "psr/http-client": "^1.0",
  1648. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1649. },
  1650. "provide": {
  1651. "psr/http-client-implementation": "1.0"
  1652. },
  1653. "require-dev": {
  1654. "bamarni/composer-bin-plugin": "^1.8.2",
  1655. "ext-curl": "*",
  1656. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  1657. "php-http/message-factory": "^1.1",
  1658. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  1659. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1660. },
  1661. "suggest": {
  1662. "ext-curl": "Required for CURL handler support",
  1663. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1664. "psr/log": "Required for using the Log middleware"
  1665. },
  1666. "type": "library",
  1667. "extra": {
  1668. "bamarni-bin": {
  1669. "bin-links": true,
  1670. "forward-command": false
  1671. }
  1672. },
  1673. "autoload": {
  1674. "files": [
  1675. "src/functions_include.php"
  1676. ],
  1677. "psr-4": {
  1678. "GuzzleHttp\\": "src/"
  1679. }
  1680. },
  1681. "notification-url": "https://packagist.org/downloads/",
  1682. "license": [
  1683. "MIT"
  1684. ],
  1685. "authors": [
  1686. {
  1687. "name": "Graham Campbell",
  1688. "email": "hello@gjcampbell.co.uk",
  1689. "homepage": "https://github.com/GrahamCampbell"
  1690. },
  1691. {
  1692. "name": "Michael Dowling",
  1693. "email": "mtdowling@gmail.com",
  1694. "homepage": "https://github.com/mtdowling"
  1695. },
  1696. {
  1697. "name": "Jeremy Lindblom",
  1698. "email": "jeremeamia@gmail.com",
  1699. "homepage": "https://github.com/jeremeamia"
  1700. },
  1701. {
  1702. "name": "George Mponos",
  1703. "email": "gmponos@gmail.com",
  1704. "homepage": "https://github.com/gmponos"
  1705. },
  1706. {
  1707. "name": "Tobias Nyholm",
  1708. "email": "tobias.nyholm@gmail.com",
  1709. "homepage": "https://github.com/Nyholm"
  1710. },
  1711. {
  1712. "name": "Márk Sági-Kazár",
  1713. "email": "mark.sagikazar@gmail.com",
  1714. "homepage": "https://github.com/sagikazarmark"
  1715. },
  1716. {
  1717. "name": "Tobias Schultze",
  1718. "email": "webmaster@tubo-world.de",
  1719. "homepage": "https://github.com/Tobion"
  1720. }
  1721. ],
  1722. "description": "Guzzle is a PHP HTTP client library",
  1723. "keywords": [
  1724. "client",
  1725. "curl",
  1726. "framework",
  1727. "http",
  1728. "http client",
  1729. "psr-18",
  1730. "psr-7",
  1731. "rest",
  1732. "web service"
  1733. ],
  1734. "support": {
  1735. "issues": "https://github.com/guzzle/guzzle/issues",
  1736. "source": "https://github.com/guzzle/guzzle/tree/7.8.1"
  1737. },
  1738. "funding": [
  1739. {
  1740. "url": "https://github.com/GrahamCampbell",
  1741. "type": "github"
  1742. },
  1743. {
  1744. "url": "https://github.com/Nyholm",
  1745. "type": "github"
  1746. },
  1747. {
  1748. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1749. "type": "tidelift"
  1750. }
  1751. ],
  1752. "time": "2023-12-03T20:35:24+00:00"
  1753. },
  1754. {
  1755. "name": "guzzlehttp/promises",
  1756. "version": "2.0.1",
  1757. "source": {
  1758. "type": "git",
  1759. "url": "https://github.com/guzzle/promises.git",
  1760. "reference": "111166291a0f8130081195ac4556a5587d7f1b5d"
  1761. },
  1762. "dist": {
  1763. "type": "zip",
  1764. "url": "https://api.github.com/repos/guzzle/promises/zipball/111166291a0f8130081195ac4556a5587d7f1b5d",
  1765. "reference": "111166291a0f8130081195ac4556a5587d7f1b5d",
  1766. "shasum": "",
  1767. "mirrors": [
  1768. {
  1769. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1770. "preferred": true
  1771. }
  1772. ]
  1773. },
  1774. "require": {
  1775. "php": "^7.2.5 || ^8.0"
  1776. },
  1777. "require-dev": {
  1778. "bamarni/composer-bin-plugin": "^1.8.1",
  1779. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  1780. },
  1781. "type": "library",
  1782. "extra": {
  1783. "bamarni-bin": {
  1784. "bin-links": true,
  1785. "forward-command": false
  1786. }
  1787. },
  1788. "autoload": {
  1789. "psr-4": {
  1790. "GuzzleHttp\\Promise\\": "src/"
  1791. }
  1792. },
  1793. "notification-url": "https://packagist.org/downloads/",
  1794. "license": [
  1795. "MIT"
  1796. ],
  1797. "authors": [
  1798. {
  1799. "name": "Graham Campbell",
  1800. "email": "hello@gjcampbell.co.uk",
  1801. "homepage": "https://github.com/GrahamCampbell"
  1802. },
  1803. {
  1804. "name": "Michael Dowling",
  1805. "email": "mtdowling@gmail.com",
  1806. "homepage": "https://github.com/mtdowling"
  1807. },
  1808. {
  1809. "name": "Tobias Nyholm",
  1810. "email": "tobias.nyholm@gmail.com",
  1811. "homepage": "https://github.com/Nyholm"
  1812. },
  1813. {
  1814. "name": "Tobias Schultze",
  1815. "email": "webmaster@tubo-world.de",
  1816. "homepage": "https://github.com/Tobion"
  1817. }
  1818. ],
  1819. "description": "Guzzle promises library",
  1820. "keywords": [
  1821. "promise"
  1822. ],
  1823. "support": {
  1824. "issues": "https://github.com/guzzle/promises/issues",
  1825. "source": "https://github.com/guzzle/promises/tree/2.0.1"
  1826. },
  1827. "funding": [
  1828. {
  1829. "url": "https://github.com/GrahamCampbell",
  1830. "type": "github"
  1831. },
  1832. {
  1833. "url": "https://github.com/Nyholm",
  1834. "type": "github"
  1835. },
  1836. {
  1837. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1838. "type": "tidelift"
  1839. }
  1840. ],
  1841. "time": "2023-08-03T15:11:55+00:00"
  1842. },
  1843. {
  1844. "name": "guzzlehttp/psr7",
  1845. "version": "2.6.2",
  1846. "source": {
  1847. "type": "git",
  1848. "url": "https://github.com/guzzle/psr7.git",
  1849. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221"
  1850. },
  1851. "dist": {
  1852. "type": "zip",
  1853. "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221",
  1854. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221",
  1855. "shasum": "",
  1856. "mirrors": [
  1857. {
  1858. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1859. "preferred": true
  1860. }
  1861. ]
  1862. },
  1863. "require": {
  1864. "php": "^7.2.5 || ^8.0",
  1865. "psr/http-factory": "^1.0",
  1866. "psr/http-message": "^1.1 || ^2.0",
  1867. "ralouphie/getallheaders": "^3.0"
  1868. },
  1869. "provide": {
  1870. "psr/http-factory-implementation": "1.0",
  1871. "psr/http-message-implementation": "1.0"
  1872. },
  1873. "require-dev": {
  1874. "bamarni/composer-bin-plugin": "^1.8.2",
  1875. "http-interop/http-factory-tests": "^0.9",
  1876. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  1877. },
  1878. "suggest": {
  1879. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1880. },
  1881. "type": "library",
  1882. "extra": {
  1883. "bamarni-bin": {
  1884. "bin-links": true,
  1885. "forward-command": false
  1886. }
  1887. },
  1888. "autoload": {
  1889. "psr-4": {
  1890. "GuzzleHttp\\Psr7\\": "src/"
  1891. }
  1892. },
  1893. "notification-url": "https://packagist.org/downloads/",
  1894. "license": [
  1895. "MIT"
  1896. ],
  1897. "authors": [
  1898. {
  1899. "name": "Graham Campbell",
  1900. "email": "hello@gjcampbell.co.uk",
  1901. "homepage": "https://github.com/GrahamCampbell"
  1902. },
  1903. {
  1904. "name": "Michael Dowling",
  1905. "email": "mtdowling@gmail.com",
  1906. "homepage": "https://github.com/mtdowling"
  1907. },
  1908. {
  1909. "name": "George Mponos",
  1910. "email": "gmponos@gmail.com",
  1911. "homepage": "https://github.com/gmponos"
  1912. },
  1913. {
  1914. "name": "Tobias Nyholm",
  1915. "email": "tobias.nyholm@gmail.com",
  1916. "homepage": "https://github.com/Nyholm"
  1917. },
  1918. {
  1919. "name": "Márk Sági-Kazár",
  1920. "email": "mark.sagikazar@gmail.com",
  1921. "homepage": "https://github.com/sagikazarmark"
  1922. },
  1923. {
  1924. "name": "Tobias Schultze",
  1925. "email": "webmaster@tubo-world.de",
  1926. "homepage": "https://github.com/Tobion"
  1927. },
  1928. {
  1929. "name": "Márk Sági-Kazár",
  1930. "email": "mark.sagikazar@gmail.com",
  1931. "homepage": "https://sagikazarmark.hu"
  1932. }
  1933. ],
  1934. "description": "PSR-7 message implementation that also provides common utility methods",
  1935. "keywords": [
  1936. "http",
  1937. "message",
  1938. "psr-7",
  1939. "request",
  1940. "response",
  1941. "stream",
  1942. "uri",
  1943. "url"
  1944. ],
  1945. "support": {
  1946. "issues": "https://github.com/guzzle/psr7/issues",
  1947. "source": "https://github.com/guzzle/psr7/tree/2.6.2"
  1948. },
  1949. "funding": [
  1950. {
  1951. "url": "https://github.com/GrahamCampbell",
  1952. "type": "github"
  1953. },
  1954. {
  1955. "url": "https://github.com/Nyholm",
  1956. "type": "github"
  1957. },
  1958. {
  1959. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1960. "type": "tidelift"
  1961. }
  1962. ],
  1963. "time": "2023-12-03T20:05:35+00:00"
  1964. },
  1965. {
  1966. "name": "guzzlehttp/uri-template",
  1967. "version": "v1.0.3",
  1968. "source": {
  1969. "type": "git",
  1970. "url": "https://github.com/guzzle/uri-template.git",
  1971. "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c"
  1972. },
  1973. "dist": {
  1974. "type": "zip",
  1975. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/ecea8feef63bd4fef1f037ecb288386999ecc11c",
  1976. "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c",
  1977. "shasum": "",
  1978. "mirrors": [
  1979. {
  1980. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1981. "preferred": true
  1982. }
  1983. ]
  1984. },
  1985. "require": {
  1986. "php": "^7.2.5 || ^8.0",
  1987. "symfony/polyfill-php80": "^1.24"
  1988. },
  1989. "require-dev": {
  1990. "bamarni/composer-bin-plugin": "^1.8.2",
  1991. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  1992. "uri-template/tests": "1.0.0"
  1993. },
  1994. "type": "library",
  1995. "extra": {
  1996. "bamarni-bin": {
  1997. "bin-links": true,
  1998. "forward-command": false
  1999. }
  2000. },
  2001. "autoload": {
  2002. "psr-4": {
  2003. "GuzzleHttp\\UriTemplate\\": "src"
  2004. }
  2005. },
  2006. "notification-url": "https://packagist.org/downloads/",
  2007. "license": [
  2008. "MIT"
  2009. ],
  2010. "authors": [
  2011. {
  2012. "name": "Graham Campbell",
  2013. "email": "hello@gjcampbell.co.uk",
  2014. "homepage": "https://github.com/GrahamCampbell"
  2015. },
  2016. {
  2017. "name": "Michael Dowling",
  2018. "email": "mtdowling@gmail.com",
  2019. "homepage": "https://github.com/mtdowling"
  2020. },
  2021. {
  2022. "name": "George Mponos",
  2023. "email": "gmponos@gmail.com",
  2024. "homepage": "https://github.com/gmponos"
  2025. },
  2026. {
  2027. "name": "Tobias Nyholm",
  2028. "email": "tobias.nyholm@gmail.com",
  2029. "homepage": "https://github.com/Nyholm"
  2030. }
  2031. ],
  2032. "description": "A polyfill class for uri_template of PHP",
  2033. "keywords": [
  2034. "guzzlehttp",
  2035. "uri-template"
  2036. ],
  2037. "support": {
  2038. "issues": "https://github.com/guzzle/uri-template/issues",
  2039. "source": "https://github.com/guzzle/uri-template/tree/v1.0.3"
  2040. },
  2041. "funding": [
  2042. {
  2043. "url": "https://github.com/GrahamCampbell",
  2044. "type": "github"
  2045. },
  2046. {
  2047. "url": "https://github.com/Nyholm",
  2048. "type": "github"
  2049. },
  2050. {
  2051. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  2052. "type": "tidelift"
  2053. }
  2054. ],
  2055. "time": "2023-12-03T19:50:20+00:00"
  2056. },
  2057. {
  2058. "name": "hashids/hashids",
  2059. "version": "4.1.0",
  2060. "source": {
  2061. "type": "git",
  2062. "url": "https://github.com/vinkla/hashids.git",
  2063. "reference": "8cab111f78e0bd9c76953b082919fc9e251761be"
  2064. },
  2065. "dist": {
  2066. "type": "zip",
  2067. "url": "https://api.github.com/repos/vinkla/hashids/zipball/8cab111f78e0bd9c76953b082919fc9e251761be",
  2068. "reference": "8cab111f78e0bd9c76953b082919fc9e251761be",
  2069. "shasum": "",
  2070. "mirrors": [
  2071. {
  2072. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2073. "preferred": true
  2074. }
  2075. ]
  2076. },
  2077. "require": {
  2078. "ext-mbstring": "*",
  2079. "php": "^7.2 || ^8.0"
  2080. },
  2081. "require-dev": {
  2082. "phpunit/phpunit": "^8.0 || ^9.4",
  2083. "squizlabs/php_codesniffer": "^3.5"
  2084. },
  2085. "suggest": {
  2086. "ext-bcmath": "Required to use BC Math arbitrary precision mathematics (*).",
  2087. "ext-gmp": "Required to use GNU multiple precision mathematics (*)."
  2088. },
  2089. "type": "library",
  2090. "extra": {
  2091. "branch-alias": {
  2092. "dev-master": "4.1-dev"
  2093. }
  2094. },
  2095. "autoload": {
  2096. "psr-4": {
  2097. "Hashids\\": "src/"
  2098. }
  2099. },
  2100. "notification-url": "https://packagist.org/downloads/",
  2101. "license": [
  2102. "MIT"
  2103. ],
  2104. "authors": [
  2105. {
  2106. "name": "Ivan Akimov",
  2107. "email": "ivan@barreleye.com"
  2108. },
  2109. {
  2110. "name": "Vincent Klaiber",
  2111. "email": "hello@doubledip.se"
  2112. }
  2113. ],
  2114. "description": "Generate short, unique, non-sequential ids (like YouTube and Bitly) from numbers",
  2115. "homepage": "https://hashids.org/php",
  2116. "keywords": [
  2117. "bitly",
  2118. "decode",
  2119. "encode",
  2120. "hash",
  2121. "hashid",
  2122. "hashids",
  2123. "ids",
  2124. "obfuscate",
  2125. "youtube"
  2126. ],
  2127. "support": {
  2128. "issues": "https://github.com/vinkla/hashids/issues",
  2129. "source": "https://github.com/vinkla/hashids/tree/4.1.0"
  2130. },
  2131. "time": "2020-11-26T19:24:33+00:00"
  2132. },
  2133. {
  2134. "name": "intervention/image",
  2135. "version": "2.7.2",
  2136. "source": {
  2137. "type": "git",
  2138. "url": "https://github.com/Intervention/image.git",
  2139. "reference": "04be355f8d6734c826045d02a1079ad658322dad"
  2140. },
  2141. "dist": {
  2142. "type": "zip",
  2143. "url": "https://api.github.com/repos/Intervention/image/zipball/04be355f8d6734c826045d02a1079ad658322dad",
  2144. "reference": "04be355f8d6734c826045d02a1079ad658322dad",
  2145. "shasum": "",
  2146. "mirrors": [
  2147. {
  2148. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2149. "preferred": true
  2150. }
  2151. ]
  2152. },
  2153. "require": {
  2154. "ext-fileinfo": "*",
  2155. "guzzlehttp/psr7": "~1.1 || ^2.0",
  2156. "php": ">=5.4.0"
  2157. },
  2158. "require-dev": {
  2159. "mockery/mockery": "~0.9.2",
  2160. "phpunit/phpunit": "^4.8 || ^5.7 || ^7.5.15"
  2161. },
  2162. "suggest": {
  2163. "ext-gd": "to use GD library based image processing.",
  2164. "ext-imagick": "to use Imagick based image processing.",
  2165. "intervention/imagecache": "Caching extension for the Intervention Image library"
  2166. },
  2167. "type": "library",
  2168. "extra": {
  2169. "branch-alias": {
  2170. "dev-master": "2.4-dev"
  2171. },
  2172. "laravel": {
  2173. "providers": [
  2174. "Intervention\\Image\\ImageServiceProvider"
  2175. ],
  2176. "aliases": {
  2177. "Image": "Intervention\\Image\\Facades\\Image"
  2178. }
  2179. }
  2180. },
  2181. "autoload": {
  2182. "psr-4": {
  2183. "Intervention\\Image\\": "src/Intervention/Image"
  2184. }
  2185. },
  2186. "notification-url": "https://packagist.org/downloads/",
  2187. "license": [
  2188. "MIT"
  2189. ],
  2190. "authors": [
  2191. {
  2192. "name": "Oliver Vogel",
  2193. "email": "oliver@intervention.io",
  2194. "homepage": "https://intervention.io/"
  2195. }
  2196. ],
  2197. "description": "Image handling and manipulation library with support for Laravel integration",
  2198. "homepage": "http://image.intervention.io/",
  2199. "keywords": [
  2200. "gd",
  2201. "image",
  2202. "imagick",
  2203. "laravel",
  2204. "thumbnail",
  2205. "watermark"
  2206. ],
  2207. "support": {
  2208. "issues": "https://github.com/Intervention/image/issues",
  2209. "source": "https://github.com/Intervention/image/tree/2.7.2"
  2210. },
  2211. "funding": [
  2212. {
  2213. "url": "https://paypal.me/interventionio",
  2214. "type": "custom"
  2215. },
  2216. {
  2217. "url": "https://github.com/Intervention",
  2218. "type": "github"
  2219. }
  2220. ],
  2221. "time": "2022-05-21T17:30:32+00:00"
  2222. },
  2223. {
  2224. "name": "ixudra/curl",
  2225. "version": "6.22.1",
  2226. "source": {
  2227. "type": "git",
  2228. "url": "https://github.com/ixudra/curl.git",
  2229. "reference": "0b2cc89ed5eb91d617295e7e745f3acd3ab47180"
  2230. },
  2231. "dist": {
  2232. "type": "zip",
  2233. "url": "https://api.github.com/repos/ixudra/curl/zipball/0b2cc89ed5eb91d617295e7e745f3acd3ab47180",
  2234. "reference": "0b2cc89ed5eb91d617295e7e745f3acd3ab47180",
  2235. "shasum": "",
  2236. "mirrors": [
  2237. {
  2238. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2239. "preferred": true
  2240. }
  2241. ]
  2242. },
  2243. "require": {
  2244. "ext-curl": "*",
  2245. "illuminate/support": ">=4.0",
  2246. "php": ">=5.4.0"
  2247. },
  2248. "type": "library",
  2249. "extra": {
  2250. "laravel": {
  2251. "providers": [
  2252. "Ixudra\\Curl\\CurlServiceProvider"
  2253. ],
  2254. "aliases": {
  2255. "Curl": "Ixudra\\Curl\\Facades\\Curl"
  2256. }
  2257. }
  2258. },
  2259. "autoload": {
  2260. "psr-4": {
  2261. "Ixudra\\Curl\\": "src/"
  2262. }
  2263. },
  2264. "notification-url": "https://packagist.org/downloads/",
  2265. "license": [
  2266. "MIT"
  2267. ],
  2268. "authors": [
  2269. {
  2270. "name": "Jan Oris",
  2271. "email": "jan.oris@ixudra.be"
  2272. }
  2273. ],
  2274. "description": "Custom PHP Curl library for the Laravel framework - developed by Ixudra",
  2275. "homepage": "http://ixudra.be",
  2276. "keywords": [
  2277. "Ixudra",
  2278. "curl",
  2279. "laravel"
  2280. ],
  2281. "support": {
  2282. "issues": "https://github.com/ixudra/curl/issues",
  2283. "source": "https://github.com/ixudra/curl/tree/6.22.1"
  2284. },
  2285. "time": "2022-07-31T09:58:52+00:00"
  2286. },
  2287. {
  2288. "name": "kra8/laravel-snowflake",
  2289. "version": "v2.1.0",
  2290. "source": {
  2291. "type": "git",
  2292. "url": "https://github.com/kra8/laravel-snowflake.git",
  2293. "reference": "c56250c9e5b75eb26864f298039a74720b2ab1ed"
  2294. },
  2295. "dist": {
  2296. "type": "zip",
  2297. "url": "https://api.github.com/repos/kra8/laravel-snowflake/zipball/c56250c9e5b75eb26864f298039a74720b2ab1ed",
  2298. "reference": "c56250c9e5b75eb26864f298039a74720b2ab1ed",
  2299. "shasum": "",
  2300. "mirrors": [
  2301. {
  2302. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2303. "preferred": true
  2304. }
  2305. ]
  2306. },
  2307. "require": {
  2308. "illuminate/support": "^6.3|^7.0|^8.0|^9.0",
  2309. "php": "^7.2.5|^8.0"
  2310. },
  2311. "require-dev": {
  2312. "orchestra/testbench": "^5.0|^6.0|^7.0",
  2313. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2314. },
  2315. "type": "library",
  2316. "extra": {
  2317. "laravel": {
  2318. "providers": [
  2319. "Kra8\\Snowflake\\Providers\\LaravelServiceProvider"
  2320. ]
  2321. }
  2322. },
  2323. "autoload": {
  2324. "psr-4": {
  2325. "Kra8\\Snowflake\\": "src/"
  2326. }
  2327. },
  2328. "notification-url": "https://packagist.org/downloads/",
  2329. "license": [
  2330. "MIT"
  2331. ],
  2332. "authors": [
  2333. {
  2334. "name": "Koki Asai",
  2335. "email": "me@kra.dev"
  2336. }
  2337. ],
  2338. "description": "Snowflake for Laravel and Lumen.",
  2339. "homepage": "https://github.com/kra8/laravel-snowflake",
  2340. "keywords": [
  2341. "laravel",
  2342. "lumen",
  2343. "php",
  2344. "snowflake"
  2345. ],
  2346. "support": {
  2347. "issues": "https://github.com/kra8/laravel-snowflake/issues",
  2348. "source": "https://github.com/kra8/laravel-snowflake/tree/v2.1.0"
  2349. },
  2350. "time": "2022-02-28T04:04:37+00:00"
  2351. },
  2352. {
  2353. "name": "laravel/framework",
  2354. "version": "v8.83.27",
  2355. "source": {
  2356. "type": "git",
  2357. "url": "https://github.com/laravel/framework.git",
  2358. "reference": "e1afe088b4ca613fb96dc57e6d8dbcb8cc2c6b49"
  2359. },
  2360. "dist": {
  2361. "type": "zip",
  2362. "url": "https://api.github.com/repos/laravel/framework/zipball/e1afe088b4ca613fb96dc57e6d8dbcb8cc2c6b49",
  2363. "reference": "e1afe088b4ca613fb96dc57e6d8dbcb8cc2c6b49",
  2364. "shasum": ""
  2365. },
  2366. "require": {
  2367. "doctrine/inflector": "^1.4|^2.0",
  2368. "dragonmantank/cron-expression": "^3.0.2",
  2369. "egulias/email-validator": "^2.1.10",
  2370. "ext-json": "*",
  2371. "ext-mbstring": "*",
  2372. "ext-openssl": "*",
  2373. "laravel/serializable-closure": "^1.0",
  2374. "league/commonmark": "^1.3|^2.0.2",
  2375. "league/flysystem": "^1.1",
  2376. "monolog/monolog": "^2.0",
  2377. "nesbot/carbon": "^2.53.1",
  2378. "opis/closure": "^3.6",
  2379. "php": "^7.3|^8.0",
  2380. "psr/container": "^1.0",
  2381. "psr/log": "^1.0|^2.0",
  2382. "psr/simple-cache": "^1.0",
  2383. "ramsey/uuid": "^4.2.2",
  2384. "swiftmailer/swiftmailer": "^6.3",
  2385. "symfony/console": "^5.4",
  2386. "symfony/error-handler": "^5.4",
  2387. "symfony/finder": "^5.4",
  2388. "symfony/http-foundation": "^5.4",
  2389. "symfony/http-kernel": "^5.4",
  2390. "symfony/mime": "^5.4",
  2391. "symfony/process": "^5.4",
  2392. "symfony/routing": "^5.4",
  2393. "symfony/var-dumper": "^5.4",
  2394. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  2395. "vlucas/phpdotenv": "^5.4.1",
  2396. "voku/portable-ascii": "^1.6.1"
  2397. },
  2398. "conflict": {
  2399. "tightenco/collect": "<5.5.33"
  2400. },
  2401. "provide": {
  2402. "psr/container-implementation": "1.0",
  2403. "psr/simple-cache-implementation": "1.0"
  2404. },
  2405. "replace": {
  2406. "illuminate/auth": "self.version",
  2407. "illuminate/broadcasting": "self.version",
  2408. "illuminate/bus": "self.version",
  2409. "illuminate/cache": "self.version",
  2410. "illuminate/collections": "self.version",
  2411. "illuminate/config": "self.version",
  2412. "illuminate/console": "self.version",
  2413. "illuminate/container": "self.version",
  2414. "illuminate/contracts": "self.version",
  2415. "illuminate/cookie": "self.version",
  2416. "illuminate/database": "self.version",
  2417. "illuminate/encryption": "self.version",
  2418. "illuminate/events": "self.version",
  2419. "illuminate/filesystem": "self.version",
  2420. "illuminate/hashing": "self.version",
  2421. "illuminate/http": "self.version",
  2422. "illuminate/log": "self.version",
  2423. "illuminate/macroable": "self.version",
  2424. "illuminate/mail": "self.version",
  2425. "illuminate/notifications": "self.version",
  2426. "illuminate/pagination": "self.version",
  2427. "illuminate/pipeline": "self.version",
  2428. "illuminate/queue": "self.version",
  2429. "illuminate/redis": "self.version",
  2430. "illuminate/routing": "self.version",
  2431. "illuminate/session": "self.version",
  2432. "illuminate/support": "self.version",
  2433. "illuminate/testing": "self.version",
  2434. "illuminate/translation": "self.version",
  2435. "illuminate/validation": "self.version",
  2436. "illuminate/view": "self.version"
  2437. },
  2438. "require-dev": {
  2439. "aws/aws-sdk-php": "^3.198.1",
  2440. "doctrine/dbal": "^2.13.3|^3.1.4",
  2441. "filp/whoops": "^2.14.3",
  2442. "guzzlehttp/guzzle": "^6.5.5|^7.0.1",
  2443. "league/flysystem-cached-adapter": "^1.0",
  2444. "mockery/mockery": "^1.4.4",
  2445. "orchestra/testbench-core": "^6.27",
  2446. "pda/pheanstalk": "^4.0",
  2447. "phpunit/phpunit": "^8.5.19|^9.5.8",
  2448. "predis/predis": "^1.1.9",
  2449. "symfony/cache": "^5.4"
  2450. },
  2451. "suggest": {
  2452. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  2453. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.198.1).",
  2454. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  2455. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
  2456. "ext-bcmath": "Required to use the multiple_of validation rule.",
  2457. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2458. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  2459. "ext-memcached": "Required to use the memcache cache driver.",
  2460. "ext-pcntl": "Required to use all features of the queue worker.",
  2461. "ext-posix": "Required to use all features of the queue worker.",
  2462. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  2463. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2464. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  2465. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.5.5|^7.0.1).",
  2466. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  2467. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  2468. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  2469. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  2470. "mockery/mockery": "Required to use mocking (^1.4.4).",
  2471. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  2472. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  2473. "phpunit/phpunit": "Required to use assertions and run tests (^8.5.19|^9.5.8).",
  2474. "predis/predis": "Required to use the predis connector (^1.1.9).",
  2475. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  2476. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0|^5.0|^6.0|^7.0).",
  2477. "symfony/cache": "Required to PSR-6 cache bridge (^5.4).",
  2478. "symfony/filesystem": "Required to enable support for relative symbolic links (^5.4).",
  2479. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  2480. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  2481. },
  2482. "type": "library",
  2483. "extra": {
  2484. "branch-alias": {
  2485. "dev-master": "8.x-dev"
  2486. }
  2487. },
  2488. "autoload": {
  2489. "files": [
  2490. "src/Illuminate/Collections/helpers.php",
  2491. "src/Illuminate/Events/functions.php",
  2492. "src/Illuminate/Foundation/helpers.php",
  2493. "src/Illuminate/Support/helpers.php"
  2494. ],
  2495. "psr-4": {
  2496. "Illuminate\\": "src/Illuminate/",
  2497. "Illuminate\\Support\\": [
  2498. "src/Illuminate/Macroable/",
  2499. "src/Illuminate/Collections/"
  2500. ]
  2501. }
  2502. },
  2503. "notification-url": "https://packagist.org/downloads/",
  2504. "license": [
  2505. "MIT"
  2506. ],
  2507. "authors": [
  2508. {
  2509. "name": "Taylor Otwell",
  2510. "email": "taylor@laravel.com"
  2511. }
  2512. ],
  2513. "description": "The Laravel Framework.",
  2514. "homepage": "https://laravel.com",
  2515. "keywords": [
  2516. "framework",
  2517. "laravel"
  2518. ],
  2519. "support": {
  2520. "issues": "https://github.com/laravel/framework/issues",
  2521. "source": "https://github.com/laravel/framework"
  2522. },
  2523. "time": "2022-12-08T15:28:55+00:00"
  2524. },
  2525. {
  2526. "name": "laravel/serializable-closure",
  2527. "version": "v1.3.3",
  2528. "source": {
  2529. "type": "git",
  2530. "url": "https://github.com/laravel/serializable-closure.git",
  2531. "reference": "3dbf8a8e914634c48d389c1234552666b3d43754"
  2532. },
  2533. "dist": {
  2534. "type": "zip",
  2535. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/3dbf8a8e914634c48d389c1234552666b3d43754",
  2536. "reference": "3dbf8a8e914634c48d389c1234552666b3d43754",
  2537. "shasum": "",
  2538. "mirrors": [
  2539. {
  2540. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2541. "preferred": true
  2542. }
  2543. ]
  2544. },
  2545. "require": {
  2546. "php": "^7.3|^8.0"
  2547. },
  2548. "require-dev": {
  2549. "nesbot/carbon": "^2.61",
  2550. "pestphp/pest": "^1.21.3",
  2551. "phpstan/phpstan": "^1.8.2",
  2552. "symfony/var-dumper": "^5.4.11"
  2553. },
  2554. "type": "library",
  2555. "extra": {
  2556. "branch-alias": {
  2557. "dev-master": "1.x-dev"
  2558. }
  2559. },
  2560. "autoload": {
  2561. "psr-4": {
  2562. "Laravel\\SerializableClosure\\": "src/"
  2563. }
  2564. },
  2565. "notification-url": "https://packagist.org/downloads/",
  2566. "license": [
  2567. "MIT"
  2568. ],
  2569. "authors": [
  2570. {
  2571. "name": "Taylor Otwell",
  2572. "email": "taylor@laravel.com"
  2573. },
  2574. {
  2575. "name": "Nuno Maduro",
  2576. "email": "nuno@laravel.com"
  2577. }
  2578. ],
  2579. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  2580. "keywords": [
  2581. "closure",
  2582. "laravel",
  2583. "serializable"
  2584. ],
  2585. "support": {
  2586. "issues": "https://github.com/laravel/serializable-closure/issues",
  2587. "source": "https://github.com/laravel/serializable-closure"
  2588. },
  2589. "time": "2023-11-08T14:08:06+00:00"
  2590. },
  2591. {
  2592. "name": "laravel/tinker",
  2593. "version": "v2.9.0",
  2594. "source": {
  2595. "type": "git",
  2596. "url": "https://github.com/laravel/tinker.git",
  2597. "reference": "502e0fe3f0415d06d5db1f83a472f0f3b754bafe"
  2598. },
  2599. "dist": {
  2600. "type": "zip",
  2601. "url": "https://api.github.com/repos/laravel/tinker/zipball/502e0fe3f0415d06d5db1f83a472f0f3b754bafe",
  2602. "reference": "502e0fe3f0415d06d5db1f83a472f0f3b754bafe",
  2603. "shasum": "",
  2604. "mirrors": [
  2605. {
  2606. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2607. "preferred": true
  2608. }
  2609. ]
  2610. },
  2611. "require": {
  2612. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2613. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2614. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2615. "php": "^7.2.5|^8.0",
  2616. "psy/psysh": "^0.11.1|^0.12.0",
  2617. "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0"
  2618. },
  2619. "require-dev": {
  2620. "mockery/mockery": "~1.3.3|^1.4.2",
  2621. "phpstan/phpstan": "^1.10",
  2622. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2623. },
  2624. "suggest": {
  2625. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0)."
  2626. },
  2627. "type": "library",
  2628. "extra": {
  2629. "laravel": {
  2630. "providers": [
  2631. "Laravel\\Tinker\\TinkerServiceProvider"
  2632. ]
  2633. }
  2634. },
  2635. "autoload": {
  2636. "psr-4": {
  2637. "Laravel\\Tinker\\": "src/"
  2638. }
  2639. },
  2640. "notification-url": "https://packagist.org/downloads/",
  2641. "license": [
  2642. "MIT"
  2643. ],
  2644. "authors": [
  2645. {
  2646. "name": "Taylor Otwell",
  2647. "email": "taylor@laravel.com"
  2648. }
  2649. ],
  2650. "description": "Powerful REPL for the Laravel framework.",
  2651. "keywords": [
  2652. "REPL",
  2653. "Tinker",
  2654. "laravel",
  2655. "psysh"
  2656. ],
  2657. "support": {
  2658. "issues": "https://github.com/laravel/tinker/issues",
  2659. "source": "https://github.com/laravel/tinker/tree/v2.9.0"
  2660. },
  2661. "time": "2024-01-04T16:10:04+00:00"
  2662. },
  2663. {
  2664. "name": "league/commonmark",
  2665. "version": "2.4.1",
  2666. "source": {
  2667. "type": "git",
  2668. "url": "https://github.com/thephpleague/commonmark.git",
  2669. "reference": "3669d6d5f7a47a93c08ddff335e6d945481a1dd5"
  2670. },
  2671. "dist": {
  2672. "type": "zip",
  2673. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/3669d6d5f7a47a93c08ddff335e6d945481a1dd5",
  2674. "reference": "3669d6d5f7a47a93c08ddff335e6d945481a1dd5",
  2675. "shasum": "",
  2676. "mirrors": [
  2677. {
  2678. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2679. "preferred": true
  2680. }
  2681. ]
  2682. },
  2683. "require": {
  2684. "ext-mbstring": "*",
  2685. "league/config": "^1.1.1",
  2686. "php": "^7.4 || ^8.0",
  2687. "psr/event-dispatcher": "^1.0",
  2688. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  2689. "symfony/polyfill-php80": "^1.16"
  2690. },
  2691. "require-dev": {
  2692. "cebe/markdown": "^1.0",
  2693. "commonmark/cmark": "0.30.0",
  2694. "commonmark/commonmark.js": "0.30.0",
  2695. "composer/package-versions-deprecated": "^1.8",
  2696. "embed/embed": "^4.4",
  2697. "erusev/parsedown": "^1.0",
  2698. "ext-json": "*",
  2699. "github/gfm": "0.29.0",
  2700. "michelf/php-markdown": "^1.4 || ^2.0",
  2701. "nyholm/psr7": "^1.5",
  2702. "phpstan/phpstan": "^1.8.2",
  2703. "phpunit/phpunit": "^9.5.21",
  2704. "scrutinizer/ocular": "^1.8.1",
  2705. "symfony/finder": "^5.3 | ^6.0",
  2706. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0",
  2707. "unleashedtech/php-coding-standard": "^3.1.1",
  2708. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  2709. },
  2710. "suggest": {
  2711. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  2712. },
  2713. "type": "library",
  2714. "extra": {
  2715. "branch-alias": {
  2716. "dev-main": "2.5-dev"
  2717. }
  2718. },
  2719. "autoload": {
  2720. "psr-4": {
  2721. "League\\CommonMark\\": "src"
  2722. }
  2723. },
  2724. "notification-url": "https://packagist.org/downloads/",
  2725. "license": [
  2726. "BSD-3-Clause"
  2727. ],
  2728. "authors": [
  2729. {
  2730. "name": "Colin O'Dell",
  2731. "email": "colinodell@gmail.com",
  2732. "homepage": "https://www.colinodell.com",
  2733. "role": "Lead Developer"
  2734. }
  2735. ],
  2736. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  2737. "homepage": "https://commonmark.thephpleague.com",
  2738. "keywords": [
  2739. "commonmark",
  2740. "flavored",
  2741. "gfm",
  2742. "github",
  2743. "github-flavored",
  2744. "markdown",
  2745. "md",
  2746. "parser"
  2747. ],
  2748. "support": {
  2749. "docs": "https://commonmark.thephpleague.com/",
  2750. "forum": "https://github.com/thephpleague/commonmark/discussions",
  2751. "issues": "https://github.com/thephpleague/commonmark/issues",
  2752. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2753. "source": "https://github.com/thephpleague/commonmark"
  2754. },
  2755. "funding": [
  2756. {
  2757. "url": "https://www.colinodell.com/sponsor",
  2758. "type": "custom"
  2759. },
  2760. {
  2761. "url": "https://www.paypal.me/colinpodell/10.00",
  2762. "type": "custom"
  2763. },
  2764. {
  2765. "url": "https://github.com/colinodell",
  2766. "type": "github"
  2767. },
  2768. {
  2769. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2770. "type": "tidelift"
  2771. }
  2772. ],
  2773. "time": "2023-08-30T16:55:00+00:00"
  2774. },
  2775. {
  2776. "name": "league/config",
  2777. "version": "v1.2.0",
  2778. "source": {
  2779. "type": "git",
  2780. "url": "https://github.com/thephpleague/config.git",
  2781. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  2782. },
  2783. "dist": {
  2784. "type": "zip",
  2785. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2786. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2787. "shasum": "",
  2788. "mirrors": [
  2789. {
  2790. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2791. "preferred": true
  2792. }
  2793. ]
  2794. },
  2795. "require": {
  2796. "dflydev/dot-access-data": "^3.0.1",
  2797. "nette/schema": "^1.2",
  2798. "php": "^7.4 || ^8.0"
  2799. },
  2800. "require-dev": {
  2801. "phpstan/phpstan": "^1.8.2",
  2802. "phpunit/phpunit": "^9.5.5",
  2803. "scrutinizer/ocular": "^1.8.1",
  2804. "unleashedtech/php-coding-standard": "^3.1",
  2805. "vimeo/psalm": "^4.7.3"
  2806. },
  2807. "type": "library",
  2808. "extra": {
  2809. "branch-alias": {
  2810. "dev-main": "1.2-dev"
  2811. }
  2812. },
  2813. "autoload": {
  2814. "psr-4": {
  2815. "League\\Config\\": "src"
  2816. }
  2817. },
  2818. "notification-url": "https://packagist.org/downloads/",
  2819. "license": [
  2820. "BSD-3-Clause"
  2821. ],
  2822. "authors": [
  2823. {
  2824. "name": "Colin O'Dell",
  2825. "email": "colinodell@gmail.com",
  2826. "homepage": "https://www.colinodell.com",
  2827. "role": "Lead Developer"
  2828. }
  2829. ],
  2830. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  2831. "homepage": "https://config.thephpleague.com",
  2832. "keywords": [
  2833. "array",
  2834. "config",
  2835. "configuration",
  2836. "dot",
  2837. "dot-access",
  2838. "nested",
  2839. "schema"
  2840. ],
  2841. "support": {
  2842. "docs": "https://config.thephpleague.com/",
  2843. "issues": "https://github.com/thephpleague/config/issues",
  2844. "rss": "https://github.com/thephpleague/config/releases.atom",
  2845. "source": "https://github.com/thephpleague/config"
  2846. },
  2847. "funding": [
  2848. {
  2849. "url": "https://www.colinodell.com/sponsor",
  2850. "type": "custom"
  2851. },
  2852. {
  2853. "url": "https://www.paypal.me/colinpodell/10.00",
  2854. "type": "custom"
  2855. },
  2856. {
  2857. "url": "https://github.com/colinodell",
  2858. "type": "github"
  2859. }
  2860. ],
  2861. "time": "2022-12-11T20:36:23+00:00"
  2862. },
  2863. {
  2864. "name": "league/flysystem",
  2865. "version": "1.1.10",
  2866. "source": {
  2867. "type": "git",
  2868. "url": "https://github.com/thephpleague/flysystem.git",
  2869. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1"
  2870. },
  2871. "dist": {
  2872. "type": "zip",
  2873. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/3239285c825c152bcc315fe0e87d6b55f5972ed1",
  2874. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1",
  2875. "shasum": "",
  2876. "mirrors": [
  2877. {
  2878. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2879. "preferred": true
  2880. }
  2881. ]
  2882. },
  2883. "require": {
  2884. "ext-fileinfo": "*",
  2885. "league/mime-type-detection": "^1.3",
  2886. "php": "^7.2.5 || ^8.0"
  2887. },
  2888. "conflict": {
  2889. "league/flysystem-sftp": "<1.0.6"
  2890. },
  2891. "require-dev": {
  2892. "phpspec/prophecy": "^1.11.1",
  2893. "phpunit/phpunit": "^8.5.8"
  2894. },
  2895. "suggest": {
  2896. "ext-ftp": "Allows you to use FTP server storage",
  2897. "ext-openssl": "Allows you to use FTPS server storage",
  2898. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2899. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2900. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2901. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2902. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2903. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2904. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2905. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2906. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2907. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2908. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2909. },
  2910. "type": "library",
  2911. "extra": {
  2912. "branch-alias": {
  2913. "dev-master": "1.1-dev"
  2914. }
  2915. },
  2916. "autoload": {
  2917. "psr-4": {
  2918. "League\\Flysystem\\": "src/"
  2919. }
  2920. },
  2921. "notification-url": "https://packagist.org/downloads/",
  2922. "license": [
  2923. "MIT"
  2924. ],
  2925. "authors": [
  2926. {
  2927. "name": "Frank de Jonge",
  2928. "email": "info@frenky.net"
  2929. }
  2930. ],
  2931. "description": "Filesystem abstraction: Many filesystems, one API.",
  2932. "keywords": [
  2933. "Cloud Files",
  2934. "WebDAV",
  2935. "abstraction",
  2936. "aws",
  2937. "cloud",
  2938. "copy.com",
  2939. "dropbox",
  2940. "file systems",
  2941. "files",
  2942. "filesystem",
  2943. "filesystems",
  2944. "ftp",
  2945. "rackspace",
  2946. "remote",
  2947. "s3",
  2948. "sftp",
  2949. "storage"
  2950. ],
  2951. "support": {
  2952. "issues": "https://github.com/thephpleague/flysystem/issues",
  2953. "source": "https://github.com/thephpleague/flysystem/tree/1.1.10"
  2954. },
  2955. "funding": [
  2956. {
  2957. "url": "https://offset.earth/frankdejonge",
  2958. "type": "other"
  2959. }
  2960. ],
  2961. "time": "2022-10-04T09:16:37+00:00"
  2962. },
  2963. {
  2964. "name": "league/mime-type-detection",
  2965. "version": "1.13.0",
  2966. "source": {
  2967. "type": "git",
  2968. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2969. "reference": "a6dfb1194a2946fcdc1f38219445234f65b35c96"
  2970. },
  2971. "dist": {
  2972. "type": "zip",
  2973. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/a6dfb1194a2946fcdc1f38219445234f65b35c96",
  2974. "reference": "a6dfb1194a2946fcdc1f38219445234f65b35c96",
  2975. "shasum": "",
  2976. "mirrors": [
  2977. {
  2978. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2979. "preferred": true
  2980. }
  2981. ]
  2982. },
  2983. "require": {
  2984. "ext-fileinfo": "*",
  2985. "php": "^7.4 || ^8.0"
  2986. },
  2987. "require-dev": {
  2988. "friendsofphp/php-cs-fixer": "^3.2",
  2989. "phpstan/phpstan": "^0.12.68",
  2990. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  2991. },
  2992. "type": "library",
  2993. "autoload": {
  2994. "psr-4": {
  2995. "League\\MimeTypeDetection\\": "src"
  2996. }
  2997. },
  2998. "notification-url": "https://packagist.org/downloads/",
  2999. "license": [
  3000. "MIT"
  3001. ],
  3002. "authors": [
  3003. {
  3004. "name": "Frank de Jonge",
  3005. "email": "info@frankdejonge.nl"
  3006. }
  3007. ],
  3008. "description": "Mime-type detection for Flysystem",
  3009. "support": {
  3010. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  3011. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.13.0"
  3012. },
  3013. "funding": [
  3014. {
  3015. "url": "https://github.com/frankdejonge",
  3016. "type": "github"
  3017. },
  3018. {
  3019. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  3020. "type": "tidelift"
  3021. }
  3022. ],
  3023. "time": "2023-08-05T12:09:49+00:00"
  3024. },
  3025. {
  3026. "name": "lizhichao/one-sm",
  3027. "version": "1.10",
  3028. "source": {
  3029. "type": "git",
  3030. "url": "https://github.com/lizhichao/sm.git",
  3031. "reference": "687a012a44a5bfd4d9143a0234e1060543be455a"
  3032. },
  3033. "dist": {
  3034. "type": "zip",
  3035. "url": "https://api.github.com/repos/lizhichao/sm/zipball/687a012a44a5bfd4d9143a0234e1060543be455a",
  3036. "reference": "687a012a44a5bfd4d9143a0234e1060543be455a",
  3037. "shasum": ""
  3038. },
  3039. "require": {
  3040. "php": ">=5.6"
  3041. },
  3042. "type": "library",
  3043. "autoload": {
  3044. "psr-4": {
  3045. "OneSm\\": "src/"
  3046. }
  3047. },
  3048. "notification-url": "https://packagist.org/downloads/",
  3049. "license": [
  3050. "Apache-2.0"
  3051. ],
  3052. "authors": [
  3053. {
  3054. "name": "tanszhe",
  3055. "email": "1018595261@qq.com"
  3056. }
  3057. ],
  3058. "description": "国密sm3",
  3059. "keywords": [
  3060. "php",
  3061. "sm3"
  3062. ],
  3063. "support": {
  3064. "issues": "https://github.com/lizhichao/sm/issues",
  3065. "source": "https://github.com/lizhichao/sm/tree/1.10"
  3066. },
  3067. "funding": [
  3068. {
  3069. "url": "https://www.vicsdf.com/img/w.jpg",
  3070. "type": "custom"
  3071. },
  3072. {
  3073. "url": "https://www.vicsdf.com/img/z.jpg",
  3074. "type": "custom"
  3075. }
  3076. ],
  3077. "time": "2021-05-26T06:19:22+00:00"
  3078. },
  3079. {
  3080. "name": "maennchen/zipstream-php",
  3081. "version": "2.2.6",
  3082. "source": {
  3083. "type": "git",
  3084. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  3085. "reference": "30ad6f93cf3efe4192bc7a4c9cad11ff8f4f237f"
  3086. },
  3087. "dist": {
  3088. "type": "zip",
  3089. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/30ad6f93cf3efe4192bc7a4c9cad11ff8f4f237f",
  3090. "reference": "30ad6f93cf3efe4192bc7a4c9cad11ff8f4f237f",
  3091. "shasum": "",
  3092. "mirrors": [
  3093. {
  3094. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3095. "preferred": true
  3096. }
  3097. ]
  3098. },
  3099. "require": {
  3100. "myclabs/php-enum": "^1.5",
  3101. "php": "^7.4 || ^8.0",
  3102. "psr/http-message": "^1.0",
  3103. "symfony/polyfill-mbstring": "^1.0"
  3104. },
  3105. "require-dev": {
  3106. "ext-zip": "*",
  3107. "friendsofphp/php-cs-fixer": "^3.9",
  3108. "guzzlehttp/guzzle": "^6.5.3 || ^7.2.0",
  3109. "mikey179/vfsstream": "^1.6",
  3110. "php-coveralls/php-coveralls": "^2.4",
  3111. "phpunit/phpunit": "^8.5.8 || ^9.4.2",
  3112. "vimeo/psalm": "^4.1"
  3113. },
  3114. "type": "library",
  3115. "autoload": {
  3116. "psr-4": {
  3117. "ZipStream\\": "src/"
  3118. }
  3119. },
  3120. "notification-url": "https://packagist.org/downloads/",
  3121. "license": [
  3122. "MIT"
  3123. ],
  3124. "authors": [
  3125. {
  3126. "name": "Paul Duncan",
  3127. "email": "pabs@pablotron.org"
  3128. },
  3129. {
  3130. "name": "Jonatan Männchen",
  3131. "email": "jonatan@maennchen.ch"
  3132. },
  3133. {
  3134. "name": "Jesse Donat",
  3135. "email": "donatj@gmail.com"
  3136. },
  3137. {
  3138. "name": "András Kolesár",
  3139. "email": "kolesar@kolesar.hu"
  3140. }
  3141. ],
  3142. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  3143. "keywords": [
  3144. "stream",
  3145. "zip"
  3146. ],
  3147. "support": {
  3148. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  3149. "source": "https://github.com/maennchen/ZipStream-PHP/tree/2.2.6"
  3150. },
  3151. "funding": [
  3152. {
  3153. "url": "https://github.com/maennchen",
  3154. "type": "github"
  3155. },
  3156. {
  3157. "url": "https://opencollective.com/zipstream",
  3158. "type": "open_collective"
  3159. }
  3160. ],
  3161. "time": "2022-11-25T18:57:19+00:00"
  3162. },
  3163. {
  3164. "name": "markbaker/complex",
  3165. "version": "3.0.2",
  3166. "source": {
  3167. "type": "git",
  3168. "url": "https://github.com/MarkBaker/PHPComplex.git",
  3169. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9"
  3170. },
  3171. "dist": {
  3172. "type": "zip",
  3173. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  3174. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  3175. "shasum": "",
  3176. "mirrors": [
  3177. {
  3178. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3179. "preferred": true
  3180. }
  3181. ]
  3182. },
  3183. "require": {
  3184. "php": "^7.2 || ^8.0"
  3185. },
  3186. "require-dev": {
  3187. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  3188. "phpcompatibility/php-compatibility": "^9.3",
  3189. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  3190. "squizlabs/php_codesniffer": "^3.7"
  3191. },
  3192. "type": "library",
  3193. "autoload": {
  3194. "psr-4": {
  3195. "Complex\\": "classes/src/"
  3196. }
  3197. },
  3198. "notification-url": "https://packagist.org/downloads/",
  3199. "license": [
  3200. "MIT"
  3201. ],
  3202. "authors": [
  3203. {
  3204. "name": "Mark Baker",
  3205. "email": "mark@lange.demon.co.uk"
  3206. }
  3207. ],
  3208. "description": "PHP Class for working with complex numbers",
  3209. "homepage": "https://github.com/MarkBaker/PHPComplex",
  3210. "keywords": [
  3211. "complex",
  3212. "mathematics"
  3213. ],
  3214. "support": {
  3215. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  3216. "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.2"
  3217. },
  3218. "time": "2022-12-06T16:21:08+00:00"
  3219. },
  3220. {
  3221. "name": "markbaker/matrix",
  3222. "version": "3.0.1",
  3223. "source": {
  3224. "type": "git",
  3225. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  3226. "reference": "728434227fe21be27ff6d86621a1b13107a2562c"
  3227. },
  3228. "dist": {
  3229. "type": "zip",
  3230. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/728434227fe21be27ff6d86621a1b13107a2562c",
  3231. "reference": "728434227fe21be27ff6d86621a1b13107a2562c",
  3232. "shasum": "",
  3233. "mirrors": [
  3234. {
  3235. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3236. "preferred": true
  3237. }
  3238. ]
  3239. },
  3240. "require": {
  3241. "php": "^7.1 || ^8.0"
  3242. },
  3243. "require-dev": {
  3244. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  3245. "phpcompatibility/php-compatibility": "^9.3",
  3246. "phpdocumentor/phpdocumentor": "2.*",
  3247. "phploc/phploc": "^4.0",
  3248. "phpmd/phpmd": "2.*",
  3249. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  3250. "sebastian/phpcpd": "^4.0",
  3251. "squizlabs/php_codesniffer": "^3.7"
  3252. },
  3253. "type": "library",
  3254. "autoload": {
  3255. "psr-4": {
  3256. "Matrix\\": "classes/src/"
  3257. }
  3258. },
  3259. "notification-url": "https://packagist.org/downloads/",
  3260. "license": [
  3261. "MIT"
  3262. ],
  3263. "authors": [
  3264. {
  3265. "name": "Mark Baker",
  3266. "email": "mark@demon-angel.eu"
  3267. }
  3268. ],
  3269. "description": "PHP Class for working with matrices",
  3270. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  3271. "keywords": [
  3272. "mathematics",
  3273. "matrix",
  3274. "vector"
  3275. ],
  3276. "support": {
  3277. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  3278. "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.1"
  3279. },
  3280. "time": "2022-12-02T22:17:43+00:00"
  3281. },
  3282. {
  3283. "name": "monolog/monolog",
  3284. "version": "2.9.2",
  3285. "source": {
  3286. "type": "git",
  3287. "url": "https://github.com/Seldaek/monolog.git",
  3288. "reference": "437cb3628f4cf6042cc10ae97fc2b8472e48ca1f"
  3289. },
  3290. "dist": {
  3291. "type": "zip",
  3292. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/437cb3628f4cf6042cc10ae97fc2b8472e48ca1f",
  3293. "reference": "437cb3628f4cf6042cc10ae97fc2b8472e48ca1f",
  3294. "shasum": "",
  3295. "mirrors": [
  3296. {
  3297. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3298. "preferred": true
  3299. }
  3300. ]
  3301. },
  3302. "require": {
  3303. "php": ">=7.2",
  3304. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  3305. },
  3306. "provide": {
  3307. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  3308. },
  3309. "require-dev": {
  3310. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  3311. "doctrine/couchdb": "~1.0@dev",
  3312. "elasticsearch/elasticsearch": "^7 || ^8",
  3313. "ext-json": "*",
  3314. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  3315. "guzzlehttp/guzzle": "^7.4",
  3316. "guzzlehttp/psr7": "^2.2",
  3317. "mongodb/mongodb": "^1.8",
  3318. "php-amqplib/php-amqplib": "~2.4 || ^3",
  3319. "phpspec/prophecy": "^1.15",
  3320. "phpstan/phpstan": "^0.12.91",
  3321. "phpunit/phpunit": "^8.5.14",
  3322. "predis/predis": "^1.1 || ^2.0",
  3323. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  3324. "ruflin/elastica": "^7",
  3325. "swiftmailer/swiftmailer": "^5.3|^6.0",
  3326. "symfony/mailer": "^5.4 || ^6",
  3327. "symfony/mime": "^5.4 || ^6"
  3328. },
  3329. "suggest": {
  3330. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  3331. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  3332. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  3333. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  3334. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  3335. "ext-mbstring": "Allow to work properly with unicode symbols",
  3336. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  3337. "ext-openssl": "Required to send log messages using SSL",
  3338. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  3339. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  3340. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  3341. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  3342. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  3343. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  3344. },
  3345. "type": "library",
  3346. "extra": {
  3347. "branch-alias": {
  3348. "dev-main": "2.x-dev"
  3349. }
  3350. },
  3351. "autoload": {
  3352. "psr-4": {
  3353. "Monolog\\": "src/Monolog"
  3354. }
  3355. },
  3356. "notification-url": "https://packagist.org/downloads/",
  3357. "license": [
  3358. "MIT"
  3359. ],
  3360. "authors": [
  3361. {
  3362. "name": "Jordi Boggiano",
  3363. "email": "j.boggiano@seld.be",
  3364. "homepage": "https://seld.be"
  3365. }
  3366. ],
  3367. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  3368. "homepage": "https://github.com/Seldaek/monolog",
  3369. "keywords": [
  3370. "log",
  3371. "logging",
  3372. "psr-3"
  3373. ],
  3374. "support": {
  3375. "issues": "https://github.com/Seldaek/monolog/issues",
  3376. "source": "https://github.com/Seldaek/monolog/tree/2.9.2"
  3377. },
  3378. "funding": [
  3379. {
  3380. "url": "https://github.com/Seldaek",
  3381. "type": "github"
  3382. },
  3383. {
  3384. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  3385. "type": "tidelift"
  3386. }
  3387. ],
  3388. "time": "2023-10-27T15:25:26+00:00"
  3389. },
  3390. {
  3391. "name": "myclabs/php-enum",
  3392. "version": "1.8.4",
  3393. "source": {
  3394. "type": "git",
  3395. "url": "https://github.com/myclabs/php-enum.git",
  3396. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483"
  3397. },
  3398. "dist": {
  3399. "type": "zip",
  3400. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/a867478eae49c9f59ece437ae7f9506bfaa27483",
  3401. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483",
  3402. "shasum": "",
  3403. "mirrors": [
  3404. {
  3405. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3406. "preferred": true
  3407. }
  3408. ]
  3409. },
  3410. "require": {
  3411. "ext-json": "*",
  3412. "php": "^7.3 || ^8.0"
  3413. },
  3414. "require-dev": {
  3415. "phpunit/phpunit": "^9.5",
  3416. "squizlabs/php_codesniffer": "1.*",
  3417. "vimeo/psalm": "^4.6.2"
  3418. },
  3419. "type": "library",
  3420. "autoload": {
  3421. "psr-4": {
  3422. "MyCLabs\\Enum\\": "src/"
  3423. },
  3424. "classmap": [
  3425. "stubs/Stringable.php"
  3426. ]
  3427. },
  3428. "notification-url": "https://packagist.org/downloads/",
  3429. "license": [
  3430. "MIT"
  3431. ],
  3432. "authors": [
  3433. {
  3434. "name": "PHP Enum contributors",
  3435. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  3436. }
  3437. ],
  3438. "description": "PHP Enum implementation",
  3439. "homepage": "http://github.com/myclabs/php-enum",
  3440. "keywords": [
  3441. "enum"
  3442. ],
  3443. "support": {
  3444. "issues": "https://github.com/myclabs/php-enum/issues",
  3445. "source": "https://github.com/myclabs/php-enum/tree/1.8.4"
  3446. },
  3447. "funding": [
  3448. {
  3449. "url": "https://github.com/mnapoli",
  3450. "type": "github"
  3451. },
  3452. {
  3453. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  3454. "type": "tidelift"
  3455. }
  3456. ],
  3457. "time": "2022-08-04T09:53:51+00:00"
  3458. },
  3459. {
  3460. "name": "nesbot/carbon",
  3461. "version": "2.72.1",
  3462. "source": {
  3463. "type": "git",
  3464. "url": "https://github.com/briannesbitt/Carbon.git",
  3465. "reference": "2b3b3db0a2d0556a177392ff1a3bf5608fa09f78"
  3466. },
  3467. "dist": {
  3468. "type": "zip",
  3469. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/2b3b3db0a2d0556a177392ff1a3bf5608fa09f78",
  3470. "reference": "2b3b3db0a2d0556a177392ff1a3bf5608fa09f78",
  3471. "shasum": "",
  3472. "mirrors": [
  3473. {
  3474. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3475. "preferred": true
  3476. }
  3477. ]
  3478. },
  3479. "require": {
  3480. "carbonphp/carbon-doctrine-types": "*",
  3481. "ext-json": "*",
  3482. "php": "^7.1.8 || ^8.0",
  3483. "psr/clock": "^1.0",
  3484. "symfony/polyfill-mbstring": "^1.0",
  3485. "symfony/polyfill-php80": "^1.16",
  3486. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  3487. },
  3488. "provide": {
  3489. "psr/clock-implementation": "1.0"
  3490. },
  3491. "require-dev": {
  3492. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  3493. "doctrine/orm": "^2.7 || ^3.0",
  3494. "friendsofphp/php-cs-fixer": "^3.0",
  3495. "kylekatarnls/multi-tester": "^2.0",
  3496. "ondrejmirtes/better-reflection": "*",
  3497. "phpmd/phpmd": "^2.9",
  3498. "phpstan/extension-installer": "^1.0",
  3499. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  3500. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  3501. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  3502. "squizlabs/php_codesniffer": "^3.4"
  3503. },
  3504. "bin": [
  3505. "bin/carbon"
  3506. ],
  3507. "type": "library",
  3508. "extra": {
  3509. "branch-alias": {
  3510. "dev-3.x": "3.x-dev",
  3511. "dev-master": "2.x-dev"
  3512. },
  3513. "laravel": {
  3514. "providers": [
  3515. "Carbon\\Laravel\\ServiceProvider"
  3516. ]
  3517. },
  3518. "phpstan": {
  3519. "includes": [
  3520. "extension.neon"
  3521. ]
  3522. }
  3523. },
  3524. "autoload": {
  3525. "psr-4": {
  3526. "Carbon\\": "src/Carbon/"
  3527. }
  3528. },
  3529. "notification-url": "https://packagist.org/downloads/",
  3530. "license": [
  3531. "MIT"
  3532. ],
  3533. "authors": [
  3534. {
  3535. "name": "Brian Nesbitt",
  3536. "email": "brian@nesbot.com",
  3537. "homepage": "https://markido.com"
  3538. },
  3539. {
  3540. "name": "kylekatarnls",
  3541. "homepage": "https://github.com/kylekatarnls"
  3542. }
  3543. ],
  3544. "description": "An API extension for DateTime that supports 281 different languages.",
  3545. "homepage": "https://carbon.nesbot.com",
  3546. "keywords": [
  3547. "date",
  3548. "datetime",
  3549. "time"
  3550. ],
  3551. "support": {
  3552. "docs": "https://carbon.nesbot.com/docs",
  3553. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3554. "source": "https://github.com/briannesbitt/Carbon"
  3555. },
  3556. "funding": [
  3557. {
  3558. "url": "https://github.com/sponsors/kylekatarnls",
  3559. "type": "github"
  3560. },
  3561. {
  3562. "url": "https://opencollective.com/Carbon#sponsor",
  3563. "type": "opencollective"
  3564. },
  3565. {
  3566. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  3567. "type": "tidelift"
  3568. }
  3569. ],
  3570. "time": "2023-12-08T23:47:49+00:00"
  3571. },
  3572. {
  3573. "name": "nette/schema",
  3574. "version": "v1.2.5",
  3575. "source": {
  3576. "type": "git",
  3577. "url": "https://github.com/nette/schema.git",
  3578. "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a"
  3579. },
  3580. "dist": {
  3581. "type": "zip",
  3582. "url": "https://api.github.com/repos/nette/schema/zipball/0462f0166e823aad657c9224d0f849ecac1ba10a",
  3583. "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a",
  3584. "shasum": "",
  3585. "mirrors": [
  3586. {
  3587. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3588. "preferred": true
  3589. }
  3590. ]
  3591. },
  3592. "require": {
  3593. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  3594. "php": "7.1 - 8.3"
  3595. },
  3596. "require-dev": {
  3597. "nette/tester": "^2.3 || ^2.4",
  3598. "phpstan/phpstan-nette": "^1.0",
  3599. "tracy/tracy": "^2.7"
  3600. },
  3601. "type": "library",
  3602. "extra": {
  3603. "branch-alias": {
  3604. "dev-master": "1.2-dev"
  3605. }
  3606. },
  3607. "autoload": {
  3608. "classmap": [
  3609. "src/"
  3610. ]
  3611. },
  3612. "notification-url": "https://packagist.org/downloads/",
  3613. "license": [
  3614. "BSD-3-Clause",
  3615. "GPL-2.0-only",
  3616. "GPL-3.0-only"
  3617. ],
  3618. "authors": [
  3619. {
  3620. "name": "David Grudl",
  3621. "homepage": "https://davidgrudl.com"
  3622. },
  3623. {
  3624. "name": "Nette Community",
  3625. "homepage": "https://nette.org/contributors"
  3626. }
  3627. ],
  3628. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  3629. "homepage": "https://nette.org",
  3630. "keywords": [
  3631. "config",
  3632. "nette"
  3633. ],
  3634. "support": {
  3635. "issues": "https://github.com/nette/schema/issues",
  3636. "source": "https://github.com/nette/schema/tree/v1.2.5"
  3637. },
  3638. "time": "2023-10-05T20:37:59+00:00"
  3639. },
  3640. {
  3641. "name": "nette/utils",
  3642. "version": "v3.2.10",
  3643. "source": {
  3644. "type": "git",
  3645. "url": "https://github.com/nette/utils.git",
  3646. "reference": "a4175c62652f2300c8017fb7e640f9ccb11648d2"
  3647. },
  3648. "dist": {
  3649. "type": "zip",
  3650. "url": "https://api.github.com/repos/nette/utils/zipball/a4175c62652f2300c8017fb7e640f9ccb11648d2",
  3651. "reference": "a4175c62652f2300c8017fb7e640f9ccb11648d2",
  3652. "shasum": "",
  3653. "mirrors": [
  3654. {
  3655. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3656. "preferred": true
  3657. }
  3658. ]
  3659. },
  3660. "require": {
  3661. "php": ">=7.2 <8.4"
  3662. },
  3663. "conflict": {
  3664. "nette/di": "<3.0.6"
  3665. },
  3666. "require-dev": {
  3667. "jetbrains/phpstorm-attributes": "dev-master",
  3668. "nette/tester": "~2.0",
  3669. "phpstan/phpstan": "^1.0",
  3670. "tracy/tracy": "^2.3"
  3671. },
  3672. "suggest": {
  3673. "ext-gd": "to use Image",
  3674. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  3675. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  3676. "ext-json": "to use Nette\\Utils\\Json",
  3677. "ext-mbstring": "to use Strings::lower() etc...",
  3678. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()",
  3679. "ext-xml": "to use Strings::length() etc. when mbstring is not available"
  3680. },
  3681. "type": "library",
  3682. "extra": {
  3683. "branch-alias": {
  3684. "dev-master": "3.2-dev"
  3685. }
  3686. },
  3687. "autoload": {
  3688. "classmap": [
  3689. "src/"
  3690. ]
  3691. },
  3692. "notification-url": "https://packagist.org/downloads/",
  3693. "license": [
  3694. "BSD-3-Clause",
  3695. "GPL-2.0-only",
  3696. "GPL-3.0-only"
  3697. ],
  3698. "authors": [
  3699. {
  3700. "name": "David Grudl",
  3701. "homepage": "https://davidgrudl.com"
  3702. },
  3703. {
  3704. "name": "Nette Community",
  3705. "homepage": "https://nette.org/contributors"
  3706. }
  3707. ],
  3708. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  3709. "homepage": "https://nette.org",
  3710. "keywords": [
  3711. "array",
  3712. "core",
  3713. "datetime",
  3714. "images",
  3715. "json",
  3716. "nette",
  3717. "paginator",
  3718. "password",
  3719. "slugify",
  3720. "string",
  3721. "unicode",
  3722. "utf-8",
  3723. "utility",
  3724. "validation"
  3725. ],
  3726. "support": {
  3727. "issues": "https://github.com/nette/utils/issues",
  3728. "source": "https://github.com/nette/utils/tree/v3.2.10"
  3729. },
  3730. "time": "2023-07-30T15:38:18+00:00"
  3731. },
  3732. {
  3733. "name": "nikic/php-parser",
  3734. "version": "v5.0.0",
  3735. "source": {
  3736. "type": "git",
  3737. "url": "https://github.com/nikic/PHP-Parser.git",
  3738. "reference": "4a21235f7e56e713259a6f76bf4b5ea08502b9dc"
  3739. },
  3740. "dist": {
  3741. "type": "zip",
  3742. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4a21235f7e56e713259a6f76bf4b5ea08502b9dc",
  3743. "reference": "4a21235f7e56e713259a6f76bf4b5ea08502b9dc",
  3744. "shasum": "",
  3745. "mirrors": [
  3746. {
  3747. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3748. "preferred": true
  3749. }
  3750. ]
  3751. },
  3752. "require": {
  3753. "ext-ctype": "*",
  3754. "ext-json": "*",
  3755. "ext-tokenizer": "*",
  3756. "php": ">=7.4"
  3757. },
  3758. "require-dev": {
  3759. "ircmaxell/php-yacc": "^0.0.7",
  3760. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  3761. },
  3762. "bin": [
  3763. "bin/php-parse"
  3764. ],
  3765. "type": "library",
  3766. "extra": {
  3767. "branch-alias": {
  3768. "dev-master": "5.0-dev"
  3769. }
  3770. },
  3771. "autoload": {
  3772. "psr-4": {
  3773. "PhpParser\\": "lib/PhpParser"
  3774. }
  3775. },
  3776. "notification-url": "https://packagist.org/downloads/",
  3777. "license": [
  3778. "BSD-3-Clause"
  3779. ],
  3780. "authors": [
  3781. {
  3782. "name": "Nikita Popov"
  3783. }
  3784. ],
  3785. "description": "A PHP parser written in PHP",
  3786. "keywords": [
  3787. "parser",
  3788. "php"
  3789. ],
  3790. "support": {
  3791. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3792. "source": "https://github.com/nikic/PHP-Parser/tree/v5.0.0"
  3793. },
  3794. "time": "2024-01-07T17:17:35+00:00"
  3795. },
  3796. {
  3797. "name": "opis/closure",
  3798. "version": "3.6.3",
  3799. "source": {
  3800. "type": "git",
  3801. "url": "https://github.com/opis/closure.git",
  3802. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad"
  3803. },
  3804. "dist": {
  3805. "type": "zip",
  3806. "url": "https://api.github.com/repos/opis/closure/zipball/3d81e4309d2a927abbe66df935f4bb60082805ad",
  3807. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad",
  3808. "shasum": "",
  3809. "mirrors": [
  3810. {
  3811. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3812. "preferred": true
  3813. }
  3814. ]
  3815. },
  3816. "require": {
  3817. "php": "^5.4 || ^7.0 || ^8.0"
  3818. },
  3819. "require-dev": {
  3820. "jeremeamia/superclosure": "^2.0",
  3821. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  3822. },
  3823. "type": "library",
  3824. "extra": {
  3825. "branch-alias": {
  3826. "dev-master": "3.6.x-dev"
  3827. }
  3828. },
  3829. "autoload": {
  3830. "files": [
  3831. "functions.php"
  3832. ],
  3833. "psr-4": {
  3834. "Opis\\Closure\\": "src/"
  3835. }
  3836. },
  3837. "notification-url": "https://packagist.org/downloads/",
  3838. "license": [
  3839. "MIT"
  3840. ],
  3841. "authors": [
  3842. {
  3843. "name": "Marius Sarca",
  3844. "email": "marius.sarca@gmail.com"
  3845. },
  3846. {
  3847. "name": "Sorin Sarca",
  3848. "email": "sarca_sorin@hotmail.com"
  3849. }
  3850. ],
  3851. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  3852. "homepage": "https://opis.io/closure",
  3853. "keywords": [
  3854. "anonymous functions",
  3855. "closure",
  3856. "function",
  3857. "serializable",
  3858. "serialization",
  3859. "serialize"
  3860. ],
  3861. "support": {
  3862. "issues": "https://github.com/opis/closure/issues",
  3863. "source": "https://github.com/opis/closure/tree/3.6.3"
  3864. },
  3865. "time": "2022-01-27T09:35:39+00:00"
  3866. },
  3867. {
  3868. "name": "overtrue/qcloud-cos-client",
  3869. "version": "1.0.4",
  3870. "source": {
  3871. "type": "git",
  3872. "url": "https://github.com/overtrue/qcloud-cos-client.git",
  3873. "reference": "64ca47881afe4fd0961958f85674dcae71421913"
  3874. },
  3875. "dist": {
  3876. "type": "zip",
  3877. "url": "https://api.github.com/repos/overtrue/qcloud-cos-client/zipball/64ca47881afe4fd0961958f85674dcae71421913",
  3878. "reference": "64ca47881afe4fd0961958f85674dcae71421913",
  3879. "shasum": "",
  3880. "mirrors": [
  3881. {
  3882. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3883. "preferred": true
  3884. }
  3885. ]
  3886. },
  3887. "require": {
  3888. "ext-dom": "*",
  3889. "ext-json": "*",
  3890. "ext-libxml": "*",
  3891. "ext-simplexml": "*",
  3892. "guzzlehttp/guzzle": "^7.2",
  3893. "php": ">=7.4",
  3894. "psr/http-message": "^1.0"
  3895. },
  3896. "require-dev": {
  3897. "brainmaestro/composer-git-hooks": "^2.7",
  3898. "friendsofphp/php-cs-fixer": "^3.4.0",
  3899. "mockery/mockery": "^1.0",
  3900. "monolog/monolog": "^2.1",
  3901. "phpunit/phpunit": "^9.0"
  3902. },
  3903. "type": "library",
  3904. "extra": {
  3905. "hooks": {
  3906. "pre-commit": [
  3907. "composer test",
  3908. "composer check-style"
  3909. ],
  3910. "pre-push": [
  3911. "composer test",
  3912. "composer check-style"
  3913. ]
  3914. }
  3915. },
  3916. "autoload": {
  3917. "psr-4": {
  3918. "Overtrue\\CosClient\\": "src"
  3919. }
  3920. },
  3921. "notification-url": "https://packagist.org/downloads/",
  3922. "license": [
  3923. "MIT"
  3924. ],
  3925. "authors": [
  3926. {
  3927. "name": "overtrue",
  3928. "email": "anzhengchao@gmail.com"
  3929. }
  3930. ],
  3931. "description": "Client of QCloud.com COS",
  3932. "support": {
  3933. "issues": "https://github.com/overtrue/qcloud-cos-client/issues",
  3934. "source": "https://github.com/overtrue/qcloud-cos-client/tree/1.0.4"
  3935. },
  3936. "funding": [
  3937. {
  3938. "url": "https://github.com/overtrue",
  3939. "type": "github"
  3940. }
  3941. ],
  3942. "time": "2022-11-07T00:18:25+00:00"
  3943. },
  3944. {
  3945. "name": "overtrue/socialite",
  3946. "version": "3.5.5",
  3947. "source": {
  3948. "type": "git",
  3949. "url": "https://github.com/overtrue/socialite.git",
  3950. "reference": "3cf32be7ae0fd86f83e41ca7239aa10e04b8b401"
  3951. },
  3952. "dist": {
  3953. "type": "zip",
  3954. "url": "https://api.github.com/repos/overtrue/socialite/zipball/3cf32be7ae0fd86f83e41ca7239aa10e04b8b401",
  3955. "reference": "3cf32be7ae0fd86f83e41ca7239aa10e04b8b401",
  3956. "shasum": ""
  3957. },
  3958. "require": {
  3959. "ext-json": "*",
  3960. "ext-openssl": "*",
  3961. "guzzlehttp/guzzle": "~6.0|~7.0",
  3962. "php": ">=7.4",
  3963. "symfony/psr-http-message-bridge": "^2.0"
  3964. },
  3965. "require-dev": {
  3966. "friendsofphp/php-cs-fixer": "^3.0",
  3967. "mockery/mockery": "~1.2",
  3968. "phpunit/phpunit": "~9.0"
  3969. },
  3970. "type": "library",
  3971. "autoload": {
  3972. "psr-4": {
  3973. "Overtrue\\Socialite\\": "src/"
  3974. }
  3975. },
  3976. "notification-url": "https://packagist.org/downloads/",
  3977. "license": [
  3978. "MIT"
  3979. ],
  3980. "authors": [
  3981. {
  3982. "name": "overtrue",
  3983. "email": "anzhengchao@gmail.com"
  3984. }
  3985. ],
  3986. "description": "A collection of OAuth 2 packages.",
  3987. "keywords": [
  3988. "Feishu",
  3989. "login",
  3990. "oauth",
  3991. "qcloud",
  3992. "qq",
  3993. "social",
  3994. "wechat",
  3995. "weibo"
  3996. ],
  3997. "support": {
  3998. "issues": "https://github.com/overtrue/socialite/issues",
  3999. "source": "https://github.com/overtrue/socialite/tree/3.5.5"
  4000. },
  4001. "funding": [
  4002. {
  4003. "url": "https://github.com/overtrue",
  4004. "type": "github"
  4005. }
  4006. ],
  4007. "time": "2024-06-24T09:26:56+00:00"
  4008. },
  4009. {
  4010. "name": "phpoffice/phpspreadsheet",
  4011. "version": "1.29.0",
  4012. "source": {
  4013. "type": "git",
  4014. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  4015. "reference": "fde2ccf55eaef7e86021ff1acce26479160a0fa0"
  4016. },
  4017. "dist": {
  4018. "type": "zip",
  4019. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/fde2ccf55eaef7e86021ff1acce26479160a0fa0",
  4020. "reference": "fde2ccf55eaef7e86021ff1acce26479160a0fa0",
  4021. "shasum": ""
  4022. },
  4023. "require": {
  4024. "ext-ctype": "*",
  4025. "ext-dom": "*",
  4026. "ext-fileinfo": "*",
  4027. "ext-gd": "*",
  4028. "ext-iconv": "*",
  4029. "ext-libxml": "*",
  4030. "ext-mbstring": "*",
  4031. "ext-simplexml": "*",
  4032. "ext-xml": "*",
  4033. "ext-xmlreader": "*",
  4034. "ext-xmlwriter": "*",
  4035. "ext-zip": "*",
  4036. "ext-zlib": "*",
  4037. "ezyang/htmlpurifier": "^4.15",
  4038. "maennchen/zipstream-php": "^2.1 || ^3.0",
  4039. "markbaker/complex": "^3.0",
  4040. "markbaker/matrix": "^3.0",
  4041. "php": "^7.4 || ^8.0",
  4042. "psr/http-client": "^1.0",
  4043. "psr/http-factory": "^1.0",
  4044. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  4045. },
  4046. "require-dev": {
  4047. "dealerdirect/phpcodesniffer-composer-installer": "dev-main",
  4048. "dompdf/dompdf": "^1.0 || ^2.0",
  4049. "friendsofphp/php-cs-fixer": "^3.2",
  4050. "mitoteam/jpgraph": "^10.3",
  4051. "mpdf/mpdf": "^8.1.1",
  4052. "phpcompatibility/php-compatibility": "^9.3",
  4053. "phpstan/phpstan": "^1.1",
  4054. "phpstan/phpstan-phpunit": "^1.0",
  4055. "phpunit/phpunit": "^8.5 || ^9.0 || ^10.0",
  4056. "squizlabs/php_codesniffer": "^3.7",
  4057. "tecnickcom/tcpdf": "^6.5"
  4058. },
  4059. "suggest": {
  4060. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  4061. "ext-intl": "PHP Internationalization Functions",
  4062. "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  4063. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  4064. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  4065. },
  4066. "type": "library",
  4067. "autoload": {
  4068. "psr-4": {
  4069. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  4070. }
  4071. },
  4072. "notification-url": "https://packagist.org/downloads/",
  4073. "license": [
  4074. "MIT"
  4075. ],
  4076. "authors": [
  4077. {
  4078. "name": "Maarten Balliauw",
  4079. "homepage": "https://blog.maartenballiauw.be"
  4080. },
  4081. {
  4082. "name": "Mark Baker",
  4083. "homepage": "https://markbakeruk.net"
  4084. },
  4085. {
  4086. "name": "Franck Lefevre",
  4087. "homepage": "https://rootslabs.net"
  4088. },
  4089. {
  4090. "name": "Erik Tilt"
  4091. },
  4092. {
  4093. "name": "Adrien Crivelli"
  4094. }
  4095. ],
  4096. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  4097. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  4098. "keywords": [
  4099. "OpenXML",
  4100. "excel",
  4101. "gnumeric",
  4102. "ods",
  4103. "php",
  4104. "spreadsheet",
  4105. "xls",
  4106. "xlsx"
  4107. ],
  4108. "support": {
  4109. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  4110. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.29.0"
  4111. },
  4112. "time": "2023-06-14T22:48:31+00:00"
  4113. },
  4114. {
  4115. "name": "phpoption/phpoption",
  4116. "version": "1.9.2",
  4117. "source": {
  4118. "type": "git",
  4119. "url": "https://github.com/schmittjoh/php-option.git",
  4120. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820"
  4121. },
  4122. "dist": {
  4123. "type": "zip",
  4124. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/80735db690fe4fc5c76dfa7f9b770634285fa820",
  4125. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820",
  4126. "shasum": "",
  4127. "mirrors": [
  4128. {
  4129. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4130. "preferred": true
  4131. }
  4132. ]
  4133. },
  4134. "require": {
  4135. "php": "^7.2.5 || ^8.0"
  4136. },
  4137. "require-dev": {
  4138. "bamarni/composer-bin-plugin": "^1.8.2",
  4139. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  4140. },
  4141. "type": "library",
  4142. "extra": {
  4143. "bamarni-bin": {
  4144. "bin-links": true,
  4145. "forward-command": true
  4146. },
  4147. "branch-alias": {
  4148. "dev-master": "1.9-dev"
  4149. }
  4150. },
  4151. "autoload": {
  4152. "psr-4": {
  4153. "PhpOption\\": "src/PhpOption/"
  4154. }
  4155. },
  4156. "notification-url": "https://packagist.org/downloads/",
  4157. "license": [
  4158. "Apache-2.0"
  4159. ],
  4160. "authors": [
  4161. {
  4162. "name": "Johannes M. Schmitt",
  4163. "email": "schmittjoh@gmail.com",
  4164. "homepage": "https://github.com/schmittjoh"
  4165. },
  4166. {
  4167. "name": "Graham Campbell",
  4168. "email": "hello@gjcampbell.co.uk",
  4169. "homepage": "https://github.com/GrahamCampbell"
  4170. }
  4171. ],
  4172. "description": "Option Type for PHP",
  4173. "keywords": [
  4174. "language",
  4175. "option",
  4176. "php",
  4177. "type"
  4178. ],
  4179. "support": {
  4180. "issues": "https://github.com/schmittjoh/php-option/issues",
  4181. "source": "https://github.com/schmittjoh/php-option/tree/1.9.2"
  4182. },
  4183. "funding": [
  4184. {
  4185. "url": "https://github.com/GrahamCampbell",
  4186. "type": "github"
  4187. },
  4188. {
  4189. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  4190. "type": "tidelift"
  4191. }
  4192. ],
  4193. "time": "2023-11-12T21:59:55+00:00"
  4194. },
  4195. {
  4196. "name": "pimple/pimple",
  4197. "version": "v3.5.0",
  4198. "source": {
  4199. "type": "git",
  4200. "url": "https://github.com/silexphp/Pimple.git",
  4201. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed"
  4202. },
  4203. "dist": {
  4204. "type": "zip",
  4205. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  4206. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  4207. "shasum": ""
  4208. },
  4209. "require": {
  4210. "php": ">=7.2.5",
  4211. "psr/container": "^1.1 || ^2.0"
  4212. },
  4213. "require-dev": {
  4214. "symfony/phpunit-bridge": "^5.4@dev"
  4215. },
  4216. "type": "library",
  4217. "extra": {
  4218. "branch-alias": {
  4219. "dev-master": "3.4.x-dev"
  4220. }
  4221. },
  4222. "autoload": {
  4223. "psr-0": {
  4224. "Pimple": "src/"
  4225. }
  4226. },
  4227. "notification-url": "https://packagist.org/downloads/",
  4228. "license": [
  4229. "MIT"
  4230. ],
  4231. "authors": [
  4232. {
  4233. "name": "Fabien Potencier",
  4234. "email": "fabien@symfony.com"
  4235. }
  4236. ],
  4237. "description": "Pimple, a simple Dependency Injection Container",
  4238. "homepage": "https://pimple.symfony.com",
  4239. "keywords": [
  4240. "container",
  4241. "dependency injection"
  4242. ],
  4243. "support": {
  4244. "source": "https://github.com/silexphp/Pimple/tree/v3.5.0"
  4245. },
  4246. "time": "2021-10-28T11:13:42+00:00"
  4247. },
  4248. {
  4249. "name": "predis/predis",
  4250. "version": "v1.1.10",
  4251. "source": {
  4252. "type": "git",
  4253. "url": "https://github.com/predis/predis.git",
  4254. "reference": "a2fb02d738bedadcffdbb07efa3a5e7bd57f8d6e"
  4255. },
  4256. "dist": {
  4257. "type": "zip",
  4258. "url": "https://api.github.com/repos/predis/predis/zipball/a2fb02d738bedadcffdbb07efa3a5e7bd57f8d6e",
  4259. "reference": "a2fb02d738bedadcffdbb07efa3a5e7bd57f8d6e",
  4260. "shasum": "",
  4261. "mirrors": [
  4262. {
  4263. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4264. "preferred": true
  4265. }
  4266. ]
  4267. },
  4268. "require": {
  4269. "php": ">=5.3.9"
  4270. },
  4271. "require-dev": {
  4272. "phpunit/phpunit": "~4.8"
  4273. },
  4274. "suggest": {
  4275. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  4276. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  4277. },
  4278. "type": "library",
  4279. "autoload": {
  4280. "psr-4": {
  4281. "Predis\\": "src/"
  4282. }
  4283. },
  4284. "notification-url": "https://packagist.org/downloads/",
  4285. "license": [
  4286. "MIT"
  4287. ],
  4288. "authors": [
  4289. {
  4290. "name": "Daniele Alessandri",
  4291. "email": "suppakilla@gmail.com",
  4292. "homepage": "http://clorophilla.net",
  4293. "role": "Creator & Maintainer"
  4294. },
  4295. {
  4296. "name": "Till Krüss",
  4297. "homepage": "https://till.im",
  4298. "role": "Maintainer"
  4299. }
  4300. ],
  4301. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  4302. "homepage": "http://github.com/predis/predis",
  4303. "keywords": [
  4304. "nosql",
  4305. "predis",
  4306. "redis"
  4307. ],
  4308. "support": {
  4309. "issues": "https://github.com/predis/predis/issues",
  4310. "source": "https://github.com/predis/predis/tree/v1.1.10"
  4311. },
  4312. "funding": [
  4313. {
  4314. "url": "https://github.com/sponsors/tillkruss",
  4315. "type": "github"
  4316. }
  4317. ],
  4318. "time": "2022-01-05T17:46:08+00:00"
  4319. },
  4320. {
  4321. "name": "psr/cache",
  4322. "version": "1.0.1",
  4323. "source": {
  4324. "type": "git",
  4325. "url": "https://github.com/php-fig/cache.git",
  4326. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  4327. },
  4328. "dist": {
  4329. "type": "zip",
  4330. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  4331. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  4332. "shasum": ""
  4333. },
  4334. "require": {
  4335. "php": ">=5.3.0"
  4336. },
  4337. "type": "library",
  4338. "extra": {
  4339. "branch-alias": {
  4340. "dev-master": "1.0.x-dev"
  4341. }
  4342. },
  4343. "autoload": {
  4344. "psr-4": {
  4345. "Psr\\Cache\\": "src/"
  4346. }
  4347. },
  4348. "notification-url": "https://packagist.org/downloads/",
  4349. "license": [
  4350. "MIT"
  4351. ],
  4352. "authors": [
  4353. {
  4354. "name": "PHP-FIG",
  4355. "homepage": "http://www.php-fig.org/"
  4356. }
  4357. ],
  4358. "description": "Common interface for caching libraries",
  4359. "keywords": [
  4360. "cache",
  4361. "psr",
  4362. "psr-6"
  4363. ],
  4364. "support": {
  4365. "source": "https://github.com/php-fig/cache/tree/master"
  4366. },
  4367. "time": "2016-08-06T20:24:11+00:00"
  4368. },
  4369. {
  4370. "name": "psr/clock",
  4371. "version": "1.0.0",
  4372. "source": {
  4373. "type": "git",
  4374. "url": "https://github.com/php-fig/clock.git",
  4375. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  4376. },
  4377. "dist": {
  4378. "type": "zip",
  4379. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  4380. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  4381. "shasum": "",
  4382. "mirrors": [
  4383. {
  4384. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4385. "preferred": true
  4386. }
  4387. ]
  4388. },
  4389. "require": {
  4390. "php": "^7.0 || ^8.0"
  4391. },
  4392. "type": "library",
  4393. "autoload": {
  4394. "psr-4": {
  4395. "Psr\\Clock\\": "src/"
  4396. }
  4397. },
  4398. "notification-url": "https://packagist.org/downloads/",
  4399. "license": [
  4400. "MIT"
  4401. ],
  4402. "authors": [
  4403. {
  4404. "name": "PHP-FIG",
  4405. "homepage": "https://www.php-fig.org/"
  4406. }
  4407. ],
  4408. "description": "Common interface for reading the clock.",
  4409. "homepage": "https://github.com/php-fig/clock",
  4410. "keywords": [
  4411. "clock",
  4412. "now",
  4413. "psr",
  4414. "psr-20",
  4415. "time"
  4416. ],
  4417. "support": {
  4418. "issues": "https://github.com/php-fig/clock/issues",
  4419. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  4420. },
  4421. "time": "2022-11-25T14:36:26+00:00"
  4422. },
  4423. {
  4424. "name": "psr/container",
  4425. "version": "1.1.2",
  4426. "source": {
  4427. "type": "git",
  4428. "url": "https://github.com/php-fig/container.git",
  4429. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  4430. },
  4431. "dist": {
  4432. "type": "zip",
  4433. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  4434. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  4435. "shasum": "",
  4436. "mirrors": [
  4437. {
  4438. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4439. "preferred": true
  4440. }
  4441. ]
  4442. },
  4443. "require": {
  4444. "php": ">=7.4.0"
  4445. },
  4446. "type": "library",
  4447. "autoload": {
  4448. "psr-4": {
  4449. "Psr\\Container\\": "src/"
  4450. }
  4451. },
  4452. "notification-url": "https://packagist.org/downloads/",
  4453. "license": [
  4454. "MIT"
  4455. ],
  4456. "authors": [
  4457. {
  4458. "name": "PHP-FIG",
  4459. "homepage": "https://www.php-fig.org/"
  4460. }
  4461. ],
  4462. "description": "Common Container Interface (PHP FIG PSR-11)",
  4463. "homepage": "https://github.com/php-fig/container",
  4464. "keywords": [
  4465. "PSR-11",
  4466. "container",
  4467. "container-interface",
  4468. "container-interop",
  4469. "psr"
  4470. ],
  4471. "support": {
  4472. "issues": "https://github.com/php-fig/container/issues",
  4473. "source": "https://github.com/php-fig/container/tree/1.1.2"
  4474. },
  4475. "time": "2021-11-05T16:50:12+00:00"
  4476. },
  4477. {
  4478. "name": "psr/event-dispatcher",
  4479. "version": "1.0.0",
  4480. "source": {
  4481. "type": "git",
  4482. "url": "https://github.com/php-fig/event-dispatcher.git",
  4483. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  4484. },
  4485. "dist": {
  4486. "type": "zip",
  4487. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4488. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4489. "shasum": "",
  4490. "mirrors": [
  4491. {
  4492. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4493. "preferred": true
  4494. }
  4495. ]
  4496. },
  4497. "require": {
  4498. "php": ">=7.2.0"
  4499. },
  4500. "type": "library",
  4501. "extra": {
  4502. "branch-alias": {
  4503. "dev-master": "1.0.x-dev"
  4504. }
  4505. },
  4506. "autoload": {
  4507. "psr-4": {
  4508. "Psr\\EventDispatcher\\": "src/"
  4509. }
  4510. },
  4511. "notification-url": "https://packagist.org/downloads/",
  4512. "license": [
  4513. "MIT"
  4514. ],
  4515. "authors": [
  4516. {
  4517. "name": "PHP-FIG",
  4518. "homepage": "http://www.php-fig.org/"
  4519. }
  4520. ],
  4521. "description": "Standard interfaces for event handling.",
  4522. "keywords": [
  4523. "events",
  4524. "psr",
  4525. "psr-14"
  4526. ],
  4527. "support": {
  4528. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  4529. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  4530. },
  4531. "time": "2019-01-08T18:20:26+00:00"
  4532. },
  4533. {
  4534. "name": "psr/http-client",
  4535. "version": "1.0.3",
  4536. "source": {
  4537. "type": "git",
  4538. "url": "https://github.com/php-fig/http-client.git",
  4539. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  4540. },
  4541. "dist": {
  4542. "type": "zip",
  4543. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  4544. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  4545. "shasum": "",
  4546. "mirrors": [
  4547. {
  4548. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4549. "preferred": true
  4550. }
  4551. ]
  4552. },
  4553. "require": {
  4554. "php": "^7.0 || ^8.0",
  4555. "psr/http-message": "^1.0 || ^2.0"
  4556. },
  4557. "type": "library",
  4558. "extra": {
  4559. "branch-alias": {
  4560. "dev-master": "1.0.x-dev"
  4561. }
  4562. },
  4563. "autoload": {
  4564. "psr-4": {
  4565. "Psr\\Http\\Client\\": "src/"
  4566. }
  4567. },
  4568. "notification-url": "https://packagist.org/downloads/",
  4569. "license": [
  4570. "MIT"
  4571. ],
  4572. "authors": [
  4573. {
  4574. "name": "PHP-FIG",
  4575. "homepage": "https://www.php-fig.org/"
  4576. }
  4577. ],
  4578. "description": "Common interface for HTTP clients",
  4579. "homepage": "https://github.com/php-fig/http-client",
  4580. "keywords": [
  4581. "http",
  4582. "http-client",
  4583. "psr",
  4584. "psr-18"
  4585. ],
  4586. "support": {
  4587. "source": "https://github.com/php-fig/http-client"
  4588. },
  4589. "time": "2023-09-23T14:17:50+00:00"
  4590. },
  4591. {
  4592. "name": "psr/http-factory",
  4593. "version": "1.0.2",
  4594. "source": {
  4595. "type": "git",
  4596. "url": "https://github.com/php-fig/http-factory.git",
  4597. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  4598. },
  4599. "dist": {
  4600. "type": "zip",
  4601. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  4602. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  4603. "shasum": "",
  4604. "mirrors": [
  4605. {
  4606. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4607. "preferred": true
  4608. }
  4609. ]
  4610. },
  4611. "require": {
  4612. "php": ">=7.0.0",
  4613. "psr/http-message": "^1.0 || ^2.0"
  4614. },
  4615. "type": "library",
  4616. "extra": {
  4617. "branch-alias": {
  4618. "dev-master": "1.0.x-dev"
  4619. }
  4620. },
  4621. "autoload": {
  4622. "psr-4": {
  4623. "Psr\\Http\\Message\\": "src/"
  4624. }
  4625. },
  4626. "notification-url": "https://packagist.org/downloads/",
  4627. "license": [
  4628. "MIT"
  4629. ],
  4630. "authors": [
  4631. {
  4632. "name": "PHP-FIG",
  4633. "homepage": "https://www.php-fig.org/"
  4634. }
  4635. ],
  4636. "description": "Common interfaces for PSR-7 HTTP message factories",
  4637. "keywords": [
  4638. "factory",
  4639. "http",
  4640. "message",
  4641. "psr",
  4642. "psr-17",
  4643. "psr-7",
  4644. "request",
  4645. "response"
  4646. ],
  4647. "support": {
  4648. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  4649. },
  4650. "time": "2023-04-10T20:10:41+00:00"
  4651. },
  4652. {
  4653. "name": "psr/http-message",
  4654. "version": "1.1",
  4655. "source": {
  4656. "type": "git",
  4657. "url": "https://github.com/php-fig/http-message.git",
  4658. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  4659. },
  4660. "dist": {
  4661. "type": "zip",
  4662. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  4663. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  4664. "shasum": "",
  4665. "mirrors": [
  4666. {
  4667. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4668. "preferred": true
  4669. }
  4670. ]
  4671. },
  4672. "require": {
  4673. "php": "^7.2 || ^8.0"
  4674. },
  4675. "type": "library",
  4676. "extra": {
  4677. "branch-alias": {
  4678. "dev-master": "1.1.x-dev"
  4679. }
  4680. },
  4681. "autoload": {
  4682. "psr-4": {
  4683. "Psr\\Http\\Message\\": "src/"
  4684. }
  4685. },
  4686. "notification-url": "https://packagist.org/downloads/",
  4687. "license": [
  4688. "MIT"
  4689. ],
  4690. "authors": [
  4691. {
  4692. "name": "PHP-FIG",
  4693. "homepage": "http://www.php-fig.org/"
  4694. }
  4695. ],
  4696. "description": "Common interface for HTTP messages",
  4697. "homepage": "https://github.com/php-fig/http-message",
  4698. "keywords": [
  4699. "http",
  4700. "http-message",
  4701. "psr",
  4702. "psr-7",
  4703. "request",
  4704. "response"
  4705. ],
  4706. "support": {
  4707. "source": "https://github.com/php-fig/http-message/tree/1.1"
  4708. },
  4709. "time": "2023-04-04T09:50:52+00:00"
  4710. },
  4711. {
  4712. "name": "psr/log",
  4713. "version": "1.1.4",
  4714. "source": {
  4715. "type": "git",
  4716. "url": "https://github.com/php-fig/log.git",
  4717. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  4718. },
  4719. "dist": {
  4720. "type": "zip",
  4721. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  4722. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  4723. "shasum": "",
  4724. "mirrors": [
  4725. {
  4726. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4727. "preferred": true
  4728. }
  4729. ]
  4730. },
  4731. "require": {
  4732. "php": ">=5.3.0"
  4733. },
  4734. "type": "library",
  4735. "extra": {
  4736. "branch-alias": {
  4737. "dev-master": "1.1.x-dev"
  4738. }
  4739. },
  4740. "autoload": {
  4741. "psr-4": {
  4742. "Psr\\Log\\": "Psr/Log/"
  4743. }
  4744. },
  4745. "notification-url": "https://packagist.org/downloads/",
  4746. "license": [
  4747. "MIT"
  4748. ],
  4749. "authors": [
  4750. {
  4751. "name": "PHP-FIG",
  4752. "homepage": "https://www.php-fig.org/"
  4753. }
  4754. ],
  4755. "description": "Common interface for logging libraries",
  4756. "homepage": "https://github.com/php-fig/log",
  4757. "keywords": [
  4758. "log",
  4759. "psr",
  4760. "psr-3"
  4761. ],
  4762. "support": {
  4763. "source": "https://github.com/php-fig/log/tree/1.1.4"
  4764. },
  4765. "time": "2021-05-03T11:20:27+00:00"
  4766. },
  4767. {
  4768. "name": "psr/simple-cache",
  4769. "version": "1.0.1",
  4770. "source": {
  4771. "type": "git",
  4772. "url": "https://github.com/php-fig/simple-cache.git",
  4773. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  4774. },
  4775. "dist": {
  4776. "type": "zip",
  4777. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4778. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4779. "shasum": "",
  4780. "mirrors": [
  4781. {
  4782. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4783. "preferred": true
  4784. }
  4785. ]
  4786. },
  4787. "require": {
  4788. "php": ">=5.3.0"
  4789. },
  4790. "type": "library",
  4791. "extra": {
  4792. "branch-alias": {
  4793. "dev-master": "1.0.x-dev"
  4794. }
  4795. },
  4796. "autoload": {
  4797. "psr-4": {
  4798. "Psr\\SimpleCache\\": "src/"
  4799. }
  4800. },
  4801. "notification-url": "https://packagist.org/downloads/",
  4802. "license": [
  4803. "MIT"
  4804. ],
  4805. "authors": [
  4806. {
  4807. "name": "PHP-FIG",
  4808. "homepage": "http://www.php-fig.org/"
  4809. }
  4810. ],
  4811. "description": "Common interfaces for simple caching",
  4812. "keywords": [
  4813. "cache",
  4814. "caching",
  4815. "psr",
  4816. "psr-16",
  4817. "simple-cache"
  4818. ],
  4819. "support": {
  4820. "source": "https://github.com/php-fig/simple-cache/tree/master"
  4821. },
  4822. "time": "2017-10-23T01:57:42+00:00"
  4823. },
  4824. {
  4825. "name": "psy/psysh",
  4826. "version": "v0.12.0",
  4827. "source": {
  4828. "type": "git",
  4829. "url": "https://github.com/bobthecow/psysh.git",
  4830. "reference": "750bf031a48fd07c673dbe3f11f72362ea306d0d"
  4831. },
  4832. "dist": {
  4833. "type": "zip",
  4834. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/750bf031a48fd07c673dbe3f11f72362ea306d0d",
  4835. "reference": "750bf031a48fd07c673dbe3f11f72362ea306d0d",
  4836. "shasum": "",
  4837. "mirrors": [
  4838. {
  4839. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4840. "preferred": true
  4841. }
  4842. ]
  4843. },
  4844. "require": {
  4845. "ext-json": "*",
  4846. "ext-tokenizer": "*",
  4847. "nikic/php-parser": "^5.0 || ^4.0",
  4848. "php": "^8.0 || ^7.4",
  4849. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  4850. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  4851. },
  4852. "conflict": {
  4853. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  4854. },
  4855. "require-dev": {
  4856. "bamarni/composer-bin-plugin": "^1.2"
  4857. },
  4858. "suggest": {
  4859. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4860. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4861. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  4862. },
  4863. "bin": [
  4864. "bin/psysh"
  4865. ],
  4866. "type": "library",
  4867. "extra": {
  4868. "branch-alias": {
  4869. "dev-main": "0.12.x-dev"
  4870. },
  4871. "bamarni-bin": {
  4872. "bin-links": false,
  4873. "forward-command": false
  4874. }
  4875. },
  4876. "autoload": {
  4877. "files": [
  4878. "src/functions.php"
  4879. ],
  4880. "psr-4": {
  4881. "Psy\\": "src/"
  4882. }
  4883. },
  4884. "notification-url": "https://packagist.org/downloads/",
  4885. "license": [
  4886. "MIT"
  4887. ],
  4888. "authors": [
  4889. {
  4890. "name": "Justin Hileman",
  4891. "email": "justin@justinhileman.info",
  4892. "homepage": "http://justinhileman.com"
  4893. }
  4894. ],
  4895. "description": "An interactive shell for modern PHP.",
  4896. "homepage": "http://psysh.org",
  4897. "keywords": [
  4898. "REPL",
  4899. "console",
  4900. "interactive",
  4901. "shell"
  4902. ],
  4903. "support": {
  4904. "issues": "https://github.com/bobthecow/psysh/issues",
  4905. "source": "https://github.com/bobthecow/psysh/tree/v0.12.0"
  4906. },
  4907. "time": "2023-12-20T15:28:09+00:00"
  4908. },
  4909. {
  4910. "name": "ralouphie/getallheaders",
  4911. "version": "3.0.3",
  4912. "source": {
  4913. "type": "git",
  4914. "url": "https://github.com/ralouphie/getallheaders.git",
  4915. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4916. },
  4917. "dist": {
  4918. "type": "zip",
  4919. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4920. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4921. "shasum": "",
  4922. "mirrors": [
  4923. {
  4924. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4925. "preferred": true
  4926. }
  4927. ]
  4928. },
  4929. "require": {
  4930. "php": ">=5.6"
  4931. },
  4932. "require-dev": {
  4933. "php-coveralls/php-coveralls": "^2.1",
  4934. "phpunit/phpunit": "^5 || ^6.5"
  4935. },
  4936. "type": "library",
  4937. "autoload": {
  4938. "files": [
  4939. "src/getallheaders.php"
  4940. ]
  4941. },
  4942. "notification-url": "https://packagist.org/downloads/",
  4943. "license": [
  4944. "MIT"
  4945. ],
  4946. "authors": [
  4947. {
  4948. "name": "Ralph Khattar",
  4949. "email": "ralph.khattar@gmail.com"
  4950. }
  4951. ],
  4952. "description": "A polyfill for getallheaders.",
  4953. "support": {
  4954. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4955. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4956. },
  4957. "time": "2019-03-08T08:55:37+00:00"
  4958. },
  4959. {
  4960. "name": "ramsey/collection",
  4961. "version": "1.3.0",
  4962. "source": {
  4963. "type": "git",
  4964. "url": "https://github.com/ramsey/collection.git",
  4965. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4"
  4966. },
  4967. "dist": {
  4968. "type": "zip",
  4969. "url": "https://api.github.com/repos/ramsey/collection/zipball/ad7475d1c9e70b190ecffc58f2d989416af339b4",
  4970. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4",
  4971. "shasum": "",
  4972. "mirrors": [
  4973. {
  4974. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4975. "preferred": true
  4976. }
  4977. ]
  4978. },
  4979. "require": {
  4980. "php": "^7.4 || ^8.0",
  4981. "symfony/polyfill-php81": "^1.23"
  4982. },
  4983. "require-dev": {
  4984. "captainhook/plugin-composer": "^5.3",
  4985. "ergebnis/composer-normalize": "^2.28.3",
  4986. "fakerphp/faker": "^1.21",
  4987. "hamcrest/hamcrest-php": "^2.0",
  4988. "jangregor/phpstan-prophecy": "^1.0",
  4989. "mockery/mockery": "^1.5",
  4990. "php-parallel-lint/php-console-highlighter": "^1.0",
  4991. "php-parallel-lint/php-parallel-lint": "^1.3",
  4992. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  4993. "phpspec/prophecy-phpunit": "^2.0",
  4994. "phpstan/extension-installer": "^1.2",
  4995. "phpstan/phpstan": "^1.9",
  4996. "phpstan/phpstan-mockery": "^1.1",
  4997. "phpstan/phpstan-phpunit": "^1.3",
  4998. "phpunit/phpunit": "^9.5",
  4999. "psalm/plugin-mockery": "^1.1",
  5000. "psalm/plugin-phpunit": "^0.18.4",
  5001. "ramsey/coding-standard": "^2.0.3",
  5002. "ramsey/conventional-commits": "^1.3",
  5003. "vimeo/psalm": "^5.4"
  5004. },
  5005. "type": "library",
  5006. "extra": {
  5007. "captainhook": {
  5008. "force-install": true
  5009. },
  5010. "ramsey/conventional-commits": {
  5011. "configFile": "conventional-commits.json"
  5012. }
  5013. },
  5014. "autoload": {
  5015. "psr-4": {
  5016. "Ramsey\\Collection\\": "src/"
  5017. }
  5018. },
  5019. "notification-url": "https://packagist.org/downloads/",
  5020. "license": [
  5021. "MIT"
  5022. ],
  5023. "authors": [
  5024. {
  5025. "name": "Ben Ramsey",
  5026. "email": "ben@benramsey.com",
  5027. "homepage": "https://benramsey.com"
  5028. }
  5029. ],
  5030. "description": "A PHP library for representing and manipulating collections.",
  5031. "keywords": [
  5032. "array",
  5033. "collection",
  5034. "hash",
  5035. "map",
  5036. "queue",
  5037. "set"
  5038. ],
  5039. "support": {
  5040. "issues": "https://github.com/ramsey/collection/issues",
  5041. "source": "https://github.com/ramsey/collection/tree/1.3.0"
  5042. },
  5043. "funding": [
  5044. {
  5045. "url": "https://github.com/ramsey",
  5046. "type": "github"
  5047. },
  5048. {
  5049. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  5050. "type": "tidelift"
  5051. }
  5052. ],
  5053. "time": "2022-12-27T19:12:24+00:00"
  5054. },
  5055. {
  5056. "name": "ramsey/uuid",
  5057. "version": "4.2.3",
  5058. "source": {
  5059. "type": "git",
  5060. "url": "https://github.com/ramsey/uuid.git",
  5061. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df"
  5062. },
  5063. "dist": {
  5064. "type": "zip",
  5065. "url": "https://api.github.com/repos/ramsey/uuid/zipball/fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  5066. "reference": "fc9bb7fb5388691fd7373cd44dcb4d63bbcf24df",
  5067. "shasum": "",
  5068. "mirrors": [
  5069. {
  5070. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5071. "preferred": true
  5072. }
  5073. ]
  5074. },
  5075. "require": {
  5076. "brick/math": "^0.8 || ^0.9",
  5077. "ext-json": "*",
  5078. "php": "^7.2 || ^8.0",
  5079. "ramsey/collection": "^1.0",
  5080. "symfony/polyfill-ctype": "^1.8",
  5081. "symfony/polyfill-php80": "^1.14"
  5082. },
  5083. "replace": {
  5084. "rhumsaa/uuid": "self.version"
  5085. },
  5086. "require-dev": {
  5087. "captainhook/captainhook": "^5.10",
  5088. "captainhook/plugin-composer": "^5.3",
  5089. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  5090. "doctrine/annotations": "^1.8",
  5091. "ergebnis/composer-normalize": "^2.15",
  5092. "mockery/mockery": "^1.3",
  5093. "moontoast/math": "^1.1",
  5094. "paragonie/random-lib": "^2",
  5095. "php-mock/php-mock": "^2.2",
  5096. "php-mock/php-mock-mockery": "^1.3",
  5097. "php-parallel-lint/php-parallel-lint": "^1.1",
  5098. "phpbench/phpbench": "^1.0",
  5099. "phpstan/extension-installer": "^1.0",
  5100. "phpstan/phpstan": "^0.12",
  5101. "phpstan/phpstan-mockery": "^0.12",
  5102. "phpstan/phpstan-phpunit": "^0.12",
  5103. "phpunit/phpunit": "^8.5 || ^9",
  5104. "slevomat/coding-standard": "^7.0",
  5105. "squizlabs/php_codesniffer": "^3.5",
  5106. "vimeo/psalm": "^4.9"
  5107. },
  5108. "suggest": {
  5109. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  5110. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  5111. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  5112. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  5113. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  5114. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  5115. },
  5116. "type": "library",
  5117. "extra": {
  5118. "branch-alias": {
  5119. "dev-main": "4.x-dev"
  5120. },
  5121. "captainhook": {
  5122. "force-install": true
  5123. }
  5124. },
  5125. "autoload": {
  5126. "files": [
  5127. "src/functions.php"
  5128. ],
  5129. "psr-4": {
  5130. "Ramsey\\Uuid\\": "src/"
  5131. }
  5132. },
  5133. "notification-url": "https://packagist.org/downloads/",
  5134. "license": [
  5135. "MIT"
  5136. ],
  5137. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  5138. "keywords": [
  5139. "guid",
  5140. "identifier",
  5141. "uuid"
  5142. ],
  5143. "support": {
  5144. "issues": "https://github.com/ramsey/uuid/issues",
  5145. "source": "https://github.com/ramsey/uuid/tree/4.2.3"
  5146. },
  5147. "funding": [
  5148. {
  5149. "url": "https://github.com/ramsey",
  5150. "type": "github"
  5151. },
  5152. {
  5153. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  5154. "type": "tidelift"
  5155. }
  5156. ],
  5157. "time": "2021-09-25T23:10:38+00:00"
  5158. },
  5159. {
  5160. "name": "swiftmailer/swiftmailer",
  5161. "version": "v6.3.0",
  5162. "source": {
  5163. "type": "git",
  5164. "url": "https://github.com/swiftmailer/swiftmailer.git",
  5165. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  5166. },
  5167. "dist": {
  5168. "type": "zip",
  5169. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  5170. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  5171. "shasum": ""
  5172. },
  5173. "require": {
  5174. "egulias/email-validator": "^2.0|^3.1",
  5175. "php": ">=7.0.0",
  5176. "symfony/polyfill-iconv": "^1.0",
  5177. "symfony/polyfill-intl-idn": "^1.10",
  5178. "symfony/polyfill-mbstring": "^1.0"
  5179. },
  5180. "require-dev": {
  5181. "mockery/mockery": "^1.0",
  5182. "symfony/phpunit-bridge": "^4.4|^5.4"
  5183. },
  5184. "suggest": {
  5185. "ext-intl": "Needed to support internationalized email addresses"
  5186. },
  5187. "type": "library",
  5188. "extra": {
  5189. "branch-alias": {
  5190. "dev-master": "6.2-dev"
  5191. }
  5192. },
  5193. "autoload": {
  5194. "files": [
  5195. "lib/swift_required.php"
  5196. ]
  5197. },
  5198. "notification-url": "https://packagist.org/downloads/",
  5199. "license": [
  5200. "MIT"
  5201. ],
  5202. "authors": [
  5203. {
  5204. "name": "Chris Corbyn"
  5205. },
  5206. {
  5207. "name": "Fabien Potencier",
  5208. "email": "fabien@symfony.com"
  5209. }
  5210. ],
  5211. "description": "Swiftmailer, free feature-rich PHP mailer",
  5212. "homepage": "https://swiftmailer.symfony.com",
  5213. "keywords": [
  5214. "email",
  5215. "mail",
  5216. "mailer"
  5217. ],
  5218. "support": {
  5219. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  5220. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  5221. },
  5222. "funding": [
  5223. {
  5224. "url": "https://github.com/fabpot",
  5225. "type": "github"
  5226. },
  5227. {
  5228. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  5229. "type": "tidelift"
  5230. }
  5231. ],
  5232. "abandoned": "symfony/mailer",
  5233. "time": "2021-10-18T15:26:12+00:00"
  5234. },
  5235. {
  5236. "name": "symfony/cache",
  5237. "version": "v5.4.42",
  5238. "source": {
  5239. "type": "git",
  5240. "url": "https://github.com/symfony/cache.git",
  5241. "reference": "6f5f750692bd5a212e01a4f1945fd856bceef89e"
  5242. },
  5243. "dist": {
  5244. "type": "zip",
  5245. "url": "https://api.github.com/repos/symfony/cache/zipball/6f5f750692bd5a212e01a4f1945fd856bceef89e",
  5246. "reference": "6f5f750692bd5a212e01a4f1945fd856bceef89e",
  5247. "shasum": ""
  5248. },
  5249. "require": {
  5250. "php": ">=7.2.5",
  5251. "psr/cache": "^1.0|^2.0",
  5252. "psr/log": "^1.1|^2|^3",
  5253. "symfony/cache-contracts": "^1.1.7|^2",
  5254. "symfony/deprecation-contracts": "^2.1|^3",
  5255. "symfony/polyfill-php73": "^1.9",
  5256. "symfony/polyfill-php80": "^1.16",
  5257. "symfony/service-contracts": "^1.1|^2|^3",
  5258. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  5259. },
  5260. "conflict": {
  5261. "doctrine/dbal": "<2.13.1",
  5262. "symfony/dependency-injection": "<4.4",
  5263. "symfony/http-kernel": "<4.4",
  5264. "symfony/var-dumper": "<4.4"
  5265. },
  5266. "provide": {
  5267. "psr/cache-implementation": "1.0|2.0",
  5268. "psr/simple-cache-implementation": "1.0|2.0",
  5269. "symfony/cache-implementation": "1.0|2.0"
  5270. },
  5271. "require-dev": {
  5272. "cache/integration-tests": "dev-master",
  5273. "doctrine/cache": "^1.6|^2.0",
  5274. "doctrine/dbal": "^2.13.1|^3|^4",
  5275. "predis/predis": "^1.1|^2.0",
  5276. "psr/simple-cache": "^1.0|^2.0",
  5277. "symfony/config": "^4.4|^5.0|^6.0",
  5278. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5279. "symfony/filesystem": "^4.4|^5.0|^6.0",
  5280. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  5281. "symfony/messenger": "^4.4|^5.0|^6.0",
  5282. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  5283. },
  5284. "type": "library",
  5285. "autoload": {
  5286. "psr-4": {
  5287. "Symfony\\Component\\Cache\\": ""
  5288. },
  5289. "exclude-from-classmap": [
  5290. "/Tests/"
  5291. ]
  5292. },
  5293. "notification-url": "https://packagist.org/downloads/",
  5294. "license": [
  5295. "MIT"
  5296. ],
  5297. "authors": [
  5298. {
  5299. "name": "Nicolas Grekas",
  5300. "email": "p@tchwork.com"
  5301. },
  5302. {
  5303. "name": "Symfony Community",
  5304. "homepage": "https://symfony.com/contributors"
  5305. }
  5306. ],
  5307. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  5308. "homepage": "https://symfony.com",
  5309. "keywords": [
  5310. "caching",
  5311. "psr6"
  5312. ],
  5313. "support": {
  5314. "source": "https://github.com/symfony/cache/tree/v5.4.42"
  5315. },
  5316. "funding": [
  5317. {
  5318. "url": "https://symfony.com/sponsor",
  5319. "type": "custom"
  5320. },
  5321. {
  5322. "url": "https://github.com/fabpot",
  5323. "type": "github"
  5324. },
  5325. {
  5326. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5327. "type": "tidelift"
  5328. }
  5329. ],
  5330. "time": "2024-07-10T06:02:18+00:00"
  5331. },
  5332. {
  5333. "name": "symfony/cache-contracts",
  5334. "version": "v2.5.3",
  5335. "source": {
  5336. "type": "git",
  5337. "url": "https://github.com/symfony/cache-contracts.git",
  5338. "reference": "fee6db04d913094e2fb55ff8e7db5685a8134463"
  5339. },
  5340. "dist": {
  5341. "type": "zip",
  5342. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/fee6db04d913094e2fb55ff8e7db5685a8134463",
  5343. "reference": "fee6db04d913094e2fb55ff8e7db5685a8134463",
  5344. "shasum": ""
  5345. },
  5346. "require": {
  5347. "php": ">=7.2.5",
  5348. "psr/cache": "^1.0|^2.0|^3.0"
  5349. },
  5350. "suggest": {
  5351. "symfony/cache-implementation": ""
  5352. },
  5353. "type": "library",
  5354. "extra": {
  5355. "branch-alias": {
  5356. "dev-main": "2.5-dev"
  5357. },
  5358. "thanks": {
  5359. "name": "symfony/contracts",
  5360. "url": "https://github.com/symfony/contracts"
  5361. }
  5362. },
  5363. "autoload": {
  5364. "psr-4": {
  5365. "Symfony\\Contracts\\Cache\\": ""
  5366. }
  5367. },
  5368. "notification-url": "https://packagist.org/downloads/",
  5369. "license": [
  5370. "MIT"
  5371. ],
  5372. "authors": [
  5373. {
  5374. "name": "Nicolas Grekas",
  5375. "email": "p@tchwork.com"
  5376. },
  5377. {
  5378. "name": "Symfony Community",
  5379. "homepage": "https://symfony.com/contributors"
  5380. }
  5381. ],
  5382. "description": "Generic abstractions related to caching",
  5383. "homepage": "https://symfony.com",
  5384. "keywords": [
  5385. "abstractions",
  5386. "contracts",
  5387. "decoupling",
  5388. "interfaces",
  5389. "interoperability",
  5390. "standards"
  5391. ],
  5392. "support": {
  5393. "source": "https://github.com/symfony/cache-contracts/tree/v2.5.3"
  5394. },
  5395. "funding": [
  5396. {
  5397. "url": "https://symfony.com/sponsor",
  5398. "type": "custom"
  5399. },
  5400. {
  5401. "url": "https://github.com/fabpot",
  5402. "type": "github"
  5403. },
  5404. {
  5405. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5406. "type": "tidelift"
  5407. }
  5408. ],
  5409. "time": "2024-01-23T13:51:25+00:00"
  5410. },
  5411. {
  5412. "name": "symfony/console",
  5413. "version": "v5.4.34",
  5414. "source": {
  5415. "type": "git",
  5416. "url": "https://github.com/symfony/console.git",
  5417. "reference": "4b4d8cd118484aa604ec519062113dd87abde18c"
  5418. },
  5419. "dist": {
  5420. "type": "zip",
  5421. "url": "https://api.github.com/repos/symfony/console/zipball/4b4d8cd118484aa604ec519062113dd87abde18c",
  5422. "reference": "4b4d8cd118484aa604ec519062113dd87abde18c",
  5423. "shasum": "",
  5424. "mirrors": [
  5425. {
  5426. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5427. "preferred": true
  5428. }
  5429. ]
  5430. },
  5431. "require": {
  5432. "php": ">=7.2.5",
  5433. "symfony/deprecation-contracts": "^2.1|^3",
  5434. "symfony/polyfill-mbstring": "~1.0",
  5435. "symfony/polyfill-php73": "^1.9",
  5436. "symfony/polyfill-php80": "^1.16",
  5437. "symfony/service-contracts": "^1.1|^2|^3",
  5438. "symfony/string": "^5.1|^6.0"
  5439. },
  5440. "conflict": {
  5441. "psr/log": ">=3",
  5442. "symfony/dependency-injection": "<4.4",
  5443. "symfony/dotenv": "<5.1",
  5444. "symfony/event-dispatcher": "<4.4",
  5445. "symfony/lock": "<4.4",
  5446. "symfony/process": "<4.4"
  5447. },
  5448. "provide": {
  5449. "psr/log-implementation": "1.0|2.0"
  5450. },
  5451. "require-dev": {
  5452. "psr/log": "^1|^2",
  5453. "symfony/config": "^4.4|^5.0|^6.0",
  5454. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5455. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  5456. "symfony/lock": "^4.4|^5.0|^6.0",
  5457. "symfony/process": "^4.4|^5.0|^6.0",
  5458. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  5459. },
  5460. "suggest": {
  5461. "psr/log": "For using the console logger",
  5462. "symfony/event-dispatcher": "",
  5463. "symfony/lock": "",
  5464. "symfony/process": ""
  5465. },
  5466. "type": "library",
  5467. "autoload": {
  5468. "psr-4": {
  5469. "Symfony\\Component\\Console\\": ""
  5470. },
  5471. "exclude-from-classmap": [
  5472. "/Tests/"
  5473. ]
  5474. },
  5475. "notification-url": "https://packagist.org/downloads/",
  5476. "license": [
  5477. "MIT"
  5478. ],
  5479. "authors": [
  5480. {
  5481. "name": "Fabien Potencier",
  5482. "email": "fabien@symfony.com"
  5483. },
  5484. {
  5485. "name": "Symfony Community",
  5486. "homepage": "https://symfony.com/contributors"
  5487. }
  5488. ],
  5489. "description": "Eases the creation of beautiful and testable command line interfaces",
  5490. "homepage": "https://symfony.com",
  5491. "keywords": [
  5492. "cli",
  5493. "command-line",
  5494. "console",
  5495. "terminal"
  5496. ],
  5497. "support": {
  5498. "source": "https://github.com/symfony/console/tree/v5.4.34"
  5499. },
  5500. "funding": [
  5501. {
  5502. "url": "https://symfony.com/sponsor",
  5503. "type": "custom"
  5504. },
  5505. {
  5506. "url": "https://github.com/fabpot",
  5507. "type": "github"
  5508. },
  5509. {
  5510. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5511. "type": "tidelift"
  5512. }
  5513. ],
  5514. "time": "2023-12-08T13:33:03+00:00"
  5515. },
  5516. {
  5517. "name": "symfony/css-selector",
  5518. "version": "v5.4.26",
  5519. "source": {
  5520. "type": "git",
  5521. "url": "https://github.com/symfony/css-selector.git",
  5522. "reference": "0ad3f7e9a1ab492c5b4214cf22a9dc55dcf8600a"
  5523. },
  5524. "dist": {
  5525. "type": "zip",
  5526. "url": "https://api.github.com/repos/symfony/css-selector/zipball/0ad3f7e9a1ab492c5b4214cf22a9dc55dcf8600a",
  5527. "reference": "0ad3f7e9a1ab492c5b4214cf22a9dc55dcf8600a",
  5528. "shasum": "",
  5529. "mirrors": [
  5530. {
  5531. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5532. "preferred": true
  5533. }
  5534. ]
  5535. },
  5536. "require": {
  5537. "php": ">=7.2.5",
  5538. "symfony/polyfill-php80": "^1.16"
  5539. },
  5540. "type": "library",
  5541. "autoload": {
  5542. "psr-4": {
  5543. "Symfony\\Component\\CssSelector\\": ""
  5544. },
  5545. "exclude-from-classmap": [
  5546. "/Tests/"
  5547. ]
  5548. },
  5549. "notification-url": "https://packagist.org/downloads/",
  5550. "license": [
  5551. "MIT"
  5552. ],
  5553. "authors": [
  5554. {
  5555. "name": "Fabien Potencier",
  5556. "email": "fabien@symfony.com"
  5557. },
  5558. {
  5559. "name": "Jean-François Simon",
  5560. "email": "jeanfrancois.simon@sensiolabs.com"
  5561. },
  5562. {
  5563. "name": "Symfony Community",
  5564. "homepage": "https://symfony.com/contributors"
  5565. }
  5566. ],
  5567. "description": "Converts CSS selectors to XPath expressions",
  5568. "homepage": "https://symfony.com",
  5569. "support": {
  5570. "source": "https://github.com/symfony/css-selector/tree/v5.4.26"
  5571. },
  5572. "funding": [
  5573. {
  5574. "url": "https://symfony.com/sponsor",
  5575. "type": "custom"
  5576. },
  5577. {
  5578. "url": "https://github.com/fabpot",
  5579. "type": "github"
  5580. },
  5581. {
  5582. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5583. "type": "tidelift"
  5584. }
  5585. ],
  5586. "time": "2023-07-07T06:10:25+00:00"
  5587. },
  5588. {
  5589. "name": "symfony/deprecation-contracts",
  5590. "version": "v2.5.2",
  5591. "source": {
  5592. "type": "git",
  5593. "url": "https://github.com/symfony/deprecation-contracts.git",
  5594. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
  5595. },
  5596. "dist": {
  5597. "type": "zip",
  5598. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  5599. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  5600. "shasum": "",
  5601. "mirrors": [
  5602. {
  5603. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5604. "preferred": true
  5605. }
  5606. ]
  5607. },
  5608. "require": {
  5609. "php": ">=7.1"
  5610. },
  5611. "type": "library",
  5612. "extra": {
  5613. "branch-alias": {
  5614. "dev-main": "2.5-dev"
  5615. },
  5616. "thanks": {
  5617. "name": "symfony/contracts",
  5618. "url": "https://github.com/symfony/contracts"
  5619. }
  5620. },
  5621. "autoload": {
  5622. "files": [
  5623. "function.php"
  5624. ]
  5625. },
  5626. "notification-url": "https://packagist.org/downloads/",
  5627. "license": [
  5628. "MIT"
  5629. ],
  5630. "authors": [
  5631. {
  5632. "name": "Nicolas Grekas",
  5633. "email": "p@tchwork.com"
  5634. },
  5635. {
  5636. "name": "Symfony Community",
  5637. "homepage": "https://symfony.com/contributors"
  5638. }
  5639. ],
  5640. "description": "A generic function and convention to trigger deprecation notices",
  5641. "homepage": "https://symfony.com",
  5642. "support": {
  5643. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.2"
  5644. },
  5645. "funding": [
  5646. {
  5647. "url": "https://symfony.com/sponsor",
  5648. "type": "custom"
  5649. },
  5650. {
  5651. "url": "https://github.com/fabpot",
  5652. "type": "github"
  5653. },
  5654. {
  5655. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5656. "type": "tidelift"
  5657. }
  5658. ],
  5659. "time": "2022-01-02T09:53:40+00:00"
  5660. },
  5661. {
  5662. "name": "symfony/error-handler",
  5663. "version": "v5.4.29",
  5664. "source": {
  5665. "type": "git",
  5666. "url": "https://github.com/symfony/error-handler.git",
  5667. "reference": "328c6fcfd2f90b64c16efaf0ea67a311d672f078"
  5668. },
  5669. "dist": {
  5670. "type": "zip",
  5671. "url": "https://api.github.com/repos/symfony/error-handler/zipball/328c6fcfd2f90b64c16efaf0ea67a311d672f078",
  5672. "reference": "328c6fcfd2f90b64c16efaf0ea67a311d672f078",
  5673. "shasum": "",
  5674. "mirrors": [
  5675. {
  5676. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5677. "preferred": true
  5678. }
  5679. ]
  5680. },
  5681. "require": {
  5682. "php": ">=7.2.5",
  5683. "psr/log": "^1|^2|^3",
  5684. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  5685. },
  5686. "require-dev": {
  5687. "symfony/deprecation-contracts": "^2.1|^3",
  5688. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  5689. "symfony/serializer": "^4.4|^5.0|^6.0"
  5690. },
  5691. "bin": [
  5692. "Resources/bin/patch-type-declarations"
  5693. ],
  5694. "type": "library",
  5695. "autoload": {
  5696. "psr-4": {
  5697. "Symfony\\Component\\ErrorHandler\\": ""
  5698. },
  5699. "exclude-from-classmap": [
  5700. "/Tests/"
  5701. ]
  5702. },
  5703. "notification-url": "https://packagist.org/downloads/",
  5704. "license": [
  5705. "MIT"
  5706. ],
  5707. "authors": [
  5708. {
  5709. "name": "Fabien Potencier",
  5710. "email": "fabien@symfony.com"
  5711. },
  5712. {
  5713. "name": "Symfony Community",
  5714. "homepage": "https://symfony.com/contributors"
  5715. }
  5716. ],
  5717. "description": "Provides tools to manage errors and ease debugging PHP code",
  5718. "homepage": "https://symfony.com",
  5719. "support": {
  5720. "source": "https://github.com/symfony/error-handler/tree/v5.4.29"
  5721. },
  5722. "funding": [
  5723. {
  5724. "url": "https://symfony.com/sponsor",
  5725. "type": "custom"
  5726. },
  5727. {
  5728. "url": "https://github.com/fabpot",
  5729. "type": "github"
  5730. },
  5731. {
  5732. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5733. "type": "tidelift"
  5734. }
  5735. ],
  5736. "time": "2023-09-06T21:54:06+00:00"
  5737. },
  5738. {
  5739. "name": "symfony/event-dispatcher",
  5740. "version": "v5.4.34",
  5741. "source": {
  5742. "type": "git",
  5743. "url": "https://github.com/symfony/event-dispatcher.git",
  5744. "reference": "e3bca343efeb613f843c254e7718ef17c9bdf7a3"
  5745. },
  5746. "dist": {
  5747. "type": "zip",
  5748. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/e3bca343efeb613f843c254e7718ef17c9bdf7a3",
  5749. "reference": "e3bca343efeb613f843c254e7718ef17c9bdf7a3",
  5750. "shasum": "",
  5751. "mirrors": [
  5752. {
  5753. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5754. "preferred": true
  5755. }
  5756. ]
  5757. },
  5758. "require": {
  5759. "php": ">=7.2.5",
  5760. "symfony/deprecation-contracts": "^2.1|^3",
  5761. "symfony/event-dispatcher-contracts": "^2|^3",
  5762. "symfony/polyfill-php80": "^1.16"
  5763. },
  5764. "conflict": {
  5765. "symfony/dependency-injection": "<4.4"
  5766. },
  5767. "provide": {
  5768. "psr/event-dispatcher-implementation": "1.0",
  5769. "symfony/event-dispatcher-implementation": "2.0"
  5770. },
  5771. "require-dev": {
  5772. "psr/log": "^1|^2|^3",
  5773. "symfony/config": "^4.4|^5.0|^6.0",
  5774. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5775. "symfony/error-handler": "^4.4|^5.0|^6.0",
  5776. "symfony/expression-language": "^4.4|^5.0|^6.0",
  5777. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  5778. "symfony/service-contracts": "^1.1|^2|^3",
  5779. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  5780. },
  5781. "suggest": {
  5782. "symfony/dependency-injection": "",
  5783. "symfony/http-kernel": ""
  5784. },
  5785. "type": "library",
  5786. "autoload": {
  5787. "psr-4": {
  5788. "Symfony\\Component\\EventDispatcher\\": ""
  5789. },
  5790. "exclude-from-classmap": [
  5791. "/Tests/"
  5792. ]
  5793. },
  5794. "notification-url": "https://packagist.org/downloads/",
  5795. "license": [
  5796. "MIT"
  5797. ],
  5798. "authors": [
  5799. {
  5800. "name": "Fabien Potencier",
  5801. "email": "fabien@symfony.com"
  5802. },
  5803. {
  5804. "name": "Symfony Community",
  5805. "homepage": "https://symfony.com/contributors"
  5806. }
  5807. ],
  5808. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5809. "homepage": "https://symfony.com",
  5810. "support": {
  5811. "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.34"
  5812. },
  5813. "funding": [
  5814. {
  5815. "url": "https://symfony.com/sponsor",
  5816. "type": "custom"
  5817. },
  5818. {
  5819. "url": "https://github.com/fabpot",
  5820. "type": "github"
  5821. },
  5822. {
  5823. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5824. "type": "tidelift"
  5825. }
  5826. ],
  5827. "time": "2023-12-27T21:12:56+00:00"
  5828. },
  5829. {
  5830. "name": "symfony/event-dispatcher-contracts",
  5831. "version": "v2.5.2",
  5832. "source": {
  5833. "type": "git",
  5834. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5835. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1"
  5836. },
  5837. "dist": {
  5838. "type": "zip",
  5839. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/f98b54df6ad059855739db6fcbc2d36995283fe1",
  5840. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1",
  5841. "shasum": "",
  5842. "mirrors": [
  5843. {
  5844. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5845. "preferred": true
  5846. }
  5847. ]
  5848. },
  5849. "require": {
  5850. "php": ">=7.2.5",
  5851. "psr/event-dispatcher": "^1"
  5852. },
  5853. "suggest": {
  5854. "symfony/event-dispatcher-implementation": ""
  5855. },
  5856. "type": "library",
  5857. "extra": {
  5858. "branch-alias": {
  5859. "dev-main": "2.5-dev"
  5860. },
  5861. "thanks": {
  5862. "name": "symfony/contracts",
  5863. "url": "https://github.com/symfony/contracts"
  5864. }
  5865. },
  5866. "autoload": {
  5867. "psr-4": {
  5868. "Symfony\\Contracts\\EventDispatcher\\": ""
  5869. }
  5870. },
  5871. "notification-url": "https://packagist.org/downloads/",
  5872. "license": [
  5873. "MIT"
  5874. ],
  5875. "authors": [
  5876. {
  5877. "name": "Nicolas Grekas",
  5878. "email": "p@tchwork.com"
  5879. },
  5880. {
  5881. "name": "Symfony Community",
  5882. "homepage": "https://symfony.com/contributors"
  5883. }
  5884. ],
  5885. "description": "Generic abstractions related to dispatching event",
  5886. "homepage": "https://symfony.com",
  5887. "keywords": [
  5888. "abstractions",
  5889. "contracts",
  5890. "decoupling",
  5891. "interfaces",
  5892. "interoperability",
  5893. "standards"
  5894. ],
  5895. "support": {
  5896. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.5.2"
  5897. },
  5898. "funding": [
  5899. {
  5900. "url": "https://symfony.com/sponsor",
  5901. "type": "custom"
  5902. },
  5903. {
  5904. "url": "https://github.com/fabpot",
  5905. "type": "github"
  5906. },
  5907. {
  5908. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5909. "type": "tidelift"
  5910. }
  5911. ],
  5912. "time": "2022-01-02T09:53:40+00:00"
  5913. },
  5914. {
  5915. "name": "symfony/finder",
  5916. "version": "v5.4.27",
  5917. "source": {
  5918. "type": "git",
  5919. "url": "https://github.com/symfony/finder.git",
  5920. "reference": "ff4bce3c33451e7ec778070e45bd23f74214cd5d"
  5921. },
  5922. "dist": {
  5923. "type": "zip",
  5924. "url": "https://api.github.com/repos/symfony/finder/zipball/ff4bce3c33451e7ec778070e45bd23f74214cd5d",
  5925. "reference": "ff4bce3c33451e7ec778070e45bd23f74214cd5d",
  5926. "shasum": "",
  5927. "mirrors": [
  5928. {
  5929. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5930. "preferred": true
  5931. }
  5932. ]
  5933. },
  5934. "require": {
  5935. "php": ">=7.2.5",
  5936. "symfony/deprecation-contracts": "^2.1|^3",
  5937. "symfony/polyfill-php80": "^1.16"
  5938. },
  5939. "type": "library",
  5940. "autoload": {
  5941. "psr-4": {
  5942. "Symfony\\Component\\Finder\\": ""
  5943. },
  5944. "exclude-from-classmap": [
  5945. "/Tests/"
  5946. ]
  5947. },
  5948. "notification-url": "https://packagist.org/downloads/",
  5949. "license": [
  5950. "MIT"
  5951. ],
  5952. "authors": [
  5953. {
  5954. "name": "Fabien Potencier",
  5955. "email": "fabien@symfony.com"
  5956. },
  5957. {
  5958. "name": "Symfony Community",
  5959. "homepage": "https://symfony.com/contributors"
  5960. }
  5961. ],
  5962. "description": "Finds files and directories via an intuitive fluent interface",
  5963. "homepage": "https://symfony.com",
  5964. "support": {
  5965. "source": "https://github.com/symfony/finder/tree/v5.4.27"
  5966. },
  5967. "funding": [
  5968. {
  5969. "url": "https://symfony.com/sponsor",
  5970. "type": "custom"
  5971. },
  5972. {
  5973. "url": "https://github.com/fabpot",
  5974. "type": "github"
  5975. },
  5976. {
  5977. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5978. "type": "tidelift"
  5979. }
  5980. ],
  5981. "time": "2023-07-31T08:02:31+00:00"
  5982. },
  5983. {
  5984. "name": "symfony/http-foundation",
  5985. "version": "v5.4.34",
  5986. "source": {
  5987. "type": "git",
  5988. "url": "https://github.com/symfony/http-foundation.git",
  5989. "reference": "4da1713e88cf9c44bd4bf65f54772681222fcbec"
  5990. },
  5991. "dist": {
  5992. "type": "zip",
  5993. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/4da1713e88cf9c44bd4bf65f54772681222fcbec",
  5994. "reference": "4da1713e88cf9c44bd4bf65f54772681222fcbec",
  5995. "shasum": "",
  5996. "mirrors": [
  5997. {
  5998. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5999. "preferred": true
  6000. }
  6001. ]
  6002. },
  6003. "require": {
  6004. "php": ">=7.2.5",
  6005. "symfony/deprecation-contracts": "^2.1|^3",
  6006. "symfony/polyfill-mbstring": "~1.1",
  6007. "symfony/polyfill-php80": "^1.16"
  6008. },
  6009. "require-dev": {
  6010. "predis/predis": "~1.0",
  6011. "symfony/cache": "^4.4|^5.0|^6.0",
  6012. "symfony/dependency-injection": "^5.4|^6.0",
  6013. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6014. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  6015. "symfony/mime": "^4.4|^5.0|^6.0",
  6016. "symfony/rate-limiter": "^5.2|^6.0"
  6017. },
  6018. "suggest": {
  6019. "symfony/mime": "To use the file extension guesser"
  6020. },
  6021. "type": "library",
  6022. "autoload": {
  6023. "psr-4": {
  6024. "Symfony\\Component\\HttpFoundation\\": ""
  6025. },
  6026. "exclude-from-classmap": [
  6027. "/Tests/"
  6028. ]
  6029. },
  6030. "notification-url": "https://packagist.org/downloads/",
  6031. "license": [
  6032. "MIT"
  6033. ],
  6034. "authors": [
  6035. {
  6036. "name": "Fabien Potencier",
  6037. "email": "fabien@symfony.com"
  6038. },
  6039. {
  6040. "name": "Symfony Community",
  6041. "homepage": "https://symfony.com/contributors"
  6042. }
  6043. ],
  6044. "description": "Defines an object-oriented layer for the HTTP specification",
  6045. "homepage": "https://symfony.com",
  6046. "support": {
  6047. "source": "https://github.com/symfony/http-foundation/tree/v5.4.34"
  6048. },
  6049. "funding": [
  6050. {
  6051. "url": "https://symfony.com/sponsor",
  6052. "type": "custom"
  6053. },
  6054. {
  6055. "url": "https://github.com/fabpot",
  6056. "type": "github"
  6057. },
  6058. {
  6059. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6060. "type": "tidelift"
  6061. }
  6062. ],
  6063. "time": "2023-12-27T11:45:35+00:00"
  6064. },
  6065. {
  6066. "name": "symfony/http-kernel",
  6067. "version": "v5.4.34",
  6068. "source": {
  6069. "type": "git",
  6070. "url": "https://github.com/symfony/http-kernel.git",
  6071. "reference": "f2b00c66d1c7ef12f3fc625af2a0bc5d5857db7b"
  6072. },
  6073. "dist": {
  6074. "type": "zip",
  6075. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/f2b00c66d1c7ef12f3fc625af2a0bc5d5857db7b",
  6076. "reference": "f2b00c66d1c7ef12f3fc625af2a0bc5d5857db7b",
  6077. "shasum": "",
  6078. "mirrors": [
  6079. {
  6080. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6081. "preferred": true
  6082. }
  6083. ]
  6084. },
  6085. "require": {
  6086. "php": ">=7.2.5",
  6087. "psr/log": "^1|^2",
  6088. "symfony/deprecation-contracts": "^2.1|^3",
  6089. "symfony/error-handler": "^4.4|^5.0|^6.0",
  6090. "symfony/event-dispatcher": "^5.0|^6.0",
  6091. "symfony/http-foundation": "^5.4.21|^6.2.7",
  6092. "symfony/polyfill-ctype": "^1.8",
  6093. "symfony/polyfill-php73": "^1.9",
  6094. "symfony/polyfill-php80": "^1.16"
  6095. },
  6096. "conflict": {
  6097. "symfony/browser-kit": "<5.4",
  6098. "symfony/cache": "<5.0",
  6099. "symfony/config": "<5.0",
  6100. "symfony/console": "<4.4",
  6101. "symfony/dependency-injection": "<5.3",
  6102. "symfony/doctrine-bridge": "<5.0",
  6103. "symfony/form": "<5.0",
  6104. "symfony/http-client": "<5.0",
  6105. "symfony/mailer": "<5.0",
  6106. "symfony/messenger": "<5.0",
  6107. "symfony/translation": "<5.0",
  6108. "symfony/twig-bridge": "<5.0",
  6109. "symfony/validator": "<5.0",
  6110. "twig/twig": "<2.13"
  6111. },
  6112. "provide": {
  6113. "psr/log-implementation": "1.0|2.0"
  6114. },
  6115. "require-dev": {
  6116. "psr/cache": "^1.0|^2.0|^3.0",
  6117. "symfony/browser-kit": "^5.4|^6.0",
  6118. "symfony/config": "^5.0|^6.0",
  6119. "symfony/console": "^4.4|^5.0|^6.0",
  6120. "symfony/css-selector": "^4.4|^5.0|^6.0",
  6121. "symfony/dependency-injection": "^5.3|^6.0",
  6122. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  6123. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6124. "symfony/finder": "^4.4|^5.0|^6.0",
  6125. "symfony/http-client-contracts": "^1.1|^2|^3",
  6126. "symfony/process": "^4.4|^5.0|^6.0",
  6127. "symfony/routing": "^4.4|^5.0|^6.0",
  6128. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  6129. "symfony/translation": "^4.4|^5.0|^6.0",
  6130. "symfony/translation-contracts": "^1.1|^2|^3",
  6131. "twig/twig": "^2.13|^3.0.4"
  6132. },
  6133. "suggest": {
  6134. "symfony/browser-kit": "",
  6135. "symfony/config": "",
  6136. "symfony/console": "",
  6137. "symfony/dependency-injection": ""
  6138. },
  6139. "type": "library",
  6140. "autoload": {
  6141. "psr-4": {
  6142. "Symfony\\Component\\HttpKernel\\": ""
  6143. },
  6144. "exclude-from-classmap": [
  6145. "/Tests/"
  6146. ]
  6147. },
  6148. "notification-url": "https://packagist.org/downloads/",
  6149. "license": [
  6150. "MIT"
  6151. ],
  6152. "authors": [
  6153. {
  6154. "name": "Fabien Potencier",
  6155. "email": "fabien@symfony.com"
  6156. },
  6157. {
  6158. "name": "Symfony Community",
  6159. "homepage": "https://symfony.com/contributors"
  6160. }
  6161. ],
  6162. "description": "Provides a structured process for converting a Request into a Response",
  6163. "homepage": "https://symfony.com",
  6164. "support": {
  6165. "source": "https://github.com/symfony/http-kernel/tree/v5.4.34"
  6166. },
  6167. "funding": [
  6168. {
  6169. "url": "https://symfony.com/sponsor",
  6170. "type": "custom"
  6171. },
  6172. {
  6173. "url": "https://github.com/fabpot",
  6174. "type": "github"
  6175. },
  6176. {
  6177. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6178. "type": "tidelift"
  6179. }
  6180. ],
  6181. "time": "2023-12-30T13:02:02+00:00"
  6182. },
  6183. {
  6184. "name": "symfony/mime",
  6185. "version": "v5.4.26",
  6186. "source": {
  6187. "type": "git",
  6188. "url": "https://github.com/symfony/mime.git",
  6189. "reference": "2ea06dfeee20000a319d8407cea1d47533d5a9d2"
  6190. },
  6191. "dist": {
  6192. "type": "zip",
  6193. "url": "https://api.github.com/repos/symfony/mime/zipball/2ea06dfeee20000a319d8407cea1d47533d5a9d2",
  6194. "reference": "2ea06dfeee20000a319d8407cea1d47533d5a9d2",
  6195. "shasum": "",
  6196. "mirrors": [
  6197. {
  6198. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6199. "preferred": true
  6200. }
  6201. ]
  6202. },
  6203. "require": {
  6204. "php": ">=7.2.5",
  6205. "symfony/deprecation-contracts": "^2.1|^3",
  6206. "symfony/polyfill-intl-idn": "^1.10",
  6207. "symfony/polyfill-mbstring": "^1.0",
  6208. "symfony/polyfill-php80": "^1.16"
  6209. },
  6210. "conflict": {
  6211. "egulias/email-validator": "~3.0.0",
  6212. "phpdocumentor/reflection-docblock": "<3.2.2",
  6213. "phpdocumentor/type-resolver": "<1.4.0",
  6214. "symfony/mailer": "<4.4",
  6215. "symfony/serializer": "<5.4.26|>=6,<6.2.13|>=6.3,<6.3.2"
  6216. },
  6217. "require-dev": {
  6218. "egulias/email-validator": "^2.1.10|^3.1|^4",
  6219. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6220. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6221. "symfony/property-access": "^4.4|^5.1|^6.0",
  6222. "symfony/property-info": "^4.4|^5.1|^6.0",
  6223. "symfony/serializer": "^5.4.26|~6.2.13|^6.3.2"
  6224. },
  6225. "type": "library",
  6226. "autoload": {
  6227. "psr-4": {
  6228. "Symfony\\Component\\Mime\\": ""
  6229. },
  6230. "exclude-from-classmap": [
  6231. "/Tests/"
  6232. ]
  6233. },
  6234. "notification-url": "https://packagist.org/downloads/",
  6235. "license": [
  6236. "MIT"
  6237. ],
  6238. "authors": [
  6239. {
  6240. "name": "Fabien Potencier",
  6241. "email": "fabien@symfony.com"
  6242. },
  6243. {
  6244. "name": "Symfony Community",
  6245. "homepage": "https://symfony.com/contributors"
  6246. }
  6247. ],
  6248. "description": "Allows manipulating MIME messages",
  6249. "homepage": "https://symfony.com",
  6250. "keywords": [
  6251. "mime",
  6252. "mime-type"
  6253. ],
  6254. "support": {
  6255. "source": "https://github.com/symfony/mime/tree/v5.4.26"
  6256. },
  6257. "funding": [
  6258. {
  6259. "url": "https://symfony.com/sponsor",
  6260. "type": "custom"
  6261. },
  6262. {
  6263. "url": "https://github.com/fabpot",
  6264. "type": "github"
  6265. },
  6266. {
  6267. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6268. "type": "tidelift"
  6269. }
  6270. ],
  6271. "time": "2023-07-27T06:29:31+00:00"
  6272. },
  6273. {
  6274. "name": "symfony/polyfill-ctype",
  6275. "version": "v1.28.0",
  6276. "source": {
  6277. "type": "git",
  6278. "url": "https://github.com/symfony/polyfill-ctype.git",
  6279. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb"
  6280. },
  6281. "dist": {
  6282. "type": "zip",
  6283. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
  6284. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
  6285. "shasum": "",
  6286. "mirrors": [
  6287. {
  6288. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6289. "preferred": true
  6290. }
  6291. ]
  6292. },
  6293. "require": {
  6294. "php": ">=7.1"
  6295. },
  6296. "provide": {
  6297. "ext-ctype": "*"
  6298. },
  6299. "suggest": {
  6300. "ext-ctype": "For best performance"
  6301. },
  6302. "type": "library",
  6303. "extra": {
  6304. "branch-alias": {
  6305. "dev-main": "1.28-dev"
  6306. },
  6307. "thanks": {
  6308. "name": "symfony/polyfill",
  6309. "url": "https://github.com/symfony/polyfill"
  6310. }
  6311. },
  6312. "autoload": {
  6313. "files": [
  6314. "bootstrap.php"
  6315. ],
  6316. "psr-4": {
  6317. "Symfony\\Polyfill\\Ctype\\": ""
  6318. }
  6319. },
  6320. "notification-url": "https://packagist.org/downloads/",
  6321. "license": [
  6322. "MIT"
  6323. ],
  6324. "authors": [
  6325. {
  6326. "name": "Gert de Pagter",
  6327. "email": "BackEndTea@gmail.com"
  6328. },
  6329. {
  6330. "name": "Symfony Community",
  6331. "homepage": "https://symfony.com/contributors"
  6332. }
  6333. ],
  6334. "description": "Symfony polyfill for ctype functions",
  6335. "homepage": "https://symfony.com",
  6336. "keywords": [
  6337. "compatibility",
  6338. "ctype",
  6339. "polyfill",
  6340. "portable"
  6341. ],
  6342. "support": {
  6343. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.28.0"
  6344. },
  6345. "funding": [
  6346. {
  6347. "url": "https://symfony.com/sponsor",
  6348. "type": "custom"
  6349. },
  6350. {
  6351. "url": "https://github.com/fabpot",
  6352. "type": "github"
  6353. },
  6354. {
  6355. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6356. "type": "tidelift"
  6357. }
  6358. ],
  6359. "time": "2023-01-26T09:26:14+00:00"
  6360. },
  6361. {
  6362. "name": "symfony/polyfill-iconv",
  6363. "version": "v1.30.0",
  6364. "source": {
  6365. "type": "git",
  6366. "url": "https://github.com/symfony/polyfill-iconv.git",
  6367. "reference": "c027e6a3c6aee334663ec21f5852e89738abc805"
  6368. },
  6369. "dist": {
  6370. "type": "zip",
  6371. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c027e6a3c6aee334663ec21f5852e89738abc805",
  6372. "reference": "c027e6a3c6aee334663ec21f5852e89738abc805",
  6373. "shasum": ""
  6374. },
  6375. "require": {
  6376. "php": ">=7.1"
  6377. },
  6378. "provide": {
  6379. "ext-iconv": "*"
  6380. },
  6381. "suggest": {
  6382. "ext-iconv": "For best performance"
  6383. },
  6384. "type": "library",
  6385. "extra": {
  6386. "thanks": {
  6387. "name": "symfony/polyfill",
  6388. "url": "https://github.com/symfony/polyfill"
  6389. }
  6390. },
  6391. "autoload": {
  6392. "files": [
  6393. "bootstrap.php"
  6394. ],
  6395. "psr-4": {
  6396. "Symfony\\Polyfill\\Iconv\\": ""
  6397. }
  6398. },
  6399. "notification-url": "https://packagist.org/downloads/",
  6400. "license": [
  6401. "MIT"
  6402. ],
  6403. "authors": [
  6404. {
  6405. "name": "Nicolas Grekas",
  6406. "email": "p@tchwork.com"
  6407. },
  6408. {
  6409. "name": "Symfony Community",
  6410. "homepage": "https://symfony.com/contributors"
  6411. }
  6412. ],
  6413. "description": "Symfony polyfill for the Iconv extension",
  6414. "homepage": "https://symfony.com",
  6415. "keywords": [
  6416. "compatibility",
  6417. "iconv",
  6418. "polyfill",
  6419. "portable",
  6420. "shim"
  6421. ],
  6422. "support": {
  6423. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.30.0"
  6424. },
  6425. "funding": [
  6426. {
  6427. "url": "https://symfony.com/sponsor",
  6428. "type": "custom"
  6429. },
  6430. {
  6431. "url": "https://github.com/fabpot",
  6432. "type": "github"
  6433. },
  6434. {
  6435. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6436. "type": "tidelift"
  6437. }
  6438. ],
  6439. "time": "2024-05-31T15:07:36+00:00"
  6440. },
  6441. {
  6442. "name": "symfony/polyfill-intl-grapheme",
  6443. "version": "v1.28.0",
  6444. "source": {
  6445. "type": "git",
  6446. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6447. "reference": "875e90aeea2777b6f135677f618529449334a612"
  6448. },
  6449. "dist": {
  6450. "type": "zip",
  6451. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/875e90aeea2777b6f135677f618529449334a612",
  6452. "reference": "875e90aeea2777b6f135677f618529449334a612",
  6453. "shasum": "",
  6454. "mirrors": [
  6455. {
  6456. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6457. "preferred": true
  6458. }
  6459. ]
  6460. },
  6461. "require": {
  6462. "php": ">=7.1"
  6463. },
  6464. "suggest": {
  6465. "ext-intl": "For best performance"
  6466. },
  6467. "type": "library",
  6468. "extra": {
  6469. "branch-alias": {
  6470. "dev-main": "1.28-dev"
  6471. },
  6472. "thanks": {
  6473. "name": "symfony/polyfill",
  6474. "url": "https://github.com/symfony/polyfill"
  6475. }
  6476. },
  6477. "autoload": {
  6478. "files": [
  6479. "bootstrap.php"
  6480. ],
  6481. "psr-4": {
  6482. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6483. }
  6484. },
  6485. "notification-url": "https://packagist.org/downloads/",
  6486. "license": [
  6487. "MIT"
  6488. ],
  6489. "authors": [
  6490. {
  6491. "name": "Nicolas Grekas",
  6492. "email": "p@tchwork.com"
  6493. },
  6494. {
  6495. "name": "Symfony Community",
  6496. "homepage": "https://symfony.com/contributors"
  6497. }
  6498. ],
  6499. "description": "Symfony polyfill for intl's grapheme_* functions",
  6500. "homepage": "https://symfony.com",
  6501. "keywords": [
  6502. "compatibility",
  6503. "grapheme",
  6504. "intl",
  6505. "polyfill",
  6506. "portable",
  6507. "shim"
  6508. ],
  6509. "support": {
  6510. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.28.0"
  6511. },
  6512. "funding": [
  6513. {
  6514. "url": "https://symfony.com/sponsor",
  6515. "type": "custom"
  6516. },
  6517. {
  6518. "url": "https://github.com/fabpot",
  6519. "type": "github"
  6520. },
  6521. {
  6522. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6523. "type": "tidelift"
  6524. }
  6525. ],
  6526. "time": "2023-01-26T09:26:14+00:00"
  6527. },
  6528. {
  6529. "name": "symfony/polyfill-intl-idn",
  6530. "version": "v1.30.0",
  6531. "source": {
  6532. "type": "git",
  6533. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6534. "reference": "a6e83bdeb3c84391d1dfe16f42e40727ce524a5c"
  6535. },
  6536. "dist": {
  6537. "type": "zip",
  6538. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/a6e83bdeb3c84391d1dfe16f42e40727ce524a5c",
  6539. "reference": "a6e83bdeb3c84391d1dfe16f42e40727ce524a5c",
  6540. "shasum": ""
  6541. },
  6542. "require": {
  6543. "php": ">=7.1",
  6544. "symfony/polyfill-intl-normalizer": "^1.10",
  6545. "symfony/polyfill-php72": "^1.10"
  6546. },
  6547. "suggest": {
  6548. "ext-intl": "For best performance"
  6549. },
  6550. "type": "library",
  6551. "extra": {
  6552. "thanks": {
  6553. "name": "symfony/polyfill",
  6554. "url": "https://github.com/symfony/polyfill"
  6555. }
  6556. },
  6557. "autoload": {
  6558. "files": [
  6559. "bootstrap.php"
  6560. ],
  6561. "psr-4": {
  6562. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6563. }
  6564. },
  6565. "notification-url": "https://packagist.org/downloads/",
  6566. "license": [
  6567. "MIT"
  6568. ],
  6569. "authors": [
  6570. {
  6571. "name": "Laurent Bassin",
  6572. "email": "laurent@bassin.info"
  6573. },
  6574. {
  6575. "name": "Trevor Rowbotham",
  6576. "email": "trevor.rowbotham@pm.me"
  6577. },
  6578. {
  6579. "name": "Symfony Community",
  6580. "homepage": "https://symfony.com/contributors"
  6581. }
  6582. ],
  6583. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6584. "homepage": "https://symfony.com",
  6585. "keywords": [
  6586. "compatibility",
  6587. "idn",
  6588. "intl",
  6589. "polyfill",
  6590. "portable",
  6591. "shim"
  6592. ],
  6593. "support": {
  6594. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.30.0"
  6595. },
  6596. "funding": [
  6597. {
  6598. "url": "https://symfony.com/sponsor",
  6599. "type": "custom"
  6600. },
  6601. {
  6602. "url": "https://github.com/fabpot",
  6603. "type": "github"
  6604. },
  6605. {
  6606. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6607. "type": "tidelift"
  6608. }
  6609. ],
  6610. "time": "2024-05-31T15:07:36+00:00"
  6611. },
  6612. {
  6613. "name": "symfony/polyfill-intl-normalizer",
  6614. "version": "v1.30.0",
  6615. "source": {
  6616. "type": "git",
  6617. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6618. "reference": "a95281b0be0d9ab48050ebd988b967875cdb9fdb"
  6619. },
  6620. "dist": {
  6621. "type": "zip",
  6622. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/a95281b0be0d9ab48050ebd988b967875cdb9fdb",
  6623. "reference": "a95281b0be0d9ab48050ebd988b967875cdb9fdb",
  6624. "shasum": ""
  6625. },
  6626. "require": {
  6627. "php": ">=7.1"
  6628. },
  6629. "suggest": {
  6630. "ext-intl": "For best performance"
  6631. },
  6632. "type": "library",
  6633. "extra": {
  6634. "thanks": {
  6635. "name": "symfony/polyfill",
  6636. "url": "https://github.com/symfony/polyfill"
  6637. }
  6638. },
  6639. "autoload": {
  6640. "files": [
  6641. "bootstrap.php"
  6642. ],
  6643. "psr-4": {
  6644. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6645. },
  6646. "classmap": [
  6647. "Resources/stubs"
  6648. ]
  6649. },
  6650. "notification-url": "https://packagist.org/downloads/",
  6651. "license": [
  6652. "MIT"
  6653. ],
  6654. "authors": [
  6655. {
  6656. "name": "Nicolas Grekas",
  6657. "email": "p@tchwork.com"
  6658. },
  6659. {
  6660. "name": "Symfony Community",
  6661. "homepage": "https://symfony.com/contributors"
  6662. }
  6663. ],
  6664. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6665. "homepage": "https://symfony.com",
  6666. "keywords": [
  6667. "compatibility",
  6668. "intl",
  6669. "normalizer",
  6670. "polyfill",
  6671. "portable",
  6672. "shim"
  6673. ],
  6674. "support": {
  6675. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.30.0"
  6676. },
  6677. "funding": [
  6678. {
  6679. "url": "https://symfony.com/sponsor",
  6680. "type": "custom"
  6681. },
  6682. {
  6683. "url": "https://github.com/fabpot",
  6684. "type": "github"
  6685. },
  6686. {
  6687. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6688. "type": "tidelift"
  6689. }
  6690. ],
  6691. "time": "2024-05-31T15:07:36+00:00"
  6692. },
  6693. {
  6694. "name": "symfony/polyfill-mbstring",
  6695. "version": "v1.30.0",
  6696. "source": {
  6697. "type": "git",
  6698. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6699. "reference": "fd22ab50000ef01661e2a31d850ebaa297f8e03c"
  6700. },
  6701. "dist": {
  6702. "type": "zip",
  6703. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fd22ab50000ef01661e2a31d850ebaa297f8e03c",
  6704. "reference": "fd22ab50000ef01661e2a31d850ebaa297f8e03c",
  6705. "shasum": ""
  6706. },
  6707. "require": {
  6708. "php": ">=7.1"
  6709. },
  6710. "provide": {
  6711. "ext-mbstring": "*"
  6712. },
  6713. "suggest": {
  6714. "ext-mbstring": "For best performance"
  6715. },
  6716. "type": "library",
  6717. "extra": {
  6718. "thanks": {
  6719. "name": "symfony/polyfill",
  6720. "url": "https://github.com/symfony/polyfill"
  6721. }
  6722. },
  6723. "autoload": {
  6724. "files": [
  6725. "bootstrap.php"
  6726. ],
  6727. "psr-4": {
  6728. "Symfony\\Polyfill\\Mbstring\\": ""
  6729. }
  6730. },
  6731. "notification-url": "https://packagist.org/downloads/",
  6732. "license": [
  6733. "MIT"
  6734. ],
  6735. "authors": [
  6736. {
  6737. "name": "Nicolas Grekas",
  6738. "email": "p@tchwork.com"
  6739. },
  6740. {
  6741. "name": "Symfony Community",
  6742. "homepage": "https://symfony.com/contributors"
  6743. }
  6744. ],
  6745. "description": "Symfony polyfill for the Mbstring extension",
  6746. "homepage": "https://symfony.com",
  6747. "keywords": [
  6748. "compatibility",
  6749. "mbstring",
  6750. "polyfill",
  6751. "portable",
  6752. "shim"
  6753. ],
  6754. "support": {
  6755. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.30.0"
  6756. },
  6757. "funding": [
  6758. {
  6759. "url": "https://symfony.com/sponsor",
  6760. "type": "custom"
  6761. },
  6762. {
  6763. "url": "https://github.com/fabpot",
  6764. "type": "github"
  6765. },
  6766. {
  6767. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6768. "type": "tidelift"
  6769. }
  6770. ],
  6771. "time": "2024-06-19T12:30:46+00:00"
  6772. },
  6773. {
  6774. "name": "symfony/polyfill-php72",
  6775. "version": "v1.30.0",
  6776. "source": {
  6777. "type": "git",
  6778. "url": "https://github.com/symfony/polyfill-php72.git",
  6779. "reference": "10112722600777e02d2745716b70c5db4ca70442"
  6780. },
  6781. "dist": {
  6782. "type": "zip",
  6783. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/10112722600777e02d2745716b70c5db4ca70442",
  6784. "reference": "10112722600777e02d2745716b70c5db4ca70442",
  6785. "shasum": ""
  6786. },
  6787. "require": {
  6788. "php": ">=7.1"
  6789. },
  6790. "type": "library",
  6791. "extra": {
  6792. "thanks": {
  6793. "name": "symfony/polyfill",
  6794. "url": "https://github.com/symfony/polyfill"
  6795. }
  6796. },
  6797. "autoload": {
  6798. "files": [
  6799. "bootstrap.php"
  6800. ],
  6801. "psr-4": {
  6802. "Symfony\\Polyfill\\Php72\\": ""
  6803. }
  6804. },
  6805. "notification-url": "https://packagist.org/downloads/",
  6806. "license": [
  6807. "MIT"
  6808. ],
  6809. "authors": [
  6810. {
  6811. "name": "Nicolas Grekas",
  6812. "email": "p@tchwork.com"
  6813. },
  6814. {
  6815. "name": "Symfony Community",
  6816. "homepage": "https://symfony.com/contributors"
  6817. }
  6818. ],
  6819. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  6820. "homepage": "https://symfony.com",
  6821. "keywords": [
  6822. "compatibility",
  6823. "polyfill",
  6824. "portable",
  6825. "shim"
  6826. ],
  6827. "support": {
  6828. "source": "https://github.com/symfony/polyfill-php72/tree/v1.30.0"
  6829. },
  6830. "funding": [
  6831. {
  6832. "url": "https://symfony.com/sponsor",
  6833. "type": "custom"
  6834. },
  6835. {
  6836. "url": "https://github.com/fabpot",
  6837. "type": "github"
  6838. },
  6839. {
  6840. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6841. "type": "tidelift"
  6842. }
  6843. ],
  6844. "time": "2024-06-19T12:30:46+00:00"
  6845. },
  6846. {
  6847. "name": "symfony/polyfill-php73",
  6848. "version": "v1.28.0",
  6849. "source": {
  6850. "type": "git",
  6851. "url": "https://github.com/symfony/polyfill-php73.git",
  6852. "reference": "fe2f306d1d9d346a7fee353d0d5012e401e984b5"
  6853. },
  6854. "dist": {
  6855. "type": "zip",
  6856. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fe2f306d1d9d346a7fee353d0d5012e401e984b5",
  6857. "reference": "fe2f306d1d9d346a7fee353d0d5012e401e984b5",
  6858. "shasum": "",
  6859. "mirrors": [
  6860. {
  6861. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6862. "preferred": true
  6863. }
  6864. ]
  6865. },
  6866. "require": {
  6867. "php": ">=7.1"
  6868. },
  6869. "type": "library",
  6870. "extra": {
  6871. "branch-alias": {
  6872. "dev-main": "1.28-dev"
  6873. },
  6874. "thanks": {
  6875. "name": "symfony/polyfill",
  6876. "url": "https://github.com/symfony/polyfill"
  6877. }
  6878. },
  6879. "autoload": {
  6880. "files": [
  6881. "bootstrap.php"
  6882. ],
  6883. "psr-4": {
  6884. "Symfony\\Polyfill\\Php73\\": ""
  6885. },
  6886. "classmap": [
  6887. "Resources/stubs"
  6888. ]
  6889. },
  6890. "notification-url": "https://packagist.org/downloads/",
  6891. "license": [
  6892. "MIT"
  6893. ],
  6894. "authors": [
  6895. {
  6896. "name": "Nicolas Grekas",
  6897. "email": "p@tchwork.com"
  6898. },
  6899. {
  6900. "name": "Symfony Community",
  6901. "homepage": "https://symfony.com/contributors"
  6902. }
  6903. ],
  6904. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  6905. "homepage": "https://symfony.com",
  6906. "keywords": [
  6907. "compatibility",
  6908. "polyfill",
  6909. "portable",
  6910. "shim"
  6911. ],
  6912. "support": {
  6913. "source": "https://github.com/symfony/polyfill-php73/tree/v1.28.0"
  6914. },
  6915. "funding": [
  6916. {
  6917. "url": "https://symfony.com/sponsor",
  6918. "type": "custom"
  6919. },
  6920. {
  6921. "url": "https://github.com/fabpot",
  6922. "type": "github"
  6923. },
  6924. {
  6925. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6926. "type": "tidelift"
  6927. }
  6928. ],
  6929. "time": "2023-01-26T09:26:14+00:00"
  6930. },
  6931. {
  6932. "name": "symfony/polyfill-php80",
  6933. "version": "v1.28.0",
  6934. "source": {
  6935. "type": "git",
  6936. "url": "https://github.com/symfony/polyfill-php80.git",
  6937. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5"
  6938. },
  6939. "dist": {
  6940. "type": "zip",
  6941. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  6942. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  6943. "shasum": "",
  6944. "mirrors": [
  6945. {
  6946. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6947. "preferred": true
  6948. }
  6949. ]
  6950. },
  6951. "require": {
  6952. "php": ">=7.1"
  6953. },
  6954. "type": "library",
  6955. "extra": {
  6956. "branch-alias": {
  6957. "dev-main": "1.28-dev"
  6958. },
  6959. "thanks": {
  6960. "name": "symfony/polyfill",
  6961. "url": "https://github.com/symfony/polyfill"
  6962. }
  6963. },
  6964. "autoload": {
  6965. "files": [
  6966. "bootstrap.php"
  6967. ],
  6968. "psr-4": {
  6969. "Symfony\\Polyfill\\Php80\\": ""
  6970. },
  6971. "classmap": [
  6972. "Resources/stubs"
  6973. ]
  6974. },
  6975. "notification-url": "https://packagist.org/downloads/",
  6976. "license": [
  6977. "MIT"
  6978. ],
  6979. "authors": [
  6980. {
  6981. "name": "Ion Bazan",
  6982. "email": "ion.bazan@gmail.com"
  6983. },
  6984. {
  6985. "name": "Nicolas Grekas",
  6986. "email": "p@tchwork.com"
  6987. },
  6988. {
  6989. "name": "Symfony Community",
  6990. "homepage": "https://symfony.com/contributors"
  6991. }
  6992. ],
  6993. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6994. "homepage": "https://symfony.com",
  6995. "keywords": [
  6996. "compatibility",
  6997. "polyfill",
  6998. "portable",
  6999. "shim"
  7000. ],
  7001. "support": {
  7002. "source": "https://github.com/symfony/polyfill-php80/tree/v1.28.0"
  7003. },
  7004. "funding": [
  7005. {
  7006. "url": "https://symfony.com/sponsor",
  7007. "type": "custom"
  7008. },
  7009. {
  7010. "url": "https://github.com/fabpot",
  7011. "type": "github"
  7012. },
  7013. {
  7014. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7015. "type": "tidelift"
  7016. }
  7017. ],
  7018. "time": "2023-01-26T09:26:14+00:00"
  7019. },
  7020. {
  7021. "name": "symfony/polyfill-php81",
  7022. "version": "v1.28.0",
  7023. "source": {
  7024. "type": "git",
  7025. "url": "https://github.com/symfony/polyfill-php81.git",
  7026. "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b"
  7027. },
  7028. "dist": {
  7029. "type": "zip",
  7030. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/7581cd600fa9fd681b797d00b02f068e2f13263b",
  7031. "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b",
  7032. "shasum": "",
  7033. "mirrors": [
  7034. {
  7035. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7036. "preferred": true
  7037. }
  7038. ]
  7039. },
  7040. "require": {
  7041. "php": ">=7.1"
  7042. },
  7043. "type": "library",
  7044. "extra": {
  7045. "branch-alias": {
  7046. "dev-main": "1.28-dev"
  7047. },
  7048. "thanks": {
  7049. "name": "symfony/polyfill",
  7050. "url": "https://github.com/symfony/polyfill"
  7051. }
  7052. },
  7053. "autoload": {
  7054. "files": [
  7055. "bootstrap.php"
  7056. ],
  7057. "psr-4": {
  7058. "Symfony\\Polyfill\\Php81\\": ""
  7059. },
  7060. "classmap": [
  7061. "Resources/stubs"
  7062. ]
  7063. },
  7064. "notification-url": "https://packagist.org/downloads/",
  7065. "license": [
  7066. "MIT"
  7067. ],
  7068. "authors": [
  7069. {
  7070. "name": "Nicolas Grekas",
  7071. "email": "p@tchwork.com"
  7072. },
  7073. {
  7074. "name": "Symfony Community",
  7075. "homepage": "https://symfony.com/contributors"
  7076. }
  7077. ],
  7078. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  7079. "homepage": "https://symfony.com",
  7080. "keywords": [
  7081. "compatibility",
  7082. "polyfill",
  7083. "portable",
  7084. "shim"
  7085. ],
  7086. "support": {
  7087. "source": "https://github.com/symfony/polyfill-php81/tree/v1.28.0"
  7088. },
  7089. "funding": [
  7090. {
  7091. "url": "https://symfony.com/sponsor",
  7092. "type": "custom"
  7093. },
  7094. {
  7095. "url": "https://github.com/fabpot",
  7096. "type": "github"
  7097. },
  7098. {
  7099. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7100. "type": "tidelift"
  7101. }
  7102. ],
  7103. "time": "2023-01-26T09:26:14+00:00"
  7104. },
  7105. {
  7106. "name": "symfony/process",
  7107. "version": "v5.4.34",
  7108. "source": {
  7109. "type": "git",
  7110. "url": "https://github.com/symfony/process.git",
  7111. "reference": "8fa22178dfc368911dbd513b431cd9b06f9afe7a"
  7112. },
  7113. "dist": {
  7114. "type": "zip",
  7115. "url": "https://api.github.com/repos/symfony/process/zipball/8fa22178dfc368911dbd513b431cd9b06f9afe7a",
  7116. "reference": "8fa22178dfc368911dbd513b431cd9b06f9afe7a",
  7117. "shasum": "",
  7118. "mirrors": [
  7119. {
  7120. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7121. "preferred": true
  7122. }
  7123. ]
  7124. },
  7125. "require": {
  7126. "php": ">=7.2.5",
  7127. "symfony/polyfill-php80": "^1.16"
  7128. },
  7129. "type": "library",
  7130. "autoload": {
  7131. "psr-4": {
  7132. "Symfony\\Component\\Process\\": ""
  7133. },
  7134. "exclude-from-classmap": [
  7135. "/Tests/"
  7136. ]
  7137. },
  7138. "notification-url": "https://packagist.org/downloads/",
  7139. "license": [
  7140. "MIT"
  7141. ],
  7142. "authors": [
  7143. {
  7144. "name": "Fabien Potencier",
  7145. "email": "fabien@symfony.com"
  7146. },
  7147. {
  7148. "name": "Symfony Community",
  7149. "homepage": "https://symfony.com/contributors"
  7150. }
  7151. ],
  7152. "description": "Executes commands in sub-processes",
  7153. "homepage": "https://symfony.com",
  7154. "support": {
  7155. "source": "https://github.com/symfony/process/tree/v5.4.34"
  7156. },
  7157. "funding": [
  7158. {
  7159. "url": "https://symfony.com/sponsor",
  7160. "type": "custom"
  7161. },
  7162. {
  7163. "url": "https://github.com/fabpot",
  7164. "type": "github"
  7165. },
  7166. {
  7167. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7168. "type": "tidelift"
  7169. }
  7170. ],
  7171. "time": "2023-12-02T08:41:43+00:00"
  7172. },
  7173. {
  7174. "name": "symfony/psr-http-message-bridge",
  7175. "version": "v2.3.1",
  7176. "source": {
  7177. "type": "git",
  7178. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  7179. "reference": "581ca6067eb62640de5ff08ee1ba6850a0ee472e"
  7180. },
  7181. "dist": {
  7182. "type": "zip",
  7183. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/581ca6067eb62640de5ff08ee1ba6850a0ee472e",
  7184. "reference": "581ca6067eb62640de5ff08ee1ba6850a0ee472e",
  7185. "shasum": ""
  7186. },
  7187. "require": {
  7188. "php": ">=7.2.5",
  7189. "psr/http-message": "^1.0 || ^2.0",
  7190. "symfony/deprecation-contracts": "^2.5 || ^3.0",
  7191. "symfony/http-foundation": "^5.4 || ^6.0"
  7192. },
  7193. "require-dev": {
  7194. "nyholm/psr7": "^1.1",
  7195. "psr/log": "^1.1 || ^2 || ^3",
  7196. "symfony/browser-kit": "^5.4 || ^6.0",
  7197. "symfony/config": "^5.4 || ^6.0",
  7198. "symfony/event-dispatcher": "^5.4 || ^6.0",
  7199. "symfony/framework-bundle": "^5.4 || ^6.0",
  7200. "symfony/http-kernel": "^5.4 || ^6.0",
  7201. "symfony/phpunit-bridge": "^6.2"
  7202. },
  7203. "suggest": {
  7204. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  7205. },
  7206. "type": "symfony-bridge",
  7207. "extra": {
  7208. "branch-alias": {
  7209. "dev-main": "2.3-dev"
  7210. }
  7211. },
  7212. "autoload": {
  7213. "psr-4": {
  7214. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  7215. },
  7216. "exclude-from-classmap": [
  7217. "/Tests/"
  7218. ]
  7219. },
  7220. "notification-url": "https://packagist.org/downloads/",
  7221. "license": [
  7222. "MIT"
  7223. ],
  7224. "authors": [
  7225. {
  7226. "name": "Fabien Potencier",
  7227. "email": "fabien@symfony.com"
  7228. },
  7229. {
  7230. "name": "Symfony Community",
  7231. "homepage": "http://symfony.com/contributors"
  7232. }
  7233. ],
  7234. "description": "PSR HTTP message bridge",
  7235. "homepage": "http://symfony.com",
  7236. "keywords": [
  7237. "http",
  7238. "http-message",
  7239. "psr-17",
  7240. "psr-7"
  7241. ],
  7242. "support": {
  7243. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  7244. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.3.1"
  7245. },
  7246. "funding": [
  7247. {
  7248. "url": "https://symfony.com/sponsor",
  7249. "type": "custom"
  7250. },
  7251. {
  7252. "url": "https://github.com/fabpot",
  7253. "type": "github"
  7254. },
  7255. {
  7256. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7257. "type": "tidelift"
  7258. }
  7259. ],
  7260. "time": "2023-07-26T11:53:26+00:00"
  7261. },
  7262. {
  7263. "name": "symfony/routing",
  7264. "version": "v5.4.34",
  7265. "source": {
  7266. "type": "git",
  7267. "url": "https://github.com/symfony/routing.git",
  7268. "reference": "f1d08ed59d7718845bb70acd7480fa7da8966ec0"
  7269. },
  7270. "dist": {
  7271. "type": "zip",
  7272. "url": "https://api.github.com/repos/symfony/routing/zipball/f1d08ed59d7718845bb70acd7480fa7da8966ec0",
  7273. "reference": "f1d08ed59d7718845bb70acd7480fa7da8966ec0",
  7274. "shasum": "",
  7275. "mirrors": [
  7276. {
  7277. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7278. "preferred": true
  7279. }
  7280. ]
  7281. },
  7282. "require": {
  7283. "php": ">=7.2.5",
  7284. "symfony/deprecation-contracts": "^2.1|^3",
  7285. "symfony/polyfill-php80": "^1.16"
  7286. },
  7287. "conflict": {
  7288. "doctrine/annotations": "<1.12",
  7289. "symfony/config": "<5.3",
  7290. "symfony/dependency-injection": "<4.4",
  7291. "symfony/yaml": "<4.4"
  7292. },
  7293. "require-dev": {
  7294. "doctrine/annotations": "^1.12|^2",
  7295. "psr/log": "^1|^2|^3",
  7296. "symfony/config": "^5.3|^6.0",
  7297. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  7298. "symfony/expression-language": "^4.4|^5.0|^6.0",
  7299. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  7300. "symfony/yaml": "^4.4|^5.0|^6.0"
  7301. },
  7302. "suggest": {
  7303. "symfony/config": "For using the all-in-one router or any loader",
  7304. "symfony/expression-language": "For using expression matching",
  7305. "symfony/http-foundation": "For using a Symfony Request object",
  7306. "symfony/yaml": "For using the YAML loader"
  7307. },
  7308. "type": "library",
  7309. "autoload": {
  7310. "psr-4": {
  7311. "Symfony\\Component\\Routing\\": ""
  7312. },
  7313. "exclude-from-classmap": [
  7314. "/Tests/"
  7315. ]
  7316. },
  7317. "notification-url": "https://packagist.org/downloads/",
  7318. "license": [
  7319. "MIT"
  7320. ],
  7321. "authors": [
  7322. {
  7323. "name": "Fabien Potencier",
  7324. "email": "fabien@symfony.com"
  7325. },
  7326. {
  7327. "name": "Symfony Community",
  7328. "homepage": "https://symfony.com/contributors"
  7329. }
  7330. ],
  7331. "description": "Maps an HTTP request to a set of configuration variables",
  7332. "homepage": "https://symfony.com",
  7333. "keywords": [
  7334. "router",
  7335. "routing",
  7336. "uri",
  7337. "url"
  7338. ],
  7339. "support": {
  7340. "source": "https://github.com/symfony/routing/tree/v5.4.34"
  7341. },
  7342. "funding": [
  7343. {
  7344. "url": "https://symfony.com/sponsor",
  7345. "type": "custom"
  7346. },
  7347. {
  7348. "url": "https://github.com/fabpot",
  7349. "type": "github"
  7350. },
  7351. {
  7352. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7353. "type": "tidelift"
  7354. }
  7355. ],
  7356. "time": "2023-12-27T12:51:02+00:00"
  7357. },
  7358. {
  7359. "name": "symfony/service-contracts",
  7360. "version": "v2.5.2",
  7361. "source": {
  7362. "type": "git",
  7363. "url": "https://github.com/symfony/service-contracts.git",
  7364. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c"
  7365. },
  7366. "dist": {
  7367. "type": "zip",
  7368. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  7369. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  7370. "shasum": "",
  7371. "mirrors": [
  7372. {
  7373. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7374. "preferred": true
  7375. }
  7376. ]
  7377. },
  7378. "require": {
  7379. "php": ">=7.2.5",
  7380. "psr/container": "^1.1",
  7381. "symfony/deprecation-contracts": "^2.1|^3"
  7382. },
  7383. "conflict": {
  7384. "ext-psr": "<1.1|>=2"
  7385. },
  7386. "suggest": {
  7387. "symfony/service-implementation": ""
  7388. },
  7389. "type": "library",
  7390. "extra": {
  7391. "branch-alias": {
  7392. "dev-main": "2.5-dev"
  7393. },
  7394. "thanks": {
  7395. "name": "symfony/contracts",
  7396. "url": "https://github.com/symfony/contracts"
  7397. }
  7398. },
  7399. "autoload": {
  7400. "psr-4": {
  7401. "Symfony\\Contracts\\Service\\": ""
  7402. }
  7403. },
  7404. "notification-url": "https://packagist.org/downloads/",
  7405. "license": [
  7406. "MIT"
  7407. ],
  7408. "authors": [
  7409. {
  7410. "name": "Nicolas Grekas",
  7411. "email": "p@tchwork.com"
  7412. },
  7413. {
  7414. "name": "Symfony Community",
  7415. "homepage": "https://symfony.com/contributors"
  7416. }
  7417. ],
  7418. "description": "Generic abstractions related to writing services",
  7419. "homepage": "https://symfony.com",
  7420. "keywords": [
  7421. "abstractions",
  7422. "contracts",
  7423. "decoupling",
  7424. "interfaces",
  7425. "interoperability",
  7426. "standards"
  7427. ],
  7428. "support": {
  7429. "source": "https://github.com/symfony/service-contracts/tree/v2.5.2"
  7430. },
  7431. "funding": [
  7432. {
  7433. "url": "https://symfony.com/sponsor",
  7434. "type": "custom"
  7435. },
  7436. {
  7437. "url": "https://github.com/fabpot",
  7438. "type": "github"
  7439. },
  7440. {
  7441. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7442. "type": "tidelift"
  7443. }
  7444. ],
  7445. "time": "2022-05-30T19:17:29+00:00"
  7446. },
  7447. {
  7448. "name": "symfony/string",
  7449. "version": "v5.4.34",
  7450. "source": {
  7451. "type": "git",
  7452. "url": "https://github.com/symfony/string.git",
  7453. "reference": "e3f98bfc7885c957488f443df82d97814a3ce061"
  7454. },
  7455. "dist": {
  7456. "type": "zip",
  7457. "url": "https://api.github.com/repos/symfony/string/zipball/e3f98bfc7885c957488f443df82d97814a3ce061",
  7458. "reference": "e3f98bfc7885c957488f443df82d97814a3ce061",
  7459. "shasum": "",
  7460. "mirrors": [
  7461. {
  7462. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7463. "preferred": true
  7464. }
  7465. ]
  7466. },
  7467. "require": {
  7468. "php": ">=7.2.5",
  7469. "symfony/polyfill-ctype": "~1.8",
  7470. "symfony/polyfill-intl-grapheme": "~1.0",
  7471. "symfony/polyfill-intl-normalizer": "~1.0",
  7472. "symfony/polyfill-mbstring": "~1.0",
  7473. "symfony/polyfill-php80": "~1.15"
  7474. },
  7475. "conflict": {
  7476. "symfony/translation-contracts": ">=3.0"
  7477. },
  7478. "require-dev": {
  7479. "symfony/error-handler": "^4.4|^5.0|^6.0",
  7480. "symfony/http-client": "^4.4|^5.0|^6.0",
  7481. "symfony/translation-contracts": "^1.1|^2",
  7482. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  7483. },
  7484. "type": "library",
  7485. "autoload": {
  7486. "files": [
  7487. "Resources/functions.php"
  7488. ],
  7489. "psr-4": {
  7490. "Symfony\\Component\\String\\": ""
  7491. },
  7492. "exclude-from-classmap": [
  7493. "/Tests/"
  7494. ]
  7495. },
  7496. "notification-url": "https://packagist.org/downloads/",
  7497. "license": [
  7498. "MIT"
  7499. ],
  7500. "authors": [
  7501. {
  7502. "name": "Nicolas Grekas",
  7503. "email": "p@tchwork.com"
  7504. },
  7505. {
  7506. "name": "Symfony Community",
  7507. "homepage": "https://symfony.com/contributors"
  7508. }
  7509. ],
  7510. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7511. "homepage": "https://symfony.com",
  7512. "keywords": [
  7513. "grapheme",
  7514. "i18n",
  7515. "string",
  7516. "unicode",
  7517. "utf-8",
  7518. "utf8"
  7519. ],
  7520. "support": {
  7521. "source": "https://github.com/symfony/string/tree/v5.4.34"
  7522. },
  7523. "funding": [
  7524. {
  7525. "url": "https://symfony.com/sponsor",
  7526. "type": "custom"
  7527. },
  7528. {
  7529. "url": "https://github.com/fabpot",
  7530. "type": "github"
  7531. },
  7532. {
  7533. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7534. "type": "tidelift"
  7535. }
  7536. ],
  7537. "time": "2023-12-09T13:20:28+00:00"
  7538. },
  7539. {
  7540. "name": "symfony/translation",
  7541. "version": "v5.4.31",
  7542. "source": {
  7543. "type": "git",
  7544. "url": "https://github.com/symfony/translation.git",
  7545. "reference": "ba72f72fceddf36f00bd495966b5873f2d17ad8f"
  7546. },
  7547. "dist": {
  7548. "type": "zip",
  7549. "url": "https://api.github.com/repos/symfony/translation/zipball/ba72f72fceddf36f00bd495966b5873f2d17ad8f",
  7550. "reference": "ba72f72fceddf36f00bd495966b5873f2d17ad8f",
  7551. "shasum": "",
  7552. "mirrors": [
  7553. {
  7554. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7555. "preferred": true
  7556. }
  7557. ]
  7558. },
  7559. "require": {
  7560. "php": ">=7.2.5",
  7561. "symfony/deprecation-contracts": "^2.1|^3",
  7562. "symfony/polyfill-mbstring": "~1.0",
  7563. "symfony/polyfill-php80": "^1.16",
  7564. "symfony/translation-contracts": "^2.3"
  7565. },
  7566. "conflict": {
  7567. "symfony/config": "<4.4",
  7568. "symfony/console": "<5.3",
  7569. "symfony/dependency-injection": "<5.0",
  7570. "symfony/http-kernel": "<5.0",
  7571. "symfony/twig-bundle": "<5.0",
  7572. "symfony/yaml": "<4.4"
  7573. },
  7574. "provide": {
  7575. "symfony/translation-implementation": "2.3"
  7576. },
  7577. "require-dev": {
  7578. "psr/log": "^1|^2|^3",
  7579. "symfony/config": "^4.4|^5.0|^6.0",
  7580. "symfony/console": "^5.4|^6.0",
  7581. "symfony/dependency-injection": "^5.0|^6.0",
  7582. "symfony/finder": "^4.4|^5.0|^6.0",
  7583. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  7584. "symfony/http-kernel": "^5.0|^6.0",
  7585. "symfony/intl": "^4.4|^5.0|^6.0",
  7586. "symfony/polyfill-intl-icu": "^1.21",
  7587. "symfony/service-contracts": "^1.1.2|^2|^3",
  7588. "symfony/yaml": "^4.4|^5.0|^6.0"
  7589. },
  7590. "suggest": {
  7591. "psr/log-implementation": "To use logging capability in translator",
  7592. "symfony/config": "",
  7593. "symfony/yaml": ""
  7594. },
  7595. "type": "library",
  7596. "autoload": {
  7597. "files": [
  7598. "Resources/functions.php"
  7599. ],
  7600. "psr-4": {
  7601. "Symfony\\Component\\Translation\\": ""
  7602. },
  7603. "exclude-from-classmap": [
  7604. "/Tests/"
  7605. ]
  7606. },
  7607. "notification-url": "https://packagist.org/downloads/",
  7608. "license": [
  7609. "MIT"
  7610. ],
  7611. "authors": [
  7612. {
  7613. "name": "Fabien Potencier",
  7614. "email": "fabien@symfony.com"
  7615. },
  7616. {
  7617. "name": "Symfony Community",
  7618. "homepage": "https://symfony.com/contributors"
  7619. }
  7620. ],
  7621. "description": "Provides tools to internationalize your application",
  7622. "homepage": "https://symfony.com",
  7623. "support": {
  7624. "source": "https://github.com/symfony/translation/tree/v5.4.31"
  7625. },
  7626. "funding": [
  7627. {
  7628. "url": "https://symfony.com/sponsor",
  7629. "type": "custom"
  7630. },
  7631. {
  7632. "url": "https://github.com/fabpot",
  7633. "type": "github"
  7634. },
  7635. {
  7636. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7637. "type": "tidelift"
  7638. }
  7639. ],
  7640. "time": "2023-11-03T16:16:43+00:00"
  7641. },
  7642. {
  7643. "name": "symfony/translation-contracts",
  7644. "version": "v2.5.2",
  7645. "source": {
  7646. "type": "git",
  7647. "url": "https://github.com/symfony/translation-contracts.git",
  7648. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe"
  7649. },
  7650. "dist": {
  7651. "type": "zip",
  7652. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  7653. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  7654. "shasum": "",
  7655. "mirrors": [
  7656. {
  7657. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7658. "preferred": true
  7659. }
  7660. ]
  7661. },
  7662. "require": {
  7663. "php": ">=7.2.5"
  7664. },
  7665. "suggest": {
  7666. "symfony/translation-implementation": ""
  7667. },
  7668. "type": "library",
  7669. "extra": {
  7670. "branch-alias": {
  7671. "dev-main": "2.5-dev"
  7672. },
  7673. "thanks": {
  7674. "name": "symfony/contracts",
  7675. "url": "https://github.com/symfony/contracts"
  7676. }
  7677. },
  7678. "autoload": {
  7679. "psr-4": {
  7680. "Symfony\\Contracts\\Translation\\": ""
  7681. }
  7682. },
  7683. "notification-url": "https://packagist.org/downloads/",
  7684. "license": [
  7685. "MIT"
  7686. ],
  7687. "authors": [
  7688. {
  7689. "name": "Nicolas Grekas",
  7690. "email": "p@tchwork.com"
  7691. },
  7692. {
  7693. "name": "Symfony Community",
  7694. "homepage": "https://symfony.com/contributors"
  7695. }
  7696. ],
  7697. "description": "Generic abstractions related to translation",
  7698. "homepage": "https://symfony.com",
  7699. "keywords": [
  7700. "abstractions",
  7701. "contracts",
  7702. "decoupling",
  7703. "interfaces",
  7704. "interoperability",
  7705. "standards"
  7706. ],
  7707. "support": {
  7708. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.2"
  7709. },
  7710. "funding": [
  7711. {
  7712. "url": "https://symfony.com/sponsor",
  7713. "type": "custom"
  7714. },
  7715. {
  7716. "url": "https://github.com/fabpot",
  7717. "type": "github"
  7718. },
  7719. {
  7720. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7721. "type": "tidelift"
  7722. }
  7723. ],
  7724. "time": "2022-06-27T16:58:25+00:00"
  7725. },
  7726. {
  7727. "name": "symfony/var-dumper",
  7728. "version": "v5.4.29",
  7729. "source": {
  7730. "type": "git",
  7731. "url": "https://github.com/symfony/var-dumper.git",
  7732. "reference": "6172e4ae3534d25ee9e07eb487c20be7760fcc65"
  7733. },
  7734. "dist": {
  7735. "type": "zip",
  7736. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/6172e4ae3534d25ee9e07eb487c20be7760fcc65",
  7737. "reference": "6172e4ae3534d25ee9e07eb487c20be7760fcc65",
  7738. "shasum": "",
  7739. "mirrors": [
  7740. {
  7741. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7742. "preferred": true
  7743. }
  7744. ]
  7745. },
  7746. "require": {
  7747. "php": ">=7.2.5",
  7748. "symfony/polyfill-mbstring": "~1.0",
  7749. "symfony/polyfill-php80": "^1.16"
  7750. },
  7751. "conflict": {
  7752. "symfony/console": "<4.4"
  7753. },
  7754. "require-dev": {
  7755. "ext-iconv": "*",
  7756. "symfony/console": "^4.4|^5.0|^6.0",
  7757. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  7758. "symfony/process": "^4.4|^5.0|^6.0",
  7759. "symfony/uid": "^5.1|^6.0",
  7760. "twig/twig": "^2.13|^3.0.4"
  7761. },
  7762. "suggest": {
  7763. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7764. "ext-intl": "To show region name in time zone dump",
  7765. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  7766. },
  7767. "bin": [
  7768. "Resources/bin/var-dump-server"
  7769. ],
  7770. "type": "library",
  7771. "autoload": {
  7772. "files": [
  7773. "Resources/functions/dump.php"
  7774. ],
  7775. "psr-4": {
  7776. "Symfony\\Component\\VarDumper\\": ""
  7777. },
  7778. "exclude-from-classmap": [
  7779. "/Tests/"
  7780. ]
  7781. },
  7782. "notification-url": "https://packagist.org/downloads/",
  7783. "license": [
  7784. "MIT"
  7785. ],
  7786. "authors": [
  7787. {
  7788. "name": "Nicolas Grekas",
  7789. "email": "p@tchwork.com"
  7790. },
  7791. {
  7792. "name": "Symfony Community",
  7793. "homepage": "https://symfony.com/contributors"
  7794. }
  7795. ],
  7796. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7797. "homepage": "https://symfony.com",
  7798. "keywords": [
  7799. "debug",
  7800. "dump"
  7801. ],
  7802. "support": {
  7803. "source": "https://github.com/symfony/var-dumper/tree/v5.4.29"
  7804. },
  7805. "funding": [
  7806. {
  7807. "url": "https://symfony.com/sponsor",
  7808. "type": "custom"
  7809. },
  7810. {
  7811. "url": "https://github.com/fabpot",
  7812. "type": "github"
  7813. },
  7814. {
  7815. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7816. "type": "tidelift"
  7817. }
  7818. ],
  7819. "time": "2023-09-12T10:09:58+00:00"
  7820. },
  7821. {
  7822. "name": "symfony/var-exporter",
  7823. "version": "v5.4.40",
  7824. "source": {
  7825. "type": "git",
  7826. "url": "https://github.com/symfony/var-exporter.git",
  7827. "reference": "6a13d37336d512927986e09f19a4bed24178baa6"
  7828. },
  7829. "dist": {
  7830. "type": "zip",
  7831. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/6a13d37336d512927986e09f19a4bed24178baa6",
  7832. "reference": "6a13d37336d512927986e09f19a4bed24178baa6",
  7833. "shasum": ""
  7834. },
  7835. "require": {
  7836. "php": ">=7.2.5",
  7837. "symfony/polyfill-php80": "^1.16"
  7838. },
  7839. "require-dev": {
  7840. "symfony/var-dumper": "^4.4.9|^5.0.9|^6.0"
  7841. },
  7842. "type": "library",
  7843. "autoload": {
  7844. "psr-4": {
  7845. "Symfony\\Component\\VarExporter\\": ""
  7846. },
  7847. "exclude-from-classmap": [
  7848. "/Tests/"
  7849. ]
  7850. },
  7851. "notification-url": "https://packagist.org/downloads/",
  7852. "license": [
  7853. "MIT"
  7854. ],
  7855. "authors": [
  7856. {
  7857. "name": "Nicolas Grekas",
  7858. "email": "p@tchwork.com"
  7859. },
  7860. {
  7861. "name": "Symfony Community",
  7862. "homepage": "https://symfony.com/contributors"
  7863. }
  7864. ],
  7865. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  7866. "homepage": "https://symfony.com",
  7867. "keywords": [
  7868. "clone",
  7869. "construct",
  7870. "export",
  7871. "hydrate",
  7872. "instantiate",
  7873. "serialize"
  7874. ],
  7875. "support": {
  7876. "source": "https://github.com/symfony/var-exporter/tree/v5.4.40"
  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": "2024-05-31T14:33:22+00:00"
  7893. },
  7894. {
  7895. "name": "tencentcloud/common",
  7896. "version": "3.0.1067",
  7897. "source": {
  7898. "type": "git",
  7899. "url": "https://github.com/tencentcloud-sdk-php/common.git",
  7900. "reference": "17d88323aaf68906984caa33b61559295a4837a0"
  7901. },
  7902. "dist": {
  7903. "type": "zip",
  7904. "url": "https://api.github.com/repos/tencentcloud-sdk-php/common/zipball/17d88323aaf68906984caa33b61559295a4837a0",
  7905. "reference": "17d88323aaf68906984caa33b61559295a4837a0",
  7906. "shasum": "",
  7907. "mirrors": [
  7908. {
  7909. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7910. "preferred": true
  7911. }
  7912. ]
  7913. },
  7914. "require": {
  7915. "guzzlehttp/guzzle": "^6.3||^7.0",
  7916. "php": ">=5.6.0"
  7917. },
  7918. "type": "library",
  7919. "autoload": {
  7920. "psr-4": {
  7921. "TencentCloud\\": "./src/TencentCloud"
  7922. }
  7923. },
  7924. "notification-url": "https://packagist.org/downloads/",
  7925. "license": [
  7926. "Apache-2.0"
  7927. ],
  7928. "authors": [
  7929. {
  7930. "name": "tencentcloudapi",
  7931. "email": "tencentcloudapi@tencent.com",
  7932. "homepage": "https://cloud.tencent.com/document/sdk/PHP",
  7933. "role": "Developer"
  7934. }
  7935. ],
  7936. "description": "TencentCloudApi php sdk",
  7937. "homepage": "https://github.com/tencentcloud-sdk-php/common",
  7938. "support": {
  7939. "issues": "https://github.com/tencentcloud-sdk-php/common/issues",
  7940. "source": "https://github.com/tencentcloud-sdk-php/common/tree/3.0.1067"
  7941. },
  7942. "time": "2024-01-12T07:53:31+00:00"
  7943. },
  7944. {
  7945. "name": "tencentcloud/sms",
  7946. "version": "3.0.1067",
  7947. "source": {
  7948. "type": "git",
  7949. "url": "https://github.com/tencentcloud-sdk-php/sms.git",
  7950. "reference": "9ceb07867d5ba26893ef7dd9d558a4f451c09b4a"
  7951. },
  7952. "dist": {
  7953. "type": "zip",
  7954. "url": "https://api.github.com/repos/tencentcloud-sdk-php/sms/zipball/9ceb07867d5ba26893ef7dd9d558a4f451c09b4a",
  7955. "reference": "9ceb07867d5ba26893ef7dd9d558a4f451c09b4a",
  7956. "shasum": "",
  7957. "mirrors": [
  7958. {
  7959. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7960. "preferred": true
  7961. }
  7962. ]
  7963. },
  7964. "require": {
  7965. "tencentcloud/common": "3.0.1067"
  7966. },
  7967. "type": "library",
  7968. "autoload": {
  7969. "psr-4": {
  7970. "TencentCloud\\": "./src/TencentCloud"
  7971. }
  7972. },
  7973. "notification-url": "https://packagist.org/downloads/",
  7974. "license": [
  7975. "Apache-2.0"
  7976. ],
  7977. "authors": [
  7978. {
  7979. "name": "tencentcloudapi",
  7980. "email": "tencentcloudapi@tencent.com",
  7981. "homepage": "https://github.com/tencentcloud-sdk-php/sms",
  7982. "role": "Developer"
  7983. }
  7984. ],
  7985. "description": "TencentCloudApi php sdk sms",
  7986. "homepage": "https://github.com/tencentcloud-sdk-php/sms",
  7987. "support": {
  7988. "issues": "https://github.com/tencentcloud-sdk-php/sms/issues",
  7989. "source": "https://github.com/tencentcloud-sdk-php/sms/tree/3.0.1067"
  7990. },
  7991. "time": "2024-01-12T08:16:39+00:00"
  7992. },
  7993. {
  7994. "name": "tijsverkoyen/css-to-inline-styles",
  7995. "version": "v2.2.7",
  7996. "source": {
  7997. "type": "git",
  7998. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7999. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb"
  8000. },
  8001. "dist": {
  8002. "type": "zip",
  8003. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/83ee6f38df0a63106a9e4536e3060458b74ccedb",
  8004. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb",
  8005. "shasum": "",
  8006. "mirrors": [
  8007. {
  8008. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8009. "preferred": true
  8010. }
  8011. ]
  8012. },
  8013. "require": {
  8014. "ext-dom": "*",
  8015. "ext-libxml": "*",
  8016. "php": "^5.5 || ^7.0 || ^8.0",
  8017. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0"
  8018. },
  8019. "require-dev": {
  8020. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  8021. },
  8022. "type": "library",
  8023. "extra": {
  8024. "branch-alias": {
  8025. "dev-master": "2.2.x-dev"
  8026. }
  8027. },
  8028. "autoload": {
  8029. "psr-4": {
  8030. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  8031. }
  8032. },
  8033. "notification-url": "https://packagist.org/downloads/",
  8034. "license": [
  8035. "BSD-3-Clause"
  8036. ],
  8037. "authors": [
  8038. {
  8039. "name": "Tijs Verkoyen",
  8040. "email": "css_to_inline_styles@verkoyen.eu",
  8041. "role": "Developer"
  8042. }
  8043. ],
  8044. "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.",
  8045. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  8046. "support": {
  8047. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  8048. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.2.7"
  8049. },
  8050. "time": "2023-12-08T13:03:43+00:00"
  8051. },
  8052. {
  8053. "name": "vinkla/hashids",
  8054. "version": "9.1.0",
  8055. "source": {
  8056. "type": "git",
  8057. "url": "https://github.com/vinkla/laravel-hashids.git",
  8058. "reference": "cb0086db96cdb49816465adc97e3a024c8ee9767"
  8059. },
  8060. "dist": {
  8061. "type": "zip",
  8062. "url": "https://api.github.com/repos/vinkla/laravel-hashids/zipball/cb0086db96cdb49816465adc97e3a024c8ee9767",
  8063. "reference": "cb0086db96cdb49816465adc97e3a024c8ee9767",
  8064. "shasum": "",
  8065. "mirrors": [
  8066. {
  8067. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8068. "preferred": true
  8069. }
  8070. ]
  8071. },
  8072. "require": {
  8073. "graham-campbell/manager": "^4.4",
  8074. "hashids/hashids": "^4.1",
  8075. "illuminate/contracts": "^8.0",
  8076. "illuminate/support": "^8.0",
  8077. "php": "^7.3 || ^8.0"
  8078. },
  8079. "require-dev": {
  8080. "graham-campbell/analyzer": "^3.0",
  8081. "graham-campbell/testbench": "^5.4",
  8082. "mockery/mockery": "^1.3",
  8083. "phpunit/phpunit": "^9.3",
  8084. "squizlabs/php_codesniffer": "^3.5"
  8085. },
  8086. "type": "library",
  8087. "extra": {
  8088. "branch-alias": {
  8089. "dev-master": "9.1-dev"
  8090. },
  8091. "laravel": {
  8092. "providers": [
  8093. "Vinkla\\Hashids\\HashidsServiceProvider"
  8094. ],
  8095. "aliases": {
  8096. "Hashids": "Vinkla\\Hashids\\Facades\\Hashids"
  8097. }
  8098. }
  8099. },
  8100. "autoload": {
  8101. "psr-4": {
  8102. "Vinkla\\Hashids\\": "src/"
  8103. }
  8104. },
  8105. "notification-url": "https://packagist.org/downloads/",
  8106. "license": [
  8107. "MIT"
  8108. ],
  8109. "authors": [
  8110. {
  8111. "name": "Vincent Klaiber",
  8112. "email": "hello@doubledip.se"
  8113. }
  8114. ],
  8115. "description": "A Hashids bridge for Laravel",
  8116. "keywords": [
  8117. "hashids",
  8118. "laravel"
  8119. ],
  8120. "support": {
  8121. "issues": "https://github.com/vinkla/laravel-hashids/issues",
  8122. "source": "https://github.com/vinkla/laravel-hashids/tree/9.1.0"
  8123. },
  8124. "time": "2020-11-26T19:38:22+00:00"
  8125. },
  8126. {
  8127. "name": "vlucas/phpdotenv",
  8128. "version": "v5.5.0",
  8129. "source": {
  8130. "type": "git",
  8131. "url": "https://github.com/vlucas/phpdotenv.git",
  8132. "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7"
  8133. },
  8134. "dist": {
  8135. "type": "zip",
  8136. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
  8137. "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
  8138. "shasum": "",
  8139. "mirrors": [
  8140. {
  8141. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8142. "preferred": true
  8143. }
  8144. ]
  8145. },
  8146. "require": {
  8147. "ext-pcre": "*",
  8148. "graham-campbell/result-type": "^1.0.2",
  8149. "php": "^7.1.3 || ^8.0",
  8150. "phpoption/phpoption": "^1.8",
  8151. "symfony/polyfill-ctype": "^1.23",
  8152. "symfony/polyfill-mbstring": "^1.23.1",
  8153. "symfony/polyfill-php80": "^1.23.1"
  8154. },
  8155. "require-dev": {
  8156. "bamarni/composer-bin-plugin": "^1.4.1",
  8157. "ext-filter": "*",
  8158. "phpunit/phpunit": "^7.5.20 || ^8.5.30 || ^9.5.25"
  8159. },
  8160. "suggest": {
  8161. "ext-filter": "Required to use the boolean validator."
  8162. },
  8163. "type": "library",
  8164. "extra": {
  8165. "bamarni-bin": {
  8166. "bin-links": true,
  8167. "forward-command": true
  8168. },
  8169. "branch-alias": {
  8170. "dev-master": "5.5-dev"
  8171. }
  8172. },
  8173. "autoload": {
  8174. "psr-4": {
  8175. "Dotenv\\": "src/"
  8176. }
  8177. },
  8178. "notification-url": "https://packagist.org/downloads/",
  8179. "license": [
  8180. "BSD-3-Clause"
  8181. ],
  8182. "authors": [
  8183. {
  8184. "name": "Graham Campbell",
  8185. "email": "hello@gjcampbell.co.uk",
  8186. "homepage": "https://github.com/GrahamCampbell"
  8187. },
  8188. {
  8189. "name": "Vance Lucas",
  8190. "email": "vance@vancelucas.com",
  8191. "homepage": "https://github.com/vlucas"
  8192. }
  8193. ],
  8194. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  8195. "keywords": [
  8196. "dotenv",
  8197. "env",
  8198. "environment"
  8199. ],
  8200. "support": {
  8201. "issues": "https://github.com/vlucas/phpdotenv/issues",
  8202. "source": "https://github.com/vlucas/phpdotenv/tree/v5.5.0"
  8203. },
  8204. "funding": [
  8205. {
  8206. "url": "https://github.com/GrahamCampbell",
  8207. "type": "github"
  8208. },
  8209. {
  8210. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  8211. "type": "tidelift"
  8212. }
  8213. ],
  8214. "time": "2022-10-16T01:01:54+00:00"
  8215. },
  8216. {
  8217. "name": "voku/portable-ascii",
  8218. "version": "1.6.1",
  8219. "source": {
  8220. "type": "git",
  8221. "url": "https://github.com/voku/portable-ascii.git",
  8222. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a"
  8223. },
  8224. "dist": {
  8225. "type": "zip",
  8226. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/87337c91b9dfacee02452244ee14ab3c43bc485a",
  8227. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a",
  8228. "shasum": "",
  8229. "mirrors": [
  8230. {
  8231. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8232. "preferred": true
  8233. }
  8234. ]
  8235. },
  8236. "require": {
  8237. "php": ">=7.0.0"
  8238. },
  8239. "require-dev": {
  8240. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  8241. },
  8242. "suggest": {
  8243. "ext-intl": "Use Intl for transliterator_transliterate() support"
  8244. },
  8245. "type": "library",
  8246. "autoload": {
  8247. "psr-4": {
  8248. "voku\\": "src/voku/"
  8249. }
  8250. },
  8251. "notification-url": "https://packagist.org/downloads/",
  8252. "license": [
  8253. "MIT"
  8254. ],
  8255. "authors": [
  8256. {
  8257. "name": "Lars Moelleken",
  8258. "homepage": "http://www.moelleken.org/"
  8259. }
  8260. ],
  8261. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  8262. "homepage": "https://github.com/voku/portable-ascii",
  8263. "keywords": [
  8264. "ascii",
  8265. "clean",
  8266. "php"
  8267. ],
  8268. "support": {
  8269. "issues": "https://github.com/voku/portable-ascii/issues",
  8270. "source": "https://github.com/voku/portable-ascii/tree/1.6.1"
  8271. },
  8272. "funding": [
  8273. {
  8274. "url": "https://www.paypal.me/moelleken",
  8275. "type": "custom"
  8276. },
  8277. {
  8278. "url": "https://github.com/voku",
  8279. "type": "github"
  8280. },
  8281. {
  8282. "url": "https://opencollective.com/portable-ascii",
  8283. "type": "open_collective"
  8284. },
  8285. {
  8286. "url": "https://www.patreon.com/voku",
  8287. "type": "patreon"
  8288. },
  8289. {
  8290. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  8291. "type": "tidelift"
  8292. }
  8293. ],
  8294. "time": "2022-01-24T18:55:24+00:00"
  8295. },
  8296. {
  8297. "name": "w7corp/easywechat",
  8298. "version": "5.35.2",
  8299. "source": {
  8300. "type": "git",
  8301. "url": "https://github.com/w7corp/easywechat.git",
  8302. "reference": "a9235a1d236a1892fccc989bd73008f2fe20094f"
  8303. },
  8304. "dist": {
  8305. "type": "zip",
  8306. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/a9235a1d236a1892fccc989bd73008f2fe20094f",
  8307. "reference": "a9235a1d236a1892fccc989bd73008f2fe20094f",
  8308. "shasum": ""
  8309. },
  8310. "require": {
  8311. "easywechat-composer/easywechat-composer": "^1.1",
  8312. "ext-fileinfo": "*",
  8313. "ext-libxml": "*",
  8314. "ext-openssl": "*",
  8315. "ext-simplexml": "*",
  8316. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  8317. "monolog/monolog": "^1.22 || ^2.0 || ^3.0",
  8318. "overtrue/socialite": "^3.2 || ^4.0",
  8319. "php": ">=7.4",
  8320. "pimple/pimple": "^3.0",
  8321. "psr/simple-cache": "^1.0||^2.0||^3.0",
  8322. "symfony/cache": "^3.3 || ^4.3 || ^5.0 || ^6.0",
  8323. "symfony/event-dispatcher": "^4.3 || ^5.0 || ^6.0",
  8324. "symfony/http-foundation": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  8325. },
  8326. "require-dev": {
  8327. "brainmaestro/composer-git-hooks": "^2.7",
  8328. "dms/phpunit-arraysubset-asserts": "^0.2.0",
  8329. "friendsofphp/php-cs-fixer": "^3.5.0",
  8330. "mikey179/vfsstream": "^1.6",
  8331. "mockery/mockery": "^1.2.3",
  8332. "phpstan/phpstan": "^0.12.0",
  8333. "phpunit/phpunit": "^9.3"
  8334. },
  8335. "type": "library",
  8336. "extra": {
  8337. "hooks": {
  8338. "pre-commit": [
  8339. "composer test",
  8340. "composer fix-style"
  8341. ],
  8342. "pre-push": [
  8343. "composer test",
  8344. "composer fix-style"
  8345. ]
  8346. }
  8347. },
  8348. "autoload": {
  8349. "files": [
  8350. "src/Kernel/Support/Helpers.php",
  8351. "src/Kernel/Helpers.php"
  8352. ],
  8353. "psr-4": {
  8354. "EasyWeChat\\": "src/"
  8355. }
  8356. },
  8357. "notification-url": "https://packagist.org/downloads/",
  8358. "license": [
  8359. "MIT"
  8360. ],
  8361. "authors": [
  8362. {
  8363. "name": "overtrue",
  8364. "email": "anzhengchao@gmail.com"
  8365. }
  8366. ],
  8367. "description": "微信SDK",
  8368. "keywords": [
  8369. "easywechat",
  8370. "sdk",
  8371. "wechat",
  8372. "weixin",
  8373. "weixin-sdk"
  8374. ],
  8375. "support": {
  8376. "issues": "https://github.com/w7corp/easywechat/issues",
  8377. "source": "https://github.com/w7corp/easywechat/tree/5.35.2"
  8378. },
  8379. "funding": [
  8380. {
  8381. "url": "https://github.com/overtrue",
  8382. "type": "github"
  8383. }
  8384. ],
  8385. "time": "2024-08-06T13:21:05+00:00"
  8386. },
  8387. {
  8388. "name": "wantp/snowflake",
  8389. "version": "v1.2.0",
  8390. "source": {
  8391. "type": "git",
  8392. "url": "https://github.com/wantp/snowflake.git",
  8393. "reference": "821c2800521cddc31afd8dd980090883abc7fe2d"
  8394. },
  8395. "dist": {
  8396. "type": "zip",
  8397. "url": "https://api.github.com/repos/wantp/snowflake/zipball/821c2800521cddc31afd8dd980090883abc7fe2d",
  8398. "reference": "821c2800521cddc31afd8dd980090883abc7fe2d",
  8399. "shasum": "",
  8400. "mirrors": [
  8401. {
  8402. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8403. "preferred": true
  8404. }
  8405. ]
  8406. },
  8407. "require": {
  8408. "php": ">=7.0.0"
  8409. },
  8410. "type": "library",
  8411. "autoload": {
  8412. "psr-4": {
  8413. "wantp\\Snowflake\\": "src/Snowflake/"
  8414. }
  8415. },
  8416. "notification-url": "https://packagist.org/downloads/",
  8417. "license": [
  8418. "MIT"
  8419. ],
  8420. "authors": [
  8421. {
  8422. "name": "zhangrongwang",
  8423. "email": "zhangrongwang798@gmail.com"
  8424. }
  8425. ],
  8426. "description": "A package for create unique id by snowflake",
  8427. "keywords": [
  8428. "snowflake",
  8429. "uniqueId"
  8430. ],
  8431. "support": {
  8432. "issues": "https://github.com/wantp/snowflake/issues",
  8433. "source": "https://github.com/wantp/snowflake/tree/master"
  8434. },
  8435. "time": "2019-08-05T07:14:56+00:00"
  8436. },
  8437. {
  8438. "name": "webmozart/assert",
  8439. "version": "1.11.0",
  8440. "source": {
  8441. "type": "git",
  8442. "url": "https://github.com/webmozarts/assert.git",
  8443. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  8444. },
  8445. "dist": {
  8446. "type": "zip",
  8447. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8448. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8449. "shasum": "",
  8450. "mirrors": [
  8451. {
  8452. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8453. "preferred": true
  8454. }
  8455. ]
  8456. },
  8457. "require": {
  8458. "ext-ctype": "*",
  8459. "php": "^7.2 || ^8.0"
  8460. },
  8461. "conflict": {
  8462. "phpstan/phpstan": "<0.12.20",
  8463. "vimeo/psalm": "<4.6.1 || 4.6.2"
  8464. },
  8465. "require-dev": {
  8466. "phpunit/phpunit": "^8.5.13"
  8467. },
  8468. "type": "library",
  8469. "extra": {
  8470. "branch-alias": {
  8471. "dev-master": "1.10-dev"
  8472. }
  8473. },
  8474. "autoload": {
  8475. "psr-4": {
  8476. "Webmozart\\Assert\\": "src/"
  8477. }
  8478. },
  8479. "notification-url": "https://packagist.org/downloads/",
  8480. "license": [
  8481. "MIT"
  8482. ],
  8483. "authors": [
  8484. {
  8485. "name": "Bernhard Schussek",
  8486. "email": "bschussek@gmail.com"
  8487. }
  8488. ],
  8489. "description": "Assertions to validate method input/output with nice error messages.",
  8490. "keywords": [
  8491. "assert",
  8492. "check",
  8493. "validate"
  8494. ],
  8495. "support": {
  8496. "issues": "https://github.com/webmozarts/assert/issues",
  8497. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  8498. },
  8499. "time": "2022-06-03T18:03:27+00:00"
  8500. },
  8501. {
  8502. "name": "wechatpay/wechatpay",
  8503. "version": "1.4.11",
  8504. "source": {
  8505. "type": "git",
  8506. "url": "https://github.com/wechatpay-apiv3/wechatpay-php.git",
  8507. "reference": "6f2994f04412c909d3561585ba437b50b894306f"
  8508. },
  8509. "dist": {
  8510. "type": "zip",
  8511. "url": "https://api.github.com/repos/wechatpay-apiv3/wechatpay-php/zipball/6f2994f04412c909d3561585ba437b50b894306f",
  8512. "reference": "6f2994f04412c909d3561585ba437b50b894306f",
  8513. "shasum": "",
  8514. "mirrors": [
  8515. {
  8516. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8517. "preferred": true
  8518. }
  8519. ]
  8520. },
  8521. "require": {
  8522. "ext-curl": "*",
  8523. "ext-libxml": "*",
  8524. "ext-openssl": "*",
  8525. "ext-simplexml": "*",
  8526. "guzzlehttp/guzzle": "^6.5 || ^7.0",
  8527. "guzzlehttp/uri-template": "^0.2 || ^1.0",
  8528. "php": ">=7.1.2"
  8529. },
  8530. "require-dev": {
  8531. "phpstan/phpstan": "^0.12.89 || ^1.0",
  8532. "phpunit/phpunit": "^7.5 || ^8.5.16 || ^9.3.5"
  8533. },
  8534. "bin": [
  8535. "bin/CertificateDownloader.php"
  8536. ],
  8537. "type": "library",
  8538. "autoload": {
  8539. "psr-4": {
  8540. "WeChatPay\\": "src/"
  8541. }
  8542. },
  8543. "notification-url": "https://packagist.org/downloads/",
  8544. "license": [
  8545. "Apache-2.0"
  8546. ],
  8547. "authors": [
  8548. {
  8549. "name": "James ZHANG",
  8550. "homepage": "https://github.com/TheNorthMemory"
  8551. },
  8552. {
  8553. "name": "WeChatPay Community",
  8554. "homepage": "https://developers.weixin.qq.com/community/pay"
  8555. }
  8556. ],
  8557. "description": "[A]Sync Chainable WeChatPay v2&v3's OpenAPI SDK for PHP",
  8558. "homepage": "https://pay.weixin.qq.com/",
  8559. "keywords": [
  8560. "AES-GCM",
  8561. "aes-ecb",
  8562. "openapi-chainable",
  8563. "rsa-oaep",
  8564. "wechatpay",
  8565. "xml-builder",
  8566. "xml-parser"
  8567. ],
  8568. "support": {
  8569. "issues": "https://github.com/wechatpay-apiv3/wechatpay-php/issues",
  8570. "source": "https://github.com/wechatpay-apiv3/wechatpay-php/tree/v1.4.11"
  8571. },
  8572. "time": "2024-12-27T15:22:15+00:00"
  8573. }
  8574. ],
  8575. "packages-dev": [
  8576. {
  8577. "name": "doctrine/instantiator",
  8578. "version": "1.5.0",
  8579. "source": {
  8580. "type": "git",
  8581. "url": "https://github.com/doctrine/instantiator.git",
  8582. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  8583. },
  8584. "dist": {
  8585. "type": "zip",
  8586. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  8587. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  8588. "shasum": "",
  8589. "mirrors": [
  8590. {
  8591. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8592. "preferred": true
  8593. }
  8594. ]
  8595. },
  8596. "require": {
  8597. "php": "^7.1 || ^8.0"
  8598. },
  8599. "require-dev": {
  8600. "doctrine/coding-standard": "^9 || ^11",
  8601. "ext-pdo": "*",
  8602. "ext-phar": "*",
  8603. "phpbench/phpbench": "^0.16 || ^1",
  8604. "phpstan/phpstan": "^1.4",
  8605. "phpstan/phpstan-phpunit": "^1",
  8606. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  8607. "vimeo/psalm": "^4.30 || ^5.4"
  8608. },
  8609. "type": "library",
  8610. "autoload": {
  8611. "psr-4": {
  8612. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8613. }
  8614. },
  8615. "notification-url": "https://packagist.org/downloads/",
  8616. "license": [
  8617. "MIT"
  8618. ],
  8619. "authors": [
  8620. {
  8621. "name": "Marco Pivetta",
  8622. "email": "ocramius@gmail.com",
  8623. "homepage": "https://ocramius.github.io/"
  8624. }
  8625. ],
  8626. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8627. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8628. "keywords": [
  8629. "constructor",
  8630. "instantiate"
  8631. ],
  8632. "support": {
  8633. "issues": "https://github.com/doctrine/instantiator/issues",
  8634. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  8635. },
  8636. "funding": [
  8637. {
  8638. "url": "https://www.doctrine-project.org/sponsorship.html",
  8639. "type": "custom"
  8640. },
  8641. {
  8642. "url": "https://www.patreon.com/phpdoctrine",
  8643. "type": "patreon"
  8644. },
  8645. {
  8646. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8647. "type": "tidelift"
  8648. }
  8649. ],
  8650. "time": "2022-12-30T00:15:36+00:00"
  8651. },
  8652. {
  8653. "name": "facade/flare-client-php",
  8654. "version": "1.10.0",
  8655. "source": {
  8656. "type": "git",
  8657. "url": "https://github.com/facade/flare-client-php.git",
  8658. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8"
  8659. },
  8660. "dist": {
  8661. "type": "zip",
  8662. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  8663. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  8664. "shasum": "",
  8665. "mirrors": [
  8666. {
  8667. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8668. "preferred": true
  8669. }
  8670. ]
  8671. },
  8672. "require": {
  8673. "facade/ignition-contracts": "~1.0",
  8674. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  8675. "php": "^7.1|^8.0",
  8676. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  8677. "symfony/mime": "^3.4|^4.0|^5.1",
  8678. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  8679. },
  8680. "require-dev": {
  8681. "friendsofphp/php-cs-fixer": "^2.14",
  8682. "phpunit/phpunit": "^7.5",
  8683. "spatie/phpunit-snapshot-assertions": "^2.0"
  8684. },
  8685. "type": "library",
  8686. "extra": {
  8687. "branch-alias": {
  8688. "dev-master": "1.0-dev"
  8689. }
  8690. },
  8691. "autoload": {
  8692. "files": [
  8693. "src/helpers.php"
  8694. ],
  8695. "psr-4": {
  8696. "Facade\\FlareClient\\": "src"
  8697. }
  8698. },
  8699. "notification-url": "https://packagist.org/downloads/",
  8700. "license": [
  8701. "MIT"
  8702. ],
  8703. "description": "Send PHP errors to Flare",
  8704. "homepage": "https://github.com/facade/flare-client-php",
  8705. "keywords": [
  8706. "exception",
  8707. "facade",
  8708. "flare",
  8709. "reporting"
  8710. ],
  8711. "support": {
  8712. "issues": "https://github.com/facade/flare-client-php/issues",
  8713. "source": "https://github.com/facade/flare-client-php/tree/1.10.0"
  8714. },
  8715. "funding": [
  8716. {
  8717. "url": "https://github.com/spatie",
  8718. "type": "github"
  8719. }
  8720. ],
  8721. "time": "2022-08-09T11:23:57+00:00"
  8722. },
  8723. {
  8724. "name": "facade/ignition",
  8725. "version": "2.17.7",
  8726. "source": {
  8727. "type": "git",
  8728. "url": "https://github.com/facade/ignition.git",
  8729. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9"
  8730. },
  8731. "dist": {
  8732. "type": "zip",
  8733. "url": "https://api.github.com/repos/facade/ignition/zipball/b4f5955825bb4b74cba0f94001761c46335c33e9",
  8734. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9",
  8735. "shasum": "",
  8736. "mirrors": [
  8737. {
  8738. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8739. "preferred": true
  8740. }
  8741. ]
  8742. },
  8743. "require": {
  8744. "ext-curl": "*",
  8745. "ext-json": "*",
  8746. "ext-mbstring": "*",
  8747. "facade/flare-client-php": "^1.9.1",
  8748. "facade/ignition-contracts": "^1.0.2",
  8749. "illuminate/support": "^7.0|^8.0",
  8750. "monolog/monolog": "^2.0",
  8751. "php": "^7.2.5|^8.0",
  8752. "symfony/console": "^5.0",
  8753. "symfony/var-dumper": "^5.0"
  8754. },
  8755. "require-dev": {
  8756. "friendsofphp/php-cs-fixer": "^2.14",
  8757. "livewire/livewire": "^2.4",
  8758. "mockery/mockery": "^1.3",
  8759. "orchestra/testbench": "^5.0|^6.0",
  8760. "psalm/plugin-laravel": "^1.2"
  8761. },
  8762. "suggest": {
  8763. "laravel/telescope": "^3.1"
  8764. },
  8765. "type": "library",
  8766. "extra": {
  8767. "branch-alias": {
  8768. "dev-master": "2.x-dev"
  8769. },
  8770. "laravel": {
  8771. "providers": [
  8772. "Facade\\Ignition\\IgnitionServiceProvider"
  8773. ],
  8774. "aliases": {
  8775. "Flare": "Facade\\Ignition\\Facades\\Flare"
  8776. }
  8777. }
  8778. },
  8779. "autoload": {
  8780. "files": [
  8781. "src/helpers.php"
  8782. ],
  8783. "psr-4": {
  8784. "Facade\\Ignition\\": "src"
  8785. }
  8786. },
  8787. "notification-url": "https://packagist.org/downloads/",
  8788. "license": [
  8789. "MIT"
  8790. ],
  8791. "description": "A beautiful error page for Laravel applications.",
  8792. "homepage": "https://github.com/facade/ignition",
  8793. "keywords": [
  8794. "error",
  8795. "flare",
  8796. "laravel",
  8797. "page"
  8798. ],
  8799. "support": {
  8800. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  8801. "forum": "https://twitter.com/flareappio",
  8802. "issues": "https://github.com/facade/ignition/issues",
  8803. "source": "https://github.com/facade/ignition"
  8804. },
  8805. "time": "2023-01-26T12:34:59+00:00"
  8806. },
  8807. {
  8808. "name": "facade/ignition-contracts",
  8809. "version": "1.0.2",
  8810. "source": {
  8811. "type": "git",
  8812. "url": "https://github.com/facade/ignition-contracts.git",
  8813. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  8814. },
  8815. "dist": {
  8816. "type": "zip",
  8817. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8818. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8819. "shasum": "",
  8820. "mirrors": [
  8821. {
  8822. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8823. "preferred": true
  8824. }
  8825. ]
  8826. },
  8827. "require": {
  8828. "php": "^7.3|^8.0"
  8829. },
  8830. "require-dev": {
  8831. "friendsofphp/php-cs-fixer": "^v2.15.8",
  8832. "phpunit/phpunit": "^9.3.11",
  8833. "vimeo/psalm": "^3.17.1"
  8834. },
  8835. "type": "library",
  8836. "autoload": {
  8837. "psr-4": {
  8838. "Facade\\IgnitionContracts\\": "src"
  8839. }
  8840. },
  8841. "notification-url": "https://packagist.org/downloads/",
  8842. "license": [
  8843. "MIT"
  8844. ],
  8845. "authors": [
  8846. {
  8847. "name": "Freek Van der Herten",
  8848. "email": "freek@spatie.be",
  8849. "homepage": "https://flareapp.io",
  8850. "role": "Developer"
  8851. }
  8852. ],
  8853. "description": "Solution contracts for Ignition",
  8854. "homepage": "https://github.com/facade/ignition-contracts",
  8855. "keywords": [
  8856. "contracts",
  8857. "flare",
  8858. "ignition"
  8859. ],
  8860. "support": {
  8861. "issues": "https://github.com/facade/ignition-contracts/issues",
  8862. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  8863. },
  8864. "time": "2020-10-16T08:27:54+00:00"
  8865. },
  8866. {
  8867. "name": "fakerphp/faker",
  8868. "version": "v1.23.0",
  8869. "source": {
  8870. "type": "git",
  8871. "url": "https://github.com/FakerPHP/Faker.git",
  8872. "reference": "e3daa170d00fde61ea7719ef47bb09bb8f1d9b01"
  8873. },
  8874. "dist": {
  8875. "type": "zip",
  8876. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e3daa170d00fde61ea7719ef47bb09bb8f1d9b01",
  8877. "reference": "e3daa170d00fde61ea7719ef47bb09bb8f1d9b01",
  8878. "shasum": "",
  8879. "mirrors": [
  8880. {
  8881. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8882. "preferred": true
  8883. }
  8884. ]
  8885. },
  8886. "require": {
  8887. "php": "^7.4 || ^8.0",
  8888. "psr/container": "^1.0 || ^2.0",
  8889. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  8890. },
  8891. "conflict": {
  8892. "fzaninotto/faker": "*"
  8893. },
  8894. "require-dev": {
  8895. "bamarni/composer-bin-plugin": "^1.4.1",
  8896. "doctrine/persistence": "^1.3 || ^2.0",
  8897. "ext-intl": "*",
  8898. "phpunit/phpunit": "^9.5.26",
  8899. "symfony/phpunit-bridge": "^5.4.16"
  8900. },
  8901. "suggest": {
  8902. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  8903. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  8904. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  8905. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  8906. "ext-mbstring": "Required for multibyte Unicode string functionality."
  8907. },
  8908. "type": "library",
  8909. "extra": {
  8910. "branch-alias": {
  8911. "dev-main": "v1.21-dev"
  8912. }
  8913. },
  8914. "autoload": {
  8915. "psr-4": {
  8916. "Faker\\": "src/Faker/"
  8917. }
  8918. },
  8919. "notification-url": "https://packagist.org/downloads/",
  8920. "license": [
  8921. "MIT"
  8922. ],
  8923. "authors": [
  8924. {
  8925. "name": "François Zaninotto"
  8926. }
  8927. ],
  8928. "description": "Faker is a PHP library that generates fake data for you.",
  8929. "keywords": [
  8930. "data",
  8931. "faker",
  8932. "fixtures"
  8933. ],
  8934. "support": {
  8935. "issues": "https://github.com/FakerPHP/Faker/issues",
  8936. "source": "https://github.com/FakerPHP/Faker/tree/v1.23.0"
  8937. },
  8938. "time": "2023-06-12T08:44:38+00:00"
  8939. },
  8940. {
  8941. "name": "filp/whoops",
  8942. "version": "2.15.4",
  8943. "source": {
  8944. "type": "git",
  8945. "url": "https://github.com/filp/whoops.git",
  8946. "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546"
  8947. },
  8948. "dist": {
  8949. "type": "zip",
  8950. "url": "https://api.github.com/repos/filp/whoops/zipball/a139776fa3f5985a50b509f2a02ff0f709d2a546",
  8951. "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546",
  8952. "shasum": "",
  8953. "mirrors": [
  8954. {
  8955. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8956. "preferred": true
  8957. }
  8958. ]
  8959. },
  8960. "require": {
  8961. "php": "^5.5.9 || ^7.0 || ^8.0",
  8962. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  8963. },
  8964. "require-dev": {
  8965. "mockery/mockery": "^0.9 || ^1.0",
  8966. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  8967. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  8968. },
  8969. "suggest": {
  8970. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8971. "whoops/soap": "Formats errors as SOAP responses"
  8972. },
  8973. "type": "library",
  8974. "extra": {
  8975. "branch-alias": {
  8976. "dev-master": "2.7-dev"
  8977. }
  8978. },
  8979. "autoload": {
  8980. "psr-4": {
  8981. "Whoops\\": "src/Whoops/"
  8982. }
  8983. },
  8984. "notification-url": "https://packagist.org/downloads/",
  8985. "license": [
  8986. "MIT"
  8987. ],
  8988. "authors": [
  8989. {
  8990. "name": "Filipe Dobreira",
  8991. "homepage": "https://github.com/filp",
  8992. "role": "Developer"
  8993. }
  8994. ],
  8995. "description": "php error handling for cool kids",
  8996. "homepage": "https://filp.github.io/whoops/",
  8997. "keywords": [
  8998. "error",
  8999. "exception",
  9000. "handling",
  9001. "library",
  9002. "throwable",
  9003. "whoops"
  9004. ],
  9005. "support": {
  9006. "issues": "https://github.com/filp/whoops/issues",
  9007. "source": "https://github.com/filp/whoops/tree/2.15.4"
  9008. },
  9009. "funding": [
  9010. {
  9011. "url": "https://github.com/denis-sokolov",
  9012. "type": "github"
  9013. }
  9014. ],
  9015. "time": "2023-11-03T12:00:00+00:00"
  9016. },
  9017. {
  9018. "name": "hamcrest/hamcrest-php",
  9019. "version": "v2.0.1",
  9020. "source": {
  9021. "type": "git",
  9022. "url": "https://github.com/hamcrest/hamcrest-php.git",
  9023. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  9024. },
  9025. "dist": {
  9026. "type": "zip",
  9027. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  9028. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  9029. "shasum": "",
  9030. "mirrors": [
  9031. {
  9032. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9033. "preferred": true
  9034. }
  9035. ]
  9036. },
  9037. "require": {
  9038. "php": "^5.3|^7.0|^8.0"
  9039. },
  9040. "replace": {
  9041. "cordoval/hamcrest-php": "*",
  9042. "davedevelopment/hamcrest-php": "*",
  9043. "kodova/hamcrest-php": "*"
  9044. },
  9045. "require-dev": {
  9046. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  9047. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  9048. },
  9049. "type": "library",
  9050. "extra": {
  9051. "branch-alias": {
  9052. "dev-master": "2.1-dev"
  9053. }
  9054. },
  9055. "autoload": {
  9056. "classmap": [
  9057. "hamcrest"
  9058. ]
  9059. },
  9060. "notification-url": "https://packagist.org/downloads/",
  9061. "license": [
  9062. "BSD-3-Clause"
  9063. ],
  9064. "description": "This is the PHP port of Hamcrest Matchers",
  9065. "keywords": [
  9066. "test"
  9067. ],
  9068. "support": {
  9069. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  9070. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  9071. },
  9072. "time": "2020-07-09T08:09:16+00:00"
  9073. },
  9074. {
  9075. "name": "laravel/sail",
  9076. "version": "v1.19.0",
  9077. "source": {
  9078. "type": "git",
  9079. "url": "https://github.com/laravel/sail.git",
  9080. "reference": "4f230634a3163f3442def6a4e6ffdb02b02e14d6"
  9081. },
  9082. "dist": {
  9083. "type": "zip",
  9084. "url": "https://api.github.com/repos/laravel/sail/zipball/4f230634a3163f3442def6a4e6ffdb02b02e14d6",
  9085. "reference": "4f230634a3163f3442def6a4e6ffdb02b02e14d6",
  9086. "shasum": "",
  9087. "mirrors": [
  9088. {
  9089. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9090. "preferred": true
  9091. }
  9092. ]
  9093. },
  9094. "require": {
  9095. "illuminate/console": "^8.0|^9.0|^10.0",
  9096. "illuminate/contracts": "^8.0|^9.0|^10.0",
  9097. "illuminate/support": "^8.0|^9.0|^10.0",
  9098. "php": "^7.3|^8.0"
  9099. },
  9100. "bin": [
  9101. "bin/sail"
  9102. ],
  9103. "type": "library",
  9104. "extra": {
  9105. "branch-alias": {
  9106. "dev-master": "1.x-dev"
  9107. },
  9108. "laravel": {
  9109. "providers": [
  9110. "Laravel\\Sail\\SailServiceProvider"
  9111. ]
  9112. }
  9113. },
  9114. "autoload": {
  9115. "psr-4": {
  9116. "Laravel\\Sail\\": "src/"
  9117. }
  9118. },
  9119. "notification-url": "https://packagist.org/downloads/",
  9120. "license": [
  9121. "MIT"
  9122. ],
  9123. "authors": [
  9124. {
  9125. "name": "Taylor Otwell",
  9126. "email": "taylor@laravel.com"
  9127. }
  9128. ],
  9129. "description": "Docker files for running a basic Laravel application.",
  9130. "keywords": [
  9131. "docker",
  9132. "laravel"
  9133. ],
  9134. "support": {
  9135. "issues": "https://github.com/laravel/sail/issues",
  9136. "source": "https://github.com/laravel/sail"
  9137. },
  9138. "time": "2023-01-31T13:37:57+00:00"
  9139. },
  9140. {
  9141. "name": "mockery/mockery",
  9142. "version": "1.6.6",
  9143. "source": {
  9144. "type": "git",
  9145. "url": "https://github.com/mockery/mockery.git",
  9146. "reference": "b8e0bb7d8c604046539c1115994632c74dcb361e"
  9147. },
  9148. "dist": {
  9149. "type": "zip",
  9150. "url": "https://api.github.com/repos/mockery/mockery/zipball/b8e0bb7d8c604046539c1115994632c74dcb361e",
  9151. "reference": "b8e0bb7d8c604046539c1115994632c74dcb361e",
  9152. "shasum": "",
  9153. "mirrors": [
  9154. {
  9155. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9156. "preferred": true
  9157. }
  9158. ]
  9159. },
  9160. "require": {
  9161. "hamcrest/hamcrest-php": "^2.0.1",
  9162. "lib-pcre": ">=7.0",
  9163. "php": ">=7.3"
  9164. },
  9165. "conflict": {
  9166. "phpunit/phpunit": "<8.0"
  9167. },
  9168. "require-dev": {
  9169. "phpunit/phpunit": "^8.5 || ^9.6.10",
  9170. "psalm/plugin-phpunit": "^0.18.4",
  9171. "symplify/easy-coding-standard": "^11.5.0",
  9172. "vimeo/psalm": "^4.30"
  9173. },
  9174. "type": "library",
  9175. "autoload": {
  9176. "files": [
  9177. "library/helpers.php",
  9178. "library/Mockery.php"
  9179. ],
  9180. "psr-4": {
  9181. "Mockery\\": "library/Mockery"
  9182. }
  9183. },
  9184. "notification-url": "https://packagist.org/downloads/",
  9185. "license": [
  9186. "BSD-3-Clause"
  9187. ],
  9188. "authors": [
  9189. {
  9190. "name": "Pádraic Brady",
  9191. "email": "padraic.brady@gmail.com",
  9192. "homepage": "https://github.com/padraic",
  9193. "role": "Author"
  9194. },
  9195. {
  9196. "name": "Dave Marshall",
  9197. "email": "dave.marshall@atstsolutions.co.uk",
  9198. "homepage": "https://davedevelopment.co.uk",
  9199. "role": "Developer"
  9200. },
  9201. {
  9202. "name": "Nathanael Esayeas",
  9203. "email": "nathanael.esayeas@protonmail.com",
  9204. "homepage": "https://github.com/ghostwriter",
  9205. "role": "Lead Developer"
  9206. }
  9207. ],
  9208. "description": "Mockery is a simple yet flexible PHP mock object framework",
  9209. "homepage": "https://github.com/mockery/mockery",
  9210. "keywords": [
  9211. "BDD",
  9212. "TDD",
  9213. "library",
  9214. "mock",
  9215. "mock objects",
  9216. "mockery",
  9217. "stub",
  9218. "test",
  9219. "test double",
  9220. "testing"
  9221. ],
  9222. "support": {
  9223. "docs": "https://docs.mockery.io/",
  9224. "issues": "https://github.com/mockery/mockery/issues",
  9225. "rss": "https://github.com/mockery/mockery/releases.atom",
  9226. "security": "https://github.com/mockery/mockery/security/advisories",
  9227. "source": "https://github.com/mockery/mockery"
  9228. },
  9229. "time": "2023-08-09T00:03:52+00:00"
  9230. },
  9231. {
  9232. "name": "myclabs/deep-copy",
  9233. "version": "1.11.1",
  9234. "source": {
  9235. "type": "git",
  9236. "url": "https://github.com/myclabs/DeepCopy.git",
  9237. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  9238. },
  9239. "dist": {
  9240. "type": "zip",
  9241. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  9242. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  9243. "shasum": "",
  9244. "mirrors": [
  9245. {
  9246. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9247. "preferred": true
  9248. }
  9249. ]
  9250. },
  9251. "require": {
  9252. "php": "^7.1 || ^8.0"
  9253. },
  9254. "conflict": {
  9255. "doctrine/collections": "<1.6.8",
  9256. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  9257. },
  9258. "require-dev": {
  9259. "doctrine/collections": "^1.6.8",
  9260. "doctrine/common": "^2.13.3 || ^3.2.2",
  9261. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  9262. },
  9263. "type": "library",
  9264. "autoload": {
  9265. "files": [
  9266. "src/DeepCopy/deep_copy.php"
  9267. ],
  9268. "psr-4": {
  9269. "DeepCopy\\": "src/DeepCopy/"
  9270. }
  9271. },
  9272. "notification-url": "https://packagist.org/downloads/",
  9273. "license": [
  9274. "MIT"
  9275. ],
  9276. "description": "Create deep copies (clones) of your objects",
  9277. "keywords": [
  9278. "clone",
  9279. "copy",
  9280. "duplicate",
  9281. "object",
  9282. "object graph"
  9283. ],
  9284. "support": {
  9285. "issues": "https://github.com/myclabs/DeepCopy/issues",
  9286. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  9287. },
  9288. "funding": [
  9289. {
  9290. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  9291. "type": "tidelift"
  9292. }
  9293. ],
  9294. "time": "2023-03-08T13:26:56+00:00"
  9295. },
  9296. {
  9297. "name": "nunomaduro/collision",
  9298. "version": "v5.11.0",
  9299. "source": {
  9300. "type": "git",
  9301. "url": "https://github.com/nunomaduro/collision.git",
  9302. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461"
  9303. },
  9304. "dist": {
  9305. "type": "zip",
  9306. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/8b610eef8582ccdc05d8f2ab23305e2d37049461",
  9307. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461",
  9308. "shasum": "",
  9309. "mirrors": [
  9310. {
  9311. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9312. "preferred": true
  9313. }
  9314. ]
  9315. },
  9316. "require": {
  9317. "facade/ignition-contracts": "^1.0",
  9318. "filp/whoops": "^2.14.3",
  9319. "php": "^7.3 || ^8.0",
  9320. "symfony/console": "^5.0"
  9321. },
  9322. "require-dev": {
  9323. "brianium/paratest": "^6.1",
  9324. "fideloper/proxy": "^4.4.1",
  9325. "fruitcake/laravel-cors": "^2.0.3",
  9326. "laravel/framework": "8.x-dev",
  9327. "nunomaduro/larastan": "^0.6.2",
  9328. "nunomaduro/mock-final-classes": "^1.0",
  9329. "orchestra/testbench": "^6.0",
  9330. "phpstan/phpstan": "^0.12.64",
  9331. "phpunit/phpunit": "^9.5.0"
  9332. },
  9333. "type": "library",
  9334. "extra": {
  9335. "laravel": {
  9336. "providers": [
  9337. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  9338. ]
  9339. }
  9340. },
  9341. "autoload": {
  9342. "psr-4": {
  9343. "NunoMaduro\\Collision\\": "src/"
  9344. }
  9345. },
  9346. "notification-url": "https://packagist.org/downloads/",
  9347. "license": [
  9348. "MIT"
  9349. ],
  9350. "authors": [
  9351. {
  9352. "name": "Nuno Maduro",
  9353. "email": "enunomaduro@gmail.com"
  9354. }
  9355. ],
  9356. "description": "Cli error handling for console/command-line PHP applications.",
  9357. "keywords": [
  9358. "artisan",
  9359. "cli",
  9360. "command-line",
  9361. "console",
  9362. "error",
  9363. "handling",
  9364. "laravel",
  9365. "laravel-zero",
  9366. "php",
  9367. "symfony"
  9368. ],
  9369. "support": {
  9370. "issues": "https://github.com/nunomaduro/collision/issues",
  9371. "source": "https://github.com/nunomaduro/collision"
  9372. },
  9373. "funding": [
  9374. {
  9375. "url": "https://www.paypal.com/paypalme/enunomaduro",
  9376. "type": "custom"
  9377. },
  9378. {
  9379. "url": "https://github.com/nunomaduro",
  9380. "type": "github"
  9381. },
  9382. {
  9383. "url": "https://www.patreon.com/nunomaduro",
  9384. "type": "patreon"
  9385. }
  9386. ],
  9387. "time": "2022-01-10T16:22:52+00:00"
  9388. },
  9389. {
  9390. "name": "phar-io/manifest",
  9391. "version": "2.0.3",
  9392. "source": {
  9393. "type": "git",
  9394. "url": "https://github.com/phar-io/manifest.git",
  9395. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  9396. },
  9397. "dist": {
  9398. "type": "zip",
  9399. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  9400. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  9401. "shasum": "",
  9402. "mirrors": [
  9403. {
  9404. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9405. "preferred": true
  9406. }
  9407. ]
  9408. },
  9409. "require": {
  9410. "ext-dom": "*",
  9411. "ext-phar": "*",
  9412. "ext-xmlwriter": "*",
  9413. "phar-io/version": "^3.0.1",
  9414. "php": "^7.2 || ^8.0"
  9415. },
  9416. "type": "library",
  9417. "extra": {
  9418. "branch-alias": {
  9419. "dev-master": "2.0.x-dev"
  9420. }
  9421. },
  9422. "autoload": {
  9423. "classmap": [
  9424. "src/"
  9425. ]
  9426. },
  9427. "notification-url": "https://packagist.org/downloads/",
  9428. "license": [
  9429. "BSD-3-Clause"
  9430. ],
  9431. "authors": [
  9432. {
  9433. "name": "Arne Blankerts",
  9434. "email": "arne@blankerts.de",
  9435. "role": "Developer"
  9436. },
  9437. {
  9438. "name": "Sebastian Heuer",
  9439. "email": "sebastian@phpeople.de",
  9440. "role": "Developer"
  9441. },
  9442. {
  9443. "name": "Sebastian Bergmann",
  9444. "email": "sebastian@phpunit.de",
  9445. "role": "Developer"
  9446. }
  9447. ],
  9448. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9449. "support": {
  9450. "issues": "https://github.com/phar-io/manifest/issues",
  9451. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  9452. },
  9453. "time": "2021-07-20T11:28:43+00:00"
  9454. },
  9455. {
  9456. "name": "phar-io/version",
  9457. "version": "3.2.1",
  9458. "source": {
  9459. "type": "git",
  9460. "url": "https://github.com/phar-io/version.git",
  9461. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  9462. },
  9463. "dist": {
  9464. "type": "zip",
  9465. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9466. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9467. "shasum": "",
  9468. "mirrors": [
  9469. {
  9470. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9471. "preferred": true
  9472. }
  9473. ]
  9474. },
  9475. "require": {
  9476. "php": "^7.2 || ^8.0"
  9477. },
  9478. "type": "library",
  9479. "autoload": {
  9480. "classmap": [
  9481. "src/"
  9482. ]
  9483. },
  9484. "notification-url": "https://packagist.org/downloads/",
  9485. "license": [
  9486. "BSD-3-Clause"
  9487. ],
  9488. "authors": [
  9489. {
  9490. "name": "Arne Blankerts",
  9491. "email": "arne@blankerts.de",
  9492. "role": "Developer"
  9493. },
  9494. {
  9495. "name": "Sebastian Heuer",
  9496. "email": "sebastian@phpeople.de",
  9497. "role": "Developer"
  9498. },
  9499. {
  9500. "name": "Sebastian Bergmann",
  9501. "email": "sebastian@phpunit.de",
  9502. "role": "Developer"
  9503. }
  9504. ],
  9505. "description": "Library for handling version information and constraints",
  9506. "support": {
  9507. "issues": "https://github.com/phar-io/version/issues",
  9508. "source": "https://github.com/phar-io/version/tree/3.2.1"
  9509. },
  9510. "time": "2022-02-21T01:04:05+00:00"
  9511. },
  9512. {
  9513. "name": "phpunit/php-code-coverage",
  9514. "version": "9.2.30",
  9515. "source": {
  9516. "type": "git",
  9517. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9518. "reference": "ca2bd87d2f9215904682a9cb9bb37dda98e76089"
  9519. },
  9520. "dist": {
  9521. "type": "zip",
  9522. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/ca2bd87d2f9215904682a9cb9bb37dda98e76089",
  9523. "reference": "ca2bd87d2f9215904682a9cb9bb37dda98e76089",
  9524. "shasum": "",
  9525. "mirrors": [
  9526. {
  9527. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9528. "preferred": true
  9529. }
  9530. ]
  9531. },
  9532. "require": {
  9533. "ext-dom": "*",
  9534. "ext-libxml": "*",
  9535. "ext-xmlwriter": "*",
  9536. "nikic/php-parser": "^4.18 || ^5.0",
  9537. "php": ">=7.3",
  9538. "phpunit/php-file-iterator": "^3.0.3",
  9539. "phpunit/php-text-template": "^2.0.2",
  9540. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  9541. "sebastian/complexity": "^2.0",
  9542. "sebastian/environment": "^5.1.2",
  9543. "sebastian/lines-of-code": "^1.0.3",
  9544. "sebastian/version": "^3.0.1",
  9545. "theseer/tokenizer": "^1.2.0"
  9546. },
  9547. "require-dev": {
  9548. "phpunit/phpunit": "^9.3"
  9549. },
  9550. "suggest": {
  9551. "ext-pcov": "PHP extension that provides line coverage",
  9552. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9553. },
  9554. "type": "library",
  9555. "extra": {
  9556. "branch-alias": {
  9557. "dev-master": "9.2-dev"
  9558. }
  9559. },
  9560. "autoload": {
  9561. "classmap": [
  9562. "src/"
  9563. ]
  9564. },
  9565. "notification-url": "https://packagist.org/downloads/",
  9566. "license": [
  9567. "BSD-3-Clause"
  9568. ],
  9569. "authors": [
  9570. {
  9571. "name": "Sebastian Bergmann",
  9572. "email": "sebastian@phpunit.de",
  9573. "role": "lead"
  9574. }
  9575. ],
  9576. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9577. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9578. "keywords": [
  9579. "coverage",
  9580. "testing",
  9581. "xunit"
  9582. ],
  9583. "support": {
  9584. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9585. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  9586. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.30"
  9587. },
  9588. "funding": [
  9589. {
  9590. "url": "https://github.com/sebastianbergmann",
  9591. "type": "github"
  9592. }
  9593. ],
  9594. "time": "2023-12-22T06:47:57+00:00"
  9595. },
  9596. {
  9597. "name": "phpunit/php-file-iterator",
  9598. "version": "3.0.6",
  9599. "source": {
  9600. "type": "git",
  9601. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9602. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  9603. },
  9604. "dist": {
  9605. "type": "zip",
  9606. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9607. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9608. "shasum": "",
  9609. "mirrors": [
  9610. {
  9611. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9612. "preferred": true
  9613. }
  9614. ]
  9615. },
  9616. "require": {
  9617. "php": ">=7.3"
  9618. },
  9619. "require-dev": {
  9620. "phpunit/phpunit": "^9.3"
  9621. },
  9622. "type": "library",
  9623. "extra": {
  9624. "branch-alias": {
  9625. "dev-master": "3.0-dev"
  9626. }
  9627. },
  9628. "autoload": {
  9629. "classmap": [
  9630. "src/"
  9631. ]
  9632. },
  9633. "notification-url": "https://packagist.org/downloads/",
  9634. "license": [
  9635. "BSD-3-Clause"
  9636. ],
  9637. "authors": [
  9638. {
  9639. "name": "Sebastian Bergmann",
  9640. "email": "sebastian@phpunit.de",
  9641. "role": "lead"
  9642. }
  9643. ],
  9644. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9645. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9646. "keywords": [
  9647. "filesystem",
  9648. "iterator"
  9649. ],
  9650. "support": {
  9651. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9652. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  9653. },
  9654. "funding": [
  9655. {
  9656. "url": "https://github.com/sebastianbergmann",
  9657. "type": "github"
  9658. }
  9659. ],
  9660. "time": "2021-12-02T12:48:52+00:00"
  9661. },
  9662. {
  9663. "name": "phpunit/php-invoker",
  9664. "version": "3.1.1",
  9665. "source": {
  9666. "type": "git",
  9667. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9668. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  9669. },
  9670. "dist": {
  9671. "type": "zip",
  9672. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9673. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9674. "shasum": "",
  9675. "mirrors": [
  9676. {
  9677. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9678. "preferred": true
  9679. }
  9680. ]
  9681. },
  9682. "require": {
  9683. "php": ">=7.3"
  9684. },
  9685. "require-dev": {
  9686. "ext-pcntl": "*",
  9687. "phpunit/phpunit": "^9.3"
  9688. },
  9689. "suggest": {
  9690. "ext-pcntl": "*"
  9691. },
  9692. "type": "library",
  9693. "extra": {
  9694. "branch-alias": {
  9695. "dev-master": "3.1-dev"
  9696. }
  9697. },
  9698. "autoload": {
  9699. "classmap": [
  9700. "src/"
  9701. ]
  9702. },
  9703. "notification-url": "https://packagist.org/downloads/",
  9704. "license": [
  9705. "BSD-3-Clause"
  9706. ],
  9707. "authors": [
  9708. {
  9709. "name": "Sebastian Bergmann",
  9710. "email": "sebastian@phpunit.de",
  9711. "role": "lead"
  9712. }
  9713. ],
  9714. "description": "Invoke callables with a timeout",
  9715. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9716. "keywords": [
  9717. "process"
  9718. ],
  9719. "support": {
  9720. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9721. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  9722. },
  9723. "funding": [
  9724. {
  9725. "url": "https://github.com/sebastianbergmann",
  9726. "type": "github"
  9727. }
  9728. ],
  9729. "time": "2020-09-28T05:58:55+00:00"
  9730. },
  9731. {
  9732. "name": "phpunit/php-text-template",
  9733. "version": "2.0.4",
  9734. "source": {
  9735. "type": "git",
  9736. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9737. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  9738. },
  9739. "dist": {
  9740. "type": "zip",
  9741. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9742. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9743. "shasum": "",
  9744. "mirrors": [
  9745. {
  9746. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9747. "preferred": true
  9748. }
  9749. ]
  9750. },
  9751. "require": {
  9752. "php": ">=7.3"
  9753. },
  9754. "require-dev": {
  9755. "phpunit/phpunit": "^9.3"
  9756. },
  9757. "type": "library",
  9758. "extra": {
  9759. "branch-alias": {
  9760. "dev-master": "2.0-dev"
  9761. }
  9762. },
  9763. "autoload": {
  9764. "classmap": [
  9765. "src/"
  9766. ]
  9767. },
  9768. "notification-url": "https://packagist.org/downloads/",
  9769. "license": [
  9770. "BSD-3-Clause"
  9771. ],
  9772. "authors": [
  9773. {
  9774. "name": "Sebastian Bergmann",
  9775. "email": "sebastian@phpunit.de",
  9776. "role": "lead"
  9777. }
  9778. ],
  9779. "description": "Simple template engine.",
  9780. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9781. "keywords": [
  9782. "template"
  9783. ],
  9784. "support": {
  9785. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9786. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  9787. },
  9788. "funding": [
  9789. {
  9790. "url": "https://github.com/sebastianbergmann",
  9791. "type": "github"
  9792. }
  9793. ],
  9794. "time": "2020-10-26T05:33:50+00:00"
  9795. },
  9796. {
  9797. "name": "phpunit/php-timer",
  9798. "version": "5.0.3",
  9799. "source": {
  9800. "type": "git",
  9801. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9802. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  9803. },
  9804. "dist": {
  9805. "type": "zip",
  9806. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9807. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9808. "shasum": "",
  9809. "mirrors": [
  9810. {
  9811. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9812. "preferred": true
  9813. }
  9814. ]
  9815. },
  9816. "require": {
  9817. "php": ">=7.3"
  9818. },
  9819. "require-dev": {
  9820. "phpunit/phpunit": "^9.3"
  9821. },
  9822. "type": "library",
  9823. "extra": {
  9824. "branch-alias": {
  9825. "dev-master": "5.0-dev"
  9826. }
  9827. },
  9828. "autoload": {
  9829. "classmap": [
  9830. "src/"
  9831. ]
  9832. },
  9833. "notification-url": "https://packagist.org/downloads/",
  9834. "license": [
  9835. "BSD-3-Clause"
  9836. ],
  9837. "authors": [
  9838. {
  9839. "name": "Sebastian Bergmann",
  9840. "email": "sebastian@phpunit.de",
  9841. "role": "lead"
  9842. }
  9843. ],
  9844. "description": "Utility class for timing",
  9845. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9846. "keywords": [
  9847. "timer"
  9848. ],
  9849. "support": {
  9850. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9851. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  9852. },
  9853. "funding": [
  9854. {
  9855. "url": "https://github.com/sebastianbergmann",
  9856. "type": "github"
  9857. }
  9858. ],
  9859. "time": "2020-10-26T13:16:10+00:00"
  9860. },
  9861. {
  9862. "name": "phpunit/phpunit",
  9863. "version": "9.6.15",
  9864. "source": {
  9865. "type": "git",
  9866. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9867. "reference": "05017b80304e0eb3f31d90194a563fd53a6021f1"
  9868. },
  9869. "dist": {
  9870. "type": "zip",
  9871. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/05017b80304e0eb3f31d90194a563fd53a6021f1",
  9872. "reference": "05017b80304e0eb3f31d90194a563fd53a6021f1",
  9873. "shasum": "",
  9874. "mirrors": [
  9875. {
  9876. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9877. "preferred": true
  9878. }
  9879. ]
  9880. },
  9881. "require": {
  9882. "doctrine/instantiator": "^1.3.1 || ^2",
  9883. "ext-dom": "*",
  9884. "ext-json": "*",
  9885. "ext-libxml": "*",
  9886. "ext-mbstring": "*",
  9887. "ext-xml": "*",
  9888. "ext-xmlwriter": "*",
  9889. "myclabs/deep-copy": "^1.10.1",
  9890. "phar-io/manifest": "^2.0.3",
  9891. "phar-io/version": "^3.0.2",
  9892. "php": ">=7.3",
  9893. "phpunit/php-code-coverage": "^9.2.28",
  9894. "phpunit/php-file-iterator": "^3.0.5",
  9895. "phpunit/php-invoker": "^3.1.1",
  9896. "phpunit/php-text-template": "^2.0.3",
  9897. "phpunit/php-timer": "^5.0.2",
  9898. "sebastian/cli-parser": "^1.0.1",
  9899. "sebastian/code-unit": "^1.0.6",
  9900. "sebastian/comparator": "^4.0.8",
  9901. "sebastian/diff": "^4.0.3",
  9902. "sebastian/environment": "^5.1.3",
  9903. "sebastian/exporter": "^4.0.5",
  9904. "sebastian/global-state": "^5.0.1",
  9905. "sebastian/object-enumerator": "^4.0.3",
  9906. "sebastian/resource-operations": "^3.0.3",
  9907. "sebastian/type": "^3.2",
  9908. "sebastian/version": "^3.0.2"
  9909. },
  9910. "suggest": {
  9911. "ext-soap": "To be able to generate mocks based on WSDL files",
  9912. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9913. },
  9914. "bin": [
  9915. "phpunit"
  9916. ],
  9917. "type": "library",
  9918. "extra": {
  9919. "branch-alias": {
  9920. "dev-master": "9.6-dev"
  9921. }
  9922. },
  9923. "autoload": {
  9924. "files": [
  9925. "src/Framework/Assert/Functions.php"
  9926. ],
  9927. "classmap": [
  9928. "src/"
  9929. ]
  9930. },
  9931. "notification-url": "https://packagist.org/downloads/",
  9932. "license": [
  9933. "BSD-3-Clause"
  9934. ],
  9935. "authors": [
  9936. {
  9937. "name": "Sebastian Bergmann",
  9938. "email": "sebastian@phpunit.de",
  9939. "role": "lead"
  9940. }
  9941. ],
  9942. "description": "The PHP Unit Testing framework.",
  9943. "homepage": "https://phpunit.de/",
  9944. "keywords": [
  9945. "phpunit",
  9946. "testing",
  9947. "xunit"
  9948. ],
  9949. "support": {
  9950. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9951. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9952. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.15"
  9953. },
  9954. "funding": [
  9955. {
  9956. "url": "https://phpunit.de/sponsors.html",
  9957. "type": "custom"
  9958. },
  9959. {
  9960. "url": "https://github.com/sebastianbergmann",
  9961. "type": "github"
  9962. },
  9963. {
  9964. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9965. "type": "tidelift"
  9966. }
  9967. ],
  9968. "time": "2023-12-01T16:55:19+00:00"
  9969. },
  9970. {
  9971. "name": "sebastian/cli-parser",
  9972. "version": "1.0.1",
  9973. "source": {
  9974. "type": "git",
  9975. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9976. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  9977. },
  9978. "dist": {
  9979. "type": "zip",
  9980. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  9981. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  9982. "shasum": "",
  9983. "mirrors": [
  9984. {
  9985. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9986. "preferred": true
  9987. }
  9988. ]
  9989. },
  9990. "require": {
  9991. "php": ">=7.3"
  9992. },
  9993. "require-dev": {
  9994. "phpunit/phpunit": "^9.3"
  9995. },
  9996. "type": "library",
  9997. "extra": {
  9998. "branch-alias": {
  9999. "dev-master": "1.0-dev"
  10000. }
  10001. },
  10002. "autoload": {
  10003. "classmap": [
  10004. "src/"
  10005. ]
  10006. },
  10007. "notification-url": "https://packagist.org/downloads/",
  10008. "license": [
  10009. "BSD-3-Clause"
  10010. ],
  10011. "authors": [
  10012. {
  10013. "name": "Sebastian Bergmann",
  10014. "email": "sebastian@phpunit.de",
  10015. "role": "lead"
  10016. }
  10017. ],
  10018. "description": "Library for parsing CLI options",
  10019. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  10020. "support": {
  10021. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  10022. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  10023. },
  10024. "funding": [
  10025. {
  10026. "url": "https://github.com/sebastianbergmann",
  10027. "type": "github"
  10028. }
  10029. ],
  10030. "time": "2020-09-28T06:08:49+00:00"
  10031. },
  10032. {
  10033. "name": "sebastian/code-unit",
  10034. "version": "1.0.8",
  10035. "source": {
  10036. "type": "git",
  10037. "url": "https://github.com/sebastianbergmann/code-unit.git",
  10038. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  10039. },
  10040. "dist": {
  10041. "type": "zip",
  10042. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  10043. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  10044. "shasum": "",
  10045. "mirrors": [
  10046. {
  10047. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10048. "preferred": true
  10049. }
  10050. ]
  10051. },
  10052. "require": {
  10053. "php": ">=7.3"
  10054. },
  10055. "require-dev": {
  10056. "phpunit/phpunit": "^9.3"
  10057. },
  10058. "type": "library",
  10059. "extra": {
  10060. "branch-alias": {
  10061. "dev-master": "1.0-dev"
  10062. }
  10063. },
  10064. "autoload": {
  10065. "classmap": [
  10066. "src/"
  10067. ]
  10068. },
  10069. "notification-url": "https://packagist.org/downloads/",
  10070. "license": [
  10071. "BSD-3-Clause"
  10072. ],
  10073. "authors": [
  10074. {
  10075. "name": "Sebastian Bergmann",
  10076. "email": "sebastian@phpunit.de",
  10077. "role": "lead"
  10078. }
  10079. ],
  10080. "description": "Collection of value objects that represent the PHP code units",
  10081. "homepage": "https://github.com/sebastianbergmann/code-unit",
  10082. "support": {
  10083. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  10084. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  10085. },
  10086. "funding": [
  10087. {
  10088. "url": "https://github.com/sebastianbergmann",
  10089. "type": "github"
  10090. }
  10091. ],
  10092. "time": "2020-10-26T13:08:54+00:00"
  10093. },
  10094. {
  10095. "name": "sebastian/code-unit-reverse-lookup",
  10096. "version": "2.0.3",
  10097. "source": {
  10098. "type": "git",
  10099. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  10100. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  10101. },
  10102. "dist": {
  10103. "type": "zip",
  10104. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  10105. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  10106. "shasum": "",
  10107. "mirrors": [
  10108. {
  10109. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10110. "preferred": true
  10111. }
  10112. ]
  10113. },
  10114. "require": {
  10115. "php": ">=7.3"
  10116. },
  10117. "require-dev": {
  10118. "phpunit/phpunit": "^9.3"
  10119. },
  10120. "type": "library",
  10121. "extra": {
  10122. "branch-alias": {
  10123. "dev-master": "2.0-dev"
  10124. }
  10125. },
  10126. "autoload": {
  10127. "classmap": [
  10128. "src/"
  10129. ]
  10130. },
  10131. "notification-url": "https://packagist.org/downloads/",
  10132. "license": [
  10133. "BSD-3-Clause"
  10134. ],
  10135. "authors": [
  10136. {
  10137. "name": "Sebastian Bergmann",
  10138. "email": "sebastian@phpunit.de"
  10139. }
  10140. ],
  10141. "description": "Looks up which function or method a line of code belongs to",
  10142. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10143. "support": {
  10144. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  10145. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  10146. },
  10147. "funding": [
  10148. {
  10149. "url": "https://github.com/sebastianbergmann",
  10150. "type": "github"
  10151. }
  10152. ],
  10153. "time": "2020-09-28T05:30:19+00:00"
  10154. },
  10155. {
  10156. "name": "sebastian/comparator",
  10157. "version": "4.0.8",
  10158. "source": {
  10159. "type": "git",
  10160. "url": "https://github.com/sebastianbergmann/comparator.git",
  10161. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  10162. },
  10163. "dist": {
  10164. "type": "zip",
  10165. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  10166. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  10167. "shasum": "",
  10168. "mirrors": [
  10169. {
  10170. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10171. "preferred": true
  10172. }
  10173. ]
  10174. },
  10175. "require": {
  10176. "php": ">=7.3",
  10177. "sebastian/diff": "^4.0",
  10178. "sebastian/exporter": "^4.0"
  10179. },
  10180. "require-dev": {
  10181. "phpunit/phpunit": "^9.3"
  10182. },
  10183. "type": "library",
  10184. "extra": {
  10185. "branch-alias": {
  10186. "dev-master": "4.0-dev"
  10187. }
  10188. },
  10189. "autoload": {
  10190. "classmap": [
  10191. "src/"
  10192. ]
  10193. },
  10194. "notification-url": "https://packagist.org/downloads/",
  10195. "license": [
  10196. "BSD-3-Clause"
  10197. ],
  10198. "authors": [
  10199. {
  10200. "name": "Sebastian Bergmann",
  10201. "email": "sebastian@phpunit.de"
  10202. },
  10203. {
  10204. "name": "Jeff Welch",
  10205. "email": "whatthejeff@gmail.com"
  10206. },
  10207. {
  10208. "name": "Volker Dusch",
  10209. "email": "github@wallbash.com"
  10210. },
  10211. {
  10212. "name": "Bernhard Schussek",
  10213. "email": "bschussek@2bepublished.at"
  10214. }
  10215. ],
  10216. "description": "Provides the functionality to compare PHP values for equality",
  10217. "homepage": "https://github.com/sebastianbergmann/comparator",
  10218. "keywords": [
  10219. "comparator",
  10220. "compare",
  10221. "equality"
  10222. ],
  10223. "support": {
  10224. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10225. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  10226. },
  10227. "funding": [
  10228. {
  10229. "url": "https://github.com/sebastianbergmann",
  10230. "type": "github"
  10231. }
  10232. ],
  10233. "time": "2022-09-14T12:41:17+00:00"
  10234. },
  10235. {
  10236. "name": "sebastian/complexity",
  10237. "version": "2.0.3",
  10238. "source": {
  10239. "type": "git",
  10240. "url": "https://github.com/sebastianbergmann/complexity.git",
  10241. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a"
  10242. },
  10243. "dist": {
  10244. "type": "zip",
  10245. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a",
  10246. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a",
  10247. "shasum": "",
  10248. "mirrors": [
  10249. {
  10250. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10251. "preferred": true
  10252. }
  10253. ]
  10254. },
  10255. "require": {
  10256. "nikic/php-parser": "^4.18 || ^5.0",
  10257. "php": ">=7.3"
  10258. },
  10259. "require-dev": {
  10260. "phpunit/phpunit": "^9.3"
  10261. },
  10262. "type": "library",
  10263. "extra": {
  10264. "branch-alias": {
  10265. "dev-master": "2.0-dev"
  10266. }
  10267. },
  10268. "autoload": {
  10269. "classmap": [
  10270. "src/"
  10271. ]
  10272. },
  10273. "notification-url": "https://packagist.org/downloads/",
  10274. "license": [
  10275. "BSD-3-Clause"
  10276. ],
  10277. "authors": [
  10278. {
  10279. "name": "Sebastian Bergmann",
  10280. "email": "sebastian@phpunit.de",
  10281. "role": "lead"
  10282. }
  10283. ],
  10284. "description": "Library for calculating the complexity of PHP code units",
  10285. "homepage": "https://github.com/sebastianbergmann/complexity",
  10286. "support": {
  10287. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  10288. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3"
  10289. },
  10290. "funding": [
  10291. {
  10292. "url": "https://github.com/sebastianbergmann",
  10293. "type": "github"
  10294. }
  10295. ],
  10296. "time": "2023-12-22T06:19:30+00:00"
  10297. },
  10298. {
  10299. "name": "sebastian/diff",
  10300. "version": "4.0.5",
  10301. "source": {
  10302. "type": "git",
  10303. "url": "https://github.com/sebastianbergmann/diff.git",
  10304. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131"
  10305. },
  10306. "dist": {
  10307. "type": "zip",
  10308. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  10309. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  10310. "shasum": "",
  10311. "mirrors": [
  10312. {
  10313. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10314. "preferred": true
  10315. }
  10316. ]
  10317. },
  10318. "require": {
  10319. "php": ">=7.3"
  10320. },
  10321. "require-dev": {
  10322. "phpunit/phpunit": "^9.3",
  10323. "symfony/process": "^4.2 || ^5"
  10324. },
  10325. "type": "library",
  10326. "extra": {
  10327. "branch-alias": {
  10328. "dev-master": "4.0-dev"
  10329. }
  10330. },
  10331. "autoload": {
  10332. "classmap": [
  10333. "src/"
  10334. ]
  10335. },
  10336. "notification-url": "https://packagist.org/downloads/",
  10337. "license": [
  10338. "BSD-3-Clause"
  10339. ],
  10340. "authors": [
  10341. {
  10342. "name": "Sebastian Bergmann",
  10343. "email": "sebastian@phpunit.de"
  10344. },
  10345. {
  10346. "name": "Kore Nordmann",
  10347. "email": "mail@kore-nordmann.de"
  10348. }
  10349. ],
  10350. "description": "Diff implementation",
  10351. "homepage": "https://github.com/sebastianbergmann/diff",
  10352. "keywords": [
  10353. "diff",
  10354. "udiff",
  10355. "unidiff",
  10356. "unified diff"
  10357. ],
  10358. "support": {
  10359. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10360. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.5"
  10361. },
  10362. "funding": [
  10363. {
  10364. "url": "https://github.com/sebastianbergmann",
  10365. "type": "github"
  10366. }
  10367. ],
  10368. "time": "2023-05-07T05:35:17+00:00"
  10369. },
  10370. {
  10371. "name": "sebastian/environment",
  10372. "version": "5.1.5",
  10373. "source": {
  10374. "type": "git",
  10375. "url": "https://github.com/sebastianbergmann/environment.git",
  10376. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  10377. },
  10378. "dist": {
  10379. "type": "zip",
  10380. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  10381. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  10382. "shasum": "",
  10383. "mirrors": [
  10384. {
  10385. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10386. "preferred": true
  10387. }
  10388. ]
  10389. },
  10390. "require": {
  10391. "php": ">=7.3"
  10392. },
  10393. "require-dev": {
  10394. "phpunit/phpunit": "^9.3"
  10395. },
  10396. "suggest": {
  10397. "ext-posix": "*"
  10398. },
  10399. "type": "library",
  10400. "extra": {
  10401. "branch-alias": {
  10402. "dev-master": "5.1-dev"
  10403. }
  10404. },
  10405. "autoload": {
  10406. "classmap": [
  10407. "src/"
  10408. ]
  10409. },
  10410. "notification-url": "https://packagist.org/downloads/",
  10411. "license": [
  10412. "BSD-3-Clause"
  10413. ],
  10414. "authors": [
  10415. {
  10416. "name": "Sebastian Bergmann",
  10417. "email": "sebastian@phpunit.de"
  10418. }
  10419. ],
  10420. "description": "Provides functionality to handle HHVM/PHP environments",
  10421. "homepage": "http://www.github.com/sebastianbergmann/environment",
  10422. "keywords": [
  10423. "Xdebug",
  10424. "environment",
  10425. "hhvm"
  10426. ],
  10427. "support": {
  10428. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10429. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  10430. },
  10431. "funding": [
  10432. {
  10433. "url": "https://github.com/sebastianbergmann",
  10434. "type": "github"
  10435. }
  10436. ],
  10437. "time": "2023-02-03T06:03:51+00:00"
  10438. },
  10439. {
  10440. "name": "sebastian/exporter",
  10441. "version": "4.0.5",
  10442. "source": {
  10443. "type": "git",
  10444. "url": "https://github.com/sebastianbergmann/exporter.git",
  10445. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d"
  10446. },
  10447. "dist": {
  10448. "type": "zip",
  10449. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  10450. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  10451. "shasum": "",
  10452. "mirrors": [
  10453. {
  10454. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10455. "preferred": true
  10456. }
  10457. ]
  10458. },
  10459. "require": {
  10460. "php": ">=7.3",
  10461. "sebastian/recursion-context": "^4.0"
  10462. },
  10463. "require-dev": {
  10464. "ext-mbstring": "*",
  10465. "phpunit/phpunit": "^9.3"
  10466. },
  10467. "type": "library",
  10468. "extra": {
  10469. "branch-alias": {
  10470. "dev-master": "4.0-dev"
  10471. }
  10472. },
  10473. "autoload": {
  10474. "classmap": [
  10475. "src/"
  10476. ]
  10477. },
  10478. "notification-url": "https://packagist.org/downloads/",
  10479. "license": [
  10480. "BSD-3-Clause"
  10481. ],
  10482. "authors": [
  10483. {
  10484. "name": "Sebastian Bergmann",
  10485. "email": "sebastian@phpunit.de"
  10486. },
  10487. {
  10488. "name": "Jeff Welch",
  10489. "email": "whatthejeff@gmail.com"
  10490. },
  10491. {
  10492. "name": "Volker Dusch",
  10493. "email": "github@wallbash.com"
  10494. },
  10495. {
  10496. "name": "Adam Harvey",
  10497. "email": "aharvey@php.net"
  10498. },
  10499. {
  10500. "name": "Bernhard Schussek",
  10501. "email": "bschussek@gmail.com"
  10502. }
  10503. ],
  10504. "description": "Provides the functionality to export PHP variables for visualization",
  10505. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10506. "keywords": [
  10507. "export",
  10508. "exporter"
  10509. ],
  10510. "support": {
  10511. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10512. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5"
  10513. },
  10514. "funding": [
  10515. {
  10516. "url": "https://github.com/sebastianbergmann",
  10517. "type": "github"
  10518. }
  10519. ],
  10520. "time": "2022-09-14T06:03:37+00:00"
  10521. },
  10522. {
  10523. "name": "sebastian/global-state",
  10524. "version": "5.0.6",
  10525. "source": {
  10526. "type": "git",
  10527. "url": "https://github.com/sebastianbergmann/global-state.git",
  10528. "reference": "bde739e7565280bda77be70044ac1047bc007e34"
  10529. },
  10530. "dist": {
  10531. "type": "zip",
  10532. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bde739e7565280bda77be70044ac1047bc007e34",
  10533. "reference": "bde739e7565280bda77be70044ac1047bc007e34",
  10534. "shasum": "",
  10535. "mirrors": [
  10536. {
  10537. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10538. "preferred": true
  10539. }
  10540. ]
  10541. },
  10542. "require": {
  10543. "php": ">=7.3",
  10544. "sebastian/object-reflector": "^2.0",
  10545. "sebastian/recursion-context": "^4.0"
  10546. },
  10547. "require-dev": {
  10548. "ext-dom": "*",
  10549. "phpunit/phpunit": "^9.3"
  10550. },
  10551. "suggest": {
  10552. "ext-uopz": "*"
  10553. },
  10554. "type": "library",
  10555. "extra": {
  10556. "branch-alias": {
  10557. "dev-master": "5.0-dev"
  10558. }
  10559. },
  10560. "autoload": {
  10561. "classmap": [
  10562. "src/"
  10563. ]
  10564. },
  10565. "notification-url": "https://packagist.org/downloads/",
  10566. "license": [
  10567. "BSD-3-Clause"
  10568. ],
  10569. "authors": [
  10570. {
  10571. "name": "Sebastian Bergmann",
  10572. "email": "sebastian@phpunit.de"
  10573. }
  10574. ],
  10575. "description": "Snapshotting of global state",
  10576. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  10577. "keywords": [
  10578. "global state"
  10579. ],
  10580. "support": {
  10581. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10582. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.6"
  10583. },
  10584. "funding": [
  10585. {
  10586. "url": "https://github.com/sebastianbergmann",
  10587. "type": "github"
  10588. }
  10589. ],
  10590. "time": "2023-08-02T09:26:13+00:00"
  10591. },
  10592. {
  10593. "name": "sebastian/lines-of-code",
  10594. "version": "1.0.x-dev",
  10595. "source": {
  10596. "type": "git",
  10597. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10598. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5"
  10599. },
  10600. "dist": {
  10601. "type": "zip",
  10602. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  10603. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  10604. "shasum": "",
  10605. "mirrors": [
  10606. {
  10607. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10608. "preferred": true
  10609. }
  10610. ]
  10611. },
  10612. "require": {
  10613. "nikic/php-parser": "^4.18 || ^5.0",
  10614. "php": ">=7.3"
  10615. },
  10616. "require-dev": {
  10617. "phpunit/phpunit": "^9.3"
  10618. },
  10619. "type": "library",
  10620. "extra": {
  10621. "branch-alias": {
  10622. "dev-master": "1.0-dev"
  10623. }
  10624. },
  10625. "autoload": {
  10626. "classmap": [
  10627. "src/"
  10628. ]
  10629. },
  10630. "notification-url": "https://packagist.org/downloads/",
  10631. "license": [
  10632. "BSD-3-Clause"
  10633. ],
  10634. "authors": [
  10635. {
  10636. "name": "Sebastian Bergmann",
  10637. "email": "sebastian@phpunit.de",
  10638. "role": "lead"
  10639. }
  10640. ],
  10641. "description": "Library for counting the lines of code in PHP source code",
  10642. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10643. "support": {
  10644. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10645. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4"
  10646. },
  10647. "funding": [
  10648. {
  10649. "url": "https://github.com/sebastianbergmann",
  10650. "type": "github"
  10651. }
  10652. ],
  10653. "time": "2023-12-22T06:20:34+00:00"
  10654. },
  10655. {
  10656. "name": "sebastian/object-enumerator",
  10657. "version": "4.0.4",
  10658. "source": {
  10659. "type": "git",
  10660. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10661. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  10662. },
  10663. "dist": {
  10664. "type": "zip",
  10665. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  10666. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  10667. "shasum": "",
  10668. "mirrors": [
  10669. {
  10670. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10671. "preferred": true
  10672. }
  10673. ]
  10674. },
  10675. "require": {
  10676. "php": ">=7.3",
  10677. "sebastian/object-reflector": "^2.0",
  10678. "sebastian/recursion-context": "^4.0"
  10679. },
  10680. "require-dev": {
  10681. "phpunit/phpunit": "^9.3"
  10682. },
  10683. "type": "library",
  10684. "extra": {
  10685. "branch-alias": {
  10686. "dev-master": "4.0-dev"
  10687. }
  10688. },
  10689. "autoload": {
  10690. "classmap": [
  10691. "src/"
  10692. ]
  10693. },
  10694. "notification-url": "https://packagist.org/downloads/",
  10695. "license": [
  10696. "BSD-3-Clause"
  10697. ],
  10698. "authors": [
  10699. {
  10700. "name": "Sebastian Bergmann",
  10701. "email": "sebastian@phpunit.de"
  10702. }
  10703. ],
  10704. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10705. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10706. "support": {
  10707. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10708. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  10709. },
  10710. "funding": [
  10711. {
  10712. "url": "https://github.com/sebastianbergmann",
  10713. "type": "github"
  10714. }
  10715. ],
  10716. "time": "2020-10-26T13:12:34+00:00"
  10717. },
  10718. {
  10719. "name": "sebastian/object-reflector",
  10720. "version": "2.0.4",
  10721. "source": {
  10722. "type": "git",
  10723. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10724. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  10725. },
  10726. "dist": {
  10727. "type": "zip",
  10728. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10729. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10730. "shasum": "",
  10731. "mirrors": [
  10732. {
  10733. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10734. "preferred": true
  10735. }
  10736. ]
  10737. },
  10738. "require": {
  10739. "php": ">=7.3"
  10740. },
  10741. "require-dev": {
  10742. "phpunit/phpunit": "^9.3"
  10743. },
  10744. "type": "library",
  10745. "extra": {
  10746. "branch-alias": {
  10747. "dev-master": "2.0-dev"
  10748. }
  10749. },
  10750. "autoload": {
  10751. "classmap": [
  10752. "src/"
  10753. ]
  10754. },
  10755. "notification-url": "https://packagist.org/downloads/",
  10756. "license": [
  10757. "BSD-3-Clause"
  10758. ],
  10759. "authors": [
  10760. {
  10761. "name": "Sebastian Bergmann",
  10762. "email": "sebastian@phpunit.de"
  10763. }
  10764. ],
  10765. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10766. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10767. "support": {
  10768. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10769. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  10770. },
  10771. "funding": [
  10772. {
  10773. "url": "https://github.com/sebastianbergmann",
  10774. "type": "github"
  10775. }
  10776. ],
  10777. "time": "2020-10-26T13:14:26+00:00"
  10778. },
  10779. {
  10780. "name": "sebastian/recursion-context",
  10781. "version": "4.0.5",
  10782. "source": {
  10783. "type": "git",
  10784. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10785. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  10786. },
  10787. "dist": {
  10788. "type": "zip",
  10789. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10790. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10791. "shasum": "",
  10792. "mirrors": [
  10793. {
  10794. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10795. "preferred": true
  10796. }
  10797. ]
  10798. },
  10799. "require": {
  10800. "php": ">=7.3"
  10801. },
  10802. "require-dev": {
  10803. "phpunit/phpunit": "^9.3"
  10804. },
  10805. "type": "library",
  10806. "extra": {
  10807. "branch-alias": {
  10808. "dev-master": "4.0-dev"
  10809. }
  10810. },
  10811. "autoload": {
  10812. "classmap": [
  10813. "src/"
  10814. ]
  10815. },
  10816. "notification-url": "https://packagist.org/downloads/",
  10817. "license": [
  10818. "BSD-3-Clause"
  10819. ],
  10820. "authors": [
  10821. {
  10822. "name": "Sebastian Bergmann",
  10823. "email": "sebastian@phpunit.de"
  10824. },
  10825. {
  10826. "name": "Jeff Welch",
  10827. "email": "whatthejeff@gmail.com"
  10828. },
  10829. {
  10830. "name": "Adam Harvey",
  10831. "email": "aharvey@php.net"
  10832. }
  10833. ],
  10834. "description": "Provides functionality to recursively process PHP variables",
  10835. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10836. "support": {
  10837. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10838. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  10839. },
  10840. "funding": [
  10841. {
  10842. "url": "https://github.com/sebastianbergmann",
  10843. "type": "github"
  10844. }
  10845. ],
  10846. "time": "2023-02-03T06:07:39+00:00"
  10847. },
  10848. {
  10849. "name": "sebastian/resource-operations",
  10850. "version": "3.0.3",
  10851. "source": {
  10852. "type": "git",
  10853. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10854. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  10855. },
  10856. "dist": {
  10857. "type": "zip",
  10858. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  10859. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  10860. "shasum": "",
  10861. "mirrors": [
  10862. {
  10863. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10864. "preferred": true
  10865. }
  10866. ]
  10867. },
  10868. "require": {
  10869. "php": ">=7.3"
  10870. },
  10871. "require-dev": {
  10872. "phpunit/phpunit": "^9.0"
  10873. },
  10874. "type": "library",
  10875. "extra": {
  10876. "branch-alias": {
  10877. "dev-master": "3.0-dev"
  10878. }
  10879. },
  10880. "autoload": {
  10881. "classmap": [
  10882. "src/"
  10883. ]
  10884. },
  10885. "notification-url": "https://packagist.org/downloads/",
  10886. "license": [
  10887. "BSD-3-Clause"
  10888. ],
  10889. "authors": [
  10890. {
  10891. "name": "Sebastian Bergmann",
  10892. "email": "sebastian@phpunit.de"
  10893. }
  10894. ],
  10895. "description": "Provides a list of PHP built-in functions that operate on resources",
  10896. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10897. "support": {
  10898. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  10899. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  10900. },
  10901. "funding": [
  10902. {
  10903. "url": "https://github.com/sebastianbergmann",
  10904. "type": "github"
  10905. }
  10906. ],
  10907. "time": "2020-09-28T06:45:17+00:00"
  10908. },
  10909. {
  10910. "name": "sebastian/type",
  10911. "version": "3.2.1",
  10912. "source": {
  10913. "type": "git",
  10914. "url": "https://github.com/sebastianbergmann/type.git",
  10915. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  10916. },
  10917. "dist": {
  10918. "type": "zip",
  10919. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10920. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10921. "shasum": "",
  10922. "mirrors": [
  10923. {
  10924. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10925. "preferred": true
  10926. }
  10927. ]
  10928. },
  10929. "require": {
  10930. "php": ">=7.3"
  10931. },
  10932. "require-dev": {
  10933. "phpunit/phpunit": "^9.5"
  10934. },
  10935. "type": "library",
  10936. "extra": {
  10937. "branch-alias": {
  10938. "dev-master": "3.2-dev"
  10939. }
  10940. },
  10941. "autoload": {
  10942. "classmap": [
  10943. "src/"
  10944. ]
  10945. },
  10946. "notification-url": "https://packagist.org/downloads/",
  10947. "license": [
  10948. "BSD-3-Clause"
  10949. ],
  10950. "authors": [
  10951. {
  10952. "name": "Sebastian Bergmann",
  10953. "email": "sebastian@phpunit.de",
  10954. "role": "lead"
  10955. }
  10956. ],
  10957. "description": "Collection of value objects that represent the types of the PHP type system",
  10958. "homepage": "https://github.com/sebastianbergmann/type",
  10959. "support": {
  10960. "issues": "https://github.com/sebastianbergmann/type/issues",
  10961. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  10962. },
  10963. "funding": [
  10964. {
  10965. "url": "https://github.com/sebastianbergmann",
  10966. "type": "github"
  10967. }
  10968. ],
  10969. "time": "2023-02-03T06:13:03+00:00"
  10970. },
  10971. {
  10972. "name": "sebastian/version",
  10973. "version": "3.0.2",
  10974. "source": {
  10975. "type": "git",
  10976. "url": "https://github.com/sebastianbergmann/version.git",
  10977. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  10978. },
  10979. "dist": {
  10980. "type": "zip",
  10981. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  10982. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  10983. "shasum": "",
  10984. "mirrors": [
  10985. {
  10986. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10987. "preferred": true
  10988. }
  10989. ]
  10990. },
  10991. "require": {
  10992. "php": ">=7.3"
  10993. },
  10994. "type": "library",
  10995. "extra": {
  10996. "branch-alias": {
  10997. "dev-master": "3.0-dev"
  10998. }
  10999. },
  11000. "autoload": {
  11001. "classmap": [
  11002. "src/"
  11003. ]
  11004. },
  11005. "notification-url": "https://packagist.org/downloads/",
  11006. "license": [
  11007. "BSD-3-Clause"
  11008. ],
  11009. "authors": [
  11010. {
  11011. "name": "Sebastian Bergmann",
  11012. "email": "sebastian@phpunit.de",
  11013. "role": "lead"
  11014. }
  11015. ],
  11016. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  11017. "homepage": "https://github.com/sebastianbergmann/version",
  11018. "support": {
  11019. "issues": "https://github.com/sebastianbergmann/version/issues",
  11020. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  11021. },
  11022. "funding": [
  11023. {
  11024. "url": "https://github.com/sebastianbergmann",
  11025. "type": "github"
  11026. }
  11027. ],
  11028. "time": "2020-09-28T06:39:44+00:00"
  11029. },
  11030. {
  11031. "name": "theseer/tokenizer",
  11032. "version": "1.2.1",
  11033. "source": {
  11034. "type": "git",
  11035. "url": "https://github.com/theseer/tokenizer.git",
  11036. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  11037. },
  11038. "dist": {
  11039. "type": "zip",
  11040. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  11041. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  11042. "shasum": "",
  11043. "mirrors": [
  11044. {
  11045. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11046. "preferred": true
  11047. }
  11048. ]
  11049. },
  11050. "require": {
  11051. "ext-dom": "*",
  11052. "ext-tokenizer": "*",
  11053. "ext-xmlwriter": "*",
  11054. "php": "^7.2 || ^8.0"
  11055. },
  11056. "type": "library",
  11057. "autoload": {
  11058. "classmap": [
  11059. "src/"
  11060. ]
  11061. },
  11062. "notification-url": "https://packagist.org/downloads/",
  11063. "license": [
  11064. "BSD-3-Clause"
  11065. ],
  11066. "authors": [
  11067. {
  11068. "name": "Arne Blankerts",
  11069. "email": "arne@blankerts.de",
  11070. "role": "Developer"
  11071. }
  11072. ],
  11073. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11074. "support": {
  11075. "issues": "https://github.com/theseer/tokenizer/issues",
  11076. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  11077. },
  11078. "funding": [
  11079. {
  11080. "url": "https://github.com/theseer",
  11081. "type": "github"
  11082. }
  11083. ],
  11084. "time": "2021-07-28T10:34:58+00:00"
  11085. }
  11086. ],
  11087. "aliases": [],
  11088. "minimum-stability": "dev",
  11089. "stability-flags": {},
  11090. "prefer-stable": true,
  11091. "prefer-lowest": false,
  11092. "platform": {
  11093. "php": "^7.3|^8.0"
  11094. },
  11095. "platform-dev": {},
  11096. "plugin-api-version": "2.6.0"
  11097. }