composer.lock 401 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184
  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": "fb6f6cfd048b059f09e6fabf89eaa3d4",
  8. "packages": [
  9. {
  10. "name": "adbario/php-dot-notation",
  11. "version": "2.5.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/adbario/php-dot-notation.git",
  15. "reference": "081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/adbario/php-dot-notation/zipball/081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae",
  20. "reference": "081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "ext-json": "*",
  25. "php": "^5.5 || ^7.0 || ^8.0"
  26. },
  27. "require-dev": {
  28. "phpunit/phpunit": "^4.8|^5.7|^6.6|^7.5|^8.5|^9.5",
  29. "squizlabs/php_codesniffer": "^3.6"
  30. },
  31. "type": "library",
  32. "autoload": {
  33. "files": [
  34. "src/helpers.php"
  35. ],
  36. "psr-4": {
  37. "Adbar\\": "src"
  38. }
  39. },
  40. "notification-url": "https://packagist.org/downloads/",
  41. "license": [
  42. "MIT"
  43. ],
  44. "authors": [
  45. {
  46. "name": "Riku Särkinen",
  47. "email": "riku@adbar.io"
  48. }
  49. ],
  50. "description": "PHP dot notation access to arrays",
  51. "homepage": "https://github.com/adbario/php-dot-notation",
  52. "keywords": [
  53. "ArrayAccess",
  54. "dotnotation"
  55. ],
  56. "support": {
  57. "issues": "https://github.com/adbario/php-dot-notation/issues",
  58. "source": "https://github.com/adbario/php-dot-notation/tree/2.5.0"
  59. },
  60. "time": "2022-10-14T20:31:46+00:00"
  61. },
  62. {
  63. "name": "alibabacloud/client",
  64. "version": "1.5.32",
  65. "source": {
  66. "type": "git",
  67. "url": "https://github.com/aliyun/openapi-sdk-php-client.git",
  68. "reference": "5bc6f6d660797dcee2c3aef29700ab41ee764f4d"
  69. },
  70. "dist": {
  71. "type": "zip",
  72. "url": "https://api.github.com/repos/aliyun/openapi-sdk-php-client/zipball/5bc6f6d660797dcee2c3aef29700ab41ee764f4d",
  73. "reference": "5bc6f6d660797dcee2c3aef29700ab41ee764f4d",
  74. "shasum": ""
  75. },
  76. "require": {
  77. "adbario/php-dot-notation": "^2.4.1",
  78. "clagiordano/weblibs-configmanager": "^1.0",
  79. "ext-curl": "*",
  80. "ext-json": "*",
  81. "ext-libxml": "*",
  82. "ext-mbstring": "*",
  83. "ext-openssl": "*",
  84. "ext-simplexml": "*",
  85. "ext-xmlwriter": "*",
  86. "guzzlehttp/guzzle": "^6.3|^7.0",
  87. "mtdowling/jmespath.php": "^2.5",
  88. "php": ">=5.5"
  89. },
  90. "require-dev": {
  91. "composer/composer": "^1.8",
  92. "drupal/coder": "^8.3",
  93. "ext-dom": "*",
  94. "ext-pcre": "*",
  95. "ext-sockets": "*",
  96. "ext-spl": "*",
  97. "league/climate": "^3.2.4",
  98. "mikey179/vfsstream": "^1.6",
  99. "monolog/monolog": "^1.24",
  100. "phpunit/phpunit": "^5.7|^6.6|^7.5|^8.5|^9.5",
  101. "psr/cache": "^1.0",
  102. "symfony/dotenv": "^3.4",
  103. "symfony/var-dumper": "^3.4"
  104. },
  105. "suggest": {
  106. "ext-sockets": "To use client-side monitoring"
  107. },
  108. "type": "library",
  109. "autoload": {
  110. "files": [
  111. "src/Functions.php"
  112. ],
  113. "psr-4": {
  114. "AlibabaCloud\\Client\\": "src"
  115. }
  116. },
  117. "notification-url": "https://packagist.org/downloads/",
  118. "license": [
  119. "Apache-2.0"
  120. ],
  121. "authors": [
  122. {
  123. "name": "Alibaba Cloud SDK",
  124. "email": "sdk-team@alibabacloud.com",
  125. "homepage": "http://www.alibabacloud.com"
  126. }
  127. ],
  128. "description": "Alibaba Cloud Client for PHP - Use Alibaba Cloud in your PHP project",
  129. "homepage": "https://www.alibabacloud.com/",
  130. "keywords": [
  131. "alibaba",
  132. "alibabacloud",
  133. "aliyun",
  134. "client",
  135. "cloud",
  136. "library",
  137. "sdk",
  138. "tool"
  139. ],
  140. "support": {
  141. "issues": "https://github.com/aliyun/openapi-sdk-php-client/issues",
  142. "source": "https://github.com/aliyun/openapi-sdk-php-client"
  143. },
  144. "time": "2022-12-09T04:05:55+00:00"
  145. },
  146. {
  147. "name": "alibabacloud/credentials",
  148. "version": "1.1.5",
  149. "source": {
  150. "type": "git",
  151. "url": "https://github.com/aliyun/credentials-php.git",
  152. "reference": "1d8383ceef695974a88a3859c42e235fd2e3981a"
  153. },
  154. "dist": {
  155. "type": "zip",
  156. "url": "https://api.github.com/repos/aliyun/credentials-php/zipball/1d8383ceef695974a88a3859c42e235fd2e3981a",
  157. "reference": "1d8383ceef695974a88a3859c42e235fd2e3981a",
  158. "shasum": ""
  159. },
  160. "require": {
  161. "adbario/php-dot-notation": "^2.2",
  162. "alibabacloud/tea": "^3.0",
  163. "ext-curl": "*",
  164. "ext-json": "*",
  165. "ext-libxml": "*",
  166. "ext-mbstring": "*",
  167. "ext-openssl": "*",
  168. "ext-simplexml": "*",
  169. "ext-xmlwriter": "*",
  170. "guzzlehttp/guzzle": "^6.3|^7.0",
  171. "php": ">=5.6"
  172. },
  173. "require-dev": {
  174. "composer/composer": "^1.8",
  175. "drupal/coder": "^8.3",
  176. "ext-dom": "*",
  177. "ext-pcre": "*",
  178. "ext-sockets": "*",
  179. "ext-spl": "*",
  180. "mikey179/vfsstream": "^1.6",
  181. "monolog/monolog": "^1.24",
  182. "phpunit/phpunit": "^5.7|^6.6|^7.5",
  183. "psr/cache": "^1.0",
  184. "symfony/dotenv": "^3.4",
  185. "symfony/var-dumper": "^3.4"
  186. },
  187. "suggest": {
  188. "ext-sockets": "To use client-side monitoring"
  189. },
  190. "type": "library",
  191. "autoload": {
  192. "psr-4": {
  193. "AlibabaCloud\\Credentials\\": "src"
  194. }
  195. },
  196. "notification-url": "https://packagist.org/downloads/",
  197. "license": [
  198. "Apache-2.0"
  199. ],
  200. "authors": [
  201. {
  202. "name": "Alibaba Cloud SDK",
  203. "email": "sdk-team@alibabacloud.com",
  204. "homepage": "http://www.alibabacloud.com"
  205. }
  206. ],
  207. "description": "Alibaba Cloud Credentials for PHP",
  208. "homepage": "https://www.alibabacloud.com/",
  209. "keywords": [
  210. "alibaba",
  211. "alibabacloud",
  212. "aliyun",
  213. "client",
  214. "cloud",
  215. "credentials",
  216. "library",
  217. "sdk",
  218. "tool"
  219. ],
  220. "support": {
  221. "issues": "https://github.com/aliyun/credentials-php/issues",
  222. "source": "https://github.com/aliyun/credentials-php"
  223. },
  224. "time": "2023-04-11T02:12:12+00:00"
  225. },
  226. {
  227. "name": "alibabacloud/darabonba-openapi",
  228. "version": "0.2.10",
  229. "source": {
  230. "type": "git",
  231. "url": "https://github.com/alibabacloud-sdk-php/darabonba-openapi.git",
  232. "reference": "88f42443e1b5c9d086d0444baa4a874f8636f7bb"
  233. },
  234. "dist": {
  235. "type": "zip",
  236. "url": "https://api.github.com/repos/alibabacloud-sdk-php/darabonba-openapi/zipball/88f42443e1b5c9d086d0444baa4a874f8636f7bb",
  237. "reference": "88f42443e1b5c9d086d0444baa4a874f8636f7bb",
  238. "shasum": ""
  239. },
  240. "require": {
  241. "alibabacloud/credentials": "^1.1",
  242. "alibabacloud/gateway-spi": "^1",
  243. "alibabacloud/openapi-util": "^0.1.10|^0.2.1",
  244. "alibabacloud/tea-utils": "^0.2.19",
  245. "alibabacloud/tea-xml": "^0.2",
  246. "php": ">5.5"
  247. },
  248. "type": "library",
  249. "autoload": {
  250. "psr-4": {
  251. "Darabonba\\OpenApi\\": "src"
  252. }
  253. },
  254. "notification-url": "https://packagist.org/downloads/",
  255. "license": [
  256. "Apache-2.0"
  257. ],
  258. "authors": [
  259. {
  260. "name": "Alibaba Cloud SDK",
  261. "email": "sdk-team@alibabacloud.com"
  262. }
  263. ],
  264. "description": "Alibaba Cloud OpenApi Client",
  265. "support": {
  266. "issues": "https://github.com/alibabacloud-sdk-php/darabonba-openapi/issues",
  267. "source": "https://github.com/alibabacloud-sdk-php/darabonba-openapi/tree/0.2.10"
  268. },
  269. "time": "2023-11-23T07:01:20+00:00"
  270. },
  271. {
  272. "name": "alibabacloud/dm-20151123",
  273. "version": "1.0.9",
  274. "source": {
  275. "type": "git",
  276. "url": "https://github.com/alibabacloud-sdk-php/dm-20151123.git",
  277. "reference": "b167d114543dcde5cf70afc893844b47087415e2"
  278. },
  279. "dist": {
  280. "type": "zip",
  281. "url": "https://api.github.com/repos/alibabacloud-sdk-php/dm-20151123/zipball/b167d114543dcde5cf70afc893844b47087415e2",
  282. "reference": "b167d114543dcde5cf70afc893844b47087415e2",
  283. "shasum": ""
  284. },
  285. "require": {
  286. "alibabacloud/darabonba-openapi": "^0.2.10",
  287. "alibabacloud/endpoint-util": "^0.1.0",
  288. "alibabacloud/openapi-util": "^0.1.10|^0.2.1",
  289. "alibabacloud/tea-utils": "^0.2.19",
  290. "php": ">5.5"
  291. },
  292. "type": "library",
  293. "autoload": {
  294. "psr-4": {
  295. "AlibabaCloud\\SDK\\Dm\\V20151123\\": "src"
  296. }
  297. },
  298. "notification-url": "https://packagist.org/downloads/",
  299. "license": [
  300. "Apache-2.0"
  301. ],
  302. "authors": [
  303. {
  304. "name": "Alibaba Cloud SDK",
  305. "email": "sdk-team@alibabacloud.com"
  306. }
  307. ],
  308. "description": "Alibaba Cloud Dm (20151123) SDK Library for PHP",
  309. "support": {
  310. "source": "https://github.com/alibabacloud-sdk-php/dm-20151123/tree/1.0.9"
  311. },
  312. "time": "2024-01-15T17:08:44+00:00"
  313. },
  314. {
  315. "name": "alibabacloud/dm-20170622",
  316. "version": "1.2.0",
  317. "source": {
  318. "type": "git",
  319. "url": "https://github.com/alibabacloud-sdk-php/dm-20170622.git",
  320. "reference": "cf41389081797e75e8f5c430ec24df64ffc2c67d"
  321. },
  322. "dist": {
  323. "type": "zip",
  324. "url": "https://api.github.com/repos/alibabacloud-sdk-php/dm-20170622/zipball/cf41389081797e75e8f5c430ec24df64ffc2c67d",
  325. "reference": "cf41389081797e75e8f5c430ec24df64ffc2c67d",
  326. "shasum": "",
  327. "mirrors": [
  328. {
  329. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  330. "preferred": true
  331. }
  332. ]
  333. },
  334. "require": {
  335. "alibabacloud/darabonba-openapi": "^0.2.10",
  336. "alibabacloud/endpoint-util": "^0.1.0",
  337. "alibabacloud/openapi-util": "^0.1.10|^0.2.1",
  338. "alibabacloud/tea-utils": "^0.2.19",
  339. "php": ">5.5"
  340. },
  341. "type": "library",
  342. "autoload": {
  343. "psr-4": {
  344. "AlibabaCloud\\SDK\\Dm\\V20170622\\": "src"
  345. }
  346. },
  347. "notification-url": "https://packagist.org/downloads/",
  348. "license": [
  349. "Apache-2.0"
  350. ],
  351. "authors": [
  352. {
  353. "name": "Alibaba Cloud SDK",
  354. "email": "sdk-team@alibabacloud.com"
  355. }
  356. ],
  357. "description": "Alibaba Cloud Dm (20170622) SDK Library for PHP",
  358. "support": {
  359. "source": "https://github.com/alibabacloud-sdk-php/dm-20170622/tree/1.2.0"
  360. },
  361. "time": "2024-01-15T17:09:47+00:00"
  362. },
  363. {
  364. "name": "alibabacloud/dysmsapi-20170525",
  365. "version": "2.0.24",
  366. "source": {
  367. "type": "git",
  368. "url": "https://github.com/alibabacloud-sdk-php/Dysmsapi-20170525.git",
  369. "reference": "75d8a8c7259f53e58ba3330e004150841be6010d"
  370. },
  371. "dist": {
  372. "type": "zip",
  373. "url": "https://api.github.com/repos/alibabacloud-sdk-php/Dysmsapi-20170525/zipball/75d8a8c7259f53e58ba3330e004150841be6010d",
  374. "reference": "75d8a8c7259f53e58ba3330e004150841be6010d",
  375. "shasum": ""
  376. },
  377. "require": {
  378. "alibabacloud/darabonba-openapi": "^0.2.8",
  379. "alibabacloud/endpoint-util": "^0.1.0",
  380. "alibabacloud/openapi-util": "^0.1.10|^0.2.1",
  381. "alibabacloud/tea-utils": "^0.2.19",
  382. "php": ">5.5"
  383. },
  384. "type": "library",
  385. "autoload": {
  386. "psr-4": {
  387. "AlibabaCloud\\SDK\\Dysmsapi\\V20170525\\": "src"
  388. }
  389. },
  390. "notification-url": "https://packagist.org/downloads/",
  391. "license": [
  392. "Apache-2.0"
  393. ],
  394. "authors": [
  395. {
  396. "name": "Alibaba Cloud SDK",
  397. "email": "sdk-team@alibabacloud.com"
  398. }
  399. ],
  400. "description": "Alibaba Cloud Dysmsapi (20170525) SDK Library for PHP",
  401. "support": {
  402. "source": "https://github.com/alibabacloud-sdk-php/Dysmsapi-20170525/tree/2.0.24"
  403. },
  404. "time": "2023-07-04T11:32:11+00:00"
  405. },
  406. {
  407. "name": "alibabacloud/endpoint-util",
  408. "version": "0.1.1",
  409. "source": {
  410. "type": "git",
  411. "url": "https://github.com/alibabacloud-sdk-php/endpoint-util.git",
  412. "reference": "f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5"
  413. },
  414. "dist": {
  415. "type": "zip",
  416. "url": "https://api.github.com/repos/alibabacloud-sdk-php/endpoint-util/zipball/f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5",
  417. "reference": "f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5",
  418. "shasum": ""
  419. },
  420. "require": {
  421. "php": ">5.5"
  422. },
  423. "require-dev": {
  424. "phpunit/phpunit": "^4.8.35|^5.4.3"
  425. },
  426. "type": "library",
  427. "autoload": {
  428. "psr-4": {
  429. "AlibabaCloud\\Endpoint\\": "src"
  430. }
  431. },
  432. "notification-url": "https://packagist.org/downloads/",
  433. "license": [
  434. "Apache-2.0"
  435. ],
  436. "authors": [
  437. {
  438. "name": "Alibaba Cloud SDK",
  439. "email": "sdk-team@alibabacloud.com"
  440. }
  441. ],
  442. "description": "Alibaba Cloud Endpoint Library for PHP",
  443. "support": {
  444. "source": "https://github.com/alibabacloud-sdk-php/endpoint-util/tree/0.1.1"
  445. },
  446. "time": "2020-06-04T10:57:15+00:00"
  447. },
  448. {
  449. "name": "alibabacloud/gateway-spi",
  450. "version": "1.0.0",
  451. "source": {
  452. "type": "git",
  453. "url": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi.git",
  454. "reference": "7440f77750c329d8ab252db1d1d967314ccd1fcb"
  455. },
  456. "dist": {
  457. "type": "zip",
  458. "url": "https://api.github.com/repos/alibabacloud-sdk-php/alibabacloud-gateway-spi/zipball/7440f77750c329d8ab252db1d1d967314ccd1fcb",
  459. "reference": "7440f77750c329d8ab252db1d1d967314ccd1fcb",
  460. "shasum": ""
  461. },
  462. "require": {
  463. "alibabacloud/credentials": "^1.1",
  464. "php": ">5.5"
  465. },
  466. "type": "library",
  467. "autoload": {
  468. "psr-4": {
  469. "Darabonba\\GatewaySpi\\": "src"
  470. }
  471. },
  472. "notification-url": "https://packagist.org/downloads/",
  473. "license": [
  474. "Apache-2.0"
  475. ],
  476. "authors": [
  477. {
  478. "name": "Alibaba Cloud SDK",
  479. "email": "sdk-team@alibabacloud.com"
  480. }
  481. ],
  482. "description": "Alibaba Cloud Gateway SPI Client",
  483. "support": {
  484. "source": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi/tree/1.0.0"
  485. },
  486. "time": "2022-07-14T05:31:35+00:00"
  487. },
  488. {
  489. "name": "alibabacloud/live",
  490. "version": "1.8.958",
  491. "source": {
  492. "type": "git",
  493. "url": "https://github.com/alibabacloud-sdk-php/live.git",
  494. "reference": "2dc756e9e156cb33bc1287d28fc3fade87e4ae60"
  495. },
  496. "dist": {
  497. "type": "zip",
  498. "url": "https://api.github.com/repos/alibabacloud-sdk-php/live/zipball/2dc756e9e156cb33bc1287d28fc3fade87e4ae60",
  499. "reference": "2dc756e9e156cb33bc1287d28fc3fade87e4ae60",
  500. "shasum": ""
  501. },
  502. "require": {
  503. "alibabacloud/client": "^1.5",
  504. "php": ">=5.5"
  505. },
  506. "type": "library",
  507. "autoload": {
  508. "psr-4": {
  509. "AlibabaCloud\\Live\\": ""
  510. }
  511. },
  512. "notification-url": "https://packagist.org/downloads/",
  513. "license": [
  514. "Apache-2.0"
  515. ],
  516. "authors": [
  517. {
  518. "name": "Alibaba Cloud SDK",
  519. "email": "sdk-team@alibabacloud.com",
  520. "homepage": "http://www.alibabacloud.com"
  521. }
  522. ],
  523. "description": "Alibaba Cloud Live SDK for PHP",
  524. "homepage": "https://www.alibabacloud.com/",
  525. "keywords": [
  526. "alibaba",
  527. "alibabacloud",
  528. "aliyun",
  529. "cloud",
  530. "library",
  531. "live",
  532. "sdk"
  533. ],
  534. "support": {
  535. "issues": "https://github.com/alibabacloud-sdk-php/live/issues",
  536. "source": "https://github.com/alibabacloud-sdk-php/live"
  537. },
  538. "time": "2021-04-29T09:14:45+00:00"
  539. },
  540. {
  541. "name": "alibabacloud/openapi-util",
  542. "version": "0.2.1",
  543. "source": {
  544. "type": "git",
  545. "url": "https://github.com/alibabacloud-sdk-php/openapi-util.git",
  546. "reference": "f31f7bcd835e08ca24b6b8ba33637eb4eceb093a"
  547. },
  548. "dist": {
  549. "type": "zip",
  550. "url": "https://api.github.com/repos/alibabacloud-sdk-php/openapi-util/zipball/f31f7bcd835e08ca24b6b8ba33637eb4eceb093a",
  551. "reference": "f31f7bcd835e08ca24b6b8ba33637eb4eceb093a",
  552. "shasum": ""
  553. },
  554. "require": {
  555. "alibabacloud/tea": "^3.1",
  556. "alibabacloud/tea-utils": "^0.2",
  557. "lizhichao/one-sm": "^1.5",
  558. "php": ">5.5"
  559. },
  560. "require-dev": {
  561. "phpunit/phpunit": "*"
  562. },
  563. "type": "library",
  564. "autoload": {
  565. "psr-4": {
  566. "AlibabaCloud\\OpenApiUtil\\": "src"
  567. }
  568. },
  569. "notification-url": "https://packagist.org/downloads/",
  570. "license": [
  571. "Apache-2.0"
  572. ],
  573. "authors": [
  574. {
  575. "name": "Alibaba Cloud SDK",
  576. "email": "sdk-team@alibabacloud.com"
  577. }
  578. ],
  579. "description": "Alibaba Cloud OpenApi Util",
  580. "support": {
  581. "issues": "https://github.com/alibabacloud-sdk-php/openapi-util/issues",
  582. "source": "https://github.com/alibabacloud-sdk-php/openapi-util/tree/0.2.1"
  583. },
  584. "time": "2023-01-10T09:10:10+00:00"
  585. },
  586. {
  587. "name": "alibabacloud/tea",
  588. "version": "3.2.1",
  589. "source": {
  590. "type": "git",
  591. "url": "https://github.com/aliyun/tea-php.git",
  592. "reference": "1619cb96c158384f72b873e1f85de8b299c9c367"
  593. },
  594. "dist": {
  595. "type": "zip",
  596. "url": "https://api.github.com/repos/aliyun/tea-php/zipball/1619cb96c158384f72b873e1f85de8b299c9c367",
  597. "reference": "1619cb96c158384f72b873e1f85de8b299c9c367",
  598. "shasum": ""
  599. },
  600. "require": {
  601. "adbario/php-dot-notation": "^2.4",
  602. "ext-curl": "*",
  603. "ext-json": "*",
  604. "ext-libxml": "*",
  605. "ext-mbstring": "*",
  606. "ext-openssl": "*",
  607. "ext-simplexml": "*",
  608. "ext-xmlwriter": "*",
  609. "guzzlehttp/guzzle": "^6.3|^7.0",
  610. "php": ">=5.5"
  611. },
  612. "require-dev": {
  613. "phpunit/phpunit": "*",
  614. "symfony/dotenv": "^3.4",
  615. "symfony/var-dumper": "^3.4"
  616. },
  617. "suggest": {
  618. "ext-sockets": "To use client-side monitoring"
  619. },
  620. "type": "library",
  621. "autoload": {
  622. "psr-4": {
  623. "AlibabaCloud\\Tea\\": "src"
  624. }
  625. },
  626. "notification-url": "https://packagist.org/downloads/",
  627. "license": [
  628. "Apache-2.0"
  629. ],
  630. "authors": [
  631. {
  632. "name": "Alibaba Cloud SDK",
  633. "email": "sdk-team@alibabacloud.com",
  634. "homepage": "http://www.alibabacloud.com"
  635. }
  636. ],
  637. "description": "Client of Tea for PHP",
  638. "homepage": "https://www.alibabacloud.com/",
  639. "keywords": [
  640. "alibabacloud",
  641. "client",
  642. "cloud",
  643. "tea"
  644. ],
  645. "support": {
  646. "issues": "https://github.com/aliyun/tea-php/issues",
  647. "source": "https://github.com/aliyun/tea-php"
  648. },
  649. "time": "2023-05-16T06:43:41+00:00"
  650. },
  651. {
  652. "name": "alibabacloud/tea-utils",
  653. "version": "0.2.19",
  654. "source": {
  655. "type": "git",
  656. "url": "https://github.com/alibabacloud-sdk-php/tea-utils.git",
  657. "reference": "8dfc1a93e9415818e93a621b644abbb84981aea4"
  658. },
  659. "dist": {
  660. "type": "zip",
  661. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-utils/zipball/8dfc1a93e9415818e93a621b644abbb84981aea4",
  662. "reference": "8dfc1a93e9415818e93a621b644abbb84981aea4",
  663. "shasum": ""
  664. },
  665. "require": {
  666. "alibabacloud/tea": "^3.1",
  667. "php": ">5.5"
  668. },
  669. "type": "library",
  670. "autoload": {
  671. "psr-4": {
  672. "AlibabaCloud\\Tea\\Utils\\": "src"
  673. }
  674. },
  675. "notification-url": "https://packagist.org/downloads/",
  676. "license": [
  677. "Apache-2.0"
  678. ],
  679. "authors": [
  680. {
  681. "name": "Alibaba Cloud SDK",
  682. "email": "sdk-team@alibabacloud.com"
  683. }
  684. ],
  685. "description": "Alibaba Cloud Tea Utils for PHP",
  686. "support": {
  687. "issues": "https://github.com/aliyun/tea-util/issues",
  688. "source": "https://github.com/aliyun/tea-util"
  689. },
  690. "time": "2023-06-26T09:49:19+00:00"
  691. },
  692. {
  693. "name": "alibabacloud/tea-xml",
  694. "version": "0.2.4",
  695. "source": {
  696. "type": "git",
  697. "url": "https://github.com/alibabacloud-sdk-php/tea-xml.git",
  698. "reference": "3e0c000bf536224eebbac913c371bef174c0a16a"
  699. },
  700. "dist": {
  701. "type": "zip",
  702. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-xml/zipball/3e0c000bf536224eebbac913c371bef174c0a16a",
  703. "reference": "3e0c000bf536224eebbac913c371bef174c0a16a",
  704. "shasum": ""
  705. },
  706. "require": {
  707. "php": ">5.5"
  708. },
  709. "require-dev": {
  710. "phpunit/phpunit": "*",
  711. "symfony/var-dumper": "*"
  712. },
  713. "type": "library",
  714. "autoload": {
  715. "psr-4": {
  716. "AlibabaCloud\\Tea\\XML\\": "src"
  717. }
  718. },
  719. "notification-url": "https://packagist.org/downloads/",
  720. "license": [
  721. "Apache-2.0"
  722. ],
  723. "authors": [
  724. {
  725. "name": "Alibaba Cloud SDK",
  726. "email": "sdk-team@alibabacloud.com"
  727. }
  728. ],
  729. "description": "Alibaba Cloud Tea XML Library for PHP",
  730. "support": {
  731. "source": "https://github.com/alibabacloud-sdk-php/tea-xml/tree/0.2.4"
  732. },
  733. "time": "2022-08-02T04:12:58+00:00"
  734. },
  735. {
  736. "name": "asm89/stack-cors",
  737. "version": "v2.2.0",
  738. "source": {
  739. "type": "git",
  740. "url": "https://github.com/asm89/stack-cors.git",
  741. "reference": "50f57105bad3d97a43ec4a485eb57daf347eafea"
  742. },
  743. "dist": {
  744. "type": "zip",
  745. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/50f57105bad3d97a43ec4a485eb57daf347eafea",
  746. "reference": "50f57105bad3d97a43ec4a485eb57daf347eafea",
  747. "shasum": ""
  748. },
  749. "require": {
  750. "php": "^7.3|^8.0",
  751. "symfony/http-foundation": "^5.3|^6|^7",
  752. "symfony/http-kernel": "^5.3|^6|^7"
  753. },
  754. "require-dev": {
  755. "phpunit/phpunit": "^9",
  756. "squizlabs/php_codesniffer": "^3.5"
  757. },
  758. "type": "library",
  759. "extra": {
  760. "branch-alias": {
  761. "dev-master": "2.2-dev"
  762. }
  763. },
  764. "autoload": {
  765. "psr-4": {
  766. "Asm89\\Stack\\": "src/"
  767. }
  768. },
  769. "notification-url": "https://packagist.org/downloads/",
  770. "license": [
  771. "MIT"
  772. ],
  773. "authors": [
  774. {
  775. "name": "Alexander",
  776. "email": "iam.asm89@gmail.com"
  777. }
  778. ],
  779. "description": "Cross-origin resource sharing library and stack middleware",
  780. "homepage": "https://github.com/asm89/stack-cors",
  781. "keywords": [
  782. "cors",
  783. "stack"
  784. ],
  785. "support": {
  786. "issues": "https://github.com/asm89/stack-cors/issues",
  787. "source": "https://github.com/asm89/stack-cors/tree/v2.2.0"
  788. },
  789. "time": "2023-11-14T13:51:46+00:00"
  790. },
  791. {
  792. "name": "brick/math",
  793. "version": "0.11.0",
  794. "source": {
  795. "type": "git",
  796. "url": "https://github.com/brick/math.git",
  797. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478"
  798. },
  799. "dist": {
  800. "type": "zip",
  801. "url": "https://api.github.com/repos/brick/math/zipball/0ad82ce168c82ba30d1c01ec86116ab52f589478",
  802. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478",
  803. "shasum": ""
  804. },
  805. "require": {
  806. "php": "^8.0"
  807. },
  808. "require-dev": {
  809. "php-coveralls/php-coveralls": "^2.2",
  810. "phpunit/phpunit": "^9.0",
  811. "vimeo/psalm": "5.0.0"
  812. },
  813. "type": "library",
  814. "autoload": {
  815. "psr-4": {
  816. "Brick\\Math\\": "src/"
  817. }
  818. },
  819. "notification-url": "https://packagist.org/downloads/",
  820. "license": [
  821. "MIT"
  822. ],
  823. "description": "Arbitrary-precision arithmetic library",
  824. "keywords": [
  825. "Arbitrary-precision",
  826. "BigInteger",
  827. "BigRational",
  828. "arithmetic",
  829. "bigdecimal",
  830. "bignum",
  831. "brick",
  832. "math"
  833. ],
  834. "support": {
  835. "issues": "https://github.com/brick/math/issues",
  836. "source": "https://github.com/brick/math/tree/0.11.0"
  837. },
  838. "funding": [
  839. {
  840. "url": "https://github.com/BenMorel",
  841. "type": "github"
  842. }
  843. ],
  844. "time": "2023-01-15T23:15:59+00:00"
  845. },
  846. {
  847. "name": "cache/adapter-common",
  848. "version": "1.3.0",
  849. "source": {
  850. "type": "git",
  851. "url": "https://github.com/php-cache/adapter-common.git",
  852. "reference": "8788309be72aa7be69b88cdc0687549c74a7d479"
  853. },
  854. "dist": {
  855. "type": "zip",
  856. "url": "https://api.github.com/repos/php-cache/adapter-common/zipball/8788309be72aa7be69b88cdc0687549c74a7d479",
  857. "reference": "8788309be72aa7be69b88cdc0687549c74a7d479",
  858. "shasum": ""
  859. },
  860. "require": {
  861. "cache/tag-interop": "^1.0",
  862. "php": ">=7.4",
  863. "psr/cache": "^1.0 || ^2.0",
  864. "psr/log": "^1.0 || ^2.0 || ^3.0",
  865. "psr/simple-cache": "^1.0"
  866. },
  867. "require-dev": {
  868. "cache/integration-tests": "^0.17",
  869. "phpunit/phpunit": "^7.5.20 || ^9.5.10"
  870. },
  871. "type": "library",
  872. "extra": {
  873. "branch-alias": {
  874. "dev-master": "1.1-dev"
  875. }
  876. },
  877. "autoload": {
  878. "psr-4": {
  879. "Cache\\Adapter\\Common\\": ""
  880. }
  881. },
  882. "notification-url": "https://packagist.org/downloads/",
  883. "license": [
  884. "MIT"
  885. ],
  886. "authors": [
  887. {
  888. "name": "Aaron Scherer",
  889. "email": "aequasi@gmail.com",
  890. "homepage": "https://github.com/aequasi"
  891. },
  892. {
  893. "name": "Tobias Nyholm",
  894. "email": "tobias.nyholm@gmail.com",
  895. "homepage": "https://github.com/nyholm"
  896. }
  897. ],
  898. "description": "Common classes for PSR-6 adapters",
  899. "homepage": "http://www.php-cache.com/en/latest/",
  900. "keywords": [
  901. "cache",
  902. "psr-6",
  903. "tag"
  904. ],
  905. "support": {
  906. "source": "https://github.com/php-cache/adapter-common/tree/1.3.0"
  907. },
  908. "time": "2022-01-15T15:47:19+00:00"
  909. },
  910. {
  911. "name": "cache/filesystem-adapter",
  912. "version": "1.2.0",
  913. "source": {
  914. "type": "git",
  915. "url": "https://github.com/php-cache/filesystem-adapter.git",
  916. "reference": "f1faaae40aaa696ef899cef6f6888aedb90b419b"
  917. },
  918. "dist": {
  919. "type": "zip",
  920. "url": "https://api.github.com/repos/php-cache/filesystem-adapter/zipball/f1faaae40aaa696ef899cef6f6888aedb90b419b",
  921. "reference": "f1faaae40aaa696ef899cef6f6888aedb90b419b",
  922. "shasum": ""
  923. },
  924. "require": {
  925. "cache/adapter-common": "^1.0",
  926. "league/flysystem": "^1.0",
  927. "php": ">=7.4",
  928. "psr/cache": "^1.0 || ^2.0",
  929. "psr/simple-cache": "^1.0"
  930. },
  931. "provide": {
  932. "psr/cache-implementation": "^1.0",
  933. "psr/simple-cache-implementation": "^1.0"
  934. },
  935. "require-dev": {
  936. "cache/integration-tests": "^0.17",
  937. "phpunit/phpunit": "^7.5.20 || ^9.5.10"
  938. },
  939. "type": "library",
  940. "extra": {
  941. "branch-alias": {
  942. "dev-master": "1.1-dev"
  943. }
  944. },
  945. "autoload": {
  946. "psr-4": {
  947. "Cache\\Adapter\\Filesystem\\": ""
  948. },
  949. "exclude-from-classmap": [
  950. "/Tests/"
  951. ]
  952. },
  953. "notification-url": "https://packagist.org/downloads/",
  954. "license": [
  955. "MIT"
  956. ],
  957. "authors": [
  958. {
  959. "name": "Aaron Scherer",
  960. "email": "aequasi@gmail.com",
  961. "homepage": "https://github.com/aequasi"
  962. },
  963. {
  964. "name": "Tobias Nyholm",
  965. "email": "tobias.nyholm@gmail.com",
  966. "homepage": "https://github.com/nyholm"
  967. }
  968. ],
  969. "description": "A PSR-6 cache implementation using filesystem. This implementation supports tags",
  970. "homepage": "http://www.php-cache.com/en/latest/",
  971. "keywords": [
  972. "cache",
  973. "filesystem",
  974. "psr-6",
  975. "tag"
  976. ],
  977. "support": {
  978. "source": "https://github.com/php-cache/filesystem-adapter/tree/1.2.0"
  979. },
  980. "time": "2022-01-15T15:47:19+00:00"
  981. },
  982. {
  983. "name": "cache/tag-interop",
  984. "version": "1.1.0",
  985. "source": {
  986. "type": "git",
  987. "url": "https://github.com/php-cache/tag-interop.git",
  988. "reference": "b062b1d735357da50edf8387f7a8696f3027d328"
  989. },
  990. "dist": {
  991. "type": "zip",
  992. "url": "https://api.github.com/repos/php-cache/tag-interop/zipball/b062b1d735357da50edf8387f7a8696f3027d328",
  993. "reference": "b062b1d735357da50edf8387f7a8696f3027d328",
  994. "shasum": ""
  995. },
  996. "require": {
  997. "php": "^5.5 || ^7.0 || ^8.0",
  998. "psr/cache": "^1.0 || ^2.0"
  999. },
  1000. "type": "library",
  1001. "extra": {
  1002. "branch-alias": {
  1003. "dev-master": "1.1-dev"
  1004. }
  1005. },
  1006. "autoload": {
  1007. "psr-4": {
  1008. "Cache\\TagInterop\\": ""
  1009. }
  1010. },
  1011. "notification-url": "https://packagist.org/downloads/",
  1012. "license": [
  1013. "MIT"
  1014. ],
  1015. "authors": [
  1016. {
  1017. "name": "Tobias Nyholm",
  1018. "email": "tobias.nyholm@gmail.com",
  1019. "homepage": "https://github.com/nyholm"
  1020. },
  1021. {
  1022. "name": "Nicolas Grekas",
  1023. "email": "p@tchwork.com",
  1024. "homepage": "https://github.com/nicolas-grekas"
  1025. }
  1026. ],
  1027. "description": "Framework interoperable interfaces for tags",
  1028. "homepage": "https://www.php-cache.com/en/latest/",
  1029. "keywords": [
  1030. "cache",
  1031. "psr",
  1032. "psr6",
  1033. "tag"
  1034. ],
  1035. "support": {
  1036. "issues": "https://github.com/php-cache/tag-interop/issues",
  1037. "source": "https://github.com/php-cache/tag-interop/tree/1.1.0"
  1038. },
  1039. "time": "2021-12-31T10:03:23+00:00"
  1040. },
  1041. {
  1042. "name": "carbonphp/carbon-doctrine-types",
  1043. "version": "2.1.0",
  1044. "source": {
  1045. "type": "git",
  1046. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  1047. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb"
  1048. },
  1049. "dist": {
  1050. "type": "zip",
  1051. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  1052. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  1053. "shasum": ""
  1054. },
  1055. "require": {
  1056. "php": "^7.4 || ^8.0"
  1057. },
  1058. "conflict": {
  1059. "doctrine/dbal": "<3.7.0 || >=4.0.0"
  1060. },
  1061. "require-dev": {
  1062. "doctrine/dbal": "^3.7.0",
  1063. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  1064. "phpunit/phpunit": "^10.3"
  1065. },
  1066. "type": "library",
  1067. "autoload": {
  1068. "psr-4": {
  1069. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  1070. }
  1071. },
  1072. "notification-url": "https://packagist.org/downloads/",
  1073. "license": [
  1074. "MIT"
  1075. ],
  1076. "authors": [
  1077. {
  1078. "name": "KyleKatarn",
  1079. "email": "kylekatarnls@gmail.com"
  1080. }
  1081. ],
  1082. "description": "Types to use Carbon in Doctrine",
  1083. "keywords": [
  1084. "carbon",
  1085. "date",
  1086. "datetime",
  1087. "doctrine",
  1088. "time"
  1089. ],
  1090. "support": {
  1091. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  1092. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/2.1.0"
  1093. },
  1094. "funding": [
  1095. {
  1096. "url": "https://github.com/kylekatarnls",
  1097. "type": "github"
  1098. },
  1099. {
  1100. "url": "https://opencollective.com/Carbon",
  1101. "type": "open_collective"
  1102. },
  1103. {
  1104. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  1105. "type": "tidelift"
  1106. }
  1107. ],
  1108. "time": "2023-12-11T17:09:12+00:00"
  1109. },
  1110. {
  1111. "name": "cboden/ratchet",
  1112. "version": "v0.4.4",
  1113. "source": {
  1114. "type": "git",
  1115. "url": "https://github.com/ratchetphp/Ratchet.git",
  1116. "reference": "5012dc954541b40c5599d286fd40653f5716a38f"
  1117. },
  1118. "dist": {
  1119. "type": "zip",
  1120. "url": "https://api.github.com/repos/ratchetphp/Ratchet/zipball/5012dc954541b40c5599d286fd40653f5716a38f",
  1121. "reference": "5012dc954541b40c5599d286fd40653f5716a38f",
  1122. "shasum": ""
  1123. },
  1124. "require": {
  1125. "guzzlehttp/psr7": "^1.7|^2.0",
  1126. "php": ">=5.4.2",
  1127. "ratchet/rfc6455": "^0.3.1",
  1128. "react/event-loop": ">=0.4",
  1129. "react/socket": "^1.0 || ^0.8 || ^0.7 || ^0.6 || ^0.5",
  1130. "symfony/http-foundation": "^2.6|^3.0|^4.0|^5.0|^6.0",
  1131. "symfony/routing": "^2.6|^3.0|^4.0|^5.0|^6.0"
  1132. },
  1133. "require-dev": {
  1134. "phpunit/phpunit": "~4.8"
  1135. },
  1136. "type": "library",
  1137. "autoload": {
  1138. "psr-4": {
  1139. "Ratchet\\": "src/Ratchet"
  1140. }
  1141. },
  1142. "notification-url": "https://packagist.org/downloads/",
  1143. "license": [
  1144. "MIT"
  1145. ],
  1146. "authors": [
  1147. {
  1148. "name": "Chris Boden",
  1149. "email": "cboden@gmail.com",
  1150. "role": "Developer"
  1151. },
  1152. {
  1153. "name": "Matt Bonneau",
  1154. "role": "Developer"
  1155. }
  1156. ],
  1157. "description": "PHP WebSocket library",
  1158. "homepage": "http://socketo.me",
  1159. "keywords": [
  1160. "Ratchet",
  1161. "WebSockets",
  1162. "server",
  1163. "sockets",
  1164. "websocket"
  1165. ],
  1166. "support": {
  1167. "chat": "https://gitter.im/reactphp/reactphp",
  1168. "issues": "https://github.com/ratchetphp/Ratchet/issues",
  1169. "source": "https://github.com/ratchetphp/Ratchet/tree/v0.4.4"
  1170. },
  1171. "time": "2021-12-14T00:20:41+00:00"
  1172. },
  1173. {
  1174. "name": "clagiordano/weblibs-configmanager",
  1175. "version": "v1.2.0",
  1176. "source": {
  1177. "type": "git",
  1178. "url": "https://github.com/clagiordano/weblibs-configmanager.git",
  1179. "reference": "5c8ebcc62782313b1278afe802b120d18c07a059"
  1180. },
  1181. "dist": {
  1182. "type": "zip",
  1183. "url": "https://api.github.com/repos/clagiordano/weblibs-configmanager/zipball/5c8ebcc62782313b1278afe802b120d18c07a059",
  1184. "reference": "5c8ebcc62782313b1278afe802b120d18c07a059",
  1185. "shasum": ""
  1186. },
  1187. "require": {
  1188. "php": ">=5.4"
  1189. },
  1190. "require-dev": {
  1191. "clagiordano/phpunit-result-printer": "^1",
  1192. "phpunit/phpunit": "^4.8"
  1193. },
  1194. "type": "library",
  1195. "autoload": {
  1196. "psr-4": {
  1197. "clagiordano\\weblibs\\configmanager\\": "src/"
  1198. }
  1199. },
  1200. "notification-url": "https://packagist.org/downloads/",
  1201. "license": [
  1202. "LGPL-3.0-or-later"
  1203. ],
  1204. "authors": [
  1205. {
  1206. "name": "Claudio Giordano",
  1207. "email": "claudio.giordano@autistici.org",
  1208. "role": "Developer"
  1209. }
  1210. ],
  1211. "description": "weblibs-configmanager is a tool library for easily read and access to php config array file and direct read/write configuration file / object",
  1212. "keywords": [
  1213. "clagiordano",
  1214. "configuration",
  1215. "manager",
  1216. "tool",
  1217. "weblibs"
  1218. ],
  1219. "support": {
  1220. "issues": "https://github.com/clagiordano/weblibs-configmanager/issues",
  1221. "source": "https://github.com/clagiordano/weblibs-configmanager/tree/v1.2.0"
  1222. },
  1223. "time": "2021-05-18T17:55:57+00:00"
  1224. },
  1225. {
  1226. "name": "composer/semver",
  1227. "version": "3.4.0",
  1228. "source": {
  1229. "type": "git",
  1230. "url": "https://github.com/composer/semver.git",
  1231. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32"
  1232. },
  1233. "dist": {
  1234. "type": "zip",
  1235. "url": "https://api.github.com/repos/composer/semver/zipball/35e8d0af4486141bc745f23a29cc2091eb624a32",
  1236. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32",
  1237. "shasum": ""
  1238. },
  1239. "require": {
  1240. "php": "^5.3.2 || ^7.0 || ^8.0"
  1241. },
  1242. "require-dev": {
  1243. "phpstan/phpstan": "^1.4",
  1244. "symfony/phpunit-bridge": "^4.2 || ^5"
  1245. },
  1246. "type": "library",
  1247. "extra": {
  1248. "branch-alias": {
  1249. "dev-main": "3.x-dev"
  1250. }
  1251. },
  1252. "autoload": {
  1253. "psr-4": {
  1254. "Composer\\Semver\\": "src"
  1255. }
  1256. },
  1257. "notification-url": "https://packagist.org/downloads/",
  1258. "license": [
  1259. "MIT"
  1260. ],
  1261. "authors": [
  1262. {
  1263. "name": "Nils Adermann",
  1264. "email": "naderman@naderman.de",
  1265. "homepage": "http://www.naderman.de"
  1266. },
  1267. {
  1268. "name": "Jordi Boggiano",
  1269. "email": "j.boggiano@seld.be",
  1270. "homepage": "http://seld.be"
  1271. },
  1272. {
  1273. "name": "Rob Bast",
  1274. "email": "rob.bast@gmail.com",
  1275. "homepage": "http://robbast.nl"
  1276. }
  1277. ],
  1278. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  1279. "keywords": [
  1280. "semantic",
  1281. "semver",
  1282. "validation",
  1283. "versioning"
  1284. ],
  1285. "support": {
  1286. "irc": "ircs://irc.libera.chat:6697/composer",
  1287. "issues": "https://github.com/composer/semver/issues",
  1288. "source": "https://github.com/composer/semver/tree/3.4.0"
  1289. },
  1290. "funding": [
  1291. {
  1292. "url": "https://packagist.com",
  1293. "type": "custom"
  1294. },
  1295. {
  1296. "url": "https://github.com/composer",
  1297. "type": "github"
  1298. },
  1299. {
  1300. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  1301. "type": "tidelift"
  1302. }
  1303. ],
  1304. "time": "2023-08-31T09:50:34+00:00"
  1305. },
  1306. {
  1307. "name": "dflydev/dot-access-data",
  1308. "version": "v3.0.2",
  1309. "source": {
  1310. "type": "git",
  1311. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1312. "reference": "f41715465d65213d644d3141a6a93081be5d3549"
  1313. },
  1314. "dist": {
  1315. "type": "zip",
  1316. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549",
  1317. "reference": "f41715465d65213d644d3141a6a93081be5d3549",
  1318. "shasum": ""
  1319. },
  1320. "require": {
  1321. "php": "^7.1 || ^8.0"
  1322. },
  1323. "require-dev": {
  1324. "phpstan/phpstan": "^0.12.42",
  1325. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  1326. "scrutinizer/ocular": "1.6.0",
  1327. "squizlabs/php_codesniffer": "^3.5",
  1328. "vimeo/psalm": "^4.0.0"
  1329. },
  1330. "type": "library",
  1331. "extra": {
  1332. "branch-alias": {
  1333. "dev-main": "3.x-dev"
  1334. }
  1335. },
  1336. "autoload": {
  1337. "psr-4": {
  1338. "Dflydev\\DotAccessData\\": "src/"
  1339. }
  1340. },
  1341. "notification-url": "https://packagist.org/downloads/",
  1342. "license": [
  1343. "MIT"
  1344. ],
  1345. "authors": [
  1346. {
  1347. "name": "Dragonfly Development Inc.",
  1348. "email": "info@dflydev.com",
  1349. "homepage": "http://dflydev.com"
  1350. },
  1351. {
  1352. "name": "Beau Simensen",
  1353. "email": "beau@dflydev.com",
  1354. "homepage": "http://beausimensen.com"
  1355. },
  1356. {
  1357. "name": "Carlos Frutos",
  1358. "email": "carlos@kiwing.it",
  1359. "homepage": "https://github.com/cfrutos"
  1360. },
  1361. {
  1362. "name": "Colin O'Dell",
  1363. "email": "colinodell@gmail.com",
  1364. "homepage": "https://www.colinodell.com"
  1365. }
  1366. ],
  1367. "description": "Given a deep data structure, access data by dot notation.",
  1368. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1369. "keywords": [
  1370. "access",
  1371. "data",
  1372. "dot",
  1373. "notation"
  1374. ],
  1375. "support": {
  1376. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  1377. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2"
  1378. },
  1379. "time": "2022-10-27T11:44:00+00:00"
  1380. },
  1381. {
  1382. "name": "doctrine/cache",
  1383. "version": "1.13.0",
  1384. "source": {
  1385. "type": "git",
  1386. "url": "https://github.com/doctrine/cache.git",
  1387. "reference": "56cd022adb5514472cb144c087393c1821911d09"
  1388. },
  1389. "dist": {
  1390. "type": "zip",
  1391. "url": "https://api.github.com/repos/doctrine/cache/zipball/56cd022adb5514472cb144c087393c1821911d09",
  1392. "reference": "56cd022adb5514472cb144c087393c1821911d09",
  1393. "shasum": "",
  1394. "mirrors": [
  1395. {
  1396. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1397. "preferred": true
  1398. }
  1399. ]
  1400. },
  1401. "require": {
  1402. "php": "~7.1 || ^8.0"
  1403. },
  1404. "conflict": {
  1405. "doctrine/common": ">2.2,<2.4"
  1406. },
  1407. "require-dev": {
  1408. "alcaeus/mongo-php-adapter": "^1.1",
  1409. "cache/integration-tests": "dev-master",
  1410. "doctrine/coding-standard": "^9",
  1411. "mongodb/mongodb": "^1.1",
  1412. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1413. "predis/predis": "~1.0",
  1414. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  1415. "symfony/cache": "^4.4 || ^5.4 || ^6",
  1416. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  1417. },
  1418. "suggest": {
  1419. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  1420. },
  1421. "type": "library",
  1422. "autoload": {
  1423. "psr-4": {
  1424. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1425. }
  1426. },
  1427. "notification-url": "https://packagist.org/downloads/",
  1428. "license": [
  1429. "MIT"
  1430. ],
  1431. "authors": [
  1432. {
  1433. "name": "Guilherme Blanco",
  1434. "email": "guilhermeblanco@gmail.com"
  1435. },
  1436. {
  1437. "name": "Roman Borschel",
  1438. "email": "roman@code-factory.org"
  1439. },
  1440. {
  1441. "name": "Benjamin Eberlei",
  1442. "email": "kontakt@beberlei.de"
  1443. },
  1444. {
  1445. "name": "Jonathan Wage",
  1446. "email": "jonwage@gmail.com"
  1447. },
  1448. {
  1449. "name": "Johannes Schmitt",
  1450. "email": "schmittjoh@gmail.com"
  1451. }
  1452. ],
  1453. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  1454. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  1455. "keywords": [
  1456. "abstraction",
  1457. "apcu",
  1458. "cache",
  1459. "caching",
  1460. "couchdb",
  1461. "memcached",
  1462. "php",
  1463. "redis",
  1464. "xcache"
  1465. ],
  1466. "support": {
  1467. "issues": "https://github.com/doctrine/cache/issues",
  1468. "source": "https://github.com/doctrine/cache/tree/1.13.0"
  1469. },
  1470. "funding": [
  1471. {
  1472. "url": "https://www.doctrine-project.org/sponsorship.html",
  1473. "type": "custom"
  1474. },
  1475. {
  1476. "url": "https://www.patreon.com/phpdoctrine",
  1477. "type": "patreon"
  1478. },
  1479. {
  1480. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  1481. "type": "tidelift"
  1482. }
  1483. ],
  1484. "time": "2022-05-20T20:06:54+00:00"
  1485. },
  1486. {
  1487. "name": "doctrine/inflector",
  1488. "version": "2.0.8",
  1489. "source": {
  1490. "type": "git",
  1491. "url": "https://github.com/doctrine/inflector.git",
  1492. "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff"
  1493. },
  1494. "dist": {
  1495. "type": "zip",
  1496. "url": "https://api.github.com/repos/doctrine/inflector/zipball/f9301a5b2fb1216b2b08f02ba04dc45423db6bff",
  1497. "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff",
  1498. "shasum": ""
  1499. },
  1500. "require": {
  1501. "php": "^7.2 || ^8.0"
  1502. },
  1503. "require-dev": {
  1504. "doctrine/coding-standard": "^11.0",
  1505. "phpstan/phpstan": "^1.8",
  1506. "phpstan/phpstan-phpunit": "^1.1",
  1507. "phpstan/phpstan-strict-rules": "^1.3",
  1508. "phpunit/phpunit": "^8.5 || ^9.5",
  1509. "vimeo/psalm": "^4.25 || ^5.4"
  1510. },
  1511. "type": "library",
  1512. "autoload": {
  1513. "psr-4": {
  1514. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1515. }
  1516. },
  1517. "notification-url": "https://packagist.org/downloads/",
  1518. "license": [
  1519. "MIT"
  1520. ],
  1521. "authors": [
  1522. {
  1523. "name": "Guilherme Blanco",
  1524. "email": "guilhermeblanco@gmail.com"
  1525. },
  1526. {
  1527. "name": "Roman Borschel",
  1528. "email": "roman@code-factory.org"
  1529. },
  1530. {
  1531. "name": "Benjamin Eberlei",
  1532. "email": "kontakt@beberlei.de"
  1533. },
  1534. {
  1535. "name": "Jonathan Wage",
  1536. "email": "jonwage@gmail.com"
  1537. },
  1538. {
  1539. "name": "Johannes Schmitt",
  1540. "email": "schmittjoh@gmail.com"
  1541. }
  1542. ],
  1543. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1544. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1545. "keywords": [
  1546. "inflection",
  1547. "inflector",
  1548. "lowercase",
  1549. "manipulation",
  1550. "php",
  1551. "plural",
  1552. "singular",
  1553. "strings",
  1554. "uppercase",
  1555. "words"
  1556. ],
  1557. "support": {
  1558. "issues": "https://github.com/doctrine/inflector/issues",
  1559. "source": "https://github.com/doctrine/inflector/tree/2.0.8"
  1560. },
  1561. "funding": [
  1562. {
  1563. "url": "https://www.doctrine-project.org/sponsorship.html",
  1564. "type": "custom"
  1565. },
  1566. {
  1567. "url": "https://www.patreon.com/phpdoctrine",
  1568. "type": "patreon"
  1569. },
  1570. {
  1571. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1572. "type": "tidelift"
  1573. }
  1574. ],
  1575. "time": "2023-06-16T13:40:37+00:00"
  1576. },
  1577. {
  1578. "name": "doctrine/lexer",
  1579. "version": "1.2.3",
  1580. "source": {
  1581. "type": "git",
  1582. "url": "https://github.com/doctrine/lexer.git",
  1583. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  1584. },
  1585. "dist": {
  1586. "type": "zip",
  1587. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1588. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1589. "shasum": ""
  1590. },
  1591. "require": {
  1592. "php": "^7.1 || ^8.0"
  1593. },
  1594. "require-dev": {
  1595. "doctrine/coding-standard": "^9.0",
  1596. "phpstan/phpstan": "^1.3",
  1597. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1598. "vimeo/psalm": "^4.11"
  1599. },
  1600. "type": "library",
  1601. "autoload": {
  1602. "psr-4": {
  1603. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1604. }
  1605. },
  1606. "notification-url": "https://packagist.org/downloads/",
  1607. "license": [
  1608. "MIT"
  1609. ],
  1610. "authors": [
  1611. {
  1612. "name": "Guilherme Blanco",
  1613. "email": "guilhermeblanco@gmail.com"
  1614. },
  1615. {
  1616. "name": "Roman Borschel",
  1617. "email": "roman@code-factory.org"
  1618. },
  1619. {
  1620. "name": "Johannes Schmitt",
  1621. "email": "schmittjoh@gmail.com"
  1622. }
  1623. ],
  1624. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1625. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1626. "keywords": [
  1627. "annotations",
  1628. "docblock",
  1629. "lexer",
  1630. "parser",
  1631. "php"
  1632. ],
  1633. "support": {
  1634. "issues": "https://github.com/doctrine/lexer/issues",
  1635. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  1636. },
  1637. "funding": [
  1638. {
  1639. "url": "https://www.doctrine-project.org/sponsorship.html",
  1640. "type": "custom"
  1641. },
  1642. {
  1643. "url": "https://www.patreon.com/phpdoctrine",
  1644. "type": "patreon"
  1645. },
  1646. {
  1647. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1648. "type": "tidelift"
  1649. }
  1650. ],
  1651. "time": "2022-02-28T11:07:21+00:00"
  1652. },
  1653. {
  1654. "name": "dragonmantank/cron-expression",
  1655. "version": "v3.3.3",
  1656. "source": {
  1657. "type": "git",
  1658. "url": "https://github.com/dragonmantank/cron-expression.git",
  1659. "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a"
  1660. },
  1661. "dist": {
  1662. "type": "zip",
  1663. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
  1664. "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
  1665. "shasum": ""
  1666. },
  1667. "require": {
  1668. "php": "^7.2|^8.0",
  1669. "webmozart/assert": "^1.0"
  1670. },
  1671. "replace": {
  1672. "mtdowling/cron-expression": "^1.0"
  1673. },
  1674. "require-dev": {
  1675. "phpstan/extension-installer": "^1.0",
  1676. "phpstan/phpstan": "^1.0",
  1677. "phpstan/phpstan-webmozart-assert": "^1.0",
  1678. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  1679. },
  1680. "type": "library",
  1681. "autoload": {
  1682. "psr-4": {
  1683. "Cron\\": "src/Cron/"
  1684. }
  1685. },
  1686. "notification-url": "https://packagist.org/downloads/",
  1687. "license": [
  1688. "MIT"
  1689. ],
  1690. "authors": [
  1691. {
  1692. "name": "Chris Tankersley",
  1693. "email": "chris@ctankersley.com",
  1694. "homepage": "https://github.com/dragonmantank"
  1695. }
  1696. ],
  1697. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1698. "keywords": [
  1699. "cron",
  1700. "schedule"
  1701. ],
  1702. "support": {
  1703. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  1704. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.3"
  1705. },
  1706. "funding": [
  1707. {
  1708. "url": "https://github.com/dragonmantank",
  1709. "type": "github"
  1710. }
  1711. ],
  1712. "time": "2023-08-10T19:36:49+00:00"
  1713. },
  1714. {
  1715. "name": "egulias/email-validator",
  1716. "version": "2.1.25",
  1717. "source": {
  1718. "type": "git",
  1719. "url": "https://github.com/egulias/EmailValidator.git",
  1720. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  1721. },
  1722. "dist": {
  1723. "type": "zip",
  1724. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1725. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1726. "shasum": ""
  1727. },
  1728. "require": {
  1729. "doctrine/lexer": "^1.0.1",
  1730. "php": ">=5.5",
  1731. "symfony/polyfill-intl-idn": "^1.10"
  1732. },
  1733. "require-dev": {
  1734. "dominicsayers/isemail": "^3.0.7",
  1735. "phpunit/phpunit": "^4.8.36|^7.5.15",
  1736. "satooshi/php-coveralls": "^1.0.1"
  1737. },
  1738. "suggest": {
  1739. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1740. },
  1741. "type": "library",
  1742. "extra": {
  1743. "branch-alias": {
  1744. "dev-master": "2.1.x-dev"
  1745. }
  1746. },
  1747. "autoload": {
  1748. "psr-4": {
  1749. "Egulias\\EmailValidator\\": "src"
  1750. }
  1751. },
  1752. "notification-url": "https://packagist.org/downloads/",
  1753. "license": [
  1754. "MIT"
  1755. ],
  1756. "authors": [
  1757. {
  1758. "name": "Eduardo Gulias Davis"
  1759. }
  1760. ],
  1761. "description": "A library for validating emails against several RFCs",
  1762. "homepage": "https://github.com/egulias/EmailValidator",
  1763. "keywords": [
  1764. "email",
  1765. "emailvalidation",
  1766. "emailvalidator",
  1767. "validation",
  1768. "validator"
  1769. ],
  1770. "support": {
  1771. "issues": "https://github.com/egulias/EmailValidator/issues",
  1772. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  1773. },
  1774. "funding": [
  1775. {
  1776. "url": "https://github.com/egulias",
  1777. "type": "github"
  1778. }
  1779. ],
  1780. "time": "2020-12-29T14:50:06+00:00"
  1781. },
  1782. {
  1783. "name": "evenement/evenement",
  1784. "version": "v3.0.2",
  1785. "source": {
  1786. "type": "git",
  1787. "url": "https://github.com/igorw/evenement.git",
  1788. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  1789. },
  1790. "dist": {
  1791. "type": "zip",
  1792. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  1793. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  1794. "shasum": ""
  1795. },
  1796. "require": {
  1797. "php": ">=7.0"
  1798. },
  1799. "require-dev": {
  1800. "phpunit/phpunit": "^9 || ^6"
  1801. },
  1802. "type": "library",
  1803. "autoload": {
  1804. "psr-4": {
  1805. "Evenement\\": "src/"
  1806. }
  1807. },
  1808. "notification-url": "https://packagist.org/downloads/",
  1809. "license": [
  1810. "MIT"
  1811. ],
  1812. "authors": [
  1813. {
  1814. "name": "Igor Wiedler",
  1815. "email": "igor@wiedler.ch"
  1816. }
  1817. ],
  1818. "description": "Événement is a very simple event dispatching library for PHP",
  1819. "keywords": [
  1820. "event-dispatcher",
  1821. "event-emitter"
  1822. ],
  1823. "support": {
  1824. "issues": "https://github.com/igorw/evenement/issues",
  1825. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  1826. },
  1827. "time": "2023-08-08T05:53:35+00:00"
  1828. },
  1829. {
  1830. "name": "ezyang/htmlpurifier",
  1831. "version": "v4.17.0",
  1832. "source": {
  1833. "type": "git",
  1834. "url": "https://github.com/ezyang/htmlpurifier.git",
  1835. "reference": "bbc513d79acf6691fa9cf10f192c90dd2957f18c"
  1836. },
  1837. "dist": {
  1838. "type": "zip",
  1839. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/bbc513d79acf6691fa9cf10f192c90dd2957f18c",
  1840. "reference": "bbc513d79acf6691fa9cf10f192c90dd2957f18c",
  1841. "shasum": ""
  1842. },
  1843. "require": {
  1844. "php": "~5.6.0 || ~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  1845. },
  1846. "require-dev": {
  1847. "cerdic/css-tidy": "^1.7 || ^2.0",
  1848. "simpletest/simpletest": "dev-master"
  1849. },
  1850. "suggest": {
  1851. "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
  1852. "ext-bcmath": "Used for unit conversion and imagecrash protection",
  1853. "ext-iconv": "Converts text to and from non-UTF-8 encodings",
  1854. "ext-tidy": "Used for pretty-printing HTML"
  1855. },
  1856. "type": "library",
  1857. "autoload": {
  1858. "files": [
  1859. "library/HTMLPurifier.composer.php"
  1860. ],
  1861. "psr-0": {
  1862. "HTMLPurifier": "library/"
  1863. },
  1864. "exclude-from-classmap": [
  1865. "/library/HTMLPurifier/Language/"
  1866. ]
  1867. },
  1868. "notification-url": "https://packagist.org/downloads/",
  1869. "license": [
  1870. "LGPL-2.1-or-later"
  1871. ],
  1872. "authors": [
  1873. {
  1874. "name": "Edward Z. Yang",
  1875. "email": "admin@htmlpurifier.org",
  1876. "homepage": "http://ezyang.com"
  1877. }
  1878. ],
  1879. "description": "Standards compliant HTML filter written in PHP",
  1880. "homepage": "http://htmlpurifier.org/",
  1881. "keywords": [
  1882. "html"
  1883. ],
  1884. "support": {
  1885. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  1886. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.17.0"
  1887. },
  1888. "time": "2023-11-17T15:01:25+00:00"
  1889. },
  1890. {
  1891. "name": "fideloper/proxy",
  1892. "version": "4.4.2",
  1893. "source": {
  1894. "type": "git",
  1895. "url": "https://github.com/fideloper/TrustedProxy.git",
  1896. "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750"
  1897. },
  1898. "dist": {
  1899. "type": "zip",
  1900. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/a751f2bc86dd8e6cfef12dc0cbdada82f5a18750",
  1901. "reference": "a751f2bc86dd8e6cfef12dc0cbdada82f5a18750",
  1902. "shasum": ""
  1903. },
  1904. "require": {
  1905. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1906. "php": ">=5.4.0"
  1907. },
  1908. "require-dev": {
  1909. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1910. "mockery/mockery": "^1.0",
  1911. "phpunit/phpunit": "^8.5.8|^9.3.3"
  1912. },
  1913. "type": "library",
  1914. "extra": {
  1915. "laravel": {
  1916. "providers": [
  1917. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  1918. ]
  1919. }
  1920. },
  1921. "autoload": {
  1922. "psr-4": {
  1923. "Fideloper\\Proxy\\": "src/"
  1924. }
  1925. },
  1926. "notification-url": "https://packagist.org/downloads/",
  1927. "license": [
  1928. "MIT"
  1929. ],
  1930. "authors": [
  1931. {
  1932. "name": "Chris Fidao",
  1933. "email": "fideloper@gmail.com"
  1934. }
  1935. ],
  1936. "description": "Set trusted proxies for Laravel",
  1937. "keywords": [
  1938. "load balancing",
  1939. "proxy",
  1940. "trusted proxy"
  1941. ],
  1942. "support": {
  1943. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  1944. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.2"
  1945. },
  1946. "time": "2022-02-09T13:33:34+00:00"
  1947. },
  1948. {
  1949. "name": "fruitcake/laravel-cors",
  1950. "version": "v2.2.0",
  1951. "source": {
  1952. "type": "git",
  1953. "url": "https://github.com/fruitcake/laravel-cors.git",
  1954. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534"
  1955. },
  1956. "dist": {
  1957. "type": "zip",
  1958. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/783a74f5e3431d7b9805be8afb60fd0a8f743534",
  1959. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534",
  1960. "shasum": ""
  1961. },
  1962. "require": {
  1963. "asm89/stack-cors": "^2.0.1",
  1964. "illuminate/contracts": "^6|^7|^8|^9",
  1965. "illuminate/support": "^6|^7|^8|^9",
  1966. "php": ">=7.2"
  1967. },
  1968. "require-dev": {
  1969. "laravel/framework": "^6|^7.24|^8",
  1970. "orchestra/testbench-dusk": "^4|^5|^6|^7",
  1971. "phpunit/phpunit": "^6|^7|^8|^9",
  1972. "squizlabs/php_codesniffer": "^3.5"
  1973. },
  1974. "type": "library",
  1975. "extra": {
  1976. "branch-alias": {
  1977. "dev-master": "2.1-dev"
  1978. },
  1979. "laravel": {
  1980. "providers": [
  1981. "Fruitcake\\Cors\\CorsServiceProvider"
  1982. ]
  1983. }
  1984. },
  1985. "autoload": {
  1986. "psr-4": {
  1987. "Fruitcake\\Cors\\": "src/"
  1988. }
  1989. },
  1990. "notification-url": "https://packagist.org/downloads/",
  1991. "license": [
  1992. "MIT"
  1993. ],
  1994. "authors": [
  1995. {
  1996. "name": "Fruitcake",
  1997. "homepage": "https://fruitcake.nl"
  1998. },
  1999. {
  2000. "name": "Barry vd. Heuvel",
  2001. "email": "barryvdh@gmail.com"
  2002. }
  2003. ],
  2004. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  2005. "keywords": [
  2006. "api",
  2007. "cors",
  2008. "crossdomain",
  2009. "laravel"
  2010. ],
  2011. "support": {
  2012. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  2013. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.2.0"
  2014. },
  2015. "funding": [
  2016. {
  2017. "url": "https://fruitcake.nl",
  2018. "type": "custom"
  2019. },
  2020. {
  2021. "url": "https://github.com/barryvdh",
  2022. "type": "github"
  2023. }
  2024. ],
  2025. "abandoned": true,
  2026. "time": "2022-02-23T14:25:13+00:00"
  2027. },
  2028. {
  2029. "name": "getuilaboratory/getui-pushapi-php-client-v2",
  2030. "version": "dev-master",
  2031. "source": {
  2032. "type": "git",
  2033. "url": "https://github.com/GetuiLaboratory/getui-pushapi-php-client-v2.git",
  2034. "reference": "255cc076624d049c0481d7172cd3c519ae7b07f6"
  2035. },
  2036. "dist": {
  2037. "type": "zip",
  2038. "url": "https://api.github.com/repos/GetuiLaboratory/getui-pushapi-php-client-v2/zipball/255cc076624d049c0481d7172cd3c519ae7b07f6",
  2039. "reference": "255cc076624d049c0481d7172cd3c519ae7b07f6",
  2040. "shasum": ""
  2041. },
  2042. "default-branch": true,
  2043. "type": "library",
  2044. "autoload": {
  2045. "classmap": [
  2046. ""
  2047. ]
  2048. },
  2049. "notification-url": "https://packagist.org/downloads/",
  2050. "license": [
  2051. "MIT"
  2052. ],
  2053. "authors": [
  2054. {
  2055. "name": "getui",
  2056. "homepage": "https://www.getui.com/cn"
  2057. }
  2058. ],
  2059. "description": "getui php client V2",
  2060. "homepage": "https://www.getui.com/cn/",
  2061. "keywords": [
  2062. "GeTui",
  2063. "GetuiLaboratory",
  2064. "getui-pushapi-php-client",
  2065. "getui-pushapi-php-client-v2",
  2066. "pushapi"
  2067. ],
  2068. "support": {
  2069. "issues": "https://github.com/GetuiLaboratory/getui-pushapi-php-client-v2/issues",
  2070. "source": "https://github.com/GetuiLaboratory/getui-pushapi-php-client-v2/tree/master"
  2071. },
  2072. "time": "2021-06-21T03:22:42+00:00"
  2073. },
  2074. {
  2075. "name": "graham-campbell/result-type",
  2076. "version": "v1.1.2",
  2077. "source": {
  2078. "type": "git",
  2079. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  2080. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862"
  2081. },
  2082. "dist": {
  2083. "type": "zip",
  2084. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/fbd48bce38f73f8a4ec8583362e732e4095e5862",
  2085. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862",
  2086. "shasum": ""
  2087. },
  2088. "require": {
  2089. "php": "^7.2.5 || ^8.0",
  2090. "phpoption/phpoption": "^1.9.2"
  2091. },
  2092. "require-dev": {
  2093. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  2094. },
  2095. "type": "library",
  2096. "autoload": {
  2097. "psr-4": {
  2098. "GrahamCampbell\\ResultType\\": "src/"
  2099. }
  2100. },
  2101. "notification-url": "https://packagist.org/downloads/",
  2102. "license": [
  2103. "MIT"
  2104. ],
  2105. "authors": [
  2106. {
  2107. "name": "Graham Campbell",
  2108. "email": "hello@gjcampbell.co.uk",
  2109. "homepage": "https://github.com/GrahamCampbell"
  2110. }
  2111. ],
  2112. "description": "An Implementation Of The Result Type",
  2113. "keywords": [
  2114. "Graham Campbell",
  2115. "GrahamCampbell",
  2116. "Result Type",
  2117. "Result-Type",
  2118. "result"
  2119. ],
  2120. "support": {
  2121. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  2122. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.2"
  2123. },
  2124. "funding": [
  2125. {
  2126. "url": "https://github.com/GrahamCampbell",
  2127. "type": "github"
  2128. },
  2129. {
  2130. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  2131. "type": "tidelift"
  2132. }
  2133. ],
  2134. "time": "2023-11-12T22:16:48+00:00"
  2135. },
  2136. {
  2137. "name": "gregwar/captcha",
  2138. "version": "v1.2.1",
  2139. "source": {
  2140. "type": "git",
  2141. "url": "https://github.com/Gregwar/Captcha.git",
  2142. "reference": "229d3cdfe33d6f1349e0aec94a26e9205a6db08e"
  2143. },
  2144. "dist": {
  2145. "type": "zip",
  2146. "url": "https://api.github.com/repos/Gregwar/Captcha/zipball/229d3cdfe33d6f1349e0aec94a26e9205a6db08e",
  2147. "reference": "229d3cdfe33d6f1349e0aec94a26e9205a6db08e",
  2148. "shasum": ""
  2149. },
  2150. "require": {
  2151. "ext-gd": "*",
  2152. "ext-mbstring": "*",
  2153. "php": ">=5.3.0",
  2154. "symfony/finder": "*"
  2155. },
  2156. "require-dev": {
  2157. "phpunit/phpunit": "^6.4"
  2158. },
  2159. "type": "library",
  2160. "autoload": {
  2161. "psr-4": {
  2162. "Gregwar\\": "src/Gregwar"
  2163. }
  2164. },
  2165. "notification-url": "https://packagist.org/downloads/",
  2166. "license": [
  2167. "MIT"
  2168. ],
  2169. "authors": [
  2170. {
  2171. "name": "Grégoire Passault",
  2172. "email": "g.passault@gmail.com",
  2173. "homepage": "http://www.gregwar.com/"
  2174. },
  2175. {
  2176. "name": "Jeremy Livingston",
  2177. "email": "jeremy.j.livingston@gmail.com"
  2178. }
  2179. ],
  2180. "description": "Captcha generator",
  2181. "homepage": "https://github.com/Gregwar/Captcha",
  2182. "keywords": [
  2183. "bot",
  2184. "captcha",
  2185. "spam"
  2186. ],
  2187. "support": {
  2188. "issues": "https://github.com/Gregwar/Captcha/issues",
  2189. "source": "https://github.com/Gregwar/Captcha/tree/v1.2.1"
  2190. },
  2191. "time": "2023-09-26T13:45:37+00:00"
  2192. },
  2193. {
  2194. "name": "guzzlehttp/guzzle",
  2195. "version": "7.8.1",
  2196. "source": {
  2197. "type": "git",
  2198. "url": "https://github.com/guzzle/guzzle.git",
  2199. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104"
  2200. },
  2201. "dist": {
  2202. "type": "zip",
  2203. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104",
  2204. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104",
  2205. "shasum": ""
  2206. },
  2207. "require": {
  2208. "ext-json": "*",
  2209. "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
  2210. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  2211. "php": "^7.2.5 || ^8.0",
  2212. "psr/http-client": "^1.0",
  2213. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  2214. },
  2215. "provide": {
  2216. "psr/http-client-implementation": "1.0"
  2217. },
  2218. "require-dev": {
  2219. "bamarni/composer-bin-plugin": "^1.8.2",
  2220. "ext-curl": "*",
  2221. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  2222. "php-http/message-factory": "^1.1",
  2223. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  2224. "psr/log": "^1.1 || ^2.0 || ^3.0"
  2225. },
  2226. "suggest": {
  2227. "ext-curl": "Required for CURL handler support",
  2228. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  2229. "psr/log": "Required for using the Log middleware"
  2230. },
  2231. "type": "library",
  2232. "extra": {
  2233. "bamarni-bin": {
  2234. "bin-links": true,
  2235. "forward-command": false
  2236. }
  2237. },
  2238. "autoload": {
  2239. "files": [
  2240. "src/functions_include.php"
  2241. ],
  2242. "psr-4": {
  2243. "GuzzleHttp\\": "src/"
  2244. }
  2245. },
  2246. "notification-url": "https://packagist.org/downloads/",
  2247. "license": [
  2248. "MIT"
  2249. ],
  2250. "authors": [
  2251. {
  2252. "name": "Graham Campbell",
  2253. "email": "hello@gjcampbell.co.uk",
  2254. "homepage": "https://github.com/GrahamCampbell"
  2255. },
  2256. {
  2257. "name": "Michael Dowling",
  2258. "email": "mtdowling@gmail.com",
  2259. "homepage": "https://github.com/mtdowling"
  2260. },
  2261. {
  2262. "name": "Jeremy Lindblom",
  2263. "email": "jeremeamia@gmail.com",
  2264. "homepage": "https://github.com/jeremeamia"
  2265. },
  2266. {
  2267. "name": "George Mponos",
  2268. "email": "gmponos@gmail.com",
  2269. "homepage": "https://github.com/gmponos"
  2270. },
  2271. {
  2272. "name": "Tobias Nyholm",
  2273. "email": "tobias.nyholm@gmail.com",
  2274. "homepage": "https://github.com/Nyholm"
  2275. },
  2276. {
  2277. "name": "Márk Sági-Kazár",
  2278. "email": "mark.sagikazar@gmail.com",
  2279. "homepage": "https://github.com/sagikazarmark"
  2280. },
  2281. {
  2282. "name": "Tobias Schultze",
  2283. "email": "webmaster@tubo-world.de",
  2284. "homepage": "https://github.com/Tobion"
  2285. }
  2286. ],
  2287. "description": "Guzzle is a PHP HTTP client library",
  2288. "keywords": [
  2289. "client",
  2290. "curl",
  2291. "framework",
  2292. "http",
  2293. "http client",
  2294. "psr-18",
  2295. "psr-7",
  2296. "rest",
  2297. "web service"
  2298. ],
  2299. "support": {
  2300. "issues": "https://github.com/guzzle/guzzle/issues",
  2301. "source": "https://github.com/guzzle/guzzle/tree/7.8.1"
  2302. },
  2303. "funding": [
  2304. {
  2305. "url": "https://github.com/GrahamCampbell",
  2306. "type": "github"
  2307. },
  2308. {
  2309. "url": "https://github.com/Nyholm",
  2310. "type": "github"
  2311. },
  2312. {
  2313. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  2314. "type": "tidelift"
  2315. }
  2316. ],
  2317. "time": "2023-12-03T20:35:24+00:00"
  2318. },
  2319. {
  2320. "name": "guzzlehttp/promises",
  2321. "version": "2.0.2",
  2322. "source": {
  2323. "type": "git",
  2324. "url": "https://github.com/guzzle/promises.git",
  2325. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223"
  2326. },
  2327. "dist": {
  2328. "type": "zip",
  2329. "url": "https://api.github.com/repos/guzzle/promises/zipball/bbff78d96034045e58e13dedd6ad91b5d1253223",
  2330. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223",
  2331. "shasum": ""
  2332. },
  2333. "require": {
  2334. "php": "^7.2.5 || ^8.0"
  2335. },
  2336. "require-dev": {
  2337. "bamarni/composer-bin-plugin": "^1.8.2",
  2338. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  2339. },
  2340. "type": "library",
  2341. "extra": {
  2342. "bamarni-bin": {
  2343. "bin-links": true,
  2344. "forward-command": false
  2345. }
  2346. },
  2347. "autoload": {
  2348. "psr-4": {
  2349. "GuzzleHttp\\Promise\\": "src/"
  2350. }
  2351. },
  2352. "notification-url": "https://packagist.org/downloads/",
  2353. "license": [
  2354. "MIT"
  2355. ],
  2356. "authors": [
  2357. {
  2358. "name": "Graham Campbell",
  2359. "email": "hello@gjcampbell.co.uk",
  2360. "homepage": "https://github.com/GrahamCampbell"
  2361. },
  2362. {
  2363. "name": "Michael Dowling",
  2364. "email": "mtdowling@gmail.com",
  2365. "homepage": "https://github.com/mtdowling"
  2366. },
  2367. {
  2368. "name": "Tobias Nyholm",
  2369. "email": "tobias.nyholm@gmail.com",
  2370. "homepage": "https://github.com/Nyholm"
  2371. },
  2372. {
  2373. "name": "Tobias Schultze",
  2374. "email": "webmaster@tubo-world.de",
  2375. "homepage": "https://github.com/Tobion"
  2376. }
  2377. ],
  2378. "description": "Guzzle promises library",
  2379. "keywords": [
  2380. "promise"
  2381. ],
  2382. "support": {
  2383. "issues": "https://github.com/guzzle/promises/issues",
  2384. "source": "https://github.com/guzzle/promises/tree/2.0.2"
  2385. },
  2386. "funding": [
  2387. {
  2388. "url": "https://github.com/GrahamCampbell",
  2389. "type": "github"
  2390. },
  2391. {
  2392. "url": "https://github.com/Nyholm",
  2393. "type": "github"
  2394. },
  2395. {
  2396. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  2397. "type": "tidelift"
  2398. }
  2399. ],
  2400. "time": "2023-12-03T20:19:20+00:00"
  2401. },
  2402. {
  2403. "name": "guzzlehttp/psr7",
  2404. "version": "2.6.2",
  2405. "source": {
  2406. "type": "git",
  2407. "url": "https://github.com/guzzle/psr7.git",
  2408. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221"
  2409. },
  2410. "dist": {
  2411. "type": "zip",
  2412. "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221",
  2413. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221",
  2414. "shasum": ""
  2415. },
  2416. "require": {
  2417. "php": "^7.2.5 || ^8.0",
  2418. "psr/http-factory": "^1.0",
  2419. "psr/http-message": "^1.1 || ^2.0",
  2420. "ralouphie/getallheaders": "^3.0"
  2421. },
  2422. "provide": {
  2423. "psr/http-factory-implementation": "1.0",
  2424. "psr/http-message-implementation": "1.0"
  2425. },
  2426. "require-dev": {
  2427. "bamarni/composer-bin-plugin": "^1.8.2",
  2428. "http-interop/http-factory-tests": "^0.9",
  2429. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  2430. },
  2431. "suggest": {
  2432. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  2433. },
  2434. "type": "library",
  2435. "extra": {
  2436. "bamarni-bin": {
  2437. "bin-links": true,
  2438. "forward-command": false
  2439. }
  2440. },
  2441. "autoload": {
  2442. "psr-4": {
  2443. "GuzzleHttp\\Psr7\\": "src/"
  2444. }
  2445. },
  2446. "notification-url": "https://packagist.org/downloads/",
  2447. "license": [
  2448. "MIT"
  2449. ],
  2450. "authors": [
  2451. {
  2452. "name": "Graham Campbell",
  2453. "email": "hello@gjcampbell.co.uk",
  2454. "homepage": "https://github.com/GrahamCampbell"
  2455. },
  2456. {
  2457. "name": "Michael Dowling",
  2458. "email": "mtdowling@gmail.com",
  2459. "homepage": "https://github.com/mtdowling"
  2460. },
  2461. {
  2462. "name": "George Mponos",
  2463. "email": "gmponos@gmail.com",
  2464. "homepage": "https://github.com/gmponos"
  2465. },
  2466. {
  2467. "name": "Tobias Nyholm",
  2468. "email": "tobias.nyholm@gmail.com",
  2469. "homepage": "https://github.com/Nyholm"
  2470. },
  2471. {
  2472. "name": "Márk Sági-Kazár",
  2473. "email": "mark.sagikazar@gmail.com",
  2474. "homepage": "https://github.com/sagikazarmark"
  2475. },
  2476. {
  2477. "name": "Tobias Schultze",
  2478. "email": "webmaster@tubo-world.de",
  2479. "homepage": "https://github.com/Tobion"
  2480. },
  2481. {
  2482. "name": "Márk Sági-Kazár",
  2483. "email": "mark.sagikazar@gmail.com",
  2484. "homepage": "https://sagikazarmark.hu"
  2485. }
  2486. ],
  2487. "description": "PSR-7 message implementation that also provides common utility methods",
  2488. "keywords": [
  2489. "http",
  2490. "message",
  2491. "psr-7",
  2492. "request",
  2493. "response",
  2494. "stream",
  2495. "uri",
  2496. "url"
  2497. ],
  2498. "support": {
  2499. "issues": "https://github.com/guzzle/psr7/issues",
  2500. "source": "https://github.com/guzzle/psr7/tree/2.6.2"
  2501. },
  2502. "funding": [
  2503. {
  2504. "url": "https://github.com/GrahamCampbell",
  2505. "type": "github"
  2506. },
  2507. {
  2508. "url": "https://github.com/Nyholm",
  2509. "type": "github"
  2510. },
  2511. {
  2512. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  2513. "type": "tidelift"
  2514. }
  2515. ],
  2516. "time": "2023-12-03T20:05:35+00:00"
  2517. },
  2518. {
  2519. "name": "hanson/foundation-sdk",
  2520. "version": "5.0.2",
  2521. "source": {
  2522. "type": "git",
  2523. "url": "https://github.com/Hanson/foundation-sdk.git",
  2524. "reference": "cffcef228937105b8c87c1376548b56f3e0564a4"
  2525. },
  2526. "dist": {
  2527. "type": "zip",
  2528. "url": "https://api.github.com/repos/Hanson/foundation-sdk/zipball/cffcef228937105b8c87c1376548b56f3e0564a4",
  2529. "reference": "cffcef228937105b8c87c1376548b56f3e0564a4",
  2530. "shasum": "",
  2531. "mirrors": [
  2532. {
  2533. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2534. "preferred": true
  2535. }
  2536. ]
  2537. },
  2538. "require": {
  2539. "doctrine/cache": "^1.6",
  2540. "ext-curl": "*",
  2541. "guzzlehttp/guzzle": "^6.2|^7.0",
  2542. "monolog/monolog": "^1.22|^2.0|^3.0",
  2543. "php": "^7.0|^8.0",
  2544. "pimple/pimple": "^3.0",
  2545. "symfony/http-foundation": "^3.3|^4.0|^5.0|^6.0"
  2546. },
  2547. "require-dev": {
  2548. "phpunit/phpunit": "^9.3"
  2549. },
  2550. "type": "library",
  2551. "autoload": {
  2552. "psr-4": {
  2553. "Hanson\\Foundation\\": "src/"
  2554. }
  2555. },
  2556. "notification-url": "https://packagist.org/downloads/",
  2557. "license": [
  2558. "MIT"
  2559. ],
  2560. "authors": [
  2561. {
  2562. "name": "HanSon",
  2563. "email": "h@hanc.cc"
  2564. }
  2565. ],
  2566. "support": {
  2567. "issues": "https://github.com/Hanson/foundation-sdk/issues",
  2568. "source": "https://github.com/Hanson/foundation-sdk/tree/5.0.2"
  2569. },
  2570. "time": "2023-05-31T05:51:32+00:00"
  2571. },
  2572. {
  2573. "name": "jaeger/g-http",
  2574. "version": "V1.7.2",
  2575. "source": {
  2576. "type": "git",
  2577. "url": "https://github.com/jae-jae/GHttp.git",
  2578. "reference": "82585ddd5e2c6651e37ab1d8166efcdbb6b293d4"
  2579. },
  2580. "dist": {
  2581. "type": "zip",
  2582. "url": "https://api.github.com/repos/jae-jae/GHttp/zipball/82585ddd5e2c6651e37ab1d8166efcdbb6b293d4",
  2583. "reference": "82585ddd5e2c6651e37ab1d8166efcdbb6b293d4",
  2584. "shasum": ""
  2585. },
  2586. "require": {
  2587. "cache/filesystem-adapter": "^1",
  2588. "guzzlehttp/guzzle": "^6.0 | ^7.0"
  2589. },
  2590. "type": "library",
  2591. "autoload": {
  2592. "psr-4": {
  2593. "Jaeger\\": "src"
  2594. }
  2595. },
  2596. "notification-url": "https://packagist.org/downloads/",
  2597. "license": [
  2598. "MIT"
  2599. ],
  2600. "authors": [
  2601. {
  2602. "name": "Jaeger",
  2603. "email": "JaegerCode@gmail.com"
  2604. }
  2605. ],
  2606. "description": "Simple Http client base on GuzzleHttp",
  2607. "support": {
  2608. "issues": "https://github.com/jae-jae/GHttp/issues",
  2609. "source": "https://github.com/jae-jae/GHttp/tree/V1.7.2"
  2610. },
  2611. "time": "2021-08-08T04:59:44+00:00"
  2612. },
  2613. {
  2614. "name": "jaeger/phpquery-single",
  2615. "version": "1.1.1",
  2616. "source": {
  2617. "type": "git",
  2618. "url": "https://github.com/jae-jae/phpQuery-single.git",
  2619. "reference": "39a650ade692a6b480c22220dce0c198d6a946fb"
  2620. },
  2621. "dist": {
  2622. "type": "zip",
  2623. "url": "https://api.github.com/repos/jae-jae/phpQuery-single/zipball/39a650ade692a6b480c22220dce0c198d6a946fb",
  2624. "reference": "39a650ade692a6b480c22220dce0c198d6a946fb",
  2625. "shasum": ""
  2626. },
  2627. "require": {
  2628. "php": ">=5.3.0"
  2629. },
  2630. "type": "library",
  2631. "autoload": {
  2632. "classmap": [
  2633. "phpQuery.php"
  2634. ]
  2635. },
  2636. "notification-url": "https://packagist.org/downloads/",
  2637. "license": [
  2638. "MIT"
  2639. ],
  2640. "authors": [
  2641. {
  2642. "name": "Tobiasz Cudnik",
  2643. "email": "tobiasz.cudnik@gmail.com",
  2644. "homepage": "https://github.com/TobiaszCudnik",
  2645. "role": "Developer"
  2646. },
  2647. {
  2648. "name": "Jaeger",
  2649. "role": "Packager"
  2650. }
  2651. ],
  2652. "description": "phpQuery单文件版本,是Querylist的依赖(http://querylist.cc/),phpQuery项目主页:http://code.google.com/p/phpquery/",
  2653. "homepage": "http://code.google.com/p/phpquery/",
  2654. "support": {
  2655. "issues": "https://github.com/jae-jae/phpQuery-single/issues",
  2656. "source": "https://github.com/jae-jae/phpQuery-single/tree/1.1.1"
  2657. },
  2658. "time": "2022-03-26T15:01:16+00:00"
  2659. },
  2660. {
  2661. "name": "jaeger/querylist",
  2662. "version": "V4.2.8",
  2663. "source": {
  2664. "type": "git",
  2665. "url": "https://github.com/jae-jae/QueryList.git",
  2666. "reference": "39dc0ca9c668bec7a793e20472ccd7d26ef89ea4"
  2667. },
  2668. "dist": {
  2669. "type": "zip",
  2670. "url": "https://api.github.com/repos/jae-jae/QueryList/zipball/39dc0ca9c668bec7a793e20472ccd7d26ef89ea4",
  2671. "reference": "39dc0ca9c668bec7a793e20472ccd7d26ef89ea4",
  2672. "shasum": ""
  2673. },
  2674. "require": {
  2675. "ext-dom": "*",
  2676. "jaeger/g-http": "^1.1",
  2677. "jaeger/phpquery-single": "^1",
  2678. "php": ">=7.1",
  2679. "tightenco/collect": ">5.0"
  2680. },
  2681. "require-dev": {
  2682. "phpunit/phpunit": "^8.5",
  2683. "symfony/var-dumper": "^3.3"
  2684. },
  2685. "type": "library",
  2686. "autoload": {
  2687. "psr-4": {
  2688. "QL\\": "src"
  2689. }
  2690. },
  2691. "notification-url": "https://packagist.org/downloads/",
  2692. "license": [
  2693. "MIT"
  2694. ],
  2695. "authors": [
  2696. {
  2697. "name": "Jaeger",
  2698. "email": "JaegerCode@gmail.com"
  2699. }
  2700. ],
  2701. "description": "Simple, elegant, extensible PHP Web Scraper (crawler/spider),Use the css3 dom selector,Based on phpQuery! 简洁、优雅、可扩展的PHP采集工具(爬虫),基于phpQuery。",
  2702. "homepage": "http://querylist.cc",
  2703. "keywords": [
  2704. "QueryList",
  2705. "phpQuery",
  2706. "spider"
  2707. ],
  2708. "support": {
  2709. "issues": "https://github.com/jae-jae/QueryList/issues",
  2710. "source": "https://github.com/jae-jae/QueryList/tree/V4.2.8"
  2711. },
  2712. "funding": [
  2713. {
  2714. "url": "https://opencollective.com/querylist",
  2715. "type": "open_collective"
  2716. }
  2717. ],
  2718. "time": "2021-07-05T06:07:58+00:00"
  2719. },
  2720. {
  2721. "name": "laravel/framework",
  2722. "version": "v8.83.27",
  2723. "source": {
  2724. "type": "git",
  2725. "url": "https://github.com/laravel/framework.git",
  2726. "reference": "e1afe088b4ca613fb96dc57e6d8dbcb8cc2c6b49"
  2727. },
  2728. "dist": {
  2729. "type": "zip",
  2730. "url": "https://api.github.com/repos/laravel/framework/zipball/e1afe088b4ca613fb96dc57e6d8dbcb8cc2c6b49",
  2731. "reference": "e1afe088b4ca613fb96dc57e6d8dbcb8cc2c6b49",
  2732. "shasum": ""
  2733. },
  2734. "require": {
  2735. "doctrine/inflector": "^1.4|^2.0",
  2736. "dragonmantank/cron-expression": "^3.0.2",
  2737. "egulias/email-validator": "^2.1.10",
  2738. "ext-json": "*",
  2739. "ext-mbstring": "*",
  2740. "ext-openssl": "*",
  2741. "laravel/serializable-closure": "^1.0",
  2742. "league/commonmark": "^1.3|^2.0.2",
  2743. "league/flysystem": "^1.1",
  2744. "monolog/monolog": "^2.0",
  2745. "nesbot/carbon": "^2.53.1",
  2746. "opis/closure": "^3.6",
  2747. "php": "^7.3|^8.0",
  2748. "psr/container": "^1.0",
  2749. "psr/log": "^1.0|^2.0",
  2750. "psr/simple-cache": "^1.0",
  2751. "ramsey/uuid": "^4.2.2",
  2752. "swiftmailer/swiftmailer": "^6.3",
  2753. "symfony/console": "^5.4",
  2754. "symfony/error-handler": "^5.4",
  2755. "symfony/finder": "^5.4",
  2756. "symfony/http-foundation": "^5.4",
  2757. "symfony/http-kernel": "^5.4",
  2758. "symfony/mime": "^5.4",
  2759. "symfony/process": "^5.4",
  2760. "symfony/routing": "^5.4",
  2761. "symfony/var-dumper": "^5.4",
  2762. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  2763. "vlucas/phpdotenv": "^5.4.1",
  2764. "voku/portable-ascii": "^1.6.1"
  2765. },
  2766. "conflict": {
  2767. "tightenco/collect": "<5.5.33"
  2768. },
  2769. "provide": {
  2770. "psr/container-implementation": "1.0",
  2771. "psr/simple-cache-implementation": "1.0"
  2772. },
  2773. "replace": {
  2774. "illuminate/auth": "self.version",
  2775. "illuminate/broadcasting": "self.version",
  2776. "illuminate/bus": "self.version",
  2777. "illuminate/cache": "self.version",
  2778. "illuminate/collections": "self.version",
  2779. "illuminate/config": "self.version",
  2780. "illuminate/console": "self.version",
  2781. "illuminate/container": "self.version",
  2782. "illuminate/contracts": "self.version",
  2783. "illuminate/cookie": "self.version",
  2784. "illuminate/database": "self.version",
  2785. "illuminate/encryption": "self.version",
  2786. "illuminate/events": "self.version",
  2787. "illuminate/filesystem": "self.version",
  2788. "illuminate/hashing": "self.version",
  2789. "illuminate/http": "self.version",
  2790. "illuminate/log": "self.version",
  2791. "illuminate/macroable": "self.version",
  2792. "illuminate/mail": "self.version",
  2793. "illuminate/notifications": "self.version",
  2794. "illuminate/pagination": "self.version",
  2795. "illuminate/pipeline": "self.version",
  2796. "illuminate/queue": "self.version",
  2797. "illuminate/redis": "self.version",
  2798. "illuminate/routing": "self.version",
  2799. "illuminate/session": "self.version",
  2800. "illuminate/support": "self.version",
  2801. "illuminate/testing": "self.version",
  2802. "illuminate/translation": "self.version",
  2803. "illuminate/validation": "self.version",
  2804. "illuminate/view": "self.version"
  2805. },
  2806. "require-dev": {
  2807. "aws/aws-sdk-php": "^3.198.1",
  2808. "doctrine/dbal": "^2.13.3|^3.1.4",
  2809. "filp/whoops": "^2.14.3",
  2810. "guzzlehttp/guzzle": "^6.5.5|^7.0.1",
  2811. "league/flysystem-cached-adapter": "^1.0",
  2812. "mockery/mockery": "^1.4.4",
  2813. "orchestra/testbench-core": "^6.27",
  2814. "pda/pheanstalk": "^4.0",
  2815. "phpunit/phpunit": "^8.5.19|^9.5.8",
  2816. "predis/predis": "^1.1.9",
  2817. "symfony/cache": "^5.4"
  2818. },
  2819. "suggest": {
  2820. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  2821. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.198.1).",
  2822. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  2823. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
  2824. "ext-bcmath": "Required to use the multiple_of validation rule.",
  2825. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2826. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  2827. "ext-memcached": "Required to use the memcache cache driver.",
  2828. "ext-pcntl": "Required to use all features of the queue worker.",
  2829. "ext-posix": "Required to use all features of the queue worker.",
  2830. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  2831. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2832. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  2833. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.5.5|^7.0.1).",
  2834. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  2835. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  2836. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  2837. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  2838. "mockery/mockery": "Required to use mocking (^1.4.4).",
  2839. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  2840. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  2841. "phpunit/phpunit": "Required to use assertions and run tests (^8.5.19|^9.5.8).",
  2842. "predis/predis": "Required to use the predis connector (^1.1.9).",
  2843. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  2844. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0|^5.0|^6.0|^7.0).",
  2845. "symfony/cache": "Required to PSR-6 cache bridge (^5.4).",
  2846. "symfony/filesystem": "Required to enable support for relative symbolic links (^5.4).",
  2847. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  2848. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  2849. },
  2850. "type": "library",
  2851. "extra": {
  2852. "branch-alias": {
  2853. "dev-master": "8.x-dev"
  2854. }
  2855. },
  2856. "autoload": {
  2857. "files": [
  2858. "src/Illuminate/Collections/helpers.php",
  2859. "src/Illuminate/Events/functions.php",
  2860. "src/Illuminate/Foundation/helpers.php",
  2861. "src/Illuminate/Support/helpers.php"
  2862. ],
  2863. "psr-4": {
  2864. "Illuminate\\": "src/Illuminate/",
  2865. "Illuminate\\Support\\": [
  2866. "src/Illuminate/Macroable/",
  2867. "src/Illuminate/Collections/"
  2868. ]
  2869. }
  2870. },
  2871. "notification-url": "https://packagist.org/downloads/",
  2872. "license": [
  2873. "MIT"
  2874. ],
  2875. "authors": [
  2876. {
  2877. "name": "Taylor Otwell",
  2878. "email": "taylor@laravel.com"
  2879. }
  2880. ],
  2881. "description": "The Laravel Framework.",
  2882. "homepage": "https://laravel.com",
  2883. "keywords": [
  2884. "framework",
  2885. "laravel"
  2886. ],
  2887. "support": {
  2888. "issues": "https://github.com/laravel/framework/issues",
  2889. "source": "https://github.com/laravel/framework"
  2890. },
  2891. "time": "2022-12-08T15:28:55+00:00"
  2892. },
  2893. {
  2894. "name": "laravel/serializable-closure",
  2895. "version": "v1.3.3",
  2896. "source": {
  2897. "type": "git",
  2898. "url": "https://github.com/laravel/serializable-closure.git",
  2899. "reference": "3dbf8a8e914634c48d389c1234552666b3d43754"
  2900. },
  2901. "dist": {
  2902. "type": "zip",
  2903. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/3dbf8a8e914634c48d389c1234552666b3d43754",
  2904. "reference": "3dbf8a8e914634c48d389c1234552666b3d43754",
  2905. "shasum": ""
  2906. },
  2907. "require": {
  2908. "php": "^7.3|^8.0"
  2909. },
  2910. "require-dev": {
  2911. "nesbot/carbon": "^2.61",
  2912. "pestphp/pest": "^1.21.3",
  2913. "phpstan/phpstan": "^1.8.2",
  2914. "symfony/var-dumper": "^5.4.11"
  2915. },
  2916. "type": "library",
  2917. "extra": {
  2918. "branch-alias": {
  2919. "dev-master": "1.x-dev"
  2920. }
  2921. },
  2922. "autoload": {
  2923. "psr-4": {
  2924. "Laravel\\SerializableClosure\\": "src/"
  2925. }
  2926. },
  2927. "notification-url": "https://packagist.org/downloads/",
  2928. "license": [
  2929. "MIT"
  2930. ],
  2931. "authors": [
  2932. {
  2933. "name": "Taylor Otwell",
  2934. "email": "taylor@laravel.com"
  2935. },
  2936. {
  2937. "name": "Nuno Maduro",
  2938. "email": "nuno@laravel.com"
  2939. }
  2940. ],
  2941. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  2942. "keywords": [
  2943. "closure",
  2944. "laravel",
  2945. "serializable"
  2946. ],
  2947. "support": {
  2948. "issues": "https://github.com/laravel/serializable-closure/issues",
  2949. "source": "https://github.com/laravel/serializable-closure"
  2950. },
  2951. "time": "2023-11-08T14:08:06+00:00"
  2952. },
  2953. {
  2954. "name": "laravel/socialite",
  2955. "version": "v5.11.0",
  2956. "source": {
  2957. "type": "git",
  2958. "url": "https://github.com/laravel/socialite.git",
  2959. "reference": "4f6a8af6f3f7c18da03d19842dd0514315501c10"
  2960. },
  2961. "dist": {
  2962. "type": "zip",
  2963. "url": "https://api.github.com/repos/laravel/socialite/zipball/4f6a8af6f3f7c18da03d19842dd0514315501c10",
  2964. "reference": "4f6a8af6f3f7c18da03d19842dd0514315501c10",
  2965. "shasum": ""
  2966. },
  2967. "require": {
  2968. "ext-json": "*",
  2969. "guzzlehttp/guzzle": "^6.0|^7.0",
  2970. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2971. "illuminate/http": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2972. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2973. "league/oauth1-client": "^1.10.1",
  2974. "php": "^7.2|^8.0"
  2975. },
  2976. "require-dev": {
  2977. "mockery/mockery": "^1.0",
  2978. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0",
  2979. "phpstan/phpstan": "^1.10",
  2980. "phpunit/phpunit": "^8.0|^9.3|^10.4"
  2981. },
  2982. "type": "library",
  2983. "extra": {
  2984. "branch-alias": {
  2985. "dev-master": "5.x-dev"
  2986. },
  2987. "laravel": {
  2988. "providers": [
  2989. "Laravel\\Socialite\\SocialiteServiceProvider"
  2990. ],
  2991. "aliases": {
  2992. "Socialite": "Laravel\\Socialite\\Facades\\Socialite"
  2993. }
  2994. }
  2995. },
  2996. "autoload": {
  2997. "psr-4": {
  2998. "Laravel\\Socialite\\": "src/"
  2999. }
  3000. },
  3001. "notification-url": "https://packagist.org/downloads/",
  3002. "license": [
  3003. "MIT"
  3004. ],
  3005. "authors": [
  3006. {
  3007. "name": "Taylor Otwell",
  3008. "email": "taylor@laravel.com"
  3009. }
  3010. ],
  3011. "description": "Laravel wrapper around OAuth 1 & OAuth 2 libraries.",
  3012. "homepage": "https://laravel.com",
  3013. "keywords": [
  3014. "laravel",
  3015. "oauth"
  3016. ],
  3017. "support": {
  3018. "issues": "https://github.com/laravel/socialite/issues",
  3019. "source": "https://github.com/laravel/socialite"
  3020. },
  3021. "time": "2023-12-02T18:22:36+00:00"
  3022. },
  3023. {
  3024. "name": "laravel/tinker",
  3025. "version": "v2.8.2",
  3026. "source": {
  3027. "type": "git",
  3028. "url": "https://github.com/laravel/tinker.git",
  3029. "reference": "b936d415b252b499e8c3b1f795cd4fc20f57e1f3"
  3030. },
  3031. "dist": {
  3032. "type": "zip",
  3033. "url": "https://api.github.com/repos/laravel/tinker/zipball/b936d415b252b499e8c3b1f795cd4fc20f57e1f3",
  3034. "reference": "b936d415b252b499e8c3b1f795cd4fc20f57e1f3",
  3035. "shasum": ""
  3036. },
  3037. "require": {
  3038. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0",
  3039. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0",
  3040. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
  3041. "php": "^7.2.5|^8.0",
  3042. "psy/psysh": "^0.10.4|^0.11.1",
  3043. "symfony/var-dumper": "^4.3.4|^5.0|^6.0"
  3044. },
  3045. "require-dev": {
  3046. "mockery/mockery": "~1.3.3|^1.4.2",
  3047. "phpstan/phpstan": "^1.10",
  3048. "phpunit/phpunit": "^8.5.8|^9.3.3"
  3049. },
  3050. "suggest": {
  3051. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0)."
  3052. },
  3053. "type": "library",
  3054. "extra": {
  3055. "branch-alias": {
  3056. "dev-master": "2.x-dev"
  3057. },
  3058. "laravel": {
  3059. "providers": [
  3060. "Laravel\\Tinker\\TinkerServiceProvider"
  3061. ]
  3062. }
  3063. },
  3064. "autoload": {
  3065. "psr-4": {
  3066. "Laravel\\Tinker\\": "src/"
  3067. }
  3068. },
  3069. "notification-url": "https://packagist.org/downloads/",
  3070. "license": [
  3071. "MIT"
  3072. ],
  3073. "authors": [
  3074. {
  3075. "name": "Taylor Otwell",
  3076. "email": "taylor@laravel.com"
  3077. }
  3078. ],
  3079. "description": "Powerful REPL for the Laravel framework.",
  3080. "keywords": [
  3081. "REPL",
  3082. "Tinker",
  3083. "laravel",
  3084. "psysh"
  3085. ],
  3086. "support": {
  3087. "issues": "https://github.com/laravel/tinker/issues",
  3088. "source": "https://github.com/laravel/tinker/tree/v2.8.2"
  3089. },
  3090. "time": "2023-08-15T14:27:00+00:00"
  3091. },
  3092. {
  3093. "name": "league/commonmark",
  3094. "version": "2.4.1",
  3095. "source": {
  3096. "type": "git",
  3097. "url": "https://github.com/thephpleague/commonmark.git",
  3098. "reference": "3669d6d5f7a47a93c08ddff335e6d945481a1dd5"
  3099. },
  3100. "dist": {
  3101. "type": "zip",
  3102. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/3669d6d5f7a47a93c08ddff335e6d945481a1dd5",
  3103. "reference": "3669d6d5f7a47a93c08ddff335e6d945481a1dd5",
  3104. "shasum": ""
  3105. },
  3106. "require": {
  3107. "ext-mbstring": "*",
  3108. "league/config": "^1.1.1",
  3109. "php": "^7.4 || ^8.0",
  3110. "psr/event-dispatcher": "^1.0",
  3111. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  3112. "symfony/polyfill-php80": "^1.16"
  3113. },
  3114. "require-dev": {
  3115. "cebe/markdown": "^1.0",
  3116. "commonmark/cmark": "0.30.0",
  3117. "commonmark/commonmark.js": "0.30.0",
  3118. "composer/package-versions-deprecated": "^1.8",
  3119. "embed/embed": "^4.4",
  3120. "erusev/parsedown": "^1.0",
  3121. "ext-json": "*",
  3122. "github/gfm": "0.29.0",
  3123. "michelf/php-markdown": "^1.4 || ^2.0",
  3124. "nyholm/psr7": "^1.5",
  3125. "phpstan/phpstan": "^1.8.2",
  3126. "phpunit/phpunit": "^9.5.21",
  3127. "scrutinizer/ocular": "^1.8.1",
  3128. "symfony/finder": "^5.3 | ^6.0",
  3129. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0",
  3130. "unleashedtech/php-coding-standard": "^3.1.1",
  3131. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  3132. },
  3133. "suggest": {
  3134. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  3135. },
  3136. "type": "library",
  3137. "extra": {
  3138. "branch-alias": {
  3139. "dev-main": "2.5-dev"
  3140. }
  3141. },
  3142. "autoload": {
  3143. "psr-4": {
  3144. "League\\CommonMark\\": "src"
  3145. }
  3146. },
  3147. "notification-url": "https://packagist.org/downloads/",
  3148. "license": [
  3149. "BSD-3-Clause"
  3150. ],
  3151. "authors": [
  3152. {
  3153. "name": "Colin O'Dell",
  3154. "email": "colinodell@gmail.com",
  3155. "homepage": "https://www.colinodell.com",
  3156. "role": "Lead Developer"
  3157. }
  3158. ],
  3159. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  3160. "homepage": "https://commonmark.thephpleague.com",
  3161. "keywords": [
  3162. "commonmark",
  3163. "flavored",
  3164. "gfm",
  3165. "github",
  3166. "github-flavored",
  3167. "markdown",
  3168. "md",
  3169. "parser"
  3170. ],
  3171. "support": {
  3172. "docs": "https://commonmark.thephpleague.com/",
  3173. "forum": "https://github.com/thephpleague/commonmark/discussions",
  3174. "issues": "https://github.com/thephpleague/commonmark/issues",
  3175. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  3176. "source": "https://github.com/thephpleague/commonmark"
  3177. },
  3178. "funding": [
  3179. {
  3180. "url": "https://www.colinodell.com/sponsor",
  3181. "type": "custom"
  3182. },
  3183. {
  3184. "url": "https://www.paypal.me/colinpodell/10.00",
  3185. "type": "custom"
  3186. },
  3187. {
  3188. "url": "https://github.com/colinodell",
  3189. "type": "github"
  3190. },
  3191. {
  3192. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  3193. "type": "tidelift"
  3194. }
  3195. ],
  3196. "time": "2023-08-30T16:55:00+00:00"
  3197. },
  3198. {
  3199. "name": "league/config",
  3200. "version": "v1.2.0",
  3201. "source": {
  3202. "type": "git",
  3203. "url": "https://github.com/thephpleague/config.git",
  3204. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  3205. },
  3206. "dist": {
  3207. "type": "zip",
  3208. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  3209. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  3210. "shasum": ""
  3211. },
  3212. "require": {
  3213. "dflydev/dot-access-data": "^3.0.1",
  3214. "nette/schema": "^1.2",
  3215. "php": "^7.4 || ^8.0"
  3216. },
  3217. "require-dev": {
  3218. "phpstan/phpstan": "^1.8.2",
  3219. "phpunit/phpunit": "^9.5.5",
  3220. "scrutinizer/ocular": "^1.8.1",
  3221. "unleashedtech/php-coding-standard": "^3.1",
  3222. "vimeo/psalm": "^4.7.3"
  3223. },
  3224. "type": "library",
  3225. "extra": {
  3226. "branch-alias": {
  3227. "dev-main": "1.2-dev"
  3228. }
  3229. },
  3230. "autoload": {
  3231. "psr-4": {
  3232. "League\\Config\\": "src"
  3233. }
  3234. },
  3235. "notification-url": "https://packagist.org/downloads/",
  3236. "license": [
  3237. "BSD-3-Clause"
  3238. ],
  3239. "authors": [
  3240. {
  3241. "name": "Colin O'Dell",
  3242. "email": "colinodell@gmail.com",
  3243. "homepage": "https://www.colinodell.com",
  3244. "role": "Lead Developer"
  3245. }
  3246. ],
  3247. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  3248. "homepage": "https://config.thephpleague.com",
  3249. "keywords": [
  3250. "array",
  3251. "config",
  3252. "configuration",
  3253. "dot",
  3254. "dot-access",
  3255. "nested",
  3256. "schema"
  3257. ],
  3258. "support": {
  3259. "docs": "https://config.thephpleague.com/",
  3260. "issues": "https://github.com/thephpleague/config/issues",
  3261. "rss": "https://github.com/thephpleague/config/releases.atom",
  3262. "source": "https://github.com/thephpleague/config"
  3263. },
  3264. "funding": [
  3265. {
  3266. "url": "https://www.colinodell.com/sponsor",
  3267. "type": "custom"
  3268. },
  3269. {
  3270. "url": "https://www.paypal.me/colinpodell/10.00",
  3271. "type": "custom"
  3272. },
  3273. {
  3274. "url": "https://github.com/colinodell",
  3275. "type": "github"
  3276. }
  3277. ],
  3278. "time": "2022-12-11T20:36:23+00:00"
  3279. },
  3280. {
  3281. "name": "league/flysystem",
  3282. "version": "1.1.10",
  3283. "source": {
  3284. "type": "git",
  3285. "url": "https://github.com/thephpleague/flysystem.git",
  3286. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1"
  3287. },
  3288. "dist": {
  3289. "type": "zip",
  3290. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/3239285c825c152bcc315fe0e87d6b55f5972ed1",
  3291. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1",
  3292. "shasum": ""
  3293. },
  3294. "require": {
  3295. "ext-fileinfo": "*",
  3296. "league/mime-type-detection": "^1.3",
  3297. "php": "^7.2.5 || ^8.0"
  3298. },
  3299. "conflict": {
  3300. "league/flysystem-sftp": "<1.0.6"
  3301. },
  3302. "require-dev": {
  3303. "phpspec/prophecy": "^1.11.1",
  3304. "phpunit/phpunit": "^8.5.8"
  3305. },
  3306. "suggest": {
  3307. "ext-ftp": "Allows you to use FTP server storage",
  3308. "ext-openssl": "Allows you to use FTPS server storage",
  3309. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  3310. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  3311. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  3312. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  3313. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  3314. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  3315. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  3316. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  3317. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  3318. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  3319. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  3320. },
  3321. "type": "library",
  3322. "extra": {
  3323. "branch-alias": {
  3324. "dev-master": "1.1-dev"
  3325. }
  3326. },
  3327. "autoload": {
  3328. "psr-4": {
  3329. "League\\Flysystem\\": "src/"
  3330. }
  3331. },
  3332. "notification-url": "https://packagist.org/downloads/",
  3333. "license": [
  3334. "MIT"
  3335. ],
  3336. "authors": [
  3337. {
  3338. "name": "Frank de Jonge",
  3339. "email": "info@frenky.net"
  3340. }
  3341. ],
  3342. "description": "Filesystem abstraction: Many filesystems, one API.",
  3343. "keywords": [
  3344. "Cloud Files",
  3345. "WebDAV",
  3346. "abstraction",
  3347. "aws",
  3348. "cloud",
  3349. "copy.com",
  3350. "dropbox",
  3351. "file systems",
  3352. "files",
  3353. "filesystem",
  3354. "filesystems",
  3355. "ftp",
  3356. "rackspace",
  3357. "remote",
  3358. "s3",
  3359. "sftp",
  3360. "storage"
  3361. ],
  3362. "support": {
  3363. "issues": "https://github.com/thephpleague/flysystem/issues",
  3364. "source": "https://github.com/thephpleague/flysystem/tree/1.1.10"
  3365. },
  3366. "funding": [
  3367. {
  3368. "url": "https://offset.earth/frankdejonge",
  3369. "type": "other"
  3370. }
  3371. ],
  3372. "time": "2022-10-04T09:16:37+00:00"
  3373. },
  3374. {
  3375. "name": "league/mime-type-detection",
  3376. "version": "1.14.0",
  3377. "source": {
  3378. "type": "git",
  3379. "url": "https://github.com/thephpleague/mime-type-detection.git",
  3380. "reference": "b6a5854368533df0295c5761a0253656a2e52d9e"
  3381. },
  3382. "dist": {
  3383. "type": "zip",
  3384. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/b6a5854368533df0295c5761a0253656a2e52d9e",
  3385. "reference": "b6a5854368533df0295c5761a0253656a2e52d9e",
  3386. "shasum": ""
  3387. },
  3388. "require": {
  3389. "ext-fileinfo": "*",
  3390. "php": "^7.4 || ^8.0"
  3391. },
  3392. "require-dev": {
  3393. "friendsofphp/php-cs-fixer": "^3.2",
  3394. "phpstan/phpstan": "^0.12.68",
  3395. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  3396. },
  3397. "type": "library",
  3398. "autoload": {
  3399. "psr-4": {
  3400. "League\\MimeTypeDetection\\": "src"
  3401. }
  3402. },
  3403. "notification-url": "https://packagist.org/downloads/",
  3404. "license": [
  3405. "MIT"
  3406. ],
  3407. "authors": [
  3408. {
  3409. "name": "Frank de Jonge",
  3410. "email": "info@frankdejonge.nl"
  3411. }
  3412. ],
  3413. "description": "Mime-type detection for Flysystem",
  3414. "support": {
  3415. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  3416. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.14.0"
  3417. },
  3418. "funding": [
  3419. {
  3420. "url": "https://github.com/frankdejonge",
  3421. "type": "github"
  3422. },
  3423. {
  3424. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  3425. "type": "tidelift"
  3426. }
  3427. ],
  3428. "time": "2023-10-17T14:13:20+00:00"
  3429. },
  3430. {
  3431. "name": "league/oauth1-client",
  3432. "version": "v1.10.1",
  3433. "source": {
  3434. "type": "git",
  3435. "url": "https://github.com/thephpleague/oauth1-client.git",
  3436. "reference": "d6365b901b5c287dd41f143033315e2f777e1167"
  3437. },
  3438. "dist": {
  3439. "type": "zip",
  3440. "url": "https://api.github.com/repos/thephpleague/oauth1-client/zipball/d6365b901b5c287dd41f143033315e2f777e1167",
  3441. "reference": "d6365b901b5c287dd41f143033315e2f777e1167",
  3442. "shasum": ""
  3443. },
  3444. "require": {
  3445. "ext-json": "*",
  3446. "ext-openssl": "*",
  3447. "guzzlehttp/guzzle": "^6.0|^7.0",
  3448. "guzzlehttp/psr7": "^1.7|^2.0",
  3449. "php": ">=7.1||>=8.0"
  3450. },
  3451. "require-dev": {
  3452. "ext-simplexml": "*",
  3453. "friendsofphp/php-cs-fixer": "^2.17",
  3454. "mockery/mockery": "^1.3.3",
  3455. "phpstan/phpstan": "^0.12.42",
  3456. "phpunit/phpunit": "^7.5||9.5"
  3457. },
  3458. "suggest": {
  3459. "ext-simplexml": "For decoding XML-based responses."
  3460. },
  3461. "type": "library",
  3462. "extra": {
  3463. "branch-alias": {
  3464. "dev-master": "1.0-dev",
  3465. "dev-develop": "2.0-dev"
  3466. }
  3467. },
  3468. "autoload": {
  3469. "psr-4": {
  3470. "League\\OAuth1\\Client\\": "src/"
  3471. }
  3472. },
  3473. "notification-url": "https://packagist.org/downloads/",
  3474. "license": [
  3475. "MIT"
  3476. ],
  3477. "authors": [
  3478. {
  3479. "name": "Ben Corlett",
  3480. "email": "bencorlett@me.com",
  3481. "homepage": "http://www.webcomm.com.au",
  3482. "role": "Developer"
  3483. }
  3484. ],
  3485. "description": "OAuth 1.0 Client Library",
  3486. "keywords": [
  3487. "Authentication",
  3488. "SSO",
  3489. "authorization",
  3490. "bitbucket",
  3491. "identity",
  3492. "idp",
  3493. "oauth",
  3494. "oauth1",
  3495. "single sign on",
  3496. "trello",
  3497. "tumblr",
  3498. "twitter"
  3499. ],
  3500. "support": {
  3501. "issues": "https://github.com/thephpleague/oauth1-client/issues",
  3502. "source": "https://github.com/thephpleague/oauth1-client/tree/v1.10.1"
  3503. },
  3504. "time": "2022-04-15T14:02:14+00:00"
  3505. },
  3506. {
  3507. "name": "lizhichao/one-sm",
  3508. "version": "1.10",
  3509. "source": {
  3510. "type": "git",
  3511. "url": "https://github.com/lizhichao/sm.git",
  3512. "reference": "687a012a44a5bfd4d9143a0234e1060543be455a"
  3513. },
  3514. "dist": {
  3515. "type": "zip",
  3516. "url": "https://api.github.com/repos/lizhichao/sm/zipball/687a012a44a5bfd4d9143a0234e1060543be455a",
  3517. "reference": "687a012a44a5bfd4d9143a0234e1060543be455a",
  3518. "shasum": ""
  3519. },
  3520. "require": {
  3521. "php": ">=5.6"
  3522. },
  3523. "type": "library",
  3524. "autoload": {
  3525. "psr-4": {
  3526. "OneSm\\": "src/"
  3527. }
  3528. },
  3529. "notification-url": "https://packagist.org/downloads/",
  3530. "license": [
  3531. "Apache-2.0"
  3532. ],
  3533. "authors": [
  3534. {
  3535. "name": "tanszhe",
  3536. "email": "1018595261@qq.com"
  3537. }
  3538. ],
  3539. "description": "国密sm3",
  3540. "keywords": [
  3541. "php",
  3542. "sm3"
  3543. ],
  3544. "support": {
  3545. "issues": "https://github.com/lizhichao/sm/issues",
  3546. "source": "https://github.com/lizhichao/sm/tree/1.10"
  3547. },
  3548. "funding": [
  3549. {
  3550. "url": "https://www.vicsdf.com/img/w.jpg",
  3551. "type": "custom"
  3552. },
  3553. {
  3554. "url": "https://www.vicsdf.com/img/z.jpg",
  3555. "type": "custom"
  3556. }
  3557. ],
  3558. "time": "2021-05-26T06:19:22+00:00"
  3559. },
  3560. {
  3561. "name": "maatwebsite/excel",
  3562. "version": "3.1.51",
  3563. "source": {
  3564. "type": "git",
  3565. "url": "https://github.com/SpartnerNL/Laravel-Excel.git",
  3566. "reference": "6d3c78ce6645abada32e03b40dc7f3c561878bc3"
  3567. },
  3568. "dist": {
  3569. "type": "zip",
  3570. "url": "https://api.github.com/repos/SpartnerNL/Laravel-Excel/zipball/6d3c78ce6645abada32e03b40dc7f3c561878bc3",
  3571. "reference": "6d3c78ce6645abada32e03b40dc7f3c561878bc3",
  3572. "shasum": ""
  3573. },
  3574. "require": {
  3575. "composer/semver": "^3.3",
  3576. "ext-json": "*",
  3577. "illuminate/support": "5.8.*||^6.0||^7.0||^8.0||^9.0||^10.0",
  3578. "php": "^7.0||^8.0",
  3579. "phpoffice/phpspreadsheet": "^1.18",
  3580. "psr/simple-cache": "^1.0||^2.0||^3.0"
  3581. },
  3582. "require-dev": {
  3583. "orchestra/testbench": "^6.0||^7.0||^8.0",
  3584. "predis/predis": "^1.1"
  3585. },
  3586. "type": "library",
  3587. "extra": {
  3588. "laravel": {
  3589. "providers": [
  3590. "Maatwebsite\\Excel\\ExcelServiceProvider"
  3591. ],
  3592. "aliases": {
  3593. "Excel": "Maatwebsite\\Excel\\Facades\\Excel"
  3594. }
  3595. }
  3596. },
  3597. "autoload": {
  3598. "psr-4": {
  3599. "Maatwebsite\\Excel\\": "src/"
  3600. }
  3601. },
  3602. "notification-url": "https://packagist.org/downloads/",
  3603. "license": [
  3604. "MIT"
  3605. ],
  3606. "authors": [
  3607. {
  3608. "name": "Patrick Brouwers",
  3609. "email": "patrick@spartner.nl"
  3610. }
  3611. ],
  3612. "description": "Supercharged Excel exports and imports in Laravel",
  3613. "keywords": [
  3614. "PHPExcel",
  3615. "batch",
  3616. "csv",
  3617. "excel",
  3618. "export",
  3619. "import",
  3620. "laravel",
  3621. "php",
  3622. "phpspreadsheet"
  3623. ],
  3624. "support": {
  3625. "issues": "https://github.com/SpartnerNL/Laravel-Excel/issues",
  3626. "source": "https://github.com/SpartnerNL/Laravel-Excel/tree/3.1.51"
  3627. },
  3628. "funding": [
  3629. {
  3630. "url": "https://laravel-excel.com/commercial-support",
  3631. "type": "custom"
  3632. },
  3633. {
  3634. "url": "https://github.com/patrickbrouwers",
  3635. "type": "github"
  3636. }
  3637. ],
  3638. "time": "2023-12-08T12:44:49+00:00"
  3639. },
  3640. {
  3641. "name": "maennchen/zipstream-php",
  3642. "version": "2.4.0",
  3643. "source": {
  3644. "type": "git",
  3645. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  3646. "reference": "3fa72e4c71a43f9e9118752a5c90e476a8dc9eb3"
  3647. },
  3648. "dist": {
  3649. "type": "zip",
  3650. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/3fa72e4c71a43f9e9118752a5c90e476a8dc9eb3",
  3651. "reference": "3fa72e4c71a43f9e9118752a5c90e476a8dc9eb3",
  3652. "shasum": ""
  3653. },
  3654. "require": {
  3655. "ext-mbstring": "*",
  3656. "myclabs/php-enum": "^1.5",
  3657. "php": "^8.0",
  3658. "psr/http-message": "^1.0"
  3659. },
  3660. "require-dev": {
  3661. "ext-zip": "*",
  3662. "friendsofphp/php-cs-fixer": "^3.9",
  3663. "guzzlehttp/guzzle": "^6.5.3 || ^7.2.0",
  3664. "mikey179/vfsstream": "^1.6",
  3665. "php-coveralls/php-coveralls": "^2.4",
  3666. "phpunit/phpunit": "^8.5.8 || ^9.4.2",
  3667. "vimeo/psalm": "^5.0"
  3668. },
  3669. "type": "library",
  3670. "autoload": {
  3671. "psr-4": {
  3672. "ZipStream\\": "src/"
  3673. }
  3674. },
  3675. "notification-url": "https://packagist.org/downloads/",
  3676. "license": [
  3677. "MIT"
  3678. ],
  3679. "authors": [
  3680. {
  3681. "name": "Paul Duncan",
  3682. "email": "pabs@pablotron.org"
  3683. },
  3684. {
  3685. "name": "Jonatan Männchen",
  3686. "email": "jonatan@maennchen.ch"
  3687. },
  3688. {
  3689. "name": "Jesse Donat",
  3690. "email": "donatj@gmail.com"
  3691. },
  3692. {
  3693. "name": "András Kolesár",
  3694. "email": "kolesar@kolesar.hu"
  3695. }
  3696. ],
  3697. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  3698. "keywords": [
  3699. "stream",
  3700. "zip"
  3701. ],
  3702. "support": {
  3703. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  3704. "source": "https://github.com/maennchen/ZipStream-PHP/tree/2.4.0"
  3705. },
  3706. "funding": [
  3707. {
  3708. "url": "https://github.com/maennchen",
  3709. "type": "github"
  3710. },
  3711. {
  3712. "url": "https://opencollective.com/zipstream",
  3713. "type": "open_collective"
  3714. }
  3715. ],
  3716. "time": "2022-12-08T12:29:14+00:00"
  3717. },
  3718. {
  3719. "name": "markbaker/complex",
  3720. "version": "3.0.2",
  3721. "source": {
  3722. "type": "git",
  3723. "url": "https://github.com/MarkBaker/PHPComplex.git",
  3724. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9"
  3725. },
  3726. "dist": {
  3727. "type": "zip",
  3728. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  3729. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  3730. "shasum": ""
  3731. },
  3732. "require": {
  3733. "php": "^7.2 || ^8.0"
  3734. },
  3735. "require-dev": {
  3736. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  3737. "phpcompatibility/php-compatibility": "^9.3",
  3738. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  3739. "squizlabs/php_codesniffer": "^3.7"
  3740. },
  3741. "type": "library",
  3742. "autoload": {
  3743. "psr-4": {
  3744. "Complex\\": "classes/src/"
  3745. }
  3746. },
  3747. "notification-url": "https://packagist.org/downloads/",
  3748. "license": [
  3749. "MIT"
  3750. ],
  3751. "authors": [
  3752. {
  3753. "name": "Mark Baker",
  3754. "email": "mark@lange.demon.co.uk"
  3755. }
  3756. ],
  3757. "description": "PHP Class for working with complex numbers",
  3758. "homepage": "https://github.com/MarkBaker/PHPComplex",
  3759. "keywords": [
  3760. "complex",
  3761. "mathematics"
  3762. ],
  3763. "support": {
  3764. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  3765. "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.2"
  3766. },
  3767. "time": "2022-12-06T16:21:08+00:00"
  3768. },
  3769. {
  3770. "name": "markbaker/matrix",
  3771. "version": "3.0.1",
  3772. "source": {
  3773. "type": "git",
  3774. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  3775. "reference": "728434227fe21be27ff6d86621a1b13107a2562c"
  3776. },
  3777. "dist": {
  3778. "type": "zip",
  3779. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/728434227fe21be27ff6d86621a1b13107a2562c",
  3780. "reference": "728434227fe21be27ff6d86621a1b13107a2562c",
  3781. "shasum": ""
  3782. },
  3783. "require": {
  3784. "php": "^7.1 || ^8.0"
  3785. },
  3786. "require-dev": {
  3787. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  3788. "phpcompatibility/php-compatibility": "^9.3",
  3789. "phpdocumentor/phpdocumentor": "2.*",
  3790. "phploc/phploc": "^4.0",
  3791. "phpmd/phpmd": "2.*",
  3792. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  3793. "sebastian/phpcpd": "^4.0",
  3794. "squizlabs/php_codesniffer": "^3.7"
  3795. },
  3796. "type": "library",
  3797. "autoload": {
  3798. "psr-4": {
  3799. "Matrix\\": "classes/src/"
  3800. }
  3801. },
  3802. "notification-url": "https://packagist.org/downloads/",
  3803. "license": [
  3804. "MIT"
  3805. ],
  3806. "authors": [
  3807. {
  3808. "name": "Mark Baker",
  3809. "email": "mark@demon-angel.eu"
  3810. }
  3811. ],
  3812. "description": "PHP Class for working with matrices",
  3813. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  3814. "keywords": [
  3815. "mathematics",
  3816. "matrix",
  3817. "vector"
  3818. ],
  3819. "support": {
  3820. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  3821. "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.1"
  3822. },
  3823. "time": "2022-12-02T22:17:43+00:00"
  3824. },
  3825. {
  3826. "name": "monolog/monolog",
  3827. "version": "2.9.2",
  3828. "source": {
  3829. "type": "git",
  3830. "url": "https://github.com/Seldaek/monolog.git",
  3831. "reference": "437cb3628f4cf6042cc10ae97fc2b8472e48ca1f"
  3832. },
  3833. "dist": {
  3834. "type": "zip",
  3835. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/437cb3628f4cf6042cc10ae97fc2b8472e48ca1f",
  3836. "reference": "437cb3628f4cf6042cc10ae97fc2b8472e48ca1f",
  3837. "shasum": ""
  3838. },
  3839. "require": {
  3840. "php": ">=7.2",
  3841. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  3842. },
  3843. "provide": {
  3844. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  3845. },
  3846. "require-dev": {
  3847. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  3848. "doctrine/couchdb": "~1.0@dev",
  3849. "elasticsearch/elasticsearch": "^7 || ^8",
  3850. "ext-json": "*",
  3851. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  3852. "guzzlehttp/guzzle": "^7.4",
  3853. "guzzlehttp/psr7": "^2.2",
  3854. "mongodb/mongodb": "^1.8",
  3855. "php-amqplib/php-amqplib": "~2.4 || ^3",
  3856. "phpspec/prophecy": "^1.15",
  3857. "phpstan/phpstan": "^0.12.91",
  3858. "phpunit/phpunit": "^8.5.14",
  3859. "predis/predis": "^1.1 || ^2.0",
  3860. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  3861. "ruflin/elastica": "^7",
  3862. "swiftmailer/swiftmailer": "^5.3|^6.0",
  3863. "symfony/mailer": "^5.4 || ^6",
  3864. "symfony/mime": "^5.4 || ^6"
  3865. },
  3866. "suggest": {
  3867. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  3868. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  3869. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  3870. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  3871. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  3872. "ext-mbstring": "Allow to work properly with unicode symbols",
  3873. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  3874. "ext-openssl": "Required to send log messages using SSL",
  3875. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  3876. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  3877. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  3878. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  3879. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  3880. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  3881. },
  3882. "type": "library",
  3883. "extra": {
  3884. "branch-alias": {
  3885. "dev-main": "2.x-dev"
  3886. }
  3887. },
  3888. "autoload": {
  3889. "psr-4": {
  3890. "Monolog\\": "src/Monolog"
  3891. }
  3892. },
  3893. "notification-url": "https://packagist.org/downloads/",
  3894. "license": [
  3895. "MIT"
  3896. ],
  3897. "authors": [
  3898. {
  3899. "name": "Jordi Boggiano",
  3900. "email": "j.boggiano@seld.be",
  3901. "homepage": "https://seld.be"
  3902. }
  3903. ],
  3904. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  3905. "homepage": "https://github.com/Seldaek/monolog",
  3906. "keywords": [
  3907. "log",
  3908. "logging",
  3909. "psr-3"
  3910. ],
  3911. "support": {
  3912. "issues": "https://github.com/Seldaek/monolog/issues",
  3913. "source": "https://github.com/Seldaek/monolog/tree/2.9.2"
  3914. },
  3915. "funding": [
  3916. {
  3917. "url": "https://github.com/Seldaek",
  3918. "type": "github"
  3919. },
  3920. {
  3921. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  3922. "type": "tidelift"
  3923. }
  3924. ],
  3925. "time": "2023-10-27T15:25:26+00:00"
  3926. },
  3927. {
  3928. "name": "mtdowling/jmespath.php",
  3929. "version": "2.7.0",
  3930. "source": {
  3931. "type": "git",
  3932. "url": "https://github.com/jmespath/jmespath.php.git",
  3933. "reference": "bbb69a935c2cbb0c03d7f481a238027430f6440b"
  3934. },
  3935. "dist": {
  3936. "type": "zip",
  3937. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/bbb69a935c2cbb0c03d7f481a238027430f6440b",
  3938. "reference": "bbb69a935c2cbb0c03d7f481a238027430f6440b",
  3939. "shasum": ""
  3940. },
  3941. "require": {
  3942. "php": "^7.2.5 || ^8.0",
  3943. "symfony/polyfill-mbstring": "^1.17"
  3944. },
  3945. "require-dev": {
  3946. "composer/xdebug-handler": "^3.0.3",
  3947. "phpunit/phpunit": "^8.5.33"
  3948. },
  3949. "bin": [
  3950. "bin/jp.php"
  3951. ],
  3952. "type": "library",
  3953. "extra": {
  3954. "branch-alias": {
  3955. "dev-master": "2.7-dev"
  3956. }
  3957. },
  3958. "autoload": {
  3959. "files": [
  3960. "src/JmesPath.php"
  3961. ],
  3962. "psr-4": {
  3963. "JmesPath\\": "src/"
  3964. }
  3965. },
  3966. "notification-url": "https://packagist.org/downloads/",
  3967. "license": [
  3968. "MIT"
  3969. ],
  3970. "authors": [
  3971. {
  3972. "name": "Graham Campbell",
  3973. "email": "hello@gjcampbell.co.uk",
  3974. "homepage": "https://github.com/GrahamCampbell"
  3975. },
  3976. {
  3977. "name": "Michael Dowling",
  3978. "email": "mtdowling@gmail.com",
  3979. "homepage": "https://github.com/mtdowling"
  3980. }
  3981. ],
  3982. "description": "Declaratively specify how to extract elements from a JSON document",
  3983. "keywords": [
  3984. "json",
  3985. "jsonpath"
  3986. ],
  3987. "support": {
  3988. "issues": "https://github.com/jmespath/jmespath.php/issues",
  3989. "source": "https://github.com/jmespath/jmespath.php/tree/2.7.0"
  3990. },
  3991. "time": "2023-08-25T10:54:48+00:00"
  3992. },
  3993. {
  3994. "name": "myclabs/php-enum",
  3995. "version": "1.8.4",
  3996. "source": {
  3997. "type": "git",
  3998. "url": "https://github.com/myclabs/php-enum.git",
  3999. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483"
  4000. },
  4001. "dist": {
  4002. "type": "zip",
  4003. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/a867478eae49c9f59ece437ae7f9506bfaa27483",
  4004. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483",
  4005. "shasum": ""
  4006. },
  4007. "require": {
  4008. "ext-json": "*",
  4009. "php": "^7.3 || ^8.0"
  4010. },
  4011. "require-dev": {
  4012. "phpunit/phpunit": "^9.5",
  4013. "squizlabs/php_codesniffer": "1.*",
  4014. "vimeo/psalm": "^4.6.2"
  4015. },
  4016. "type": "library",
  4017. "autoload": {
  4018. "psr-4": {
  4019. "MyCLabs\\Enum\\": "src/"
  4020. },
  4021. "classmap": [
  4022. "stubs/Stringable.php"
  4023. ]
  4024. },
  4025. "notification-url": "https://packagist.org/downloads/",
  4026. "license": [
  4027. "MIT"
  4028. ],
  4029. "authors": [
  4030. {
  4031. "name": "PHP Enum contributors",
  4032. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  4033. }
  4034. ],
  4035. "description": "PHP Enum implementation",
  4036. "homepage": "http://github.com/myclabs/php-enum",
  4037. "keywords": [
  4038. "enum"
  4039. ],
  4040. "support": {
  4041. "issues": "https://github.com/myclabs/php-enum/issues",
  4042. "source": "https://github.com/myclabs/php-enum/tree/1.8.4"
  4043. },
  4044. "funding": [
  4045. {
  4046. "url": "https://github.com/mnapoli",
  4047. "type": "github"
  4048. },
  4049. {
  4050. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  4051. "type": "tidelift"
  4052. }
  4053. ],
  4054. "time": "2022-08-04T09:53:51+00:00"
  4055. },
  4056. {
  4057. "name": "nesbot/carbon",
  4058. "version": "2.72.1",
  4059. "source": {
  4060. "type": "git",
  4061. "url": "https://github.com/briannesbitt/Carbon.git",
  4062. "reference": "2b3b3db0a2d0556a177392ff1a3bf5608fa09f78"
  4063. },
  4064. "dist": {
  4065. "type": "zip",
  4066. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/2b3b3db0a2d0556a177392ff1a3bf5608fa09f78",
  4067. "reference": "2b3b3db0a2d0556a177392ff1a3bf5608fa09f78",
  4068. "shasum": ""
  4069. },
  4070. "require": {
  4071. "carbonphp/carbon-doctrine-types": "*",
  4072. "ext-json": "*",
  4073. "php": "^7.1.8 || ^8.0",
  4074. "psr/clock": "^1.0",
  4075. "symfony/polyfill-mbstring": "^1.0",
  4076. "symfony/polyfill-php80": "^1.16",
  4077. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  4078. },
  4079. "provide": {
  4080. "psr/clock-implementation": "1.0"
  4081. },
  4082. "require-dev": {
  4083. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  4084. "doctrine/orm": "^2.7 || ^3.0",
  4085. "friendsofphp/php-cs-fixer": "^3.0",
  4086. "kylekatarnls/multi-tester": "^2.0",
  4087. "ondrejmirtes/better-reflection": "*",
  4088. "phpmd/phpmd": "^2.9",
  4089. "phpstan/extension-installer": "^1.0",
  4090. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  4091. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  4092. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  4093. "squizlabs/php_codesniffer": "^3.4"
  4094. },
  4095. "bin": [
  4096. "bin/carbon"
  4097. ],
  4098. "type": "library",
  4099. "extra": {
  4100. "branch-alias": {
  4101. "dev-3.x": "3.x-dev",
  4102. "dev-master": "2.x-dev"
  4103. },
  4104. "laravel": {
  4105. "providers": [
  4106. "Carbon\\Laravel\\ServiceProvider"
  4107. ]
  4108. },
  4109. "phpstan": {
  4110. "includes": [
  4111. "extension.neon"
  4112. ]
  4113. }
  4114. },
  4115. "autoload": {
  4116. "psr-4": {
  4117. "Carbon\\": "src/Carbon/"
  4118. }
  4119. },
  4120. "notification-url": "https://packagist.org/downloads/",
  4121. "license": [
  4122. "MIT"
  4123. ],
  4124. "authors": [
  4125. {
  4126. "name": "Brian Nesbitt",
  4127. "email": "brian@nesbot.com",
  4128. "homepage": "https://markido.com"
  4129. },
  4130. {
  4131. "name": "kylekatarnls",
  4132. "homepage": "https://github.com/kylekatarnls"
  4133. }
  4134. ],
  4135. "description": "An API extension for DateTime that supports 281 different languages.",
  4136. "homepage": "https://carbon.nesbot.com",
  4137. "keywords": [
  4138. "date",
  4139. "datetime",
  4140. "time"
  4141. ],
  4142. "support": {
  4143. "docs": "https://carbon.nesbot.com/docs",
  4144. "issues": "https://github.com/briannesbitt/Carbon/issues",
  4145. "source": "https://github.com/briannesbitt/Carbon"
  4146. },
  4147. "funding": [
  4148. {
  4149. "url": "https://github.com/sponsors/kylekatarnls",
  4150. "type": "github"
  4151. },
  4152. {
  4153. "url": "https://opencollective.com/Carbon#sponsor",
  4154. "type": "opencollective"
  4155. },
  4156. {
  4157. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  4158. "type": "tidelift"
  4159. }
  4160. ],
  4161. "time": "2023-12-08T23:47:49+00:00"
  4162. },
  4163. {
  4164. "name": "nette/schema",
  4165. "version": "v1.2.5",
  4166. "source": {
  4167. "type": "git",
  4168. "url": "https://github.com/nette/schema.git",
  4169. "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a"
  4170. },
  4171. "dist": {
  4172. "type": "zip",
  4173. "url": "https://api.github.com/repos/nette/schema/zipball/0462f0166e823aad657c9224d0f849ecac1ba10a",
  4174. "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a",
  4175. "shasum": ""
  4176. },
  4177. "require": {
  4178. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  4179. "php": "7.1 - 8.3"
  4180. },
  4181. "require-dev": {
  4182. "nette/tester": "^2.3 || ^2.4",
  4183. "phpstan/phpstan-nette": "^1.0",
  4184. "tracy/tracy": "^2.7"
  4185. },
  4186. "type": "library",
  4187. "extra": {
  4188. "branch-alias": {
  4189. "dev-master": "1.2-dev"
  4190. }
  4191. },
  4192. "autoload": {
  4193. "classmap": [
  4194. "src/"
  4195. ]
  4196. },
  4197. "notification-url": "https://packagist.org/downloads/",
  4198. "license": [
  4199. "BSD-3-Clause",
  4200. "GPL-2.0-only",
  4201. "GPL-3.0-only"
  4202. ],
  4203. "authors": [
  4204. {
  4205. "name": "David Grudl",
  4206. "homepage": "https://davidgrudl.com"
  4207. },
  4208. {
  4209. "name": "Nette Community",
  4210. "homepage": "https://nette.org/contributors"
  4211. }
  4212. ],
  4213. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  4214. "homepage": "https://nette.org",
  4215. "keywords": [
  4216. "config",
  4217. "nette"
  4218. ],
  4219. "support": {
  4220. "issues": "https://github.com/nette/schema/issues",
  4221. "source": "https://github.com/nette/schema/tree/v1.2.5"
  4222. },
  4223. "time": "2023-10-05T20:37:59+00:00"
  4224. },
  4225. {
  4226. "name": "nette/utils",
  4227. "version": "v4.0.3",
  4228. "source": {
  4229. "type": "git",
  4230. "url": "https://github.com/nette/utils.git",
  4231. "reference": "a9d127dd6a203ce6d255b2e2db49759f7506e015"
  4232. },
  4233. "dist": {
  4234. "type": "zip",
  4235. "url": "https://api.github.com/repos/nette/utils/zipball/a9d127dd6a203ce6d255b2e2db49759f7506e015",
  4236. "reference": "a9d127dd6a203ce6d255b2e2db49759f7506e015",
  4237. "shasum": ""
  4238. },
  4239. "require": {
  4240. "php": ">=8.0 <8.4"
  4241. },
  4242. "conflict": {
  4243. "nette/finder": "<3",
  4244. "nette/schema": "<1.2.2"
  4245. },
  4246. "require-dev": {
  4247. "jetbrains/phpstorm-attributes": "dev-master",
  4248. "nette/tester": "^2.5",
  4249. "phpstan/phpstan": "^1.0",
  4250. "tracy/tracy": "^2.9"
  4251. },
  4252. "suggest": {
  4253. "ext-gd": "to use Image",
  4254. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  4255. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  4256. "ext-json": "to use Nette\\Utils\\Json",
  4257. "ext-mbstring": "to use Strings::lower() etc...",
  4258. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  4259. },
  4260. "type": "library",
  4261. "extra": {
  4262. "branch-alias": {
  4263. "dev-master": "4.0-dev"
  4264. }
  4265. },
  4266. "autoload": {
  4267. "classmap": [
  4268. "src/"
  4269. ]
  4270. },
  4271. "notification-url": "https://packagist.org/downloads/",
  4272. "license": [
  4273. "BSD-3-Clause",
  4274. "GPL-2.0-only",
  4275. "GPL-3.0-only"
  4276. ],
  4277. "authors": [
  4278. {
  4279. "name": "David Grudl",
  4280. "homepage": "https://davidgrudl.com"
  4281. },
  4282. {
  4283. "name": "Nette Community",
  4284. "homepage": "https://nette.org/contributors"
  4285. }
  4286. ],
  4287. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  4288. "homepage": "https://nette.org",
  4289. "keywords": [
  4290. "array",
  4291. "core",
  4292. "datetime",
  4293. "images",
  4294. "json",
  4295. "nette",
  4296. "paginator",
  4297. "password",
  4298. "slugify",
  4299. "string",
  4300. "unicode",
  4301. "utf-8",
  4302. "utility",
  4303. "validation"
  4304. ],
  4305. "support": {
  4306. "issues": "https://github.com/nette/utils/issues",
  4307. "source": "https://github.com/nette/utils/tree/v4.0.3"
  4308. },
  4309. "time": "2023-10-29T21:02:13+00:00"
  4310. },
  4311. {
  4312. "name": "nikic/php-parser",
  4313. "version": "v4.18.0",
  4314. "source": {
  4315. "type": "git",
  4316. "url": "https://github.com/nikic/PHP-Parser.git",
  4317. "reference": "1bcbb2179f97633e98bbbc87044ee2611c7d7999"
  4318. },
  4319. "dist": {
  4320. "type": "zip",
  4321. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/1bcbb2179f97633e98bbbc87044ee2611c7d7999",
  4322. "reference": "1bcbb2179f97633e98bbbc87044ee2611c7d7999",
  4323. "shasum": ""
  4324. },
  4325. "require": {
  4326. "ext-tokenizer": "*",
  4327. "php": ">=7.0"
  4328. },
  4329. "require-dev": {
  4330. "ircmaxell/php-yacc": "^0.0.7",
  4331. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  4332. },
  4333. "bin": [
  4334. "bin/php-parse"
  4335. ],
  4336. "type": "library",
  4337. "extra": {
  4338. "branch-alias": {
  4339. "dev-master": "4.9-dev"
  4340. }
  4341. },
  4342. "autoload": {
  4343. "psr-4": {
  4344. "PhpParser\\": "lib/PhpParser"
  4345. }
  4346. },
  4347. "notification-url": "https://packagist.org/downloads/",
  4348. "license": [
  4349. "BSD-3-Clause"
  4350. ],
  4351. "authors": [
  4352. {
  4353. "name": "Nikita Popov"
  4354. }
  4355. ],
  4356. "description": "A PHP parser written in PHP",
  4357. "keywords": [
  4358. "parser",
  4359. "php"
  4360. ],
  4361. "support": {
  4362. "issues": "https://github.com/nikic/PHP-Parser/issues",
  4363. "source": "https://github.com/nikic/PHP-Parser/tree/v4.18.0"
  4364. },
  4365. "time": "2023-12-10T21:03:43+00:00"
  4366. },
  4367. {
  4368. "name": "opis/closure",
  4369. "version": "3.6.3",
  4370. "source": {
  4371. "type": "git",
  4372. "url": "https://github.com/opis/closure.git",
  4373. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad"
  4374. },
  4375. "dist": {
  4376. "type": "zip",
  4377. "url": "https://api.github.com/repos/opis/closure/zipball/3d81e4309d2a927abbe66df935f4bb60082805ad",
  4378. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad",
  4379. "shasum": ""
  4380. },
  4381. "require": {
  4382. "php": "^5.4 || ^7.0 || ^8.0"
  4383. },
  4384. "require-dev": {
  4385. "jeremeamia/superclosure": "^2.0",
  4386. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  4387. },
  4388. "type": "library",
  4389. "extra": {
  4390. "branch-alias": {
  4391. "dev-master": "3.6.x-dev"
  4392. }
  4393. },
  4394. "autoload": {
  4395. "files": [
  4396. "functions.php"
  4397. ],
  4398. "psr-4": {
  4399. "Opis\\Closure\\": "src/"
  4400. }
  4401. },
  4402. "notification-url": "https://packagist.org/downloads/",
  4403. "license": [
  4404. "MIT"
  4405. ],
  4406. "authors": [
  4407. {
  4408. "name": "Marius Sarca",
  4409. "email": "marius.sarca@gmail.com"
  4410. },
  4411. {
  4412. "name": "Sorin Sarca",
  4413. "email": "sarca_sorin@hotmail.com"
  4414. }
  4415. ],
  4416. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  4417. "homepage": "https://opis.io/closure",
  4418. "keywords": [
  4419. "anonymous functions",
  4420. "closure",
  4421. "function",
  4422. "serializable",
  4423. "serialization",
  4424. "serialize"
  4425. ],
  4426. "support": {
  4427. "issues": "https://github.com/opis/closure/issues",
  4428. "source": "https://github.com/opis/closure/tree/3.6.3"
  4429. },
  4430. "time": "2022-01-27T09:35:39+00:00"
  4431. },
  4432. {
  4433. "name": "phpoffice/phpspreadsheet",
  4434. "version": "1.29.0",
  4435. "source": {
  4436. "type": "git",
  4437. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  4438. "reference": "fde2ccf55eaef7e86021ff1acce26479160a0fa0"
  4439. },
  4440. "dist": {
  4441. "type": "zip",
  4442. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/fde2ccf55eaef7e86021ff1acce26479160a0fa0",
  4443. "reference": "fde2ccf55eaef7e86021ff1acce26479160a0fa0",
  4444. "shasum": ""
  4445. },
  4446. "require": {
  4447. "ext-ctype": "*",
  4448. "ext-dom": "*",
  4449. "ext-fileinfo": "*",
  4450. "ext-gd": "*",
  4451. "ext-iconv": "*",
  4452. "ext-libxml": "*",
  4453. "ext-mbstring": "*",
  4454. "ext-simplexml": "*",
  4455. "ext-xml": "*",
  4456. "ext-xmlreader": "*",
  4457. "ext-xmlwriter": "*",
  4458. "ext-zip": "*",
  4459. "ext-zlib": "*",
  4460. "ezyang/htmlpurifier": "^4.15",
  4461. "maennchen/zipstream-php": "^2.1 || ^3.0",
  4462. "markbaker/complex": "^3.0",
  4463. "markbaker/matrix": "^3.0",
  4464. "php": "^7.4 || ^8.0",
  4465. "psr/http-client": "^1.0",
  4466. "psr/http-factory": "^1.0",
  4467. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  4468. },
  4469. "require-dev": {
  4470. "dealerdirect/phpcodesniffer-composer-installer": "dev-main",
  4471. "dompdf/dompdf": "^1.0 || ^2.0",
  4472. "friendsofphp/php-cs-fixer": "^3.2",
  4473. "mitoteam/jpgraph": "^10.3",
  4474. "mpdf/mpdf": "^8.1.1",
  4475. "phpcompatibility/php-compatibility": "^9.3",
  4476. "phpstan/phpstan": "^1.1",
  4477. "phpstan/phpstan-phpunit": "^1.0",
  4478. "phpunit/phpunit": "^8.5 || ^9.0 || ^10.0",
  4479. "squizlabs/php_codesniffer": "^3.7",
  4480. "tecnickcom/tcpdf": "^6.5"
  4481. },
  4482. "suggest": {
  4483. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  4484. "ext-intl": "PHP Internationalization Functions",
  4485. "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  4486. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  4487. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  4488. },
  4489. "type": "library",
  4490. "autoload": {
  4491. "psr-4": {
  4492. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  4493. }
  4494. },
  4495. "notification-url": "https://packagist.org/downloads/",
  4496. "license": [
  4497. "MIT"
  4498. ],
  4499. "authors": [
  4500. {
  4501. "name": "Maarten Balliauw",
  4502. "homepage": "https://blog.maartenballiauw.be"
  4503. },
  4504. {
  4505. "name": "Mark Baker",
  4506. "homepage": "https://markbakeruk.net"
  4507. },
  4508. {
  4509. "name": "Franck Lefevre",
  4510. "homepage": "https://rootslabs.net"
  4511. },
  4512. {
  4513. "name": "Erik Tilt"
  4514. },
  4515. {
  4516. "name": "Adrien Crivelli"
  4517. }
  4518. ],
  4519. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  4520. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  4521. "keywords": [
  4522. "OpenXML",
  4523. "excel",
  4524. "gnumeric",
  4525. "ods",
  4526. "php",
  4527. "spreadsheet",
  4528. "xls",
  4529. "xlsx"
  4530. ],
  4531. "support": {
  4532. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  4533. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.29.0"
  4534. },
  4535. "time": "2023-06-14T22:48:31+00:00"
  4536. },
  4537. {
  4538. "name": "phpoption/phpoption",
  4539. "version": "1.9.2",
  4540. "source": {
  4541. "type": "git",
  4542. "url": "https://github.com/schmittjoh/php-option.git",
  4543. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820"
  4544. },
  4545. "dist": {
  4546. "type": "zip",
  4547. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/80735db690fe4fc5c76dfa7f9b770634285fa820",
  4548. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820",
  4549. "shasum": ""
  4550. },
  4551. "require": {
  4552. "php": "^7.2.5 || ^8.0"
  4553. },
  4554. "require-dev": {
  4555. "bamarni/composer-bin-plugin": "^1.8.2",
  4556. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  4557. },
  4558. "type": "library",
  4559. "extra": {
  4560. "bamarni-bin": {
  4561. "bin-links": true,
  4562. "forward-command": true
  4563. },
  4564. "branch-alias": {
  4565. "dev-master": "1.9-dev"
  4566. }
  4567. },
  4568. "autoload": {
  4569. "psr-4": {
  4570. "PhpOption\\": "src/PhpOption/"
  4571. }
  4572. },
  4573. "notification-url": "https://packagist.org/downloads/",
  4574. "license": [
  4575. "Apache-2.0"
  4576. ],
  4577. "authors": [
  4578. {
  4579. "name": "Johannes M. Schmitt",
  4580. "email": "schmittjoh@gmail.com",
  4581. "homepage": "https://github.com/schmittjoh"
  4582. },
  4583. {
  4584. "name": "Graham Campbell",
  4585. "email": "hello@gjcampbell.co.uk",
  4586. "homepage": "https://github.com/GrahamCampbell"
  4587. }
  4588. ],
  4589. "description": "Option Type for PHP",
  4590. "keywords": [
  4591. "language",
  4592. "option",
  4593. "php",
  4594. "type"
  4595. ],
  4596. "support": {
  4597. "issues": "https://github.com/schmittjoh/php-option/issues",
  4598. "source": "https://github.com/schmittjoh/php-option/tree/1.9.2"
  4599. },
  4600. "funding": [
  4601. {
  4602. "url": "https://github.com/GrahamCampbell",
  4603. "type": "github"
  4604. },
  4605. {
  4606. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  4607. "type": "tidelift"
  4608. }
  4609. ],
  4610. "time": "2023-11-12T21:59:55+00:00"
  4611. },
  4612. {
  4613. "name": "pimple/pimple",
  4614. "version": "v3.5.0",
  4615. "source": {
  4616. "type": "git",
  4617. "url": "https://github.com/silexphp/Pimple.git",
  4618. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed"
  4619. },
  4620. "dist": {
  4621. "type": "zip",
  4622. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  4623. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  4624. "shasum": "",
  4625. "mirrors": [
  4626. {
  4627. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4628. "preferred": true
  4629. }
  4630. ]
  4631. },
  4632. "require": {
  4633. "php": ">=7.2.5",
  4634. "psr/container": "^1.1 || ^2.0"
  4635. },
  4636. "require-dev": {
  4637. "symfony/phpunit-bridge": "^5.4@dev"
  4638. },
  4639. "type": "library",
  4640. "extra": {
  4641. "branch-alias": {
  4642. "dev-master": "3.4.x-dev"
  4643. }
  4644. },
  4645. "autoload": {
  4646. "psr-0": {
  4647. "Pimple": "src/"
  4648. }
  4649. },
  4650. "notification-url": "https://packagist.org/downloads/",
  4651. "license": [
  4652. "MIT"
  4653. ],
  4654. "authors": [
  4655. {
  4656. "name": "Fabien Potencier",
  4657. "email": "fabien@symfony.com"
  4658. }
  4659. ],
  4660. "description": "Pimple, a simple Dependency Injection Container",
  4661. "homepage": "https://pimple.symfony.com",
  4662. "keywords": [
  4663. "container",
  4664. "dependency injection"
  4665. ],
  4666. "support": {
  4667. "source": "https://github.com/silexphp/Pimple/tree/v3.5.0"
  4668. },
  4669. "time": "2021-10-28T11:13:42+00:00"
  4670. },
  4671. {
  4672. "name": "psr/cache",
  4673. "version": "2.0.0",
  4674. "source": {
  4675. "type": "git",
  4676. "url": "https://github.com/php-fig/cache.git",
  4677. "reference": "213f9dbc5b9bfbc4f8db86d2838dc968752ce13b"
  4678. },
  4679. "dist": {
  4680. "type": "zip",
  4681. "url": "https://api.github.com/repos/php-fig/cache/zipball/213f9dbc5b9bfbc4f8db86d2838dc968752ce13b",
  4682. "reference": "213f9dbc5b9bfbc4f8db86d2838dc968752ce13b",
  4683. "shasum": ""
  4684. },
  4685. "require": {
  4686. "php": ">=8.0.0"
  4687. },
  4688. "type": "library",
  4689. "extra": {
  4690. "branch-alias": {
  4691. "dev-master": "1.0.x-dev"
  4692. }
  4693. },
  4694. "autoload": {
  4695. "psr-4": {
  4696. "Psr\\Cache\\": "src/"
  4697. }
  4698. },
  4699. "notification-url": "https://packagist.org/downloads/",
  4700. "license": [
  4701. "MIT"
  4702. ],
  4703. "authors": [
  4704. {
  4705. "name": "PHP-FIG",
  4706. "homepage": "https://www.php-fig.org/"
  4707. }
  4708. ],
  4709. "description": "Common interface for caching libraries",
  4710. "keywords": [
  4711. "cache",
  4712. "psr",
  4713. "psr-6"
  4714. ],
  4715. "support": {
  4716. "source": "https://github.com/php-fig/cache/tree/2.0.0"
  4717. },
  4718. "time": "2021-02-03T23:23:37+00:00"
  4719. },
  4720. {
  4721. "name": "psr/clock",
  4722. "version": "1.0.0",
  4723. "source": {
  4724. "type": "git",
  4725. "url": "https://github.com/php-fig/clock.git",
  4726. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  4727. },
  4728. "dist": {
  4729. "type": "zip",
  4730. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  4731. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  4732. "shasum": ""
  4733. },
  4734. "require": {
  4735. "php": "^7.0 || ^8.0"
  4736. },
  4737. "type": "library",
  4738. "autoload": {
  4739. "psr-4": {
  4740. "Psr\\Clock\\": "src/"
  4741. }
  4742. },
  4743. "notification-url": "https://packagist.org/downloads/",
  4744. "license": [
  4745. "MIT"
  4746. ],
  4747. "authors": [
  4748. {
  4749. "name": "PHP-FIG",
  4750. "homepage": "https://www.php-fig.org/"
  4751. }
  4752. ],
  4753. "description": "Common interface for reading the clock.",
  4754. "homepage": "https://github.com/php-fig/clock",
  4755. "keywords": [
  4756. "clock",
  4757. "now",
  4758. "psr",
  4759. "psr-20",
  4760. "time"
  4761. ],
  4762. "support": {
  4763. "issues": "https://github.com/php-fig/clock/issues",
  4764. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  4765. },
  4766. "time": "2022-11-25T14:36:26+00:00"
  4767. },
  4768. {
  4769. "name": "psr/container",
  4770. "version": "1.1.2",
  4771. "source": {
  4772. "type": "git",
  4773. "url": "https://github.com/php-fig/container.git",
  4774. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  4775. },
  4776. "dist": {
  4777. "type": "zip",
  4778. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  4779. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  4780. "shasum": ""
  4781. },
  4782. "require": {
  4783. "php": ">=7.4.0"
  4784. },
  4785. "type": "library",
  4786. "autoload": {
  4787. "psr-4": {
  4788. "Psr\\Container\\": "src/"
  4789. }
  4790. },
  4791. "notification-url": "https://packagist.org/downloads/",
  4792. "license": [
  4793. "MIT"
  4794. ],
  4795. "authors": [
  4796. {
  4797. "name": "PHP-FIG",
  4798. "homepage": "https://www.php-fig.org/"
  4799. }
  4800. ],
  4801. "description": "Common Container Interface (PHP FIG PSR-11)",
  4802. "homepage": "https://github.com/php-fig/container",
  4803. "keywords": [
  4804. "PSR-11",
  4805. "container",
  4806. "container-interface",
  4807. "container-interop",
  4808. "psr"
  4809. ],
  4810. "support": {
  4811. "issues": "https://github.com/php-fig/container/issues",
  4812. "source": "https://github.com/php-fig/container/tree/1.1.2"
  4813. },
  4814. "time": "2021-11-05T16:50:12+00:00"
  4815. },
  4816. {
  4817. "name": "psr/event-dispatcher",
  4818. "version": "1.0.0",
  4819. "source": {
  4820. "type": "git",
  4821. "url": "https://github.com/php-fig/event-dispatcher.git",
  4822. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  4823. },
  4824. "dist": {
  4825. "type": "zip",
  4826. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4827. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4828. "shasum": ""
  4829. },
  4830. "require": {
  4831. "php": ">=7.2.0"
  4832. },
  4833. "type": "library",
  4834. "extra": {
  4835. "branch-alias": {
  4836. "dev-master": "1.0.x-dev"
  4837. }
  4838. },
  4839. "autoload": {
  4840. "psr-4": {
  4841. "Psr\\EventDispatcher\\": "src/"
  4842. }
  4843. },
  4844. "notification-url": "https://packagist.org/downloads/",
  4845. "license": [
  4846. "MIT"
  4847. ],
  4848. "authors": [
  4849. {
  4850. "name": "PHP-FIG",
  4851. "homepage": "http://www.php-fig.org/"
  4852. }
  4853. ],
  4854. "description": "Standard interfaces for event handling.",
  4855. "keywords": [
  4856. "events",
  4857. "psr",
  4858. "psr-14"
  4859. ],
  4860. "support": {
  4861. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  4862. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  4863. },
  4864. "time": "2019-01-08T18:20:26+00:00"
  4865. },
  4866. {
  4867. "name": "psr/http-client",
  4868. "version": "1.0.3",
  4869. "source": {
  4870. "type": "git",
  4871. "url": "https://github.com/php-fig/http-client.git",
  4872. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  4873. },
  4874. "dist": {
  4875. "type": "zip",
  4876. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  4877. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  4878. "shasum": ""
  4879. },
  4880. "require": {
  4881. "php": "^7.0 || ^8.0",
  4882. "psr/http-message": "^1.0 || ^2.0"
  4883. },
  4884. "type": "library",
  4885. "extra": {
  4886. "branch-alias": {
  4887. "dev-master": "1.0.x-dev"
  4888. }
  4889. },
  4890. "autoload": {
  4891. "psr-4": {
  4892. "Psr\\Http\\Client\\": "src/"
  4893. }
  4894. },
  4895. "notification-url": "https://packagist.org/downloads/",
  4896. "license": [
  4897. "MIT"
  4898. ],
  4899. "authors": [
  4900. {
  4901. "name": "PHP-FIG",
  4902. "homepage": "https://www.php-fig.org/"
  4903. }
  4904. ],
  4905. "description": "Common interface for HTTP clients",
  4906. "homepage": "https://github.com/php-fig/http-client",
  4907. "keywords": [
  4908. "http",
  4909. "http-client",
  4910. "psr",
  4911. "psr-18"
  4912. ],
  4913. "support": {
  4914. "source": "https://github.com/php-fig/http-client"
  4915. },
  4916. "time": "2023-09-23T14:17:50+00:00"
  4917. },
  4918. {
  4919. "name": "psr/http-factory",
  4920. "version": "1.0.2",
  4921. "source": {
  4922. "type": "git",
  4923. "url": "https://github.com/php-fig/http-factory.git",
  4924. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  4925. },
  4926. "dist": {
  4927. "type": "zip",
  4928. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  4929. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  4930. "shasum": ""
  4931. },
  4932. "require": {
  4933. "php": ">=7.0.0",
  4934. "psr/http-message": "^1.0 || ^2.0"
  4935. },
  4936. "type": "library",
  4937. "extra": {
  4938. "branch-alias": {
  4939. "dev-master": "1.0.x-dev"
  4940. }
  4941. },
  4942. "autoload": {
  4943. "psr-4": {
  4944. "Psr\\Http\\Message\\": "src/"
  4945. }
  4946. },
  4947. "notification-url": "https://packagist.org/downloads/",
  4948. "license": [
  4949. "MIT"
  4950. ],
  4951. "authors": [
  4952. {
  4953. "name": "PHP-FIG",
  4954. "homepage": "https://www.php-fig.org/"
  4955. }
  4956. ],
  4957. "description": "Common interfaces for PSR-7 HTTP message factories",
  4958. "keywords": [
  4959. "factory",
  4960. "http",
  4961. "message",
  4962. "psr",
  4963. "psr-17",
  4964. "psr-7",
  4965. "request",
  4966. "response"
  4967. ],
  4968. "support": {
  4969. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  4970. },
  4971. "time": "2023-04-10T20:10:41+00:00"
  4972. },
  4973. {
  4974. "name": "psr/http-message",
  4975. "version": "1.1",
  4976. "source": {
  4977. "type": "git",
  4978. "url": "https://github.com/php-fig/http-message.git",
  4979. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  4980. },
  4981. "dist": {
  4982. "type": "zip",
  4983. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  4984. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  4985. "shasum": ""
  4986. },
  4987. "require": {
  4988. "php": "^7.2 || ^8.0"
  4989. },
  4990. "type": "library",
  4991. "extra": {
  4992. "branch-alias": {
  4993. "dev-master": "1.1.x-dev"
  4994. }
  4995. },
  4996. "autoload": {
  4997. "psr-4": {
  4998. "Psr\\Http\\Message\\": "src/"
  4999. }
  5000. },
  5001. "notification-url": "https://packagist.org/downloads/",
  5002. "license": [
  5003. "MIT"
  5004. ],
  5005. "authors": [
  5006. {
  5007. "name": "PHP-FIG",
  5008. "homepage": "http://www.php-fig.org/"
  5009. }
  5010. ],
  5011. "description": "Common interface for HTTP messages",
  5012. "homepage": "https://github.com/php-fig/http-message",
  5013. "keywords": [
  5014. "http",
  5015. "http-message",
  5016. "psr",
  5017. "psr-7",
  5018. "request",
  5019. "response"
  5020. ],
  5021. "support": {
  5022. "source": "https://github.com/php-fig/http-message/tree/1.1"
  5023. },
  5024. "time": "2023-04-04T09:50:52+00:00"
  5025. },
  5026. {
  5027. "name": "psr/log",
  5028. "version": "2.0.0",
  5029. "source": {
  5030. "type": "git",
  5031. "url": "https://github.com/php-fig/log.git",
  5032. "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376"
  5033. },
  5034. "dist": {
  5035. "type": "zip",
  5036. "url": "https://api.github.com/repos/php-fig/log/zipball/ef29f6d262798707a9edd554e2b82517ef3a9376",
  5037. "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376",
  5038. "shasum": ""
  5039. },
  5040. "require": {
  5041. "php": ">=8.0.0"
  5042. },
  5043. "type": "library",
  5044. "extra": {
  5045. "branch-alias": {
  5046. "dev-master": "2.0.x-dev"
  5047. }
  5048. },
  5049. "autoload": {
  5050. "psr-4": {
  5051. "Psr\\Log\\": "src"
  5052. }
  5053. },
  5054. "notification-url": "https://packagist.org/downloads/",
  5055. "license": [
  5056. "MIT"
  5057. ],
  5058. "authors": [
  5059. {
  5060. "name": "PHP-FIG",
  5061. "homepage": "https://www.php-fig.org/"
  5062. }
  5063. ],
  5064. "description": "Common interface for logging libraries",
  5065. "homepage": "https://github.com/php-fig/log",
  5066. "keywords": [
  5067. "log",
  5068. "psr",
  5069. "psr-3"
  5070. ],
  5071. "support": {
  5072. "source": "https://github.com/php-fig/log/tree/2.0.0"
  5073. },
  5074. "time": "2021-07-14T16:41:46+00:00"
  5075. },
  5076. {
  5077. "name": "psr/simple-cache",
  5078. "version": "1.0.1",
  5079. "source": {
  5080. "type": "git",
  5081. "url": "https://github.com/php-fig/simple-cache.git",
  5082. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  5083. },
  5084. "dist": {
  5085. "type": "zip",
  5086. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  5087. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  5088. "shasum": ""
  5089. },
  5090. "require": {
  5091. "php": ">=5.3.0"
  5092. },
  5093. "type": "library",
  5094. "extra": {
  5095. "branch-alias": {
  5096. "dev-master": "1.0.x-dev"
  5097. }
  5098. },
  5099. "autoload": {
  5100. "psr-4": {
  5101. "Psr\\SimpleCache\\": "src/"
  5102. }
  5103. },
  5104. "notification-url": "https://packagist.org/downloads/",
  5105. "license": [
  5106. "MIT"
  5107. ],
  5108. "authors": [
  5109. {
  5110. "name": "PHP-FIG",
  5111. "homepage": "http://www.php-fig.org/"
  5112. }
  5113. ],
  5114. "description": "Common interfaces for simple caching",
  5115. "keywords": [
  5116. "cache",
  5117. "caching",
  5118. "psr",
  5119. "psr-16",
  5120. "simple-cache"
  5121. ],
  5122. "support": {
  5123. "source": "https://github.com/php-fig/simple-cache/tree/master"
  5124. },
  5125. "time": "2017-10-23T01:57:42+00:00"
  5126. },
  5127. {
  5128. "name": "psy/psysh",
  5129. "version": "v0.11.22",
  5130. "source": {
  5131. "type": "git",
  5132. "url": "https://github.com/bobthecow/psysh.git",
  5133. "reference": "128fa1b608be651999ed9789c95e6e2a31b5802b"
  5134. },
  5135. "dist": {
  5136. "type": "zip",
  5137. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/128fa1b608be651999ed9789c95e6e2a31b5802b",
  5138. "reference": "128fa1b608be651999ed9789c95e6e2a31b5802b",
  5139. "shasum": ""
  5140. },
  5141. "require": {
  5142. "ext-json": "*",
  5143. "ext-tokenizer": "*",
  5144. "nikic/php-parser": "^4.0 || ^3.1",
  5145. "php": "^8.0 || ^7.0.8",
  5146. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  5147. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  5148. },
  5149. "conflict": {
  5150. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  5151. },
  5152. "require-dev": {
  5153. "bamarni/composer-bin-plugin": "^1.2"
  5154. },
  5155. "suggest": {
  5156. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  5157. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  5158. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  5159. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
  5160. },
  5161. "bin": [
  5162. "bin/psysh"
  5163. ],
  5164. "type": "library",
  5165. "extra": {
  5166. "branch-alias": {
  5167. "dev-0.11": "0.11.x-dev"
  5168. },
  5169. "bamarni-bin": {
  5170. "bin-links": false,
  5171. "forward-command": false
  5172. }
  5173. },
  5174. "autoload": {
  5175. "files": [
  5176. "src/functions.php"
  5177. ],
  5178. "psr-4": {
  5179. "Psy\\": "src/"
  5180. }
  5181. },
  5182. "notification-url": "https://packagist.org/downloads/",
  5183. "license": [
  5184. "MIT"
  5185. ],
  5186. "authors": [
  5187. {
  5188. "name": "Justin Hileman",
  5189. "email": "justin@justinhileman.info",
  5190. "homepage": "http://justinhileman.com"
  5191. }
  5192. ],
  5193. "description": "An interactive shell for modern PHP.",
  5194. "homepage": "http://psysh.org",
  5195. "keywords": [
  5196. "REPL",
  5197. "console",
  5198. "interactive",
  5199. "shell"
  5200. ],
  5201. "support": {
  5202. "issues": "https://github.com/bobthecow/psysh/issues",
  5203. "source": "https://github.com/bobthecow/psysh/tree/v0.11.22"
  5204. },
  5205. "time": "2023-10-14T21:56:36+00:00"
  5206. },
  5207. {
  5208. "name": "ralouphie/getallheaders",
  5209. "version": "3.0.3",
  5210. "source": {
  5211. "type": "git",
  5212. "url": "https://github.com/ralouphie/getallheaders.git",
  5213. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  5214. },
  5215. "dist": {
  5216. "type": "zip",
  5217. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  5218. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  5219. "shasum": ""
  5220. },
  5221. "require": {
  5222. "php": ">=5.6"
  5223. },
  5224. "require-dev": {
  5225. "php-coveralls/php-coveralls": "^2.1",
  5226. "phpunit/phpunit": "^5 || ^6.5"
  5227. },
  5228. "type": "library",
  5229. "autoload": {
  5230. "files": [
  5231. "src/getallheaders.php"
  5232. ]
  5233. },
  5234. "notification-url": "https://packagist.org/downloads/",
  5235. "license": [
  5236. "MIT"
  5237. ],
  5238. "authors": [
  5239. {
  5240. "name": "Ralph Khattar",
  5241. "email": "ralph.khattar@gmail.com"
  5242. }
  5243. ],
  5244. "description": "A polyfill for getallheaders.",
  5245. "support": {
  5246. "issues": "https://github.com/ralouphie/getallheaders/issues",
  5247. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  5248. },
  5249. "time": "2019-03-08T08:55:37+00:00"
  5250. },
  5251. {
  5252. "name": "ramsey/collection",
  5253. "version": "1.3.0",
  5254. "source": {
  5255. "type": "git",
  5256. "url": "https://github.com/ramsey/collection.git",
  5257. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4"
  5258. },
  5259. "dist": {
  5260. "type": "zip",
  5261. "url": "https://api.github.com/repos/ramsey/collection/zipball/ad7475d1c9e70b190ecffc58f2d989416af339b4",
  5262. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4",
  5263. "shasum": ""
  5264. },
  5265. "require": {
  5266. "php": "^7.4 || ^8.0",
  5267. "symfony/polyfill-php81": "^1.23"
  5268. },
  5269. "require-dev": {
  5270. "captainhook/plugin-composer": "^5.3",
  5271. "ergebnis/composer-normalize": "^2.28.3",
  5272. "fakerphp/faker": "^1.21",
  5273. "hamcrest/hamcrest-php": "^2.0",
  5274. "jangregor/phpstan-prophecy": "^1.0",
  5275. "mockery/mockery": "^1.5",
  5276. "php-parallel-lint/php-console-highlighter": "^1.0",
  5277. "php-parallel-lint/php-parallel-lint": "^1.3",
  5278. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  5279. "phpspec/prophecy-phpunit": "^2.0",
  5280. "phpstan/extension-installer": "^1.2",
  5281. "phpstan/phpstan": "^1.9",
  5282. "phpstan/phpstan-mockery": "^1.1",
  5283. "phpstan/phpstan-phpunit": "^1.3",
  5284. "phpunit/phpunit": "^9.5",
  5285. "psalm/plugin-mockery": "^1.1",
  5286. "psalm/plugin-phpunit": "^0.18.4",
  5287. "ramsey/coding-standard": "^2.0.3",
  5288. "ramsey/conventional-commits": "^1.3",
  5289. "vimeo/psalm": "^5.4"
  5290. },
  5291. "type": "library",
  5292. "extra": {
  5293. "captainhook": {
  5294. "force-install": true
  5295. },
  5296. "ramsey/conventional-commits": {
  5297. "configFile": "conventional-commits.json"
  5298. }
  5299. },
  5300. "autoload": {
  5301. "psr-4": {
  5302. "Ramsey\\Collection\\": "src/"
  5303. }
  5304. },
  5305. "notification-url": "https://packagist.org/downloads/",
  5306. "license": [
  5307. "MIT"
  5308. ],
  5309. "authors": [
  5310. {
  5311. "name": "Ben Ramsey",
  5312. "email": "ben@benramsey.com",
  5313. "homepage": "https://benramsey.com"
  5314. }
  5315. ],
  5316. "description": "A PHP library for representing and manipulating collections.",
  5317. "keywords": [
  5318. "array",
  5319. "collection",
  5320. "hash",
  5321. "map",
  5322. "queue",
  5323. "set"
  5324. ],
  5325. "support": {
  5326. "issues": "https://github.com/ramsey/collection/issues",
  5327. "source": "https://github.com/ramsey/collection/tree/1.3.0"
  5328. },
  5329. "funding": [
  5330. {
  5331. "url": "https://github.com/ramsey",
  5332. "type": "github"
  5333. },
  5334. {
  5335. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  5336. "type": "tidelift"
  5337. }
  5338. ],
  5339. "time": "2022-12-27T19:12:24+00:00"
  5340. },
  5341. {
  5342. "name": "ramsey/uuid",
  5343. "version": "4.7.5",
  5344. "source": {
  5345. "type": "git",
  5346. "url": "https://github.com/ramsey/uuid.git",
  5347. "reference": "5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e"
  5348. },
  5349. "dist": {
  5350. "type": "zip",
  5351. "url": "https://api.github.com/repos/ramsey/uuid/zipball/5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e",
  5352. "reference": "5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e",
  5353. "shasum": ""
  5354. },
  5355. "require": {
  5356. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11",
  5357. "ext-json": "*",
  5358. "php": "^8.0",
  5359. "ramsey/collection": "^1.2 || ^2.0"
  5360. },
  5361. "replace": {
  5362. "rhumsaa/uuid": "self.version"
  5363. },
  5364. "require-dev": {
  5365. "captainhook/captainhook": "^5.10",
  5366. "captainhook/plugin-composer": "^5.3",
  5367. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  5368. "doctrine/annotations": "^1.8",
  5369. "ergebnis/composer-normalize": "^2.15",
  5370. "mockery/mockery": "^1.3",
  5371. "paragonie/random-lib": "^2",
  5372. "php-mock/php-mock": "^2.2",
  5373. "php-mock/php-mock-mockery": "^1.3",
  5374. "php-parallel-lint/php-parallel-lint": "^1.1",
  5375. "phpbench/phpbench": "^1.0",
  5376. "phpstan/extension-installer": "^1.1",
  5377. "phpstan/phpstan": "^1.8",
  5378. "phpstan/phpstan-mockery": "^1.1",
  5379. "phpstan/phpstan-phpunit": "^1.1",
  5380. "phpunit/phpunit": "^8.5 || ^9",
  5381. "ramsey/composer-repl": "^1.4",
  5382. "slevomat/coding-standard": "^8.4",
  5383. "squizlabs/php_codesniffer": "^3.5",
  5384. "vimeo/psalm": "^4.9"
  5385. },
  5386. "suggest": {
  5387. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  5388. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  5389. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  5390. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  5391. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  5392. },
  5393. "type": "library",
  5394. "extra": {
  5395. "captainhook": {
  5396. "force-install": true
  5397. }
  5398. },
  5399. "autoload": {
  5400. "files": [
  5401. "src/functions.php"
  5402. ],
  5403. "psr-4": {
  5404. "Ramsey\\Uuid\\": "src/"
  5405. }
  5406. },
  5407. "notification-url": "https://packagist.org/downloads/",
  5408. "license": [
  5409. "MIT"
  5410. ],
  5411. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  5412. "keywords": [
  5413. "guid",
  5414. "identifier",
  5415. "uuid"
  5416. ],
  5417. "support": {
  5418. "issues": "https://github.com/ramsey/uuid/issues",
  5419. "source": "https://github.com/ramsey/uuid/tree/4.7.5"
  5420. },
  5421. "funding": [
  5422. {
  5423. "url": "https://github.com/ramsey",
  5424. "type": "github"
  5425. },
  5426. {
  5427. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  5428. "type": "tidelift"
  5429. }
  5430. ],
  5431. "time": "2023-11-08T05:53:05+00:00"
  5432. },
  5433. {
  5434. "name": "ratchet/rfc6455",
  5435. "version": "v0.3.1",
  5436. "source": {
  5437. "type": "git",
  5438. "url": "https://github.com/ratchetphp/RFC6455.git",
  5439. "reference": "7c964514e93456a52a99a20fcfa0de242a43ccdb"
  5440. },
  5441. "dist": {
  5442. "type": "zip",
  5443. "url": "https://api.github.com/repos/ratchetphp/RFC6455/zipball/7c964514e93456a52a99a20fcfa0de242a43ccdb",
  5444. "reference": "7c964514e93456a52a99a20fcfa0de242a43ccdb",
  5445. "shasum": ""
  5446. },
  5447. "require": {
  5448. "guzzlehttp/psr7": "^2 || ^1.7",
  5449. "php": ">=5.4.2"
  5450. },
  5451. "require-dev": {
  5452. "phpunit/phpunit": "^5.7",
  5453. "react/socket": "^1.3"
  5454. },
  5455. "type": "library",
  5456. "autoload": {
  5457. "psr-4": {
  5458. "Ratchet\\RFC6455\\": "src"
  5459. }
  5460. },
  5461. "notification-url": "https://packagist.org/downloads/",
  5462. "license": [
  5463. "MIT"
  5464. ],
  5465. "authors": [
  5466. {
  5467. "name": "Chris Boden",
  5468. "email": "cboden@gmail.com",
  5469. "role": "Developer"
  5470. },
  5471. {
  5472. "name": "Matt Bonneau",
  5473. "role": "Developer"
  5474. }
  5475. ],
  5476. "description": "RFC6455 WebSocket protocol handler",
  5477. "homepage": "http://socketo.me",
  5478. "keywords": [
  5479. "WebSockets",
  5480. "rfc6455",
  5481. "websocket"
  5482. ],
  5483. "support": {
  5484. "chat": "https://gitter.im/reactphp/reactphp",
  5485. "issues": "https://github.com/ratchetphp/RFC6455/issues",
  5486. "source": "https://github.com/ratchetphp/RFC6455/tree/v0.3.1"
  5487. },
  5488. "time": "2021-12-09T23:20:49+00:00"
  5489. },
  5490. {
  5491. "name": "react/cache",
  5492. "version": "v1.2.0",
  5493. "source": {
  5494. "type": "git",
  5495. "url": "https://github.com/reactphp/cache.git",
  5496. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  5497. },
  5498. "dist": {
  5499. "type": "zip",
  5500. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  5501. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  5502. "shasum": ""
  5503. },
  5504. "require": {
  5505. "php": ">=5.3.0",
  5506. "react/promise": "^3.0 || ^2.0 || ^1.1"
  5507. },
  5508. "require-dev": {
  5509. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  5510. },
  5511. "type": "library",
  5512. "autoload": {
  5513. "psr-4": {
  5514. "React\\Cache\\": "src/"
  5515. }
  5516. },
  5517. "notification-url": "https://packagist.org/downloads/",
  5518. "license": [
  5519. "MIT"
  5520. ],
  5521. "authors": [
  5522. {
  5523. "name": "Christian Lück",
  5524. "email": "christian@clue.engineering",
  5525. "homepage": "https://clue.engineering/"
  5526. },
  5527. {
  5528. "name": "Cees-Jan Kiewiet",
  5529. "email": "reactphp@ceesjankiewiet.nl",
  5530. "homepage": "https://wyrihaximus.net/"
  5531. },
  5532. {
  5533. "name": "Jan Sorgalla",
  5534. "email": "jsorgalla@gmail.com",
  5535. "homepage": "https://sorgalla.com/"
  5536. },
  5537. {
  5538. "name": "Chris Boden",
  5539. "email": "cboden@gmail.com",
  5540. "homepage": "https://cboden.dev/"
  5541. }
  5542. ],
  5543. "description": "Async, Promise-based cache interface for ReactPHP",
  5544. "keywords": [
  5545. "cache",
  5546. "caching",
  5547. "promise",
  5548. "reactphp"
  5549. ],
  5550. "support": {
  5551. "issues": "https://github.com/reactphp/cache/issues",
  5552. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  5553. },
  5554. "funding": [
  5555. {
  5556. "url": "https://opencollective.com/reactphp",
  5557. "type": "open_collective"
  5558. }
  5559. ],
  5560. "time": "2022-11-30T15:59:55+00:00"
  5561. },
  5562. {
  5563. "name": "react/dns",
  5564. "version": "v1.12.0",
  5565. "source": {
  5566. "type": "git",
  5567. "url": "https://github.com/reactphp/dns.git",
  5568. "reference": "c134600642fa615b46b41237ef243daa65bb64ec"
  5569. },
  5570. "dist": {
  5571. "type": "zip",
  5572. "url": "https://api.github.com/repos/reactphp/dns/zipball/c134600642fa615b46b41237ef243daa65bb64ec",
  5573. "reference": "c134600642fa615b46b41237ef243daa65bb64ec",
  5574. "shasum": ""
  5575. },
  5576. "require": {
  5577. "php": ">=5.3.0",
  5578. "react/cache": "^1.0 || ^0.6 || ^0.5",
  5579. "react/event-loop": "^1.2",
  5580. "react/promise": "^3.0 || ^2.7 || ^1.2.1"
  5581. },
  5582. "require-dev": {
  5583. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  5584. "react/async": "^4 || ^3 || ^2",
  5585. "react/promise-timer": "^1.9"
  5586. },
  5587. "type": "library",
  5588. "autoload": {
  5589. "psr-4": {
  5590. "React\\Dns\\": "src/"
  5591. }
  5592. },
  5593. "notification-url": "https://packagist.org/downloads/",
  5594. "license": [
  5595. "MIT"
  5596. ],
  5597. "authors": [
  5598. {
  5599. "name": "Christian Lück",
  5600. "email": "christian@clue.engineering",
  5601. "homepage": "https://clue.engineering/"
  5602. },
  5603. {
  5604. "name": "Cees-Jan Kiewiet",
  5605. "email": "reactphp@ceesjankiewiet.nl",
  5606. "homepage": "https://wyrihaximus.net/"
  5607. },
  5608. {
  5609. "name": "Jan Sorgalla",
  5610. "email": "jsorgalla@gmail.com",
  5611. "homepage": "https://sorgalla.com/"
  5612. },
  5613. {
  5614. "name": "Chris Boden",
  5615. "email": "cboden@gmail.com",
  5616. "homepage": "https://cboden.dev/"
  5617. }
  5618. ],
  5619. "description": "Async DNS resolver for ReactPHP",
  5620. "keywords": [
  5621. "async",
  5622. "dns",
  5623. "dns-resolver",
  5624. "reactphp"
  5625. ],
  5626. "support": {
  5627. "issues": "https://github.com/reactphp/dns/issues",
  5628. "source": "https://github.com/reactphp/dns/tree/v1.12.0"
  5629. },
  5630. "funding": [
  5631. {
  5632. "url": "https://opencollective.com/reactphp",
  5633. "type": "open_collective"
  5634. }
  5635. ],
  5636. "time": "2023-11-29T12:41:06+00:00"
  5637. },
  5638. {
  5639. "name": "react/event-loop",
  5640. "version": "v1.5.0",
  5641. "source": {
  5642. "type": "git",
  5643. "url": "https://github.com/reactphp/event-loop.git",
  5644. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  5645. },
  5646. "dist": {
  5647. "type": "zip",
  5648. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  5649. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  5650. "shasum": ""
  5651. },
  5652. "require": {
  5653. "php": ">=5.3.0"
  5654. },
  5655. "require-dev": {
  5656. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  5657. },
  5658. "suggest": {
  5659. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  5660. },
  5661. "type": "library",
  5662. "autoload": {
  5663. "psr-4": {
  5664. "React\\EventLoop\\": "src/"
  5665. }
  5666. },
  5667. "notification-url": "https://packagist.org/downloads/",
  5668. "license": [
  5669. "MIT"
  5670. ],
  5671. "authors": [
  5672. {
  5673. "name": "Christian Lück",
  5674. "email": "christian@clue.engineering",
  5675. "homepage": "https://clue.engineering/"
  5676. },
  5677. {
  5678. "name": "Cees-Jan Kiewiet",
  5679. "email": "reactphp@ceesjankiewiet.nl",
  5680. "homepage": "https://wyrihaximus.net/"
  5681. },
  5682. {
  5683. "name": "Jan Sorgalla",
  5684. "email": "jsorgalla@gmail.com",
  5685. "homepage": "https://sorgalla.com/"
  5686. },
  5687. {
  5688. "name": "Chris Boden",
  5689. "email": "cboden@gmail.com",
  5690. "homepage": "https://cboden.dev/"
  5691. }
  5692. ],
  5693. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  5694. "keywords": [
  5695. "asynchronous",
  5696. "event-loop"
  5697. ],
  5698. "support": {
  5699. "issues": "https://github.com/reactphp/event-loop/issues",
  5700. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  5701. },
  5702. "funding": [
  5703. {
  5704. "url": "https://opencollective.com/reactphp",
  5705. "type": "open_collective"
  5706. }
  5707. ],
  5708. "time": "2023-11-13T13:48:05+00:00"
  5709. },
  5710. {
  5711. "name": "react/promise",
  5712. "version": "v3.1.0",
  5713. "source": {
  5714. "type": "git",
  5715. "url": "https://github.com/reactphp/promise.git",
  5716. "reference": "e563d55d1641de1dea9f5e84f3cccc66d2bfe02c"
  5717. },
  5718. "dist": {
  5719. "type": "zip",
  5720. "url": "https://api.github.com/repos/reactphp/promise/zipball/e563d55d1641de1dea9f5e84f3cccc66d2bfe02c",
  5721. "reference": "e563d55d1641de1dea9f5e84f3cccc66d2bfe02c",
  5722. "shasum": ""
  5723. },
  5724. "require": {
  5725. "php": ">=7.1.0"
  5726. },
  5727. "require-dev": {
  5728. "phpstan/phpstan": "1.10.39 || 1.4.10",
  5729. "phpunit/phpunit": "^9.6 || ^7.5"
  5730. },
  5731. "type": "library",
  5732. "autoload": {
  5733. "files": [
  5734. "src/functions_include.php"
  5735. ],
  5736. "psr-4": {
  5737. "React\\Promise\\": "src/"
  5738. }
  5739. },
  5740. "notification-url": "https://packagist.org/downloads/",
  5741. "license": [
  5742. "MIT"
  5743. ],
  5744. "authors": [
  5745. {
  5746. "name": "Jan Sorgalla",
  5747. "email": "jsorgalla@gmail.com",
  5748. "homepage": "https://sorgalla.com/"
  5749. },
  5750. {
  5751. "name": "Christian Lück",
  5752. "email": "christian@clue.engineering",
  5753. "homepage": "https://clue.engineering/"
  5754. },
  5755. {
  5756. "name": "Cees-Jan Kiewiet",
  5757. "email": "reactphp@ceesjankiewiet.nl",
  5758. "homepage": "https://wyrihaximus.net/"
  5759. },
  5760. {
  5761. "name": "Chris Boden",
  5762. "email": "cboden@gmail.com",
  5763. "homepage": "https://cboden.dev/"
  5764. }
  5765. ],
  5766. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  5767. "keywords": [
  5768. "promise",
  5769. "promises"
  5770. ],
  5771. "support": {
  5772. "issues": "https://github.com/reactphp/promise/issues",
  5773. "source": "https://github.com/reactphp/promise/tree/v3.1.0"
  5774. },
  5775. "funding": [
  5776. {
  5777. "url": "https://opencollective.com/reactphp",
  5778. "type": "open_collective"
  5779. }
  5780. ],
  5781. "time": "2023-11-16T16:21:57+00:00"
  5782. },
  5783. {
  5784. "name": "react/socket",
  5785. "version": "v1.15.0",
  5786. "source": {
  5787. "type": "git",
  5788. "url": "https://github.com/reactphp/socket.git",
  5789. "reference": "216d3aec0b87f04a40ca04f481e6af01bdd1d038"
  5790. },
  5791. "dist": {
  5792. "type": "zip",
  5793. "url": "https://api.github.com/repos/reactphp/socket/zipball/216d3aec0b87f04a40ca04f481e6af01bdd1d038",
  5794. "reference": "216d3aec0b87f04a40ca04f481e6af01bdd1d038",
  5795. "shasum": ""
  5796. },
  5797. "require": {
  5798. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  5799. "php": ">=5.3.0",
  5800. "react/dns": "^1.11",
  5801. "react/event-loop": "^1.2",
  5802. "react/promise": "^3 || ^2.6 || ^1.2.1",
  5803. "react/stream": "^1.2"
  5804. },
  5805. "require-dev": {
  5806. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  5807. "react/async": "^4 || ^3 || ^2",
  5808. "react/promise-stream": "^1.4",
  5809. "react/promise-timer": "^1.10"
  5810. },
  5811. "type": "library",
  5812. "autoload": {
  5813. "psr-4": {
  5814. "React\\Socket\\": "src/"
  5815. }
  5816. },
  5817. "notification-url": "https://packagist.org/downloads/",
  5818. "license": [
  5819. "MIT"
  5820. ],
  5821. "authors": [
  5822. {
  5823. "name": "Christian Lück",
  5824. "email": "christian@clue.engineering",
  5825. "homepage": "https://clue.engineering/"
  5826. },
  5827. {
  5828. "name": "Cees-Jan Kiewiet",
  5829. "email": "reactphp@ceesjankiewiet.nl",
  5830. "homepage": "https://wyrihaximus.net/"
  5831. },
  5832. {
  5833. "name": "Jan Sorgalla",
  5834. "email": "jsorgalla@gmail.com",
  5835. "homepage": "https://sorgalla.com/"
  5836. },
  5837. {
  5838. "name": "Chris Boden",
  5839. "email": "cboden@gmail.com",
  5840. "homepage": "https://cboden.dev/"
  5841. }
  5842. ],
  5843. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  5844. "keywords": [
  5845. "Connection",
  5846. "Socket",
  5847. "async",
  5848. "reactphp",
  5849. "stream"
  5850. ],
  5851. "support": {
  5852. "issues": "https://github.com/reactphp/socket/issues",
  5853. "source": "https://github.com/reactphp/socket/tree/v1.15.0"
  5854. },
  5855. "funding": [
  5856. {
  5857. "url": "https://opencollective.com/reactphp",
  5858. "type": "open_collective"
  5859. }
  5860. ],
  5861. "time": "2023-12-15T11:02:10+00:00"
  5862. },
  5863. {
  5864. "name": "react/stream",
  5865. "version": "v1.3.0",
  5866. "source": {
  5867. "type": "git",
  5868. "url": "https://github.com/reactphp/stream.git",
  5869. "reference": "6fbc9672905c7d5a885f2da2fc696f65840f4a66"
  5870. },
  5871. "dist": {
  5872. "type": "zip",
  5873. "url": "https://api.github.com/repos/reactphp/stream/zipball/6fbc9672905c7d5a885f2da2fc696f65840f4a66",
  5874. "reference": "6fbc9672905c7d5a885f2da2fc696f65840f4a66",
  5875. "shasum": ""
  5876. },
  5877. "require": {
  5878. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  5879. "php": ">=5.3.8",
  5880. "react/event-loop": "^1.2"
  5881. },
  5882. "require-dev": {
  5883. "clue/stream-filter": "~1.2",
  5884. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  5885. },
  5886. "type": "library",
  5887. "autoload": {
  5888. "psr-4": {
  5889. "React\\Stream\\": "src/"
  5890. }
  5891. },
  5892. "notification-url": "https://packagist.org/downloads/",
  5893. "license": [
  5894. "MIT"
  5895. ],
  5896. "authors": [
  5897. {
  5898. "name": "Christian Lück",
  5899. "email": "christian@clue.engineering",
  5900. "homepage": "https://clue.engineering/"
  5901. },
  5902. {
  5903. "name": "Cees-Jan Kiewiet",
  5904. "email": "reactphp@ceesjankiewiet.nl",
  5905. "homepage": "https://wyrihaximus.net/"
  5906. },
  5907. {
  5908. "name": "Jan Sorgalla",
  5909. "email": "jsorgalla@gmail.com",
  5910. "homepage": "https://sorgalla.com/"
  5911. },
  5912. {
  5913. "name": "Chris Boden",
  5914. "email": "cboden@gmail.com",
  5915. "homepage": "https://cboden.dev/"
  5916. }
  5917. ],
  5918. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  5919. "keywords": [
  5920. "event-driven",
  5921. "io",
  5922. "non-blocking",
  5923. "pipe",
  5924. "reactphp",
  5925. "readable",
  5926. "stream",
  5927. "writable"
  5928. ],
  5929. "support": {
  5930. "issues": "https://github.com/reactphp/stream/issues",
  5931. "source": "https://github.com/reactphp/stream/tree/v1.3.0"
  5932. },
  5933. "funding": [
  5934. {
  5935. "url": "https://opencollective.com/reactphp",
  5936. "type": "open_collective"
  5937. }
  5938. ],
  5939. "time": "2023-06-16T10:52:11+00:00"
  5940. },
  5941. {
  5942. "name": "socialiteproviders/manager",
  5943. "version": "v4.4.0",
  5944. "source": {
  5945. "type": "git",
  5946. "url": "https://github.com/SocialiteProviders/Manager.git",
  5947. "reference": "df5e45b53d918ec3d689f014d98a6c838b98ed96"
  5948. },
  5949. "dist": {
  5950. "type": "zip",
  5951. "url": "https://api.github.com/repos/SocialiteProviders/Manager/zipball/df5e45b53d918ec3d689f014d98a6c838b98ed96",
  5952. "reference": "df5e45b53d918ec3d689f014d98a6c838b98ed96",
  5953. "shasum": ""
  5954. },
  5955. "require": {
  5956. "illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0",
  5957. "laravel/socialite": "~5.0",
  5958. "php": "^8.0"
  5959. },
  5960. "require-dev": {
  5961. "mockery/mockery": "^1.2",
  5962. "phpunit/phpunit": "^6.0 || ^9.0"
  5963. },
  5964. "type": "library",
  5965. "extra": {
  5966. "laravel": {
  5967. "providers": [
  5968. "SocialiteProviders\\Manager\\ServiceProvider"
  5969. ]
  5970. }
  5971. },
  5972. "autoload": {
  5973. "psr-4": {
  5974. "SocialiteProviders\\Manager\\": "src/"
  5975. }
  5976. },
  5977. "notification-url": "https://packagist.org/downloads/",
  5978. "license": [
  5979. "MIT"
  5980. ],
  5981. "authors": [
  5982. {
  5983. "name": "Andy Wendt",
  5984. "email": "andy@awendt.com"
  5985. },
  5986. {
  5987. "name": "Anton Komarev",
  5988. "email": "a.komarev@cybercog.su"
  5989. },
  5990. {
  5991. "name": "Miguel Piedrafita",
  5992. "email": "soy@miguelpiedrafita.com"
  5993. },
  5994. {
  5995. "name": "atymic",
  5996. "email": "atymicq@gmail.com",
  5997. "homepage": "https://atymic.dev"
  5998. }
  5999. ],
  6000. "description": "Easily add new or override built-in providers in Laravel Socialite.",
  6001. "homepage": "https://socialiteproviders.com",
  6002. "keywords": [
  6003. "laravel",
  6004. "manager",
  6005. "oauth",
  6006. "providers",
  6007. "socialite"
  6008. ],
  6009. "support": {
  6010. "issues": "https://github.com/socialiteproviders/manager/issues",
  6011. "source": "https://github.com/socialiteproviders/manager"
  6012. },
  6013. "time": "2023-08-27T23:46:34+00:00"
  6014. },
  6015. {
  6016. "name": "socialiteproviders/weixin",
  6017. "version": "4.1.0",
  6018. "source": {
  6019. "type": "git",
  6020. "url": "https://github.com/SocialiteProviders/Weixin.git",
  6021. "reference": "4f5ca3ee25e1a46e0dc6bb00bd6ba77f344e340f"
  6022. },
  6023. "dist": {
  6024. "type": "zip",
  6025. "url": "https://api.github.com/repos/SocialiteProviders/Weixin/zipball/4f5ca3ee25e1a46e0dc6bb00bd6ba77f344e340f",
  6026. "reference": "4f5ca3ee25e1a46e0dc6bb00bd6ba77f344e340f",
  6027. "shasum": ""
  6028. },
  6029. "require": {
  6030. "ext-json": "*",
  6031. "php": "^7.2 || ^8.0",
  6032. "socialiteproviders/manager": "~4.0"
  6033. },
  6034. "type": "library",
  6035. "autoload": {
  6036. "psr-4": {
  6037. "SocialiteProviders\\Weixin\\": ""
  6038. }
  6039. },
  6040. "notification-url": "https://packagist.org/downloads/",
  6041. "license": [
  6042. "MIT"
  6043. ],
  6044. "authors": [
  6045. {
  6046. "name": "xyxu",
  6047. "email": "techxu@gmail.com"
  6048. },
  6049. {
  6050. "name": "xiami",
  6051. "email": "jhdxr@php.net"
  6052. }
  6053. ],
  6054. "description": "Weixin OAuth2 Provider for Laravel Socialite",
  6055. "support": {
  6056. "source": "https://github.com/SocialiteProviders/Weixin/tree/4.1.0"
  6057. },
  6058. "time": "2020-12-01T23:10:59+00:00"
  6059. },
  6060. {
  6061. "name": "socialiteproviders/weixin-web",
  6062. "version": "4.1.0",
  6063. "source": {
  6064. "type": "git",
  6065. "url": "https://github.com/SocialiteProviders/Weixin-Web.git",
  6066. "reference": "3862d3a2e3e55bb0381efd0b73958bfc4dffd7b3"
  6067. },
  6068. "dist": {
  6069. "type": "zip",
  6070. "url": "https://api.github.com/repos/SocialiteProviders/Weixin-Web/zipball/3862d3a2e3e55bb0381efd0b73958bfc4dffd7b3",
  6071. "reference": "3862d3a2e3e55bb0381efd0b73958bfc4dffd7b3",
  6072. "shasum": ""
  6073. },
  6074. "require": {
  6075. "ext-json": "*",
  6076. "php": "^7.2 || ^8.0",
  6077. "socialiteproviders/manager": "~4.0"
  6078. },
  6079. "type": "library",
  6080. "autoload": {
  6081. "psr-4": {
  6082. "SocialiteProviders\\WeixinWeb\\": ""
  6083. }
  6084. },
  6085. "notification-url": "https://packagist.org/downloads/",
  6086. "license": [
  6087. "MIT"
  6088. ],
  6089. "authors": [
  6090. {
  6091. "name": "xyxu",
  6092. "email": "techxu@gmail.com"
  6093. }
  6094. ],
  6095. "description": "Weixin-Web OAuth2 Provider for Laravel Socialite",
  6096. "support": {
  6097. "source": "https://github.com/SocialiteProviders/Weixin-Web/tree/4.1.0"
  6098. },
  6099. "time": "2020-12-01T23:10:59+00:00"
  6100. },
  6101. {
  6102. "name": "swiftmailer/swiftmailer",
  6103. "version": "v6.3.0",
  6104. "source": {
  6105. "type": "git",
  6106. "url": "https://github.com/swiftmailer/swiftmailer.git",
  6107. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  6108. },
  6109. "dist": {
  6110. "type": "zip",
  6111. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  6112. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  6113. "shasum": ""
  6114. },
  6115. "require": {
  6116. "egulias/email-validator": "^2.0|^3.1",
  6117. "php": ">=7.0.0",
  6118. "symfony/polyfill-iconv": "^1.0",
  6119. "symfony/polyfill-intl-idn": "^1.10",
  6120. "symfony/polyfill-mbstring": "^1.0"
  6121. },
  6122. "require-dev": {
  6123. "mockery/mockery": "^1.0",
  6124. "symfony/phpunit-bridge": "^4.4|^5.4"
  6125. },
  6126. "suggest": {
  6127. "ext-intl": "Needed to support internationalized email addresses"
  6128. },
  6129. "type": "library",
  6130. "extra": {
  6131. "branch-alias": {
  6132. "dev-master": "6.2-dev"
  6133. }
  6134. },
  6135. "autoload": {
  6136. "files": [
  6137. "lib/swift_required.php"
  6138. ]
  6139. },
  6140. "notification-url": "https://packagist.org/downloads/",
  6141. "license": [
  6142. "MIT"
  6143. ],
  6144. "authors": [
  6145. {
  6146. "name": "Chris Corbyn"
  6147. },
  6148. {
  6149. "name": "Fabien Potencier",
  6150. "email": "fabien@symfony.com"
  6151. }
  6152. ],
  6153. "description": "Swiftmailer, free feature-rich PHP mailer",
  6154. "homepage": "https://swiftmailer.symfony.com",
  6155. "keywords": [
  6156. "email",
  6157. "mail",
  6158. "mailer"
  6159. ],
  6160. "support": {
  6161. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  6162. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  6163. },
  6164. "funding": [
  6165. {
  6166. "url": "https://github.com/fabpot",
  6167. "type": "github"
  6168. },
  6169. {
  6170. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  6171. "type": "tidelift"
  6172. }
  6173. ],
  6174. "abandoned": "symfony/mailer",
  6175. "time": "2021-10-18T15:26:12+00:00"
  6176. },
  6177. {
  6178. "name": "symfony/console",
  6179. "version": "v5.4.32",
  6180. "source": {
  6181. "type": "git",
  6182. "url": "https://github.com/symfony/console.git",
  6183. "reference": "c70df1ffaf23a8d340bded3cfab1b86752ad6ed7"
  6184. },
  6185. "dist": {
  6186. "type": "zip",
  6187. "url": "https://api.github.com/repos/symfony/console/zipball/c70df1ffaf23a8d340bded3cfab1b86752ad6ed7",
  6188. "reference": "c70df1ffaf23a8d340bded3cfab1b86752ad6ed7",
  6189. "shasum": ""
  6190. },
  6191. "require": {
  6192. "php": ">=7.2.5",
  6193. "symfony/deprecation-contracts": "^2.1|^3",
  6194. "symfony/polyfill-mbstring": "~1.0",
  6195. "symfony/polyfill-php73": "^1.9",
  6196. "symfony/polyfill-php80": "^1.16",
  6197. "symfony/service-contracts": "^1.1|^2|^3",
  6198. "symfony/string": "^5.1|^6.0"
  6199. },
  6200. "conflict": {
  6201. "psr/log": ">=3",
  6202. "symfony/dependency-injection": "<4.4",
  6203. "symfony/dotenv": "<5.1",
  6204. "symfony/event-dispatcher": "<4.4",
  6205. "symfony/lock": "<4.4",
  6206. "symfony/process": "<4.4"
  6207. },
  6208. "provide": {
  6209. "psr/log-implementation": "1.0|2.0"
  6210. },
  6211. "require-dev": {
  6212. "psr/log": "^1|^2",
  6213. "symfony/config": "^4.4|^5.0|^6.0",
  6214. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6215. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  6216. "symfony/lock": "^4.4|^5.0|^6.0",
  6217. "symfony/process": "^4.4|^5.0|^6.0",
  6218. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  6219. },
  6220. "suggest": {
  6221. "psr/log": "For using the console logger",
  6222. "symfony/event-dispatcher": "",
  6223. "symfony/lock": "",
  6224. "symfony/process": ""
  6225. },
  6226. "type": "library",
  6227. "autoload": {
  6228. "psr-4": {
  6229. "Symfony\\Component\\Console\\": ""
  6230. },
  6231. "exclude-from-classmap": [
  6232. "/Tests/"
  6233. ]
  6234. },
  6235. "notification-url": "https://packagist.org/downloads/",
  6236. "license": [
  6237. "MIT"
  6238. ],
  6239. "authors": [
  6240. {
  6241. "name": "Fabien Potencier",
  6242. "email": "fabien@symfony.com"
  6243. },
  6244. {
  6245. "name": "Symfony Community",
  6246. "homepage": "https://symfony.com/contributors"
  6247. }
  6248. ],
  6249. "description": "Eases the creation of beautiful and testable command line interfaces",
  6250. "homepage": "https://symfony.com",
  6251. "keywords": [
  6252. "cli",
  6253. "command-line",
  6254. "console",
  6255. "terminal"
  6256. ],
  6257. "support": {
  6258. "source": "https://github.com/symfony/console/tree/v5.4.32"
  6259. },
  6260. "funding": [
  6261. {
  6262. "url": "https://symfony.com/sponsor",
  6263. "type": "custom"
  6264. },
  6265. {
  6266. "url": "https://github.com/fabpot",
  6267. "type": "github"
  6268. },
  6269. {
  6270. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6271. "type": "tidelift"
  6272. }
  6273. ],
  6274. "time": "2023-11-18T18:23:04+00:00"
  6275. },
  6276. {
  6277. "name": "symfony/css-selector",
  6278. "version": "v6.0.19",
  6279. "source": {
  6280. "type": "git",
  6281. "url": "https://github.com/symfony/css-selector.git",
  6282. "reference": "f1d00bddb83a4cb2138564b2150001cb6ce272b1"
  6283. },
  6284. "dist": {
  6285. "type": "zip",
  6286. "url": "https://api.github.com/repos/symfony/css-selector/zipball/f1d00bddb83a4cb2138564b2150001cb6ce272b1",
  6287. "reference": "f1d00bddb83a4cb2138564b2150001cb6ce272b1",
  6288. "shasum": ""
  6289. },
  6290. "require": {
  6291. "php": ">=8.0.2"
  6292. },
  6293. "type": "library",
  6294. "autoload": {
  6295. "psr-4": {
  6296. "Symfony\\Component\\CssSelector\\": ""
  6297. },
  6298. "exclude-from-classmap": [
  6299. "/Tests/"
  6300. ]
  6301. },
  6302. "notification-url": "https://packagist.org/downloads/",
  6303. "license": [
  6304. "MIT"
  6305. ],
  6306. "authors": [
  6307. {
  6308. "name": "Fabien Potencier",
  6309. "email": "fabien@symfony.com"
  6310. },
  6311. {
  6312. "name": "Jean-François Simon",
  6313. "email": "jeanfrancois.simon@sensiolabs.com"
  6314. },
  6315. {
  6316. "name": "Symfony Community",
  6317. "homepage": "https://symfony.com/contributors"
  6318. }
  6319. ],
  6320. "description": "Converts CSS selectors to XPath expressions",
  6321. "homepage": "https://symfony.com",
  6322. "support": {
  6323. "source": "https://github.com/symfony/css-selector/tree/v6.0.19"
  6324. },
  6325. "funding": [
  6326. {
  6327. "url": "https://symfony.com/sponsor",
  6328. "type": "custom"
  6329. },
  6330. {
  6331. "url": "https://github.com/fabpot",
  6332. "type": "github"
  6333. },
  6334. {
  6335. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6336. "type": "tidelift"
  6337. }
  6338. ],
  6339. "time": "2023-01-01T08:36:10+00:00"
  6340. },
  6341. {
  6342. "name": "symfony/deprecation-contracts",
  6343. "version": "v3.0.2",
  6344. "source": {
  6345. "type": "git",
  6346. "url": "https://github.com/symfony/deprecation-contracts.git",
  6347. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c"
  6348. },
  6349. "dist": {
  6350. "type": "zip",
  6351. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  6352. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  6353. "shasum": ""
  6354. },
  6355. "require": {
  6356. "php": ">=8.0.2"
  6357. },
  6358. "type": "library",
  6359. "extra": {
  6360. "branch-alias": {
  6361. "dev-main": "3.0-dev"
  6362. },
  6363. "thanks": {
  6364. "name": "symfony/contracts",
  6365. "url": "https://github.com/symfony/contracts"
  6366. }
  6367. },
  6368. "autoload": {
  6369. "files": [
  6370. "function.php"
  6371. ]
  6372. },
  6373. "notification-url": "https://packagist.org/downloads/",
  6374. "license": [
  6375. "MIT"
  6376. ],
  6377. "authors": [
  6378. {
  6379. "name": "Nicolas Grekas",
  6380. "email": "p@tchwork.com"
  6381. },
  6382. {
  6383. "name": "Symfony Community",
  6384. "homepage": "https://symfony.com/contributors"
  6385. }
  6386. ],
  6387. "description": "A generic function and convention to trigger deprecation notices",
  6388. "homepage": "https://symfony.com",
  6389. "support": {
  6390. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.0.2"
  6391. },
  6392. "funding": [
  6393. {
  6394. "url": "https://symfony.com/sponsor",
  6395. "type": "custom"
  6396. },
  6397. {
  6398. "url": "https://github.com/fabpot",
  6399. "type": "github"
  6400. },
  6401. {
  6402. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6403. "type": "tidelift"
  6404. }
  6405. ],
  6406. "time": "2022-01-02T09:55:41+00:00"
  6407. },
  6408. {
  6409. "name": "symfony/error-handler",
  6410. "version": "v5.4.29",
  6411. "source": {
  6412. "type": "git",
  6413. "url": "https://github.com/symfony/error-handler.git",
  6414. "reference": "328c6fcfd2f90b64c16efaf0ea67a311d672f078"
  6415. },
  6416. "dist": {
  6417. "type": "zip",
  6418. "url": "https://api.github.com/repos/symfony/error-handler/zipball/328c6fcfd2f90b64c16efaf0ea67a311d672f078",
  6419. "reference": "328c6fcfd2f90b64c16efaf0ea67a311d672f078",
  6420. "shasum": ""
  6421. },
  6422. "require": {
  6423. "php": ">=7.2.5",
  6424. "psr/log": "^1|^2|^3",
  6425. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  6426. },
  6427. "require-dev": {
  6428. "symfony/deprecation-contracts": "^2.1|^3",
  6429. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  6430. "symfony/serializer": "^4.4|^5.0|^6.0"
  6431. },
  6432. "bin": [
  6433. "Resources/bin/patch-type-declarations"
  6434. ],
  6435. "type": "library",
  6436. "autoload": {
  6437. "psr-4": {
  6438. "Symfony\\Component\\ErrorHandler\\": ""
  6439. },
  6440. "exclude-from-classmap": [
  6441. "/Tests/"
  6442. ]
  6443. },
  6444. "notification-url": "https://packagist.org/downloads/",
  6445. "license": [
  6446. "MIT"
  6447. ],
  6448. "authors": [
  6449. {
  6450. "name": "Fabien Potencier",
  6451. "email": "fabien@symfony.com"
  6452. },
  6453. {
  6454. "name": "Symfony Community",
  6455. "homepage": "https://symfony.com/contributors"
  6456. }
  6457. ],
  6458. "description": "Provides tools to manage errors and ease debugging PHP code",
  6459. "homepage": "https://symfony.com",
  6460. "support": {
  6461. "source": "https://github.com/symfony/error-handler/tree/v5.4.29"
  6462. },
  6463. "funding": [
  6464. {
  6465. "url": "https://symfony.com/sponsor",
  6466. "type": "custom"
  6467. },
  6468. {
  6469. "url": "https://github.com/fabpot",
  6470. "type": "github"
  6471. },
  6472. {
  6473. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6474. "type": "tidelift"
  6475. }
  6476. ],
  6477. "time": "2023-09-06T21:54:06+00:00"
  6478. },
  6479. {
  6480. "name": "symfony/event-dispatcher",
  6481. "version": "v6.0.19",
  6482. "source": {
  6483. "type": "git",
  6484. "url": "https://github.com/symfony/event-dispatcher.git",
  6485. "reference": "2eaf8e63bc5b8cefabd4a800157f0d0c094f677a"
  6486. },
  6487. "dist": {
  6488. "type": "zip",
  6489. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/2eaf8e63bc5b8cefabd4a800157f0d0c094f677a",
  6490. "reference": "2eaf8e63bc5b8cefabd4a800157f0d0c094f677a",
  6491. "shasum": ""
  6492. },
  6493. "require": {
  6494. "php": ">=8.0.2",
  6495. "symfony/event-dispatcher-contracts": "^2|^3"
  6496. },
  6497. "conflict": {
  6498. "symfony/dependency-injection": "<5.4"
  6499. },
  6500. "provide": {
  6501. "psr/event-dispatcher-implementation": "1.0",
  6502. "symfony/event-dispatcher-implementation": "2.0|3.0"
  6503. },
  6504. "require-dev": {
  6505. "psr/log": "^1|^2|^3",
  6506. "symfony/config": "^5.4|^6.0",
  6507. "symfony/dependency-injection": "^5.4|^6.0",
  6508. "symfony/error-handler": "^5.4|^6.0",
  6509. "symfony/expression-language": "^5.4|^6.0",
  6510. "symfony/http-foundation": "^5.4|^6.0",
  6511. "symfony/service-contracts": "^1.1|^2|^3",
  6512. "symfony/stopwatch": "^5.4|^6.0"
  6513. },
  6514. "suggest": {
  6515. "symfony/dependency-injection": "",
  6516. "symfony/http-kernel": ""
  6517. },
  6518. "type": "library",
  6519. "autoload": {
  6520. "psr-4": {
  6521. "Symfony\\Component\\EventDispatcher\\": ""
  6522. },
  6523. "exclude-from-classmap": [
  6524. "/Tests/"
  6525. ]
  6526. },
  6527. "notification-url": "https://packagist.org/downloads/",
  6528. "license": [
  6529. "MIT"
  6530. ],
  6531. "authors": [
  6532. {
  6533. "name": "Fabien Potencier",
  6534. "email": "fabien@symfony.com"
  6535. },
  6536. {
  6537. "name": "Symfony Community",
  6538. "homepage": "https://symfony.com/contributors"
  6539. }
  6540. ],
  6541. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  6542. "homepage": "https://symfony.com",
  6543. "support": {
  6544. "source": "https://github.com/symfony/event-dispatcher/tree/v6.0.19"
  6545. },
  6546. "funding": [
  6547. {
  6548. "url": "https://symfony.com/sponsor",
  6549. "type": "custom"
  6550. },
  6551. {
  6552. "url": "https://github.com/fabpot",
  6553. "type": "github"
  6554. },
  6555. {
  6556. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6557. "type": "tidelift"
  6558. }
  6559. ],
  6560. "time": "2023-01-01T08:36:10+00:00"
  6561. },
  6562. {
  6563. "name": "symfony/event-dispatcher-contracts",
  6564. "version": "v3.0.2",
  6565. "source": {
  6566. "type": "git",
  6567. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  6568. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051"
  6569. },
  6570. "dist": {
  6571. "type": "zip",
  6572. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7bc61cc2db649b4637d331240c5346dcc7708051",
  6573. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051",
  6574. "shasum": ""
  6575. },
  6576. "require": {
  6577. "php": ">=8.0.2",
  6578. "psr/event-dispatcher": "^1"
  6579. },
  6580. "suggest": {
  6581. "symfony/event-dispatcher-implementation": ""
  6582. },
  6583. "type": "library",
  6584. "extra": {
  6585. "branch-alias": {
  6586. "dev-main": "3.0-dev"
  6587. },
  6588. "thanks": {
  6589. "name": "symfony/contracts",
  6590. "url": "https://github.com/symfony/contracts"
  6591. }
  6592. },
  6593. "autoload": {
  6594. "psr-4": {
  6595. "Symfony\\Contracts\\EventDispatcher\\": ""
  6596. }
  6597. },
  6598. "notification-url": "https://packagist.org/downloads/",
  6599. "license": [
  6600. "MIT"
  6601. ],
  6602. "authors": [
  6603. {
  6604. "name": "Nicolas Grekas",
  6605. "email": "p@tchwork.com"
  6606. },
  6607. {
  6608. "name": "Symfony Community",
  6609. "homepage": "https://symfony.com/contributors"
  6610. }
  6611. ],
  6612. "description": "Generic abstractions related to dispatching event",
  6613. "homepage": "https://symfony.com",
  6614. "keywords": [
  6615. "abstractions",
  6616. "contracts",
  6617. "decoupling",
  6618. "interfaces",
  6619. "interoperability",
  6620. "standards"
  6621. ],
  6622. "support": {
  6623. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.0.2"
  6624. },
  6625. "funding": [
  6626. {
  6627. "url": "https://symfony.com/sponsor",
  6628. "type": "custom"
  6629. },
  6630. {
  6631. "url": "https://github.com/fabpot",
  6632. "type": "github"
  6633. },
  6634. {
  6635. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6636. "type": "tidelift"
  6637. }
  6638. ],
  6639. "time": "2022-01-02T09:55:41+00:00"
  6640. },
  6641. {
  6642. "name": "symfony/finder",
  6643. "version": "v5.4.27",
  6644. "source": {
  6645. "type": "git",
  6646. "url": "https://github.com/symfony/finder.git",
  6647. "reference": "ff4bce3c33451e7ec778070e45bd23f74214cd5d"
  6648. },
  6649. "dist": {
  6650. "type": "zip",
  6651. "url": "https://api.github.com/repos/symfony/finder/zipball/ff4bce3c33451e7ec778070e45bd23f74214cd5d",
  6652. "reference": "ff4bce3c33451e7ec778070e45bd23f74214cd5d",
  6653. "shasum": ""
  6654. },
  6655. "require": {
  6656. "php": ">=7.2.5",
  6657. "symfony/deprecation-contracts": "^2.1|^3",
  6658. "symfony/polyfill-php80": "^1.16"
  6659. },
  6660. "type": "library",
  6661. "autoload": {
  6662. "psr-4": {
  6663. "Symfony\\Component\\Finder\\": ""
  6664. },
  6665. "exclude-from-classmap": [
  6666. "/Tests/"
  6667. ]
  6668. },
  6669. "notification-url": "https://packagist.org/downloads/",
  6670. "license": [
  6671. "MIT"
  6672. ],
  6673. "authors": [
  6674. {
  6675. "name": "Fabien Potencier",
  6676. "email": "fabien@symfony.com"
  6677. },
  6678. {
  6679. "name": "Symfony Community",
  6680. "homepage": "https://symfony.com/contributors"
  6681. }
  6682. ],
  6683. "description": "Finds files and directories via an intuitive fluent interface",
  6684. "homepage": "https://symfony.com",
  6685. "support": {
  6686. "source": "https://github.com/symfony/finder/tree/v5.4.27"
  6687. },
  6688. "funding": [
  6689. {
  6690. "url": "https://symfony.com/sponsor",
  6691. "type": "custom"
  6692. },
  6693. {
  6694. "url": "https://github.com/fabpot",
  6695. "type": "github"
  6696. },
  6697. {
  6698. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6699. "type": "tidelift"
  6700. }
  6701. ],
  6702. "time": "2023-07-31T08:02:31+00:00"
  6703. },
  6704. {
  6705. "name": "symfony/http-foundation",
  6706. "version": "v5.4.32",
  6707. "source": {
  6708. "type": "git",
  6709. "url": "https://github.com/symfony/http-foundation.git",
  6710. "reference": "cbcd80a4c36f59772d62860fdb0cb6a38da63fd2"
  6711. },
  6712. "dist": {
  6713. "type": "zip",
  6714. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/cbcd80a4c36f59772d62860fdb0cb6a38da63fd2",
  6715. "reference": "cbcd80a4c36f59772d62860fdb0cb6a38da63fd2",
  6716. "shasum": ""
  6717. },
  6718. "require": {
  6719. "php": ">=7.2.5",
  6720. "symfony/deprecation-contracts": "^2.1|^3",
  6721. "symfony/polyfill-mbstring": "~1.1",
  6722. "symfony/polyfill-php80": "^1.16"
  6723. },
  6724. "require-dev": {
  6725. "predis/predis": "~1.0",
  6726. "symfony/cache": "^4.4|^5.0|^6.0",
  6727. "symfony/dependency-injection": "^5.4|^6.0",
  6728. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6729. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  6730. "symfony/mime": "^4.4|^5.0|^6.0",
  6731. "symfony/rate-limiter": "^5.2|^6.0"
  6732. },
  6733. "suggest": {
  6734. "symfony/mime": "To use the file extension guesser"
  6735. },
  6736. "type": "library",
  6737. "autoload": {
  6738. "psr-4": {
  6739. "Symfony\\Component\\HttpFoundation\\": ""
  6740. },
  6741. "exclude-from-classmap": [
  6742. "/Tests/"
  6743. ]
  6744. },
  6745. "notification-url": "https://packagist.org/downloads/",
  6746. "license": [
  6747. "MIT"
  6748. ],
  6749. "authors": [
  6750. {
  6751. "name": "Fabien Potencier",
  6752. "email": "fabien@symfony.com"
  6753. },
  6754. {
  6755. "name": "Symfony Community",
  6756. "homepage": "https://symfony.com/contributors"
  6757. }
  6758. ],
  6759. "description": "Defines an object-oriented layer for the HTTP specification",
  6760. "homepage": "https://symfony.com",
  6761. "support": {
  6762. "source": "https://github.com/symfony/http-foundation/tree/v5.4.32"
  6763. },
  6764. "funding": [
  6765. {
  6766. "url": "https://symfony.com/sponsor",
  6767. "type": "custom"
  6768. },
  6769. {
  6770. "url": "https://github.com/fabpot",
  6771. "type": "github"
  6772. },
  6773. {
  6774. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6775. "type": "tidelift"
  6776. }
  6777. ],
  6778. "time": "2023-11-20T15:40:25+00:00"
  6779. },
  6780. {
  6781. "name": "symfony/http-kernel",
  6782. "version": "v5.4.33",
  6783. "source": {
  6784. "type": "git",
  6785. "url": "https://github.com/symfony/http-kernel.git",
  6786. "reference": "892636f9279f953dc266dc088f900b03eecb4ffa"
  6787. },
  6788. "dist": {
  6789. "type": "zip",
  6790. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/892636f9279f953dc266dc088f900b03eecb4ffa",
  6791. "reference": "892636f9279f953dc266dc088f900b03eecb4ffa",
  6792. "shasum": ""
  6793. },
  6794. "require": {
  6795. "php": ">=7.2.5",
  6796. "psr/log": "^1|^2",
  6797. "symfony/deprecation-contracts": "^2.1|^3",
  6798. "symfony/error-handler": "^4.4|^5.0|^6.0",
  6799. "symfony/event-dispatcher": "^5.0|^6.0",
  6800. "symfony/http-foundation": "^5.4.21|^6.2.7",
  6801. "symfony/polyfill-ctype": "^1.8",
  6802. "symfony/polyfill-php73": "^1.9",
  6803. "symfony/polyfill-php80": "^1.16"
  6804. },
  6805. "conflict": {
  6806. "symfony/browser-kit": "<5.4",
  6807. "symfony/cache": "<5.0",
  6808. "symfony/config": "<5.0",
  6809. "symfony/console": "<4.4",
  6810. "symfony/dependency-injection": "<5.3",
  6811. "symfony/doctrine-bridge": "<5.0",
  6812. "symfony/form": "<5.0",
  6813. "symfony/http-client": "<5.0",
  6814. "symfony/mailer": "<5.0",
  6815. "symfony/messenger": "<5.0",
  6816. "symfony/translation": "<5.0",
  6817. "symfony/twig-bridge": "<5.0",
  6818. "symfony/validator": "<5.0",
  6819. "twig/twig": "<2.13"
  6820. },
  6821. "provide": {
  6822. "psr/log-implementation": "1.0|2.0"
  6823. },
  6824. "require-dev": {
  6825. "psr/cache": "^1.0|^2.0|^3.0",
  6826. "symfony/browser-kit": "^5.4|^6.0",
  6827. "symfony/config": "^5.0|^6.0",
  6828. "symfony/console": "^4.4|^5.0|^6.0",
  6829. "symfony/css-selector": "^4.4|^5.0|^6.0",
  6830. "symfony/dependency-injection": "^5.3|^6.0",
  6831. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  6832. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6833. "symfony/finder": "^4.4|^5.0|^6.0",
  6834. "symfony/http-client-contracts": "^1.1|^2|^3",
  6835. "symfony/process": "^4.4|^5.0|^6.0",
  6836. "symfony/routing": "^4.4|^5.0|^6.0",
  6837. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  6838. "symfony/translation": "^4.4|^5.0|^6.0",
  6839. "symfony/translation-contracts": "^1.1|^2|^3",
  6840. "twig/twig": "^2.13|^3.0.4"
  6841. },
  6842. "suggest": {
  6843. "symfony/browser-kit": "",
  6844. "symfony/config": "",
  6845. "symfony/console": "",
  6846. "symfony/dependency-injection": ""
  6847. },
  6848. "type": "library",
  6849. "autoload": {
  6850. "psr-4": {
  6851. "Symfony\\Component\\HttpKernel\\": ""
  6852. },
  6853. "exclude-from-classmap": [
  6854. "/Tests/"
  6855. ]
  6856. },
  6857. "notification-url": "https://packagist.org/downloads/",
  6858. "license": [
  6859. "MIT"
  6860. ],
  6861. "authors": [
  6862. {
  6863. "name": "Fabien Potencier",
  6864. "email": "fabien@symfony.com"
  6865. },
  6866. {
  6867. "name": "Symfony Community",
  6868. "homepage": "https://symfony.com/contributors"
  6869. }
  6870. ],
  6871. "description": "Provides a structured process for converting a Request into a Response",
  6872. "homepage": "https://symfony.com",
  6873. "support": {
  6874. "source": "https://github.com/symfony/http-kernel/tree/v5.4.33"
  6875. },
  6876. "funding": [
  6877. {
  6878. "url": "https://symfony.com/sponsor",
  6879. "type": "custom"
  6880. },
  6881. {
  6882. "url": "https://github.com/fabpot",
  6883. "type": "github"
  6884. },
  6885. {
  6886. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6887. "type": "tidelift"
  6888. }
  6889. ],
  6890. "time": "2023-12-01T16:51:11+00:00"
  6891. },
  6892. {
  6893. "name": "symfony/mime",
  6894. "version": "v5.4.26",
  6895. "source": {
  6896. "type": "git",
  6897. "url": "https://github.com/symfony/mime.git",
  6898. "reference": "2ea06dfeee20000a319d8407cea1d47533d5a9d2"
  6899. },
  6900. "dist": {
  6901. "type": "zip",
  6902. "url": "https://api.github.com/repos/symfony/mime/zipball/2ea06dfeee20000a319d8407cea1d47533d5a9d2",
  6903. "reference": "2ea06dfeee20000a319d8407cea1d47533d5a9d2",
  6904. "shasum": ""
  6905. },
  6906. "require": {
  6907. "php": ">=7.2.5",
  6908. "symfony/deprecation-contracts": "^2.1|^3",
  6909. "symfony/polyfill-intl-idn": "^1.10",
  6910. "symfony/polyfill-mbstring": "^1.0",
  6911. "symfony/polyfill-php80": "^1.16"
  6912. },
  6913. "conflict": {
  6914. "egulias/email-validator": "~3.0.0",
  6915. "phpdocumentor/reflection-docblock": "<3.2.2",
  6916. "phpdocumentor/type-resolver": "<1.4.0",
  6917. "symfony/mailer": "<4.4",
  6918. "symfony/serializer": "<5.4.26|>=6,<6.2.13|>=6.3,<6.3.2"
  6919. },
  6920. "require-dev": {
  6921. "egulias/email-validator": "^2.1.10|^3.1|^4",
  6922. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6923. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6924. "symfony/property-access": "^4.4|^5.1|^6.0",
  6925. "symfony/property-info": "^4.4|^5.1|^6.0",
  6926. "symfony/serializer": "^5.4.26|~6.2.13|^6.3.2"
  6927. },
  6928. "type": "library",
  6929. "autoload": {
  6930. "psr-4": {
  6931. "Symfony\\Component\\Mime\\": ""
  6932. },
  6933. "exclude-from-classmap": [
  6934. "/Tests/"
  6935. ]
  6936. },
  6937. "notification-url": "https://packagist.org/downloads/",
  6938. "license": [
  6939. "MIT"
  6940. ],
  6941. "authors": [
  6942. {
  6943. "name": "Fabien Potencier",
  6944. "email": "fabien@symfony.com"
  6945. },
  6946. {
  6947. "name": "Symfony Community",
  6948. "homepage": "https://symfony.com/contributors"
  6949. }
  6950. ],
  6951. "description": "Allows manipulating MIME messages",
  6952. "homepage": "https://symfony.com",
  6953. "keywords": [
  6954. "mime",
  6955. "mime-type"
  6956. ],
  6957. "support": {
  6958. "source": "https://github.com/symfony/mime/tree/v5.4.26"
  6959. },
  6960. "funding": [
  6961. {
  6962. "url": "https://symfony.com/sponsor",
  6963. "type": "custom"
  6964. },
  6965. {
  6966. "url": "https://github.com/fabpot",
  6967. "type": "github"
  6968. },
  6969. {
  6970. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6971. "type": "tidelift"
  6972. }
  6973. ],
  6974. "time": "2023-07-27T06:29:31+00:00"
  6975. },
  6976. {
  6977. "name": "symfony/polyfill-ctype",
  6978. "version": "v1.28.0",
  6979. "source": {
  6980. "type": "git",
  6981. "url": "https://github.com/symfony/polyfill-ctype.git",
  6982. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb"
  6983. },
  6984. "dist": {
  6985. "type": "zip",
  6986. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
  6987. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
  6988. "shasum": ""
  6989. },
  6990. "require": {
  6991. "php": ">=7.1"
  6992. },
  6993. "provide": {
  6994. "ext-ctype": "*"
  6995. },
  6996. "suggest": {
  6997. "ext-ctype": "For best performance"
  6998. },
  6999. "type": "library",
  7000. "extra": {
  7001. "branch-alias": {
  7002. "dev-main": "1.28-dev"
  7003. },
  7004. "thanks": {
  7005. "name": "symfony/polyfill",
  7006. "url": "https://github.com/symfony/polyfill"
  7007. }
  7008. },
  7009. "autoload": {
  7010. "files": [
  7011. "bootstrap.php"
  7012. ],
  7013. "psr-4": {
  7014. "Symfony\\Polyfill\\Ctype\\": ""
  7015. }
  7016. },
  7017. "notification-url": "https://packagist.org/downloads/",
  7018. "license": [
  7019. "MIT"
  7020. ],
  7021. "authors": [
  7022. {
  7023. "name": "Gert de Pagter",
  7024. "email": "BackEndTea@gmail.com"
  7025. },
  7026. {
  7027. "name": "Symfony Community",
  7028. "homepage": "https://symfony.com/contributors"
  7029. }
  7030. ],
  7031. "description": "Symfony polyfill for ctype functions",
  7032. "homepage": "https://symfony.com",
  7033. "keywords": [
  7034. "compatibility",
  7035. "ctype",
  7036. "polyfill",
  7037. "portable"
  7038. ],
  7039. "support": {
  7040. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.28.0"
  7041. },
  7042. "funding": [
  7043. {
  7044. "url": "https://symfony.com/sponsor",
  7045. "type": "custom"
  7046. },
  7047. {
  7048. "url": "https://github.com/fabpot",
  7049. "type": "github"
  7050. },
  7051. {
  7052. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7053. "type": "tidelift"
  7054. }
  7055. ],
  7056. "time": "2023-01-26T09:26:14+00:00"
  7057. },
  7058. {
  7059. "name": "symfony/polyfill-iconv",
  7060. "version": "v1.28.0",
  7061. "source": {
  7062. "type": "git",
  7063. "url": "https://github.com/symfony/polyfill-iconv.git",
  7064. "reference": "6de50471469b8c9afc38164452ab2b6170ee71c1"
  7065. },
  7066. "dist": {
  7067. "type": "zip",
  7068. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/6de50471469b8c9afc38164452ab2b6170ee71c1",
  7069. "reference": "6de50471469b8c9afc38164452ab2b6170ee71c1",
  7070. "shasum": ""
  7071. },
  7072. "require": {
  7073. "php": ">=7.1"
  7074. },
  7075. "provide": {
  7076. "ext-iconv": "*"
  7077. },
  7078. "suggest": {
  7079. "ext-iconv": "For best performance"
  7080. },
  7081. "type": "library",
  7082. "extra": {
  7083. "branch-alias": {
  7084. "dev-main": "1.28-dev"
  7085. },
  7086. "thanks": {
  7087. "name": "symfony/polyfill",
  7088. "url": "https://github.com/symfony/polyfill"
  7089. }
  7090. },
  7091. "autoload": {
  7092. "files": [
  7093. "bootstrap.php"
  7094. ],
  7095. "psr-4": {
  7096. "Symfony\\Polyfill\\Iconv\\": ""
  7097. }
  7098. },
  7099. "notification-url": "https://packagist.org/downloads/",
  7100. "license": [
  7101. "MIT"
  7102. ],
  7103. "authors": [
  7104. {
  7105. "name": "Nicolas Grekas",
  7106. "email": "p@tchwork.com"
  7107. },
  7108. {
  7109. "name": "Symfony Community",
  7110. "homepage": "https://symfony.com/contributors"
  7111. }
  7112. ],
  7113. "description": "Symfony polyfill for the Iconv extension",
  7114. "homepage": "https://symfony.com",
  7115. "keywords": [
  7116. "compatibility",
  7117. "iconv",
  7118. "polyfill",
  7119. "portable",
  7120. "shim"
  7121. ],
  7122. "support": {
  7123. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.28.0"
  7124. },
  7125. "funding": [
  7126. {
  7127. "url": "https://symfony.com/sponsor",
  7128. "type": "custom"
  7129. },
  7130. {
  7131. "url": "https://github.com/fabpot",
  7132. "type": "github"
  7133. },
  7134. {
  7135. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7136. "type": "tidelift"
  7137. }
  7138. ],
  7139. "time": "2023-01-26T09:26:14+00:00"
  7140. },
  7141. {
  7142. "name": "symfony/polyfill-intl-grapheme",
  7143. "version": "v1.28.0",
  7144. "source": {
  7145. "type": "git",
  7146. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  7147. "reference": "875e90aeea2777b6f135677f618529449334a612"
  7148. },
  7149. "dist": {
  7150. "type": "zip",
  7151. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/875e90aeea2777b6f135677f618529449334a612",
  7152. "reference": "875e90aeea2777b6f135677f618529449334a612",
  7153. "shasum": ""
  7154. },
  7155. "require": {
  7156. "php": ">=7.1"
  7157. },
  7158. "suggest": {
  7159. "ext-intl": "For best performance"
  7160. },
  7161. "type": "library",
  7162. "extra": {
  7163. "branch-alias": {
  7164. "dev-main": "1.28-dev"
  7165. },
  7166. "thanks": {
  7167. "name": "symfony/polyfill",
  7168. "url": "https://github.com/symfony/polyfill"
  7169. }
  7170. },
  7171. "autoload": {
  7172. "files": [
  7173. "bootstrap.php"
  7174. ],
  7175. "psr-4": {
  7176. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  7177. }
  7178. },
  7179. "notification-url": "https://packagist.org/downloads/",
  7180. "license": [
  7181. "MIT"
  7182. ],
  7183. "authors": [
  7184. {
  7185. "name": "Nicolas Grekas",
  7186. "email": "p@tchwork.com"
  7187. },
  7188. {
  7189. "name": "Symfony Community",
  7190. "homepage": "https://symfony.com/contributors"
  7191. }
  7192. ],
  7193. "description": "Symfony polyfill for intl's grapheme_* functions",
  7194. "homepage": "https://symfony.com",
  7195. "keywords": [
  7196. "compatibility",
  7197. "grapheme",
  7198. "intl",
  7199. "polyfill",
  7200. "portable",
  7201. "shim"
  7202. ],
  7203. "support": {
  7204. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.28.0"
  7205. },
  7206. "funding": [
  7207. {
  7208. "url": "https://symfony.com/sponsor",
  7209. "type": "custom"
  7210. },
  7211. {
  7212. "url": "https://github.com/fabpot",
  7213. "type": "github"
  7214. },
  7215. {
  7216. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7217. "type": "tidelift"
  7218. }
  7219. ],
  7220. "time": "2023-01-26T09:26:14+00:00"
  7221. },
  7222. {
  7223. "name": "symfony/polyfill-intl-idn",
  7224. "version": "v1.28.0",
  7225. "source": {
  7226. "type": "git",
  7227. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  7228. "reference": "ecaafce9f77234a6a449d29e49267ba10499116d"
  7229. },
  7230. "dist": {
  7231. "type": "zip",
  7232. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/ecaafce9f77234a6a449d29e49267ba10499116d",
  7233. "reference": "ecaafce9f77234a6a449d29e49267ba10499116d",
  7234. "shasum": ""
  7235. },
  7236. "require": {
  7237. "php": ">=7.1",
  7238. "symfony/polyfill-intl-normalizer": "^1.10",
  7239. "symfony/polyfill-php72": "^1.10"
  7240. },
  7241. "suggest": {
  7242. "ext-intl": "For best performance"
  7243. },
  7244. "type": "library",
  7245. "extra": {
  7246. "branch-alias": {
  7247. "dev-main": "1.28-dev"
  7248. },
  7249. "thanks": {
  7250. "name": "symfony/polyfill",
  7251. "url": "https://github.com/symfony/polyfill"
  7252. }
  7253. },
  7254. "autoload": {
  7255. "files": [
  7256. "bootstrap.php"
  7257. ],
  7258. "psr-4": {
  7259. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  7260. }
  7261. },
  7262. "notification-url": "https://packagist.org/downloads/",
  7263. "license": [
  7264. "MIT"
  7265. ],
  7266. "authors": [
  7267. {
  7268. "name": "Laurent Bassin",
  7269. "email": "laurent@bassin.info"
  7270. },
  7271. {
  7272. "name": "Trevor Rowbotham",
  7273. "email": "trevor.rowbotham@pm.me"
  7274. },
  7275. {
  7276. "name": "Symfony Community",
  7277. "homepage": "https://symfony.com/contributors"
  7278. }
  7279. ],
  7280. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  7281. "homepage": "https://symfony.com",
  7282. "keywords": [
  7283. "compatibility",
  7284. "idn",
  7285. "intl",
  7286. "polyfill",
  7287. "portable",
  7288. "shim"
  7289. ],
  7290. "support": {
  7291. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.28.0"
  7292. },
  7293. "funding": [
  7294. {
  7295. "url": "https://symfony.com/sponsor",
  7296. "type": "custom"
  7297. },
  7298. {
  7299. "url": "https://github.com/fabpot",
  7300. "type": "github"
  7301. },
  7302. {
  7303. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7304. "type": "tidelift"
  7305. }
  7306. ],
  7307. "time": "2023-01-26T09:30:37+00:00"
  7308. },
  7309. {
  7310. "name": "symfony/polyfill-intl-normalizer",
  7311. "version": "v1.28.0",
  7312. "source": {
  7313. "type": "git",
  7314. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  7315. "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92"
  7316. },
  7317. "dist": {
  7318. "type": "zip",
  7319. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
  7320. "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
  7321. "shasum": ""
  7322. },
  7323. "require": {
  7324. "php": ">=7.1"
  7325. },
  7326. "suggest": {
  7327. "ext-intl": "For best performance"
  7328. },
  7329. "type": "library",
  7330. "extra": {
  7331. "branch-alias": {
  7332. "dev-main": "1.28-dev"
  7333. },
  7334. "thanks": {
  7335. "name": "symfony/polyfill",
  7336. "url": "https://github.com/symfony/polyfill"
  7337. }
  7338. },
  7339. "autoload": {
  7340. "files": [
  7341. "bootstrap.php"
  7342. ],
  7343. "psr-4": {
  7344. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  7345. },
  7346. "classmap": [
  7347. "Resources/stubs"
  7348. ]
  7349. },
  7350. "notification-url": "https://packagist.org/downloads/",
  7351. "license": [
  7352. "MIT"
  7353. ],
  7354. "authors": [
  7355. {
  7356. "name": "Nicolas Grekas",
  7357. "email": "p@tchwork.com"
  7358. },
  7359. {
  7360. "name": "Symfony Community",
  7361. "homepage": "https://symfony.com/contributors"
  7362. }
  7363. ],
  7364. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  7365. "homepage": "https://symfony.com",
  7366. "keywords": [
  7367. "compatibility",
  7368. "intl",
  7369. "normalizer",
  7370. "polyfill",
  7371. "portable",
  7372. "shim"
  7373. ],
  7374. "support": {
  7375. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.28.0"
  7376. },
  7377. "funding": [
  7378. {
  7379. "url": "https://symfony.com/sponsor",
  7380. "type": "custom"
  7381. },
  7382. {
  7383. "url": "https://github.com/fabpot",
  7384. "type": "github"
  7385. },
  7386. {
  7387. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7388. "type": "tidelift"
  7389. }
  7390. ],
  7391. "time": "2023-01-26T09:26:14+00:00"
  7392. },
  7393. {
  7394. "name": "symfony/polyfill-mbstring",
  7395. "version": "v1.28.0",
  7396. "source": {
  7397. "type": "git",
  7398. "url": "https://github.com/symfony/polyfill-mbstring.git",
  7399. "reference": "42292d99c55abe617799667f454222c54c60e229"
  7400. },
  7401. "dist": {
  7402. "type": "zip",
  7403. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/42292d99c55abe617799667f454222c54c60e229",
  7404. "reference": "42292d99c55abe617799667f454222c54c60e229",
  7405. "shasum": ""
  7406. },
  7407. "require": {
  7408. "php": ">=7.1"
  7409. },
  7410. "provide": {
  7411. "ext-mbstring": "*"
  7412. },
  7413. "suggest": {
  7414. "ext-mbstring": "For best performance"
  7415. },
  7416. "type": "library",
  7417. "extra": {
  7418. "branch-alias": {
  7419. "dev-main": "1.28-dev"
  7420. },
  7421. "thanks": {
  7422. "name": "symfony/polyfill",
  7423. "url": "https://github.com/symfony/polyfill"
  7424. }
  7425. },
  7426. "autoload": {
  7427. "files": [
  7428. "bootstrap.php"
  7429. ],
  7430. "psr-4": {
  7431. "Symfony\\Polyfill\\Mbstring\\": ""
  7432. }
  7433. },
  7434. "notification-url": "https://packagist.org/downloads/",
  7435. "license": [
  7436. "MIT"
  7437. ],
  7438. "authors": [
  7439. {
  7440. "name": "Nicolas Grekas",
  7441. "email": "p@tchwork.com"
  7442. },
  7443. {
  7444. "name": "Symfony Community",
  7445. "homepage": "https://symfony.com/contributors"
  7446. }
  7447. ],
  7448. "description": "Symfony polyfill for the Mbstring extension",
  7449. "homepage": "https://symfony.com",
  7450. "keywords": [
  7451. "compatibility",
  7452. "mbstring",
  7453. "polyfill",
  7454. "portable",
  7455. "shim"
  7456. ],
  7457. "support": {
  7458. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.28.0"
  7459. },
  7460. "funding": [
  7461. {
  7462. "url": "https://symfony.com/sponsor",
  7463. "type": "custom"
  7464. },
  7465. {
  7466. "url": "https://github.com/fabpot",
  7467. "type": "github"
  7468. },
  7469. {
  7470. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7471. "type": "tidelift"
  7472. }
  7473. ],
  7474. "time": "2023-07-28T09:04:16+00:00"
  7475. },
  7476. {
  7477. "name": "symfony/polyfill-php72",
  7478. "version": "v1.28.0",
  7479. "source": {
  7480. "type": "git",
  7481. "url": "https://github.com/symfony/polyfill-php72.git",
  7482. "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179"
  7483. },
  7484. "dist": {
  7485. "type": "zip",
  7486. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/70f4aebd92afca2f865444d30a4d2151c13c3179",
  7487. "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179",
  7488. "shasum": ""
  7489. },
  7490. "require": {
  7491. "php": ">=7.1"
  7492. },
  7493. "type": "library",
  7494. "extra": {
  7495. "branch-alias": {
  7496. "dev-main": "1.28-dev"
  7497. },
  7498. "thanks": {
  7499. "name": "symfony/polyfill",
  7500. "url": "https://github.com/symfony/polyfill"
  7501. }
  7502. },
  7503. "autoload": {
  7504. "files": [
  7505. "bootstrap.php"
  7506. ],
  7507. "psr-4": {
  7508. "Symfony\\Polyfill\\Php72\\": ""
  7509. }
  7510. },
  7511. "notification-url": "https://packagist.org/downloads/",
  7512. "license": [
  7513. "MIT"
  7514. ],
  7515. "authors": [
  7516. {
  7517. "name": "Nicolas Grekas",
  7518. "email": "p@tchwork.com"
  7519. },
  7520. {
  7521. "name": "Symfony Community",
  7522. "homepage": "https://symfony.com/contributors"
  7523. }
  7524. ],
  7525. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  7526. "homepage": "https://symfony.com",
  7527. "keywords": [
  7528. "compatibility",
  7529. "polyfill",
  7530. "portable",
  7531. "shim"
  7532. ],
  7533. "support": {
  7534. "source": "https://github.com/symfony/polyfill-php72/tree/v1.28.0"
  7535. },
  7536. "funding": [
  7537. {
  7538. "url": "https://symfony.com/sponsor",
  7539. "type": "custom"
  7540. },
  7541. {
  7542. "url": "https://github.com/fabpot",
  7543. "type": "github"
  7544. },
  7545. {
  7546. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7547. "type": "tidelift"
  7548. }
  7549. ],
  7550. "time": "2023-01-26T09:26:14+00:00"
  7551. },
  7552. {
  7553. "name": "symfony/polyfill-php73",
  7554. "version": "v1.28.0",
  7555. "source": {
  7556. "type": "git",
  7557. "url": "https://github.com/symfony/polyfill-php73.git",
  7558. "reference": "fe2f306d1d9d346a7fee353d0d5012e401e984b5"
  7559. },
  7560. "dist": {
  7561. "type": "zip",
  7562. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fe2f306d1d9d346a7fee353d0d5012e401e984b5",
  7563. "reference": "fe2f306d1d9d346a7fee353d0d5012e401e984b5",
  7564. "shasum": ""
  7565. },
  7566. "require": {
  7567. "php": ">=7.1"
  7568. },
  7569. "type": "library",
  7570. "extra": {
  7571. "branch-alias": {
  7572. "dev-main": "1.28-dev"
  7573. },
  7574. "thanks": {
  7575. "name": "symfony/polyfill",
  7576. "url": "https://github.com/symfony/polyfill"
  7577. }
  7578. },
  7579. "autoload": {
  7580. "files": [
  7581. "bootstrap.php"
  7582. ],
  7583. "psr-4": {
  7584. "Symfony\\Polyfill\\Php73\\": ""
  7585. },
  7586. "classmap": [
  7587. "Resources/stubs"
  7588. ]
  7589. },
  7590. "notification-url": "https://packagist.org/downloads/",
  7591. "license": [
  7592. "MIT"
  7593. ],
  7594. "authors": [
  7595. {
  7596. "name": "Nicolas Grekas",
  7597. "email": "p@tchwork.com"
  7598. },
  7599. {
  7600. "name": "Symfony Community",
  7601. "homepage": "https://symfony.com/contributors"
  7602. }
  7603. ],
  7604. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  7605. "homepage": "https://symfony.com",
  7606. "keywords": [
  7607. "compatibility",
  7608. "polyfill",
  7609. "portable",
  7610. "shim"
  7611. ],
  7612. "support": {
  7613. "source": "https://github.com/symfony/polyfill-php73/tree/v1.28.0"
  7614. },
  7615. "funding": [
  7616. {
  7617. "url": "https://symfony.com/sponsor",
  7618. "type": "custom"
  7619. },
  7620. {
  7621. "url": "https://github.com/fabpot",
  7622. "type": "github"
  7623. },
  7624. {
  7625. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7626. "type": "tidelift"
  7627. }
  7628. ],
  7629. "time": "2023-01-26T09:26:14+00:00"
  7630. },
  7631. {
  7632. "name": "symfony/polyfill-php80",
  7633. "version": "v1.28.0",
  7634. "source": {
  7635. "type": "git",
  7636. "url": "https://github.com/symfony/polyfill-php80.git",
  7637. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5"
  7638. },
  7639. "dist": {
  7640. "type": "zip",
  7641. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  7642. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  7643. "shasum": ""
  7644. },
  7645. "require": {
  7646. "php": ">=7.1"
  7647. },
  7648. "type": "library",
  7649. "extra": {
  7650. "branch-alias": {
  7651. "dev-main": "1.28-dev"
  7652. },
  7653. "thanks": {
  7654. "name": "symfony/polyfill",
  7655. "url": "https://github.com/symfony/polyfill"
  7656. }
  7657. },
  7658. "autoload": {
  7659. "files": [
  7660. "bootstrap.php"
  7661. ],
  7662. "psr-4": {
  7663. "Symfony\\Polyfill\\Php80\\": ""
  7664. },
  7665. "classmap": [
  7666. "Resources/stubs"
  7667. ]
  7668. },
  7669. "notification-url": "https://packagist.org/downloads/",
  7670. "license": [
  7671. "MIT"
  7672. ],
  7673. "authors": [
  7674. {
  7675. "name": "Ion Bazan",
  7676. "email": "ion.bazan@gmail.com"
  7677. },
  7678. {
  7679. "name": "Nicolas Grekas",
  7680. "email": "p@tchwork.com"
  7681. },
  7682. {
  7683. "name": "Symfony Community",
  7684. "homepage": "https://symfony.com/contributors"
  7685. }
  7686. ],
  7687. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  7688. "homepage": "https://symfony.com",
  7689. "keywords": [
  7690. "compatibility",
  7691. "polyfill",
  7692. "portable",
  7693. "shim"
  7694. ],
  7695. "support": {
  7696. "source": "https://github.com/symfony/polyfill-php80/tree/v1.28.0"
  7697. },
  7698. "funding": [
  7699. {
  7700. "url": "https://symfony.com/sponsor",
  7701. "type": "custom"
  7702. },
  7703. {
  7704. "url": "https://github.com/fabpot",
  7705. "type": "github"
  7706. },
  7707. {
  7708. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7709. "type": "tidelift"
  7710. }
  7711. ],
  7712. "time": "2023-01-26T09:26:14+00:00"
  7713. },
  7714. {
  7715. "name": "symfony/polyfill-php81",
  7716. "version": "v1.28.0",
  7717. "source": {
  7718. "type": "git",
  7719. "url": "https://github.com/symfony/polyfill-php81.git",
  7720. "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b"
  7721. },
  7722. "dist": {
  7723. "type": "zip",
  7724. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/7581cd600fa9fd681b797d00b02f068e2f13263b",
  7725. "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b",
  7726. "shasum": ""
  7727. },
  7728. "require": {
  7729. "php": ">=7.1"
  7730. },
  7731. "type": "library",
  7732. "extra": {
  7733. "branch-alias": {
  7734. "dev-main": "1.28-dev"
  7735. },
  7736. "thanks": {
  7737. "name": "symfony/polyfill",
  7738. "url": "https://github.com/symfony/polyfill"
  7739. }
  7740. },
  7741. "autoload": {
  7742. "files": [
  7743. "bootstrap.php"
  7744. ],
  7745. "psr-4": {
  7746. "Symfony\\Polyfill\\Php81\\": ""
  7747. },
  7748. "classmap": [
  7749. "Resources/stubs"
  7750. ]
  7751. },
  7752. "notification-url": "https://packagist.org/downloads/",
  7753. "license": [
  7754. "MIT"
  7755. ],
  7756. "authors": [
  7757. {
  7758. "name": "Nicolas Grekas",
  7759. "email": "p@tchwork.com"
  7760. },
  7761. {
  7762. "name": "Symfony Community",
  7763. "homepage": "https://symfony.com/contributors"
  7764. }
  7765. ],
  7766. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  7767. "homepage": "https://symfony.com",
  7768. "keywords": [
  7769. "compatibility",
  7770. "polyfill",
  7771. "portable",
  7772. "shim"
  7773. ],
  7774. "support": {
  7775. "source": "https://github.com/symfony/polyfill-php81/tree/v1.28.0"
  7776. },
  7777. "funding": [
  7778. {
  7779. "url": "https://symfony.com/sponsor",
  7780. "type": "custom"
  7781. },
  7782. {
  7783. "url": "https://github.com/fabpot",
  7784. "type": "github"
  7785. },
  7786. {
  7787. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7788. "type": "tidelift"
  7789. }
  7790. ],
  7791. "time": "2023-01-26T09:26:14+00:00"
  7792. },
  7793. {
  7794. "name": "symfony/process",
  7795. "version": "v5.4.28",
  7796. "source": {
  7797. "type": "git",
  7798. "url": "https://github.com/symfony/process.git",
  7799. "reference": "45261e1fccad1b5447a8d7a8e67aa7b4a9798b7b"
  7800. },
  7801. "dist": {
  7802. "type": "zip",
  7803. "url": "https://api.github.com/repos/symfony/process/zipball/45261e1fccad1b5447a8d7a8e67aa7b4a9798b7b",
  7804. "reference": "45261e1fccad1b5447a8d7a8e67aa7b4a9798b7b",
  7805. "shasum": ""
  7806. },
  7807. "require": {
  7808. "php": ">=7.2.5",
  7809. "symfony/polyfill-php80": "^1.16"
  7810. },
  7811. "type": "library",
  7812. "autoload": {
  7813. "psr-4": {
  7814. "Symfony\\Component\\Process\\": ""
  7815. },
  7816. "exclude-from-classmap": [
  7817. "/Tests/"
  7818. ]
  7819. },
  7820. "notification-url": "https://packagist.org/downloads/",
  7821. "license": [
  7822. "MIT"
  7823. ],
  7824. "authors": [
  7825. {
  7826. "name": "Fabien Potencier",
  7827. "email": "fabien@symfony.com"
  7828. },
  7829. {
  7830. "name": "Symfony Community",
  7831. "homepage": "https://symfony.com/contributors"
  7832. }
  7833. ],
  7834. "description": "Executes commands in sub-processes",
  7835. "homepage": "https://symfony.com",
  7836. "support": {
  7837. "source": "https://github.com/symfony/process/tree/v5.4.28"
  7838. },
  7839. "funding": [
  7840. {
  7841. "url": "https://symfony.com/sponsor",
  7842. "type": "custom"
  7843. },
  7844. {
  7845. "url": "https://github.com/fabpot",
  7846. "type": "github"
  7847. },
  7848. {
  7849. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7850. "type": "tidelift"
  7851. }
  7852. ],
  7853. "time": "2023-08-07T10:36:04+00:00"
  7854. },
  7855. {
  7856. "name": "symfony/routing",
  7857. "version": "v5.4.33",
  7858. "source": {
  7859. "type": "git",
  7860. "url": "https://github.com/symfony/routing.git",
  7861. "reference": "5b5b86670f947db92ab54cdcff585e76064d0b04"
  7862. },
  7863. "dist": {
  7864. "type": "zip",
  7865. "url": "https://api.github.com/repos/symfony/routing/zipball/5b5b86670f947db92ab54cdcff585e76064d0b04",
  7866. "reference": "5b5b86670f947db92ab54cdcff585e76064d0b04",
  7867. "shasum": ""
  7868. },
  7869. "require": {
  7870. "php": ">=7.2.5",
  7871. "symfony/deprecation-contracts": "^2.1|^3",
  7872. "symfony/polyfill-php80": "^1.16"
  7873. },
  7874. "conflict": {
  7875. "doctrine/annotations": "<1.12",
  7876. "symfony/config": "<5.3",
  7877. "symfony/dependency-injection": "<4.4",
  7878. "symfony/yaml": "<4.4"
  7879. },
  7880. "require-dev": {
  7881. "doctrine/annotations": "^1.12|^2",
  7882. "psr/log": "^1|^2|^3",
  7883. "symfony/config": "^5.3|^6.0",
  7884. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  7885. "symfony/expression-language": "^4.4|^5.0|^6.0",
  7886. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  7887. "symfony/yaml": "^4.4|^5.0|^6.0"
  7888. },
  7889. "suggest": {
  7890. "symfony/config": "For using the all-in-one router or any loader",
  7891. "symfony/expression-language": "For using expression matching",
  7892. "symfony/http-foundation": "For using a Symfony Request object",
  7893. "symfony/yaml": "For using the YAML loader"
  7894. },
  7895. "type": "library",
  7896. "autoload": {
  7897. "psr-4": {
  7898. "Symfony\\Component\\Routing\\": ""
  7899. },
  7900. "exclude-from-classmap": [
  7901. "/Tests/"
  7902. ]
  7903. },
  7904. "notification-url": "https://packagist.org/downloads/",
  7905. "license": [
  7906. "MIT"
  7907. ],
  7908. "authors": [
  7909. {
  7910. "name": "Fabien Potencier",
  7911. "email": "fabien@symfony.com"
  7912. },
  7913. {
  7914. "name": "Symfony Community",
  7915. "homepage": "https://symfony.com/contributors"
  7916. }
  7917. ],
  7918. "description": "Maps an HTTP request to a set of configuration variables",
  7919. "homepage": "https://symfony.com",
  7920. "keywords": [
  7921. "router",
  7922. "routing",
  7923. "uri",
  7924. "url"
  7925. ],
  7926. "support": {
  7927. "source": "https://github.com/symfony/routing/tree/v5.4.33"
  7928. },
  7929. "funding": [
  7930. {
  7931. "url": "https://symfony.com/sponsor",
  7932. "type": "custom"
  7933. },
  7934. {
  7935. "url": "https://github.com/fabpot",
  7936. "type": "github"
  7937. },
  7938. {
  7939. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7940. "type": "tidelift"
  7941. }
  7942. ],
  7943. "time": "2023-12-01T09:28:00+00:00"
  7944. },
  7945. {
  7946. "name": "symfony/service-contracts",
  7947. "version": "v2.5.2",
  7948. "source": {
  7949. "type": "git",
  7950. "url": "https://github.com/symfony/service-contracts.git",
  7951. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c"
  7952. },
  7953. "dist": {
  7954. "type": "zip",
  7955. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  7956. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  7957. "shasum": ""
  7958. },
  7959. "require": {
  7960. "php": ">=7.2.5",
  7961. "psr/container": "^1.1",
  7962. "symfony/deprecation-contracts": "^2.1|^3"
  7963. },
  7964. "conflict": {
  7965. "ext-psr": "<1.1|>=2"
  7966. },
  7967. "suggest": {
  7968. "symfony/service-implementation": ""
  7969. },
  7970. "type": "library",
  7971. "extra": {
  7972. "branch-alias": {
  7973. "dev-main": "2.5-dev"
  7974. },
  7975. "thanks": {
  7976. "name": "symfony/contracts",
  7977. "url": "https://github.com/symfony/contracts"
  7978. }
  7979. },
  7980. "autoload": {
  7981. "psr-4": {
  7982. "Symfony\\Contracts\\Service\\": ""
  7983. }
  7984. },
  7985. "notification-url": "https://packagist.org/downloads/",
  7986. "license": [
  7987. "MIT"
  7988. ],
  7989. "authors": [
  7990. {
  7991. "name": "Nicolas Grekas",
  7992. "email": "p@tchwork.com"
  7993. },
  7994. {
  7995. "name": "Symfony Community",
  7996. "homepage": "https://symfony.com/contributors"
  7997. }
  7998. ],
  7999. "description": "Generic abstractions related to writing services",
  8000. "homepage": "https://symfony.com",
  8001. "keywords": [
  8002. "abstractions",
  8003. "contracts",
  8004. "decoupling",
  8005. "interfaces",
  8006. "interoperability",
  8007. "standards"
  8008. ],
  8009. "support": {
  8010. "source": "https://github.com/symfony/service-contracts/tree/v2.5.2"
  8011. },
  8012. "funding": [
  8013. {
  8014. "url": "https://symfony.com/sponsor",
  8015. "type": "custom"
  8016. },
  8017. {
  8018. "url": "https://github.com/fabpot",
  8019. "type": "github"
  8020. },
  8021. {
  8022. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8023. "type": "tidelift"
  8024. }
  8025. ],
  8026. "time": "2022-05-30T19:17:29+00:00"
  8027. },
  8028. {
  8029. "name": "symfony/string",
  8030. "version": "v6.0.19",
  8031. "source": {
  8032. "type": "git",
  8033. "url": "https://github.com/symfony/string.git",
  8034. "reference": "d9e72497367c23e08bf94176d2be45b00a9d232a"
  8035. },
  8036. "dist": {
  8037. "type": "zip",
  8038. "url": "https://api.github.com/repos/symfony/string/zipball/d9e72497367c23e08bf94176d2be45b00a9d232a",
  8039. "reference": "d9e72497367c23e08bf94176d2be45b00a9d232a",
  8040. "shasum": ""
  8041. },
  8042. "require": {
  8043. "php": ">=8.0.2",
  8044. "symfony/polyfill-ctype": "~1.8",
  8045. "symfony/polyfill-intl-grapheme": "~1.0",
  8046. "symfony/polyfill-intl-normalizer": "~1.0",
  8047. "symfony/polyfill-mbstring": "~1.0"
  8048. },
  8049. "conflict": {
  8050. "symfony/translation-contracts": "<2.0"
  8051. },
  8052. "require-dev": {
  8053. "symfony/error-handler": "^5.4|^6.0",
  8054. "symfony/http-client": "^5.4|^6.0",
  8055. "symfony/translation-contracts": "^2.0|^3.0",
  8056. "symfony/var-exporter": "^5.4|^6.0"
  8057. },
  8058. "type": "library",
  8059. "autoload": {
  8060. "files": [
  8061. "Resources/functions.php"
  8062. ],
  8063. "psr-4": {
  8064. "Symfony\\Component\\String\\": ""
  8065. },
  8066. "exclude-from-classmap": [
  8067. "/Tests/"
  8068. ]
  8069. },
  8070. "notification-url": "https://packagist.org/downloads/",
  8071. "license": [
  8072. "MIT"
  8073. ],
  8074. "authors": [
  8075. {
  8076. "name": "Nicolas Grekas",
  8077. "email": "p@tchwork.com"
  8078. },
  8079. {
  8080. "name": "Symfony Community",
  8081. "homepage": "https://symfony.com/contributors"
  8082. }
  8083. ],
  8084. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  8085. "homepage": "https://symfony.com",
  8086. "keywords": [
  8087. "grapheme",
  8088. "i18n",
  8089. "string",
  8090. "unicode",
  8091. "utf-8",
  8092. "utf8"
  8093. ],
  8094. "support": {
  8095. "source": "https://github.com/symfony/string/tree/v6.0.19"
  8096. },
  8097. "funding": [
  8098. {
  8099. "url": "https://symfony.com/sponsor",
  8100. "type": "custom"
  8101. },
  8102. {
  8103. "url": "https://github.com/fabpot",
  8104. "type": "github"
  8105. },
  8106. {
  8107. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8108. "type": "tidelift"
  8109. }
  8110. ],
  8111. "time": "2023-01-01T08:36:10+00:00"
  8112. },
  8113. {
  8114. "name": "symfony/translation",
  8115. "version": "v6.0.19",
  8116. "source": {
  8117. "type": "git",
  8118. "url": "https://github.com/symfony/translation.git",
  8119. "reference": "9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f"
  8120. },
  8121. "dist": {
  8122. "type": "zip",
  8123. "url": "https://api.github.com/repos/symfony/translation/zipball/9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f",
  8124. "reference": "9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f",
  8125. "shasum": ""
  8126. },
  8127. "require": {
  8128. "php": ">=8.0.2",
  8129. "symfony/polyfill-mbstring": "~1.0",
  8130. "symfony/translation-contracts": "^2.3|^3.0"
  8131. },
  8132. "conflict": {
  8133. "symfony/config": "<5.4",
  8134. "symfony/console": "<5.4",
  8135. "symfony/dependency-injection": "<5.4",
  8136. "symfony/http-kernel": "<5.4",
  8137. "symfony/twig-bundle": "<5.4",
  8138. "symfony/yaml": "<5.4"
  8139. },
  8140. "provide": {
  8141. "symfony/translation-implementation": "2.3|3.0"
  8142. },
  8143. "require-dev": {
  8144. "psr/log": "^1|^2|^3",
  8145. "symfony/config": "^5.4|^6.0",
  8146. "symfony/console": "^5.4|^6.0",
  8147. "symfony/dependency-injection": "^5.4|^6.0",
  8148. "symfony/finder": "^5.4|^6.0",
  8149. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  8150. "symfony/http-kernel": "^5.4|^6.0",
  8151. "symfony/intl": "^5.4|^6.0",
  8152. "symfony/polyfill-intl-icu": "^1.21",
  8153. "symfony/service-contracts": "^1.1.2|^2|^3",
  8154. "symfony/yaml": "^5.4|^6.0"
  8155. },
  8156. "suggest": {
  8157. "psr/log-implementation": "To use logging capability in translator",
  8158. "symfony/config": "",
  8159. "symfony/yaml": ""
  8160. },
  8161. "type": "library",
  8162. "autoload": {
  8163. "files": [
  8164. "Resources/functions.php"
  8165. ],
  8166. "psr-4": {
  8167. "Symfony\\Component\\Translation\\": ""
  8168. },
  8169. "exclude-from-classmap": [
  8170. "/Tests/"
  8171. ]
  8172. },
  8173. "notification-url": "https://packagist.org/downloads/",
  8174. "license": [
  8175. "MIT"
  8176. ],
  8177. "authors": [
  8178. {
  8179. "name": "Fabien Potencier",
  8180. "email": "fabien@symfony.com"
  8181. },
  8182. {
  8183. "name": "Symfony Community",
  8184. "homepage": "https://symfony.com/contributors"
  8185. }
  8186. ],
  8187. "description": "Provides tools to internationalize your application",
  8188. "homepage": "https://symfony.com",
  8189. "support": {
  8190. "source": "https://github.com/symfony/translation/tree/v6.0.19"
  8191. },
  8192. "funding": [
  8193. {
  8194. "url": "https://symfony.com/sponsor",
  8195. "type": "custom"
  8196. },
  8197. {
  8198. "url": "https://github.com/fabpot",
  8199. "type": "github"
  8200. },
  8201. {
  8202. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8203. "type": "tidelift"
  8204. }
  8205. ],
  8206. "time": "2023-01-01T08:36:10+00:00"
  8207. },
  8208. {
  8209. "name": "symfony/translation-contracts",
  8210. "version": "v3.0.2",
  8211. "source": {
  8212. "type": "git",
  8213. "url": "https://github.com/symfony/translation-contracts.git",
  8214. "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282"
  8215. },
  8216. "dist": {
  8217. "type": "zip",
  8218. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/acbfbb274e730e5a0236f619b6168d9dedb3e282",
  8219. "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282",
  8220. "shasum": ""
  8221. },
  8222. "require": {
  8223. "php": ">=8.0.2"
  8224. },
  8225. "suggest": {
  8226. "symfony/translation-implementation": ""
  8227. },
  8228. "type": "library",
  8229. "extra": {
  8230. "branch-alias": {
  8231. "dev-main": "3.0-dev"
  8232. },
  8233. "thanks": {
  8234. "name": "symfony/contracts",
  8235. "url": "https://github.com/symfony/contracts"
  8236. }
  8237. },
  8238. "autoload": {
  8239. "psr-4": {
  8240. "Symfony\\Contracts\\Translation\\": ""
  8241. }
  8242. },
  8243. "notification-url": "https://packagist.org/downloads/",
  8244. "license": [
  8245. "MIT"
  8246. ],
  8247. "authors": [
  8248. {
  8249. "name": "Nicolas Grekas",
  8250. "email": "p@tchwork.com"
  8251. },
  8252. {
  8253. "name": "Symfony Community",
  8254. "homepage": "https://symfony.com/contributors"
  8255. }
  8256. ],
  8257. "description": "Generic abstractions related to translation",
  8258. "homepage": "https://symfony.com",
  8259. "keywords": [
  8260. "abstractions",
  8261. "contracts",
  8262. "decoupling",
  8263. "interfaces",
  8264. "interoperability",
  8265. "standards"
  8266. ],
  8267. "support": {
  8268. "source": "https://github.com/symfony/translation-contracts/tree/v3.0.2"
  8269. },
  8270. "funding": [
  8271. {
  8272. "url": "https://symfony.com/sponsor",
  8273. "type": "custom"
  8274. },
  8275. {
  8276. "url": "https://github.com/fabpot",
  8277. "type": "github"
  8278. },
  8279. {
  8280. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8281. "type": "tidelift"
  8282. }
  8283. ],
  8284. "time": "2022-06-27T17:10:44+00:00"
  8285. },
  8286. {
  8287. "name": "symfony/var-dumper",
  8288. "version": "v5.4.29",
  8289. "source": {
  8290. "type": "git",
  8291. "url": "https://github.com/symfony/var-dumper.git",
  8292. "reference": "6172e4ae3534d25ee9e07eb487c20be7760fcc65"
  8293. },
  8294. "dist": {
  8295. "type": "zip",
  8296. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/6172e4ae3534d25ee9e07eb487c20be7760fcc65",
  8297. "reference": "6172e4ae3534d25ee9e07eb487c20be7760fcc65",
  8298. "shasum": ""
  8299. },
  8300. "require": {
  8301. "php": ">=7.2.5",
  8302. "symfony/polyfill-mbstring": "~1.0",
  8303. "symfony/polyfill-php80": "^1.16"
  8304. },
  8305. "conflict": {
  8306. "symfony/console": "<4.4"
  8307. },
  8308. "require-dev": {
  8309. "ext-iconv": "*",
  8310. "symfony/console": "^4.4|^5.0|^6.0",
  8311. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  8312. "symfony/process": "^4.4|^5.0|^6.0",
  8313. "symfony/uid": "^5.1|^6.0",
  8314. "twig/twig": "^2.13|^3.0.4"
  8315. },
  8316. "suggest": {
  8317. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  8318. "ext-intl": "To show region name in time zone dump",
  8319. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  8320. },
  8321. "bin": [
  8322. "Resources/bin/var-dump-server"
  8323. ],
  8324. "type": "library",
  8325. "autoload": {
  8326. "files": [
  8327. "Resources/functions/dump.php"
  8328. ],
  8329. "psr-4": {
  8330. "Symfony\\Component\\VarDumper\\": ""
  8331. },
  8332. "exclude-from-classmap": [
  8333. "/Tests/"
  8334. ]
  8335. },
  8336. "notification-url": "https://packagist.org/downloads/",
  8337. "license": [
  8338. "MIT"
  8339. ],
  8340. "authors": [
  8341. {
  8342. "name": "Nicolas Grekas",
  8343. "email": "p@tchwork.com"
  8344. },
  8345. {
  8346. "name": "Symfony Community",
  8347. "homepage": "https://symfony.com/contributors"
  8348. }
  8349. ],
  8350. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  8351. "homepage": "https://symfony.com",
  8352. "keywords": [
  8353. "debug",
  8354. "dump"
  8355. ],
  8356. "support": {
  8357. "source": "https://github.com/symfony/var-dumper/tree/v5.4.29"
  8358. },
  8359. "funding": [
  8360. {
  8361. "url": "https://symfony.com/sponsor",
  8362. "type": "custom"
  8363. },
  8364. {
  8365. "url": "https://github.com/fabpot",
  8366. "type": "github"
  8367. },
  8368. {
  8369. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8370. "type": "tidelift"
  8371. }
  8372. ],
  8373. "time": "2023-09-12T10:09:58+00:00"
  8374. },
  8375. {
  8376. "name": "tightenco/collect",
  8377. "version": "v9.52.7",
  8378. "source": {
  8379. "type": "git",
  8380. "url": "https://github.com/tighten/collect.git",
  8381. "reference": "b15143cd11fe01a700fcc449df61adc64452fa6d"
  8382. },
  8383. "dist": {
  8384. "type": "zip",
  8385. "url": "https://api.github.com/repos/tighten/collect/zipball/b15143cd11fe01a700fcc449df61adc64452fa6d",
  8386. "reference": "b15143cd11fe01a700fcc449df61adc64452fa6d",
  8387. "shasum": ""
  8388. },
  8389. "require": {
  8390. "php": "^8.0",
  8391. "symfony/var-dumper": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  8392. },
  8393. "require-dev": {
  8394. "mockery/mockery": "^1.0",
  8395. "nesbot/carbon": "^2.23.0",
  8396. "phpunit/phpunit": "^8.3"
  8397. },
  8398. "type": "library",
  8399. "autoload": {
  8400. "files": [
  8401. "src/Collect/Support/helpers.php",
  8402. "src/Collect/Support/alias.php"
  8403. ],
  8404. "psr-4": {
  8405. "Tightenco\\Collect\\": "src/Collect"
  8406. }
  8407. },
  8408. "notification-url": "https://packagist.org/downloads/",
  8409. "license": [
  8410. "MIT"
  8411. ],
  8412. "authors": [
  8413. {
  8414. "name": "Taylor Otwell",
  8415. "email": "taylorotwell@gmail.com"
  8416. }
  8417. ],
  8418. "description": "Collect - Illuminate Collections as a separate package.",
  8419. "keywords": [
  8420. "collection",
  8421. "laravel"
  8422. ],
  8423. "support": {
  8424. "issues": "https://github.com/tighten/collect/issues",
  8425. "source": "https://github.com/tighten/collect/tree/v9.52.7"
  8426. },
  8427. "time": "2023-04-14T21:51:36+00:00"
  8428. },
  8429. {
  8430. "name": "tijsverkoyen/css-to-inline-styles",
  8431. "version": "v2.2.7",
  8432. "source": {
  8433. "type": "git",
  8434. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  8435. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb"
  8436. },
  8437. "dist": {
  8438. "type": "zip",
  8439. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/83ee6f38df0a63106a9e4536e3060458b74ccedb",
  8440. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb",
  8441. "shasum": ""
  8442. },
  8443. "require": {
  8444. "ext-dom": "*",
  8445. "ext-libxml": "*",
  8446. "php": "^5.5 || ^7.0 || ^8.0",
  8447. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0"
  8448. },
  8449. "require-dev": {
  8450. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  8451. },
  8452. "type": "library",
  8453. "extra": {
  8454. "branch-alias": {
  8455. "dev-master": "2.2.x-dev"
  8456. }
  8457. },
  8458. "autoload": {
  8459. "psr-4": {
  8460. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  8461. }
  8462. },
  8463. "notification-url": "https://packagist.org/downloads/",
  8464. "license": [
  8465. "BSD-3-Clause"
  8466. ],
  8467. "authors": [
  8468. {
  8469. "name": "Tijs Verkoyen",
  8470. "email": "css_to_inline_styles@verkoyen.eu",
  8471. "role": "Developer"
  8472. }
  8473. ],
  8474. "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.",
  8475. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  8476. "support": {
  8477. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  8478. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.2.7"
  8479. },
  8480. "time": "2023-12-08T13:03:43+00:00"
  8481. },
  8482. {
  8483. "name": "uduncloud/udun-wallet-sdk",
  8484. "version": "1.0.0",
  8485. "source": {
  8486. "type": "git",
  8487. "url": "https://github.com/uduncloud/udun-sdk-php.git",
  8488. "reference": "026af997276590542e29f281cfadf4e97c157087"
  8489. },
  8490. "dist": {
  8491. "type": "zip",
  8492. "url": "https://api.github.com/repos/uduncloud/udun-sdk-php/zipball/026af997276590542e29f281cfadf4e97c157087",
  8493. "reference": "026af997276590542e29f281cfadf4e97c157087",
  8494. "shasum": "",
  8495. "mirrors": [
  8496. {
  8497. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8498. "preferred": true
  8499. }
  8500. ]
  8501. },
  8502. "require": {
  8503. "hanson/foundation-sdk": "^5.0",
  8504. "php": ">=7.0"
  8505. },
  8506. "require-dev": {
  8507. "phpunit/phpunit": "^9.5"
  8508. },
  8509. "type": "1",
  8510. "autoload": {
  8511. "psr-4": {
  8512. "Udun\\Dispatch\\": "src/"
  8513. }
  8514. },
  8515. "notification-url": "https://packagist.org/downloads/",
  8516. "license": [
  8517. "MIT"
  8518. ],
  8519. "authors": [
  8520. {
  8521. "name": "udun wallet"
  8522. }
  8523. ],
  8524. "description": "udun-wallet-sdk",
  8525. "support": {
  8526. "issues": "https://github.com/uduncloud/udun-sdk-php/issues",
  8527. "source": "https://github.com/uduncloud/udun-sdk-php/tree/v1.0.0"
  8528. },
  8529. "time": "2022-07-29T09:37:18+00:00"
  8530. },
  8531. {
  8532. "name": "vlucas/phpdotenv",
  8533. "version": "v5.6.0",
  8534. "source": {
  8535. "type": "git",
  8536. "url": "https://github.com/vlucas/phpdotenv.git",
  8537. "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4"
  8538. },
  8539. "dist": {
  8540. "type": "zip",
  8541. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
  8542. "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
  8543. "shasum": ""
  8544. },
  8545. "require": {
  8546. "ext-pcre": "*",
  8547. "graham-campbell/result-type": "^1.1.2",
  8548. "php": "^7.2.5 || ^8.0",
  8549. "phpoption/phpoption": "^1.9.2",
  8550. "symfony/polyfill-ctype": "^1.24",
  8551. "symfony/polyfill-mbstring": "^1.24",
  8552. "symfony/polyfill-php80": "^1.24"
  8553. },
  8554. "require-dev": {
  8555. "bamarni/composer-bin-plugin": "^1.8.2",
  8556. "ext-filter": "*",
  8557. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  8558. },
  8559. "suggest": {
  8560. "ext-filter": "Required to use the boolean validator."
  8561. },
  8562. "type": "library",
  8563. "extra": {
  8564. "bamarni-bin": {
  8565. "bin-links": true,
  8566. "forward-command": true
  8567. },
  8568. "branch-alias": {
  8569. "dev-master": "5.6-dev"
  8570. }
  8571. },
  8572. "autoload": {
  8573. "psr-4": {
  8574. "Dotenv\\": "src/"
  8575. }
  8576. },
  8577. "notification-url": "https://packagist.org/downloads/",
  8578. "license": [
  8579. "BSD-3-Clause"
  8580. ],
  8581. "authors": [
  8582. {
  8583. "name": "Graham Campbell",
  8584. "email": "hello@gjcampbell.co.uk",
  8585. "homepage": "https://github.com/GrahamCampbell"
  8586. },
  8587. {
  8588. "name": "Vance Lucas",
  8589. "email": "vance@vancelucas.com",
  8590. "homepage": "https://github.com/vlucas"
  8591. }
  8592. ],
  8593. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  8594. "keywords": [
  8595. "dotenv",
  8596. "env",
  8597. "environment"
  8598. ],
  8599. "support": {
  8600. "issues": "https://github.com/vlucas/phpdotenv/issues",
  8601. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.0"
  8602. },
  8603. "funding": [
  8604. {
  8605. "url": "https://github.com/GrahamCampbell",
  8606. "type": "github"
  8607. },
  8608. {
  8609. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  8610. "type": "tidelift"
  8611. }
  8612. ],
  8613. "time": "2023-11-12T22:43:29+00:00"
  8614. },
  8615. {
  8616. "name": "voku/portable-ascii",
  8617. "version": "1.6.1",
  8618. "source": {
  8619. "type": "git",
  8620. "url": "https://github.com/voku/portable-ascii.git",
  8621. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a"
  8622. },
  8623. "dist": {
  8624. "type": "zip",
  8625. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/87337c91b9dfacee02452244ee14ab3c43bc485a",
  8626. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a",
  8627. "shasum": ""
  8628. },
  8629. "require": {
  8630. "php": ">=7.0.0"
  8631. },
  8632. "require-dev": {
  8633. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  8634. },
  8635. "suggest": {
  8636. "ext-intl": "Use Intl for transliterator_transliterate() support"
  8637. },
  8638. "type": "library",
  8639. "autoload": {
  8640. "psr-4": {
  8641. "voku\\": "src/voku/"
  8642. }
  8643. },
  8644. "notification-url": "https://packagist.org/downloads/",
  8645. "license": [
  8646. "MIT"
  8647. ],
  8648. "authors": [
  8649. {
  8650. "name": "Lars Moelleken",
  8651. "homepage": "http://www.moelleken.org/"
  8652. }
  8653. ],
  8654. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  8655. "homepage": "https://github.com/voku/portable-ascii",
  8656. "keywords": [
  8657. "ascii",
  8658. "clean",
  8659. "php"
  8660. ],
  8661. "support": {
  8662. "issues": "https://github.com/voku/portable-ascii/issues",
  8663. "source": "https://github.com/voku/portable-ascii/tree/1.6.1"
  8664. },
  8665. "funding": [
  8666. {
  8667. "url": "https://www.paypal.me/moelleken",
  8668. "type": "custom"
  8669. },
  8670. {
  8671. "url": "https://github.com/voku",
  8672. "type": "github"
  8673. },
  8674. {
  8675. "url": "https://opencollective.com/portable-ascii",
  8676. "type": "open_collective"
  8677. },
  8678. {
  8679. "url": "https://www.patreon.com/voku",
  8680. "type": "patreon"
  8681. },
  8682. {
  8683. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  8684. "type": "tidelift"
  8685. }
  8686. ],
  8687. "time": "2022-01-24T18:55:24+00:00"
  8688. },
  8689. {
  8690. "name": "webmozart/assert",
  8691. "version": "1.11.0",
  8692. "source": {
  8693. "type": "git",
  8694. "url": "https://github.com/webmozarts/assert.git",
  8695. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  8696. },
  8697. "dist": {
  8698. "type": "zip",
  8699. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8700. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8701. "shasum": ""
  8702. },
  8703. "require": {
  8704. "ext-ctype": "*",
  8705. "php": "^7.2 || ^8.0"
  8706. },
  8707. "conflict": {
  8708. "phpstan/phpstan": "<0.12.20",
  8709. "vimeo/psalm": "<4.6.1 || 4.6.2"
  8710. },
  8711. "require-dev": {
  8712. "phpunit/phpunit": "^8.5.13"
  8713. },
  8714. "type": "library",
  8715. "extra": {
  8716. "branch-alias": {
  8717. "dev-master": "1.10-dev"
  8718. }
  8719. },
  8720. "autoload": {
  8721. "psr-4": {
  8722. "Webmozart\\Assert\\": "src/"
  8723. }
  8724. },
  8725. "notification-url": "https://packagist.org/downloads/",
  8726. "license": [
  8727. "MIT"
  8728. ],
  8729. "authors": [
  8730. {
  8731. "name": "Bernhard Schussek",
  8732. "email": "bschussek@gmail.com"
  8733. }
  8734. ],
  8735. "description": "Assertions to validate method input/output with nice error messages.",
  8736. "keywords": [
  8737. "assert",
  8738. "check",
  8739. "validate"
  8740. ],
  8741. "support": {
  8742. "issues": "https://github.com/webmozarts/assert/issues",
  8743. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  8744. },
  8745. "time": "2022-06-03T18:03:27+00:00"
  8746. },
  8747. {
  8748. "name": "wechatpay/wechatpay-guzzle-middleware",
  8749. "version": "0.2.2",
  8750. "source": {
  8751. "type": "git",
  8752. "url": "https://github.com/wechatpay-apiv3/wechatpay-guzzle-middleware.git",
  8753. "reference": "6782ac33ed8cf97628609a71cdc5e84a6a40677a"
  8754. },
  8755. "dist": {
  8756. "type": "zip",
  8757. "url": "https://api.github.com/repos/wechatpay-apiv3/wechatpay-guzzle-middleware/zipball/6782ac33ed8cf97628609a71cdc5e84a6a40677a",
  8758. "reference": "6782ac33ed8cf97628609a71cdc5e84a6a40677a",
  8759. "shasum": ""
  8760. },
  8761. "require": {
  8762. "ext-openssl": "*",
  8763. "php": ">=5.5"
  8764. },
  8765. "require-dev": {
  8766. "guzzlehttp/guzzle": "^6.3"
  8767. },
  8768. "suggest": {
  8769. "ext-bcmath": "Require bcmath in php 5.* version.",
  8770. "guzzlehttp/guzzle": "For using wechatpay guzzle middleware."
  8771. },
  8772. "bin": [
  8773. "tool/CertificateDownloader.php"
  8774. ],
  8775. "type": "library",
  8776. "autoload": {
  8777. "psr-4": {
  8778. "WechatPay\\GuzzleMiddleware\\": "src/"
  8779. }
  8780. },
  8781. "notification-url": "https://packagist.org/downloads/",
  8782. "license": [
  8783. "Apache-2.0"
  8784. ],
  8785. "description": "WechatPay API V3 Guzzle Middleware",
  8786. "homepage": "https://wechatpay-api.gitbook.io/wechatpay-api-v3/",
  8787. "keywords": [
  8788. "wechatpay"
  8789. ],
  8790. "support": {
  8791. "issues": "https://github.com/wechatpay-apiv3/wechatpay-guzzle-middleware/issues",
  8792. "source": "https://github.com/wechatpay-apiv3/wechatpay-guzzle-middleware/tree/v0.2.2"
  8793. },
  8794. "time": "2021-03-05T03:09:29+00:00"
  8795. },
  8796. {
  8797. "name": "yansongda/pay",
  8798. "version": "v3.4.2",
  8799. "source": {
  8800. "type": "git",
  8801. "url": "https://github.com/yansongda/pay.git",
  8802. "reference": "de827f7a594ef02432432da1f873926662b478fc"
  8803. },
  8804. "dist": {
  8805. "type": "zip",
  8806. "url": "https://api.github.com/repos/yansongda/pay/zipball/de827f7a594ef02432432da1f873926662b478fc",
  8807. "reference": "de827f7a594ef02432432da1f873926662b478fc",
  8808. "shasum": ""
  8809. },
  8810. "require": {
  8811. "ext-bcmath": "*",
  8812. "ext-json": "*",
  8813. "ext-libxml": "*",
  8814. "ext-openssl": "*",
  8815. "ext-simplexml": "*",
  8816. "php": ">=8.0",
  8817. "psr/container": "^1.1 || ^2.0",
  8818. "psr/event-dispatcher": "^1.0",
  8819. "psr/http-client": "^1.0",
  8820. "psr/http-message": "^1.1 || ^2.0",
  8821. "psr/log": "^1.1 || ^2.0 || ^3.0",
  8822. "yansongda/supports": "~4.0.0"
  8823. },
  8824. "conflict": {
  8825. "hyperf/framework": "<3.0"
  8826. },
  8827. "require-dev": {
  8828. "friendsofphp/php-cs-fixer": "^3.0",
  8829. "guzzlehttp/guzzle": "^7.0",
  8830. "hyperf/pimple": "^2.2",
  8831. "mockery/mockery": "^1.4",
  8832. "monolog/monolog": "^2.2",
  8833. "phpstan/phpstan": "^1.0.0",
  8834. "phpunit/phpunit": "^9.0",
  8835. "symfony/event-dispatcher": "^5.2.0",
  8836. "symfony/http-foundation": "^5.2.0",
  8837. "symfony/psr-http-message-bridge": "^2.1",
  8838. "symfony/var-dumper": "^5.1"
  8839. },
  8840. "suggest": {
  8841. "hyperf/pimple": "其它/无框架下使用 SDK,请安装",
  8842. "hyperf/utils": "Hyperf 框架下使用 SDK,请安装",
  8843. "illuminate/container": "Laravel 框架下使用 SDK,请安装"
  8844. },
  8845. "type": "library",
  8846. "autoload": {
  8847. "files": [
  8848. "src/Functions.php"
  8849. ],
  8850. "psr-4": {
  8851. "Yansongda\\Pay\\": "src"
  8852. }
  8853. },
  8854. "notification-url": "https://packagist.org/downloads/",
  8855. "license": [
  8856. "MIT"
  8857. ],
  8858. "authors": [
  8859. {
  8860. "name": "yansongda",
  8861. "email": "me@yansongda.cn"
  8862. }
  8863. ],
  8864. "description": "可能是我用过的最优雅的 Alipay 和 WeChat 的支付 SDK 扩展包了",
  8865. "keywords": [
  8866. "alipay",
  8867. "pay",
  8868. "wechat"
  8869. ],
  8870. "support": {
  8871. "homepage": "https://pay.yansongda.cn",
  8872. "issues": "https://github.com/yansongda/pay/issues",
  8873. "source": "https://github.com/yansongda/pay"
  8874. },
  8875. "time": "2023-06-27T09:54:37+00:00"
  8876. },
  8877. {
  8878. "name": "yansongda/supports",
  8879. "version": "v4.0.3",
  8880. "source": {
  8881. "type": "git",
  8882. "url": "https://github.com/yansongda/supports.git",
  8883. "reference": "73e01ed827202b33395c0827943410f6dbd790a4"
  8884. },
  8885. "dist": {
  8886. "type": "zip",
  8887. "url": "https://api.github.com/repos/yansongda/supports/zipball/73e01ed827202b33395c0827943410f6dbd790a4",
  8888. "reference": "73e01ed827202b33395c0827943410f6dbd790a4",
  8889. "shasum": ""
  8890. },
  8891. "require": {
  8892. "php": ">=8.0"
  8893. },
  8894. "require-dev": {
  8895. "friendsofphp/php-cs-fixer": "^3.0",
  8896. "mockery/mockery": "^1.4",
  8897. "phpstan/phpstan": "^1.1.0",
  8898. "phpunit/phpunit": "^9.0"
  8899. },
  8900. "suggest": {
  8901. "monolog/monolog": "Use logger",
  8902. "symfony/console": "Use stdout logger"
  8903. },
  8904. "type": "library",
  8905. "autoload": {
  8906. "files": [
  8907. "src/Functions.php"
  8908. ],
  8909. "psr-4": {
  8910. "Yansongda\\Supports\\": "src/"
  8911. }
  8912. },
  8913. "notification-url": "https://packagist.org/downloads/",
  8914. "license": [
  8915. "MIT"
  8916. ],
  8917. "authors": [
  8918. {
  8919. "name": "yansongda",
  8920. "email": "me@yansongda.cn"
  8921. }
  8922. ],
  8923. "description": "common components",
  8924. "keywords": [
  8925. "array",
  8926. "collection",
  8927. "config",
  8928. "support"
  8929. ],
  8930. "support": {
  8931. "issues": "https://github.com/yansongda/supports/issues",
  8932. "source": "https://github.com/yansongda/supports"
  8933. },
  8934. "time": "2023-12-23T15:04:07+00:00"
  8935. }
  8936. ],
  8937. "packages-dev": [
  8938. {
  8939. "name": "doctrine/instantiator",
  8940. "version": "1.5.0",
  8941. "source": {
  8942. "type": "git",
  8943. "url": "https://github.com/doctrine/instantiator.git",
  8944. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  8945. },
  8946. "dist": {
  8947. "type": "zip",
  8948. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  8949. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  8950. "shasum": ""
  8951. },
  8952. "require": {
  8953. "php": "^7.1 || ^8.0"
  8954. },
  8955. "require-dev": {
  8956. "doctrine/coding-standard": "^9 || ^11",
  8957. "ext-pdo": "*",
  8958. "ext-phar": "*",
  8959. "phpbench/phpbench": "^0.16 || ^1",
  8960. "phpstan/phpstan": "^1.4",
  8961. "phpstan/phpstan-phpunit": "^1",
  8962. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  8963. "vimeo/psalm": "^4.30 || ^5.4"
  8964. },
  8965. "type": "library",
  8966. "autoload": {
  8967. "psr-4": {
  8968. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8969. }
  8970. },
  8971. "notification-url": "https://packagist.org/downloads/",
  8972. "license": [
  8973. "MIT"
  8974. ],
  8975. "authors": [
  8976. {
  8977. "name": "Marco Pivetta",
  8978. "email": "ocramius@gmail.com",
  8979. "homepage": "https://ocramius.github.io/"
  8980. }
  8981. ],
  8982. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8983. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8984. "keywords": [
  8985. "constructor",
  8986. "instantiate"
  8987. ],
  8988. "support": {
  8989. "issues": "https://github.com/doctrine/instantiator/issues",
  8990. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  8991. },
  8992. "funding": [
  8993. {
  8994. "url": "https://www.doctrine-project.org/sponsorship.html",
  8995. "type": "custom"
  8996. },
  8997. {
  8998. "url": "https://www.patreon.com/phpdoctrine",
  8999. "type": "patreon"
  9000. },
  9001. {
  9002. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  9003. "type": "tidelift"
  9004. }
  9005. ],
  9006. "time": "2022-12-30T00:15:36+00:00"
  9007. },
  9008. {
  9009. "name": "facade/flare-client-php",
  9010. "version": "1.10.0",
  9011. "source": {
  9012. "type": "git",
  9013. "url": "https://github.com/facade/flare-client-php.git",
  9014. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8"
  9015. },
  9016. "dist": {
  9017. "type": "zip",
  9018. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  9019. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  9020. "shasum": ""
  9021. },
  9022. "require": {
  9023. "facade/ignition-contracts": "~1.0",
  9024. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  9025. "php": "^7.1|^8.0",
  9026. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  9027. "symfony/mime": "^3.4|^4.0|^5.1",
  9028. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  9029. },
  9030. "require-dev": {
  9031. "friendsofphp/php-cs-fixer": "^2.14",
  9032. "phpunit/phpunit": "^7.5",
  9033. "spatie/phpunit-snapshot-assertions": "^2.0"
  9034. },
  9035. "type": "library",
  9036. "extra": {
  9037. "branch-alias": {
  9038. "dev-master": "1.0-dev"
  9039. }
  9040. },
  9041. "autoload": {
  9042. "files": [
  9043. "src/helpers.php"
  9044. ],
  9045. "psr-4": {
  9046. "Facade\\FlareClient\\": "src"
  9047. }
  9048. },
  9049. "notification-url": "https://packagist.org/downloads/",
  9050. "license": [
  9051. "MIT"
  9052. ],
  9053. "description": "Send PHP errors to Flare",
  9054. "homepage": "https://github.com/facade/flare-client-php",
  9055. "keywords": [
  9056. "exception",
  9057. "facade",
  9058. "flare",
  9059. "reporting"
  9060. ],
  9061. "support": {
  9062. "issues": "https://github.com/facade/flare-client-php/issues",
  9063. "source": "https://github.com/facade/flare-client-php/tree/1.10.0"
  9064. },
  9065. "funding": [
  9066. {
  9067. "url": "https://github.com/spatie",
  9068. "type": "github"
  9069. }
  9070. ],
  9071. "time": "2022-08-09T11:23:57+00:00"
  9072. },
  9073. {
  9074. "name": "facade/ignition",
  9075. "version": "2.17.7",
  9076. "source": {
  9077. "type": "git",
  9078. "url": "https://github.com/facade/ignition.git",
  9079. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9"
  9080. },
  9081. "dist": {
  9082. "type": "zip",
  9083. "url": "https://api.github.com/repos/facade/ignition/zipball/b4f5955825bb4b74cba0f94001761c46335c33e9",
  9084. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9",
  9085. "shasum": ""
  9086. },
  9087. "require": {
  9088. "ext-curl": "*",
  9089. "ext-json": "*",
  9090. "ext-mbstring": "*",
  9091. "facade/flare-client-php": "^1.9.1",
  9092. "facade/ignition-contracts": "^1.0.2",
  9093. "illuminate/support": "^7.0|^8.0",
  9094. "monolog/monolog": "^2.0",
  9095. "php": "^7.2.5|^8.0",
  9096. "symfony/console": "^5.0",
  9097. "symfony/var-dumper": "^5.0"
  9098. },
  9099. "require-dev": {
  9100. "friendsofphp/php-cs-fixer": "^2.14",
  9101. "livewire/livewire": "^2.4",
  9102. "mockery/mockery": "^1.3",
  9103. "orchestra/testbench": "^5.0|^6.0",
  9104. "psalm/plugin-laravel": "^1.2"
  9105. },
  9106. "suggest": {
  9107. "laravel/telescope": "^3.1"
  9108. },
  9109. "type": "library",
  9110. "extra": {
  9111. "branch-alias": {
  9112. "dev-master": "2.x-dev"
  9113. },
  9114. "laravel": {
  9115. "providers": [
  9116. "Facade\\Ignition\\IgnitionServiceProvider"
  9117. ],
  9118. "aliases": {
  9119. "Flare": "Facade\\Ignition\\Facades\\Flare"
  9120. }
  9121. }
  9122. },
  9123. "autoload": {
  9124. "files": [
  9125. "src/helpers.php"
  9126. ],
  9127. "psr-4": {
  9128. "Facade\\Ignition\\": "src"
  9129. }
  9130. },
  9131. "notification-url": "https://packagist.org/downloads/",
  9132. "license": [
  9133. "MIT"
  9134. ],
  9135. "description": "A beautiful error page for Laravel applications.",
  9136. "homepage": "https://github.com/facade/ignition",
  9137. "keywords": [
  9138. "error",
  9139. "flare",
  9140. "laravel",
  9141. "page"
  9142. ],
  9143. "support": {
  9144. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  9145. "forum": "https://twitter.com/flareappio",
  9146. "issues": "https://github.com/facade/ignition/issues",
  9147. "source": "https://github.com/facade/ignition"
  9148. },
  9149. "time": "2023-01-26T12:34:59+00:00"
  9150. },
  9151. {
  9152. "name": "facade/ignition-contracts",
  9153. "version": "1.0.2",
  9154. "source": {
  9155. "type": "git",
  9156. "url": "https://github.com/facade/ignition-contracts.git",
  9157. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  9158. },
  9159. "dist": {
  9160. "type": "zip",
  9161. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  9162. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  9163. "shasum": ""
  9164. },
  9165. "require": {
  9166. "php": "^7.3|^8.0"
  9167. },
  9168. "require-dev": {
  9169. "friendsofphp/php-cs-fixer": "^v2.15.8",
  9170. "phpunit/phpunit": "^9.3.11",
  9171. "vimeo/psalm": "^3.17.1"
  9172. },
  9173. "type": "library",
  9174. "autoload": {
  9175. "psr-4": {
  9176. "Facade\\IgnitionContracts\\": "src"
  9177. }
  9178. },
  9179. "notification-url": "https://packagist.org/downloads/",
  9180. "license": [
  9181. "MIT"
  9182. ],
  9183. "authors": [
  9184. {
  9185. "name": "Freek Van der Herten",
  9186. "email": "freek@spatie.be",
  9187. "homepage": "https://flareapp.io",
  9188. "role": "Developer"
  9189. }
  9190. ],
  9191. "description": "Solution contracts for Ignition",
  9192. "homepage": "https://github.com/facade/ignition-contracts",
  9193. "keywords": [
  9194. "contracts",
  9195. "flare",
  9196. "ignition"
  9197. ],
  9198. "support": {
  9199. "issues": "https://github.com/facade/ignition-contracts/issues",
  9200. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  9201. },
  9202. "time": "2020-10-16T08:27:54+00:00"
  9203. },
  9204. {
  9205. "name": "fakerphp/faker",
  9206. "version": "v1.23.0",
  9207. "source": {
  9208. "type": "git",
  9209. "url": "https://github.com/FakerPHP/Faker.git",
  9210. "reference": "e3daa170d00fde61ea7719ef47bb09bb8f1d9b01"
  9211. },
  9212. "dist": {
  9213. "type": "zip",
  9214. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e3daa170d00fde61ea7719ef47bb09bb8f1d9b01",
  9215. "reference": "e3daa170d00fde61ea7719ef47bb09bb8f1d9b01",
  9216. "shasum": ""
  9217. },
  9218. "require": {
  9219. "php": "^7.4 || ^8.0",
  9220. "psr/container": "^1.0 || ^2.0",
  9221. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  9222. },
  9223. "conflict": {
  9224. "fzaninotto/faker": "*"
  9225. },
  9226. "require-dev": {
  9227. "bamarni/composer-bin-plugin": "^1.4.1",
  9228. "doctrine/persistence": "^1.3 || ^2.0",
  9229. "ext-intl": "*",
  9230. "phpunit/phpunit": "^9.5.26",
  9231. "symfony/phpunit-bridge": "^5.4.16"
  9232. },
  9233. "suggest": {
  9234. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  9235. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  9236. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  9237. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  9238. "ext-mbstring": "Required for multibyte Unicode string functionality."
  9239. },
  9240. "type": "library",
  9241. "extra": {
  9242. "branch-alias": {
  9243. "dev-main": "v1.21-dev"
  9244. }
  9245. },
  9246. "autoload": {
  9247. "psr-4": {
  9248. "Faker\\": "src/Faker/"
  9249. }
  9250. },
  9251. "notification-url": "https://packagist.org/downloads/",
  9252. "license": [
  9253. "MIT"
  9254. ],
  9255. "authors": [
  9256. {
  9257. "name": "François Zaninotto"
  9258. }
  9259. ],
  9260. "description": "Faker is a PHP library that generates fake data for you.",
  9261. "keywords": [
  9262. "data",
  9263. "faker",
  9264. "fixtures"
  9265. ],
  9266. "support": {
  9267. "issues": "https://github.com/FakerPHP/Faker/issues",
  9268. "source": "https://github.com/FakerPHP/Faker/tree/v1.23.0"
  9269. },
  9270. "time": "2023-06-12T08:44:38+00:00"
  9271. },
  9272. {
  9273. "name": "filp/whoops",
  9274. "version": "2.15.4",
  9275. "source": {
  9276. "type": "git",
  9277. "url": "https://github.com/filp/whoops.git",
  9278. "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546"
  9279. },
  9280. "dist": {
  9281. "type": "zip",
  9282. "url": "https://api.github.com/repos/filp/whoops/zipball/a139776fa3f5985a50b509f2a02ff0f709d2a546",
  9283. "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546",
  9284. "shasum": ""
  9285. },
  9286. "require": {
  9287. "php": "^5.5.9 || ^7.0 || ^8.0",
  9288. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  9289. },
  9290. "require-dev": {
  9291. "mockery/mockery": "^0.9 || ^1.0",
  9292. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  9293. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  9294. },
  9295. "suggest": {
  9296. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  9297. "whoops/soap": "Formats errors as SOAP responses"
  9298. },
  9299. "type": "library",
  9300. "extra": {
  9301. "branch-alias": {
  9302. "dev-master": "2.7-dev"
  9303. }
  9304. },
  9305. "autoload": {
  9306. "psr-4": {
  9307. "Whoops\\": "src/Whoops/"
  9308. }
  9309. },
  9310. "notification-url": "https://packagist.org/downloads/",
  9311. "license": [
  9312. "MIT"
  9313. ],
  9314. "authors": [
  9315. {
  9316. "name": "Filipe Dobreira",
  9317. "homepage": "https://github.com/filp",
  9318. "role": "Developer"
  9319. }
  9320. ],
  9321. "description": "php error handling for cool kids",
  9322. "homepage": "https://filp.github.io/whoops/",
  9323. "keywords": [
  9324. "error",
  9325. "exception",
  9326. "handling",
  9327. "library",
  9328. "throwable",
  9329. "whoops"
  9330. ],
  9331. "support": {
  9332. "issues": "https://github.com/filp/whoops/issues",
  9333. "source": "https://github.com/filp/whoops/tree/2.15.4"
  9334. },
  9335. "funding": [
  9336. {
  9337. "url": "https://github.com/denis-sokolov",
  9338. "type": "github"
  9339. }
  9340. ],
  9341. "time": "2023-11-03T12:00:00+00:00"
  9342. },
  9343. {
  9344. "name": "hamcrest/hamcrest-php",
  9345. "version": "v2.0.1",
  9346. "source": {
  9347. "type": "git",
  9348. "url": "https://github.com/hamcrest/hamcrest-php.git",
  9349. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  9350. },
  9351. "dist": {
  9352. "type": "zip",
  9353. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  9354. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  9355. "shasum": ""
  9356. },
  9357. "require": {
  9358. "php": "^5.3|^7.0|^8.0"
  9359. },
  9360. "replace": {
  9361. "cordoval/hamcrest-php": "*",
  9362. "davedevelopment/hamcrest-php": "*",
  9363. "kodova/hamcrest-php": "*"
  9364. },
  9365. "require-dev": {
  9366. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  9367. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  9368. },
  9369. "type": "library",
  9370. "extra": {
  9371. "branch-alias": {
  9372. "dev-master": "2.1-dev"
  9373. }
  9374. },
  9375. "autoload": {
  9376. "classmap": [
  9377. "hamcrest"
  9378. ]
  9379. },
  9380. "notification-url": "https://packagist.org/downloads/",
  9381. "license": [
  9382. "BSD-3-Clause"
  9383. ],
  9384. "description": "This is the PHP port of Hamcrest Matchers",
  9385. "keywords": [
  9386. "test"
  9387. ],
  9388. "support": {
  9389. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  9390. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  9391. },
  9392. "time": "2020-07-09T08:09:16+00:00"
  9393. },
  9394. {
  9395. "name": "mockery/mockery",
  9396. "version": "1.6.7",
  9397. "source": {
  9398. "type": "git",
  9399. "url": "https://github.com/mockery/mockery.git",
  9400. "reference": "0cc058854b3195ba21dc6b1f7b1f60f4ef3a9c06"
  9401. },
  9402. "dist": {
  9403. "type": "zip",
  9404. "url": "https://api.github.com/repos/mockery/mockery/zipball/0cc058854b3195ba21dc6b1f7b1f60f4ef3a9c06",
  9405. "reference": "0cc058854b3195ba21dc6b1f7b1f60f4ef3a9c06",
  9406. "shasum": ""
  9407. },
  9408. "require": {
  9409. "hamcrest/hamcrest-php": "^2.0.1",
  9410. "lib-pcre": ">=7.0",
  9411. "php": ">=7.3"
  9412. },
  9413. "conflict": {
  9414. "phpunit/phpunit": "<8.0"
  9415. },
  9416. "require-dev": {
  9417. "phpunit/phpunit": "^8.5 || ^9.6.10",
  9418. "symplify/easy-coding-standard": "^12.0.8"
  9419. },
  9420. "type": "library",
  9421. "autoload": {
  9422. "files": [
  9423. "library/helpers.php",
  9424. "library/Mockery.php"
  9425. ],
  9426. "psr-4": {
  9427. "Mockery\\": "library/Mockery"
  9428. }
  9429. },
  9430. "notification-url": "https://packagist.org/downloads/",
  9431. "license": [
  9432. "BSD-3-Clause"
  9433. ],
  9434. "authors": [
  9435. {
  9436. "name": "Pádraic Brady",
  9437. "email": "padraic.brady@gmail.com",
  9438. "homepage": "https://github.com/padraic",
  9439. "role": "Author"
  9440. },
  9441. {
  9442. "name": "Dave Marshall",
  9443. "email": "dave.marshall@atstsolutions.co.uk",
  9444. "homepage": "https://davedevelopment.co.uk",
  9445. "role": "Developer"
  9446. },
  9447. {
  9448. "name": "Nathanael Esayeas",
  9449. "email": "nathanael.esayeas@protonmail.com",
  9450. "homepage": "https://github.com/ghostwriter",
  9451. "role": "Lead Developer"
  9452. }
  9453. ],
  9454. "description": "Mockery is a simple yet flexible PHP mock object framework",
  9455. "homepage": "https://github.com/mockery/mockery",
  9456. "keywords": [
  9457. "BDD",
  9458. "TDD",
  9459. "library",
  9460. "mock",
  9461. "mock objects",
  9462. "mockery",
  9463. "stub",
  9464. "test",
  9465. "test double",
  9466. "testing"
  9467. ],
  9468. "support": {
  9469. "docs": "https://docs.mockery.io/",
  9470. "issues": "https://github.com/mockery/mockery/issues",
  9471. "rss": "https://github.com/mockery/mockery/releases.atom",
  9472. "security": "https://github.com/mockery/mockery/security/advisories",
  9473. "source": "https://github.com/mockery/mockery"
  9474. },
  9475. "time": "2023-12-10T02:24:34+00:00"
  9476. },
  9477. {
  9478. "name": "myclabs/deep-copy",
  9479. "version": "1.11.1",
  9480. "source": {
  9481. "type": "git",
  9482. "url": "https://github.com/myclabs/DeepCopy.git",
  9483. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  9484. },
  9485. "dist": {
  9486. "type": "zip",
  9487. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  9488. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  9489. "shasum": ""
  9490. },
  9491. "require": {
  9492. "php": "^7.1 || ^8.0"
  9493. },
  9494. "conflict": {
  9495. "doctrine/collections": "<1.6.8",
  9496. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  9497. },
  9498. "require-dev": {
  9499. "doctrine/collections": "^1.6.8",
  9500. "doctrine/common": "^2.13.3 || ^3.2.2",
  9501. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  9502. },
  9503. "type": "library",
  9504. "autoload": {
  9505. "files": [
  9506. "src/DeepCopy/deep_copy.php"
  9507. ],
  9508. "psr-4": {
  9509. "DeepCopy\\": "src/DeepCopy/"
  9510. }
  9511. },
  9512. "notification-url": "https://packagist.org/downloads/",
  9513. "license": [
  9514. "MIT"
  9515. ],
  9516. "description": "Create deep copies (clones) of your objects",
  9517. "keywords": [
  9518. "clone",
  9519. "copy",
  9520. "duplicate",
  9521. "object",
  9522. "object graph"
  9523. ],
  9524. "support": {
  9525. "issues": "https://github.com/myclabs/DeepCopy/issues",
  9526. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  9527. },
  9528. "funding": [
  9529. {
  9530. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  9531. "type": "tidelift"
  9532. }
  9533. ],
  9534. "time": "2023-03-08T13:26:56+00:00"
  9535. },
  9536. {
  9537. "name": "nunomaduro/collision",
  9538. "version": "v5.11.0",
  9539. "source": {
  9540. "type": "git",
  9541. "url": "https://github.com/nunomaduro/collision.git",
  9542. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461"
  9543. },
  9544. "dist": {
  9545. "type": "zip",
  9546. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/8b610eef8582ccdc05d8f2ab23305e2d37049461",
  9547. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461",
  9548. "shasum": ""
  9549. },
  9550. "require": {
  9551. "facade/ignition-contracts": "^1.0",
  9552. "filp/whoops": "^2.14.3",
  9553. "php": "^7.3 || ^8.0",
  9554. "symfony/console": "^5.0"
  9555. },
  9556. "require-dev": {
  9557. "brianium/paratest": "^6.1",
  9558. "fideloper/proxy": "^4.4.1",
  9559. "fruitcake/laravel-cors": "^2.0.3",
  9560. "laravel/framework": "8.x-dev",
  9561. "nunomaduro/larastan": "^0.6.2",
  9562. "nunomaduro/mock-final-classes": "^1.0",
  9563. "orchestra/testbench": "^6.0",
  9564. "phpstan/phpstan": "^0.12.64",
  9565. "phpunit/phpunit": "^9.5.0"
  9566. },
  9567. "type": "library",
  9568. "extra": {
  9569. "laravel": {
  9570. "providers": [
  9571. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  9572. ]
  9573. }
  9574. },
  9575. "autoload": {
  9576. "psr-4": {
  9577. "NunoMaduro\\Collision\\": "src/"
  9578. }
  9579. },
  9580. "notification-url": "https://packagist.org/downloads/",
  9581. "license": [
  9582. "MIT"
  9583. ],
  9584. "authors": [
  9585. {
  9586. "name": "Nuno Maduro",
  9587. "email": "enunomaduro@gmail.com"
  9588. }
  9589. ],
  9590. "description": "Cli error handling for console/command-line PHP applications.",
  9591. "keywords": [
  9592. "artisan",
  9593. "cli",
  9594. "command-line",
  9595. "console",
  9596. "error",
  9597. "handling",
  9598. "laravel",
  9599. "laravel-zero",
  9600. "php",
  9601. "symfony"
  9602. ],
  9603. "support": {
  9604. "issues": "https://github.com/nunomaduro/collision/issues",
  9605. "source": "https://github.com/nunomaduro/collision"
  9606. },
  9607. "funding": [
  9608. {
  9609. "url": "https://www.paypal.com/paypalme/enunomaduro",
  9610. "type": "custom"
  9611. },
  9612. {
  9613. "url": "https://github.com/nunomaduro",
  9614. "type": "github"
  9615. },
  9616. {
  9617. "url": "https://www.patreon.com/nunomaduro",
  9618. "type": "patreon"
  9619. }
  9620. ],
  9621. "time": "2022-01-10T16:22:52+00:00"
  9622. },
  9623. {
  9624. "name": "phar-io/manifest",
  9625. "version": "2.0.3",
  9626. "source": {
  9627. "type": "git",
  9628. "url": "https://github.com/phar-io/manifest.git",
  9629. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  9630. },
  9631. "dist": {
  9632. "type": "zip",
  9633. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  9634. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  9635. "shasum": ""
  9636. },
  9637. "require": {
  9638. "ext-dom": "*",
  9639. "ext-phar": "*",
  9640. "ext-xmlwriter": "*",
  9641. "phar-io/version": "^3.0.1",
  9642. "php": "^7.2 || ^8.0"
  9643. },
  9644. "type": "library",
  9645. "extra": {
  9646. "branch-alias": {
  9647. "dev-master": "2.0.x-dev"
  9648. }
  9649. },
  9650. "autoload": {
  9651. "classmap": [
  9652. "src/"
  9653. ]
  9654. },
  9655. "notification-url": "https://packagist.org/downloads/",
  9656. "license": [
  9657. "BSD-3-Clause"
  9658. ],
  9659. "authors": [
  9660. {
  9661. "name": "Arne Blankerts",
  9662. "email": "arne@blankerts.de",
  9663. "role": "Developer"
  9664. },
  9665. {
  9666. "name": "Sebastian Heuer",
  9667. "email": "sebastian@phpeople.de",
  9668. "role": "Developer"
  9669. },
  9670. {
  9671. "name": "Sebastian Bergmann",
  9672. "email": "sebastian@phpunit.de",
  9673. "role": "Developer"
  9674. }
  9675. ],
  9676. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9677. "support": {
  9678. "issues": "https://github.com/phar-io/manifest/issues",
  9679. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  9680. },
  9681. "time": "2021-07-20T11:28:43+00:00"
  9682. },
  9683. {
  9684. "name": "phar-io/version",
  9685. "version": "3.2.1",
  9686. "source": {
  9687. "type": "git",
  9688. "url": "https://github.com/phar-io/version.git",
  9689. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  9690. },
  9691. "dist": {
  9692. "type": "zip",
  9693. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9694. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9695. "shasum": ""
  9696. },
  9697. "require": {
  9698. "php": "^7.2 || ^8.0"
  9699. },
  9700. "type": "library",
  9701. "autoload": {
  9702. "classmap": [
  9703. "src/"
  9704. ]
  9705. },
  9706. "notification-url": "https://packagist.org/downloads/",
  9707. "license": [
  9708. "BSD-3-Clause"
  9709. ],
  9710. "authors": [
  9711. {
  9712. "name": "Arne Blankerts",
  9713. "email": "arne@blankerts.de",
  9714. "role": "Developer"
  9715. },
  9716. {
  9717. "name": "Sebastian Heuer",
  9718. "email": "sebastian@phpeople.de",
  9719. "role": "Developer"
  9720. },
  9721. {
  9722. "name": "Sebastian Bergmann",
  9723. "email": "sebastian@phpunit.de",
  9724. "role": "Developer"
  9725. }
  9726. ],
  9727. "description": "Library for handling version information and constraints",
  9728. "support": {
  9729. "issues": "https://github.com/phar-io/version/issues",
  9730. "source": "https://github.com/phar-io/version/tree/3.2.1"
  9731. },
  9732. "time": "2022-02-21T01:04:05+00:00"
  9733. },
  9734. {
  9735. "name": "phpunit/php-code-coverage",
  9736. "version": "9.2.30",
  9737. "source": {
  9738. "type": "git",
  9739. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9740. "reference": "ca2bd87d2f9215904682a9cb9bb37dda98e76089"
  9741. },
  9742. "dist": {
  9743. "type": "zip",
  9744. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/ca2bd87d2f9215904682a9cb9bb37dda98e76089",
  9745. "reference": "ca2bd87d2f9215904682a9cb9bb37dda98e76089",
  9746. "shasum": ""
  9747. },
  9748. "require": {
  9749. "ext-dom": "*",
  9750. "ext-libxml": "*",
  9751. "ext-xmlwriter": "*",
  9752. "nikic/php-parser": "^4.18 || ^5.0",
  9753. "php": ">=7.3",
  9754. "phpunit/php-file-iterator": "^3.0.3",
  9755. "phpunit/php-text-template": "^2.0.2",
  9756. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  9757. "sebastian/complexity": "^2.0",
  9758. "sebastian/environment": "^5.1.2",
  9759. "sebastian/lines-of-code": "^1.0.3",
  9760. "sebastian/version": "^3.0.1",
  9761. "theseer/tokenizer": "^1.2.0"
  9762. },
  9763. "require-dev": {
  9764. "phpunit/phpunit": "^9.3"
  9765. },
  9766. "suggest": {
  9767. "ext-pcov": "PHP extension that provides line coverage",
  9768. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9769. },
  9770. "type": "library",
  9771. "extra": {
  9772. "branch-alias": {
  9773. "dev-master": "9.2-dev"
  9774. }
  9775. },
  9776. "autoload": {
  9777. "classmap": [
  9778. "src/"
  9779. ]
  9780. },
  9781. "notification-url": "https://packagist.org/downloads/",
  9782. "license": [
  9783. "BSD-3-Clause"
  9784. ],
  9785. "authors": [
  9786. {
  9787. "name": "Sebastian Bergmann",
  9788. "email": "sebastian@phpunit.de",
  9789. "role": "lead"
  9790. }
  9791. ],
  9792. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9793. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9794. "keywords": [
  9795. "coverage",
  9796. "testing",
  9797. "xunit"
  9798. ],
  9799. "support": {
  9800. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9801. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  9802. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.30"
  9803. },
  9804. "funding": [
  9805. {
  9806. "url": "https://github.com/sebastianbergmann",
  9807. "type": "github"
  9808. }
  9809. ],
  9810. "time": "2023-12-22T06:47:57+00:00"
  9811. },
  9812. {
  9813. "name": "phpunit/php-file-iterator",
  9814. "version": "3.0.6",
  9815. "source": {
  9816. "type": "git",
  9817. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9818. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  9819. },
  9820. "dist": {
  9821. "type": "zip",
  9822. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9823. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9824. "shasum": ""
  9825. },
  9826. "require": {
  9827. "php": ">=7.3"
  9828. },
  9829. "require-dev": {
  9830. "phpunit/phpunit": "^9.3"
  9831. },
  9832. "type": "library",
  9833. "extra": {
  9834. "branch-alias": {
  9835. "dev-master": "3.0-dev"
  9836. }
  9837. },
  9838. "autoload": {
  9839. "classmap": [
  9840. "src/"
  9841. ]
  9842. },
  9843. "notification-url": "https://packagist.org/downloads/",
  9844. "license": [
  9845. "BSD-3-Clause"
  9846. ],
  9847. "authors": [
  9848. {
  9849. "name": "Sebastian Bergmann",
  9850. "email": "sebastian@phpunit.de",
  9851. "role": "lead"
  9852. }
  9853. ],
  9854. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9855. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9856. "keywords": [
  9857. "filesystem",
  9858. "iterator"
  9859. ],
  9860. "support": {
  9861. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9862. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  9863. },
  9864. "funding": [
  9865. {
  9866. "url": "https://github.com/sebastianbergmann",
  9867. "type": "github"
  9868. }
  9869. ],
  9870. "time": "2021-12-02T12:48:52+00:00"
  9871. },
  9872. {
  9873. "name": "phpunit/php-invoker",
  9874. "version": "3.1.1",
  9875. "source": {
  9876. "type": "git",
  9877. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9878. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  9879. },
  9880. "dist": {
  9881. "type": "zip",
  9882. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9883. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9884. "shasum": ""
  9885. },
  9886. "require": {
  9887. "php": ">=7.3"
  9888. },
  9889. "require-dev": {
  9890. "ext-pcntl": "*",
  9891. "phpunit/phpunit": "^9.3"
  9892. },
  9893. "suggest": {
  9894. "ext-pcntl": "*"
  9895. },
  9896. "type": "library",
  9897. "extra": {
  9898. "branch-alias": {
  9899. "dev-master": "3.1-dev"
  9900. }
  9901. },
  9902. "autoload": {
  9903. "classmap": [
  9904. "src/"
  9905. ]
  9906. },
  9907. "notification-url": "https://packagist.org/downloads/",
  9908. "license": [
  9909. "BSD-3-Clause"
  9910. ],
  9911. "authors": [
  9912. {
  9913. "name": "Sebastian Bergmann",
  9914. "email": "sebastian@phpunit.de",
  9915. "role": "lead"
  9916. }
  9917. ],
  9918. "description": "Invoke callables with a timeout",
  9919. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9920. "keywords": [
  9921. "process"
  9922. ],
  9923. "support": {
  9924. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9925. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  9926. },
  9927. "funding": [
  9928. {
  9929. "url": "https://github.com/sebastianbergmann",
  9930. "type": "github"
  9931. }
  9932. ],
  9933. "time": "2020-09-28T05:58:55+00:00"
  9934. },
  9935. {
  9936. "name": "phpunit/php-text-template",
  9937. "version": "2.0.4",
  9938. "source": {
  9939. "type": "git",
  9940. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9941. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  9942. },
  9943. "dist": {
  9944. "type": "zip",
  9945. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9946. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9947. "shasum": ""
  9948. },
  9949. "require": {
  9950. "php": ">=7.3"
  9951. },
  9952. "require-dev": {
  9953. "phpunit/phpunit": "^9.3"
  9954. },
  9955. "type": "library",
  9956. "extra": {
  9957. "branch-alias": {
  9958. "dev-master": "2.0-dev"
  9959. }
  9960. },
  9961. "autoload": {
  9962. "classmap": [
  9963. "src/"
  9964. ]
  9965. },
  9966. "notification-url": "https://packagist.org/downloads/",
  9967. "license": [
  9968. "BSD-3-Clause"
  9969. ],
  9970. "authors": [
  9971. {
  9972. "name": "Sebastian Bergmann",
  9973. "email": "sebastian@phpunit.de",
  9974. "role": "lead"
  9975. }
  9976. ],
  9977. "description": "Simple template engine.",
  9978. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9979. "keywords": [
  9980. "template"
  9981. ],
  9982. "support": {
  9983. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9984. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  9985. },
  9986. "funding": [
  9987. {
  9988. "url": "https://github.com/sebastianbergmann",
  9989. "type": "github"
  9990. }
  9991. ],
  9992. "time": "2020-10-26T05:33:50+00:00"
  9993. },
  9994. {
  9995. "name": "phpunit/php-timer",
  9996. "version": "5.0.3",
  9997. "source": {
  9998. "type": "git",
  9999. "url": "https://github.com/sebastianbergmann/php-timer.git",
  10000. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  10001. },
  10002. "dist": {
  10003. "type": "zip",
  10004. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  10005. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  10006. "shasum": ""
  10007. },
  10008. "require": {
  10009. "php": ">=7.3"
  10010. },
  10011. "require-dev": {
  10012. "phpunit/phpunit": "^9.3"
  10013. },
  10014. "type": "library",
  10015. "extra": {
  10016. "branch-alias": {
  10017. "dev-master": "5.0-dev"
  10018. }
  10019. },
  10020. "autoload": {
  10021. "classmap": [
  10022. "src/"
  10023. ]
  10024. },
  10025. "notification-url": "https://packagist.org/downloads/",
  10026. "license": [
  10027. "BSD-3-Clause"
  10028. ],
  10029. "authors": [
  10030. {
  10031. "name": "Sebastian Bergmann",
  10032. "email": "sebastian@phpunit.de",
  10033. "role": "lead"
  10034. }
  10035. ],
  10036. "description": "Utility class for timing",
  10037. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  10038. "keywords": [
  10039. "timer"
  10040. ],
  10041. "support": {
  10042. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  10043. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  10044. },
  10045. "funding": [
  10046. {
  10047. "url": "https://github.com/sebastianbergmann",
  10048. "type": "github"
  10049. }
  10050. ],
  10051. "time": "2020-10-26T13:16:10+00:00"
  10052. },
  10053. {
  10054. "name": "phpunit/phpunit",
  10055. "version": "9.6.15",
  10056. "source": {
  10057. "type": "git",
  10058. "url": "https://github.com/sebastianbergmann/phpunit.git",
  10059. "reference": "05017b80304e0eb3f31d90194a563fd53a6021f1"
  10060. },
  10061. "dist": {
  10062. "type": "zip",
  10063. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/05017b80304e0eb3f31d90194a563fd53a6021f1",
  10064. "reference": "05017b80304e0eb3f31d90194a563fd53a6021f1",
  10065. "shasum": ""
  10066. },
  10067. "require": {
  10068. "doctrine/instantiator": "^1.3.1 || ^2",
  10069. "ext-dom": "*",
  10070. "ext-json": "*",
  10071. "ext-libxml": "*",
  10072. "ext-mbstring": "*",
  10073. "ext-xml": "*",
  10074. "ext-xmlwriter": "*",
  10075. "myclabs/deep-copy": "^1.10.1",
  10076. "phar-io/manifest": "^2.0.3",
  10077. "phar-io/version": "^3.0.2",
  10078. "php": ">=7.3",
  10079. "phpunit/php-code-coverage": "^9.2.28",
  10080. "phpunit/php-file-iterator": "^3.0.5",
  10081. "phpunit/php-invoker": "^3.1.1",
  10082. "phpunit/php-text-template": "^2.0.3",
  10083. "phpunit/php-timer": "^5.0.2",
  10084. "sebastian/cli-parser": "^1.0.1",
  10085. "sebastian/code-unit": "^1.0.6",
  10086. "sebastian/comparator": "^4.0.8",
  10087. "sebastian/diff": "^4.0.3",
  10088. "sebastian/environment": "^5.1.3",
  10089. "sebastian/exporter": "^4.0.5",
  10090. "sebastian/global-state": "^5.0.1",
  10091. "sebastian/object-enumerator": "^4.0.3",
  10092. "sebastian/resource-operations": "^3.0.3",
  10093. "sebastian/type": "^3.2",
  10094. "sebastian/version": "^3.0.2"
  10095. },
  10096. "suggest": {
  10097. "ext-soap": "To be able to generate mocks based on WSDL files",
  10098. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  10099. },
  10100. "bin": [
  10101. "phpunit"
  10102. ],
  10103. "type": "library",
  10104. "extra": {
  10105. "branch-alias": {
  10106. "dev-master": "9.6-dev"
  10107. }
  10108. },
  10109. "autoload": {
  10110. "files": [
  10111. "src/Framework/Assert/Functions.php"
  10112. ],
  10113. "classmap": [
  10114. "src/"
  10115. ]
  10116. },
  10117. "notification-url": "https://packagist.org/downloads/",
  10118. "license": [
  10119. "BSD-3-Clause"
  10120. ],
  10121. "authors": [
  10122. {
  10123. "name": "Sebastian Bergmann",
  10124. "email": "sebastian@phpunit.de",
  10125. "role": "lead"
  10126. }
  10127. ],
  10128. "description": "The PHP Unit Testing framework.",
  10129. "homepage": "https://phpunit.de/",
  10130. "keywords": [
  10131. "phpunit",
  10132. "testing",
  10133. "xunit"
  10134. ],
  10135. "support": {
  10136. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  10137. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  10138. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.15"
  10139. },
  10140. "funding": [
  10141. {
  10142. "url": "https://phpunit.de/sponsors.html",
  10143. "type": "custom"
  10144. },
  10145. {
  10146. "url": "https://github.com/sebastianbergmann",
  10147. "type": "github"
  10148. },
  10149. {
  10150. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  10151. "type": "tidelift"
  10152. }
  10153. ],
  10154. "time": "2023-12-01T16:55:19+00:00"
  10155. },
  10156. {
  10157. "name": "sebastian/cli-parser",
  10158. "version": "1.0.1",
  10159. "source": {
  10160. "type": "git",
  10161. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  10162. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  10163. },
  10164. "dist": {
  10165. "type": "zip",
  10166. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  10167. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  10168. "shasum": ""
  10169. },
  10170. "require": {
  10171. "php": ">=7.3"
  10172. },
  10173. "require-dev": {
  10174. "phpunit/phpunit": "^9.3"
  10175. },
  10176. "type": "library",
  10177. "extra": {
  10178. "branch-alias": {
  10179. "dev-master": "1.0-dev"
  10180. }
  10181. },
  10182. "autoload": {
  10183. "classmap": [
  10184. "src/"
  10185. ]
  10186. },
  10187. "notification-url": "https://packagist.org/downloads/",
  10188. "license": [
  10189. "BSD-3-Clause"
  10190. ],
  10191. "authors": [
  10192. {
  10193. "name": "Sebastian Bergmann",
  10194. "email": "sebastian@phpunit.de",
  10195. "role": "lead"
  10196. }
  10197. ],
  10198. "description": "Library for parsing CLI options",
  10199. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  10200. "support": {
  10201. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  10202. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  10203. },
  10204. "funding": [
  10205. {
  10206. "url": "https://github.com/sebastianbergmann",
  10207. "type": "github"
  10208. }
  10209. ],
  10210. "time": "2020-09-28T06:08:49+00:00"
  10211. },
  10212. {
  10213. "name": "sebastian/code-unit",
  10214. "version": "1.0.8",
  10215. "source": {
  10216. "type": "git",
  10217. "url": "https://github.com/sebastianbergmann/code-unit.git",
  10218. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  10219. },
  10220. "dist": {
  10221. "type": "zip",
  10222. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  10223. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  10224. "shasum": ""
  10225. },
  10226. "require": {
  10227. "php": ">=7.3"
  10228. },
  10229. "require-dev": {
  10230. "phpunit/phpunit": "^9.3"
  10231. },
  10232. "type": "library",
  10233. "extra": {
  10234. "branch-alias": {
  10235. "dev-master": "1.0-dev"
  10236. }
  10237. },
  10238. "autoload": {
  10239. "classmap": [
  10240. "src/"
  10241. ]
  10242. },
  10243. "notification-url": "https://packagist.org/downloads/",
  10244. "license": [
  10245. "BSD-3-Clause"
  10246. ],
  10247. "authors": [
  10248. {
  10249. "name": "Sebastian Bergmann",
  10250. "email": "sebastian@phpunit.de",
  10251. "role": "lead"
  10252. }
  10253. ],
  10254. "description": "Collection of value objects that represent the PHP code units",
  10255. "homepage": "https://github.com/sebastianbergmann/code-unit",
  10256. "support": {
  10257. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  10258. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  10259. },
  10260. "funding": [
  10261. {
  10262. "url": "https://github.com/sebastianbergmann",
  10263. "type": "github"
  10264. }
  10265. ],
  10266. "time": "2020-10-26T13:08:54+00:00"
  10267. },
  10268. {
  10269. "name": "sebastian/code-unit-reverse-lookup",
  10270. "version": "2.0.3",
  10271. "source": {
  10272. "type": "git",
  10273. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  10274. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  10275. },
  10276. "dist": {
  10277. "type": "zip",
  10278. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  10279. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  10280. "shasum": ""
  10281. },
  10282. "require": {
  10283. "php": ">=7.3"
  10284. },
  10285. "require-dev": {
  10286. "phpunit/phpunit": "^9.3"
  10287. },
  10288. "type": "library",
  10289. "extra": {
  10290. "branch-alias": {
  10291. "dev-master": "2.0-dev"
  10292. }
  10293. },
  10294. "autoload": {
  10295. "classmap": [
  10296. "src/"
  10297. ]
  10298. },
  10299. "notification-url": "https://packagist.org/downloads/",
  10300. "license": [
  10301. "BSD-3-Clause"
  10302. ],
  10303. "authors": [
  10304. {
  10305. "name": "Sebastian Bergmann",
  10306. "email": "sebastian@phpunit.de"
  10307. }
  10308. ],
  10309. "description": "Looks up which function or method a line of code belongs to",
  10310. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10311. "support": {
  10312. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  10313. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  10314. },
  10315. "funding": [
  10316. {
  10317. "url": "https://github.com/sebastianbergmann",
  10318. "type": "github"
  10319. }
  10320. ],
  10321. "time": "2020-09-28T05:30:19+00:00"
  10322. },
  10323. {
  10324. "name": "sebastian/comparator",
  10325. "version": "4.0.8",
  10326. "source": {
  10327. "type": "git",
  10328. "url": "https://github.com/sebastianbergmann/comparator.git",
  10329. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  10330. },
  10331. "dist": {
  10332. "type": "zip",
  10333. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  10334. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  10335. "shasum": ""
  10336. },
  10337. "require": {
  10338. "php": ">=7.3",
  10339. "sebastian/diff": "^4.0",
  10340. "sebastian/exporter": "^4.0"
  10341. },
  10342. "require-dev": {
  10343. "phpunit/phpunit": "^9.3"
  10344. },
  10345. "type": "library",
  10346. "extra": {
  10347. "branch-alias": {
  10348. "dev-master": "4.0-dev"
  10349. }
  10350. },
  10351. "autoload": {
  10352. "classmap": [
  10353. "src/"
  10354. ]
  10355. },
  10356. "notification-url": "https://packagist.org/downloads/",
  10357. "license": [
  10358. "BSD-3-Clause"
  10359. ],
  10360. "authors": [
  10361. {
  10362. "name": "Sebastian Bergmann",
  10363. "email": "sebastian@phpunit.de"
  10364. },
  10365. {
  10366. "name": "Jeff Welch",
  10367. "email": "whatthejeff@gmail.com"
  10368. },
  10369. {
  10370. "name": "Volker Dusch",
  10371. "email": "github@wallbash.com"
  10372. },
  10373. {
  10374. "name": "Bernhard Schussek",
  10375. "email": "bschussek@2bepublished.at"
  10376. }
  10377. ],
  10378. "description": "Provides the functionality to compare PHP values for equality",
  10379. "homepage": "https://github.com/sebastianbergmann/comparator",
  10380. "keywords": [
  10381. "comparator",
  10382. "compare",
  10383. "equality"
  10384. ],
  10385. "support": {
  10386. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10387. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  10388. },
  10389. "funding": [
  10390. {
  10391. "url": "https://github.com/sebastianbergmann",
  10392. "type": "github"
  10393. }
  10394. ],
  10395. "time": "2022-09-14T12:41:17+00:00"
  10396. },
  10397. {
  10398. "name": "sebastian/complexity",
  10399. "version": "2.0.3",
  10400. "source": {
  10401. "type": "git",
  10402. "url": "https://github.com/sebastianbergmann/complexity.git",
  10403. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a"
  10404. },
  10405. "dist": {
  10406. "type": "zip",
  10407. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a",
  10408. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a",
  10409. "shasum": ""
  10410. },
  10411. "require": {
  10412. "nikic/php-parser": "^4.18 || ^5.0",
  10413. "php": ">=7.3"
  10414. },
  10415. "require-dev": {
  10416. "phpunit/phpunit": "^9.3"
  10417. },
  10418. "type": "library",
  10419. "extra": {
  10420. "branch-alias": {
  10421. "dev-master": "2.0-dev"
  10422. }
  10423. },
  10424. "autoload": {
  10425. "classmap": [
  10426. "src/"
  10427. ]
  10428. },
  10429. "notification-url": "https://packagist.org/downloads/",
  10430. "license": [
  10431. "BSD-3-Clause"
  10432. ],
  10433. "authors": [
  10434. {
  10435. "name": "Sebastian Bergmann",
  10436. "email": "sebastian@phpunit.de",
  10437. "role": "lead"
  10438. }
  10439. ],
  10440. "description": "Library for calculating the complexity of PHP code units",
  10441. "homepage": "https://github.com/sebastianbergmann/complexity",
  10442. "support": {
  10443. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  10444. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3"
  10445. },
  10446. "funding": [
  10447. {
  10448. "url": "https://github.com/sebastianbergmann",
  10449. "type": "github"
  10450. }
  10451. ],
  10452. "time": "2023-12-22T06:19:30+00:00"
  10453. },
  10454. {
  10455. "name": "sebastian/diff",
  10456. "version": "4.0.5",
  10457. "source": {
  10458. "type": "git",
  10459. "url": "https://github.com/sebastianbergmann/diff.git",
  10460. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131"
  10461. },
  10462. "dist": {
  10463. "type": "zip",
  10464. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  10465. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  10466. "shasum": ""
  10467. },
  10468. "require": {
  10469. "php": ">=7.3"
  10470. },
  10471. "require-dev": {
  10472. "phpunit/phpunit": "^9.3",
  10473. "symfony/process": "^4.2 || ^5"
  10474. },
  10475. "type": "library",
  10476. "extra": {
  10477. "branch-alias": {
  10478. "dev-master": "4.0-dev"
  10479. }
  10480. },
  10481. "autoload": {
  10482. "classmap": [
  10483. "src/"
  10484. ]
  10485. },
  10486. "notification-url": "https://packagist.org/downloads/",
  10487. "license": [
  10488. "BSD-3-Clause"
  10489. ],
  10490. "authors": [
  10491. {
  10492. "name": "Sebastian Bergmann",
  10493. "email": "sebastian@phpunit.de"
  10494. },
  10495. {
  10496. "name": "Kore Nordmann",
  10497. "email": "mail@kore-nordmann.de"
  10498. }
  10499. ],
  10500. "description": "Diff implementation",
  10501. "homepage": "https://github.com/sebastianbergmann/diff",
  10502. "keywords": [
  10503. "diff",
  10504. "udiff",
  10505. "unidiff",
  10506. "unified diff"
  10507. ],
  10508. "support": {
  10509. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10510. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.5"
  10511. },
  10512. "funding": [
  10513. {
  10514. "url": "https://github.com/sebastianbergmann",
  10515. "type": "github"
  10516. }
  10517. ],
  10518. "time": "2023-05-07T05:35:17+00:00"
  10519. },
  10520. {
  10521. "name": "sebastian/environment",
  10522. "version": "5.1.5",
  10523. "source": {
  10524. "type": "git",
  10525. "url": "https://github.com/sebastianbergmann/environment.git",
  10526. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  10527. },
  10528. "dist": {
  10529. "type": "zip",
  10530. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  10531. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  10532. "shasum": ""
  10533. },
  10534. "require": {
  10535. "php": ">=7.3"
  10536. },
  10537. "require-dev": {
  10538. "phpunit/phpunit": "^9.3"
  10539. },
  10540. "suggest": {
  10541. "ext-posix": "*"
  10542. },
  10543. "type": "library",
  10544. "extra": {
  10545. "branch-alias": {
  10546. "dev-master": "5.1-dev"
  10547. }
  10548. },
  10549. "autoload": {
  10550. "classmap": [
  10551. "src/"
  10552. ]
  10553. },
  10554. "notification-url": "https://packagist.org/downloads/",
  10555. "license": [
  10556. "BSD-3-Clause"
  10557. ],
  10558. "authors": [
  10559. {
  10560. "name": "Sebastian Bergmann",
  10561. "email": "sebastian@phpunit.de"
  10562. }
  10563. ],
  10564. "description": "Provides functionality to handle HHVM/PHP environments",
  10565. "homepage": "http://www.github.com/sebastianbergmann/environment",
  10566. "keywords": [
  10567. "Xdebug",
  10568. "environment",
  10569. "hhvm"
  10570. ],
  10571. "support": {
  10572. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10573. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  10574. },
  10575. "funding": [
  10576. {
  10577. "url": "https://github.com/sebastianbergmann",
  10578. "type": "github"
  10579. }
  10580. ],
  10581. "time": "2023-02-03T06:03:51+00:00"
  10582. },
  10583. {
  10584. "name": "sebastian/exporter",
  10585. "version": "4.0.5",
  10586. "source": {
  10587. "type": "git",
  10588. "url": "https://github.com/sebastianbergmann/exporter.git",
  10589. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d"
  10590. },
  10591. "dist": {
  10592. "type": "zip",
  10593. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  10594. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  10595. "shasum": ""
  10596. },
  10597. "require": {
  10598. "php": ">=7.3",
  10599. "sebastian/recursion-context": "^4.0"
  10600. },
  10601. "require-dev": {
  10602. "ext-mbstring": "*",
  10603. "phpunit/phpunit": "^9.3"
  10604. },
  10605. "type": "library",
  10606. "extra": {
  10607. "branch-alias": {
  10608. "dev-master": "4.0-dev"
  10609. }
  10610. },
  10611. "autoload": {
  10612. "classmap": [
  10613. "src/"
  10614. ]
  10615. },
  10616. "notification-url": "https://packagist.org/downloads/",
  10617. "license": [
  10618. "BSD-3-Clause"
  10619. ],
  10620. "authors": [
  10621. {
  10622. "name": "Sebastian Bergmann",
  10623. "email": "sebastian@phpunit.de"
  10624. },
  10625. {
  10626. "name": "Jeff Welch",
  10627. "email": "whatthejeff@gmail.com"
  10628. },
  10629. {
  10630. "name": "Volker Dusch",
  10631. "email": "github@wallbash.com"
  10632. },
  10633. {
  10634. "name": "Adam Harvey",
  10635. "email": "aharvey@php.net"
  10636. },
  10637. {
  10638. "name": "Bernhard Schussek",
  10639. "email": "bschussek@gmail.com"
  10640. }
  10641. ],
  10642. "description": "Provides the functionality to export PHP variables for visualization",
  10643. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10644. "keywords": [
  10645. "export",
  10646. "exporter"
  10647. ],
  10648. "support": {
  10649. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10650. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5"
  10651. },
  10652. "funding": [
  10653. {
  10654. "url": "https://github.com/sebastianbergmann",
  10655. "type": "github"
  10656. }
  10657. ],
  10658. "time": "2022-09-14T06:03:37+00:00"
  10659. },
  10660. {
  10661. "name": "sebastian/global-state",
  10662. "version": "5.0.6",
  10663. "source": {
  10664. "type": "git",
  10665. "url": "https://github.com/sebastianbergmann/global-state.git",
  10666. "reference": "bde739e7565280bda77be70044ac1047bc007e34"
  10667. },
  10668. "dist": {
  10669. "type": "zip",
  10670. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bde739e7565280bda77be70044ac1047bc007e34",
  10671. "reference": "bde739e7565280bda77be70044ac1047bc007e34",
  10672. "shasum": ""
  10673. },
  10674. "require": {
  10675. "php": ">=7.3",
  10676. "sebastian/object-reflector": "^2.0",
  10677. "sebastian/recursion-context": "^4.0"
  10678. },
  10679. "require-dev": {
  10680. "ext-dom": "*",
  10681. "phpunit/phpunit": "^9.3"
  10682. },
  10683. "suggest": {
  10684. "ext-uopz": "*"
  10685. },
  10686. "type": "library",
  10687. "extra": {
  10688. "branch-alias": {
  10689. "dev-master": "5.0-dev"
  10690. }
  10691. },
  10692. "autoload": {
  10693. "classmap": [
  10694. "src/"
  10695. ]
  10696. },
  10697. "notification-url": "https://packagist.org/downloads/",
  10698. "license": [
  10699. "BSD-3-Clause"
  10700. ],
  10701. "authors": [
  10702. {
  10703. "name": "Sebastian Bergmann",
  10704. "email": "sebastian@phpunit.de"
  10705. }
  10706. ],
  10707. "description": "Snapshotting of global state",
  10708. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  10709. "keywords": [
  10710. "global state"
  10711. ],
  10712. "support": {
  10713. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10714. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.6"
  10715. },
  10716. "funding": [
  10717. {
  10718. "url": "https://github.com/sebastianbergmann",
  10719. "type": "github"
  10720. }
  10721. ],
  10722. "time": "2023-08-02T09:26:13+00:00"
  10723. },
  10724. {
  10725. "name": "sebastian/lines-of-code",
  10726. "version": "1.0.4",
  10727. "source": {
  10728. "type": "git",
  10729. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10730. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5"
  10731. },
  10732. "dist": {
  10733. "type": "zip",
  10734. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  10735. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  10736. "shasum": ""
  10737. },
  10738. "require": {
  10739. "nikic/php-parser": "^4.18 || ^5.0",
  10740. "php": ">=7.3"
  10741. },
  10742. "require-dev": {
  10743. "phpunit/phpunit": "^9.3"
  10744. },
  10745. "type": "library",
  10746. "extra": {
  10747. "branch-alias": {
  10748. "dev-master": "1.0-dev"
  10749. }
  10750. },
  10751. "autoload": {
  10752. "classmap": [
  10753. "src/"
  10754. ]
  10755. },
  10756. "notification-url": "https://packagist.org/downloads/",
  10757. "license": [
  10758. "BSD-3-Clause"
  10759. ],
  10760. "authors": [
  10761. {
  10762. "name": "Sebastian Bergmann",
  10763. "email": "sebastian@phpunit.de",
  10764. "role": "lead"
  10765. }
  10766. ],
  10767. "description": "Library for counting the lines of code in PHP source code",
  10768. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10769. "support": {
  10770. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10771. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4"
  10772. },
  10773. "funding": [
  10774. {
  10775. "url": "https://github.com/sebastianbergmann",
  10776. "type": "github"
  10777. }
  10778. ],
  10779. "time": "2023-12-22T06:20:34+00:00"
  10780. },
  10781. {
  10782. "name": "sebastian/object-enumerator",
  10783. "version": "4.0.4",
  10784. "source": {
  10785. "type": "git",
  10786. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10787. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  10788. },
  10789. "dist": {
  10790. "type": "zip",
  10791. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  10792. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  10793. "shasum": ""
  10794. },
  10795. "require": {
  10796. "php": ">=7.3",
  10797. "sebastian/object-reflector": "^2.0",
  10798. "sebastian/recursion-context": "^4.0"
  10799. },
  10800. "require-dev": {
  10801. "phpunit/phpunit": "^9.3"
  10802. },
  10803. "type": "library",
  10804. "extra": {
  10805. "branch-alias": {
  10806. "dev-master": "4.0-dev"
  10807. }
  10808. },
  10809. "autoload": {
  10810. "classmap": [
  10811. "src/"
  10812. ]
  10813. },
  10814. "notification-url": "https://packagist.org/downloads/",
  10815. "license": [
  10816. "BSD-3-Clause"
  10817. ],
  10818. "authors": [
  10819. {
  10820. "name": "Sebastian Bergmann",
  10821. "email": "sebastian@phpunit.de"
  10822. }
  10823. ],
  10824. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10825. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10826. "support": {
  10827. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10828. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  10829. },
  10830. "funding": [
  10831. {
  10832. "url": "https://github.com/sebastianbergmann",
  10833. "type": "github"
  10834. }
  10835. ],
  10836. "time": "2020-10-26T13:12:34+00:00"
  10837. },
  10838. {
  10839. "name": "sebastian/object-reflector",
  10840. "version": "2.0.4",
  10841. "source": {
  10842. "type": "git",
  10843. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10844. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  10845. },
  10846. "dist": {
  10847. "type": "zip",
  10848. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10849. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10850. "shasum": ""
  10851. },
  10852. "require": {
  10853. "php": ">=7.3"
  10854. },
  10855. "require-dev": {
  10856. "phpunit/phpunit": "^9.3"
  10857. },
  10858. "type": "library",
  10859. "extra": {
  10860. "branch-alias": {
  10861. "dev-master": "2.0-dev"
  10862. }
  10863. },
  10864. "autoload": {
  10865. "classmap": [
  10866. "src/"
  10867. ]
  10868. },
  10869. "notification-url": "https://packagist.org/downloads/",
  10870. "license": [
  10871. "BSD-3-Clause"
  10872. ],
  10873. "authors": [
  10874. {
  10875. "name": "Sebastian Bergmann",
  10876. "email": "sebastian@phpunit.de"
  10877. }
  10878. ],
  10879. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10880. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10881. "support": {
  10882. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10883. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  10884. },
  10885. "funding": [
  10886. {
  10887. "url": "https://github.com/sebastianbergmann",
  10888. "type": "github"
  10889. }
  10890. ],
  10891. "time": "2020-10-26T13:14:26+00:00"
  10892. },
  10893. {
  10894. "name": "sebastian/recursion-context",
  10895. "version": "4.0.5",
  10896. "source": {
  10897. "type": "git",
  10898. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10899. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  10900. },
  10901. "dist": {
  10902. "type": "zip",
  10903. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10904. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10905. "shasum": ""
  10906. },
  10907. "require": {
  10908. "php": ">=7.3"
  10909. },
  10910. "require-dev": {
  10911. "phpunit/phpunit": "^9.3"
  10912. },
  10913. "type": "library",
  10914. "extra": {
  10915. "branch-alias": {
  10916. "dev-master": "4.0-dev"
  10917. }
  10918. },
  10919. "autoload": {
  10920. "classmap": [
  10921. "src/"
  10922. ]
  10923. },
  10924. "notification-url": "https://packagist.org/downloads/",
  10925. "license": [
  10926. "BSD-3-Clause"
  10927. ],
  10928. "authors": [
  10929. {
  10930. "name": "Sebastian Bergmann",
  10931. "email": "sebastian@phpunit.de"
  10932. },
  10933. {
  10934. "name": "Jeff Welch",
  10935. "email": "whatthejeff@gmail.com"
  10936. },
  10937. {
  10938. "name": "Adam Harvey",
  10939. "email": "aharvey@php.net"
  10940. }
  10941. ],
  10942. "description": "Provides functionality to recursively process PHP variables",
  10943. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10944. "support": {
  10945. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10946. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  10947. },
  10948. "funding": [
  10949. {
  10950. "url": "https://github.com/sebastianbergmann",
  10951. "type": "github"
  10952. }
  10953. ],
  10954. "time": "2023-02-03T06:07:39+00:00"
  10955. },
  10956. {
  10957. "name": "sebastian/resource-operations",
  10958. "version": "3.0.3",
  10959. "source": {
  10960. "type": "git",
  10961. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10962. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  10963. },
  10964. "dist": {
  10965. "type": "zip",
  10966. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  10967. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  10968. "shasum": ""
  10969. },
  10970. "require": {
  10971. "php": ">=7.3"
  10972. },
  10973. "require-dev": {
  10974. "phpunit/phpunit": "^9.0"
  10975. },
  10976. "type": "library",
  10977. "extra": {
  10978. "branch-alias": {
  10979. "dev-master": "3.0-dev"
  10980. }
  10981. },
  10982. "autoload": {
  10983. "classmap": [
  10984. "src/"
  10985. ]
  10986. },
  10987. "notification-url": "https://packagist.org/downloads/",
  10988. "license": [
  10989. "BSD-3-Clause"
  10990. ],
  10991. "authors": [
  10992. {
  10993. "name": "Sebastian Bergmann",
  10994. "email": "sebastian@phpunit.de"
  10995. }
  10996. ],
  10997. "description": "Provides a list of PHP built-in functions that operate on resources",
  10998. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10999. "support": {
  11000. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  11001. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  11002. },
  11003. "funding": [
  11004. {
  11005. "url": "https://github.com/sebastianbergmann",
  11006. "type": "github"
  11007. }
  11008. ],
  11009. "time": "2020-09-28T06:45:17+00:00"
  11010. },
  11011. {
  11012. "name": "sebastian/type",
  11013. "version": "3.2.1",
  11014. "source": {
  11015. "type": "git",
  11016. "url": "https://github.com/sebastianbergmann/type.git",
  11017. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  11018. },
  11019. "dist": {
  11020. "type": "zip",
  11021. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  11022. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  11023. "shasum": ""
  11024. },
  11025. "require": {
  11026. "php": ">=7.3"
  11027. },
  11028. "require-dev": {
  11029. "phpunit/phpunit": "^9.5"
  11030. },
  11031. "type": "library",
  11032. "extra": {
  11033. "branch-alias": {
  11034. "dev-master": "3.2-dev"
  11035. }
  11036. },
  11037. "autoload": {
  11038. "classmap": [
  11039. "src/"
  11040. ]
  11041. },
  11042. "notification-url": "https://packagist.org/downloads/",
  11043. "license": [
  11044. "BSD-3-Clause"
  11045. ],
  11046. "authors": [
  11047. {
  11048. "name": "Sebastian Bergmann",
  11049. "email": "sebastian@phpunit.de",
  11050. "role": "lead"
  11051. }
  11052. ],
  11053. "description": "Collection of value objects that represent the types of the PHP type system",
  11054. "homepage": "https://github.com/sebastianbergmann/type",
  11055. "support": {
  11056. "issues": "https://github.com/sebastianbergmann/type/issues",
  11057. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  11058. },
  11059. "funding": [
  11060. {
  11061. "url": "https://github.com/sebastianbergmann",
  11062. "type": "github"
  11063. }
  11064. ],
  11065. "time": "2023-02-03T06:13:03+00:00"
  11066. },
  11067. {
  11068. "name": "sebastian/version",
  11069. "version": "3.0.2",
  11070. "source": {
  11071. "type": "git",
  11072. "url": "https://github.com/sebastianbergmann/version.git",
  11073. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  11074. },
  11075. "dist": {
  11076. "type": "zip",
  11077. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  11078. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  11079. "shasum": ""
  11080. },
  11081. "require": {
  11082. "php": ">=7.3"
  11083. },
  11084. "type": "library",
  11085. "extra": {
  11086. "branch-alias": {
  11087. "dev-master": "3.0-dev"
  11088. }
  11089. },
  11090. "autoload": {
  11091. "classmap": [
  11092. "src/"
  11093. ]
  11094. },
  11095. "notification-url": "https://packagist.org/downloads/",
  11096. "license": [
  11097. "BSD-3-Clause"
  11098. ],
  11099. "authors": [
  11100. {
  11101. "name": "Sebastian Bergmann",
  11102. "email": "sebastian@phpunit.de",
  11103. "role": "lead"
  11104. }
  11105. ],
  11106. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  11107. "homepage": "https://github.com/sebastianbergmann/version",
  11108. "support": {
  11109. "issues": "https://github.com/sebastianbergmann/version/issues",
  11110. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  11111. },
  11112. "funding": [
  11113. {
  11114. "url": "https://github.com/sebastianbergmann",
  11115. "type": "github"
  11116. }
  11117. ],
  11118. "time": "2020-09-28T06:39:44+00:00"
  11119. },
  11120. {
  11121. "name": "theseer/tokenizer",
  11122. "version": "1.2.2",
  11123. "source": {
  11124. "type": "git",
  11125. "url": "https://github.com/theseer/tokenizer.git",
  11126. "reference": "b2ad5003ca10d4ee50a12da31de12a5774ba6b96"
  11127. },
  11128. "dist": {
  11129. "type": "zip",
  11130. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/b2ad5003ca10d4ee50a12da31de12a5774ba6b96",
  11131. "reference": "b2ad5003ca10d4ee50a12da31de12a5774ba6b96",
  11132. "shasum": ""
  11133. },
  11134. "require": {
  11135. "ext-dom": "*",
  11136. "ext-tokenizer": "*",
  11137. "ext-xmlwriter": "*",
  11138. "php": "^7.2 || ^8.0"
  11139. },
  11140. "type": "library",
  11141. "autoload": {
  11142. "classmap": [
  11143. "src/"
  11144. ]
  11145. },
  11146. "notification-url": "https://packagist.org/downloads/",
  11147. "license": [
  11148. "BSD-3-Clause"
  11149. ],
  11150. "authors": [
  11151. {
  11152. "name": "Arne Blankerts",
  11153. "email": "arne@blankerts.de",
  11154. "role": "Developer"
  11155. }
  11156. ],
  11157. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11158. "support": {
  11159. "issues": "https://github.com/theseer/tokenizer/issues",
  11160. "source": "https://github.com/theseer/tokenizer/tree/1.2.2"
  11161. },
  11162. "funding": [
  11163. {
  11164. "url": "https://github.com/theseer",
  11165. "type": "github"
  11166. }
  11167. ],
  11168. "time": "2023-11-20T00:12:19+00:00"
  11169. }
  11170. ],
  11171. "aliases": [],
  11172. "minimum-stability": "dev",
  11173. "stability-flags": {
  11174. "getuilaboratory/getui-pushapi-php-client-v2": 20
  11175. },
  11176. "prefer-stable": true,
  11177. "prefer-lowest": false,
  11178. "platform": {
  11179. "php": "^8.0",
  11180. "ext-json": "*"
  11181. },
  11182. "platform-dev": [],
  11183. "plugin-api-version": "2.6.0"
  11184. }