composer.lock 366 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290
  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": "02453d2715cf86e568a5235e9dadb9f6",
  8. "packages": [
  9. {
  10. "name": "anankke/omnipay-alipay",
  11. "version": "v3.1.3",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/Anankke/omnipay-alipay.git",
  15. "reference": "66b20f5e66b88be1214b9b859de5d5318b49fe90"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/Anankke/omnipay-alipay/zipball/66b20f5e66b88be1214b9b859de5d5318b49fe90",
  20. "reference": "66b20f5e66b88be1214b9b859de5d5318b49fe90",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "ext-bcmath": "*",
  25. "ext-json": "*",
  26. "ext-openssl": "*",
  27. "omnipay/common": "^3.0",
  28. "php-http/guzzle7-adapter": "^1"
  29. },
  30. "require-dev": {
  31. "omnipay/tests": "^3.0",
  32. "squizlabs/php_codesniffer": "^3.4"
  33. },
  34. "type": "library",
  35. "autoload": {
  36. "files": [
  37. "src/Common/helpers.php"
  38. ],
  39. "psr-4": {
  40. "Omnipay\\Alipay\\": "src/",
  41. "Omnipay\\Alipay\\Tests\\": "tests/"
  42. }
  43. },
  44. "notification-url": "https://packagist.org/downloads/",
  45. "license": [
  46. "MIT"
  47. ],
  48. "authors": [
  49. {
  50. "name": "Loki Else",
  51. "email": "[email protected]"
  52. }
  53. ],
  54. "description": "Alipay gateway for Omnipay payment processing library",
  55. "homepage": "https://github.com/lokielse/omnipay-alipay",
  56. "keywords": [
  57. "alipay",
  58. "gateway",
  59. "merchant",
  60. "omnipay",
  61. "pay",
  62. "payment",
  63. "purchase"
  64. ],
  65. "support": {
  66. "source": "https://github.com/Anankke/omnipay-alipay/tree/v3.1.3"
  67. },
  68. "time": "2022-04-23T09:09:28+00:00"
  69. },
  70. {
  71. "name": "aws/aws-crt-php",
  72. "version": "v1.2.2",
  73. "source": {
  74. "type": "git",
  75. "url": "https://github.com/awslabs/aws-crt-php.git",
  76. "reference": "2f1dc7b7eda080498be96a4a6d683a41583030e9"
  77. },
  78. "dist": {
  79. "type": "zip",
  80. "url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/2f1dc7b7eda080498be96a4a6d683a41583030e9",
  81. "reference": "2f1dc7b7eda080498be96a4a6d683a41583030e9",
  82. "shasum": ""
  83. },
  84. "require": {
  85. "php": ">=5.5"
  86. },
  87. "require-dev": {
  88. "phpunit/phpunit": "^4.8.35||^5.6.3||^9.5",
  89. "yoast/phpunit-polyfills": "^1.0"
  90. },
  91. "suggest": {
  92. "ext-awscrt": "Make sure you install awscrt native extension to use any of the functionality."
  93. },
  94. "type": "library",
  95. "autoload": {
  96. "classmap": [
  97. "src/"
  98. ]
  99. },
  100. "notification-url": "https://packagist.org/downloads/",
  101. "license": [
  102. "Apache-2.0"
  103. ],
  104. "authors": [
  105. {
  106. "name": "AWS SDK Common Runtime Team",
  107. "email": "[email protected]"
  108. }
  109. ],
  110. "description": "AWS Common Runtime for PHP",
  111. "homepage": "https://github.com/awslabs/aws-crt-php",
  112. "keywords": [
  113. "amazon",
  114. "aws",
  115. "crt",
  116. "sdk"
  117. ],
  118. "support": {
  119. "issues": "https://github.com/awslabs/aws-crt-php/issues",
  120. "source": "https://github.com/awslabs/aws-crt-php/tree/v1.2.2"
  121. },
  122. "time": "2023-07-20T16:49:55+00:00"
  123. },
  124. {
  125. "name": "aws/aws-sdk-php",
  126. "version": "3.281.3",
  127. "source": {
  128. "type": "git",
  129. "url": "https://github.com/aws/aws-sdk-php.git",
  130. "reference": "a3cfb20dbfb11117b7174b2594fc597745252e0c"
  131. },
  132. "dist": {
  133. "type": "zip",
  134. "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/a3cfb20dbfb11117b7174b2594fc597745252e0c",
  135. "reference": "a3cfb20dbfb11117b7174b2594fc597745252e0c",
  136. "shasum": ""
  137. },
  138. "require": {
  139. "aws/aws-crt-php": "^1.0.4",
  140. "ext-json": "*",
  141. "ext-pcre": "*",
  142. "ext-simplexml": "*",
  143. "guzzlehttp/guzzle": "^6.5.8 || ^7.4.5",
  144. "guzzlehttp/promises": "^1.4.0 || ^2.0",
  145. "guzzlehttp/psr7": "^1.9.1 || ^2.4.5",
  146. "mtdowling/jmespath.php": "^2.6",
  147. "php": ">=7.2.5",
  148. "psr/http-message": "^1.0 || ^2.0"
  149. },
  150. "require-dev": {
  151. "andrewsville/php-token-reflection": "^1.4",
  152. "aws/aws-php-sns-message-validator": "~1.0",
  153. "behat/behat": "~3.0",
  154. "composer/composer": "^1.10.22",
  155. "dms/phpunit-arraysubset-asserts": "^0.4.0",
  156. "doctrine/cache": "~1.4",
  157. "ext-dom": "*",
  158. "ext-openssl": "*",
  159. "ext-pcntl": "*",
  160. "ext-sockets": "*",
  161. "nette/neon": "^2.3",
  162. "paragonie/random_compat": ">= 2",
  163. "phpunit/phpunit": "^5.6.3 || ^8.5 || ^9.5",
  164. "psr/cache": "^1.0",
  165. "psr/simple-cache": "^1.0",
  166. "sebastian/comparator": "^1.2.3 || ^4.0",
  167. "yoast/phpunit-polyfills": "^1.0"
  168. },
  169. "suggest": {
  170. "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications",
  171. "doctrine/cache": "To use the DoctrineCacheAdapter",
  172. "ext-curl": "To send requests using cURL",
  173. "ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages",
  174. "ext-sockets": "To use client-side monitoring"
  175. },
  176. "type": "library",
  177. "extra": {
  178. "branch-alias": {
  179. "dev-master": "3.0-dev"
  180. }
  181. },
  182. "autoload": {
  183. "files": [
  184. "src/functions.php"
  185. ],
  186. "psr-4": {
  187. "Aws\\": "src/"
  188. }
  189. },
  190. "notification-url": "https://packagist.org/downloads/",
  191. "license": [
  192. "Apache-2.0"
  193. ],
  194. "authors": [
  195. {
  196. "name": "Amazon Web Services",
  197. "homepage": "http://aws.amazon.com"
  198. }
  199. ],
  200. "description": "AWS SDK for PHP - Use Amazon Web Services in your PHP project",
  201. "homepage": "http://aws.amazon.com/sdkforphp",
  202. "keywords": [
  203. "amazon",
  204. "aws",
  205. "cloud",
  206. "dynamodb",
  207. "ec2",
  208. "glacier",
  209. "s3",
  210. "sdk"
  211. ],
  212. "support": {
  213. "forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80",
  214. "issues": "https://github.com/aws/aws-sdk-php/issues",
  215. "source": "https://github.com/aws/aws-sdk-php/tree/3.281.3"
  216. },
  217. "time": "2023-09-08T18:06:26+00:00"
  218. },
  219. {
  220. "name": "bacon/bacon-qr-code",
  221. "version": "2.0.8",
  222. "source": {
  223. "type": "git",
  224. "url": "https://github.com/Bacon/BaconQrCode.git",
  225. "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22"
  226. },
  227. "dist": {
  228. "type": "zip",
  229. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/8674e51bb65af933a5ffaf1c308a660387c35c22",
  230. "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22",
  231. "shasum": ""
  232. },
  233. "require": {
  234. "dasprid/enum": "^1.0.3",
  235. "ext-iconv": "*",
  236. "php": "^7.1 || ^8.0"
  237. },
  238. "require-dev": {
  239. "phly/keep-a-changelog": "^2.1",
  240. "phpunit/phpunit": "^7 | ^8 | ^9",
  241. "spatie/phpunit-snapshot-assertions": "^4.2.9",
  242. "squizlabs/php_codesniffer": "^3.4"
  243. },
  244. "suggest": {
  245. "ext-imagick": "to generate QR code images"
  246. },
  247. "type": "library",
  248. "autoload": {
  249. "psr-4": {
  250. "BaconQrCode\\": "src/"
  251. }
  252. },
  253. "notification-url": "https://packagist.org/downloads/",
  254. "license": [
  255. "BSD-2-Clause"
  256. ],
  257. "authors": [
  258. {
  259. "name": "Ben Scholzen 'DASPRiD'",
  260. "email": "[email protected]",
  261. "homepage": "https://dasprids.de/",
  262. "role": "Developer"
  263. }
  264. ],
  265. "description": "BaconQrCode is a QR code generator for PHP.",
  266. "homepage": "https://github.com/Bacon/BaconQrCode",
  267. "support": {
  268. "issues": "https://github.com/Bacon/BaconQrCode/issues",
  269. "source": "https://github.com/Bacon/BaconQrCode/tree/2.0.8"
  270. },
  271. "time": "2022-12-07T17:46:57+00:00"
  272. },
  273. {
  274. "name": "beberlei/assert",
  275. "version": "v3.3.2",
  276. "source": {
  277. "type": "git",
  278. "url": "https://github.com/beberlei/assert.git",
  279. "reference": "cb70015c04be1baee6f5f5c953703347c0ac1655"
  280. },
  281. "dist": {
  282. "type": "zip",
  283. "url": "https://api.github.com/repos/beberlei/assert/zipball/cb70015c04be1baee6f5f5c953703347c0ac1655",
  284. "reference": "cb70015c04be1baee6f5f5c953703347c0ac1655",
  285. "shasum": ""
  286. },
  287. "require": {
  288. "ext-ctype": "*",
  289. "ext-json": "*",
  290. "ext-mbstring": "*",
  291. "ext-simplexml": "*",
  292. "php": "^7.0 || ^8.0"
  293. },
  294. "require-dev": {
  295. "friendsofphp/php-cs-fixer": "*",
  296. "phpstan/phpstan": "*",
  297. "phpunit/phpunit": ">=6.0.0",
  298. "yoast/phpunit-polyfills": "^0.1.0"
  299. },
  300. "suggest": {
  301. "ext-intl": "Needed to allow Assertion::count(), Assertion::isCountable(), Assertion::minCount(), and Assertion::maxCount() to operate on ResourceBundles"
  302. },
  303. "type": "library",
  304. "autoload": {
  305. "files": [
  306. "lib/Assert/functions.php"
  307. ],
  308. "psr-4": {
  309. "Assert\\": "lib/Assert"
  310. }
  311. },
  312. "notification-url": "https://packagist.org/downloads/",
  313. "license": [
  314. "BSD-2-Clause"
  315. ],
  316. "authors": [
  317. {
  318. "name": "Benjamin Eberlei",
  319. "email": "[email protected]",
  320. "role": "Lead Developer"
  321. },
  322. {
  323. "name": "Richard Quadling",
  324. "email": "[email protected]",
  325. "role": "Collaborator"
  326. }
  327. ],
  328. "description": "Thin assertion library for input validation in business models.",
  329. "keywords": [
  330. "assert",
  331. "assertion",
  332. "validation"
  333. ],
  334. "support": {
  335. "issues": "https://github.com/beberlei/assert/issues",
  336. "source": "https://github.com/beberlei/assert/tree/v3.3.2"
  337. },
  338. "time": "2021-12-16T21:41:27+00:00"
  339. },
  340. {
  341. "name": "brick/math",
  342. "version": "0.11.0",
  343. "source": {
  344. "type": "git",
  345. "url": "https://github.com/brick/math.git",
  346. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478"
  347. },
  348. "dist": {
  349. "type": "zip",
  350. "url": "https://api.github.com/repos/brick/math/zipball/0ad82ce168c82ba30d1c01ec86116ab52f589478",
  351. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478",
  352. "shasum": ""
  353. },
  354. "require": {
  355. "php": "^8.0"
  356. },
  357. "require-dev": {
  358. "php-coveralls/php-coveralls": "^2.2",
  359. "phpunit/phpunit": "^9.0",
  360. "vimeo/psalm": "5.0.0"
  361. },
  362. "type": "library",
  363. "autoload": {
  364. "psr-4": {
  365. "Brick\\Math\\": "src/"
  366. }
  367. },
  368. "notification-url": "https://packagist.org/downloads/",
  369. "license": [
  370. "MIT"
  371. ],
  372. "description": "Arbitrary-precision arithmetic library",
  373. "keywords": [
  374. "Arbitrary-precision",
  375. "BigInteger",
  376. "BigRational",
  377. "arithmetic",
  378. "bigdecimal",
  379. "bignum",
  380. "brick",
  381. "math"
  382. ],
  383. "support": {
  384. "issues": "https://github.com/brick/math/issues",
  385. "source": "https://github.com/brick/math/tree/0.11.0"
  386. },
  387. "funding": [
  388. {
  389. "url": "https://github.com/BenMorel",
  390. "type": "github"
  391. }
  392. ],
  393. "time": "2023-01-15T23:15:59+00:00"
  394. },
  395. {
  396. "name": "cloudflare/sdk",
  397. "version": "1.3.0",
  398. "source": {
  399. "type": "git",
  400. "url": "https://github.com/cloudflare/cloudflare-php.git",
  401. "reference": "fdfc656aa8b78016f4722acec30b54136c027d8e"
  402. },
  403. "dist": {
  404. "type": "zip",
  405. "url": "https://api.github.com/repos/cloudflare/cloudflare-php/zipball/fdfc656aa8b78016f4722acec30b54136c027d8e",
  406. "reference": "fdfc656aa8b78016f4722acec30b54136c027d8e",
  407. "shasum": ""
  408. },
  409. "require": {
  410. "ext-json": "*",
  411. "guzzlehttp/guzzle": "^7.0.1",
  412. "php": ">=7.2.5",
  413. "psr/http-message": "~1.0"
  414. },
  415. "require-dev": {
  416. "friendsofphp/php-cs-fixer": "^2.6",
  417. "phpmd/phpmd": "@stable",
  418. "phpunit/phpunit": "^5.7"
  419. },
  420. "type": "library",
  421. "autoload": {
  422. "psr-4": {
  423. "Cloudflare\\API\\": "src/"
  424. }
  425. },
  426. "notification-url": "https://packagist.org/downloads/",
  427. "license": [
  428. "BSD-3-Clause"
  429. ],
  430. "authors": [
  431. {
  432. "name": "Junade Ali",
  433. "email": "[email protected]"
  434. }
  435. ],
  436. "description": "PHP binding for v4 of the Cloudflare Client API.",
  437. "support": {
  438. "issues": "https://github.com/cloudflare/cloudflare-php/issues",
  439. "source": "https://github.com/cloudflare/cloudflare-php/tree/1.3.0"
  440. },
  441. "time": "2021-10-13T03:40:33+00:00"
  442. },
  443. {
  444. "name": "clue/stream-filter",
  445. "version": "v1.6.0",
  446. "source": {
  447. "type": "git",
  448. "url": "https://github.com/clue/stream-filter.git",
  449. "reference": "d6169430c7731d8509da7aecd0af756a5747b78e"
  450. },
  451. "dist": {
  452. "type": "zip",
  453. "url": "https://api.github.com/repos/clue/stream-filter/zipball/d6169430c7731d8509da7aecd0af756a5747b78e",
  454. "reference": "d6169430c7731d8509da7aecd0af756a5747b78e",
  455. "shasum": ""
  456. },
  457. "require": {
  458. "php": ">=5.3"
  459. },
  460. "require-dev": {
  461. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.36"
  462. },
  463. "type": "library",
  464. "autoload": {
  465. "files": [
  466. "src/functions_include.php"
  467. ],
  468. "psr-4": {
  469. "Clue\\StreamFilter\\": "src/"
  470. }
  471. },
  472. "notification-url": "https://packagist.org/downloads/",
  473. "license": [
  474. "MIT"
  475. ],
  476. "authors": [
  477. {
  478. "name": "Christian Lück",
  479. "email": "[email protected]"
  480. }
  481. ],
  482. "description": "A simple and modern approach to stream filtering in PHP",
  483. "homepage": "https://github.com/clue/php-stream-filter",
  484. "keywords": [
  485. "bucket brigade",
  486. "callback",
  487. "filter",
  488. "php_user_filter",
  489. "stream",
  490. "stream_filter_append",
  491. "stream_filter_register"
  492. ],
  493. "support": {
  494. "issues": "https://github.com/clue/stream-filter/issues",
  495. "source": "https://github.com/clue/stream-filter/tree/v1.6.0"
  496. },
  497. "funding": [
  498. {
  499. "url": "https://clue.engineering/support",
  500. "type": "custom"
  501. },
  502. {
  503. "url": "https://github.com/clue",
  504. "type": "github"
  505. }
  506. ],
  507. "time": "2022-02-21T13:15:14+00:00"
  508. },
  509. {
  510. "name": "composer/ca-bundle",
  511. "version": "1.3.7",
  512. "source": {
  513. "type": "git",
  514. "url": "https://github.com/composer/ca-bundle.git",
  515. "reference": "76e46335014860eec1aa5a724799a00a2e47cc85"
  516. },
  517. "dist": {
  518. "type": "zip",
  519. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/76e46335014860eec1aa5a724799a00a2e47cc85",
  520. "reference": "76e46335014860eec1aa5a724799a00a2e47cc85",
  521. "shasum": ""
  522. },
  523. "require": {
  524. "ext-openssl": "*",
  525. "ext-pcre": "*",
  526. "php": "^5.3.2 || ^7.0 || ^8.0"
  527. },
  528. "require-dev": {
  529. "phpstan/phpstan": "^0.12.55",
  530. "psr/log": "^1.0",
  531. "symfony/phpunit-bridge": "^4.2 || ^5",
  532. "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  533. },
  534. "type": "library",
  535. "extra": {
  536. "branch-alias": {
  537. "dev-main": "1.x-dev"
  538. }
  539. },
  540. "autoload": {
  541. "psr-4": {
  542. "Composer\\CaBundle\\": "src"
  543. }
  544. },
  545. "notification-url": "https://packagist.org/downloads/",
  546. "license": [
  547. "MIT"
  548. ],
  549. "authors": [
  550. {
  551. "name": "Jordi Boggiano",
  552. "email": "[email protected]",
  553. "homepage": "http://seld.be"
  554. }
  555. ],
  556. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  557. "keywords": [
  558. "cabundle",
  559. "cacert",
  560. "certificate",
  561. "ssl",
  562. "tls"
  563. ],
  564. "support": {
  565. "irc": "irc://irc.freenode.org/composer",
  566. "issues": "https://github.com/composer/ca-bundle/issues",
  567. "source": "https://github.com/composer/ca-bundle/tree/1.3.7"
  568. },
  569. "funding": [
  570. {
  571. "url": "https://packagist.com",
  572. "type": "custom"
  573. },
  574. {
  575. "url": "https://github.com/composer",
  576. "type": "github"
  577. },
  578. {
  579. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  580. "type": "tidelift"
  581. }
  582. ],
  583. "time": "2023-08-30T09:31:38+00:00"
  584. },
  585. {
  586. "name": "dasprid/enum",
  587. "version": "1.0.5",
  588. "source": {
  589. "type": "git",
  590. "url": "https://github.com/DASPRiD/Enum.git",
  591. "reference": "6faf451159fb8ba4126b925ed2d78acfce0dc016"
  592. },
  593. "dist": {
  594. "type": "zip",
  595. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/6faf451159fb8ba4126b925ed2d78acfce0dc016",
  596. "reference": "6faf451159fb8ba4126b925ed2d78acfce0dc016",
  597. "shasum": ""
  598. },
  599. "require": {
  600. "php": ">=7.1 <9.0"
  601. },
  602. "require-dev": {
  603. "phpunit/phpunit": "^7 | ^8 | ^9",
  604. "squizlabs/php_codesniffer": "*"
  605. },
  606. "type": "library",
  607. "autoload": {
  608. "psr-4": {
  609. "DASPRiD\\Enum\\": "src/"
  610. }
  611. },
  612. "notification-url": "https://packagist.org/downloads/",
  613. "license": [
  614. "BSD-2-Clause"
  615. ],
  616. "authors": [
  617. {
  618. "name": "Ben Scholzen 'DASPRiD'",
  619. "email": "[email protected]",
  620. "homepage": "https://dasprids.de/",
  621. "role": "Developer"
  622. }
  623. ],
  624. "description": "PHP 7.1 enum implementation",
  625. "keywords": [
  626. "enum",
  627. "map"
  628. ],
  629. "support": {
  630. "issues": "https://github.com/DASPRiD/Enum/issues",
  631. "source": "https://github.com/DASPRiD/Enum/tree/1.0.5"
  632. },
  633. "time": "2023-08-25T16:18:39+00:00"
  634. },
  635. {
  636. "name": "doctrine/inflector",
  637. "version": "2.0.8",
  638. "source": {
  639. "type": "git",
  640. "url": "https://github.com/doctrine/inflector.git",
  641. "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff"
  642. },
  643. "dist": {
  644. "type": "zip",
  645. "url": "https://api.github.com/repos/doctrine/inflector/zipball/f9301a5b2fb1216b2b08f02ba04dc45423db6bff",
  646. "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff",
  647. "shasum": ""
  648. },
  649. "require": {
  650. "php": "^7.2 || ^8.0"
  651. },
  652. "require-dev": {
  653. "doctrine/coding-standard": "^11.0",
  654. "phpstan/phpstan": "^1.8",
  655. "phpstan/phpstan-phpunit": "^1.1",
  656. "phpstan/phpstan-strict-rules": "^1.3",
  657. "phpunit/phpunit": "^8.5 || ^9.5",
  658. "vimeo/psalm": "^4.25 || ^5.4"
  659. },
  660. "type": "library",
  661. "autoload": {
  662. "psr-4": {
  663. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  664. }
  665. },
  666. "notification-url": "https://packagist.org/downloads/",
  667. "license": [
  668. "MIT"
  669. ],
  670. "authors": [
  671. {
  672. "name": "Guilherme Blanco",
  673. "email": "[email protected]"
  674. },
  675. {
  676. "name": "Roman Borschel",
  677. "email": "[email protected]"
  678. },
  679. {
  680. "name": "Benjamin Eberlei",
  681. "email": "[email protected]"
  682. },
  683. {
  684. "name": "Jonathan Wage",
  685. "email": "[email protected]"
  686. },
  687. {
  688. "name": "Johannes Schmitt",
  689. "email": "[email protected]"
  690. }
  691. ],
  692. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  693. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  694. "keywords": [
  695. "inflection",
  696. "inflector",
  697. "lowercase",
  698. "manipulation",
  699. "php",
  700. "plural",
  701. "singular",
  702. "strings",
  703. "uppercase",
  704. "words"
  705. ],
  706. "support": {
  707. "issues": "https://github.com/doctrine/inflector/issues",
  708. "source": "https://github.com/doctrine/inflector/tree/2.0.8"
  709. },
  710. "funding": [
  711. {
  712. "url": "https://www.doctrine-project.org/sponsorship.html",
  713. "type": "custom"
  714. },
  715. {
  716. "url": "https://www.patreon.com/phpdoctrine",
  717. "type": "patreon"
  718. },
  719. {
  720. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  721. "type": "tidelift"
  722. }
  723. ],
  724. "time": "2023-06-16T13:40:37+00:00"
  725. },
  726. {
  727. "name": "endroid/qr-code",
  728. "version": "4.8.4",
  729. "source": {
  730. "type": "git",
  731. "url": "https://github.com/endroid/qr-code.git",
  732. "reference": "a122b85d4a5a3257d471257a43ac3e5676a27ffe"
  733. },
  734. "dist": {
  735. "type": "zip",
  736. "url": "https://api.github.com/repos/endroid/qr-code/zipball/a122b85d4a5a3257d471257a43ac3e5676a27ffe",
  737. "reference": "a122b85d4a5a3257d471257a43ac3e5676a27ffe",
  738. "shasum": ""
  739. },
  740. "require": {
  741. "bacon/bacon-qr-code": "^2.0.5",
  742. "php": "^8.1"
  743. },
  744. "conflict": {
  745. "khanamiryan/qrcode-detector-decoder": "^1.0.6"
  746. },
  747. "require-dev": {
  748. "endroid/quality": "dev-master",
  749. "ext-gd": "*",
  750. "khanamiryan/qrcode-detector-decoder": "^1.0.4||^2.0.2",
  751. "setasign/fpdf": "^1.8.2"
  752. },
  753. "suggest": {
  754. "ext-gd": "Enables you to write PNG images",
  755. "khanamiryan/qrcode-detector-decoder": "Enables you to use the image validator",
  756. "roave/security-advisories": "Makes sure package versions with known security issues are not installed",
  757. "setasign/fpdf": "Enables you to use the PDF writer"
  758. },
  759. "type": "library",
  760. "extra": {
  761. "branch-alias": {
  762. "dev-master": "4.x-dev"
  763. }
  764. },
  765. "autoload": {
  766. "psr-4": {
  767. "Endroid\\QrCode\\": "src/"
  768. }
  769. },
  770. "notification-url": "https://packagist.org/downloads/",
  771. "license": [
  772. "MIT"
  773. ],
  774. "authors": [
  775. {
  776. "name": "Jeroen van den Enden",
  777. "email": "[email protected]"
  778. }
  779. ],
  780. "description": "Endroid QR Code",
  781. "homepage": "https://github.com/endroid/qr-code",
  782. "keywords": [
  783. "code",
  784. "endroid",
  785. "php",
  786. "qr",
  787. "qrcode"
  788. ],
  789. "support": {
  790. "issues": "https://github.com/endroid/qr-code/issues",
  791. "source": "https://github.com/endroid/qr-code/tree/4.8.4"
  792. },
  793. "funding": [
  794. {
  795. "url": "https://github.com/endroid",
  796. "type": "github"
  797. }
  798. ],
  799. "time": "2023-08-28T18:12:07+00:00"
  800. },
  801. {
  802. "name": "geoip2/geoip2",
  803. "version": "v2.13.0",
  804. "source": {
  805. "type": "git",
  806. "url": "[email protected]:maxmind/GeoIP2-php.git",
  807. "reference": "6a41d8fbd6b90052bc34dff3b4252d0f88067b23"
  808. },
  809. "dist": {
  810. "type": "zip",
  811. "url": "https://api.github.com/repos/maxmind/GeoIP2-php/zipball/6a41d8fbd6b90052bc34dff3b4252d0f88067b23",
  812. "reference": "6a41d8fbd6b90052bc34dff3b4252d0f88067b23",
  813. "shasum": ""
  814. },
  815. "require": {
  816. "ext-json": "*",
  817. "maxmind-db/reader": "~1.8",
  818. "maxmind/web-service-common": "~0.8",
  819. "php": ">=7.2"
  820. },
  821. "require-dev": {
  822. "friendsofphp/php-cs-fixer": "3.*",
  823. "phpstan/phpstan": "*",
  824. "phpunit/phpunit": "^8.0 || ^9.0",
  825. "squizlabs/php_codesniffer": "3.*"
  826. },
  827. "type": "library",
  828. "autoload": {
  829. "psr-4": {
  830. "GeoIp2\\": "src"
  831. }
  832. },
  833. "notification-url": "https://packagist.org/downloads/",
  834. "license": [
  835. "Apache-2.0"
  836. ],
  837. "authors": [
  838. {
  839. "name": "Gregory J. Oschwald",
  840. "email": "[email protected]",
  841. "homepage": "https://www.maxmind.com/"
  842. }
  843. ],
  844. "description": "MaxMind GeoIP2 PHP API",
  845. "homepage": "https://github.com/maxmind/GeoIP2-php",
  846. "keywords": [
  847. "IP",
  848. "geoip",
  849. "geoip2",
  850. "geolocation",
  851. "maxmind"
  852. ],
  853. "time": "2022-08-05T20:32:58+00:00"
  854. },
  855. {
  856. "name": "guzzlehttp/guzzle",
  857. "version": "7.8.0",
  858. "source": {
  859. "type": "git",
  860. "url": "https://github.com/guzzle/guzzle.git",
  861. "reference": "1110f66a6530a40fe7aea0378fe608ee2b2248f9"
  862. },
  863. "dist": {
  864. "type": "zip",
  865. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/1110f66a6530a40fe7aea0378fe608ee2b2248f9",
  866. "reference": "1110f66a6530a40fe7aea0378fe608ee2b2248f9",
  867. "shasum": ""
  868. },
  869. "require": {
  870. "ext-json": "*",
  871. "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
  872. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  873. "php": "^7.2.5 || ^8.0",
  874. "psr/http-client": "^1.0",
  875. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  876. },
  877. "provide": {
  878. "psr/http-client-implementation": "1.0"
  879. },
  880. "require-dev": {
  881. "bamarni/composer-bin-plugin": "^1.8.1",
  882. "ext-curl": "*",
  883. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  884. "php-http/message-factory": "^1.1",
  885. "phpunit/phpunit": "^8.5.29 || ^9.5.23",
  886. "psr/log": "^1.1 || ^2.0 || ^3.0"
  887. },
  888. "suggest": {
  889. "ext-curl": "Required for CURL handler support",
  890. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  891. "psr/log": "Required for using the Log middleware"
  892. },
  893. "type": "library",
  894. "extra": {
  895. "bamarni-bin": {
  896. "bin-links": true,
  897. "forward-command": false
  898. }
  899. },
  900. "autoload": {
  901. "files": [
  902. "src/functions_include.php"
  903. ],
  904. "psr-4": {
  905. "GuzzleHttp\\": "src/"
  906. }
  907. },
  908. "notification-url": "https://packagist.org/downloads/",
  909. "license": [
  910. "MIT"
  911. ],
  912. "authors": [
  913. {
  914. "name": "Graham Campbell",
  915. "email": "[email protected]",
  916. "homepage": "https://github.com/GrahamCampbell"
  917. },
  918. {
  919. "name": "Michael Dowling",
  920. "email": "[email protected]",
  921. "homepage": "https://github.com/mtdowling"
  922. },
  923. {
  924. "name": "Jeremy Lindblom",
  925. "email": "[email protected]",
  926. "homepage": "https://github.com/jeremeamia"
  927. },
  928. {
  929. "name": "George Mponos",
  930. "email": "[email protected]",
  931. "homepage": "https://github.com/gmponos"
  932. },
  933. {
  934. "name": "Tobias Nyholm",
  935. "email": "[email protected]",
  936. "homepage": "https://github.com/Nyholm"
  937. },
  938. {
  939. "name": "Márk Sági-Kazár",
  940. "email": "[email protected]",
  941. "homepage": "https://github.com/sagikazarmark"
  942. },
  943. {
  944. "name": "Tobias Schultze",
  945. "email": "[email protected]",
  946. "homepage": "https://github.com/Tobion"
  947. }
  948. ],
  949. "description": "Guzzle is a PHP HTTP client library",
  950. "keywords": [
  951. "client",
  952. "curl",
  953. "framework",
  954. "http",
  955. "http client",
  956. "psr-18",
  957. "psr-7",
  958. "rest",
  959. "web service"
  960. ],
  961. "support": {
  962. "issues": "https://github.com/guzzle/guzzle/issues",
  963. "source": "https://github.com/guzzle/guzzle/tree/7.8.0"
  964. },
  965. "funding": [
  966. {
  967. "url": "https://github.com/GrahamCampbell",
  968. "type": "github"
  969. },
  970. {
  971. "url": "https://github.com/Nyholm",
  972. "type": "github"
  973. },
  974. {
  975. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  976. "type": "tidelift"
  977. }
  978. ],
  979. "time": "2023-08-27T10:20:53+00:00"
  980. },
  981. {
  982. "name": "guzzlehttp/promises",
  983. "version": "2.0.1",
  984. "source": {
  985. "type": "git",
  986. "url": "https://github.com/guzzle/promises.git",
  987. "reference": "111166291a0f8130081195ac4556a5587d7f1b5d"
  988. },
  989. "dist": {
  990. "type": "zip",
  991. "url": "https://api.github.com/repos/guzzle/promises/zipball/111166291a0f8130081195ac4556a5587d7f1b5d",
  992. "reference": "111166291a0f8130081195ac4556a5587d7f1b5d",
  993. "shasum": ""
  994. },
  995. "require": {
  996. "php": "^7.2.5 || ^8.0"
  997. },
  998. "require-dev": {
  999. "bamarni/composer-bin-plugin": "^1.8.1",
  1000. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  1001. },
  1002. "type": "library",
  1003. "extra": {
  1004. "bamarni-bin": {
  1005. "bin-links": true,
  1006. "forward-command": false
  1007. }
  1008. },
  1009. "autoload": {
  1010. "psr-4": {
  1011. "GuzzleHttp\\Promise\\": "src/"
  1012. }
  1013. },
  1014. "notification-url": "https://packagist.org/downloads/",
  1015. "license": [
  1016. "MIT"
  1017. ],
  1018. "authors": [
  1019. {
  1020. "name": "Graham Campbell",
  1021. "email": "[email protected]",
  1022. "homepage": "https://github.com/GrahamCampbell"
  1023. },
  1024. {
  1025. "name": "Michael Dowling",
  1026. "email": "[email protected]",
  1027. "homepage": "https://github.com/mtdowling"
  1028. },
  1029. {
  1030. "name": "Tobias Nyholm",
  1031. "email": "[email protected]",
  1032. "homepage": "https://github.com/Nyholm"
  1033. },
  1034. {
  1035. "name": "Tobias Schultze",
  1036. "email": "[email protected]",
  1037. "homepage": "https://github.com/Tobion"
  1038. }
  1039. ],
  1040. "description": "Guzzle promises library",
  1041. "keywords": [
  1042. "promise"
  1043. ],
  1044. "support": {
  1045. "issues": "https://github.com/guzzle/promises/issues",
  1046. "source": "https://github.com/guzzle/promises/tree/2.0.1"
  1047. },
  1048. "funding": [
  1049. {
  1050. "url": "https://github.com/GrahamCampbell",
  1051. "type": "github"
  1052. },
  1053. {
  1054. "url": "https://github.com/Nyholm",
  1055. "type": "github"
  1056. },
  1057. {
  1058. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1059. "type": "tidelift"
  1060. }
  1061. ],
  1062. "time": "2023-08-03T15:11:55+00:00"
  1063. },
  1064. {
  1065. "name": "guzzlehttp/psr7",
  1066. "version": "2.6.1",
  1067. "source": {
  1068. "type": "git",
  1069. "url": "https://github.com/guzzle/psr7.git",
  1070. "reference": "be45764272e8873c72dbe3d2edcfdfcc3bc9f727"
  1071. },
  1072. "dist": {
  1073. "type": "zip",
  1074. "url": "https://api.github.com/repos/guzzle/psr7/zipball/be45764272e8873c72dbe3d2edcfdfcc3bc9f727",
  1075. "reference": "be45764272e8873c72dbe3d2edcfdfcc3bc9f727",
  1076. "shasum": ""
  1077. },
  1078. "require": {
  1079. "php": "^7.2.5 || ^8.0",
  1080. "psr/http-factory": "^1.0",
  1081. "psr/http-message": "^1.1 || ^2.0",
  1082. "ralouphie/getallheaders": "^3.0"
  1083. },
  1084. "provide": {
  1085. "psr/http-factory-implementation": "1.0",
  1086. "psr/http-message-implementation": "1.0"
  1087. },
  1088. "require-dev": {
  1089. "bamarni/composer-bin-plugin": "^1.8.1",
  1090. "http-interop/http-factory-tests": "^0.9",
  1091. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  1092. },
  1093. "suggest": {
  1094. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1095. },
  1096. "type": "library",
  1097. "extra": {
  1098. "bamarni-bin": {
  1099. "bin-links": true,
  1100. "forward-command": false
  1101. }
  1102. },
  1103. "autoload": {
  1104. "psr-4": {
  1105. "GuzzleHttp\\Psr7\\": "src/"
  1106. }
  1107. },
  1108. "notification-url": "https://packagist.org/downloads/",
  1109. "license": [
  1110. "MIT"
  1111. ],
  1112. "authors": [
  1113. {
  1114. "name": "Graham Campbell",
  1115. "email": "[email protected]",
  1116. "homepage": "https://github.com/GrahamCampbell"
  1117. },
  1118. {
  1119. "name": "Michael Dowling",
  1120. "email": "[email protected]",
  1121. "homepage": "https://github.com/mtdowling"
  1122. },
  1123. {
  1124. "name": "George Mponos",
  1125. "email": "[email protected]",
  1126. "homepage": "https://github.com/gmponos"
  1127. },
  1128. {
  1129. "name": "Tobias Nyholm",
  1130. "email": "[email protected]",
  1131. "homepage": "https://github.com/Nyholm"
  1132. },
  1133. {
  1134. "name": "Márk Sági-Kazár",
  1135. "email": "[email protected]",
  1136. "homepage": "https://github.com/sagikazarmark"
  1137. },
  1138. {
  1139. "name": "Tobias Schultze",
  1140. "email": "[email protected]",
  1141. "homepage": "https://github.com/Tobion"
  1142. },
  1143. {
  1144. "name": "Márk Sági-Kazár",
  1145. "email": "[email protected]",
  1146. "homepage": "https://sagikazarmark.hu"
  1147. }
  1148. ],
  1149. "description": "PSR-7 message implementation that also provides common utility methods",
  1150. "keywords": [
  1151. "http",
  1152. "message",
  1153. "psr-7",
  1154. "request",
  1155. "response",
  1156. "stream",
  1157. "uri",
  1158. "url"
  1159. ],
  1160. "support": {
  1161. "issues": "https://github.com/guzzle/psr7/issues",
  1162. "source": "https://github.com/guzzle/psr7/tree/2.6.1"
  1163. },
  1164. "funding": [
  1165. {
  1166. "url": "https://github.com/GrahamCampbell",
  1167. "type": "github"
  1168. },
  1169. {
  1170. "url": "https://github.com/Nyholm",
  1171. "type": "github"
  1172. },
  1173. {
  1174. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1175. "type": "tidelift"
  1176. }
  1177. ],
  1178. "time": "2023-08-27T10:13:57+00:00"
  1179. },
  1180. {
  1181. "name": "http-interop/http-factory-guzzle",
  1182. "version": "1.2.0",
  1183. "source": {
  1184. "type": "git",
  1185. "url": "https://github.com/http-interop/http-factory-guzzle.git",
  1186. "reference": "8f06e92b95405216b237521cc64c804dd44c4a81"
  1187. },
  1188. "dist": {
  1189. "type": "zip",
  1190. "url": "https://api.github.com/repos/http-interop/http-factory-guzzle/zipball/8f06e92b95405216b237521cc64c804dd44c4a81",
  1191. "reference": "8f06e92b95405216b237521cc64c804dd44c4a81",
  1192. "shasum": ""
  1193. },
  1194. "require": {
  1195. "guzzlehttp/psr7": "^1.7||^2.0",
  1196. "php": ">=7.3",
  1197. "psr/http-factory": "^1.0"
  1198. },
  1199. "provide": {
  1200. "psr/http-factory-implementation": "^1.0"
  1201. },
  1202. "require-dev": {
  1203. "http-interop/http-factory-tests": "^0.9",
  1204. "phpunit/phpunit": "^9.5"
  1205. },
  1206. "suggest": {
  1207. "guzzlehttp/psr7": "Includes an HTTP factory starting in version 2.0"
  1208. },
  1209. "type": "library",
  1210. "autoload": {
  1211. "psr-4": {
  1212. "Http\\Factory\\Guzzle\\": "src/"
  1213. }
  1214. },
  1215. "notification-url": "https://packagist.org/downloads/",
  1216. "license": [
  1217. "MIT"
  1218. ],
  1219. "authors": [
  1220. {
  1221. "name": "PHP-FIG",
  1222. "homepage": "http://www.php-fig.org/"
  1223. }
  1224. ],
  1225. "description": "An HTTP Factory using Guzzle PSR7",
  1226. "keywords": [
  1227. "factory",
  1228. "http",
  1229. "psr-17",
  1230. "psr-7"
  1231. ],
  1232. "support": {
  1233. "issues": "https://github.com/http-interop/http-factory-guzzle/issues",
  1234. "source": "https://github.com/http-interop/http-factory-guzzle/tree/1.2.0"
  1235. },
  1236. "time": "2021-07-21T13:50:14+00:00"
  1237. },
  1238. {
  1239. "name": "illuminate/collections",
  1240. "version": "v10.22.0",
  1241. "source": {
  1242. "type": "git",
  1243. "url": "https://github.com/illuminate/collections.git",
  1244. "reference": "f494398dbaaead9e5ff16a18002d11634e8358e6"
  1245. },
  1246. "dist": {
  1247. "type": "zip",
  1248. "url": "https://api.github.com/repos/illuminate/collections/zipball/f494398dbaaead9e5ff16a18002d11634e8358e6",
  1249. "reference": "f494398dbaaead9e5ff16a18002d11634e8358e6",
  1250. "shasum": ""
  1251. },
  1252. "require": {
  1253. "illuminate/conditionable": "^10.0",
  1254. "illuminate/contracts": "^10.0",
  1255. "illuminate/macroable": "^10.0",
  1256. "php": "^8.1"
  1257. },
  1258. "suggest": {
  1259. "symfony/var-dumper": "Required to use the dump method (^6.2)."
  1260. },
  1261. "type": "library",
  1262. "extra": {
  1263. "branch-alias": {
  1264. "dev-master": "10.x-dev"
  1265. }
  1266. },
  1267. "autoload": {
  1268. "files": [
  1269. "helpers.php"
  1270. ],
  1271. "psr-4": {
  1272. "Illuminate\\Support\\": ""
  1273. }
  1274. },
  1275. "notification-url": "https://packagist.org/downloads/",
  1276. "license": [
  1277. "MIT"
  1278. ],
  1279. "authors": [
  1280. {
  1281. "name": "Taylor Otwell",
  1282. "email": "[email protected]"
  1283. }
  1284. ],
  1285. "description": "The Illuminate Collections package.",
  1286. "homepage": "https://laravel.com",
  1287. "support": {
  1288. "issues": "https://github.com/laravel/framework/issues",
  1289. "source": "https://github.com/laravel/framework"
  1290. },
  1291. "time": "2023-08-11T14:48:51+00:00"
  1292. },
  1293. {
  1294. "name": "illuminate/conditionable",
  1295. "version": "v10.22.0",
  1296. "source": {
  1297. "type": "git",
  1298. "url": "https://github.com/illuminate/conditionable.git",
  1299. "reference": "d0958e4741fc9d6f516a552060fd1b829a85e009"
  1300. },
  1301. "dist": {
  1302. "type": "zip",
  1303. "url": "https://api.github.com/repos/illuminate/conditionable/zipball/d0958e4741fc9d6f516a552060fd1b829a85e009",
  1304. "reference": "d0958e4741fc9d6f516a552060fd1b829a85e009",
  1305. "shasum": ""
  1306. },
  1307. "require": {
  1308. "php": "^8.0.2"
  1309. },
  1310. "type": "library",
  1311. "extra": {
  1312. "branch-alias": {
  1313. "dev-master": "10.x-dev"
  1314. }
  1315. },
  1316. "autoload": {
  1317. "psr-4": {
  1318. "Illuminate\\Support\\": ""
  1319. }
  1320. },
  1321. "notification-url": "https://packagist.org/downloads/",
  1322. "license": [
  1323. "MIT"
  1324. ],
  1325. "authors": [
  1326. {
  1327. "name": "Taylor Otwell",
  1328. "email": "[email protected]"
  1329. }
  1330. ],
  1331. "description": "The Illuminate Conditionable package.",
  1332. "homepage": "https://laravel.com",
  1333. "support": {
  1334. "issues": "https://github.com/laravel/framework/issues",
  1335. "source": "https://github.com/laravel/framework"
  1336. },
  1337. "time": "2023-02-03T08:06:17+00:00"
  1338. },
  1339. {
  1340. "name": "illuminate/container",
  1341. "version": "v10.22.0",
  1342. "source": {
  1343. "type": "git",
  1344. "url": "https://github.com/illuminate/container.git",
  1345. "reference": "ddc26273085fad3c471b2602ad820e0097ff7939"
  1346. },
  1347. "dist": {
  1348. "type": "zip",
  1349. "url": "https://api.github.com/repos/illuminate/container/zipball/ddc26273085fad3c471b2602ad820e0097ff7939",
  1350. "reference": "ddc26273085fad3c471b2602ad820e0097ff7939",
  1351. "shasum": ""
  1352. },
  1353. "require": {
  1354. "illuminate/contracts": "^10.0",
  1355. "php": "^8.1",
  1356. "psr/container": "^1.1.1|^2.0.1"
  1357. },
  1358. "provide": {
  1359. "psr/container-implementation": "1.1|2.0"
  1360. },
  1361. "type": "library",
  1362. "extra": {
  1363. "branch-alias": {
  1364. "dev-master": "10.x-dev"
  1365. }
  1366. },
  1367. "autoload": {
  1368. "psr-4": {
  1369. "Illuminate\\Container\\": ""
  1370. }
  1371. },
  1372. "notification-url": "https://packagist.org/downloads/",
  1373. "license": [
  1374. "MIT"
  1375. ],
  1376. "authors": [
  1377. {
  1378. "name": "Taylor Otwell",
  1379. "email": "[email protected]"
  1380. }
  1381. ],
  1382. "description": "The Illuminate Container package.",
  1383. "homepage": "https://laravel.com",
  1384. "support": {
  1385. "issues": "https://github.com/laravel/framework/issues",
  1386. "source": "https://github.com/laravel/framework"
  1387. },
  1388. "time": "2023-06-18T09:12:03+00:00"
  1389. },
  1390. {
  1391. "name": "illuminate/contracts",
  1392. "version": "v10.22.0",
  1393. "source": {
  1394. "type": "git",
  1395. "url": "https://github.com/illuminate/contracts.git",
  1396. "reference": "eb1a7e72e159136a832f2c0467de5570bdc208ae"
  1397. },
  1398. "dist": {
  1399. "type": "zip",
  1400. "url": "https://api.github.com/repos/illuminate/contracts/zipball/eb1a7e72e159136a832f2c0467de5570bdc208ae",
  1401. "reference": "eb1a7e72e159136a832f2c0467de5570bdc208ae",
  1402. "shasum": ""
  1403. },
  1404. "require": {
  1405. "php": "^8.1",
  1406. "psr/container": "^1.1.1|^2.0.1",
  1407. "psr/simple-cache": "^1.0|^2.0|^3.0"
  1408. },
  1409. "type": "library",
  1410. "extra": {
  1411. "branch-alias": {
  1412. "dev-master": "10.x-dev"
  1413. }
  1414. },
  1415. "autoload": {
  1416. "psr-4": {
  1417. "Illuminate\\Contracts\\": ""
  1418. }
  1419. },
  1420. "notification-url": "https://packagist.org/downloads/",
  1421. "license": [
  1422. "MIT"
  1423. ],
  1424. "authors": [
  1425. {
  1426. "name": "Taylor Otwell",
  1427. "email": "[email protected]"
  1428. }
  1429. ],
  1430. "description": "The Illuminate Contracts package.",
  1431. "homepage": "https://laravel.com",
  1432. "support": {
  1433. "issues": "https://github.com/laravel/framework/issues",
  1434. "source": "https://github.com/laravel/framework"
  1435. },
  1436. "time": "2023-07-26T21:27:34+00:00"
  1437. },
  1438. {
  1439. "name": "illuminate/database",
  1440. "version": "v10.22.0",
  1441. "source": {
  1442. "type": "git",
  1443. "url": "https://github.com/illuminate/database.git",
  1444. "reference": "41511347b8b74ef80b4e01d2b64d2b4a4263658a"
  1445. },
  1446. "dist": {
  1447. "type": "zip",
  1448. "url": "https://api.github.com/repos/illuminate/database/zipball/41511347b8b74ef80b4e01d2b64d2b4a4263658a",
  1449. "reference": "41511347b8b74ef80b4e01d2b64d2b4a4263658a",
  1450. "shasum": ""
  1451. },
  1452. "require": {
  1453. "brick/math": "^0.9.3|^0.10.2|^0.11",
  1454. "ext-pdo": "*",
  1455. "illuminate/collections": "^10.0",
  1456. "illuminate/container": "^10.0",
  1457. "illuminate/contracts": "^10.0",
  1458. "illuminate/macroable": "^10.0",
  1459. "illuminate/support": "^10.0",
  1460. "php": "^8.1"
  1461. },
  1462. "suggest": {
  1463. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^3.5.1).",
  1464. "ext-filter": "Required to use the Postgres database driver.",
  1465. "fakerphp/faker": "Required to use the eloquent factory builder (^1.21).",
  1466. "illuminate/console": "Required to use the database commands (^10.0).",
  1467. "illuminate/events": "Required to use the observers with Eloquent (^10.0).",
  1468. "illuminate/filesystem": "Required to use the migrations (^10.0).",
  1469. "illuminate/pagination": "Required to paginate the result set (^10.0).",
  1470. "symfony/finder": "Required to use Eloquent model factories (^6.2)."
  1471. },
  1472. "type": "library",
  1473. "extra": {
  1474. "branch-alias": {
  1475. "dev-master": "10.x-dev"
  1476. }
  1477. },
  1478. "autoload": {
  1479. "psr-4": {
  1480. "Illuminate\\Database\\": ""
  1481. }
  1482. },
  1483. "notification-url": "https://packagist.org/downloads/",
  1484. "license": [
  1485. "MIT"
  1486. ],
  1487. "authors": [
  1488. {
  1489. "name": "Taylor Otwell",
  1490. "email": "[email protected]"
  1491. }
  1492. ],
  1493. "description": "The Illuminate Database package.",
  1494. "homepage": "https://laravel.com",
  1495. "keywords": [
  1496. "database",
  1497. "laravel",
  1498. "orm",
  1499. "sql"
  1500. ],
  1501. "support": {
  1502. "issues": "https://github.com/laravel/framework/issues",
  1503. "source": "https://github.com/laravel/framework"
  1504. },
  1505. "time": "2023-09-04T14:22:40+00:00"
  1506. },
  1507. {
  1508. "name": "illuminate/macroable",
  1509. "version": "v10.22.0",
  1510. "source": {
  1511. "type": "git",
  1512. "url": "https://github.com/illuminate/macroable.git",
  1513. "reference": "dff667a46ac37b634dcf68909d9d41e94dc97c27"
  1514. },
  1515. "dist": {
  1516. "type": "zip",
  1517. "url": "https://api.github.com/repos/illuminate/macroable/zipball/dff667a46ac37b634dcf68909d9d41e94dc97c27",
  1518. "reference": "dff667a46ac37b634dcf68909d9d41e94dc97c27",
  1519. "shasum": ""
  1520. },
  1521. "require": {
  1522. "php": "^8.1"
  1523. },
  1524. "type": "library",
  1525. "extra": {
  1526. "branch-alias": {
  1527. "dev-master": "10.x-dev"
  1528. }
  1529. },
  1530. "autoload": {
  1531. "psr-4": {
  1532. "Illuminate\\Support\\": ""
  1533. }
  1534. },
  1535. "notification-url": "https://packagist.org/downloads/",
  1536. "license": [
  1537. "MIT"
  1538. ],
  1539. "authors": [
  1540. {
  1541. "name": "Taylor Otwell",
  1542. "email": "[email protected]"
  1543. }
  1544. ],
  1545. "description": "The Illuminate Macroable package.",
  1546. "homepage": "https://laravel.com",
  1547. "support": {
  1548. "issues": "https://github.com/laravel/framework/issues",
  1549. "source": "https://github.com/laravel/framework"
  1550. },
  1551. "time": "2023-06-05T12:46:42+00:00"
  1552. },
  1553. {
  1554. "name": "illuminate/pagination",
  1555. "version": "v10.22.0",
  1556. "source": {
  1557. "type": "git",
  1558. "url": "https://github.com/illuminate/pagination.git",
  1559. "reference": "2af69e712297cc38377593a72f00d430867e8bdc"
  1560. },
  1561. "dist": {
  1562. "type": "zip",
  1563. "url": "https://api.github.com/repos/illuminate/pagination/zipball/2af69e712297cc38377593a72f00d430867e8bdc",
  1564. "reference": "2af69e712297cc38377593a72f00d430867e8bdc",
  1565. "shasum": ""
  1566. },
  1567. "require": {
  1568. "ext-filter": "*",
  1569. "illuminate/collections": "^10.0",
  1570. "illuminate/contracts": "^10.0",
  1571. "illuminate/support": "^10.0",
  1572. "php": "^8.1"
  1573. },
  1574. "type": "library",
  1575. "extra": {
  1576. "branch-alias": {
  1577. "dev-master": "10.x-dev"
  1578. }
  1579. },
  1580. "autoload": {
  1581. "psr-4": {
  1582. "Illuminate\\Pagination\\": ""
  1583. }
  1584. },
  1585. "notification-url": "https://packagist.org/downloads/",
  1586. "license": [
  1587. "MIT"
  1588. ],
  1589. "authors": [
  1590. {
  1591. "name": "Taylor Otwell",
  1592. "email": "[email protected]"
  1593. }
  1594. ],
  1595. "description": "The Illuminate Pagination package.",
  1596. "homepage": "https://laravel.com",
  1597. "support": {
  1598. "issues": "https://github.com/laravel/framework/issues",
  1599. "source": "https://github.com/laravel/framework"
  1600. },
  1601. "time": "2023-04-17T16:01:53+00:00"
  1602. },
  1603. {
  1604. "name": "illuminate/support",
  1605. "version": "v10.22.0",
  1606. "source": {
  1607. "type": "git",
  1608. "url": "https://github.com/illuminate/support.git",
  1609. "reference": "7ff0d0d70a7b8275816398a88870e062a01ebb8b"
  1610. },
  1611. "dist": {
  1612. "type": "zip",
  1613. "url": "https://api.github.com/repos/illuminate/support/zipball/7ff0d0d70a7b8275816398a88870e062a01ebb8b",
  1614. "reference": "7ff0d0d70a7b8275816398a88870e062a01ebb8b",
  1615. "shasum": ""
  1616. },
  1617. "require": {
  1618. "doctrine/inflector": "^2.0",
  1619. "ext-ctype": "*",
  1620. "ext-filter": "*",
  1621. "ext-mbstring": "*",
  1622. "illuminate/collections": "^10.0",
  1623. "illuminate/conditionable": "^10.0",
  1624. "illuminate/contracts": "^10.0",
  1625. "illuminate/macroable": "^10.0",
  1626. "nesbot/carbon": "^2.67",
  1627. "php": "^8.1",
  1628. "voku/portable-ascii": "^2.0"
  1629. },
  1630. "conflict": {
  1631. "tightenco/collect": "<5.5.33"
  1632. },
  1633. "suggest": {
  1634. "illuminate/filesystem": "Required to use the composer class (^10.0).",
  1635. "league/commonmark": "Required to use Str::markdown() and Stringable::markdown() (^2.0.2).",
  1636. "ramsey/uuid": "Required to use Str::uuid() (^4.7).",
  1637. "symfony/process": "Required to use the composer class (^6.2).",
  1638. "symfony/uid": "Required to use Str::ulid() (^6.2).",
  1639. "symfony/var-dumper": "Required to use the dd function (^6.2).",
  1640. "vlucas/phpdotenv": "Required to use the Env class and env helper (^5.4.1)."
  1641. },
  1642. "type": "library",
  1643. "extra": {
  1644. "branch-alias": {
  1645. "dev-master": "10.x-dev"
  1646. }
  1647. },
  1648. "autoload": {
  1649. "files": [
  1650. "helpers.php"
  1651. ],
  1652. "psr-4": {
  1653. "Illuminate\\Support\\": ""
  1654. }
  1655. },
  1656. "notification-url": "https://packagist.org/downloads/",
  1657. "license": [
  1658. "MIT"
  1659. ],
  1660. "authors": [
  1661. {
  1662. "name": "Taylor Otwell",
  1663. "email": "[email protected]"
  1664. }
  1665. ],
  1666. "description": "The Illuminate Support package.",
  1667. "homepage": "https://laravel.com",
  1668. "support": {
  1669. "issues": "https://github.com/laravel/framework/issues",
  1670. "source": "https://github.com/laravel/framework"
  1671. },
  1672. "time": "2023-09-04T15:58:19+00:00"
  1673. },
  1674. {
  1675. "name": "irazasyed/telegram-bot-sdk",
  1676. "version": "v3.13.0",
  1677. "source": {
  1678. "type": "git",
  1679. "url": "https://github.com/irazasyed/telegram-bot-sdk.git",
  1680. "reference": "31a71aef80fd328bfe0084738cc3b51cc49867f4"
  1681. },
  1682. "dist": {
  1683. "type": "zip",
  1684. "url": "https://api.github.com/repos/irazasyed/telegram-bot-sdk/zipball/31a71aef80fd328bfe0084738cc3b51cc49867f4",
  1685. "reference": "31a71aef80fd328bfe0084738cc3b51cc49867f4",
  1686. "shasum": ""
  1687. },
  1688. "require": {
  1689. "ext-json": "*",
  1690. "guzzlehttp/guzzle": "^7.5.1",
  1691. "guzzlehttp/psr7": "^2.5",
  1692. "illuminate/support": "9 - 10",
  1693. "league/event": "^2.2 || ^3.0",
  1694. "php": ">=8.0",
  1695. "psr/container": "^2.0",
  1696. "psr/event-dispatcher": "^1.0"
  1697. },
  1698. "require-dev": {
  1699. "irazasyed/docgen": "^0.2",
  1700. "pestphp/pest": "^1.22 || ^2.0",
  1701. "php-parallel-lint/php-parallel-lint": "^1.3",
  1702. "phpspec/prophecy": "^1.17",
  1703. "phpspec/prophecy-phpunit": "^2.0",
  1704. "rector/rector": "^0.16.0"
  1705. },
  1706. "suggest": {
  1707. "illuminate/container": "Hold dependencies to be injected in commands constructors",
  1708. "irazasyed/larasupport": "Allows you to use any Laravel Package in Lumen by adding support!"
  1709. },
  1710. "type": "library",
  1711. "extra": {
  1712. "branch-alias": {
  1713. "dev-master": "3.0-dev"
  1714. },
  1715. "laravel": {
  1716. "aliases": {
  1717. "Telegram": "Telegram\\Bot\\Laravel\\Facades\\Telegram"
  1718. },
  1719. "providers": [
  1720. "Telegram\\Bot\\Laravel\\TelegramServiceProvider"
  1721. ]
  1722. }
  1723. },
  1724. "autoload": {
  1725. "psr-4": {
  1726. "Telegram\\Bot\\": "src/"
  1727. }
  1728. },
  1729. "notification-url": "https://packagist.org/downloads/",
  1730. "license": [
  1731. "BSD-3-Clause"
  1732. ],
  1733. "authors": [
  1734. {
  1735. "name": "Irfaq Syed",
  1736. "email": "[email protected]",
  1737. "homepage": "https://github.com/irazasyed"
  1738. }
  1739. ],
  1740. "description": "The Unofficial Telegram Bot API PHP SDK",
  1741. "homepage": "https://github.com/irazasyed/telegram-bot-sdk",
  1742. "keywords": [
  1743. "laravel",
  1744. "laravel telegram",
  1745. "telegram",
  1746. "telegram bot",
  1747. "telegram bot api",
  1748. "telegram php",
  1749. "telegram sdk"
  1750. ],
  1751. "support": {
  1752. "issues": "https://github.com/irazasyed/telegram-bot-sdk/issues",
  1753. "source": "https://github.com/irazasyed/telegram-bot-sdk/tree/v3.13.0"
  1754. },
  1755. "time": "2023-05-28T19:57:36+00:00"
  1756. },
  1757. {
  1758. "name": "jean85/pretty-package-versions",
  1759. "version": "2.0.5",
  1760. "source": {
  1761. "type": "git",
  1762. "url": "https://github.com/Jean85/pretty-package-versions.git",
  1763. "reference": "ae547e455a3d8babd07b96966b17d7fd21d9c6af"
  1764. },
  1765. "dist": {
  1766. "type": "zip",
  1767. "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/ae547e455a3d8babd07b96966b17d7fd21d9c6af",
  1768. "reference": "ae547e455a3d8babd07b96966b17d7fd21d9c6af",
  1769. "shasum": ""
  1770. },
  1771. "require": {
  1772. "composer-runtime-api": "^2.0.0",
  1773. "php": "^7.1|^8.0"
  1774. },
  1775. "require-dev": {
  1776. "friendsofphp/php-cs-fixer": "^2.17",
  1777. "jean85/composer-provided-replaced-stub-package": "^1.0",
  1778. "phpstan/phpstan": "^0.12.66",
  1779. "phpunit/phpunit": "^7.5|^8.5|^9.4",
  1780. "vimeo/psalm": "^4.3"
  1781. },
  1782. "type": "library",
  1783. "extra": {
  1784. "branch-alias": {
  1785. "dev-master": "1.x-dev"
  1786. }
  1787. },
  1788. "autoload": {
  1789. "psr-4": {
  1790. "Jean85\\": "src/"
  1791. }
  1792. },
  1793. "notification-url": "https://packagist.org/downloads/",
  1794. "license": [
  1795. "MIT"
  1796. ],
  1797. "authors": [
  1798. {
  1799. "name": "Alessandro Lai",
  1800. "email": "[email protected]"
  1801. }
  1802. ],
  1803. "description": "A library to get pretty versions strings of installed dependencies",
  1804. "keywords": [
  1805. "composer",
  1806. "package",
  1807. "release",
  1808. "versions"
  1809. ],
  1810. "support": {
  1811. "issues": "https://github.com/Jean85/pretty-package-versions/issues",
  1812. "source": "https://github.com/Jean85/pretty-package-versions/tree/2.0.5"
  1813. },
  1814. "time": "2021-10-08T21:21:46+00:00"
  1815. },
  1816. {
  1817. "name": "khanamiryan/qrcode-detector-decoder",
  1818. "version": "2.0.2",
  1819. "source": {
  1820. "type": "git",
  1821. "url": "https://github.com/khanamiryan/php-qrcode-detector-decoder.git",
  1822. "reference": "8d53cbecaa32f1e56a3be58bb3055ac31774ecd0"
  1823. },
  1824. "dist": {
  1825. "type": "zip",
  1826. "url": "https://api.github.com/repos/khanamiryan/php-qrcode-detector-decoder/zipball/8d53cbecaa32f1e56a3be58bb3055ac31774ecd0",
  1827. "reference": "8d53cbecaa32f1e56a3be58bb3055ac31774ecd0",
  1828. "shasum": ""
  1829. },
  1830. "require": {
  1831. "php": ">=8.1"
  1832. },
  1833. "require-dev": {
  1834. "phpunit/phpunit": "^7.5 | ^8.0 | ^9.0",
  1835. "rector/rector": "^0.13.6",
  1836. "symplify/easy-coding-standard": "^11.0",
  1837. "vimeo/psalm": "^4.24"
  1838. },
  1839. "type": "library",
  1840. "autoload": {
  1841. "files": [
  1842. "lib/Common/customFunctions.php"
  1843. ],
  1844. "psr-4": {
  1845. "Zxing\\": "lib/"
  1846. }
  1847. },
  1848. "notification-url": "https://packagist.org/downloads/",
  1849. "license": [
  1850. "MIT",
  1851. "Apache-2.0"
  1852. ],
  1853. "authors": [
  1854. {
  1855. "name": "Ashot Khanamiryan",
  1856. "email": "[email protected]",
  1857. "homepage": "https://github.com/khanamiryan",
  1858. "role": "Developer"
  1859. }
  1860. ],
  1861. "description": "QR code decoder / reader",
  1862. "homepage": "https://github.com/khanamiryan/php-qrcode-detector-decoder/",
  1863. "keywords": [
  1864. "barcode",
  1865. "qr",
  1866. "zxing"
  1867. ],
  1868. "support": {
  1869. "issues": "https://github.com/khanamiryan/php-qrcode-detector-decoder/issues",
  1870. "source": "https://github.com/khanamiryan/php-qrcode-detector-decoder/tree/2.0.2"
  1871. },
  1872. "time": "2022-11-17T10:54:53+00:00"
  1873. },
  1874. {
  1875. "name": "lcobucci/jwt",
  1876. "version": "5.0.0",
  1877. "source": {
  1878. "type": "git",
  1879. "url": "https://github.com/lcobucci/jwt.git",
  1880. "reference": "47bdb0e0b5d00c2f89ebe33e7e384c77e84e7c34"
  1881. },
  1882. "dist": {
  1883. "type": "zip",
  1884. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/47bdb0e0b5d00c2f89ebe33e7e384c77e84e7c34",
  1885. "reference": "47bdb0e0b5d00c2f89ebe33e7e384c77e84e7c34",
  1886. "shasum": ""
  1887. },
  1888. "require": {
  1889. "ext-hash": "*",
  1890. "ext-json": "*",
  1891. "ext-openssl": "*",
  1892. "ext-sodium": "*",
  1893. "php": "~8.1.0 || ~8.2.0",
  1894. "psr/clock": "^1.0"
  1895. },
  1896. "require-dev": {
  1897. "infection/infection": "^0.26.19",
  1898. "lcobucci/clock": "^3.0",
  1899. "lcobucci/coding-standard": "^9.0",
  1900. "phpbench/phpbench": "^1.2.8",
  1901. "phpstan/extension-installer": "^1.2",
  1902. "phpstan/phpstan": "^1.10.3",
  1903. "phpstan/phpstan-deprecation-rules": "^1.1.2",
  1904. "phpstan/phpstan-phpunit": "^1.3.8",
  1905. "phpstan/phpstan-strict-rules": "^1.5.0",
  1906. "phpunit/phpunit": "^10.0.12"
  1907. },
  1908. "suggest": {
  1909. "lcobucci/clock": ">= 3.0"
  1910. },
  1911. "type": "library",
  1912. "autoload": {
  1913. "psr-4": {
  1914. "Lcobucci\\JWT\\": "src"
  1915. }
  1916. },
  1917. "notification-url": "https://packagist.org/downloads/",
  1918. "license": [
  1919. "BSD-3-Clause"
  1920. ],
  1921. "authors": [
  1922. {
  1923. "name": "Luís Cobucci",
  1924. "email": "[email protected]",
  1925. "role": "Developer"
  1926. }
  1927. ],
  1928. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  1929. "keywords": [
  1930. "JWS",
  1931. "jwt"
  1932. ],
  1933. "support": {
  1934. "issues": "https://github.com/lcobucci/jwt/issues",
  1935. "source": "https://github.com/lcobucci/jwt/tree/5.0.0"
  1936. },
  1937. "funding": [
  1938. {
  1939. "url": "https://github.com/lcobucci",
  1940. "type": "github"
  1941. },
  1942. {
  1943. "url": "https://www.patreon.com/lcobucci",
  1944. "type": "patreon"
  1945. }
  1946. ],
  1947. "time": "2023-02-25T21:35:16+00:00"
  1948. },
  1949. {
  1950. "name": "league/event",
  1951. "version": "3.0.2",
  1952. "source": {
  1953. "type": "git",
  1954. "url": "https://github.com/thephpleague/event.git",
  1955. "reference": "221867a61087ee265ca07bd39aa757879afca820"
  1956. },
  1957. "dist": {
  1958. "type": "zip",
  1959. "url": "https://api.github.com/repos/thephpleague/event/zipball/221867a61087ee265ca07bd39aa757879afca820",
  1960. "reference": "221867a61087ee265ca07bd39aa757879afca820",
  1961. "shasum": ""
  1962. },
  1963. "require": {
  1964. "php": ">=7.2.0",
  1965. "psr/event-dispatcher": "^1.0"
  1966. },
  1967. "provide": {
  1968. "psr/event-dispatcher-implementation": "1.0"
  1969. },
  1970. "require-dev": {
  1971. "friendsofphp/php-cs-fixer": "^2.16",
  1972. "phpstan/phpstan": "^0.12.45",
  1973. "phpunit/phpunit": "^8.5"
  1974. },
  1975. "type": "library",
  1976. "extra": {
  1977. "branch-alias": {
  1978. "dev-master": "3.0-dev"
  1979. }
  1980. },
  1981. "autoload": {
  1982. "psr-4": {
  1983. "League\\Event\\": "src/"
  1984. }
  1985. },
  1986. "notification-url": "https://packagist.org/downloads/",
  1987. "license": [
  1988. "MIT"
  1989. ],
  1990. "authors": [
  1991. {
  1992. "name": "Frank de Jonge",
  1993. "email": "[email protected]"
  1994. }
  1995. ],
  1996. "description": "Event package",
  1997. "keywords": [
  1998. "emitter",
  1999. "event",
  2000. "listener"
  2001. ],
  2002. "support": {
  2003. "issues": "https://github.com/thephpleague/event/issues",
  2004. "source": "https://github.com/thephpleague/event/tree/3.0.2"
  2005. },
  2006. "time": "2022-10-29T09:31:25+00:00"
  2007. },
  2008. {
  2009. "name": "league/omnipay",
  2010. "version": "v3.2.1",
  2011. "source": {
  2012. "type": "git",
  2013. "url": "https://github.com/thephpleague/omnipay.git",
  2014. "reference": "38f66a0cc043ed51d6edf7956d6439a2f263501f"
  2015. },
  2016. "dist": {
  2017. "type": "zip",
  2018. "url": "https://api.github.com/repos/thephpleague/omnipay/zipball/38f66a0cc043ed51d6edf7956d6439a2f263501f",
  2019. "reference": "38f66a0cc043ed51d6edf7956d6439a2f263501f",
  2020. "shasum": ""
  2021. },
  2022. "require": {
  2023. "omnipay/common": "^3.1",
  2024. "php": "^7.2|^8.0",
  2025. "php-http/discovery": "^1.14",
  2026. "php-http/guzzle7-adapter": "^1"
  2027. },
  2028. "require-dev": {
  2029. "omnipay/tests": "^3|^4"
  2030. },
  2031. "type": "metapackage",
  2032. "extra": {
  2033. "branch-alias": {
  2034. "dev-master": "3.2.x-dev"
  2035. }
  2036. },
  2037. "notification-url": "https://packagist.org/downloads/",
  2038. "license": [
  2039. "MIT"
  2040. ],
  2041. "authors": [
  2042. {
  2043. "name": "Adrian Macneil",
  2044. "email": "[email protected]"
  2045. },
  2046. {
  2047. "name": "Barry vd. Heuvel",
  2048. "email": "[email protected]"
  2049. }
  2050. ],
  2051. "description": "Omnipay payment processing library",
  2052. "homepage": "https://omnipay.thephpleague.com/",
  2053. "keywords": [
  2054. "checkout",
  2055. "creditcard",
  2056. "omnipay",
  2057. "payment"
  2058. ],
  2059. "support": {
  2060. "issues": "https://github.com/thephpleague/omnipay/issues",
  2061. "source": "https://github.com/thephpleague/omnipay/tree/v3.2.1"
  2062. },
  2063. "funding": [
  2064. {
  2065. "url": "https://github.com/barryvdh",
  2066. "type": "github"
  2067. }
  2068. ],
  2069. "time": "2021-06-05T11:34:12+00:00"
  2070. },
  2071. {
  2072. "name": "mailgun/mailgun-php",
  2073. "version": "v3.6.0",
  2074. "source": {
  2075. "type": "git",
  2076. "url": "https://github.com/mailgun/mailgun-php.git",
  2077. "reference": "02d8b5c7e082a64fb8e9bf9aea557501bf69fa41"
  2078. },
  2079. "dist": {
  2080. "type": "zip",
  2081. "url": "https://api.github.com/repos/mailgun/mailgun-php/zipball/02d8b5c7e082a64fb8e9bf9aea557501bf69fa41",
  2082. "reference": "02d8b5c7e082a64fb8e9bf9aea557501bf69fa41",
  2083. "shasum": ""
  2084. },
  2085. "require": {
  2086. "php": "^7.3 || ^8.0",
  2087. "php-http/client-common": "^2.2.1",
  2088. "php-http/discovery": "^1.9.1",
  2089. "php-http/multipart-stream-builder": "^1.1.2",
  2090. "psr/http-client": "^1.0.1",
  2091. "webmozart/assert": "^1.9.1"
  2092. },
  2093. "require-dev": {
  2094. "nyholm/nsa": "^1.2.1",
  2095. "nyholm/psr7": "^1.3.1",
  2096. "phpunit/phpunit": "^9.3",
  2097. "squizlabs/php_codesniffer": "^3.7",
  2098. "symfony/http-client": "^5.3"
  2099. },
  2100. "suggest": {
  2101. "nyholm/psr7": "PSR-7 message implementation",
  2102. "symfony/http-client": "HTTP client"
  2103. },
  2104. "type": "library",
  2105. "extra": {
  2106. "branch-alias": {
  2107. "dev-master": "3.0-dev"
  2108. }
  2109. },
  2110. "autoload": {
  2111. "psr-4": {
  2112. "Mailgun\\": "src/"
  2113. }
  2114. },
  2115. "notification-url": "https://packagist.org/downloads/",
  2116. "license": [
  2117. "MIT"
  2118. ],
  2119. "authors": [
  2120. {
  2121. "name": "Travis Swientek",
  2122. "email": "[email protected]"
  2123. }
  2124. ],
  2125. "description": "The Mailgun SDK provides methods for all API functions.",
  2126. "support": {
  2127. "issues": "https://github.com/mailgun/mailgun-php/issues",
  2128. "source": "https://github.com/mailgun/mailgun-php/tree/v3.6.0"
  2129. },
  2130. "time": "2023-08-13T13:48:52+00:00"
  2131. },
  2132. {
  2133. "name": "maxmind-db/reader",
  2134. "version": "v1.11.0",
  2135. "source": {
  2136. "type": "git",
  2137. "url": "https://github.com/maxmind/MaxMind-DB-Reader-php.git",
  2138. "reference": "b1f3c0699525336d09cc5161a2861268d9f2ae5b"
  2139. },
  2140. "dist": {
  2141. "type": "zip",
  2142. "url": "https://api.github.com/repos/maxmind/MaxMind-DB-Reader-php/zipball/b1f3c0699525336d09cc5161a2861268d9f2ae5b",
  2143. "reference": "b1f3c0699525336d09cc5161a2861268d9f2ae5b",
  2144. "shasum": ""
  2145. },
  2146. "require": {
  2147. "php": ">=7.2"
  2148. },
  2149. "conflict": {
  2150. "ext-maxminddb": "<1.10.1,>=2.0.0"
  2151. },
  2152. "require-dev": {
  2153. "friendsofphp/php-cs-fixer": "3.*",
  2154. "php-coveralls/php-coveralls": "^2.1",
  2155. "phpstan/phpstan": "*",
  2156. "phpunit/phpcov": ">=6.0.0",
  2157. "phpunit/phpunit": ">=8.0.0,<10.0.0",
  2158. "squizlabs/php_codesniffer": "3.*"
  2159. },
  2160. "suggest": {
  2161. "ext-bcmath": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
  2162. "ext-gmp": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
  2163. "ext-maxminddb": "A C-based database decoder that provides significantly faster lookups"
  2164. },
  2165. "type": "library",
  2166. "autoload": {
  2167. "psr-4": {
  2168. "MaxMind\\Db\\": "src/MaxMind/Db"
  2169. }
  2170. },
  2171. "notification-url": "https://packagist.org/downloads/",
  2172. "license": [
  2173. "Apache-2.0"
  2174. ],
  2175. "authors": [
  2176. {
  2177. "name": "Gregory J. Oschwald",
  2178. "email": "[email protected]",
  2179. "homepage": "https://www.maxmind.com/"
  2180. }
  2181. ],
  2182. "description": "MaxMind DB Reader API",
  2183. "homepage": "https://github.com/maxmind/MaxMind-DB-Reader-php",
  2184. "keywords": [
  2185. "database",
  2186. "geoip",
  2187. "geoip2",
  2188. "geolocation",
  2189. "maxmind"
  2190. ],
  2191. "support": {
  2192. "issues": "https://github.com/maxmind/MaxMind-DB-Reader-php/issues",
  2193. "source": "https://github.com/maxmind/MaxMind-DB-Reader-php/tree/v1.11.0"
  2194. },
  2195. "time": "2021-10-18T15:23:10+00:00"
  2196. },
  2197. {
  2198. "name": "maxmind/web-service-common",
  2199. "version": "v0.9.0",
  2200. "source": {
  2201. "type": "git",
  2202. "url": "https://github.com/maxmind/web-service-common-php.git",
  2203. "reference": "4dc5a3e8df38aea4ca3b1096cee3a038094e9b53"
  2204. },
  2205. "dist": {
  2206. "type": "zip",
  2207. "url": "https://api.github.com/repos/maxmind/web-service-common-php/zipball/4dc5a3e8df38aea4ca3b1096cee3a038094e9b53",
  2208. "reference": "4dc5a3e8df38aea4ca3b1096cee3a038094e9b53",
  2209. "shasum": ""
  2210. },
  2211. "require": {
  2212. "composer/ca-bundle": "^1.0.3",
  2213. "ext-curl": "*",
  2214. "ext-json": "*",
  2215. "php": ">=7.2"
  2216. },
  2217. "require-dev": {
  2218. "friendsofphp/php-cs-fixer": "3.*",
  2219. "phpstan/phpstan": "*",
  2220. "phpunit/phpunit": "^8.0 || ^9.0",
  2221. "squizlabs/php_codesniffer": "3.*"
  2222. },
  2223. "type": "library",
  2224. "autoload": {
  2225. "psr-4": {
  2226. "MaxMind\\Exception\\": "src/Exception",
  2227. "MaxMind\\WebService\\": "src/WebService"
  2228. }
  2229. },
  2230. "notification-url": "https://packagist.org/downloads/",
  2231. "license": [
  2232. "Apache-2.0"
  2233. ],
  2234. "authors": [
  2235. {
  2236. "name": "Gregory Oschwald",
  2237. "email": "[email protected]"
  2238. }
  2239. ],
  2240. "description": "Internal MaxMind Web Service API",
  2241. "homepage": "https://github.com/maxmind/web-service-common-php",
  2242. "support": {
  2243. "issues": "https://github.com/maxmind/web-service-common-php/issues",
  2244. "source": "https://github.com/maxmind/web-service-common-php/tree/v0.9.0"
  2245. },
  2246. "time": "2022-03-28T17:43:20+00:00"
  2247. },
  2248. {
  2249. "name": "moneyphp/money",
  2250. "version": "v4.2.0",
  2251. "source": {
  2252. "type": "git",
  2253. "url": "https://github.com/moneyphp/money.git",
  2254. "reference": "f660ab7f1d7a4c2ffdd30f50c55ed2c95c26fc3f"
  2255. },
  2256. "dist": {
  2257. "type": "zip",
  2258. "url": "https://api.github.com/repos/moneyphp/money/zipball/f660ab7f1d7a4c2ffdd30f50c55ed2c95c26fc3f",
  2259. "reference": "f660ab7f1d7a4c2ffdd30f50c55ed2c95c26fc3f",
  2260. "shasum": ""
  2261. },
  2262. "require": {
  2263. "ext-bcmath": "*",
  2264. "ext-filter": "*",
  2265. "ext-json": "*",
  2266. "php": "~8.0.0 || ~8.1.0 || ~8.2.0"
  2267. },
  2268. "require-dev": {
  2269. "cache/taggable-cache": "^1.1.0",
  2270. "doctrine/coding-standard": "^9.0",
  2271. "doctrine/instantiator": "^1.4.0",
  2272. "ext-gmp": "*",
  2273. "ext-intl": "*",
  2274. "florianv/exchanger": "^2.6.3",
  2275. "florianv/swap": "^4.3.0",
  2276. "moneyphp/crypto-currencies": "^1.0.0",
  2277. "moneyphp/iso-currencies": "^3.2.1",
  2278. "php-http/message": "^1.11.0",
  2279. "php-http/mock-client": "^1.4.1",
  2280. "phpbench/phpbench": "^1.2.5",
  2281. "phpspec/phpspec": "^7.3",
  2282. "phpunit/phpunit": "^9.5.4",
  2283. "psalm/plugin-phpunit": "^0.18.4",
  2284. "psr/cache": "^1.0.1",
  2285. "vimeo/psalm": "~5.3.0"
  2286. },
  2287. "suggest": {
  2288. "ext-gmp": "Calculate without integer limits",
  2289. "ext-intl": "Format Money objects with intl",
  2290. "florianv/exchanger": "Exchange rates library for PHP",
  2291. "florianv/swap": "Exchange rates library for PHP",
  2292. "psr/cache-implementation": "Used for Currency caching"
  2293. },
  2294. "type": "library",
  2295. "extra": {
  2296. "branch-alias": {
  2297. "dev-master": "3.x-dev"
  2298. }
  2299. },
  2300. "autoload": {
  2301. "psr-4": {
  2302. "Money\\": "src/"
  2303. }
  2304. },
  2305. "notification-url": "https://packagist.org/downloads/",
  2306. "license": [
  2307. "MIT"
  2308. ],
  2309. "authors": [
  2310. {
  2311. "name": "Mathias Verraes",
  2312. "email": "[email protected]",
  2313. "homepage": "http://verraes.net"
  2314. },
  2315. {
  2316. "name": "Márk Sági-Kazár",
  2317. "email": "[email protected]"
  2318. },
  2319. {
  2320. "name": "Frederik Bosch",
  2321. "email": "[email protected]"
  2322. }
  2323. ],
  2324. "description": "PHP implementation of Fowler's Money pattern",
  2325. "homepage": "http://moneyphp.org",
  2326. "keywords": [
  2327. "Value Object",
  2328. "money",
  2329. "vo"
  2330. ],
  2331. "support": {
  2332. "issues": "https://github.com/moneyphp/money/issues",
  2333. "source": "https://github.com/moneyphp/money/tree/v4.2.0"
  2334. },
  2335. "time": "2023-08-16T14:31:24+00:00"
  2336. },
  2337. {
  2338. "name": "mtdowling/jmespath.php",
  2339. "version": "2.7.0",
  2340. "source": {
  2341. "type": "git",
  2342. "url": "https://github.com/jmespath/jmespath.php.git",
  2343. "reference": "bbb69a935c2cbb0c03d7f481a238027430f6440b"
  2344. },
  2345. "dist": {
  2346. "type": "zip",
  2347. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/bbb69a935c2cbb0c03d7f481a238027430f6440b",
  2348. "reference": "bbb69a935c2cbb0c03d7f481a238027430f6440b",
  2349. "shasum": ""
  2350. },
  2351. "require": {
  2352. "php": "^7.2.5 || ^8.0",
  2353. "symfony/polyfill-mbstring": "^1.17"
  2354. },
  2355. "require-dev": {
  2356. "composer/xdebug-handler": "^3.0.3",
  2357. "phpunit/phpunit": "^8.5.33"
  2358. },
  2359. "bin": [
  2360. "bin/jp.php"
  2361. ],
  2362. "type": "library",
  2363. "extra": {
  2364. "branch-alias": {
  2365. "dev-master": "2.7-dev"
  2366. }
  2367. },
  2368. "autoload": {
  2369. "files": [
  2370. "src/JmesPath.php"
  2371. ],
  2372. "psr-4": {
  2373. "JmesPath\\": "src/"
  2374. }
  2375. },
  2376. "notification-url": "https://packagist.org/downloads/",
  2377. "license": [
  2378. "MIT"
  2379. ],
  2380. "authors": [
  2381. {
  2382. "name": "Graham Campbell",
  2383. "email": "[email protected]",
  2384. "homepage": "https://github.com/GrahamCampbell"
  2385. },
  2386. {
  2387. "name": "Michael Dowling",
  2388. "email": "[email protected]",
  2389. "homepage": "https://github.com/mtdowling"
  2390. }
  2391. ],
  2392. "description": "Declaratively specify how to extract elements from a JSON document",
  2393. "keywords": [
  2394. "json",
  2395. "jsonpath"
  2396. ],
  2397. "support": {
  2398. "issues": "https://github.com/jmespath/jmespath.php/issues",
  2399. "source": "https://github.com/jmespath/jmespath.php/tree/2.7.0"
  2400. },
  2401. "time": "2023-08-25T10:54:48+00:00"
  2402. },
  2403. {
  2404. "name": "nesbot/carbon",
  2405. "version": "2.70.0",
  2406. "source": {
  2407. "type": "git",
  2408. "url": "https://github.com/briannesbitt/Carbon.git",
  2409. "reference": "d3298b38ea8612e5f77d38d1a99438e42f70341d"
  2410. },
  2411. "dist": {
  2412. "type": "zip",
  2413. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/d3298b38ea8612e5f77d38d1a99438e42f70341d",
  2414. "reference": "d3298b38ea8612e5f77d38d1a99438e42f70341d",
  2415. "shasum": ""
  2416. },
  2417. "require": {
  2418. "ext-json": "*",
  2419. "php": "^7.1.8 || ^8.0",
  2420. "psr/clock": "^1.0",
  2421. "symfony/polyfill-mbstring": "^1.0",
  2422. "symfony/polyfill-php80": "^1.16",
  2423. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  2424. },
  2425. "provide": {
  2426. "psr/clock-implementation": "1.0"
  2427. },
  2428. "require-dev": {
  2429. "doctrine/dbal": "^2.0 || ^3.1.4",
  2430. "doctrine/orm": "^2.7",
  2431. "friendsofphp/php-cs-fixer": "^3.0",
  2432. "kylekatarnls/multi-tester": "^2.0",
  2433. "ondrejmirtes/better-reflection": "*",
  2434. "phpmd/phpmd": "^2.9",
  2435. "phpstan/extension-installer": "^1.0",
  2436. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  2437. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  2438. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  2439. "squizlabs/php_codesniffer": "^3.4"
  2440. },
  2441. "bin": [
  2442. "bin/carbon"
  2443. ],
  2444. "type": "library",
  2445. "extra": {
  2446. "branch-alias": {
  2447. "dev-3.x": "3.x-dev",
  2448. "dev-master": "2.x-dev"
  2449. },
  2450. "laravel": {
  2451. "providers": [
  2452. "Carbon\\Laravel\\ServiceProvider"
  2453. ]
  2454. },
  2455. "phpstan": {
  2456. "includes": [
  2457. "extension.neon"
  2458. ]
  2459. }
  2460. },
  2461. "autoload": {
  2462. "psr-4": {
  2463. "Carbon\\": "src/Carbon/"
  2464. }
  2465. },
  2466. "notification-url": "https://packagist.org/downloads/",
  2467. "license": [
  2468. "MIT"
  2469. ],
  2470. "authors": [
  2471. {
  2472. "name": "Brian Nesbitt",
  2473. "email": "[email protected]",
  2474. "homepage": "https://markido.com"
  2475. },
  2476. {
  2477. "name": "kylekatarnls",
  2478. "homepage": "https://github.com/kylekatarnls"
  2479. }
  2480. ],
  2481. "description": "An API extension for DateTime that supports 281 different languages.",
  2482. "homepage": "https://carbon.nesbot.com",
  2483. "keywords": [
  2484. "date",
  2485. "datetime",
  2486. "time"
  2487. ],
  2488. "support": {
  2489. "docs": "https://carbon.nesbot.com/docs",
  2490. "issues": "https://github.com/briannesbitt/Carbon/issues",
  2491. "source": "https://github.com/briannesbitt/Carbon"
  2492. },
  2493. "funding": [
  2494. {
  2495. "url": "https://github.com/sponsors/kylekatarnls",
  2496. "type": "github"
  2497. },
  2498. {
  2499. "url": "https://opencollective.com/Carbon#sponsor",
  2500. "type": "opencollective"
  2501. },
  2502. {
  2503. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  2504. "type": "tidelift"
  2505. }
  2506. ],
  2507. "time": "2023-09-07T16:43:50+00:00"
  2508. },
  2509. {
  2510. "name": "nikic/fast-route",
  2511. "version": "v1.3.0",
  2512. "source": {
  2513. "type": "git",
  2514. "url": "https://github.com/nikic/FastRoute.git",
  2515. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  2516. },
  2517. "dist": {
  2518. "type": "zip",
  2519. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  2520. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  2521. "shasum": ""
  2522. },
  2523. "require": {
  2524. "php": ">=5.4.0"
  2525. },
  2526. "require-dev": {
  2527. "phpunit/phpunit": "^4.8.35|~5.7"
  2528. },
  2529. "type": "library",
  2530. "autoload": {
  2531. "files": [
  2532. "src/functions.php"
  2533. ],
  2534. "psr-4": {
  2535. "FastRoute\\": "src/"
  2536. }
  2537. },
  2538. "notification-url": "https://packagist.org/downloads/",
  2539. "license": [
  2540. "BSD-3-Clause"
  2541. ],
  2542. "authors": [
  2543. {
  2544. "name": "Nikita Popov",
  2545. "email": "[email protected]"
  2546. }
  2547. ],
  2548. "description": "Fast request router for PHP",
  2549. "keywords": [
  2550. "router",
  2551. "routing"
  2552. ],
  2553. "support": {
  2554. "issues": "https://github.com/nikic/FastRoute/issues",
  2555. "source": "https://github.com/nikic/FastRoute/tree/master"
  2556. },
  2557. "time": "2018-02-13T20:26:39+00:00"
  2558. },
  2559. {
  2560. "name": "nikolaposa/rate-limit",
  2561. "version": "3.0.0",
  2562. "source": {
  2563. "type": "git",
  2564. "url": "https://github.com/nikolaposa/rate-limit.git",
  2565. "reference": "4fe2e3e13db2148b9cd4c593a4dd285668f8da38"
  2566. },
  2567. "dist": {
  2568. "type": "zip",
  2569. "url": "https://api.github.com/repos/nikolaposa/rate-limit/zipball/4fe2e3e13db2148b9cd4c593a4dd285668f8da38",
  2570. "reference": "4fe2e3e13db2148b9cd4c593a4dd285668f8da38",
  2571. "shasum": ""
  2572. },
  2573. "require": {
  2574. "beberlei/assert": "^3.2",
  2575. "php": "^7.4 || ^8.0"
  2576. },
  2577. "require-dev": {
  2578. "ext-apcu": ">=5.1.12",
  2579. "ext-redis": "*",
  2580. "friendsofphp/php-cs-fixer": "^2.17",
  2581. "phpstan/phpstan": "^0.12.10",
  2582. "phpstan/phpstan-beberlei-assert": "^0.12.2",
  2583. "phpstan/phpstan-phpunit": "^0.12.6",
  2584. "phpunit/phpunit": "^8.0",
  2585. "predis/predis": "^1.1"
  2586. },
  2587. "suggest": {
  2588. "ext-apcu": "In order to use ApcuRateLimiter",
  2589. "ext-memcached": "In order to use MemcachedRateLimiter",
  2590. "ext-redis": "In order to use RedisRateLimiter",
  2591. "predis/predis": "In order to use PredisRateLimiter"
  2592. },
  2593. "type": "library",
  2594. "extra": {
  2595. "branch-alias": {
  2596. "dev-master": "3.0.x-dev"
  2597. }
  2598. },
  2599. "autoload": {
  2600. "psr-4": {
  2601. "RateLimit\\": "src/"
  2602. }
  2603. },
  2604. "notification-url": "https://packagist.org/downloads/",
  2605. "license": [
  2606. "MIT"
  2607. ],
  2608. "authors": [
  2609. {
  2610. "name": "Nikola Poša",
  2611. "email": "[email protected]",
  2612. "homepage": "https://www.nikolaposa.in.rs"
  2613. }
  2614. ],
  2615. "description": "General purpose rate limiter implementation.",
  2616. "keywords": [
  2617. "rate limit",
  2618. "redis"
  2619. ],
  2620. "support": {
  2621. "issues": "https://github.com/nikolaposa/rate-limit/issues",
  2622. "source": "https://github.com/nikolaposa/rate-limit/tree/3.0.0"
  2623. },
  2624. "time": "2021-10-31T11:03:26+00:00"
  2625. },
  2626. {
  2627. "name": "omnipay/common",
  2628. "version": "v3.2.1",
  2629. "source": {
  2630. "type": "git",
  2631. "url": "https://github.com/thephpleague/omnipay-common.git",
  2632. "reference": "80545e9f4faab0efad36cc5f1e11a184dda22baf"
  2633. },
  2634. "dist": {
  2635. "type": "zip",
  2636. "url": "https://api.github.com/repos/thephpleague/omnipay-common/zipball/80545e9f4faab0efad36cc5f1e11a184dda22baf",
  2637. "reference": "80545e9f4faab0efad36cc5f1e11a184dda22baf",
  2638. "shasum": ""
  2639. },
  2640. "require": {
  2641. "moneyphp/money": "^3.1|^4.0.3",
  2642. "php": "^7.2|^8",
  2643. "php-http/client-implementation": "^1",
  2644. "php-http/discovery": "^1.14",
  2645. "php-http/message": "^1.5",
  2646. "php-http/message-factory": "^1.1",
  2647. "symfony/http-foundation": "^2.1|^3|^4|^5|^6"
  2648. },
  2649. "require-dev": {
  2650. "omnipay/tests": "^4.1",
  2651. "php-http/guzzle7-adapter": "^1",
  2652. "php-http/mock-client": "^1",
  2653. "squizlabs/php_codesniffer": "^3.5"
  2654. },
  2655. "suggest": {
  2656. "league/omnipay": "The default Omnipay package provides a default HTTP Adapter."
  2657. },
  2658. "type": "library",
  2659. "extra": {
  2660. "branch-alias": {
  2661. "dev-master": "3.1.x-dev"
  2662. }
  2663. },
  2664. "autoload": {
  2665. "psr-4": {
  2666. "Omnipay\\Common\\": "src/Common"
  2667. },
  2668. "classmap": [
  2669. "src/Omnipay.php"
  2670. ]
  2671. },
  2672. "notification-url": "https://packagist.org/downloads/",
  2673. "license": [
  2674. "MIT"
  2675. ],
  2676. "authors": [
  2677. {
  2678. "name": "Adrian Macneil",
  2679. "email": "[email protected]"
  2680. },
  2681. {
  2682. "name": "Barry vd. Heuvel",
  2683. "email": "[email protected]"
  2684. },
  2685. {
  2686. "name": "Jason Judge",
  2687. "email": "[email protected]"
  2688. },
  2689. {
  2690. "name": "Del"
  2691. },
  2692. {
  2693. "name": "Omnipay Contributors",
  2694. "homepage": "https://github.com/thephpleague/omnipay-common/contributors"
  2695. }
  2696. ],
  2697. "description": "Common components for Omnipay payment processing library",
  2698. "homepage": "https://github.com/thephpleague/omnipay-common",
  2699. "keywords": [
  2700. "gateway",
  2701. "merchant",
  2702. "omnipay",
  2703. "pay",
  2704. "payment",
  2705. "purchase"
  2706. ],
  2707. "support": {
  2708. "issues": "https://github.com/thephpleague/omnipay-common/issues",
  2709. "source": "https://github.com/thephpleague/omnipay-common/tree/v3.2.1"
  2710. },
  2711. "funding": [
  2712. {
  2713. "url": "https://github.com/barryvdh",
  2714. "type": "github"
  2715. }
  2716. ],
  2717. "time": "2023-05-30T12:44:03+00:00"
  2718. },
  2719. {
  2720. "name": "openai-php/client",
  2721. "version": "v0.7.3",
  2722. "source": {
  2723. "type": "git",
  2724. "url": "https://github.com/openai-php/client.git",
  2725. "reference": "86ffa2abe167d6192f01d4df90f83a97c8533303"
  2726. },
  2727. "dist": {
  2728. "type": "zip",
  2729. "url": "https://api.github.com/repos/openai-php/client/zipball/86ffa2abe167d6192f01d4df90f83a97c8533303",
  2730. "reference": "86ffa2abe167d6192f01d4df90f83a97c8533303",
  2731. "shasum": ""
  2732. },
  2733. "require": {
  2734. "php": "^8.1.0",
  2735. "php-http/discovery": "^1.19.0",
  2736. "php-http/multipart-stream-builder": "^1.3.0",
  2737. "psr/http-client": "^1.0.2",
  2738. "psr/http-client-implementation": "^1.0.1",
  2739. "psr/http-factory-implementation": "*",
  2740. "psr/http-message": "^1.1.0|^2.0.0"
  2741. },
  2742. "require-dev": {
  2743. "guzzlehttp/guzzle": "^7.7.0",
  2744. "guzzlehttp/psr7": "^2.5.0",
  2745. "laravel/pint": "^1.10.3",
  2746. "nunomaduro/collision": "^7.7.0",
  2747. "pestphp/pest": "^2.16.0",
  2748. "pestphp/pest-plugin-arch": "^2.2.1",
  2749. "pestphp/pest-plugin-mock": "^2.0.0",
  2750. "pestphp/pest-plugin-type-coverage": "^2.0.0",
  2751. "phpstan/phpstan": "^1.10.25",
  2752. "rector/rector": "^0.16.0",
  2753. "symfony/var-dumper": "^6.3.1"
  2754. },
  2755. "type": "library",
  2756. "autoload": {
  2757. "files": [
  2758. "src/OpenAI.php"
  2759. ],
  2760. "psr-4": {
  2761. "OpenAI\\": "src/"
  2762. }
  2763. },
  2764. "notification-url": "https://packagist.org/downloads/",
  2765. "license": [
  2766. "MIT"
  2767. ],
  2768. "authors": [
  2769. {
  2770. "name": "Nuno Maduro",
  2771. "email": "[email protected]"
  2772. },
  2773. {
  2774. "name": "Sandro Gehri"
  2775. }
  2776. ],
  2777. "description": "OpenAI PHP is a supercharged PHP API client that allows you to interact with the Open AI API",
  2778. "keywords": [
  2779. "GPT-3",
  2780. "api",
  2781. "client",
  2782. "codex",
  2783. "dall-e",
  2784. "language",
  2785. "natural",
  2786. "openai",
  2787. "php",
  2788. "processing",
  2789. "sdk"
  2790. ],
  2791. "support": {
  2792. "issues": "https://github.com/openai-php/client/issues",
  2793. "source": "https://github.com/openai-php/client/tree/v0.7.3"
  2794. },
  2795. "funding": [
  2796. {
  2797. "url": "https://www.paypal.com/paypalme/enunomaduro",
  2798. "type": "custom"
  2799. },
  2800. {
  2801. "url": "https://github.com/gehrisandro",
  2802. "type": "github"
  2803. },
  2804. {
  2805. "url": "https://github.com/nunomaduro",
  2806. "type": "github"
  2807. }
  2808. ],
  2809. "time": "2023-09-08T08:48:59+00:00"
  2810. },
  2811. {
  2812. "name": "ozdemir/datatables",
  2813. "version": "2.3.7",
  2814. "source": {
  2815. "type": "git",
  2816. "url": "https://github.com/n1crack/datatables.git",
  2817. "reference": "7d8d51dccc1647fc68d3b6f90453e3f8b8b8bf9d"
  2818. },
  2819. "dist": {
  2820. "type": "zip",
  2821. "url": "https://api.github.com/repos/n1crack/datatables/zipball/7d8d51dccc1647fc68d3b6f90453e3f8b8b8bf9d",
  2822. "reference": "7d8d51dccc1647fc68d3b6f90453e3f8b8b8bf9d",
  2823. "shasum": ""
  2824. },
  2825. "require": {
  2826. "php": ">=7.1.3"
  2827. },
  2828. "require-dev": {
  2829. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  2830. },
  2831. "type": "library",
  2832. "autoload": {
  2833. "psr-4": {
  2834. "Ozdemir\\Datatables\\": "src/"
  2835. }
  2836. },
  2837. "notification-url": "https://packagist.org/downloads/",
  2838. "license": [
  2839. "MIT"
  2840. ],
  2841. "authors": [
  2842. {
  2843. "name": "Yusuf Özdemir",
  2844. "email": "[email protected]"
  2845. }
  2846. ],
  2847. "description": "PHP Library to handle server-side processing for Datatables, in a fast and simple way.",
  2848. "support": {
  2849. "issues": "https://github.com/n1crack/datatables/issues",
  2850. "source": "https://github.com/n1crack/datatables/tree/2.3.7"
  2851. },
  2852. "time": "2023-05-29T10:42:49+00:00"
  2853. },
  2854. {
  2855. "name": "php-http/client-common",
  2856. "version": "2.7.0",
  2857. "source": {
  2858. "type": "git",
  2859. "url": "https://github.com/php-http/client-common.git",
  2860. "reference": "880509727a447474d2a71b7d7fa5d268ddd3db4b"
  2861. },
  2862. "dist": {
  2863. "type": "zip",
  2864. "url": "https://api.github.com/repos/php-http/client-common/zipball/880509727a447474d2a71b7d7fa5d268ddd3db4b",
  2865. "reference": "880509727a447474d2a71b7d7fa5d268ddd3db4b",
  2866. "shasum": ""
  2867. },
  2868. "require": {
  2869. "php": "^7.1 || ^8.0",
  2870. "php-http/httplug": "^2.0",
  2871. "php-http/message": "^1.6",
  2872. "psr/http-client": "^1.0",
  2873. "psr/http-factory": "^1.0",
  2874. "psr/http-message": "^1.0 || ^2.0",
  2875. "symfony/options-resolver": "~4.0.15 || ~4.1.9 || ^4.2.1 || ^5.0 || ^6.0",
  2876. "symfony/polyfill-php80": "^1.17"
  2877. },
  2878. "require-dev": {
  2879. "doctrine/instantiator": "^1.1",
  2880. "guzzlehttp/psr7": "^1.4",
  2881. "nyholm/psr7": "^1.2",
  2882. "phpspec/phpspec": "^5.1 || ^6.3 || ^7.1",
  2883. "phpspec/prophecy": "^1.10.2",
  2884. "phpunit/phpunit": "^7.5.20 || ^8.5.33 || ^9.6.7"
  2885. },
  2886. "suggest": {
  2887. "ext-json": "To detect JSON responses with the ContentTypePlugin",
  2888. "ext-libxml": "To detect XML responses with the ContentTypePlugin",
  2889. "php-http/cache-plugin": "PSR-6 Cache plugin",
  2890. "php-http/logger-plugin": "PSR-3 Logger plugin",
  2891. "php-http/stopwatch-plugin": "Symfony Stopwatch plugin"
  2892. },
  2893. "type": "library",
  2894. "autoload": {
  2895. "psr-4": {
  2896. "Http\\Client\\Common\\": "src/"
  2897. }
  2898. },
  2899. "notification-url": "https://packagist.org/downloads/",
  2900. "license": [
  2901. "MIT"
  2902. ],
  2903. "authors": [
  2904. {
  2905. "name": "Márk Sági-Kazár",
  2906. "email": "[email protected]"
  2907. }
  2908. ],
  2909. "description": "Common HTTP Client implementations and tools for HTTPlug",
  2910. "homepage": "http://httplug.io",
  2911. "keywords": [
  2912. "client",
  2913. "common",
  2914. "http",
  2915. "httplug"
  2916. ],
  2917. "support": {
  2918. "issues": "https://github.com/php-http/client-common/issues",
  2919. "source": "https://github.com/php-http/client-common/tree/2.7.0"
  2920. },
  2921. "time": "2023-05-17T06:46:59+00:00"
  2922. },
  2923. {
  2924. "name": "php-http/discovery",
  2925. "version": "1.19.1",
  2926. "source": {
  2927. "type": "git",
  2928. "url": "https://github.com/php-http/discovery.git",
  2929. "reference": "57f3de01d32085fea20865f9b16fb0e69347c39e"
  2930. },
  2931. "dist": {
  2932. "type": "zip",
  2933. "url": "https://api.github.com/repos/php-http/discovery/zipball/57f3de01d32085fea20865f9b16fb0e69347c39e",
  2934. "reference": "57f3de01d32085fea20865f9b16fb0e69347c39e",
  2935. "shasum": ""
  2936. },
  2937. "require": {
  2938. "composer-plugin-api": "^1.0|^2.0",
  2939. "php": "^7.1 || ^8.0"
  2940. },
  2941. "conflict": {
  2942. "nyholm/psr7": "<1.0",
  2943. "zendframework/zend-diactoros": "*"
  2944. },
  2945. "provide": {
  2946. "php-http/async-client-implementation": "*",
  2947. "php-http/client-implementation": "*",
  2948. "psr/http-client-implementation": "*",
  2949. "psr/http-factory-implementation": "*",
  2950. "psr/http-message-implementation": "*"
  2951. },
  2952. "require-dev": {
  2953. "composer/composer": "^1.0.2|^2.0",
  2954. "graham-campbell/phpspec-skip-example-extension": "^5.0",
  2955. "php-http/httplug": "^1.0 || ^2.0",
  2956. "php-http/message-factory": "^1.0",
  2957. "phpspec/phpspec": "^5.1 || ^6.1 || ^7.3",
  2958. "symfony/phpunit-bridge": "^6.2"
  2959. },
  2960. "type": "composer-plugin",
  2961. "extra": {
  2962. "class": "Http\\Discovery\\Composer\\Plugin",
  2963. "plugin-optional": true
  2964. },
  2965. "autoload": {
  2966. "psr-4": {
  2967. "Http\\Discovery\\": "src/"
  2968. },
  2969. "exclude-from-classmap": [
  2970. "src/Composer/Plugin.php"
  2971. ]
  2972. },
  2973. "notification-url": "https://packagist.org/downloads/",
  2974. "license": [
  2975. "MIT"
  2976. ],
  2977. "authors": [
  2978. {
  2979. "name": "Márk Sági-Kazár",
  2980. "email": "[email protected]"
  2981. }
  2982. ],
  2983. "description": "Finds and installs PSR-7, PSR-17, PSR-18 and HTTPlug implementations",
  2984. "homepage": "http://php-http.org",
  2985. "keywords": [
  2986. "adapter",
  2987. "client",
  2988. "discovery",
  2989. "factory",
  2990. "http",
  2991. "message",
  2992. "psr17",
  2993. "psr7"
  2994. ],
  2995. "support": {
  2996. "issues": "https://github.com/php-http/discovery/issues",
  2997. "source": "https://github.com/php-http/discovery/tree/1.19.1"
  2998. },
  2999. "time": "2023-07-11T07:02:26+00:00"
  3000. },
  3001. {
  3002. "name": "php-http/guzzle7-adapter",
  3003. "version": "1.0.0",
  3004. "source": {
  3005. "type": "git",
  3006. "url": "https://github.com/php-http/guzzle7-adapter.git",
  3007. "reference": "fb075a71dbfa4847cf0c2938c4e5a9c478ef8b01"
  3008. },
  3009. "dist": {
  3010. "type": "zip",
  3011. "url": "https://api.github.com/repos/php-http/guzzle7-adapter/zipball/fb075a71dbfa4847cf0c2938c4e5a9c478ef8b01",
  3012. "reference": "fb075a71dbfa4847cf0c2938c4e5a9c478ef8b01",
  3013. "shasum": ""
  3014. },
  3015. "require": {
  3016. "guzzlehttp/guzzle": "^7.0",
  3017. "php": "^7.2 | ^8.0",
  3018. "php-http/httplug": "^2.0",
  3019. "psr/http-client": "^1.0"
  3020. },
  3021. "provide": {
  3022. "php-http/async-client-implementation": "1.0",
  3023. "php-http/client-implementation": "1.0",
  3024. "psr/http-client-implementation": "1.0"
  3025. },
  3026. "require-dev": {
  3027. "php-http/client-integration-tests": "^3.0",
  3028. "phpunit/phpunit": "^8.0|^9.3"
  3029. },
  3030. "type": "library",
  3031. "extra": {
  3032. "branch-alias": {
  3033. "dev-master": "0.2.x-dev"
  3034. }
  3035. },
  3036. "autoload": {
  3037. "psr-4": {
  3038. "Http\\Adapter\\Guzzle7\\": "src/"
  3039. }
  3040. },
  3041. "notification-url": "https://packagist.org/downloads/",
  3042. "license": [
  3043. "MIT"
  3044. ],
  3045. "authors": [
  3046. {
  3047. "name": "Tobias Nyholm",
  3048. "email": "[email protected]"
  3049. }
  3050. ],
  3051. "description": "Guzzle 7 HTTP Adapter",
  3052. "homepage": "http://httplug.io",
  3053. "keywords": [
  3054. "Guzzle",
  3055. "http"
  3056. ],
  3057. "support": {
  3058. "issues": "https://github.com/php-http/guzzle7-adapter/issues",
  3059. "source": "https://github.com/php-http/guzzle7-adapter/tree/1.0.0"
  3060. },
  3061. "time": "2021-03-09T07:35:15+00:00"
  3062. },
  3063. {
  3064. "name": "php-http/httplug",
  3065. "version": "2.4.0",
  3066. "source": {
  3067. "type": "git",
  3068. "url": "https://github.com/php-http/httplug.git",
  3069. "reference": "625ad742c360c8ac580fcc647a1541d29e257f67"
  3070. },
  3071. "dist": {
  3072. "type": "zip",
  3073. "url": "https://api.github.com/repos/php-http/httplug/zipball/625ad742c360c8ac580fcc647a1541d29e257f67",
  3074. "reference": "625ad742c360c8ac580fcc647a1541d29e257f67",
  3075. "shasum": ""
  3076. },
  3077. "require": {
  3078. "php": "^7.1 || ^8.0",
  3079. "php-http/promise": "^1.1",
  3080. "psr/http-client": "^1.0",
  3081. "psr/http-message": "^1.0 || ^2.0"
  3082. },
  3083. "require-dev": {
  3084. "friends-of-phpspec/phpspec-code-coverage": "^4.1 || ^5.0 || ^6.0",
  3085. "phpspec/phpspec": "^5.1 || ^6.0 || ^7.0"
  3086. },
  3087. "type": "library",
  3088. "autoload": {
  3089. "psr-4": {
  3090. "Http\\Client\\": "src/"
  3091. }
  3092. },
  3093. "notification-url": "https://packagist.org/downloads/",
  3094. "license": [
  3095. "MIT"
  3096. ],
  3097. "authors": [
  3098. {
  3099. "name": "Eric GELOEN",
  3100. "email": "[email protected]"
  3101. },
  3102. {
  3103. "name": "Márk Sági-Kazár",
  3104. "email": "[email protected]",
  3105. "homepage": "https://sagikazarmark.hu"
  3106. }
  3107. ],
  3108. "description": "HTTPlug, the HTTP client abstraction for PHP",
  3109. "homepage": "http://httplug.io",
  3110. "keywords": [
  3111. "client",
  3112. "http"
  3113. ],
  3114. "support": {
  3115. "issues": "https://github.com/php-http/httplug/issues",
  3116. "source": "https://github.com/php-http/httplug/tree/2.4.0"
  3117. },
  3118. "time": "2023-04-14T15:10:03+00:00"
  3119. },
  3120. {
  3121. "name": "php-http/message",
  3122. "version": "1.16.0",
  3123. "source": {
  3124. "type": "git",
  3125. "url": "https://github.com/php-http/message.git",
  3126. "reference": "47a14338bf4ebd67d317bf1144253d7db4ab55fd"
  3127. },
  3128. "dist": {
  3129. "type": "zip",
  3130. "url": "https://api.github.com/repos/php-http/message/zipball/47a14338bf4ebd67d317bf1144253d7db4ab55fd",
  3131. "reference": "47a14338bf4ebd67d317bf1144253d7db4ab55fd",
  3132. "shasum": ""
  3133. },
  3134. "require": {
  3135. "clue/stream-filter": "^1.5",
  3136. "php": "^7.2 || ^8.0",
  3137. "psr/http-message": "^1.1 || ^2.0"
  3138. },
  3139. "provide": {
  3140. "php-http/message-factory-implementation": "1.0"
  3141. },
  3142. "require-dev": {
  3143. "ergebnis/composer-normalize": "^2.6",
  3144. "ext-zlib": "*",
  3145. "guzzlehttp/psr7": "^1.0 || ^2.0",
  3146. "laminas/laminas-diactoros": "^2.0 || ^3.0",
  3147. "php-http/message-factory": "^1.0.2",
  3148. "phpspec/phpspec": "^5.1 || ^6.3 || ^7.1",
  3149. "slim/slim": "^3.0"
  3150. },
  3151. "suggest": {
  3152. "ext-zlib": "Used with compressor/decompressor streams",
  3153. "guzzlehttp/psr7": "Used with Guzzle PSR-7 Factories",
  3154. "laminas/laminas-diactoros": "Used with Diactoros Factories",
  3155. "slim/slim": "Used with Slim Framework PSR-7 implementation"
  3156. },
  3157. "type": "library",
  3158. "autoload": {
  3159. "files": [
  3160. "src/filters.php"
  3161. ],
  3162. "psr-4": {
  3163. "Http\\Message\\": "src/"
  3164. }
  3165. },
  3166. "notification-url": "https://packagist.org/downloads/",
  3167. "license": [
  3168. "MIT"
  3169. ],
  3170. "authors": [
  3171. {
  3172. "name": "Márk Sági-Kazár",
  3173. "email": "[email protected]"
  3174. }
  3175. ],
  3176. "description": "HTTP Message related tools",
  3177. "homepage": "http://php-http.org",
  3178. "keywords": [
  3179. "http",
  3180. "message",
  3181. "psr-7"
  3182. ],
  3183. "support": {
  3184. "issues": "https://github.com/php-http/message/issues",
  3185. "source": "https://github.com/php-http/message/tree/1.16.0"
  3186. },
  3187. "time": "2023-05-17T06:43:38+00:00"
  3188. },
  3189. {
  3190. "name": "php-http/message-factory",
  3191. "version": "1.1.0",
  3192. "source": {
  3193. "type": "git",
  3194. "url": "https://github.com/php-http/message-factory.git",
  3195. "reference": "4d8778e1c7d405cbb471574821c1ff5b68cc8f57"
  3196. },
  3197. "dist": {
  3198. "type": "zip",
  3199. "url": "https://api.github.com/repos/php-http/message-factory/zipball/4d8778e1c7d405cbb471574821c1ff5b68cc8f57",
  3200. "reference": "4d8778e1c7d405cbb471574821c1ff5b68cc8f57",
  3201. "shasum": ""
  3202. },
  3203. "require": {
  3204. "php": ">=5.4",
  3205. "psr/http-message": "^1.0 || ^2.0"
  3206. },
  3207. "type": "library",
  3208. "extra": {
  3209. "branch-alias": {
  3210. "dev-master": "1.x-dev"
  3211. }
  3212. },
  3213. "autoload": {
  3214. "psr-4": {
  3215. "Http\\Message\\": "src/"
  3216. }
  3217. },
  3218. "notification-url": "https://packagist.org/downloads/",
  3219. "license": [
  3220. "MIT"
  3221. ],
  3222. "authors": [
  3223. {
  3224. "name": "Márk Sági-Kazár",
  3225. "email": "[email protected]"
  3226. }
  3227. ],
  3228. "description": "Factory interfaces for PSR-7 HTTP Message",
  3229. "homepage": "http://php-http.org",
  3230. "keywords": [
  3231. "factory",
  3232. "http",
  3233. "message",
  3234. "stream",
  3235. "uri"
  3236. ],
  3237. "support": {
  3238. "issues": "https://github.com/php-http/message-factory/issues",
  3239. "source": "https://github.com/php-http/message-factory/tree/1.1.0"
  3240. },
  3241. "abandoned": "psr/http-factory",
  3242. "time": "2023-04-14T14:16:17+00:00"
  3243. },
  3244. {
  3245. "name": "php-http/multipart-stream-builder",
  3246. "version": "1.3.0",
  3247. "source": {
  3248. "type": "git",
  3249. "url": "https://github.com/php-http/multipart-stream-builder.git",
  3250. "reference": "f5938fd135d9fa442cc297dc98481805acfe2b6a"
  3251. },
  3252. "dist": {
  3253. "type": "zip",
  3254. "url": "https://api.github.com/repos/php-http/multipart-stream-builder/zipball/f5938fd135d9fa442cc297dc98481805acfe2b6a",
  3255. "reference": "f5938fd135d9fa442cc297dc98481805acfe2b6a",
  3256. "shasum": ""
  3257. },
  3258. "require": {
  3259. "php": "^7.1 || ^8.0",
  3260. "php-http/discovery": "^1.15",
  3261. "psr/http-factory-implementation": "^1.0"
  3262. },
  3263. "require-dev": {
  3264. "nyholm/psr7": "^1.0",
  3265. "php-http/message": "^1.5",
  3266. "php-http/message-factory": "^1.0.2",
  3267. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.3"
  3268. },
  3269. "type": "library",
  3270. "autoload": {
  3271. "psr-4": {
  3272. "Http\\Message\\MultipartStream\\": "src/"
  3273. }
  3274. },
  3275. "notification-url": "https://packagist.org/downloads/",
  3276. "license": [
  3277. "MIT"
  3278. ],
  3279. "authors": [
  3280. {
  3281. "name": "Tobias Nyholm",
  3282. "email": "[email protected]"
  3283. }
  3284. ],
  3285. "description": "A builder class that help you create a multipart stream",
  3286. "homepage": "http://php-http.org",
  3287. "keywords": [
  3288. "factory",
  3289. "http",
  3290. "message",
  3291. "multipart stream",
  3292. "stream"
  3293. ],
  3294. "support": {
  3295. "issues": "https://github.com/php-http/multipart-stream-builder/issues",
  3296. "source": "https://github.com/php-http/multipart-stream-builder/tree/1.3.0"
  3297. },
  3298. "time": "2023-04-28T14:10:22+00:00"
  3299. },
  3300. {
  3301. "name": "php-http/promise",
  3302. "version": "1.1.0",
  3303. "source": {
  3304. "type": "git",
  3305. "url": "https://github.com/php-http/promise.git",
  3306. "reference": "4c4c1f9b7289a2ec57cde7f1e9762a5789506f88"
  3307. },
  3308. "dist": {
  3309. "type": "zip",
  3310. "url": "https://api.github.com/repos/php-http/promise/zipball/4c4c1f9b7289a2ec57cde7f1e9762a5789506f88",
  3311. "reference": "4c4c1f9b7289a2ec57cde7f1e9762a5789506f88",
  3312. "shasum": ""
  3313. },
  3314. "require": {
  3315. "php": "^7.1 || ^8.0"
  3316. },
  3317. "require-dev": {
  3318. "friends-of-phpspec/phpspec-code-coverage": "^4.3.2",
  3319. "phpspec/phpspec": "^5.1.2 || ^6.2"
  3320. },
  3321. "type": "library",
  3322. "extra": {
  3323. "branch-alias": {
  3324. "dev-master": "1.1-dev"
  3325. }
  3326. },
  3327. "autoload": {
  3328. "psr-4": {
  3329. "Http\\Promise\\": "src/"
  3330. }
  3331. },
  3332. "notification-url": "https://packagist.org/downloads/",
  3333. "license": [
  3334. "MIT"
  3335. ],
  3336. "authors": [
  3337. {
  3338. "name": "Joel Wurtz",
  3339. "email": "[email protected]"
  3340. },
  3341. {
  3342. "name": "Márk Sági-Kazár",
  3343. "email": "[email protected]"
  3344. }
  3345. ],
  3346. "description": "Promise used for asynchronous HTTP requests",
  3347. "homepage": "http://httplug.io",
  3348. "keywords": [
  3349. "promise"
  3350. ],
  3351. "support": {
  3352. "issues": "https://github.com/php-http/promise/issues",
  3353. "source": "https://github.com/php-http/promise/tree/1.1.0"
  3354. },
  3355. "time": "2020-07-07T09:29:14+00:00"
  3356. },
  3357. {
  3358. "name": "phpmailer/phpmailer",
  3359. "version": "v6.8.1",
  3360. "source": {
  3361. "type": "git",
  3362. "url": "https://github.com/PHPMailer/PHPMailer.git",
  3363. "reference": "e88da8d679acc3824ff231fdc553565b802ac016"
  3364. },
  3365. "dist": {
  3366. "type": "zip",
  3367. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/e88da8d679acc3824ff231fdc553565b802ac016",
  3368. "reference": "e88da8d679acc3824ff231fdc553565b802ac016",
  3369. "shasum": ""
  3370. },
  3371. "require": {
  3372. "ext-ctype": "*",
  3373. "ext-filter": "*",
  3374. "ext-hash": "*",
  3375. "php": ">=5.5.0"
  3376. },
  3377. "require-dev": {
  3378. "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
  3379. "doctrine/annotations": "^1.2.6 || ^1.13.3",
  3380. "php-parallel-lint/php-console-highlighter": "^1.0.0",
  3381. "php-parallel-lint/php-parallel-lint": "^1.3.2",
  3382. "phpcompatibility/php-compatibility": "^9.3.5",
  3383. "roave/security-advisories": "dev-latest",
  3384. "squizlabs/php_codesniffer": "^3.7.2",
  3385. "yoast/phpunit-polyfills": "^1.0.4"
  3386. },
  3387. "suggest": {
  3388. "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses",
  3389. "ext-openssl": "Needed for secure SMTP sending and DKIM signing",
  3390. "greew/oauth2-azure-provider": "Needed for Microsoft Azure XOAUTH2 authentication",
  3391. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  3392. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  3393. "psr/log": "For optional PSR-3 debug logging",
  3394. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)",
  3395. "thenetworg/oauth2-azure": "Needed for Microsoft XOAUTH2 authentication"
  3396. },
  3397. "type": "library",
  3398. "autoload": {
  3399. "psr-4": {
  3400. "PHPMailer\\PHPMailer\\": "src/"
  3401. }
  3402. },
  3403. "notification-url": "https://packagist.org/downloads/",
  3404. "license": [
  3405. "LGPL-2.1-only"
  3406. ],
  3407. "authors": [
  3408. {
  3409. "name": "Marcus Bointon",
  3410. "email": "[email protected]"
  3411. },
  3412. {
  3413. "name": "Jim Jagielski",
  3414. "email": "[email protected]"
  3415. },
  3416. {
  3417. "name": "Andy Prevost",
  3418. "email": "[email protected]"
  3419. },
  3420. {
  3421. "name": "Brent R. Matzelle"
  3422. }
  3423. ],
  3424. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  3425. "support": {
  3426. "issues": "https://github.com/PHPMailer/PHPMailer/issues",
  3427. "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.8.1"
  3428. },
  3429. "funding": [
  3430. {
  3431. "url": "https://github.com/Synchro",
  3432. "type": "github"
  3433. }
  3434. ],
  3435. "time": "2023-08-29T08:26:30+00:00"
  3436. },
  3437. {
  3438. "name": "postal/postal",
  3439. "version": "v2.0.0",
  3440. "source": {
  3441. "type": "git",
  3442. "url": "https://github.com/postalserver/postal-php.git",
  3443. "reference": "027a34055ff10d1cacfad0c37f96313efd7ba5ab"
  3444. },
  3445. "dist": {
  3446. "type": "zip",
  3447. "url": "https://api.github.com/repos/postalserver/postal-php/zipball/027a34055ff10d1cacfad0c37f96313efd7ba5ab",
  3448. "reference": "027a34055ff10d1cacfad0c37f96313efd7ba5ab",
  3449. "shasum": ""
  3450. },
  3451. "require": {
  3452. "guzzlehttp/guzzle": "^6 || ^7",
  3453. "php": "^7.4 || ^8.0"
  3454. },
  3455. "require-dev": {
  3456. "phpstan/phpstan": "^1.10",
  3457. "phpunit/phpunit": "^9.6",
  3458. "symplify/easy-coding-standard": "^11.3"
  3459. },
  3460. "type": "library",
  3461. "autoload": {
  3462. "psr-4": {
  3463. "Postal\\": "src/"
  3464. }
  3465. },
  3466. "notification-url": "https://packagist.org/downloads/",
  3467. "license": [
  3468. "MIT"
  3469. ],
  3470. "authors": [
  3471. {
  3472. "name": "Adam Cooke",
  3473. "email": "[email protected]"
  3474. },
  3475. {
  3476. "name": "Josh Grant",
  3477. "email": "[email protected]"
  3478. },
  3479. {
  3480. "name": "William Hall",
  3481. "email": "[email protected]"
  3482. }
  3483. ],
  3484. "description": "Postal for PHP library.",
  3485. "homepage": "https://github.com/atech/postal",
  3486. "keywords": [
  3487. "mail",
  3488. "postal"
  3489. ],
  3490. "support": {
  3491. "issues": "https://github.com/postalserver/postal-php/issues",
  3492. "source": "https://github.com/postalserver/postal-php/tree/v2.0.0"
  3493. },
  3494. "time": "2023-07-24T11:37:11+00:00"
  3495. },
  3496. {
  3497. "name": "psr/clock",
  3498. "version": "1.0.0",
  3499. "source": {
  3500. "type": "git",
  3501. "url": "https://github.com/php-fig/clock.git",
  3502. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  3503. },
  3504. "dist": {
  3505. "type": "zip",
  3506. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  3507. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  3508. "shasum": ""
  3509. },
  3510. "require": {
  3511. "php": "^7.0 || ^8.0"
  3512. },
  3513. "type": "library",
  3514. "autoload": {
  3515. "psr-4": {
  3516. "Psr\\Clock\\": "src/"
  3517. }
  3518. },
  3519. "notification-url": "https://packagist.org/downloads/",
  3520. "license": [
  3521. "MIT"
  3522. ],
  3523. "authors": [
  3524. {
  3525. "name": "PHP-FIG",
  3526. "homepage": "https://www.php-fig.org/"
  3527. }
  3528. ],
  3529. "description": "Common interface for reading the clock.",
  3530. "homepage": "https://github.com/php-fig/clock",
  3531. "keywords": [
  3532. "clock",
  3533. "now",
  3534. "psr",
  3535. "psr-20",
  3536. "time"
  3537. ],
  3538. "support": {
  3539. "issues": "https://github.com/php-fig/clock/issues",
  3540. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  3541. },
  3542. "time": "2022-11-25T14:36:26+00:00"
  3543. },
  3544. {
  3545. "name": "psr/container",
  3546. "version": "2.0.2",
  3547. "source": {
  3548. "type": "git",
  3549. "url": "https://github.com/php-fig/container.git",
  3550. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  3551. },
  3552. "dist": {
  3553. "type": "zip",
  3554. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  3555. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  3556. "shasum": ""
  3557. },
  3558. "require": {
  3559. "php": ">=7.4.0"
  3560. },
  3561. "type": "library",
  3562. "extra": {
  3563. "branch-alias": {
  3564. "dev-master": "2.0.x-dev"
  3565. }
  3566. },
  3567. "autoload": {
  3568. "psr-4": {
  3569. "Psr\\Container\\": "src/"
  3570. }
  3571. },
  3572. "notification-url": "https://packagist.org/downloads/",
  3573. "license": [
  3574. "MIT"
  3575. ],
  3576. "authors": [
  3577. {
  3578. "name": "PHP-FIG",
  3579. "homepage": "https://www.php-fig.org/"
  3580. }
  3581. ],
  3582. "description": "Common Container Interface (PHP FIG PSR-11)",
  3583. "homepage": "https://github.com/php-fig/container",
  3584. "keywords": [
  3585. "PSR-11",
  3586. "container",
  3587. "container-interface",
  3588. "container-interop",
  3589. "psr"
  3590. ],
  3591. "support": {
  3592. "issues": "https://github.com/php-fig/container/issues",
  3593. "source": "https://github.com/php-fig/container/tree/2.0.2"
  3594. },
  3595. "time": "2021-11-05T16:47:00+00:00"
  3596. },
  3597. {
  3598. "name": "psr/event-dispatcher",
  3599. "version": "1.0.0",
  3600. "source": {
  3601. "type": "git",
  3602. "url": "https://github.com/php-fig/event-dispatcher.git",
  3603. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  3604. },
  3605. "dist": {
  3606. "type": "zip",
  3607. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3608. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3609. "shasum": ""
  3610. },
  3611. "require": {
  3612. "php": ">=7.2.0"
  3613. },
  3614. "type": "library",
  3615. "extra": {
  3616. "branch-alias": {
  3617. "dev-master": "1.0.x-dev"
  3618. }
  3619. },
  3620. "autoload": {
  3621. "psr-4": {
  3622. "Psr\\EventDispatcher\\": "src/"
  3623. }
  3624. },
  3625. "notification-url": "https://packagist.org/downloads/",
  3626. "license": [
  3627. "MIT"
  3628. ],
  3629. "authors": [
  3630. {
  3631. "name": "PHP-FIG",
  3632. "homepage": "http://www.php-fig.org/"
  3633. }
  3634. ],
  3635. "description": "Standard interfaces for event handling.",
  3636. "keywords": [
  3637. "events",
  3638. "psr",
  3639. "psr-14"
  3640. ],
  3641. "support": {
  3642. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  3643. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  3644. },
  3645. "time": "2019-01-08T18:20:26+00:00"
  3646. },
  3647. {
  3648. "name": "psr/http-client",
  3649. "version": "1.0.2",
  3650. "source": {
  3651. "type": "git",
  3652. "url": "https://github.com/php-fig/http-client.git",
  3653. "reference": "0955afe48220520692d2d09f7ab7e0f93ffd6a31"
  3654. },
  3655. "dist": {
  3656. "type": "zip",
  3657. "url": "https://api.github.com/repos/php-fig/http-client/zipball/0955afe48220520692d2d09f7ab7e0f93ffd6a31",
  3658. "reference": "0955afe48220520692d2d09f7ab7e0f93ffd6a31",
  3659. "shasum": ""
  3660. },
  3661. "require": {
  3662. "php": "^7.0 || ^8.0",
  3663. "psr/http-message": "^1.0 || ^2.0"
  3664. },
  3665. "type": "library",
  3666. "extra": {
  3667. "branch-alias": {
  3668. "dev-master": "1.0.x-dev"
  3669. }
  3670. },
  3671. "autoload": {
  3672. "psr-4": {
  3673. "Psr\\Http\\Client\\": "src/"
  3674. }
  3675. },
  3676. "notification-url": "https://packagist.org/downloads/",
  3677. "license": [
  3678. "MIT"
  3679. ],
  3680. "authors": [
  3681. {
  3682. "name": "PHP-FIG",
  3683. "homepage": "https://www.php-fig.org/"
  3684. }
  3685. ],
  3686. "description": "Common interface for HTTP clients",
  3687. "homepage": "https://github.com/php-fig/http-client",
  3688. "keywords": [
  3689. "http",
  3690. "http-client",
  3691. "psr",
  3692. "psr-18"
  3693. ],
  3694. "support": {
  3695. "source": "https://github.com/php-fig/http-client/tree/1.0.2"
  3696. },
  3697. "time": "2023-04-10T20:12:12+00:00"
  3698. },
  3699. {
  3700. "name": "psr/http-factory",
  3701. "version": "1.0.2",
  3702. "source": {
  3703. "type": "git",
  3704. "url": "https://github.com/php-fig/http-factory.git",
  3705. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  3706. },
  3707. "dist": {
  3708. "type": "zip",
  3709. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  3710. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  3711. "shasum": ""
  3712. },
  3713. "require": {
  3714. "php": ">=7.0.0",
  3715. "psr/http-message": "^1.0 || ^2.0"
  3716. },
  3717. "type": "library",
  3718. "extra": {
  3719. "branch-alias": {
  3720. "dev-master": "1.0.x-dev"
  3721. }
  3722. },
  3723. "autoload": {
  3724. "psr-4": {
  3725. "Psr\\Http\\Message\\": "src/"
  3726. }
  3727. },
  3728. "notification-url": "https://packagist.org/downloads/",
  3729. "license": [
  3730. "MIT"
  3731. ],
  3732. "authors": [
  3733. {
  3734. "name": "PHP-FIG",
  3735. "homepage": "https://www.php-fig.org/"
  3736. }
  3737. ],
  3738. "description": "Common interfaces for PSR-7 HTTP message factories",
  3739. "keywords": [
  3740. "factory",
  3741. "http",
  3742. "message",
  3743. "psr",
  3744. "psr-17",
  3745. "psr-7",
  3746. "request",
  3747. "response"
  3748. ],
  3749. "support": {
  3750. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  3751. },
  3752. "time": "2023-04-10T20:10:41+00:00"
  3753. },
  3754. {
  3755. "name": "psr/http-message",
  3756. "version": "1.1",
  3757. "source": {
  3758. "type": "git",
  3759. "url": "https://github.com/php-fig/http-message.git",
  3760. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  3761. },
  3762. "dist": {
  3763. "type": "zip",
  3764. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  3765. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  3766. "shasum": ""
  3767. },
  3768. "require": {
  3769. "php": "^7.2 || ^8.0"
  3770. },
  3771. "type": "library",
  3772. "extra": {
  3773. "branch-alias": {
  3774. "dev-master": "1.1.x-dev"
  3775. }
  3776. },
  3777. "autoload": {
  3778. "psr-4": {
  3779. "Psr\\Http\\Message\\": "src/"
  3780. }
  3781. },
  3782. "notification-url": "https://packagist.org/downloads/",
  3783. "license": [
  3784. "MIT"
  3785. ],
  3786. "authors": [
  3787. {
  3788. "name": "PHP-FIG",
  3789. "homepage": "http://www.php-fig.org/"
  3790. }
  3791. ],
  3792. "description": "Common interface for HTTP messages",
  3793. "homepage": "https://github.com/php-fig/http-message",
  3794. "keywords": [
  3795. "http",
  3796. "http-message",
  3797. "psr",
  3798. "psr-7",
  3799. "request",
  3800. "response"
  3801. ],
  3802. "support": {
  3803. "source": "https://github.com/php-fig/http-message/tree/1.1"
  3804. },
  3805. "time": "2023-04-04T09:50:52+00:00"
  3806. },
  3807. {
  3808. "name": "psr/http-server-handler",
  3809. "version": "1.0.2",
  3810. "source": {
  3811. "type": "git",
  3812. "url": "https://github.com/php-fig/http-server-handler.git",
  3813. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  3814. },
  3815. "dist": {
  3816. "type": "zip",
  3817. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  3818. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  3819. "shasum": ""
  3820. },
  3821. "require": {
  3822. "php": ">=7.0",
  3823. "psr/http-message": "^1.0 || ^2.0"
  3824. },
  3825. "type": "library",
  3826. "extra": {
  3827. "branch-alias": {
  3828. "dev-master": "1.0.x-dev"
  3829. }
  3830. },
  3831. "autoload": {
  3832. "psr-4": {
  3833. "Psr\\Http\\Server\\": "src/"
  3834. }
  3835. },
  3836. "notification-url": "https://packagist.org/downloads/",
  3837. "license": [
  3838. "MIT"
  3839. ],
  3840. "authors": [
  3841. {
  3842. "name": "PHP-FIG",
  3843. "homepage": "https://www.php-fig.org/"
  3844. }
  3845. ],
  3846. "description": "Common interface for HTTP server-side request handler",
  3847. "keywords": [
  3848. "handler",
  3849. "http",
  3850. "http-interop",
  3851. "psr",
  3852. "psr-15",
  3853. "psr-7",
  3854. "request",
  3855. "response",
  3856. "server"
  3857. ],
  3858. "support": {
  3859. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  3860. },
  3861. "time": "2023-04-10T20:06:20+00:00"
  3862. },
  3863. {
  3864. "name": "psr/http-server-middleware",
  3865. "version": "1.0.2",
  3866. "source": {
  3867. "type": "git",
  3868. "url": "https://github.com/php-fig/http-server-middleware.git",
  3869. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  3870. },
  3871. "dist": {
  3872. "type": "zip",
  3873. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  3874. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  3875. "shasum": ""
  3876. },
  3877. "require": {
  3878. "php": ">=7.0",
  3879. "psr/http-message": "^1.0 || ^2.0",
  3880. "psr/http-server-handler": "^1.0"
  3881. },
  3882. "type": "library",
  3883. "extra": {
  3884. "branch-alias": {
  3885. "dev-master": "1.0.x-dev"
  3886. }
  3887. },
  3888. "autoload": {
  3889. "psr-4": {
  3890. "Psr\\Http\\Server\\": "src/"
  3891. }
  3892. },
  3893. "notification-url": "https://packagist.org/downloads/",
  3894. "license": [
  3895. "MIT"
  3896. ],
  3897. "authors": [
  3898. {
  3899. "name": "PHP-FIG",
  3900. "homepage": "https://www.php-fig.org/"
  3901. }
  3902. ],
  3903. "description": "Common interface for HTTP server-side middleware",
  3904. "keywords": [
  3905. "http",
  3906. "http-interop",
  3907. "middleware",
  3908. "psr",
  3909. "psr-15",
  3910. "psr-7",
  3911. "request",
  3912. "response"
  3913. ],
  3914. "support": {
  3915. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  3916. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  3917. },
  3918. "time": "2023-04-11T06:14:47+00:00"
  3919. },
  3920. {
  3921. "name": "psr/log",
  3922. "version": "3.0.0",
  3923. "source": {
  3924. "type": "git",
  3925. "url": "https://github.com/php-fig/log.git",
  3926. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  3927. },
  3928. "dist": {
  3929. "type": "zip",
  3930. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  3931. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  3932. "shasum": ""
  3933. },
  3934. "require": {
  3935. "php": ">=8.0.0"
  3936. },
  3937. "type": "library",
  3938. "extra": {
  3939. "branch-alias": {
  3940. "dev-master": "3.x-dev"
  3941. }
  3942. },
  3943. "autoload": {
  3944. "psr-4": {
  3945. "Psr\\Log\\": "src"
  3946. }
  3947. },
  3948. "notification-url": "https://packagist.org/downloads/",
  3949. "license": [
  3950. "MIT"
  3951. ],
  3952. "authors": [
  3953. {
  3954. "name": "PHP-FIG",
  3955. "homepage": "https://www.php-fig.org/"
  3956. }
  3957. ],
  3958. "description": "Common interface for logging libraries",
  3959. "homepage": "https://github.com/php-fig/log",
  3960. "keywords": [
  3961. "log",
  3962. "psr",
  3963. "psr-3"
  3964. ],
  3965. "support": {
  3966. "source": "https://github.com/php-fig/log/tree/3.0.0"
  3967. },
  3968. "time": "2021-07-14T16:46:02+00:00"
  3969. },
  3970. {
  3971. "name": "psr/simple-cache",
  3972. "version": "3.0.0",
  3973. "source": {
  3974. "type": "git",
  3975. "url": "https://github.com/php-fig/simple-cache.git",
  3976. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  3977. },
  3978. "dist": {
  3979. "type": "zip",
  3980. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  3981. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  3982. "shasum": ""
  3983. },
  3984. "require": {
  3985. "php": ">=8.0.0"
  3986. },
  3987. "type": "library",
  3988. "extra": {
  3989. "branch-alias": {
  3990. "dev-master": "3.0.x-dev"
  3991. }
  3992. },
  3993. "autoload": {
  3994. "psr-4": {
  3995. "Psr\\SimpleCache\\": "src/"
  3996. }
  3997. },
  3998. "notification-url": "https://packagist.org/downloads/",
  3999. "license": [
  4000. "MIT"
  4001. ],
  4002. "authors": [
  4003. {
  4004. "name": "PHP-FIG",
  4005. "homepage": "https://www.php-fig.org/"
  4006. }
  4007. ],
  4008. "description": "Common interfaces for simple caching",
  4009. "keywords": [
  4010. "cache",
  4011. "caching",
  4012. "psr",
  4013. "psr-16",
  4014. "simple-cache"
  4015. ],
  4016. "support": {
  4017. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  4018. },
  4019. "time": "2021-10-29T13:26:27+00:00"
  4020. },
  4021. {
  4022. "name": "ralouphie/getallheaders",
  4023. "version": "3.0.3",
  4024. "source": {
  4025. "type": "git",
  4026. "url": "https://github.com/ralouphie/getallheaders.git",
  4027. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4028. },
  4029. "dist": {
  4030. "type": "zip",
  4031. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4032. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4033. "shasum": ""
  4034. },
  4035. "require": {
  4036. "php": ">=5.6"
  4037. },
  4038. "require-dev": {
  4039. "php-coveralls/php-coveralls": "^2.1",
  4040. "phpunit/phpunit": "^5 || ^6.5"
  4041. },
  4042. "type": "library",
  4043. "autoload": {
  4044. "files": [
  4045. "src/getallheaders.php"
  4046. ]
  4047. },
  4048. "notification-url": "https://packagist.org/downloads/",
  4049. "license": [
  4050. "MIT"
  4051. ],
  4052. "authors": [
  4053. {
  4054. "name": "Ralph Khattar",
  4055. "email": "[email protected]"
  4056. }
  4057. ],
  4058. "description": "A polyfill for getallheaders.",
  4059. "support": {
  4060. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4061. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4062. },
  4063. "time": "2019-03-08T08:55:37+00:00"
  4064. },
  4065. {
  4066. "name": "ramsey/collection",
  4067. "version": "2.0.0",
  4068. "source": {
  4069. "type": "git",
  4070. "url": "https://github.com/ramsey/collection.git",
  4071. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5"
  4072. },
  4073. "dist": {
  4074. "type": "zip",
  4075. "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  4076. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  4077. "shasum": ""
  4078. },
  4079. "require": {
  4080. "php": "^8.1"
  4081. },
  4082. "require-dev": {
  4083. "captainhook/plugin-composer": "^5.3",
  4084. "ergebnis/composer-normalize": "^2.28.3",
  4085. "fakerphp/faker": "^1.21",
  4086. "hamcrest/hamcrest-php": "^2.0",
  4087. "jangregor/phpstan-prophecy": "^1.0",
  4088. "mockery/mockery": "^1.5",
  4089. "php-parallel-lint/php-console-highlighter": "^1.0",
  4090. "php-parallel-lint/php-parallel-lint": "^1.3",
  4091. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  4092. "phpspec/prophecy-phpunit": "^2.0",
  4093. "phpstan/extension-installer": "^1.2",
  4094. "phpstan/phpstan": "^1.9",
  4095. "phpstan/phpstan-mockery": "^1.1",
  4096. "phpstan/phpstan-phpunit": "^1.3",
  4097. "phpunit/phpunit": "^9.5",
  4098. "psalm/plugin-mockery": "^1.1",
  4099. "psalm/plugin-phpunit": "^0.18.4",
  4100. "ramsey/coding-standard": "^2.0.3",
  4101. "ramsey/conventional-commits": "^1.3",
  4102. "vimeo/psalm": "^5.4"
  4103. },
  4104. "type": "library",
  4105. "extra": {
  4106. "captainhook": {
  4107. "force-install": true
  4108. },
  4109. "ramsey/conventional-commits": {
  4110. "configFile": "conventional-commits.json"
  4111. }
  4112. },
  4113. "autoload": {
  4114. "psr-4": {
  4115. "Ramsey\\Collection\\": "src/"
  4116. }
  4117. },
  4118. "notification-url": "https://packagist.org/downloads/",
  4119. "license": [
  4120. "MIT"
  4121. ],
  4122. "authors": [
  4123. {
  4124. "name": "Ben Ramsey",
  4125. "email": "[email protected]",
  4126. "homepage": "https://benramsey.com"
  4127. }
  4128. ],
  4129. "description": "A PHP library for representing and manipulating collections.",
  4130. "keywords": [
  4131. "array",
  4132. "collection",
  4133. "hash",
  4134. "map",
  4135. "queue",
  4136. "set"
  4137. ],
  4138. "support": {
  4139. "issues": "https://github.com/ramsey/collection/issues",
  4140. "source": "https://github.com/ramsey/collection/tree/2.0.0"
  4141. },
  4142. "funding": [
  4143. {
  4144. "url": "https://github.com/ramsey",
  4145. "type": "github"
  4146. },
  4147. {
  4148. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4149. "type": "tidelift"
  4150. }
  4151. ],
  4152. "time": "2022-12-31T21:50:55+00:00"
  4153. },
  4154. {
  4155. "name": "ramsey/uuid",
  4156. "version": "4.7.4",
  4157. "source": {
  4158. "type": "git",
  4159. "url": "https://github.com/ramsey/uuid.git",
  4160. "reference": "60a4c63ab724854332900504274f6150ff26d286"
  4161. },
  4162. "dist": {
  4163. "type": "zip",
  4164. "url": "https://api.github.com/repos/ramsey/uuid/zipball/60a4c63ab724854332900504274f6150ff26d286",
  4165. "reference": "60a4c63ab724854332900504274f6150ff26d286",
  4166. "shasum": ""
  4167. },
  4168. "require": {
  4169. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11",
  4170. "ext-json": "*",
  4171. "php": "^8.0",
  4172. "ramsey/collection": "^1.2 || ^2.0"
  4173. },
  4174. "replace": {
  4175. "rhumsaa/uuid": "self.version"
  4176. },
  4177. "require-dev": {
  4178. "captainhook/captainhook": "^5.10",
  4179. "captainhook/plugin-composer": "^5.3",
  4180. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4181. "doctrine/annotations": "^1.8",
  4182. "ergebnis/composer-normalize": "^2.15",
  4183. "mockery/mockery": "^1.3",
  4184. "paragonie/random-lib": "^2",
  4185. "php-mock/php-mock": "^2.2",
  4186. "php-mock/php-mock-mockery": "^1.3",
  4187. "php-parallel-lint/php-parallel-lint": "^1.1",
  4188. "phpbench/phpbench": "^1.0",
  4189. "phpstan/extension-installer": "^1.1",
  4190. "phpstan/phpstan": "^1.8",
  4191. "phpstan/phpstan-mockery": "^1.1",
  4192. "phpstan/phpstan-phpunit": "^1.1",
  4193. "phpunit/phpunit": "^8.5 || ^9",
  4194. "ramsey/composer-repl": "^1.4",
  4195. "slevomat/coding-standard": "^8.4",
  4196. "squizlabs/php_codesniffer": "^3.5",
  4197. "vimeo/psalm": "^4.9"
  4198. },
  4199. "suggest": {
  4200. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4201. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4202. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4203. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4204. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4205. },
  4206. "type": "library",
  4207. "extra": {
  4208. "captainhook": {
  4209. "force-install": true
  4210. }
  4211. },
  4212. "autoload": {
  4213. "files": [
  4214. "src/functions.php"
  4215. ],
  4216. "psr-4": {
  4217. "Ramsey\\Uuid\\": "src/"
  4218. }
  4219. },
  4220. "notification-url": "https://packagist.org/downloads/",
  4221. "license": [
  4222. "MIT"
  4223. ],
  4224. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4225. "keywords": [
  4226. "guid",
  4227. "identifier",
  4228. "uuid"
  4229. ],
  4230. "support": {
  4231. "issues": "https://github.com/ramsey/uuid/issues",
  4232. "source": "https://github.com/ramsey/uuid/tree/4.7.4"
  4233. },
  4234. "funding": [
  4235. {
  4236. "url": "https://github.com/ramsey",
  4237. "type": "github"
  4238. },
  4239. {
  4240. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  4241. "type": "tidelift"
  4242. }
  4243. ],
  4244. "time": "2023-04-15T23:01:58+00:00"
  4245. },
  4246. {
  4247. "name": "sendgrid/php-http-client",
  4248. "version": "3.14.4",
  4249. "source": {
  4250. "type": "git",
  4251. "url": "https://github.com/sendgrid/php-http-client.git",
  4252. "reference": "6d589564522be290c7d7c18e51bcd8b03aeaf0b6"
  4253. },
  4254. "dist": {
  4255. "type": "zip",
  4256. "url": "https://api.github.com/repos/sendgrid/php-http-client/zipball/6d589564522be290c7d7c18e51bcd8b03aeaf0b6",
  4257. "reference": "6d589564522be290c7d7c18e51bcd8b03aeaf0b6",
  4258. "shasum": ""
  4259. },
  4260. "require": {
  4261. "ext-curl": "*",
  4262. "ext-json": "*",
  4263. "ext-mbstring": "*",
  4264. "php": ">=5.6"
  4265. },
  4266. "require-dev": {
  4267. "friendsofphp/php-cs-fixer": "^2.16",
  4268. "phpunit/phpunit": "^5.7 || ^6.5",
  4269. "sebastian/version": "^1.0.6",
  4270. "squizlabs/php_codesniffer": "~2.0"
  4271. },
  4272. "suggest": {
  4273. "composer/ca-bundle": "Including this library will ensure that a valid CA bundle is available for secure connections"
  4274. },
  4275. "type": "library",
  4276. "autoload": {
  4277. "psr-4": {
  4278. "SendGrid\\": "lib/"
  4279. }
  4280. },
  4281. "notification-url": "https://packagist.org/downloads/",
  4282. "license": [
  4283. "MIT"
  4284. ],
  4285. "authors": [
  4286. {
  4287. "name": "Matt Bernier",
  4288. "email": "[email protected]"
  4289. },
  4290. {
  4291. "name": "Elmer Thomas",
  4292. "email": "[email protected]"
  4293. }
  4294. ],
  4295. "description": "HTTP REST client, simplified for PHP",
  4296. "homepage": "http://github.com/sendgrid/php-http-client",
  4297. "keywords": [
  4298. "api",
  4299. "fluent",
  4300. "http",
  4301. "rest",
  4302. "sendgrid"
  4303. ],
  4304. "support": {
  4305. "issues": "https://github.com/sendgrid/php-http-client/issues",
  4306. "source": "https://github.com/sendgrid/php-http-client/tree/3.14.4"
  4307. },
  4308. "time": "2022-03-09T20:21:55+00:00"
  4309. },
  4310. {
  4311. "name": "sendgrid/sendgrid",
  4312. "version": "8.0.1",
  4313. "source": {
  4314. "type": "git",
  4315. "url": "https://github.com/sendgrid/sendgrid-php.git",
  4316. "reference": "285381257100b73aa50d8d70f0bcfb1f48b63747"
  4317. },
  4318. "dist": {
  4319. "type": "zip",
  4320. "url": "https://api.github.com/repos/sendgrid/sendgrid-php/zipball/285381257100b73aa50d8d70f0bcfb1f48b63747",
  4321. "reference": "285381257100b73aa50d8d70f0bcfb1f48b63747",
  4322. "shasum": ""
  4323. },
  4324. "require": {
  4325. "ext-curl": "*",
  4326. "ext-json": "*",
  4327. "ext-mbstring": "*",
  4328. "ext-openssl": "*",
  4329. "php": ">=7.3",
  4330. "sendgrid/php-http-client": "~3.10",
  4331. "starkbank/ecdsa": "0.*"
  4332. },
  4333. "replace": {
  4334. "sendgrid/sendgrid-php": "*"
  4335. },
  4336. "require-dev": {
  4337. "phpstan/phpstan": "^1.5",
  4338. "phpunit/phpunit": "^9",
  4339. "squizlabs/php_codesniffer": "3.*",
  4340. "swaggest/json-diff": "^3.4"
  4341. },
  4342. "type": "library",
  4343. "autoload": {
  4344. "psr-4": {
  4345. "SendGrid\\Mail\\": "lib/mail/",
  4346. "SendGrid\\Stats\\": "lib/stats/",
  4347. "SendGrid\\Helper\\": "lib/helper/",
  4348. "SendGrid\\Contacts\\": "lib/contacts/",
  4349. "SendGrid\\EventWebhook\\": "lib/eventwebhook/"
  4350. },
  4351. "classmap": [
  4352. "lib/BaseSendGridClientInterface.php",
  4353. "lib/SendGrid.php",
  4354. "lib/TwilioEmail.php"
  4355. ]
  4356. },
  4357. "notification-url": "https://packagist.org/downloads/",
  4358. "license": [
  4359. "MIT"
  4360. ],
  4361. "description": "This library allows you to quickly and easily send emails through Twilio SendGrid using PHP.",
  4362. "homepage": "http://github.com/sendgrid/sendgrid-php",
  4363. "keywords": [
  4364. "email",
  4365. "grid",
  4366. "send",
  4367. "sendgrid",
  4368. "twilio sendgrid"
  4369. ],
  4370. "support": {
  4371. "source": "https://github.com/sendgrid/sendgrid-php/tree/8.0.1"
  4372. },
  4373. "time": "2022-08-10T18:37:45+00:00"
  4374. },
  4375. {
  4376. "name": "sentry/sdk",
  4377. "version": "3.5.0",
  4378. "source": {
  4379. "type": "git",
  4380. "url": "https://github.com/getsentry/sentry-php-sdk.git",
  4381. "reference": "cd91b752f07c4bab9fb3b173f81af68a78a78d6d"
  4382. },
  4383. "dist": {
  4384. "type": "zip",
  4385. "url": "https://api.github.com/repos/getsentry/sentry-php-sdk/zipball/cd91b752f07c4bab9fb3b173f81af68a78a78d6d",
  4386. "reference": "cd91b752f07c4bab9fb3b173f81af68a78a78d6d",
  4387. "shasum": ""
  4388. },
  4389. "require": {
  4390. "http-interop/http-factory-guzzle": "^1.0",
  4391. "sentry/sentry": "^3.19",
  4392. "symfony/http-client": "^4.3|^5.0|^6.0"
  4393. },
  4394. "type": "metapackage",
  4395. "notification-url": "https://packagist.org/downloads/",
  4396. "license": [
  4397. "MIT"
  4398. ],
  4399. "authors": [
  4400. {
  4401. "name": "Sentry",
  4402. "email": "[email protected]"
  4403. }
  4404. ],
  4405. "description": "This is a metapackage shipping sentry/sentry with a recommended HTTP client.",
  4406. "homepage": "http://sentry.io",
  4407. "keywords": [
  4408. "crash-reporting",
  4409. "crash-reports",
  4410. "error-handler",
  4411. "error-monitoring",
  4412. "log",
  4413. "logging",
  4414. "sentry"
  4415. ],
  4416. "support": {
  4417. "issues": "https://github.com/getsentry/sentry-php-sdk/issues",
  4418. "source": "https://github.com/getsentry/sentry-php-sdk/tree/3.5.0"
  4419. },
  4420. "funding": [
  4421. {
  4422. "url": "https://sentry.io/",
  4423. "type": "custom"
  4424. },
  4425. {
  4426. "url": "https://sentry.io/pricing/",
  4427. "type": "custom"
  4428. }
  4429. ],
  4430. "time": "2023-06-12T17:50:36+00:00"
  4431. },
  4432. {
  4433. "name": "sentry/sentry",
  4434. "version": "3.21.0",
  4435. "source": {
  4436. "type": "git",
  4437. "url": "https://github.com/getsentry/sentry-php.git",
  4438. "reference": "624aafc22b84b089ffa43b71fb01e0096505ec4f"
  4439. },
  4440. "dist": {
  4441. "type": "zip",
  4442. "url": "https://api.github.com/repos/getsentry/sentry-php/zipball/624aafc22b84b089ffa43b71fb01e0096505ec4f",
  4443. "reference": "624aafc22b84b089ffa43b71fb01e0096505ec4f",
  4444. "shasum": ""
  4445. },
  4446. "require": {
  4447. "ext-json": "*",
  4448. "ext-mbstring": "*",
  4449. "guzzlehttp/promises": "^1.5.3|^2.0",
  4450. "jean85/pretty-package-versions": "^1.5|^2.0.4",
  4451. "php": "^7.2|^8.0",
  4452. "php-http/async-client-implementation": "^1.0",
  4453. "php-http/client-common": "^1.5|^2.0",
  4454. "php-http/discovery": "^1.15",
  4455. "php-http/httplug": "^1.1|^2.0",
  4456. "php-http/message": "^1.5",
  4457. "php-http/message-factory": "^1.1",
  4458. "psr/http-factory": "^1.0",
  4459. "psr/http-factory-implementation": "^1.0",
  4460. "psr/log": "^1.0|^2.0|^3.0",
  4461. "symfony/options-resolver": "^3.4.43|^4.4.30|^5.0.11|^6.0",
  4462. "symfony/polyfill-php80": "^1.17"
  4463. },
  4464. "conflict": {
  4465. "php-http/client-common": "1.8.0",
  4466. "raven/raven": "*"
  4467. },
  4468. "require-dev": {
  4469. "friendsofphp/php-cs-fixer": "^2.19|3.4.*",
  4470. "guzzlehttp/psr7": "^1.8.4|^2.1.1",
  4471. "http-interop/http-factory-guzzle": "^1.0",
  4472. "monolog/monolog": "^1.6|^2.0|^3.0",
  4473. "nikic/php-parser": "^4.10.3",
  4474. "php-http/mock-client": "^1.3",
  4475. "phpbench/phpbench": "^1.0",
  4476. "phpstan/extension-installer": "^1.0",
  4477. "phpstan/phpstan": "^1.3",
  4478. "phpstan/phpstan-phpunit": "^1.0",
  4479. "phpunit/phpunit": "^8.5.14|^9.4",
  4480. "symfony/phpunit-bridge": "^5.2|^6.0",
  4481. "vimeo/psalm": "^4.17"
  4482. },
  4483. "suggest": {
  4484. "monolog/monolog": "Allow sending log messages to Sentry by using the included Monolog handler."
  4485. },
  4486. "type": "library",
  4487. "autoload": {
  4488. "files": [
  4489. "src/functions.php"
  4490. ],
  4491. "psr-4": {
  4492. "Sentry\\": "src/"
  4493. }
  4494. },
  4495. "notification-url": "https://packagist.org/downloads/",
  4496. "license": [
  4497. "MIT"
  4498. ],
  4499. "authors": [
  4500. {
  4501. "name": "Sentry",
  4502. "email": "[email protected]"
  4503. }
  4504. ],
  4505. "description": "A PHP SDK for Sentry (http://sentry.io)",
  4506. "homepage": "http://sentry.io",
  4507. "keywords": [
  4508. "crash-reporting",
  4509. "crash-reports",
  4510. "error-handler",
  4511. "error-monitoring",
  4512. "log",
  4513. "logging",
  4514. "sentry"
  4515. ],
  4516. "support": {
  4517. "issues": "https://github.com/getsentry/sentry-php/issues",
  4518. "source": "https://github.com/getsentry/sentry-php/tree/3.21.0"
  4519. },
  4520. "funding": [
  4521. {
  4522. "url": "https://sentry.io/",
  4523. "type": "custom"
  4524. },
  4525. {
  4526. "url": "https://sentry.io/pricing/",
  4527. "type": "custom"
  4528. }
  4529. ],
  4530. "time": "2023-07-31T15:31:24+00:00"
  4531. },
  4532. {
  4533. "name": "slim/http",
  4534. "version": "1.3",
  4535. "source": {
  4536. "type": "git",
  4537. "url": "https://github.com/slimphp/Slim-Http.git",
  4538. "reference": "9542edbe469b7c0f3084c2467efea972387f5beb"
  4539. },
  4540. "dist": {
  4541. "type": "zip",
  4542. "url": "https://api.github.com/repos/slimphp/Slim-Http/zipball/9542edbe469b7c0f3084c2467efea972387f5beb",
  4543. "reference": "9542edbe469b7c0f3084c2467efea972387f5beb",
  4544. "shasum": ""
  4545. },
  4546. "require": {
  4547. "ext-fileinfo": "*",
  4548. "ext-json": "*",
  4549. "ext-libxml": "*",
  4550. "ext-simplexml": "*",
  4551. "php": "^7.4 || ^8.0",
  4552. "psr/http-factory": "^1.0",
  4553. "psr/http-message": "^1.0"
  4554. },
  4555. "require-dev": {
  4556. "adriansuter/php-autoload-override": "^1.3",
  4557. "laminas/laminas-diactoros": "^2.17",
  4558. "nyholm/psr7": "^1.5",
  4559. "php-http/psr7-integration-tests": "dev-master",
  4560. "phpstan/phpstan": "^1.8",
  4561. "phpunit/phpunit": "^9.5",
  4562. "squizlabs/php_codesniffer": "^3.7"
  4563. },
  4564. "type": "library",
  4565. "autoload": {
  4566. "psr-4": {
  4567. "Slim\\Http\\": "src/"
  4568. }
  4569. },
  4570. "notification-url": "https://packagist.org/downloads/",
  4571. "license": [
  4572. "MIT"
  4573. ],
  4574. "authors": [
  4575. {
  4576. "name": "Josh Lockhart",
  4577. "email": "[email protected]",
  4578. "homepage": "http://joshlockhart.com"
  4579. },
  4580. {
  4581. "name": "Andrew Smith",
  4582. "email": "[email protected]",
  4583. "homepage": "http://silentworks.co.uk"
  4584. },
  4585. {
  4586. "name": "Rob Allen",
  4587. "email": "[email protected]",
  4588. "homepage": "http://akrabat.com"
  4589. },
  4590. {
  4591. "name": "Pierre Berube",
  4592. "email": "[email protected]",
  4593. "homepage": "http://www.lgse.com"
  4594. }
  4595. ],
  4596. "description": "Slim PSR-7 Object Decorators",
  4597. "homepage": "http://slimframework.com",
  4598. "keywords": [
  4599. "http",
  4600. "psr-7",
  4601. "psr7"
  4602. ],
  4603. "support": {
  4604. "issues": "https://github.com/slimphp/Slim-Http/issues",
  4605. "source": "https://github.com/slimphp/Slim-Http/tree/1.3"
  4606. },
  4607. "time": "2022-09-14T15:45:07+00:00"
  4608. },
  4609. {
  4610. "name": "slim/slim",
  4611. "version": "4.12.0",
  4612. "source": {
  4613. "type": "git",
  4614. "url": "https://github.com/slimphp/Slim.git",
  4615. "reference": "e9e99c2b24398b967841c6c4c3048622cc7e2b18"
  4616. },
  4617. "dist": {
  4618. "type": "zip",
  4619. "url": "https://api.github.com/repos/slimphp/Slim/zipball/e9e99c2b24398b967841c6c4c3048622cc7e2b18",
  4620. "reference": "e9e99c2b24398b967841c6c4c3048622cc7e2b18",
  4621. "shasum": ""
  4622. },
  4623. "require": {
  4624. "ext-json": "*",
  4625. "nikic/fast-route": "^1.3",
  4626. "php": "^7.4 || ^8.0",
  4627. "psr/container": "^1.0 || ^2.0",
  4628. "psr/http-factory": "^1.0",
  4629. "psr/http-message": "^1.1",
  4630. "psr/http-server-handler": "^1.0",
  4631. "psr/http-server-middleware": "^1.0",
  4632. "psr/log": "^1.1 || ^2.0 || ^3.0"
  4633. },
  4634. "require-dev": {
  4635. "adriansuter/php-autoload-override": "^1.4",
  4636. "ext-simplexml": "*",
  4637. "guzzlehttp/psr7": "^2.5",
  4638. "httpsoft/http-message": "^1.1",
  4639. "httpsoft/http-server-request": "^1.1",
  4640. "laminas/laminas-diactoros": "^2.17",
  4641. "nyholm/psr7": "^1.8",
  4642. "nyholm/psr7-server": "^1.0",
  4643. "phpspec/prophecy": "^1.17",
  4644. "phpspec/prophecy-phpunit": "^2.0",
  4645. "phpstan/phpstan": "^1.10",
  4646. "phpunit/phpunit": "^9.6",
  4647. "slim/http": "^1.3",
  4648. "slim/psr7": "^1.6",
  4649. "squizlabs/php_codesniffer": "^3.7"
  4650. },
  4651. "suggest": {
  4652. "ext-simplexml": "Needed to support XML format in BodyParsingMiddleware",
  4653. "ext-xml": "Needed to support XML format in BodyParsingMiddleware",
  4654. "php-di/php-di": "PHP-DI is the recommended container library to be used with Slim",
  4655. "slim/psr7": "Slim PSR-7 implementation. See https://www.slimframework.com/docs/v4/start/installation.html for more information."
  4656. },
  4657. "type": "library",
  4658. "autoload": {
  4659. "psr-4": {
  4660. "Slim\\": "Slim"
  4661. }
  4662. },
  4663. "notification-url": "https://packagist.org/downloads/",
  4664. "license": [
  4665. "MIT"
  4666. ],
  4667. "authors": [
  4668. {
  4669. "name": "Josh Lockhart",
  4670. "email": "[email protected]",
  4671. "homepage": "https://joshlockhart.com"
  4672. },
  4673. {
  4674. "name": "Andrew Smith",
  4675. "email": "[email protected]",
  4676. "homepage": "http://silentworks.co.uk"
  4677. },
  4678. {
  4679. "name": "Rob Allen",
  4680. "email": "[email protected]",
  4681. "homepage": "http://akrabat.com"
  4682. },
  4683. {
  4684. "name": "Pierre Berube",
  4685. "email": "[email protected]",
  4686. "homepage": "http://www.lgse.com"
  4687. },
  4688. {
  4689. "name": "Gabriel Manricks",
  4690. "email": "[email protected]",
  4691. "homepage": "http://gabrielmanricks.com"
  4692. }
  4693. ],
  4694. "description": "Slim is a PHP micro framework that helps you quickly write simple yet powerful web applications and APIs",
  4695. "homepage": "https://www.slimframework.com",
  4696. "keywords": [
  4697. "api",
  4698. "framework",
  4699. "micro",
  4700. "router"
  4701. ],
  4702. "support": {
  4703. "docs": "https://www.slimframework.com/docs/v4/",
  4704. "forum": "https://discourse.slimframework.com/",
  4705. "irc": "irc://irc.freenode.net:6667/slimphp",
  4706. "issues": "https://github.com/slimphp/Slim/issues",
  4707. "rss": "https://www.slimframework.com/blog/feed.rss",
  4708. "slack": "https://slimphp.slack.com/",
  4709. "source": "https://github.com/slimphp/Slim",
  4710. "wiki": "https://github.com/slimphp/Slim/wiki"
  4711. },
  4712. "funding": [
  4713. {
  4714. "url": "https://opencollective.com/slimphp",
  4715. "type": "open_collective"
  4716. },
  4717. {
  4718. "url": "https://tidelift.com/funding/github/packagist/slim/slim",
  4719. "type": "tidelift"
  4720. }
  4721. ],
  4722. "time": "2023-07-23T04:54:29+00:00"
  4723. },
  4724. {
  4725. "name": "smarty/smarty",
  4726. "version": "v4.3.2",
  4727. "source": {
  4728. "type": "git",
  4729. "url": "https://github.com/smarty-php/smarty.git",
  4730. "reference": "1d9cda2be34fd6edb74924684260636fd0b89288"
  4731. },
  4732. "dist": {
  4733. "type": "zip",
  4734. "url": "https://api.github.com/repos/smarty-php/smarty/zipball/1d9cda2be34fd6edb74924684260636fd0b89288",
  4735. "reference": "1d9cda2be34fd6edb74924684260636fd0b89288",
  4736. "shasum": ""
  4737. },
  4738. "require": {
  4739. "php": "^7.1 || ^8.0"
  4740. },
  4741. "require-dev": {
  4742. "phpunit/phpunit": "^8.5 || ^7.5",
  4743. "smarty/smarty-lexer": "^3.1"
  4744. },
  4745. "type": "library",
  4746. "extra": {
  4747. "branch-alias": {
  4748. "dev-master": "4.0.x-dev"
  4749. }
  4750. },
  4751. "autoload": {
  4752. "classmap": [
  4753. "libs/"
  4754. ]
  4755. },
  4756. "notification-url": "https://packagist.org/downloads/",
  4757. "license": [
  4758. "LGPL-3.0"
  4759. ],
  4760. "authors": [
  4761. {
  4762. "name": "Monte Ohrt",
  4763. "email": "[email protected]"
  4764. },
  4765. {
  4766. "name": "Uwe Tews",
  4767. "email": "[email protected]"
  4768. },
  4769. {
  4770. "name": "Rodney Rehm",
  4771. "email": "[email protected]"
  4772. },
  4773. {
  4774. "name": "Simon Wisselink",
  4775. "homepage": "https://www.iwink.nl/"
  4776. }
  4777. ],
  4778. "description": "Smarty - the compiling PHP template engine",
  4779. "homepage": "https://smarty-php.github.io/smarty/",
  4780. "keywords": [
  4781. "templating"
  4782. ],
  4783. "support": {
  4784. "forum": "https://github.com/smarty-php/smarty/discussions",
  4785. "issues": "https://github.com/smarty-php/smarty/issues",
  4786. "source": "https://github.com/smarty-php/smarty/tree/v4.3.2"
  4787. },
  4788. "time": "2023-07-19T10:27:36+00:00"
  4789. },
  4790. {
  4791. "name": "srmklive/paypal",
  4792. "version": "3.0.24",
  4793. "source": {
  4794. "type": "git",
  4795. "url": "https://github.com/srmklive/laravel-paypal.git",
  4796. "reference": "f9b3e6162f4b7ded0f53737101af5cf1ea9a02a2"
  4797. },
  4798. "dist": {
  4799. "type": "zip",
  4800. "url": "https://api.github.com/repos/srmklive/laravel-paypal/zipball/f9b3e6162f4b7ded0f53737101af5cf1ea9a02a2",
  4801. "reference": "f9b3e6162f4b7ded0f53737101af5cf1ea9a02a2",
  4802. "shasum": ""
  4803. },
  4804. "require": {
  4805. "ext-curl": "*",
  4806. "guzzlehttp/guzzle": "~7.0",
  4807. "illuminate/support": "~6.0|~7.0|~8.0|~9.0|^10.0",
  4808. "nesbot/carbon": "~2.0",
  4809. "php": ">=7.2|^8.0"
  4810. },
  4811. "require-dev": {
  4812. "phpstan/phpstan": "^1.10",
  4813. "phpunit/phpunit": "^8.0|^9.0|^10.0",
  4814. "symfony/var-dumper": "~5.0"
  4815. },
  4816. "type": "library",
  4817. "extra": {
  4818. "laravel": {
  4819. "providers": [
  4820. "Srmklive\\PayPal\\Providers\\PayPalServiceProvider"
  4821. ],
  4822. "aliases": {
  4823. "PayPal": "Srmklive\\PayPal\\Facades\\PayPal"
  4824. }
  4825. }
  4826. },
  4827. "autoload": {
  4828. "psr-4": {
  4829. "Srmklive\\PayPal\\": "src/"
  4830. }
  4831. },
  4832. "notification-url": "https://packagist.org/downloads/",
  4833. "license": [
  4834. "MIT"
  4835. ],
  4836. "authors": [
  4837. {
  4838. "name": "Raza Mehdi",
  4839. "email": "[email protected]"
  4840. }
  4841. ],
  4842. "description": "Laravel plugin For Processing Payments Through Paypal Express Checkout. Can Be Used Independently With Other Applications.",
  4843. "keywords": [
  4844. "http",
  4845. "laravel paypal",
  4846. "paypal",
  4847. "rest",
  4848. "web service"
  4849. ],
  4850. "support": {
  4851. "issues": "https://github.com/srmklive/laravel-paypal/issues",
  4852. "source": "https://github.com/srmklive/laravel-paypal/tree/3.0.24"
  4853. },
  4854. "time": "2023-09-06T22:26:06+00:00"
  4855. },
  4856. {
  4857. "name": "starkbank/ecdsa",
  4858. "version": "0.0.5",
  4859. "source": {
  4860. "type": "git",
  4861. "url": "https://github.com/starkbank/ecdsa-php.git",
  4862. "reference": "484bedac47bac4012dc73df91da221f0a66845cb"
  4863. },
  4864. "dist": {
  4865. "type": "zip",
  4866. "url": "https://api.github.com/repos/starkbank/ecdsa-php/zipball/484bedac47bac4012dc73df91da221f0a66845cb",
  4867. "reference": "484bedac47bac4012dc73df91da221f0a66845cb",
  4868. "shasum": ""
  4869. },
  4870. "require": {
  4871. "php": ">=5.5"
  4872. },
  4873. "type": "library",
  4874. "autoload": {
  4875. "files": [
  4876. "src/ellipticcurve.php"
  4877. ]
  4878. },
  4879. "notification-url": "https://packagist.org/downloads/",
  4880. "license": [
  4881. "MIT"
  4882. ],
  4883. "authors": [
  4884. {
  4885. "name": "StarkBank",
  4886. "email": "[email protected]",
  4887. "homepage": "https://starkbank.com",
  4888. "role": "Developer"
  4889. }
  4890. ],
  4891. "description": "fast openSSL-compatible implementation of the Elliptic Curve Digital Signature Algorithm (ECDSA)",
  4892. "homepage": "https://github.com/starkbank/ecdsa-php",
  4893. "support": {
  4894. "issues": "https://github.com/starkbank/ecdsa-php/issues",
  4895. "source": "https://github.com/starkbank/ecdsa-php/tree/v0.0.5"
  4896. },
  4897. "time": "2021-06-06T22:24:49+00:00"
  4898. },
  4899. {
  4900. "name": "stripe/stripe-php",
  4901. "version": "v12.2.0",
  4902. "source": {
  4903. "type": "git",
  4904. "url": "https://github.com/stripe/stripe-php.git",
  4905. "reference": "07829f2102362b0bfe0b680dab801e00cc4dce89"
  4906. },
  4907. "dist": {
  4908. "type": "zip",
  4909. "url": "https://api.github.com/repos/stripe/stripe-php/zipball/07829f2102362b0bfe0b680dab801e00cc4dce89",
  4910. "reference": "07829f2102362b0bfe0b680dab801e00cc4dce89",
  4911. "shasum": ""
  4912. },
  4913. "require": {
  4914. "ext-curl": "*",
  4915. "ext-json": "*",
  4916. "ext-mbstring": "*",
  4917. "php": ">=5.6.0"
  4918. },
  4919. "require-dev": {
  4920. "friendsofphp/php-cs-fixer": "3.5.0",
  4921. "php-coveralls/php-coveralls": "^2.5",
  4922. "phpstan/phpstan": "^1.2",
  4923. "phpunit/phpunit": "^5.7 || ^9.0",
  4924. "squizlabs/php_codesniffer": "^3.3"
  4925. },
  4926. "type": "library",
  4927. "extra": {
  4928. "branch-alias": {
  4929. "dev-master": "2.0-dev"
  4930. }
  4931. },
  4932. "autoload": {
  4933. "psr-4": {
  4934. "Stripe\\": "lib/"
  4935. }
  4936. },
  4937. "notification-url": "https://packagist.org/downloads/",
  4938. "license": [
  4939. "MIT"
  4940. ],
  4941. "authors": [
  4942. {
  4943. "name": "Stripe and contributors",
  4944. "homepage": "https://github.com/stripe/stripe-php/contributors"
  4945. }
  4946. ],
  4947. "description": "Stripe PHP Library",
  4948. "homepage": "https://stripe.com/",
  4949. "keywords": [
  4950. "api",
  4951. "payment processing",
  4952. "stripe"
  4953. ],
  4954. "support": {
  4955. "issues": "https://github.com/stripe/stripe-php/issues",
  4956. "source": "https://github.com/stripe/stripe-php/tree/v12.2.0"
  4957. },
  4958. "time": "2023-09-07T18:03:22+00:00"
  4959. },
  4960. {
  4961. "name": "symfony/deprecation-contracts",
  4962. "version": "v3.3.0",
  4963. "source": {
  4964. "type": "git",
  4965. "url": "https://github.com/symfony/deprecation-contracts.git",
  4966. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf"
  4967. },
  4968. "dist": {
  4969. "type": "zip",
  4970. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf",
  4971. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf",
  4972. "shasum": ""
  4973. },
  4974. "require": {
  4975. "php": ">=8.1"
  4976. },
  4977. "type": "library",
  4978. "extra": {
  4979. "branch-alias": {
  4980. "dev-main": "3.4-dev"
  4981. },
  4982. "thanks": {
  4983. "name": "symfony/contracts",
  4984. "url": "https://github.com/symfony/contracts"
  4985. }
  4986. },
  4987. "autoload": {
  4988. "files": [
  4989. "function.php"
  4990. ]
  4991. },
  4992. "notification-url": "https://packagist.org/downloads/",
  4993. "license": [
  4994. "MIT"
  4995. ],
  4996. "authors": [
  4997. {
  4998. "name": "Nicolas Grekas",
  4999. "email": "[email protected]"
  5000. },
  5001. {
  5002. "name": "Symfony Community",
  5003. "homepage": "https://symfony.com/contributors"
  5004. }
  5005. ],
  5006. "description": "A generic function and convention to trigger deprecation notices",
  5007. "homepage": "https://symfony.com",
  5008. "support": {
  5009. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.3.0"
  5010. },
  5011. "funding": [
  5012. {
  5013. "url": "https://symfony.com/sponsor",
  5014. "type": "custom"
  5015. },
  5016. {
  5017. "url": "https://github.com/fabpot",
  5018. "type": "github"
  5019. },
  5020. {
  5021. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5022. "type": "tidelift"
  5023. }
  5024. ],
  5025. "time": "2023-05-23T14:45:45+00:00"
  5026. },
  5027. {
  5028. "name": "symfony/http-client",
  5029. "version": "v6.3.2",
  5030. "source": {
  5031. "type": "git",
  5032. "url": "https://github.com/symfony/http-client.git",
  5033. "reference": "15f9f4bad62bfcbe48b5dedd866f04a08fc7ff00"
  5034. },
  5035. "dist": {
  5036. "type": "zip",
  5037. "url": "https://api.github.com/repos/symfony/http-client/zipball/15f9f4bad62bfcbe48b5dedd866f04a08fc7ff00",
  5038. "reference": "15f9f4bad62bfcbe48b5dedd866f04a08fc7ff00",
  5039. "shasum": ""
  5040. },
  5041. "require": {
  5042. "php": ">=8.1",
  5043. "psr/log": "^1|^2|^3",
  5044. "symfony/deprecation-contracts": "^2.5|^3",
  5045. "symfony/http-client-contracts": "^3",
  5046. "symfony/service-contracts": "^2.5|^3"
  5047. },
  5048. "conflict": {
  5049. "php-http/discovery": "<1.15",
  5050. "symfony/http-foundation": "<6.3"
  5051. },
  5052. "provide": {
  5053. "php-http/async-client-implementation": "*",
  5054. "php-http/client-implementation": "*",
  5055. "psr/http-client-implementation": "1.0",
  5056. "symfony/http-client-implementation": "3.0"
  5057. },
  5058. "require-dev": {
  5059. "amphp/amp": "^2.5",
  5060. "amphp/http-client": "^4.2.1",
  5061. "amphp/http-tunnel": "^1.0",
  5062. "amphp/socket": "^1.1",
  5063. "guzzlehttp/promises": "^1.4",
  5064. "nyholm/psr7": "^1.0",
  5065. "php-http/httplug": "^1.0|^2.0",
  5066. "psr/http-client": "^1.0",
  5067. "symfony/dependency-injection": "^5.4|^6.0",
  5068. "symfony/http-kernel": "^5.4|^6.0",
  5069. "symfony/process": "^5.4|^6.0",
  5070. "symfony/stopwatch": "^5.4|^6.0"
  5071. },
  5072. "type": "library",
  5073. "autoload": {
  5074. "psr-4": {
  5075. "Symfony\\Component\\HttpClient\\": ""
  5076. },
  5077. "exclude-from-classmap": [
  5078. "/Tests/"
  5079. ]
  5080. },
  5081. "notification-url": "https://packagist.org/downloads/",
  5082. "license": [
  5083. "MIT"
  5084. ],
  5085. "authors": [
  5086. {
  5087. "name": "Nicolas Grekas",
  5088. "email": "[email protected]"
  5089. },
  5090. {
  5091. "name": "Symfony Community",
  5092. "homepage": "https://symfony.com/contributors"
  5093. }
  5094. ],
  5095. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  5096. "homepage": "https://symfony.com",
  5097. "keywords": [
  5098. "http"
  5099. ],
  5100. "support": {
  5101. "source": "https://github.com/symfony/http-client/tree/v6.3.2"
  5102. },
  5103. "funding": [
  5104. {
  5105. "url": "https://symfony.com/sponsor",
  5106. "type": "custom"
  5107. },
  5108. {
  5109. "url": "https://github.com/fabpot",
  5110. "type": "github"
  5111. },
  5112. {
  5113. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5114. "type": "tidelift"
  5115. }
  5116. ],
  5117. "time": "2023-07-05T08:41:27+00:00"
  5118. },
  5119. {
  5120. "name": "symfony/http-client-contracts",
  5121. "version": "v3.3.0",
  5122. "source": {
  5123. "type": "git",
  5124. "url": "https://github.com/symfony/http-client-contracts.git",
  5125. "reference": "3b66325d0176b4ec826bffab57c9037d759c31fb"
  5126. },
  5127. "dist": {
  5128. "type": "zip",
  5129. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/3b66325d0176b4ec826bffab57c9037d759c31fb",
  5130. "reference": "3b66325d0176b4ec826bffab57c9037d759c31fb",
  5131. "shasum": ""
  5132. },
  5133. "require": {
  5134. "php": ">=8.1"
  5135. },
  5136. "type": "library",
  5137. "extra": {
  5138. "branch-alias": {
  5139. "dev-main": "3.4-dev"
  5140. },
  5141. "thanks": {
  5142. "name": "symfony/contracts",
  5143. "url": "https://github.com/symfony/contracts"
  5144. }
  5145. },
  5146. "autoload": {
  5147. "psr-4": {
  5148. "Symfony\\Contracts\\HttpClient\\": ""
  5149. },
  5150. "exclude-from-classmap": [
  5151. "/Test/"
  5152. ]
  5153. },
  5154. "notification-url": "https://packagist.org/downloads/",
  5155. "license": [
  5156. "MIT"
  5157. ],
  5158. "authors": [
  5159. {
  5160. "name": "Nicolas Grekas",
  5161. "email": "[email protected]"
  5162. },
  5163. {
  5164. "name": "Symfony Community",
  5165. "homepage": "https://symfony.com/contributors"
  5166. }
  5167. ],
  5168. "description": "Generic abstractions related to HTTP clients",
  5169. "homepage": "https://symfony.com",
  5170. "keywords": [
  5171. "abstractions",
  5172. "contracts",
  5173. "decoupling",
  5174. "interfaces",
  5175. "interoperability",
  5176. "standards"
  5177. ],
  5178. "support": {
  5179. "source": "https://github.com/symfony/http-client-contracts/tree/v3.3.0"
  5180. },
  5181. "funding": [
  5182. {
  5183. "url": "https://symfony.com/sponsor",
  5184. "type": "custom"
  5185. },
  5186. {
  5187. "url": "https://github.com/fabpot",
  5188. "type": "github"
  5189. },
  5190. {
  5191. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5192. "type": "tidelift"
  5193. }
  5194. ],
  5195. "time": "2023-05-23T14:45:45+00:00"
  5196. },
  5197. {
  5198. "name": "symfony/http-foundation",
  5199. "version": "v6.3.4",
  5200. "source": {
  5201. "type": "git",
  5202. "url": "https://github.com/symfony/http-foundation.git",
  5203. "reference": "cac1556fdfdf6719668181974104e6fcfa60e844"
  5204. },
  5205. "dist": {
  5206. "type": "zip",
  5207. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/cac1556fdfdf6719668181974104e6fcfa60e844",
  5208. "reference": "cac1556fdfdf6719668181974104e6fcfa60e844",
  5209. "shasum": ""
  5210. },
  5211. "require": {
  5212. "php": ">=8.1",
  5213. "symfony/deprecation-contracts": "^2.5|^3",
  5214. "symfony/polyfill-mbstring": "~1.1",
  5215. "symfony/polyfill-php83": "^1.27"
  5216. },
  5217. "conflict": {
  5218. "symfony/cache": "<6.2"
  5219. },
  5220. "require-dev": {
  5221. "doctrine/dbal": "^2.13.1|^3.0",
  5222. "predis/predis": "^1.1|^2.0",
  5223. "symfony/cache": "^5.4|^6.0",
  5224. "symfony/dependency-injection": "^5.4|^6.0",
  5225. "symfony/expression-language": "^5.4|^6.0",
  5226. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  5227. "symfony/mime": "^5.4|^6.0",
  5228. "symfony/rate-limiter": "^5.2|^6.0"
  5229. },
  5230. "type": "library",
  5231. "autoload": {
  5232. "psr-4": {
  5233. "Symfony\\Component\\HttpFoundation\\": ""
  5234. },
  5235. "exclude-from-classmap": [
  5236. "/Tests/"
  5237. ]
  5238. },
  5239. "notification-url": "https://packagist.org/downloads/",
  5240. "license": [
  5241. "MIT"
  5242. ],
  5243. "authors": [
  5244. {
  5245. "name": "Fabien Potencier",
  5246. "email": "[email protected]"
  5247. },
  5248. {
  5249. "name": "Symfony Community",
  5250. "homepage": "https://symfony.com/contributors"
  5251. }
  5252. ],
  5253. "description": "Defines an object-oriented layer for the HTTP specification",
  5254. "homepage": "https://symfony.com",
  5255. "support": {
  5256. "source": "https://github.com/symfony/http-foundation/tree/v6.3.4"
  5257. },
  5258. "funding": [
  5259. {
  5260. "url": "https://symfony.com/sponsor",
  5261. "type": "custom"
  5262. },
  5263. {
  5264. "url": "https://github.com/fabpot",
  5265. "type": "github"
  5266. },
  5267. {
  5268. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5269. "type": "tidelift"
  5270. }
  5271. ],
  5272. "time": "2023-08-22T08:20:46+00:00"
  5273. },
  5274. {
  5275. "name": "symfony/options-resolver",
  5276. "version": "v6.3.0",
  5277. "source": {
  5278. "type": "git",
  5279. "url": "https://github.com/symfony/options-resolver.git",
  5280. "reference": "a10f19f5198d589d5c33333cffe98dc9820332dd"
  5281. },
  5282. "dist": {
  5283. "type": "zip",
  5284. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/a10f19f5198d589d5c33333cffe98dc9820332dd",
  5285. "reference": "a10f19f5198d589d5c33333cffe98dc9820332dd",
  5286. "shasum": ""
  5287. },
  5288. "require": {
  5289. "php": ">=8.1",
  5290. "symfony/deprecation-contracts": "^2.5|^3"
  5291. },
  5292. "type": "library",
  5293. "autoload": {
  5294. "psr-4": {
  5295. "Symfony\\Component\\OptionsResolver\\": ""
  5296. },
  5297. "exclude-from-classmap": [
  5298. "/Tests/"
  5299. ]
  5300. },
  5301. "notification-url": "https://packagist.org/downloads/",
  5302. "license": [
  5303. "MIT"
  5304. ],
  5305. "authors": [
  5306. {
  5307. "name": "Fabien Potencier",
  5308. "email": "[email protected]"
  5309. },
  5310. {
  5311. "name": "Symfony Community",
  5312. "homepage": "https://symfony.com/contributors"
  5313. }
  5314. ],
  5315. "description": "Provides an improved replacement for the array_replace PHP function",
  5316. "homepage": "https://symfony.com",
  5317. "keywords": [
  5318. "config",
  5319. "configuration",
  5320. "options"
  5321. ],
  5322. "support": {
  5323. "source": "https://github.com/symfony/options-resolver/tree/v6.3.0"
  5324. },
  5325. "funding": [
  5326. {
  5327. "url": "https://symfony.com/sponsor",
  5328. "type": "custom"
  5329. },
  5330. {
  5331. "url": "https://github.com/fabpot",
  5332. "type": "github"
  5333. },
  5334. {
  5335. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5336. "type": "tidelift"
  5337. }
  5338. ],
  5339. "time": "2023-05-12T14:21:09+00:00"
  5340. },
  5341. {
  5342. "name": "symfony/polyfill-ctype",
  5343. "version": "v1.28.0",
  5344. "source": {
  5345. "type": "git",
  5346. "url": "https://github.com/symfony/polyfill-ctype.git",
  5347. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb"
  5348. },
  5349. "dist": {
  5350. "type": "zip",
  5351. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
  5352. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
  5353. "shasum": ""
  5354. },
  5355. "require": {
  5356. "php": ">=7.1"
  5357. },
  5358. "provide": {
  5359. "ext-ctype": "*"
  5360. },
  5361. "suggest": {
  5362. "ext-ctype": "For best performance"
  5363. },
  5364. "type": "library",
  5365. "extra": {
  5366. "branch-alias": {
  5367. "dev-main": "1.28-dev"
  5368. },
  5369. "thanks": {
  5370. "name": "symfony/polyfill",
  5371. "url": "https://github.com/symfony/polyfill"
  5372. }
  5373. },
  5374. "autoload": {
  5375. "files": [
  5376. "bootstrap.php"
  5377. ],
  5378. "psr-4": {
  5379. "Symfony\\Polyfill\\Ctype\\": ""
  5380. }
  5381. },
  5382. "notification-url": "https://packagist.org/downloads/",
  5383. "license": [
  5384. "MIT"
  5385. ],
  5386. "authors": [
  5387. {
  5388. "name": "Gert de Pagter",
  5389. "email": "[email protected]"
  5390. },
  5391. {
  5392. "name": "Symfony Community",
  5393. "homepage": "https://symfony.com/contributors"
  5394. }
  5395. ],
  5396. "description": "Symfony polyfill for ctype functions",
  5397. "homepage": "https://symfony.com",
  5398. "keywords": [
  5399. "compatibility",
  5400. "ctype",
  5401. "polyfill",
  5402. "portable"
  5403. ],
  5404. "support": {
  5405. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.28.0"
  5406. },
  5407. "funding": [
  5408. {
  5409. "url": "https://symfony.com/sponsor",
  5410. "type": "custom"
  5411. },
  5412. {
  5413. "url": "https://github.com/fabpot",
  5414. "type": "github"
  5415. },
  5416. {
  5417. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5418. "type": "tidelift"
  5419. }
  5420. ],
  5421. "time": "2023-01-26T09:26:14+00:00"
  5422. },
  5423. {
  5424. "name": "symfony/polyfill-iconv",
  5425. "version": "v1.28.0",
  5426. "source": {
  5427. "type": "git",
  5428. "url": "https://github.com/symfony/polyfill-iconv.git",
  5429. "reference": "6de50471469b8c9afc38164452ab2b6170ee71c1"
  5430. },
  5431. "dist": {
  5432. "type": "zip",
  5433. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/6de50471469b8c9afc38164452ab2b6170ee71c1",
  5434. "reference": "6de50471469b8c9afc38164452ab2b6170ee71c1",
  5435. "shasum": ""
  5436. },
  5437. "require": {
  5438. "php": ">=7.1"
  5439. },
  5440. "provide": {
  5441. "ext-iconv": "*"
  5442. },
  5443. "suggest": {
  5444. "ext-iconv": "For best performance"
  5445. },
  5446. "type": "library",
  5447. "extra": {
  5448. "branch-alias": {
  5449. "dev-main": "1.28-dev"
  5450. },
  5451. "thanks": {
  5452. "name": "symfony/polyfill",
  5453. "url": "https://github.com/symfony/polyfill"
  5454. }
  5455. },
  5456. "autoload": {
  5457. "files": [
  5458. "bootstrap.php"
  5459. ],
  5460. "psr-4": {
  5461. "Symfony\\Polyfill\\Iconv\\": ""
  5462. }
  5463. },
  5464. "notification-url": "https://packagist.org/downloads/",
  5465. "license": [
  5466. "MIT"
  5467. ],
  5468. "authors": [
  5469. {
  5470. "name": "Nicolas Grekas",
  5471. "email": "[email protected]"
  5472. },
  5473. {
  5474. "name": "Symfony Community",
  5475. "homepage": "https://symfony.com/contributors"
  5476. }
  5477. ],
  5478. "description": "Symfony polyfill for the Iconv extension",
  5479. "homepage": "https://symfony.com",
  5480. "keywords": [
  5481. "compatibility",
  5482. "iconv",
  5483. "polyfill",
  5484. "portable",
  5485. "shim"
  5486. ],
  5487. "support": {
  5488. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.28.0"
  5489. },
  5490. "funding": [
  5491. {
  5492. "url": "https://symfony.com/sponsor",
  5493. "type": "custom"
  5494. },
  5495. {
  5496. "url": "https://github.com/fabpot",
  5497. "type": "github"
  5498. },
  5499. {
  5500. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5501. "type": "tidelift"
  5502. }
  5503. ],
  5504. "time": "2023-01-26T09:26:14+00:00"
  5505. },
  5506. {
  5507. "name": "symfony/polyfill-intl-grapheme",
  5508. "version": "v1.28.0",
  5509. "source": {
  5510. "type": "git",
  5511. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5512. "reference": "875e90aeea2777b6f135677f618529449334a612"
  5513. },
  5514. "dist": {
  5515. "type": "zip",
  5516. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/875e90aeea2777b6f135677f618529449334a612",
  5517. "reference": "875e90aeea2777b6f135677f618529449334a612",
  5518. "shasum": ""
  5519. },
  5520. "require": {
  5521. "php": ">=7.1"
  5522. },
  5523. "suggest": {
  5524. "ext-intl": "For best performance"
  5525. },
  5526. "type": "library",
  5527. "extra": {
  5528. "branch-alias": {
  5529. "dev-main": "1.28-dev"
  5530. },
  5531. "thanks": {
  5532. "name": "symfony/polyfill",
  5533. "url": "https://github.com/symfony/polyfill"
  5534. }
  5535. },
  5536. "autoload": {
  5537. "files": [
  5538. "bootstrap.php"
  5539. ],
  5540. "psr-4": {
  5541. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5542. }
  5543. },
  5544. "notification-url": "https://packagist.org/downloads/",
  5545. "license": [
  5546. "MIT"
  5547. ],
  5548. "authors": [
  5549. {
  5550. "name": "Nicolas Grekas",
  5551. "email": "[email protected]"
  5552. },
  5553. {
  5554. "name": "Symfony Community",
  5555. "homepage": "https://symfony.com/contributors"
  5556. }
  5557. ],
  5558. "description": "Symfony polyfill for intl's grapheme_* functions",
  5559. "homepage": "https://symfony.com",
  5560. "keywords": [
  5561. "compatibility",
  5562. "grapheme",
  5563. "intl",
  5564. "polyfill",
  5565. "portable",
  5566. "shim"
  5567. ],
  5568. "support": {
  5569. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.28.0"
  5570. },
  5571. "funding": [
  5572. {
  5573. "url": "https://symfony.com/sponsor",
  5574. "type": "custom"
  5575. },
  5576. {
  5577. "url": "https://github.com/fabpot",
  5578. "type": "github"
  5579. },
  5580. {
  5581. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5582. "type": "tidelift"
  5583. }
  5584. ],
  5585. "time": "2023-01-26T09:26:14+00:00"
  5586. },
  5587. {
  5588. "name": "symfony/polyfill-intl-normalizer",
  5589. "version": "v1.28.0",
  5590. "source": {
  5591. "type": "git",
  5592. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5593. "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92"
  5594. },
  5595. "dist": {
  5596. "type": "zip",
  5597. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
  5598. "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
  5599. "shasum": ""
  5600. },
  5601. "require": {
  5602. "php": ">=7.1"
  5603. },
  5604. "suggest": {
  5605. "ext-intl": "For best performance"
  5606. },
  5607. "type": "library",
  5608. "extra": {
  5609. "branch-alias": {
  5610. "dev-main": "1.28-dev"
  5611. },
  5612. "thanks": {
  5613. "name": "symfony/polyfill",
  5614. "url": "https://github.com/symfony/polyfill"
  5615. }
  5616. },
  5617. "autoload": {
  5618. "files": [
  5619. "bootstrap.php"
  5620. ],
  5621. "psr-4": {
  5622. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5623. },
  5624. "classmap": [
  5625. "Resources/stubs"
  5626. ]
  5627. },
  5628. "notification-url": "https://packagist.org/downloads/",
  5629. "license": [
  5630. "MIT"
  5631. ],
  5632. "authors": [
  5633. {
  5634. "name": "Nicolas Grekas",
  5635. "email": "[email protected]"
  5636. },
  5637. {
  5638. "name": "Symfony Community",
  5639. "homepage": "https://symfony.com/contributors"
  5640. }
  5641. ],
  5642. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5643. "homepage": "https://symfony.com",
  5644. "keywords": [
  5645. "compatibility",
  5646. "intl",
  5647. "normalizer",
  5648. "polyfill",
  5649. "portable",
  5650. "shim"
  5651. ],
  5652. "support": {
  5653. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.28.0"
  5654. },
  5655. "funding": [
  5656. {
  5657. "url": "https://symfony.com/sponsor",
  5658. "type": "custom"
  5659. },
  5660. {
  5661. "url": "https://github.com/fabpot",
  5662. "type": "github"
  5663. },
  5664. {
  5665. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5666. "type": "tidelift"
  5667. }
  5668. ],
  5669. "time": "2023-01-26T09:26:14+00:00"
  5670. },
  5671. {
  5672. "name": "symfony/polyfill-mbstring",
  5673. "version": "v1.28.0",
  5674. "source": {
  5675. "type": "git",
  5676. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5677. "reference": "42292d99c55abe617799667f454222c54c60e229"
  5678. },
  5679. "dist": {
  5680. "type": "zip",
  5681. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/42292d99c55abe617799667f454222c54c60e229",
  5682. "reference": "42292d99c55abe617799667f454222c54c60e229",
  5683. "shasum": ""
  5684. },
  5685. "require": {
  5686. "php": ">=7.1"
  5687. },
  5688. "provide": {
  5689. "ext-mbstring": "*"
  5690. },
  5691. "suggest": {
  5692. "ext-mbstring": "For best performance"
  5693. },
  5694. "type": "library",
  5695. "extra": {
  5696. "branch-alias": {
  5697. "dev-main": "1.28-dev"
  5698. },
  5699. "thanks": {
  5700. "name": "symfony/polyfill",
  5701. "url": "https://github.com/symfony/polyfill"
  5702. }
  5703. },
  5704. "autoload": {
  5705. "files": [
  5706. "bootstrap.php"
  5707. ],
  5708. "psr-4": {
  5709. "Symfony\\Polyfill\\Mbstring\\": ""
  5710. }
  5711. },
  5712. "notification-url": "https://packagist.org/downloads/",
  5713. "license": [
  5714. "MIT"
  5715. ],
  5716. "authors": [
  5717. {
  5718. "name": "Nicolas Grekas",
  5719. "email": "[email protected]"
  5720. },
  5721. {
  5722. "name": "Symfony Community",
  5723. "homepage": "https://symfony.com/contributors"
  5724. }
  5725. ],
  5726. "description": "Symfony polyfill for the Mbstring extension",
  5727. "homepage": "https://symfony.com",
  5728. "keywords": [
  5729. "compatibility",
  5730. "mbstring",
  5731. "polyfill",
  5732. "portable",
  5733. "shim"
  5734. ],
  5735. "support": {
  5736. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.28.0"
  5737. },
  5738. "funding": [
  5739. {
  5740. "url": "https://symfony.com/sponsor",
  5741. "type": "custom"
  5742. },
  5743. {
  5744. "url": "https://github.com/fabpot",
  5745. "type": "github"
  5746. },
  5747. {
  5748. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5749. "type": "tidelift"
  5750. }
  5751. ],
  5752. "time": "2023-07-28T09:04:16+00:00"
  5753. },
  5754. {
  5755. "name": "symfony/polyfill-php72",
  5756. "version": "v1.28.0",
  5757. "source": {
  5758. "type": "git",
  5759. "url": "https://github.com/symfony/polyfill-php72.git",
  5760. "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179"
  5761. },
  5762. "dist": {
  5763. "type": "zip",
  5764. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/70f4aebd92afca2f865444d30a4d2151c13c3179",
  5765. "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179",
  5766. "shasum": ""
  5767. },
  5768. "require": {
  5769. "php": ">=7.1"
  5770. },
  5771. "type": "library",
  5772. "extra": {
  5773. "branch-alias": {
  5774. "dev-main": "1.28-dev"
  5775. },
  5776. "thanks": {
  5777. "name": "symfony/polyfill",
  5778. "url": "https://github.com/symfony/polyfill"
  5779. }
  5780. },
  5781. "autoload": {
  5782. "files": [
  5783. "bootstrap.php"
  5784. ],
  5785. "psr-4": {
  5786. "Symfony\\Polyfill\\Php72\\": ""
  5787. }
  5788. },
  5789. "notification-url": "https://packagist.org/downloads/",
  5790. "license": [
  5791. "MIT"
  5792. ],
  5793. "authors": [
  5794. {
  5795. "name": "Nicolas Grekas",
  5796. "email": "[email protected]"
  5797. },
  5798. {
  5799. "name": "Symfony Community",
  5800. "homepage": "https://symfony.com/contributors"
  5801. }
  5802. ],
  5803. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  5804. "homepage": "https://symfony.com",
  5805. "keywords": [
  5806. "compatibility",
  5807. "polyfill",
  5808. "portable",
  5809. "shim"
  5810. ],
  5811. "support": {
  5812. "source": "https://github.com/symfony/polyfill-php72/tree/v1.28.0"
  5813. },
  5814. "funding": [
  5815. {
  5816. "url": "https://symfony.com/sponsor",
  5817. "type": "custom"
  5818. },
  5819. {
  5820. "url": "https://github.com/fabpot",
  5821. "type": "github"
  5822. },
  5823. {
  5824. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5825. "type": "tidelift"
  5826. }
  5827. ],
  5828. "time": "2023-01-26T09:26:14+00:00"
  5829. },
  5830. {
  5831. "name": "symfony/polyfill-php80",
  5832. "version": "v1.28.0",
  5833. "source": {
  5834. "type": "git",
  5835. "url": "https://github.com/symfony/polyfill-php80.git",
  5836. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5"
  5837. },
  5838. "dist": {
  5839. "type": "zip",
  5840. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  5841. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  5842. "shasum": ""
  5843. },
  5844. "require": {
  5845. "php": ">=7.1"
  5846. },
  5847. "type": "library",
  5848. "extra": {
  5849. "branch-alias": {
  5850. "dev-main": "1.28-dev"
  5851. },
  5852. "thanks": {
  5853. "name": "symfony/polyfill",
  5854. "url": "https://github.com/symfony/polyfill"
  5855. }
  5856. },
  5857. "autoload": {
  5858. "files": [
  5859. "bootstrap.php"
  5860. ],
  5861. "psr-4": {
  5862. "Symfony\\Polyfill\\Php80\\": ""
  5863. },
  5864. "classmap": [
  5865. "Resources/stubs"
  5866. ]
  5867. },
  5868. "notification-url": "https://packagist.org/downloads/",
  5869. "license": [
  5870. "MIT"
  5871. ],
  5872. "authors": [
  5873. {
  5874. "name": "Ion Bazan",
  5875. "email": "[email protected]"
  5876. },
  5877. {
  5878. "name": "Nicolas Grekas",
  5879. "email": "[email protected]"
  5880. },
  5881. {
  5882. "name": "Symfony Community",
  5883. "homepage": "https://symfony.com/contributors"
  5884. }
  5885. ],
  5886. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  5887. "homepage": "https://symfony.com",
  5888. "keywords": [
  5889. "compatibility",
  5890. "polyfill",
  5891. "portable",
  5892. "shim"
  5893. ],
  5894. "support": {
  5895. "source": "https://github.com/symfony/polyfill-php80/tree/v1.28.0"
  5896. },
  5897. "funding": [
  5898. {
  5899. "url": "https://symfony.com/sponsor",
  5900. "type": "custom"
  5901. },
  5902. {
  5903. "url": "https://github.com/fabpot",
  5904. "type": "github"
  5905. },
  5906. {
  5907. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5908. "type": "tidelift"
  5909. }
  5910. ],
  5911. "time": "2023-01-26T09:26:14+00:00"
  5912. },
  5913. {
  5914. "name": "symfony/polyfill-php83",
  5915. "version": "v1.28.0",
  5916. "source": {
  5917. "type": "git",
  5918. "url": "https://github.com/symfony/polyfill-php83.git",
  5919. "reference": "b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11"
  5920. },
  5921. "dist": {
  5922. "type": "zip",
  5923. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11",
  5924. "reference": "b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11",
  5925. "shasum": ""
  5926. },
  5927. "require": {
  5928. "php": ">=7.1",
  5929. "symfony/polyfill-php80": "^1.14"
  5930. },
  5931. "type": "library",
  5932. "extra": {
  5933. "branch-alias": {
  5934. "dev-main": "1.28-dev"
  5935. },
  5936. "thanks": {
  5937. "name": "symfony/polyfill",
  5938. "url": "https://github.com/symfony/polyfill"
  5939. }
  5940. },
  5941. "autoload": {
  5942. "files": [
  5943. "bootstrap.php"
  5944. ],
  5945. "psr-4": {
  5946. "Symfony\\Polyfill\\Php83\\": ""
  5947. },
  5948. "classmap": [
  5949. "Resources/stubs"
  5950. ]
  5951. },
  5952. "notification-url": "https://packagist.org/downloads/",
  5953. "license": [
  5954. "MIT"
  5955. ],
  5956. "authors": [
  5957. {
  5958. "name": "Nicolas Grekas",
  5959. "email": "[email protected]"
  5960. },
  5961. {
  5962. "name": "Symfony Community",
  5963. "homepage": "https://symfony.com/contributors"
  5964. }
  5965. ],
  5966. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  5967. "homepage": "https://symfony.com",
  5968. "keywords": [
  5969. "compatibility",
  5970. "polyfill",
  5971. "portable",
  5972. "shim"
  5973. ],
  5974. "support": {
  5975. "source": "https://github.com/symfony/polyfill-php83/tree/v1.28.0"
  5976. },
  5977. "funding": [
  5978. {
  5979. "url": "https://symfony.com/sponsor",
  5980. "type": "custom"
  5981. },
  5982. {
  5983. "url": "https://github.com/fabpot",
  5984. "type": "github"
  5985. },
  5986. {
  5987. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5988. "type": "tidelift"
  5989. }
  5990. ],
  5991. "time": "2023-08-16T06:22:46+00:00"
  5992. },
  5993. {
  5994. "name": "symfony/service-contracts",
  5995. "version": "v3.3.0",
  5996. "source": {
  5997. "type": "git",
  5998. "url": "https://github.com/symfony/service-contracts.git",
  5999. "reference": "40da9cc13ec349d9e4966ce18b5fbcd724ab10a4"
  6000. },
  6001. "dist": {
  6002. "type": "zip",
  6003. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/40da9cc13ec349d9e4966ce18b5fbcd724ab10a4",
  6004. "reference": "40da9cc13ec349d9e4966ce18b5fbcd724ab10a4",
  6005. "shasum": ""
  6006. },
  6007. "require": {
  6008. "php": ">=8.1",
  6009. "psr/container": "^2.0"
  6010. },
  6011. "conflict": {
  6012. "ext-psr": "<1.1|>=2"
  6013. },
  6014. "type": "library",
  6015. "extra": {
  6016. "branch-alias": {
  6017. "dev-main": "3.4-dev"
  6018. },
  6019. "thanks": {
  6020. "name": "symfony/contracts",
  6021. "url": "https://github.com/symfony/contracts"
  6022. }
  6023. },
  6024. "autoload": {
  6025. "psr-4": {
  6026. "Symfony\\Contracts\\Service\\": ""
  6027. },
  6028. "exclude-from-classmap": [
  6029. "/Test/"
  6030. ]
  6031. },
  6032. "notification-url": "https://packagist.org/downloads/",
  6033. "license": [
  6034. "MIT"
  6035. ],
  6036. "authors": [
  6037. {
  6038. "name": "Nicolas Grekas",
  6039. "email": "[email protected]"
  6040. },
  6041. {
  6042. "name": "Symfony Community",
  6043. "homepage": "https://symfony.com/contributors"
  6044. }
  6045. ],
  6046. "description": "Generic abstractions related to writing services",
  6047. "homepage": "https://symfony.com",
  6048. "keywords": [
  6049. "abstractions",
  6050. "contracts",
  6051. "decoupling",
  6052. "interfaces",
  6053. "interoperability",
  6054. "standards"
  6055. ],
  6056. "support": {
  6057. "source": "https://github.com/symfony/service-contracts/tree/v3.3.0"
  6058. },
  6059. "funding": [
  6060. {
  6061. "url": "https://symfony.com/sponsor",
  6062. "type": "custom"
  6063. },
  6064. {
  6065. "url": "https://github.com/fabpot",
  6066. "type": "github"
  6067. },
  6068. {
  6069. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6070. "type": "tidelift"
  6071. }
  6072. ],
  6073. "time": "2023-05-23T14:45:45+00:00"
  6074. },
  6075. {
  6076. "name": "symfony/translation",
  6077. "version": "v6.3.3",
  6078. "source": {
  6079. "type": "git",
  6080. "url": "https://github.com/symfony/translation.git",
  6081. "reference": "3ed078c54bc98bbe4414e1e9b2d5e85ed5a5c8bd"
  6082. },
  6083. "dist": {
  6084. "type": "zip",
  6085. "url": "https://api.github.com/repos/symfony/translation/zipball/3ed078c54bc98bbe4414e1e9b2d5e85ed5a5c8bd",
  6086. "reference": "3ed078c54bc98bbe4414e1e9b2d5e85ed5a5c8bd",
  6087. "shasum": ""
  6088. },
  6089. "require": {
  6090. "php": ">=8.1",
  6091. "symfony/deprecation-contracts": "^2.5|^3",
  6092. "symfony/polyfill-mbstring": "~1.0",
  6093. "symfony/translation-contracts": "^2.5|^3.0"
  6094. },
  6095. "conflict": {
  6096. "symfony/config": "<5.4",
  6097. "symfony/console": "<5.4",
  6098. "symfony/dependency-injection": "<5.4",
  6099. "symfony/http-client-contracts": "<2.5",
  6100. "symfony/http-kernel": "<5.4",
  6101. "symfony/service-contracts": "<2.5",
  6102. "symfony/twig-bundle": "<5.4",
  6103. "symfony/yaml": "<5.4"
  6104. },
  6105. "provide": {
  6106. "symfony/translation-implementation": "2.3|3.0"
  6107. },
  6108. "require-dev": {
  6109. "nikic/php-parser": "^4.13",
  6110. "psr/log": "^1|^2|^3",
  6111. "symfony/config": "^5.4|^6.0",
  6112. "symfony/console": "^5.4|^6.0",
  6113. "symfony/dependency-injection": "^5.4|^6.0",
  6114. "symfony/finder": "^5.4|^6.0",
  6115. "symfony/http-client-contracts": "^2.5|^3.0",
  6116. "symfony/http-kernel": "^5.4|^6.0",
  6117. "symfony/intl": "^5.4|^6.0",
  6118. "symfony/polyfill-intl-icu": "^1.21",
  6119. "symfony/routing": "^5.4|^6.0",
  6120. "symfony/service-contracts": "^2.5|^3",
  6121. "symfony/yaml": "^5.4|^6.0"
  6122. },
  6123. "type": "library",
  6124. "autoload": {
  6125. "files": [
  6126. "Resources/functions.php"
  6127. ],
  6128. "psr-4": {
  6129. "Symfony\\Component\\Translation\\": ""
  6130. },
  6131. "exclude-from-classmap": [
  6132. "/Tests/"
  6133. ]
  6134. },
  6135. "notification-url": "https://packagist.org/downloads/",
  6136. "license": [
  6137. "MIT"
  6138. ],
  6139. "authors": [
  6140. {
  6141. "name": "Fabien Potencier",
  6142. "email": "[email protected]"
  6143. },
  6144. {
  6145. "name": "Symfony Community",
  6146. "homepage": "https://symfony.com/contributors"
  6147. }
  6148. ],
  6149. "description": "Provides tools to internationalize your application",
  6150. "homepage": "https://symfony.com",
  6151. "support": {
  6152. "source": "https://github.com/symfony/translation/tree/v6.3.3"
  6153. },
  6154. "funding": [
  6155. {
  6156. "url": "https://symfony.com/sponsor",
  6157. "type": "custom"
  6158. },
  6159. {
  6160. "url": "https://github.com/fabpot",
  6161. "type": "github"
  6162. },
  6163. {
  6164. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6165. "type": "tidelift"
  6166. }
  6167. ],
  6168. "time": "2023-07-31T07:08:24+00:00"
  6169. },
  6170. {
  6171. "name": "symfony/translation-contracts",
  6172. "version": "v3.3.0",
  6173. "source": {
  6174. "type": "git",
  6175. "url": "https://github.com/symfony/translation-contracts.git",
  6176. "reference": "02c24deb352fb0d79db5486c0c79905a85e37e86"
  6177. },
  6178. "dist": {
  6179. "type": "zip",
  6180. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/02c24deb352fb0d79db5486c0c79905a85e37e86",
  6181. "reference": "02c24deb352fb0d79db5486c0c79905a85e37e86",
  6182. "shasum": ""
  6183. },
  6184. "require": {
  6185. "php": ">=8.1"
  6186. },
  6187. "type": "library",
  6188. "extra": {
  6189. "branch-alias": {
  6190. "dev-main": "3.4-dev"
  6191. },
  6192. "thanks": {
  6193. "name": "symfony/contracts",
  6194. "url": "https://github.com/symfony/contracts"
  6195. }
  6196. },
  6197. "autoload": {
  6198. "psr-4": {
  6199. "Symfony\\Contracts\\Translation\\": ""
  6200. },
  6201. "exclude-from-classmap": [
  6202. "/Test/"
  6203. ]
  6204. },
  6205. "notification-url": "https://packagist.org/downloads/",
  6206. "license": [
  6207. "MIT"
  6208. ],
  6209. "authors": [
  6210. {
  6211. "name": "Nicolas Grekas",
  6212. "email": "[email protected]"
  6213. },
  6214. {
  6215. "name": "Symfony Community",
  6216. "homepage": "https://symfony.com/contributors"
  6217. }
  6218. ],
  6219. "description": "Generic abstractions related to translation",
  6220. "homepage": "https://symfony.com",
  6221. "keywords": [
  6222. "abstractions",
  6223. "contracts",
  6224. "decoupling",
  6225. "interfaces",
  6226. "interoperability",
  6227. "standards"
  6228. ],
  6229. "support": {
  6230. "source": "https://github.com/symfony/translation-contracts/tree/v3.3.0"
  6231. },
  6232. "funding": [
  6233. {
  6234. "url": "https://symfony.com/sponsor",
  6235. "type": "custom"
  6236. },
  6237. {
  6238. "url": "https://github.com/fabpot",
  6239. "type": "github"
  6240. },
  6241. {
  6242. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6243. "type": "tidelift"
  6244. }
  6245. ],
  6246. "time": "2023-05-30T17:17:10+00:00"
  6247. },
  6248. {
  6249. "name": "symfony/yaml",
  6250. "version": "v6.3.3",
  6251. "source": {
  6252. "type": "git",
  6253. "url": "https://github.com/symfony/yaml.git",
  6254. "reference": "e23292e8c07c85b971b44c1c4b87af52133e2add"
  6255. },
  6256. "dist": {
  6257. "type": "zip",
  6258. "url": "https://api.github.com/repos/symfony/yaml/zipball/e23292e8c07c85b971b44c1c4b87af52133e2add",
  6259. "reference": "e23292e8c07c85b971b44c1c4b87af52133e2add",
  6260. "shasum": ""
  6261. },
  6262. "require": {
  6263. "php": ">=8.1",
  6264. "symfony/deprecation-contracts": "^2.5|^3",
  6265. "symfony/polyfill-ctype": "^1.8"
  6266. },
  6267. "conflict": {
  6268. "symfony/console": "<5.4"
  6269. },
  6270. "require-dev": {
  6271. "symfony/console": "^5.4|^6.0"
  6272. },
  6273. "bin": [
  6274. "Resources/bin/yaml-lint"
  6275. ],
  6276. "type": "library",
  6277. "autoload": {
  6278. "psr-4": {
  6279. "Symfony\\Component\\Yaml\\": ""
  6280. },
  6281. "exclude-from-classmap": [
  6282. "/Tests/"
  6283. ]
  6284. },
  6285. "notification-url": "https://packagist.org/downloads/",
  6286. "license": [
  6287. "MIT"
  6288. ],
  6289. "authors": [
  6290. {
  6291. "name": "Fabien Potencier",
  6292. "email": "[email protected]"
  6293. },
  6294. {
  6295. "name": "Symfony Community",
  6296. "homepage": "https://symfony.com/contributors"
  6297. }
  6298. ],
  6299. "description": "Loads and dumps YAML files",
  6300. "homepage": "https://symfony.com",
  6301. "support": {
  6302. "source": "https://github.com/symfony/yaml/tree/v6.3.3"
  6303. },
  6304. "funding": [
  6305. {
  6306. "url": "https://symfony.com/sponsor",
  6307. "type": "custom"
  6308. },
  6309. {
  6310. "url": "https://github.com/fabpot",
  6311. "type": "github"
  6312. },
  6313. {
  6314. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6315. "type": "tidelift"
  6316. }
  6317. ],
  6318. "time": "2023-07-31T07:08:24+00:00"
  6319. },
  6320. {
  6321. "name": "tronovav/geoip2-update",
  6322. "version": "v2.1.24",
  6323. "source": {
  6324. "type": "git",
  6325. "url": "https://github.com/tronovav/geoip2-update.git",
  6326. "reference": "6b91582eb11d4c39cfe66b3178ac0a6c67839cf9"
  6327. },
  6328. "dist": {
  6329. "type": "zip",
  6330. "url": "https://api.github.com/repos/tronovav/geoip2-update/zipball/6b91582eb11d4c39cfe66b3178ac0a6c67839cf9",
  6331. "reference": "6b91582eb11d4c39cfe66b3178ac0a6c67839cf9",
  6332. "shasum": ""
  6333. },
  6334. "require": {
  6335. "ext-curl": "*",
  6336. "php": ">=5.3"
  6337. },
  6338. "suggest": {
  6339. "ext-zip": "Required for updating the CSV databases."
  6340. },
  6341. "type": "library",
  6342. "autoload": {
  6343. "psr-4": {
  6344. "tronovav\\GeoIP2Update\\": "src/"
  6345. }
  6346. },
  6347. "notification-url": "https://packagist.org/downloads/",
  6348. "license": [
  6349. "MIT"
  6350. ],
  6351. "authors": [
  6352. {
  6353. "name": "Andrey Tronov",
  6354. "email": "[email protected]"
  6355. }
  6356. ],
  6357. "description": "Update GeoIP2/GeoLite2 databases from your script, program or via composer.",
  6358. "keywords": [
  6359. "geoip",
  6360. "geoip2",
  6361. "geolite2",
  6362. "geolocation",
  6363. "maxmind"
  6364. ],
  6365. "support": {
  6366. "email": "[email protected]",
  6367. "issues": "https://github.com/tronovav/geoip2-update/issues",
  6368. "source": "https://github.com/tronovav/geoip2-update/tree/v2.1.24"
  6369. },
  6370. "funding": [
  6371. {
  6372. "url": "https://donate.stream/tronovav",
  6373. "type": "other"
  6374. },
  6375. {
  6376. "url": "https://yoomoney.ru/to/410016198845596",
  6377. "type": "other"
  6378. }
  6379. ],
  6380. "time": "2023-03-13T11:43:07+00:00"
  6381. },
  6382. {
  6383. "name": "vectorface/googleauthenticator",
  6384. "version": "v3.0",
  6385. "source": {
  6386. "type": "git",
  6387. "url": "https://github.com/Vectorface/GoogleAuthenticator.git",
  6388. "reference": "bf6879959b69f7573038f4601d2c5b85dca8bb48"
  6389. },
  6390. "dist": {
  6391. "type": "zip",
  6392. "url": "https://api.github.com/repos/Vectorface/GoogleAuthenticator/zipball/bf6879959b69f7573038f4601d2c5b85dca8bb48",
  6393. "reference": "bf6879959b69f7573038f4601d2c5b85dca8bb48",
  6394. "shasum": ""
  6395. },
  6396. "require": {
  6397. "endroid/qr-code": "^4.0.0",
  6398. "php": ">=7.3"
  6399. },
  6400. "require-dev": {
  6401. "phpunit/phpunit": "^9"
  6402. },
  6403. "type": "library",
  6404. "autoload": {
  6405. "psr-4": {
  6406. "Vectorface\\": "src/"
  6407. }
  6408. },
  6409. "notification-url": "https://packagist.org/downloads/",
  6410. "license": [
  6411. "BSD-2-Clause"
  6412. ],
  6413. "authors": [
  6414. {
  6415. "name": "Michael Kliewe",
  6416. "email": "[email protected]",
  6417. "homepage": "http://www.phpgangsta.de/",
  6418. "role": "Developer"
  6419. },
  6420. {
  6421. "name": "Francis Lavoie",
  6422. "email": "[email protected]",
  6423. "homepage": "http://vectorface.com/",
  6424. "role": "Developer"
  6425. }
  6426. ],
  6427. "description": "Google Authenticator 2-factor authentication",
  6428. "keywords": [
  6429. "googleauthenticator",
  6430. "rfc6238",
  6431. "totp"
  6432. ],
  6433. "support": {
  6434. "issues": "https://github.com/Vectorface/GoogleAuthenticator/issues",
  6435. "source": "https://github.com/Vectorface/GoogleAuthenticator"
  6436. },
  6437. "time": "2021-04-20T19:40:40+00:00"
  6438. },
  6439. {
  6440. "name": "voku/anti-xss",
  6441. "version": "4.1.42",
  6442. "source": {
  6443. "type": "git",
  6444. "url": "https://github.com/voku/anti-xss.git",
  6445. "reference": "bca1f8607e55a3c5077483615cd93bd8f11bd675"
  6446. },
  6447. "dist": {
  6448. "type": "zip",
  6449. "url": "https://api.github.com/repos/voku/anti-xss/zipball/bca1f8607e55a3c5077483615cd93bd8f11bd675",
  6450. "reference": "bca1f8607e55a3c5077483615cd93bd8f11bd675",
  6451. "shasum": ""
  6452. },
  6453. "require": {
  6454. "php": ">=7.0.0",
  6455. "voku/portable-utf8": "~6.0.2"
  6456. },
  6457. "require-dev": {
  6458. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  6459. },
  6460. "type": "library",
  6461. "extra": {
  6462. "branch-alias": {
  6463. "dev-master": "4.1.x-dev"
  6464. }
  6465. },
  6466. "autoload": {
  6467. "psr-4": {
  6468. "voku\\helper\\": "src/voku/helper/"
  6469. }
  6470. },
  6471. "notification-url": "https://packagist.org/downloads/",
  6472. "license": [
  6473. "MIT"
  6474. ],
  6475. "authors": [
  6476. {
  6477. "name": "EllisLab Dev Team",
  6478. "homepage": "http://ellislab.com/"
  6479. },
  6480. {
  6481. "name": "Lars Moelleken",
  6482. "email": "[email protected]",
  6483. "homepage": "https://www.moelleken.org/"
  6484. }
  6485. ],
  6486. "description": "anti xss-library",
  6487. "homepage": "https://github.com/voku/anti-xss",
  6488. "keywords": [
  6489. "anti-xss",
  6490. "clean",
  6491. "security",
  6492. "xss"
  6493. ],
  6494. "support": {
  6495. "issues": "https://github.com/voku/anti-xss/issues",
  6496. "source": "https://github.com/voku/anti-xss/tree/4.1.42"
  6497. },
  6498. "funding": [
  6499. {
  6500. "url": "https://www.paypal.me/moelleken",
  6501. "type": "custom"
  6502. },
  6503. {
  6504. "url": "https://github.com/voku",
  6505. "type": "github"
  6506. },
  6507. {
  6508. "url": "https://opencollective.com/anti-xss",
  6509. "type": "open_collective"
  6510. },
  6511. {
  6512. "url": "https://www.patreon.com/voku",
  6513. "type": "patreon"
  6514. },
  6515. {
  6516. "url": "https://tidelift.com/funding/github/packagist/voku/anti-xss",
  6517. "type": "tidelift"
  6518. }
  6519. ],
  6520. "time": "2023-07-03T14:40:46+00:00"
  6521. },
  6522. {
  6523. "name": "voku/portable-ascii",
  6524. "version": "2.0.1",
  6525. "source": {
  6526. "type": "git",
  6527. "url": "https://github.com/voku/portable-ascii.git",
  6528. "reference": "b56450eed252f6801410d810c8e1727224ae0743"
  6529. },
  6530. "dist": {
  6531. "type": "zip",
  6532. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743",
  6533. "reference": "b56450eed252f6801410d810c8e1727224ae0743",
  6534. "shasum": ""
  6535. },
  6536. "require": {
  6537. "php": ">=7.0.0"
  6538. },
  6539. "require-dev": {
  6540. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  6541. },
  6542. "suggest": {
  6543. "ext-intl": "Use Intl for transliterator_transliterate() support"
  6544. },
  6545. "type": "library",
  6546. "autoload": {
  6547. "psr-4": {
  6548. "voku\\": "src/voku/"
  6549. }
  6550. },
  6551. "notification-url": "https://packagist.org/downloads/",
  6552. "license": [
  6553. "MIT"
  6554. ],
  6555. "authors": [
  6556. {
  6557. "name": "Lars Moelleken",
  6558. "homepage": "http://www.moelleken.org/"
  6559. }
  6560. ],
  6561. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  6562. "homepage": "https://github.com/voku/portable-ascii",
  6563. "keywords": [
  6564. "ascii",
  6565. "clean",
  6566. "php"
  6567. ],
  6568. "support": {
  6569. "issues": "https://github.com/voku/portable-ascii/issues",
  6570. "source": "https://github.com/voku/portable-ascii/tree/2.0.1"
  6571. },
  6572. "funding": [
  6573. {
  6574. "url": "https://www.paypal.me/moelleken",
  6575. "type": "custom"
  6576. },
  6577. {
  6578. "url": "https://github.com/voku",
  6579. "type": "github"
  6580. },
  6581. {
  6582. "url": "https://opencollective.com/portable-ascii",
  6583. "type": "open_collective"
  6584. },
  6585. {
  6586. "url": "https://www.patreon.com/voku",
  6587. "type": "patreon"
  6588. },
  6589. {
  6590. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  6591. "type": "tidelift"
  6592. }
  6593. ],
  6594. "time": "2022-03-08T17:03:00+00:00"
  6595. },
  6596. {
  6597. "name": "voku/portable-utf8",
  6598. "version": "6.0.13",
  6599. "source": {
  6600. "type": "git",
  6601. "url": "https://github.com/voku/portable-utf8.git",
  6602. "reference": "b8ce36bf26593e5c2e81b1850ef0ffb299d2043f"
  6603. },
  6604. "dist": {
  6605. "type": "zip",
  6606. "url": "https://api.github.com/repos/voku/portable-utf8/zipball/b8ce36bf26593e5c2e81b1850ef0ffb299d2043f",
  6607. "reference": "b8ce36bf26593e5c2e81b1850ef0ffb299d2043f",
  6608. "shasum": ""
  6609. },
  6610. "require": {
  6611. "php": ">=7.0.0",
  6612. "symfony/polyfill-iconv": "~1.0",
  6613. "symfony/polyfill-intl-grapheme": "~1.0",
  6614. "symfony/polyfill-intl-normalizer": "~1.0",
  6615. "symfony/polyfill-mbstring": "~1.0",
  6616. "symfony/polyfill-php72": "~1.0",
  6617. "voku/portable-ascii": "~2.0.0"
  6618. },
  6619. "require-dev": {
  6620. "phpstan/phpstan": "1.9.*@dev",
  6621. "phpstan/phpstan-strict-rules": "1.4.*@dev",
  6622. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0",
  6623. "thecodingmachine/phpstan-strict-rules": "1.0.*@dev",
  6624. "voku/phpstan-rules": "3.1.*@dev"
  6625. },
  6626. "suggest": {
  6627. "ext-ctype": "Use Ctype for e.g. hexadecimal digit detection",
  6628. "ext-fileinfo": "Use Fileinfo for better binary file detection",
  6629. "ext-iconv": "Use iconv for best performance",
  6630. "ext-intl": "Use Intl for best performance",
  6631. "ext-json": "Use JSON for string detection",
  6632. "ext-mbstring": "Use Mbstring for best performance"
  6633. },
  6634. "type": "library",
  6635. "autoload": {
  6636. "files": [
  6637. "bootstrap.php"
  6638. ],
  6639. "psr-4": {
  6640. "voku\\": "src/voku/"
  6641. }
  6642. },
  6643. "notification-url": "https://packagist.org/downloads/",
  6644. "license": [
  6645. "(Apache-2.0 or GPL-2.0)"
  6646. ],
  6647. "authors": [
  6648. {
  6649. "name": "Nicolas Grekas",
  6650. "email": "[email protected]"
  6651. },
  6652. {
  6653. "name": "Hamid Sarfraz",
  6654. "homepage": "http://pageconfig.com/"
  6655. },
  6656. {
  6657. "name": "Lars Moelleken",
  6658. "homepage": "http://www.moelleken.org/"
  6659. }
  6660. ],
  6661. "description": "Portable UTF-8 library - performance optimized (unicode) string functions for php.",
  6662. "homepage": "https://github.com/voku/portable-utf8",
  6663. "keywords": [
  6664. "UTF",
  6665. "clean",
  6666. "php",
  6667. "unicode",
  6668. "utf-8",
  6669. "utf8"
  6670. ],
  6671. "support": {
  6672. "issues": "https://github.com/voku/portable-utf8/issues",
  6673. "source": "https://github.com/voku/portable-utf8/tree/6.0.13"
  6674. },
  6675. "funding": [
  6676. {
  6677. "url": "https://www.paypal.me/moelleken",
  6678. "type": "custom"
  6679. },
  6680. {
  6681. "url": "https://github.com/voku",
  6682. "type": "github"
  6683. },
  6684. {
  6685. "url": "https://opencollective.com/portable-utf8",
  6686. "type": "open_collective"
  6687. },
  6688. {
  6689. "url": "https://www.patreon.com/voku",
  6690. "type": "patreon"
  6691. },
  6692. {
  6693. "url": "https://tidelift.com/funding/github/packagist/voku/portable-utf8",
  6694. "type": "tidelift"
  6695. }
  6696. ],
  6697. "time": "2023-03-08T08:35:38+00:00"
  6698. },
  6699. {
  6700. "name": "webmozart/assert",
  6701. "version": "1.11.0",
  6702. "source": {
  6703. "type": "git",
  6704. "url": "https://github.com/webmozarts/assert.git",
  6705. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  6706. },
  6707. "dist": {
  6708. "type": "zip",
  6709. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  6710. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  6711. "shasum": ""
  6712. },
  6713. "require": {
  6714. "ext-ctype": "*",
  6715. "php": "^7.2 || ^8.0"
  6716. },
  6717. "conflict": {
  6718. "phpstan/phpstan": "<0.12.20",
  6719. "vimeo/psalm": "<4.6.1 || 4.6.2"
  6720. },
  6721. "require-dev": {
  6722. "phpunit/phpunit": "^8.5.13"
  6723. },
  6724. "type": "library",
  6725. "extra": {
  6726. "branch-alias": {
  6727. "dev-master": "1.10-dev"
  6728. }
  6729. },
  6730. "autoload": {
  6731. "psr-4": {
  6732. "Webmozart\\Assert\\": "src/"
  6733. }
  6734. },
  6735. "notification-url": "https://packagist.org/downloads/",
  6736. "license": [
  6737. "MIT"
  6738. ],
  6739. "authors": [
  6740. {
  6741. "name": "Bernhard Schussek",
  6742. "email": "[email protected]"
  6743. }
  6744. ],
  6745. "description": "Assertions to validate method input/output with nice error messages.",
  6746. "keywords": [
  6747. "assert",
  6748. "check",
  6749. "validate"
  6750. ],
  6751. "support": {
  6752. "issues": "https://github.com/webmozarts/assert/issues",
  6753. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  6754. },
  6755. "time": "2022-06-03T18:03:27+00:00"
  6756. }
  6757. ],
  6758. "packages-dev": [
  6759. {
  6760. "name": "cmgmyr/phploc",
  6761. "version": "8.0.3",
  6762. "source": {
  6763. "type": "git",
  6764. "url": "https://github.com/cmgmyr/phploc.git",
  6765. "reference": "e61d4729df46c5920ab61973bfa3f70f81a70b5f"
  6766. },
  6767. "dist": {
  6768. "type": "zip",
  6769. "url": "https://api.github.com/repos/cmgmyr/phploc/zipball/e61d4729df46c5920ab61973bfa3f70f81a70b5f",
  6770. "reference": "e61d4729df46c5920ab61973bfa3f70f81a70b5f",
  6771. "shasum": ""
  6772. },
  6773. "require": {
  6774. "ext-dom": "*",
  6775. "ext-json": "*",
  6776. "php": "^7.4 || ^8.0",
  6777. "phpunit/php-file-iterator": "^3.0|^4.0",
  6778. "sebastian/cli-parser": "^1.0|^2.0"
  6779. },
  6780. "require-dev": {
  6781. "friendsofphp/php-cs-fixer": "^3.2",
  6782. "phpunit/phpunit": "^9.0|^10.0",
  6783. "vimeo/psalm": "^5.7"
  6784. },
  6785. "bin": [
  6786. "phploc"
  6787. ],
  6788. "type": "library",
  6789. "extra": {
  6790. "branch-alias": {
  6791. "dev-main": "8.0-dev"
  6792. }
  6793. },
  6794. "autoload": {
  6795. "classmap": [
  6796. "src/"
  6797. ]
  6798. },
  6799. "notification-url": "https://packagist.org/downloads/",
  6800. "license": [
  6801. "BSD-3-Clause"
  6802. ],
  6803. "authors": [
  6804. {
  6805. "name": "Chris Gmyr",
  6806. "email": "[email protected]",
  6807. "role": "lead"
  6808. }
  6809. ],
  6810. "description": "A tool for quickly measuring the size of a PHP project.",
  6811. "homepage": "https://github.com/cmgmyr/phploc",
  6812. "support": {
  6813. "issues": "https://github.com/cmgmyr/phploc/issues",
  6814. "source": "https://github.com/cmgmyr/phploc/tree/8.0.3"
  6815. },
  6816. "funding": [
  6817. {
  6818. "url": "https://github.com/cmgmyr",
  6819. "type": "github"
  6820. }
  6821. ],
  6822. "time": "2023-08-05T16:49:39+00:00"
  6823. },
  6824. {
  6825. "name": "composer/pcre",
  6826. "version": "3.1.0",
  6827. "source": {
  6828. "type": "git",
  6829. "url": "https://github.com/composer/pcre.git",
  6830. "reference": "4bff79ddd77851fe3cdd11616ed3f92841ba5bd2"
  6831. },
  6832. "dist": {
  6833. "type": "zip",
  6834. "url": "https://api.github.com/repos/composer/pcre/zipball/4bff79ddd77851fe3cdd11616ed3f92841ba5bd2",
  6835. "reference": "4bff79ddd77851fe3cdd11616ed3f92841ba5bd2",
  6836. "shasum": ""
  6837. },
  6838. "require": {
  6839. "php": "^7.4 || ^8.0"
  6840. },
  6841. "require-dev": {
  6842. "phpstan/phpstan": "^1.3",
  6843. "phpstan/phpstan-strict-rules": "^1.1",
  6844. "symfony/phpunit-bridge": "^5"
  6845. },
  6846. "type": "library",
  6847. "extra": {
  6848. "branch-alias": {
  6849. "dev-main": "3.x-dev"
  6850. }
  6851. },
  6852. "autoload": {
  6853. "psr-4": {
  6854. "Composer\\Pcre\\": "src"
  6855. }
  6856. },
  6857. "notification-url": "https://packagist.org/downloads/",
  6858. "license": [
  6859. "MIT"
  6860. ],
  6861. "authors": [
  6862. {
  6863. "name": "Jordi Boggiano",
  6864. "email": "[email protected]",
  6865. "homepage": "http://seld.be"
  6866. }
  6867. ],
  6868. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  6869. "keywords": [
  6870. "PCRE",
  6871. "preg",
  6872. "regex",
  6873. "regular expression"
  6874. ],
  6875. "support": {
  6876. "issues": "https://github.com/composer/pcre/issues",
  6877. "source": "https://github.com/composer/pcre/tree/3.1.0"
  6878. },
  6879. "funding": [
  6880. {
  6881. "url": "https://packagist.com",
  6882. "type": "custom"
  6883. },
  6884. {
  6885. "url": "https://github.com/composer",
  6886. "type": "github"
  6887. },
  6888. {
  6889. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  6890. "type": "tidelift"
  6891. }
  6892. ],
  6893. "time": "2022-11-17T09:50:14+00:00"
  6894. },
  6895. {
  6896. "name": "composer/semver",
  6897. "version": "3.4.0",
  6898. "source": {
  6899. "type": "git",
  6900. "url": "https://github.com/composer/semver.git",
  6901. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32"
  6902. },
  6903. "dist": {
  6904. "type": "zip",
  6905. "url": "https://api.github.com/repos/composer/semver/zipball/35e8d0af4486141bc745f23a29cc2091eb624a32",
  6906. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32",
  6907. "shasum": ""
  6908. },
  6909. "require": {
  6910. "php": "^5.3.2 || ^7.0 || ^8.0"
  6911. },
  6912. "require-dev": {
  6913. "phpstan/phpstan": "^1.4",
  6914. "symfony/phpunit-bridge": "^4.2 || ^5"
  6915. },
  6916. "type": "library",
  6917. "extra": {
  6918. "branch-alias": {
  6919. "dev-main": "3.x-dev"
  6920. }
  6921. },
  6922. "autoload": {
  6923. "psr-4": {
  6924. "Composer\\Semver\\": "src"
  6925. }
  6926. },
  6927. "notification-url": "https://packagist.org/downloads/",
  6928. "license": [
  6929. "MIT"
  6930. ],
  6931. "authors": [
  6932. {
  6933. "name": "Nils Adermann",
  6934. "email": "[email protected]",
  6935. "homepage": "http://www.naderman.de"
  6936. },
  6937. {
  6938. "name": "Jordi Boggiano",
  6939. "email": "[email protected]",
  6940. "homepage": "http://seld.be"
  6941. },
  6942. {
  6943. "name": "Rob Bast",
  6944. "email": "[email protected]",
  6945. "homepage": "http://robbast.nl"
  6946. }
  6947. ],
  6948. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  6949. "keywords": [
  6950. "semantic",
  6951. "semver",
  6952. "validation",
  6953. "versioning"
  6954. ],
  6955. "support": {
  6956. "irc": "ircs://irc.libera.chat:6697/composer",
  6957. "issues": "https://github.com/composer/semver/issues",
  6958. "source": "https://github.com/composer/semver/tree/3.4.0"
  6959. },
  6960. "funding": [
  6961. {
  6962. "url": "https://packagist.com",
  6963. "type": "custom"
  6964. },
  6965. {
  6966. "url": "https://github.com/composer",
  6967. "type": "github"
  6968. },
  6969. {
  6970. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  6971. "type": "tidelift"
  6972. }
  6973. ],
  6974. "time": "2023-08-31T09:50:34+00:00"
  6975. },
  6976. {
  6977. "name": "composer/xdebug-handler",
  6978. "version": "3.0.3",
  6979. "source": {
  6980. "type": "git",
  6981. "url": "https://github.com/composer/xdebug-handler.git",
  6982. "reference": "ced299686f41dce890debac69273b47ffe98a40c"
  6983. },
  6984. "dist": {
  6985. "type": "zip",
  6986. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/ced299686f41dce890debac69273b47ffe98a40c",
  6987. "reference": "ced299686f41dce890debac69273b47ffe98a40c",
  6988. "shasum": ""
  6989. },
  6990. "require": {
  6991. "composer/pcre": "^1 || ^2 || ^3",
  6992. "php": "^7.2.5 || ^8.0",
  6993. "psr/log": "^1 || ^2 || ^3"
  6994. },
  6995. "require-dev": {
  6996. "phpstan/phpstan": "^1.0",
  6997. "phpstan/phpstan-strict-rules": "^1.1",
  6998. "symfony/phpunit-bridge": "^6.0"
  6999. },
  7000. "type": "library",
  7001. "autoload": {
  7002. "psr-4": {
  7003. "Composer\\XdebugHandler\\": "src"
  7004. }
  7005. },
  7006. "notification-url": "https://packagist.org/downloads/",
  7007. "license": [
  7008. "MIT"
  7009. ],
  7010. "authors": [
  7011. {
  7012. "name": "John Stevenson",
  7013. "email": "[email protected]"
  7014. }
  7015. ],
  7016. "description": "Restarts a process without Xdebug.",
  7017. "keywords": [
  7018. "Xdebug",
  7019. "performance"
  7020. ],
  7021. "support": {
  7022. "irc": "irc://irc.freenode.org/composer",
  7023. "issues": "https://github.com/composer/xdebug-handler/issues",
  7024. "source": "https://github.com/composer/xdebug-handler/tree/3.0.3"
  7025. },
  7026. "funding": [
  7027. {
  7028. "url": "https://packagist.com",
  7029. "type": "custom"
  7030. },
  7031. {
  7032. "url": "https://github.com/composer",
  7033. "type": "github"
  7034. },
  7035. {
  7036. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7037. "type": "tidelift"
  7038. }
  7039. ],
  7040. "time": "2022-02-25T21:32:43+00:00"
  7041. },
  7042. {
  7043. "name": "dealerdirect/phpcodesniffer-composer-installer",
  7044. "version": "v1.0.0",
  7045. "source": {
  7046. "type": "git",
  7047. "url": "https://github.com/PHPCSStandards/composer-installer.git",
  7048. "reference": "4be43904336affa5c2f70744a348312336afd0da"
  7049. },
  7050. "dist": {
  7051. "type": "zip",
  7052. "url": "https://api.github.com/repos/PHPCSStandards/composer-installer/zipball/4be43904336affa5c2f70744a348312336afd0da",
  7053. "reference": "4be43904336affa5c2f70744a348312336afd0da",
  7054. "shasum": ""
  7055. },
  7056. "require": {
  7057. "composer-plugin-api": "^1.0 || ^2.0",
  7058. "php": ">=5.4",
  7059. "squizlabs/php_codesniffer": "^2.0 || ^3.1.0 || ^4.0"
  7060. },
  7061. "require-dev": {
  7062. "composer/composer": "*",
  7063. "ext-json": "*",
  7064. "ext-zip": "*",
  7065. "php-parallel-lint/php-parallel-lint": "^1.3.1",
  7066. "phpcompatibility/php-compatibility": "^9.0",
  7067. "yoast/phpunit-polyfills": "^1.0"
  7068. },
  7069. "type": "composer-plugin",
  7070. "extra": {
  7071. "class": "PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin"
  7072. },
  7073. "autoload": {
  7074. "psr-4": {
  7075. "PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\": "src/"
  7076. }
  7077. },
  7078. "notification-url": "https://packagist.org/downloads/",
  7079. "license": [
  7080. "MIT"
  7081. ],
  7082. "authors": [
  7083. {
  7084. "name": "Franck Nijhof",
  7085. "email": "[email protected]",
  7086. "homepage": "http://www.frenck.nl",
  7087. "role": "Developer / IT Manager"
  7088. },
  7089. {
  7090. "name": "Contributors",
  7091. "homepage": "https://github.com/PHPCSStandards/composer-installer/graphs/contributors"
  7092. }
  7093. ],
  7094. "description": "PHP_CodeSniffer Standards Composer Installer Plugin",
  7095. "homepage": "http://www.dealerdirect.com",
  7096. "keywords": [
  7097. "PHPCodeSniffer",
  7098. "PHP_CodeSniffer",
  7099. "code quality",
  7100. "codesniffer",
  7101. "composer",
  7102. "installer",
  7103. "phpcbf",
  7104. "phpcs",
  7105. "plugin",
  7106. "qa",
  7107. "quality",
  7108. "standard",
  7109. "standards",
  7110. "style guide",
  7111. "stylecheck",
  7112. "tests"
  7113. ],
  7114. "support": {
  7115. "issues": "https://github.com/PHPCSStandards/composer-installer/issues",
  7116. "source": "https://github.com/PHPCSStandards/composer-installer"
  7117. },
  7118. "time": "2023-01-05T11:28:13+00:00"
  7119. },
  7120. {
  7121. "name": "friendsofphp/php-cs-fixer",
  7122. "version": "v3.26.1",
  7123. "source": {
  7124. "type": "git",
  7125. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  7126. "reference": "d023ba6684055f6ea1da1352d8a02baca0426983"
  7127. },
  7128. "dist": {
  7129. "type": "zip",
  7130. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/d023ba6684055f6ea1da1352d8a02baca0426983",
  7131. "reference": "d023ba6684055f6ea1da1352d8a02baca0426983",
  7132. "shasum": ""
  7133. },
  7134. "require": {
  7135. "composer/semver": "^3.3",
  7136. "composer/xdebug-handler": "^3.0.3",
  7137. "ext-json": "*",
  7138. "ext-tokenizer": "*",
  7139. "php": "^7.4 || ^8.0",
  7140. "sebastian/diff": "^4.0 || ^5.0",
  7141. "symfony/console": "^5.4 || ^6.0",
  7142. "symfony/event-dispatcher": "^5.4 || ^6.0",
  7143. "symfony/filesystem": "^5.4 || ^6.0",
  7144. "symfony/finder": "^5.4 || ^6.0",
  7145. "symfony/options-resolver": "^5.4 || ^6.0",
  7146. "symfony/polyfill-mbstring": "^1.27",
  7147. "symfony/polyfill-php80": "^1.27",
  7148. "symfony/polyfill-php81": "^1.27",
  7149. "symfony/process": "^5.4 || ^6.0",
  7150. "symfony/stopwatch": "^5.4 || ^6.0"
  7151. },
  7152. "require-dev": {
  7153. "facile-it/paraunit": "^1.3 || ^2.0",
  7154. "justinrainbow/json-schema": "^5.2",
  7155. "keradus/cli-executor": "^2.0",
  7156. "mikey179/vfsstream": "^1.6.11",
  7157. "php-coveralls/php-coveralls": "^2.5.3",
  7158. "php-cs-fixer/accessible-object": "^1.1",
  7159. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.2",
  7160. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.2.1",
  7161. "phpspec/prophecy": "^1.16",
  7162. "phpspec/prophecy-phpunit": "^2.0",
  7163. "phpunit/phpunit": "^9.5",
  7164. "phpunitgoodpractices/polyfill": "^1.6",
  7165. "phpunitgoodpractices/traits": "^1.9.2",
  7166. "symfony/phpunit-bridge": "^6.2.3",
  7167. "symfony/yaml": "^5.4 || ^6.0"
  7168. },
  7169. "suggest": {
  7170. "ext-dom": "For handling output formats in XML",
  7171. "ext-mbstring": "For handling non-UTF8 characters."
  7172. },
  7173. "bin": [
  7174. "php-cs-fixer"
  7175. ],
  7176. "type": "application",
  7177. "autoload": {
  7178. "psr-4": {
  7179. "PhpCsFixer\\": "src/"
  7180. }
  7181. },
  7182. "notification-url": "https://packagist.org/downloads/",
  7183. "license": [
  7184. "MIT"
  7185. ],
  7186. "authors": [
  7187. {
  7188. "name": "Fabien Potencier",
  7189. "email": "[email protected]"
  7190. },
  7191. {
  7192. "name": "Dariusz Rumiński",
  7193. "email": "[email protected]"
  7194. }
  7195. ],
  7196. "description": "A tool to automatically fix PHP code style",
  7197. "keywords": [
  7198. "Static code analysis",
  7199. "fixer",
  7200. "standards",
  7201. "static analysis"
  7202. ],
  7203. "support": {
  7204. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  7205. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.26.1"
  7206. },
  7207. "funding": [
  7208. {
  7209. "url": "https://github.com/keradus",
  7210. "type": "github"
  7211. }
  7212. ],
  7213. "time": "2023-09-08T19:09:07+00:00"
  7214. },
  7215. {
  7216. "name": "justinrainbow/json-schema",
  7217. "version": "5.2.12",
  7218. "source": {
  7219. "type": "git",
  7220. "url": "https://github.com/justinrainbow/json-schema.git",
  7221. "reference": "ad87d5a5ca981228e0e205c2bc7dfb8e24559b60"
  7222. },
  7223. "dist": {
  7224. "type": "zip",
  7225. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/ad87d5a5ca981228e0e205c2bc7dfb8e24559b60",
  7226. "reference": "ad87d5a5ca981228e0e205c2bc7dfb8e24559b60",
  7227. "shasum": ""
  7228. },
  7229. "require": {
  7230. "php": ">=5.3.3"
  7231. },
  7232. "require-dev": {
  7233. "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
  7234. "json-schema/json-schema-test-suite": "1.2.0",
  7235. "phpunit/phpunit": "^4.8.35"
  7236. },
  7237. "bin": [
  7238. "bin/validate-json"
  7239. ],
  7240. "type": "library",
  7241. "extra": {
  7242. "branch-alias": {
  7243. "dev-master": "5.0.x-dev"
  7244. }
  7245. },
  7246. "autoload": {
  7247. "psr-4": {
  7248. "JsonSchema\\": "src/JsonSchema/"
  7249. }
  7250. },
  7251. "notification-url": "https://packagist.org/downloads/",
  7252. "license": [
  7253. "MIT"
  7254. ],
  7255. "authors": [
  7256. {
  7257. "name": "Bruno Prieto Reis",
  7258. "email": "[email protected]"
  7259. },
  7260. {
  7261. "name": "Justin Rainbow",
  7262. "email": "[email protected]"
  7263. },
  7264. {
  7265. "name": "Igor Wiedler",
  7266. "email": "[email protected]"
  7267. },
  7268. {
  7269. "name": "Robert Schönthal",
  7270. "email": "[email protected]"
  7271. }
  7272. ],
  7273. "description": "A library to validate a json schema.",
  7274. "homepage": "https://github.com/justinrainbow/json-schema",
  7275. "keywords": [
  7276. "json",
  7277. "schema"
  7278. ],
  7279. "support": {
  7280. "issues": "https://github.com/justinrainbow/json-schema/issues",
  7281. "source": "https://github.com/justinrainbow/json-schema/tree/5.2.12"
  7282. },
  7283. "time": "2022-04-13T08:02:27+00:00"
  7284. },
  7285. {
  7286. "name": "league/container",
  7287. "version": "4.2.0",
  7288. "source": {
  7289. "type": "git",
  7290. "url": "https://github.com/thephpleague/container.git",
  7291. "reference": "375d13cb828649599ef5d48a339c4af7a26cd0ab"
  7292. },
  7293. "dist": {
  7294. "type": "zip",
  7295. "url": "https://api.github.com/repos/thephpleague/container/zipball/375d13cb828649599ef5d48a339c4af7a26cd0ab",
  7296. "reference": "375d13cb828649599ef5d48a339c4af7a26cd0ab",
  7297. "shasum": ""
  7298. },
  7299. "require": {
  7300. "php": "^7.2 || ^8.0",
  7301. "psr/container": "^1.1 || ^2.0"
  7302. },
  7303. "provide": {
  7304. "psr/container-implementation": "^1.0"
  7305. },
  7306. "replace": {
  7307. "orno/di": "~2.0"
  7308. },
  7309. "require-dev": {
  7310. "nette/php-generator": "^3.4",
  7311. "nikic/php-parser": "^4.10",
  7312. "phpstan/phpstan": "^0.12.47",
  7313. "phpunit/phpunit": "^8.5.17",
  7314. "roave/security-advisories": "dev-latest",
  7315. "scrutinizer/ocular": "^1.8",
  7316. "squizlabs/php_codesniffer": "^3.6"
  7317. },
  7318. "type": "library",
  7319. "extra": {
  7320. "branch-alias": {
  7321. "dev-master": "4.x-dev",
  7322. "dev-4.x": "4.x-dev",
  7323. "dev-3.x": "3.x-dev",
  7324. "dev-2.x": "2.x-dev",
  7325. "dev-1.x": "1.x-dev"
  7326. }
  7327. },
  7328. "autoload": {
  7329. "psr-4": {
  7330. "League\\Container\\": "src"
  7331. }
  7332. },
  7333. "notification-url": "https://packagist.org/downloads/",
  7334. "license": [
  7335. "MIT"
  7336. ],
  7337. "authors": [
  7338. {
  7339. "name": "Phil Bennett",
  7340. "email": "[email protected]",
  7341. "role": "Developer"
  7342. }
  7343. ],
  7344. "description": "A fast and intuitive dependency injection container.",
  7345. "homepage": "https://github.com/thephpleague/container",
  7346. "keywords": [
  7347. "container",
  7348. "dependency",
  7349. "di",
  7350. "injection",
  7351. "league",
  7352. "provider",
  7353. "service"
  7354. ],
  7355. "support": {
  7356. "issues": "https://github.com/thephpleague/container/issues",
  7357. "source": "https://github.com/thephpleague/container/tree/4.2.0"
  7358. },
  7359. "funding": [
  7360. {
  7361. "url": "https://github.com/philipobenito",
  7362. "type": "github"
  7363. }
  7364. ],
  7365. "time": "2021-11-16T10:29:06+00:00"
  7366. },
  7367. {
  7368. "name": "myclabs/deep-copy",
  7369. "version": "1.11.1",
  7370. "source": {
  7371. "type": "git",
  7372. "url": "https://github.com/myclabs/DeepCopy.git",
  7373. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  7374. },
  7375. "dist": {
  7376. "type": "zip",
  7377. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  7378. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  7379. "shasum": ""
  7380. },
  7381. "require": {
  7382. "php": "^7.1 || ^8.0"
  7383. },
  7384. "conflict": {
  7385. "doctrine/collections": "<1.6.8",
  7386. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  7387. },
  7388. "require-dev": {
  7389. "doctrine/collections": "^1.6.8",
  7390. "doctrine/common": "^2.13.3 || ^3.2.2",
  7391. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  7392. },
  7393. "type": "library",
  7394. "autoload": {
  7395. "files": [
  7396. "src/DeepCopy/deep_copy.php"
  7397. ],
  7398. "psr-4": {
  7399. "DeepCopy\\": "src/DeepCopy/"
  7400. }
  7401. },
  7402. "notification-url": "https://packagist.org/downloads/",
  7403. "license": [
  7404. "MIT"
  7405. ],
  7406. "description": "Create deep copies (clones) of your objects",
  7407. "keywords": [
  7408. "clone",
  7409. "copy",
  7410. "duplicate",
  7411. "object",
  7412. "object graph"
  7413. ],
  7414. "support": {
  7415. "issues": "https://github.com/myclabs/DeepCopy/issues",
  7416. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  7417. },
  7418. "funding": [
  7419. {
  7420. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  7421. "type": "tidelift"
  7422. }
  7423. ],
  7424. "time": "2023-03-08T13:26:56+00:00"
  7425. },
  7426. {
  7427. "name": "nikic/php-parser",
  7428. "version": "v4.17.1",
  7429. "source": {
  7430. "type": "git",
  7431. "url": "https://github.com/nikic/PHP-Parser.git",
  7432. "reference": "a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d"
  7433. },
  7434. "dist": {
  7435. "type": "zip",
  7436. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d",
  7437. "reference": "a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d",
  7438. "shasum": ""
  7439. },
  7440. "require": {
  7441. "ext-tokenizer": "*",
  7442. "php": ">=7.0"
  7443. },
  7444. "require-dev": {
  7445. "ircmaxell/php-yacc": "^0.0.7",
  7446. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  7447. },
  7448. "bin": [
  7449. "bin/php-parse"
  7450. ],
  7451. "type": "library",
  7452. "extra": {
  7453. "branch-alias": {
  7454. "dev-master": "4.9-dev"
  7455. }
  7456. },
  7457. "autoload": {
  7458. "psr-4": {
  7459. "PhpParser\\": "lib/PhpParser"
  7460. }
  7461. },
  7462. "notification-url": "https://packagist.org/downloads/",
  7463. "license": [
  7464. "BSD-3-Clause"
  7465. ],
  7466. "authors": [
  7467. {
  7468. "name": "Nikita Popov"
  7469. }
  7470. ],
  7471. "description": "A PHP parser written in PHP",
  7472. "keywords": [
  7473. "parser",
  7474. "php"
  7475. ],
  7476. "support": {
  7477. "issues": "https://github.com/nikic/PHP-Parser/issues",
  7478. "source": "https://github.com/nikic/PHP-Parser/tree/v4.17.1"
  7479. },
  7480. "time": "2023-08-13T19:53:39+00:00"
  7481. },
  7482. {
  7483. "name": "nunomaduro/phpinsights",
  7484. "version": "v2.8.0",
  7485. "source": {
  7486. "type": "git",
  7487. "url": "https://github.com/nunomaduro/phpinsights.git",
  7488. "reference": "a701b7acfda9940ef0140c7276319df9026824c4"
  7489. },
  7490. "dist": {
  7491. "type": "zip",
  7492. "url": "https://api.github.com/repos/nunomaduro/phpinsights/zipball/a701b7acfda9940ef0140c7276319df9026824c4",
  7493. "reference": "a701b7acfda9940ef0140c7276319df9026824c4",
  7494. "shasum": ""
  7495. },
  7496. "require": {
  7497. "cmgmyr/phploc": "^8.0",
  7498. "composer/semver": "^3.3",
  7499. "ext-iconv": "*",
  7500. "ext-json": "*",
  7501. "ext-mbstring": "*",
  7502. "ext-tokenizer": "*",
  7503. "friendsofphp/php-cs-fixer": "^3.0.0",
  7504. "justinrainbow/json-schema": "^5.1",
  7505. "league/container": "^3.2|^4.2",
  7506. "php": "^7.4 || ^8.0 || ^8.1",
  7507. "php-parallel-lint/php-parallel-lint": "^1.3",
  7508. "psr/container": "^1.0|^2.0",
  7509. "psr/simple-cache": "^1.0|^2.0|^3.0",
  7510. "sebastian/diff": "^4.0|^5.0",
  7511. "slevomat/coding-standard": "^7.0.8|^8.0",
  7512. "squizlabs/php_codesniffer": "^3.5",
  7513. "symfony/cache": "^4.4|^5.0|^6.0",
  7514. "symfony/console": "^4.2.12|^5.0|^6.0",
  7515. "symfony/finder": "^4.2.12|^5.0|^6.0",
  7516. "symfony/http-client": "^4.3.8|^5.0|^6.0",
  7517. "symfony/process": "^5.4|^6.0"
  7518. },
  7519. "require-dev": {
  7520. "ergebnis/phpstan-rules": "^0.15.0",
  7521. "illuminate/console": "^5.8|^6.0|^7.0|^8.0|^9.0|^10.0",
  7522. "illuminate/support": "^5.8|^6.0|^7.0|^8.0|^9.0|^10.0",
  7523. "mockery/mockery": "^1.0",
  7524. "phpstan/phpstan-strict-rules": "^0.12",
  7525. "phpunit/phpunit": "^8.0|^9.0|^10.0",
  7526. "rector/rector": "0.11.56",
  7527. "symfony/var-dumper": "^4.2.12|^5.0|^6.0",
  7528. "thecodingmachine/phpstan-strict-rules": "^0.12.0"
  7529. },
  7530. "suggest": {
  7531. "ext-simplexml": "It is needed for the checkstyle formatter"
  7532. },
  7533. "bin": [
  7534. "bin/phpinsights"
  7535. ],
  7536. "type": "library",
  7537. "extra": {
  7538. "laravel": {
  7539. "providers": [
  7540. "NunoMaduro\\PhpInsights\\Application\\Adapters\\Laravel\\InsightsServiceProvider"
  7541. ]
  7542. }
  7543. },
  7544. "autoload": {
  7545. "psr-4": {
  7546. "NunoMaduro\\PhpInsights\\": "src"
  7547. }
  7548. },
  7549. "notification-url": "https://packagist.org/downloads/",
  7550. "license": [
  7551. "MIT"
  7552. ],
  7553. "authors": [
  7554. {
  7555. "name": "Nuno Maduro",
  7556. "email": "[email protected]"
  7557. }
  7558. ],
  7559. "description": "Instant PHP quality checks from your console.",
  7560. "keywords": [
  7561. "Insights",
  7562. "code",
  7563. "console",
  7564. "php",
  7565. "quality",
  7566. "source"
  7567. ],
  7568. "support": {
  7569. "issues": "https://github.com/nunomaduro/phpinsights/issues",
  7570. "source": "https://github.com/nunomaduro/phpinsights/tree/v2.8.0"
  7571. },
  7572. "funding": [
  7573. {
  7574. "url": "https://github.com/JustSteveKing",
  7575. "type": "github"
  7576. },
  7577. {
  7578. "url": "https://github.com/cmgmyr",
  7579. "type": "github"
  7580. },
  7581. {
  7582. "url": "https://github.com/nunomaduro",
  7583. "type": "github"
  7584. }
  7585. ],
  7586. "time": "2023-03-18T18:38:03+00:00"
  7587. },
  7588. {
  7589. "name": "phar-io/manifest",
  7590. "version": "2.0.3",
  7591. "source": {
  7592. "type": "git",
  7593. "url": "https://github.com/phar-io/manifest.git",
  7594. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  7595. },
  7596. "dist": {
  7597. "type": "zip",
  7598. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  7599. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  7600. "shasum": ""
  7601. },
  7602. "require": {
  7603. "ext-dom": "*",
  7604. "ext-phar": "*",
  7605. "ext-xmlwriter": "*",
  7606. "phar-io/version": "^3.0.1",
  7607. "php": "^7.2 || ^8.0"
  7608. },
  7609. "type": "library",
  7610. "extra": {
  7611. "branch-alias": {
  7612. "dev-master": "2.0.x-dev"
  7613. }
  7614. },
  7615. "autoload": {
  7616. "classmap": [
  7617. "src/"
  7618. ]
  7619. },
  7620. "notification-url": "https://packagist.org/downloads/",
  7621. "license": [
  7622. "BSD-3-Clause"
  7623. ],
  7624. "authors": [
  7625. {
  7626. "name": "Arne Blankerts",
  7627. "email": "[email protected]",
  7628. "role": "Developer"
  7629. },
  7630. {
  7631. "name": "Sebastian Heuer",
  7632. "email": "[email protected]",
  7633. "role": "Developer"
  7634. },
  7635. {
  7636. "name": "Sebastian Bergmann",
  7637. "email": "[email protected]",
  7638. "role": "Developer"
  7639. }
  7640. ],
  7641. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  7642. "support": {
  7643. "issues": "https://github.com/phar-io/manifest/issues",
  7644. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  7645. },
  7646. "time": "2021-07-20T11:28:43+00:00"
  7647. },
  7648. {
  7649. "name": "phar-io/version",
  7650. "version": "3.2.1",
  7651. "source": {
  7652. "type": "git",
  7653. "url": "https://github.com/phar-io/version.git",
  7654. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  7655. },
  7656. "dist": {
  7657. "type": "zip",
  7658. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  7659. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  7660. "shasum": ""
  7661. },
  7662. "require": {
  7663. "php": "^7.2 || ^8.0"
  7664. },
  7665. "type": "library",
  7666. "autoload": {
  7667. "classmap": [
  7668. "src/"
  7669. ]
  7670. },
  7671. "notification-url": "https://packagist.org/downloads/",
  7672. "license": [
  7673. "BSD-3-Clause"
  7674. ],
  7675. "authors": [
  7676. {
  7677. "name": "Arne Blankerts",
  7678. "email": "[email protected]",
  7679. "role": "Developer"
  7680. },
  7681. {
  7682. "name": "Sebastian Heuer",
  7683. "email": "[email protected]",
  7684. "role": "Developer"
  7685. },
  7686. {
  7687. "name": "Sebastian Bergmann",
  7688. "email": "[email protected]",
  7689. "role": "Developer"
  7690. }
  7691. ],
  7692. "description": "Library for handling version information and constraints",
  7693. "support": {
  7694. "issues": "https://github.com/phar-io/version/issues",
  7695. "source": "https://github.com/phar-io/version/tree/3.2.1"
  7696. },
  7697. "time": "2022-02-21T01:04:05+00:00"
  7698. },
  7699. {
  7700. "name": "php-parallel-lint/php-parallel-lint",
  7701. "version": "v1.3.2",
  7702. "source": {
  7703. "type": "git",
  7704. "url": "https://github.com/php-parallel-lint/PHP-Parallel-Lint.git",
  7705. "reference": "6483c9832e71973ed29cf71bd6b3f4fde438a9de"
  7706. },
  7707. "dist": {
  7708. "type": "zip",
  7709. "url": "https://api.github.com/repos/php-parallel-lint/PHP-Parallel-Lint/zipball/6483c9832e71973ed29cf71bd6b3f4fde438a9de",
  7710. "reference": "6483c9832e71973ed29cf71bd6b3f4fde438a9de",
  7711. "shasum": ""
  7712. },
  7713. "require": {
  7714. "ext-json": "*",
  7715. "php": ">=5.3.0"
  7716. },
  7717. "replace": {
  7718. "grogy/php-parallel-lint": "*",
  7719. "jakub-onderka/php-parallel-lint": "*"
  7720. },
  7721. "require-dev": {
  7722. "nette/tester": "^1.3 || ^2.0",
  7723. "php-parallel-lint/php-console-highlighter": "0.* || ^1.0",
  7724. "squizlabs/php_codesniffer": "^3.6"
  7725. },
  7726. "suggest": {
  7727. "php-parallel-lint/php-console-highlighter": "Highlight syntax in code snippet"
  7728. },
  7729. "bin": [
  7730. "parallel-lint"
  7731. ],
  7732. "type": "library",
  7733. "autoload": {
  7734. "classmap": [
  7735. "./src/"
  7736. ]
  7737. },
  7738. "notification-url": "https://packagist.org/downloads/",
  7739. "license": [
  7740. "BSD-2-Clause"
  7741. ],
  7742. "authors": [
  7743. {
  7744. "name": "Jakub Onderka",
  7745. "email": "[email protected]"
  7746. }
  7747. ],
  7748. "description": "This tool check syntax of PHP files about 20x faster than serial check.",
  7749. "homepage": "https://github.com/php-parallel-lint/PHP-Parallel-Lint",
  7750. "support": {
  7751. "issues": "https://github.com/php-parallel-lint/PHP-Parallel-Lint/issues",
  7752. "source": "https://github.com/php-parallel-lint/PHP-Parallel-Lint/tree/v1.3.2"
  7753. },
  7754. "time": "2022-02-21T12:50:22+00:00"
  7755. },
  7756. {
  7757. "name": "phpstan/phpdoc-parser",
  7758. "version": "1.24.0",
  7759. "source": {
  7760. "type": "git",
  7761. "url": "https://github.com/phpstan/phpdoc-parser.git",
  7762. "reference": "3510b0a6274cc42f7219367cb3abfc123ffa09d6"
  7763. },
  7764. "dist": {
  7765. "type": "zip",
  7766. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/3510b0a6274cc42f7219367cb3abfc123ffa09d6",
  7767. "reference": "3510b0a6274cc42f7219367cb3abfc123ffa09d6",
  7768. "shasum": ""
  7769. },
  7770. "require": {
  7771. "php": "^7.2 || ^8.0"
  7772. },
  7773. "require-dev": {
  7774. "doctrine/annotations": "^2.0",
  7775. "nikic/php-parser": "^4.15",
  7776. "php-parallel-lint/php-parallel-lint": "^1.2",
  7777. "phpstan/extension-installer": "^1.0",
  7778. "phpstan/phpstan": "^1.5",
  7779. "phpstan/phpstan-phpunit": "^1.1",
  7780. "phpstan/phpstan-strict-rules": "^1.0",
  7781. "phpunit/phpunit": "^9.5",
  7782. "symfony/process": "^5.2"
  7783. },
  7784. "type": "library",
  7785. "autoload": {
  7786. "psr-4": {
  7787. "PHPStan\\PhpDocParser\\": [
  7788. "src/"
  7789. ]
  7790. }
  7791. },
  7792. "notification-url": "https://packagist.org/downloads/",
  7793. "license": [
  7794. "MIT"
  7795. ],
  7796. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  7797. "support": {
  7798. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  7799. "source": "https://github.com/phpstan/phpdoc-parser/tree/1.24.0"
  7800. },
  7801. "time": "2023-09-07T20:46:32+00:00"
  7802. },
  7803. {
  7804. "name": "phpunit/php-code-coverage",
  7805. "version": "10.1.4",
  7806. "source": {
  7807. "type": "git",
  7808. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  7809. "reference": "cd59bb34756a16ca8253ce9b2909039c227fff71"
  7810. },
  7811. "dist": {
  7812. "type": "zip",
  7813. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/cd59bb34756a16ca8253ce9b2909039c227fff71",
  7814. "reference": "cd59bb34756a16ca8253ce9b2909039c227fff71",
  7815. "shasum": ""
  7816. },
  7817. "require": {
  7818. "ext-dom": "*",
  7819. "ext-libxml": "*",
  7820. "ext-xmlwriter": "*",
  7821. "nikic/php-parser": "^4.15",
  7822. "php": ">=8.1",
  7823. "phpunit/php-file-iterator": "^4.0",
  7824. "phpunit/php-text-template": "^3.0",
  7825. "sebastian/code-unit-reverse-lookup": "^3.0",
  7826. "sebastian/complexity": "^3.0",
  7827. "sebastian/environment": "^6.0",
  7828. "sebastian/lines-of-code": "^2.0",
  7829. "sebastian/version": "^4.0",
  7830. "theseer/tokenizer": "^1.2.0"
  7831. },
  7832. "require-dev": {
  7833. "phpunit/phpunit": "^10.1"
  7834. },
  7835. "suggest": {
  7836. "ext-pcov": "PHP extension that provides line coverage",
  7837. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  7838. },
  7839. "type": "library",
  7840. "extra": {
  7841. "branch-alias": {
  7842. "dev-main": "10.1-dev"
  7843. }
  7844. },
  7845. "autoload": {
  7846. "classmap": [
  7847. "src/"
  7848. ]
  7849. },
  7850. "notification-url": "https://packagist.org/downloads/",
  7851. "license": [
  7852. "BSD-3-Clause"
  7853. ],
  7854. "authors": [
  7855. {
  7856. "name": "Sebastian Bergmann",
  7857. "email": "[email protected]",
  7858. "role": "lead"
  7859. }
  7860. ],
  7861. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  7862. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  7863. "keywords": [
  7864. "coverage",
  7865. "testing",
  7866. "xunit"
  7867. ],
  7868. "support": {
  7869. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  7870. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  7871. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.4"
  7872. },
  7873. "funding": [
  7874. {
  7875. "url": "https://github.com/sebastianbergmann",
  7876. "type": "github"
  7877. }
  7878. ],
  7879. "time": "2023-08-31T14:04:38+00:00"
  7880. },
  7881. {
  7882. "name": "phpunit/php-file-iterator",
  7883. "version": "4.1.0",
  7884. "source": {
  7885. "type": "git",
  7886. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  7887. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  7888. },
  7889. "dist": {
  7890. "type": "zip",
  7891. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  7892. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  7893. "shasum": ""
  7894. },
  7895. "require": {
  7896. "php": ">=8.1"
  7897. },
  7898. "require-dev": {
  7899. "phpunit/phpunit": "^10.0"
  7900. },
  7901. "type": "library",
  7902. "extra": {
  7903. "branch-alias": {
  7904. "dev-main": "4.0-dev"
  7905. }
  7906. },
  7907. "autoload": {
  7908. "classmap": [
  7909. "src/"
  7910. ]
  7911. },
  7912. "notification-url": "https://packagist.org/downloads/",
  7913. "license": [
  7914. "BSD-3-Clause"
  7915. ],
  7916. "authors": [
  7917. {
  7918. "name": "Sebastian Bergmann",
  7919. "email": "[email protected]",
  7920. "role": "lead"
  7921. }
  7922. ],
  7923. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  7924. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  7925. "keywords": [
  7926. "filesystem",
  7927. "iterator"
  7928. ],
  7929. "support": {
  7930. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  7931. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  7932. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  7933. },
  7934. "funding": [
  7935. {
  7936. "url": "https://github.com/sebastianbergmann",
  7937. "type": "github"
  7938. }
  7939. ],
  7940. "time": "2023-08-31T06:24:48+00:00"
  7941. },
  7942. {
  7943. "name": "phpunit/php-invoker",
  7944. "version": "4.0.0",
  7945. "source": {
  7946. "type": "git",
  7947. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  7948. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  7949. },
  7950. "dist": {
  7951. "type": "zip",
  7952. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  7953. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  7954. "shasum": ""
  7955. },
  7956. "require": {
  7957. "php": ">=8.1"
  7958. },
  7959. "require-dev": {
  7960. "ext-pcntl": "*",
  7961. "phpunit/phpunit": "^10.0"
  7962. },
  7963. "suggest": {
  7964. "ext-pcntl": "*"
  7965. },
  7966. "type": "library",
  7967. "extra": {
  7968. "branch-alias": {
  7969. "dev-main": "4.0-dev"
  7970. }
  7971. },
  7972. "autoload": {
  7973. "classmap": [
  7974. "src/"
  7975. ]
  7976. },
  7977. "notification-url": "https://packagist.org/downloads/",
  7978. "license": [
  7979. "BSD-3-Clause"
  7980. ],
  7981. "authors": [
  7982. {
  7983. "name": "Sebastian Bergmann",
  7984. "email": "[email protected]",
  7985. "role": "lead"
  7986. }
  7987. ],
  7988. "description": "Invoke callables with a timeout",
  7989. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  7990. "keywords": [
  7991. "process"
  7992. ],
  7993. "support": {
  7994. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  7995. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  7996. },
  7997. "funding": [
  7998. {
  7999. "url": "https://github.com/sebastianbergmann",
  8000. "type": "github"
  8001. }
  8002. ],
  8003. "time": "2023-02-03T06:56:09+00:00"
  8004. },
  8005. {
  8006. "name": "phpunit/php-text-template",
  8007. "version": "3.0.1",
  8008. "source": {
  8009. "type": "git",
  8010. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8011. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  8012. },
  8013. "dist": {
  8014. "type": "zip",
  8015. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  8016. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  8017. "shasum": ""
  8018. },
  8019. "require": {
  8020. "php": ">=8.1"
  8021. },
  8022. "require-dev": {
  8023. "phpunit/phpunit": "^10.0"
  8024. },
  8025. "type": "library",
  8026. "extra": {
  8027. "branch-alias": {
  8028. "dev-main": "3.0-dev"
  8029. }
  8030. },
  8031. "autoload": {
  8032. "classmap": [
  8033. "src/"
  8034. ]
  8035. },
  8036. "notification-url": "https://packagist.org/downloads/",
  8037. "license": [
  8038. "BSD-3-Clause"
  8039. ],
  8040. "authors": [
  8041. {
  8042. "name": "Sebastian Bergmann",
  8043. "email": "[email protected]",
  8044. "role": "lead"
  8045. }
  8046. ],
  8047. "description": "Simple template engine.",
  8048. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8049. "keywords": [
  8050. "template"
  8051. ],
  8052. "support": {
  8053. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8054. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  8055. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  8056. },
  8057. "funding": [
  8058. {
  8059. "url": "https://github.com/sebastianbergmann",
  8060. "type": "github"
  8061. }
  8062. ],
  8063. "time": "2023-08-31T14:07:24+00:00"
  8064. },
  8065. {
  8066. "name": "phpunit/php-timer",
  8067. "version": "6.0.0",
  8068. "source": {
  8069. "type": "git",
  8070. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8071. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  8072. },
  8073. "dist": {
  8074. "type": "zip",
  8075. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  8076. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  8077. "shasum": ""
  8078. },
  8079. "require": {
  8080. "php": ">=8.1"
  8081. },
  8082. "require-dev": {
  8083. "phpunit/phpunit": "^10.0"
  8084. },
  8085. "type": "library",
  8086. "extra": {
  8087. "branch-alias": {
  8088. "dev-main": "6.0-dev"
  8089. }
  8090. },
  8091. "autoload": {
  8092. "classmap": [
  8093. "src/"
  8094. ]
  8095. },
  8096. "notification-url": "https://packagist.org/downloads/",
  8097. "license": [
  8098. "BSD-3-Clause"
  8099. ],
  8100. "authors": [
  8101. {
  8102. "name": "Sebastian Bergmann",
  8103. "email": "[email protected]",
  8104. "role": "lead"
  8105. }
  8106. ],
  8107. "description": "Utility class for timing",
  8108. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8109. "keywords": [
  8110. "timer"
  8111. ],
  8112. "support": {
  8113. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8114. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  8115. },
  8116. "funding": [
  8117. {
  8118. "url": "https://github.com/sebastianbergmann",
  8119. "type": "github"
  8120. }
  8121. ],
  8122. "time": "2023-02-03T06:57:52+00:00"
  8123. },
  8124. {
  8125. "name": "phpunit/phpunit",
  8126. "version": "10.3.3",
  8127. "source": {
  8128. "type": "git",
  8129. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8130. "reference": "241ed4dd0db1c096984e62d414c4e1ac8d5dbff4"
  8131. },
  8132. "dist": {
  8133. "type": "zip",
  8134. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/241ed4dd0db1c096984e62d414c4e1ac8d5dbff4",
  8135. "reference": "241ed4dd0db1c096984e62d414c4e1ac8d5dbff4",
  8136. "shasum": ""
  8137. },
  8138. "require": {
  8139. "ext-dom": "*",
  8140. "ext-json": "*",
  8141. "ext-libxml": "*",
  8142. "ext-mbstring": "*",
  8143. "ext-xml": "*",
  8144. "ext-xmlwriter": "*",
  8145. "myclabs/deep-copy": "^1.10.1",
  8146. "phar-io/manifest": "^2.0.3",
  8147. "phar-io/version": "^3.0.2",
  8148. "php": ">=8.1",
  8149. "phpunit/php-code-coverage": "^10.1.1",
  8150. "phpunit/php-file-iterator": "^4.0",
  8151. "phpunit/php-invoker": "^4.0",
  8152. "phpunit/php-text-template": "^3.0",
  8153. "phpunit/php-timer": "^6.0",
  8154. "sebastian/cli-parser": "^2.0",
  8155. "sebastian/code-unit": "^2.0",
  8156. "sebastian/comparator": "^5.0",
  8157. "sebastian/diff": "^5.0",
  8158. "sebastian/environment": "^6.0",
  8159. "sebastian/exporter": "^5.0",
  8160. "sebastian/global-state": "^6.0.1",
  8161. "sebastian/object-enumerator": "^5.0",
  8162. "sebastian/recursion-context": "^5.0",
  8163. "sebastian/type": "^4.0",
  8164. "sebastian/version": "^4.0"
  8165. },
  8166. "suggest": {
  8167. "ext-soap": "To be able to generate mocks based on WSDL files"
  8168. },
  8169. "bin": [
  8170. "phpunit"
  8171. ],
  8172. "type": "library",
  8173. "extra": {
  8174. "branch-alias": {
  8175. "dev-main": "10.3-dev"
  8176. }
  8177. },
  8178. "autoload": {
  8179. "files": [
  8180. "src/Framework/Assert/Functions.php"
  8181. ],
  8182. "classmap": [
  8183. "src/"
  8184. ]
  8185. },
  8186. "notification-url": "https://packagist.org/downloads/",
  8187. "license": [
  8188. "BSD-3-Clause"
  8189. ],
  8190. "authors": [
  8191. {
  8192. "name": "Sebastian Bergmann",
  8193. "email": "[email protected]",
  8194. "role": "lead"
  8195. }
  8196. ],
  8197. "description": "The PHP Unit Testing framework.",
  8198. "homepage": "https://phpunit.de/",
  8199. "keywords": [
  8200. "phpunit",
  8201. "testing",
  8202. "xunit"
  8203. ],
  8204. "support": {
  8205. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  8206. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  8207. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.3.3"
  8208. },
  8209. "funding": [
  8210. {
  8211. "url": "https://phpunit.de/sponsors.html",
  8212. "type": "custom"
  8213. },
  8214. {
  8215. "url": "https://github.com/sebastianbergmann",
  8216. "type": "github"
  8217. },
  8218. {
  8219. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  8220. "type": "tidelift"
  8221. }
  8222. ],
  8223. "time": "2023-09-05T04:34:51+00:00"
  8224. },
  8225. {
  8226. "name": "psr/cache",
  8227. "version": "3.0.0",
  8228. "source": {
  8229. "type": "git",
  8230. "url": "https://github.com/php-fig/cache.git",
  8231. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  8232. },
  8233. "dist": {
  8234. "type": "zip",
  8235. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  8236. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  8237. "shasum": ""
  8238. },
  8239. "require": {
  8240. "php": ">=8.0.0"
  8241. },
  8242. "type": "library",
  8243. "extra": {
  8244. "branch-alias": {
  8245. "dev-master": "1.0.x-dev"
  8246. }
  8247. },
  8248. "autoload": {
  8249. "psr-4": {
  8250. "Psr\\Cache\\": "src/"
  8251. }
  8252. },
  8253. "notification-url": "https://packagist.org/downloads/",
  8254. "license": [
  8255. "MIT"
  8256. ],
  8257. "authors": [
  8258. {
  8259. "name": "PHP-FIG",
  8260. "homepage": "https://www.php-fig.org/"
  8261. }
  8262. ],
  8263. "description": "Common interface for caching libraries",
  8264. "keywords": [
  8265. "cache",
  8266. "psr",
  8267. "psr-6"
  8268. ],
  8269. "support": {
  8270. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  8271. },
  8272. "time": "2021-02-03T23:26:27+00:00"
  8273. },
  8274. {
  8275. "name": "sebastian/cli-parser",
  8276. "version": "2.0.0",
  8277. "source": {
  8278. "type": "git",
  8279. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  8280. "reference": "efdc130dbbbb8ef0b545a994fd811725c5282cae"
  8281. },
  8282. "dist": {
  8283. "type": "zip",
  8284. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/efdc130dbbbb8ef0b545a994fd811725c5282cae",
  8285. "reference": "efdc130dbbbb8ef0b545a994fd811725c5282cae",
  8286. "shasum": ""
  8287. },
  8288. "require": {
  8289. "php": ">=8.1"
  8290. },
  8291. "require-dev": {
  8292. "phpunit/phpunit": "^10.0"
  8293. },
  8294. "type": "library",
  8295. "extra": {
  8296. "branch-alias": {
  8297. "dev-main": "2.0-dev"
  8298. }
  8299. },
  8300. "autoload": {
  8301. "classmap": [
  8302. "src/"
  8303. ]
  8304. },
  8305. "notification-url": "https://packagist.org/downloads/",
  8306. "license": [
  8307. "BSD-3-Clause"
  8308. ],
  8309. "authors": [
  8310. {
  8311. "name": "Sebastian Bergmann",
  8312. "email": "[email protected]",
  8313. "role": "lead"
  8314. }
  8315. ],
  8316. "description": "Library for parsing CLI options",
  8317. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  8318. "support": {
  8319. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  8320. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.0"
  8321. },
  8322. "funding": [
  8323. {
  8324. "url": "https://github.com/sebastianbergmann",
  8325. "type": "github"
  8326. }
  8327. ],
  8328. "time": "2023-02-03T06:58:15+00:00"
  8329. },
  8330. {
  8331. "name": "sebastian/code-unit",
  8332. "version": "2.0.0",
  8333. "source": {
  8334. "type": "git",
  8335. "url": "https://github.com/sebastianbergmann/code-unit.git",
  8336. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  8337. },
  8338. "dist": {
  8339. "type": "zip",
  8340. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  8341. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  8342. "shasum": ""
  8343. },
  8344. "require": {
  8345. "php": ">=8.1"
  8346. },
  8347. "require-dev": {
  8348. "phpunit/phpunit": "^10.0"
  8349. },
  8350. "type": "library",
  8351. "extra": {
  8352. "branch-alias": {
  8353. "dev-main": "2.0-dev"
  8354. }
  8355. },
  8356. "autoload": {
  8357. "classmap": [
  8358. "src/"
  8359. ]
  8360. },
  8361. "notification-url": "https://packagist.org/downloads/",
  8362. "license": [
  8363. "BSD-3-Clause"
  8364. ],
  8365. "authors": [
  8366. {
  8367. "name": "Sebastian Bergmann",
  8368. "email": "[email protected]",
  8369. "role": "lead"
  8370. }
  8371. ],
  8372. "description": "Collection of value objects that represent the PHP code units",
  8373. "homepage": "https://github.com/sebastianbergmann/code-unit",
  8374. "support": {
  8375. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  8376. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  8377. },
  8378. "funding": [
  8379. {
  8380. "url": "https://github.com/sebastianbergmann",
  8381. "type": "github"
  8382. }
  8383. ],
  8384. "time": "2023-02-03T06:58:43+00:00"
  8385. },
  8386. {
  8387. "name": "sebastian/code-unit-reverse-lookup",
  8388. "version": "3.0.0",
  8389. "source": {
  8390. "type": "git",
  8391. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  8392. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  8393. },
  8394. "dist": {
  8395. "type": "zip",
  8396. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  8397. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  8398. "shasum": ""
  8399. },
  8400. "require": {
  8401. "php": ">=8.1"
  8402. },
  8403. "require-dev": {
  8404. "phpunit/phpunit": "^10.0"
  8405. },
  8406. "type": "library",
  8407. "extra": {
  8408. "branch-alias": {
  8409. "dev-main": "3.0-dev"
  8410. }
  8411. },
  8412. "autoload": {
  8413. "classmap": [
  8414. "src/"
  8415. ]
  8416. },
  8417. "notification-url": "https://packagist.org/downloads/",
  8418. "license": [
  8419. "BSD-3-Clause"
  8420. ],
  8421. "authors": [
  8422. {
  8423. "name": "Sebastian Bergmann",
  8424. "email": "[email protected]"
  8425. }
  8426. ],
  8427. "description": "Looks up which function or method a line of code belongs to",
  8428. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  8429. "support": {
  8430. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  8431. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  8432. },
  8433. "funding": [
  8434. {
  8435. "url": "https://github.com/sebastianbergmann",
  8436. "type": "github"
  8437. }
  8438. ],
  8439. "time": "2023-02-03T06:59:15+00:00"
  8440. },
  8441. {
  8442. "name": "sebastian/comparator",
  8443. "version": "5.0.1",
  8444. "source": {
  8445. "type": "git",
  8446. "url": "https://github.com/sebastianbergmann/comparator.git",
  8447. "reference": "2db5010a484d53ebf536087a70b4a5423c102372"
  8448. },
  8449. "dist": {
  8450. "type": "zip",
  8451. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2db5010a484d53ebf536087a70b4a5423c102372",
  8452. "reference": "2db5010a484d53ebf536087a70b4a5423c102372",
  8453. "shasum": ""
  8454. },
  8455. "require": {
  8456. "ext-dom": "*",
  8457. "ext-mbstring": "*",
  8458. "php": ">=8.1",
  8459. "sebastian/diff": "^5.0",
  8460. "sebastian/exporter": "^5.0"
  8461. },
  8462. "require-dev": {
  8463. "phpunit/phpunit": "^10.3"
  8464. },
  8465. "type": "library",
  8466. "extra": {
  8467. "branch-alias": {
  8468. "dev-main": "5.0-dev"
  8469. }
  8470. },
  8471. "autoload": {
  8472. "classmap": [
  8473. "src/"
  8474. ]
  8475. },
  8476. "notification-url": "https://packagist.org/downloads/",
  8477. "license": [
  8478. "BSD-3-Clause"
  8479. ],
  8480. "authors": [
  8481. {
  8482. "name": "Sebastian Bergmann",
  8483. "email": "[email protected]"
  8484. },
  8485. {
  8486. "name": "Jeff Welch",
  8487. "email": "[email protected]"
  8488. },
  8489. {
  8490. "name": "Volker Dusch",
  8491. "email": "[email protected]"
  8492. },
  8493. {
  8494. "name": "Bernhard Schussek",
  8495. "email": "[email protected]"
  8496. }
  8497. ],
  8498. "description": "Provides the functionality to compare PHP values for equality",
  8499. "homepage": "https://github.com/sebastianbergmann/comparator",
  8500. "keywords": [
  8501. "comparator",
  8502. "compare",
  8503. "equality"
  8504. ],
  8505. "support": {
  8506. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  8507. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  8508. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.1"
  8509. },
  8510. "funding": [
  8511. {
  8512. "url": "https://github.com/sebastianbergmann",
  8513. "type": "github"
  8514. }
  8515. ],
  8516. "time": "2023-08-14T13:18:12+00:00"
  8517. },
  8518. {
  8519. "name": "sebastian/complexity",
  8520. "version": "3.0.1",
  8521. "source": {
  8522. "type": "git",
  8523. "url": "https://github.com/sebastianbergmann/complexity.git",
  8524. "reference": "c70b73893e10757af9c6a48929fa6a333b56a97a"
  8525. },
  8526. "dist": {
  8527. "type": "zip",
  8528. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/c70b73893e10757af9c6a48929fa6a333b56a97a",
  8529. "reference": "c70b73893e10757af9c6a48929fa6a333b56a97a",
  8530. "shasum": ""
  8531. },
  8532. "require": {
  8533. "nikic/php-parser": "^4.10",
  8534. "php": ">=8.1"
  8535. },
  8536. "require-dev": {
  8537. "phpunit/phpunit": "^10.0"
  8538. },
  8539. "type": "library",
  8540. "extra": {
  8541. "branch-alias": {
  8542. "dev-main": "3.0-dev"
  8543. }
  8544. },
  8545. "autoload": {
  8546. "classmap": [
  8547. "src/"
  8548. ]
  8549. },
  8550. "notification-url": "https://packagist.org/downloads/",
  8551. "license": [
  8552. "BSD-3-Clause"
  8553. ],
  8554. "authors": [
  8555. {
  8556. "name": "Sebastian Bergmann",
  8557. "email": "[email protected]",
  8558. "role": "lead"
  8559. }
  8560. ],
  8561. "description": "Library for calculating the complexity of PHP code units",
  8562. "homepage": "https://github.com/sebastianbergmann/complexity",
  8563. "support": {
  8564. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  8565. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  8566. "source": "https://github.com/sebastianbergmann/complexity/tree/3.0.1"
  8567. },
  8568. "funding": [
  8569. {
  8570. "url": "https://github.com/sebastianbergmann",
  8571. "type": "github"
  8572. }
  8573. ],
  8574. "time": "2023-08-31T09:55:53+00:00"
  8575. },
  8576. {
  8577. "name": "sebastian/diff",
  8578. "version": "5.0.3",
  8579. "source": {
  8580. "type": "git",
  8581. "url": "https://github.com/sebastianbergmann/diff.git",
  8582. "reference": "912dc2fbe3e3c1e7873313cc801b100b6c68c87b"
  8583. },
  8584. "dist": {
  8585. "type": "zip",
  8586. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/912dc2fbe3e3c1e7873313cc801b100b6c68c87b",
  8587. "reference": "912dc2fbe3e3c1e7873313cc801b100b6c68c87b",
  8588. "shasum": ""
  8589. },
  8590. "require": {
  8591. "php": ">=8.1"
  8592. },
  8593. "require-dev": {
  8594. "phpunit/phpunit": "^10.0",
  8595. "symfony/process": "^4.2 || ^5"
  8596. },
  8597. "type": "library",
  8598. "extra": {
  8599. "branch-alias": {
  8600. "dev-main": "5.0-dev"
  8601. }
  8602. },
  8603. "autoload": {
  8604. "classmap": [
  8605. "src/"
  8606. ]
  8607. },
  8608. "notification-url": "https://packagist.org/downloads/",
  8609. "license": [
  8610. "BSD-3-Clause"
  8611. ],
  8612. "authors": [
  8613. {
  8614. "name": "Sebastian Bergmann",
  8615. "email": "[email protected]"
  8616. },
  8617. {
  8618. "name": "Kore Nordmann",
  8619. "email": "[email protected]"
  8620. }
  8621. ],
  8622. "description": "Diff implementation",
  8623. "homepage": "https://github.com/sebastianbergmann/diff",
  8624. "keywords": [
  8625. "diff",
  8626. "udiff",
  8627. "unidiff",
  8628. "unified diff"
  8629. ],
  8630. "support": {
  8631. "issues": "https://github.com/sebastianbergmann/diff/issues",
  8632. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  8633. "source": "https://github.com/sebastianbergmann/diff/tree/5.0.3"
  8634. },
  8635. "funding": [
  8636. {
  8637. "url": "https://github.com/sebastianbergmann",
  8638. "type": "github"
  8639. }
  8640. ],
  8641. "time": "2023-05-01T07:48:21+00:00"
  8642. },
  8643. {
  8644. "name": "sebastian/environment",
  8645. "version": "6.0.1",
  8646. "source": {
  8647. "type": "git",
  8648. "url": "https://github.com/sebastianbergmann/environment.git",
  8649. "reference": "43c751b41d74f96cbbd4e07b7aec9675651e2951"
  8650. },
  8651. "dist": {
  8652. "type": "zip",
  8653. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/43c751b41d74f96cbbd4e07b7aec9675651e2951",
  8654. "reference": "43c751b41d74f96cbbd4e07b7aec9675651e2951",
  8655. "shasum": ""
  8656. },
  8657. "require": {
  8658. "php": ">=8.1"
  8659. },
  8660. "require-dev": {
  8661. "phpunit/phpunit": "^10.0"
  8662. },
  8663. "suggest": {
  8664. "ext-posix": "*"
  8665. },
  8666. "type": "library",
  8667. "extra": {
  8668. "branch-alias": {
  8669. "dev-main": "6.0-dev"
  8670. }
  8671. },
  8672. "autoload": {
  8673. "classmap": [
  8674. "src/"
  8675. ]
  8676. },
  8677. "notification-url": "https://packagist.org/downloads/",
  8678. "license": [
  8679. "BSD-3-Clause"
  8680. ],
  8681. "authors": [
  8682. {
  8683. "name": "Sebastian Bergmann",
  8684. "email": "[email protected]"
  8685. }
  8686. ],
  8687. "description": "Provides functionality to handle HHVM/PHP environments",
  8688. "homepage": "https://github.com/sebastianbergmann/environment",
  8689. "keywords": [
  8690. "Xdebug",
  8691. "environment",
  8692. "hhvm"
  8693. ],
  8694. "support": {
  8695. "issues": "https://github.com/sebastianbergmann/environment/issues",
  8696. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  8697. "source": "https://github.com/sebastianbergmann/environment/tree/6.0.1"
  8698. },
  8699. "funding": [
  8700. {
  8701. "url": "https://github.com/sebastianbergmann",
  8702. "type": "github"
  8703. }
  8704. ],
  8705. "time": "2023-04-11T05:39:26+00:00"
  8706. },
  8707. {
  8708. "name": "sebastian/exporter",
  8709. "version": "5.0.1",
  8710. "source": {
  8711. "type": "git",
  8712. "url": "https://github.com/sebastianbergmann/exporter.git",
  8713. "reference": "32ff03d078fed1279c4ec9a407d08c5e9febb480"
  8714. },
  8715. "dist": {
  8716. "type": "zip",
  8717. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/32ff03d078fed1279c4ec9a407d08c5e9febb480",
  8718. "reference": "32ff03d078fed1279c4ec9a407d08c5e9febb480",
  8719. "shasum": ""
  8720. },
  8721. "require": {
  8722. "ext-mbstring": "*",
  8723. "php": ">=8.1",
  8724. "sebastian/recursion-context": "^5.0"
  8725. },
  8726. "require-dev": {
  8727. "phpunit/phpunit": "^10.0"
  8728. },
  8729. "type": "library",
  8730. "extra": {
  8731. "branch-alias": {
  8732. "dev-main": "5.0-dev"
  8733. }
  8734. },
  8735. "autoload": {
  8736. "classmap": [
  8737. "src/"
  8738. ]
  8739. },
  8740. "notification-url": "https://packagist.org/downloads/",
  8741. "license": [
  8742. "BSD-3-Clause"
  8743. ],
  8744. "authors": [
  8745. {
  8746. "name": "Sebastian Bergmann",
  8747. "email": "[email protected]"
  8748. },
  8749. {
  8750. "name": "Jeff Welch",
  8751. "email": "[email protected]"
  8752. },
  8753. {
  8754. "name": "Volker Dusch",
  8755. "email": "[email protected]"
  8756. },
  8757. {
  8758. "name": "Adam Harvey",
  8759. "email": "[email protected]"
  8760. },
  8761. {
  8762. "name": "Bernhard Schussek",
  8763. "email": "[email protected]"
  8764. }
  8765. ],
  8766. "description": "Provides the functionality to export PHP variables for visualization",
  8767. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  8768. "keywords": [
  8769. "export",
  8770. "exporter"
  8771. ],
  8772. "support": {
  8773. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  8774. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  8775. "source": "https://github.com/sebastianbergmann/exporter/tree/5.0.1"
  8776. },
  8777. "funding": [
  8778. {
  8779. "url": "https://github.com/sebastianbergmann",
  8780. "type": "github"
  8781. }
  8782. ],
  8783. "time": "2023-09-08T04:46:58+00:00"
  8784. },
  8785. {
  8786. "name": "sebastian/global-state",
  8787. "version": "6.0.1",
  8788. "source": {
  8789. "type": "git",
  8790. "url": "https://github.com/sebastianbergmann/global-state.git",
  8791. "reference": "7ea9ead78f6d380d2a667864c132c2f7b83055e4"
  8792. },
  8793. "dist": {
  8794. "type": "zip",
  8795. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/7ea9ead78f6d380d2a667864c132c2f7b83055e4",
  8796. "reference": "7ea9ead78f6d380d2a667864c132c2f7b83055e4",
  8797. "shasum": ""
  8798. },
  8799. "require": {
  8800. "php": ">=8.1",
  8801. "sebastian/object-reflector": "^3.0",
  8802. "sebastian/recursion-context": "^5.0"
  8803. },
  8804. "require-dev": {
  8805. "ext-dom": "*",
  8806. "phpunit/phpunit": "^10.0"
  8807. },
  8808. "type": "library",
  8809. "extra": {
  8810. "branch-alias": {
  8811. "dev-main": "6.0-dev"
  8812. }
  8813. },
  8814. "autoload": {
  8815. "classmap": [
  8816. "src/"
  8817. ]
  8818. },
  8819. "notification-url": "https://packagist.org/downloads/",
  8820. "license": [
  8821. "BSD-3-Clause"
  8822. ],
  8823. "authors": [
  8824. {
  8825. "name": "Sebastian Bergmann",
  8826. "email": "[email protected]"
  8827. }
  8828. ],
  8829. "description": "Snapshotting of global state",
  8830. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  8831. "keywords": [
  8832. "global state"
  8833. ],
  8834. "support": {
  8835. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  8836. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  8837. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.1"
  8838. },
  8839. "funding": [
  8840. {
  8841. "url": "https://github.com/sebastianbergmann",
  8842. "type": "github"
  8843. }
  8844. ],
  8845. "time": "2023-07-19T07:19:23+00:00"
  8846. },
  8847. {
  8848. "name": "sebastian/lines-of-code",
  8849. "version": "2.0.1",
  8850. "source": {
  8851. "type": "git",
  8852. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  8853. "reference": "649e40d279e243d985aa8fb6e74dd5bb28dc185d"
  8854. },
  8855. "dist": {
  8856. "type": "zip",
  8857. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/649e40d279e243d985aa8fb6e74dd5bb28dc185d",
  8858. "reference": "649e40d279e243d985aa8fb6e74dd5bb28dc185d",
  8859. "shasum": ""
  8860. },
  8861. "require": {
  8862. "nikic/php-parser": "^4.10",
  8863. "php": ">=8.1"
  8864. },
  8865. "require-dev": {
  8866. "phpunit/phpunit": "^10.0"
  8867. },
  8868. "type": "library",
  8869. "extra": {
  8870. "branch-alias": {
  8871. "dev-main": "2.0-dev"
  8872. }
  8873. },
  8874. "autoload": {
  8875. "classmap": [
  8876. "src/"
  8877. ]
  8878. },
  8879. "notification-url": "https://packagist.org/downloads/",
  8880. "license": [
  8881. "BSD-3-Clause"
  8882. ],
  8883. "authors": [
  8884. {
  8885. "name": "Sebastian Bergmann",
  8886. "email": "[email protected]",
  8887. "role": "lead"
  8888. }
  8889. ],
  8890. "description": "Library for counting the lines of code in PHP source code",
  8891. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  8892. "support": {
  8893. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  8894. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  8895. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.1"
  8896. },
  8897. "funding": [
  8898. {
  8899. "url": "https://github.com/sebastianbergmann",
  8900. "type": "github"
  8901. }
  8902. ],
  8903. "time": "2023-08-31T09:25:50+00:00"
  8904. },
  8905. {
  8906. "name": "sebastian/object-enumerator",
  8907. "version": "5.0.0",
  8908. "source": {
  8909. "type": "git",
  8910. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  8911. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  8912. },
  8913. "dist": {
  8914. "type": "zip",
  8915. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  8916. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  8917. "shasum": ""
  8918. },
  8919. "require": {
  8920. "php": ">=8.1",
  8921. "sebastian/object-reflector": "^3.0",
  8922. "sebastian/recursion-context": "^5.0"
  8923. },
  8924. "require-dev": {
  8925. "phpunit/phpunit": "^10.0"
  8926. },
  8927. "type": "library",
  8928. "extra": {
  8929. "branch-alias": {
  8930. "dev-main": "5.0-dev"
  8931. }
  8932. },
  8933. "autoload": {
  8934. "classmap": [
  8935. "src/"
  8936. ]
  8937. },
  8938. "notification-url": "https://packagist.org/downloads/",
  8939. "license": [
  8940. "BSD-3-Clause"
  8941. ],
  8942. "authors": [
  8943. {
  8944. "name": "Sebastian Bergmann",
  8945. "email": "[email protected]"
  8946. }
  8947. ],
  8948. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  8949. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  8950. "support": {
  8951. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  8952. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  8953. },
  8954. "funding": [
  8955. {
  8956. "url": "https://github.com/sebastianbergmann",
  8957. "type": "github"
  8958. }
  8959. ],
  8960. "time": "2023-02-03T07:08:32+00:00"
  8961. },
  8962. {
  8963. "name": "sebastian/object-reflector",
  8964. "version": "3.0.0",
  8965. "source": {
  8966. "type": "git",
  8967. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  8968. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  8969. },
  8970. "dist": {
  8971. "type": "zip",
  8972. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  8973. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  8974. "shasum": ""
  8975. },
  8976. "require": {
  8977. "php": ">=8.1"
  8978. },
  8979. "require-dev": {
  8980. "phpunit/phpunit": "^10.0"
  8981. },
  8982. "type": "library",
  8983. "extra": {
  8984. "branch-alias": {
  8985. "dev-main": "3.0-dev"
  8986. }
  8987. },
  8988. "autoload": {
  8989. "classmap": [
  8990. "src/"
  8991. ]
  8992. },
  8993. "notification-url": "https://packagist.org/downloads/",
  8994. "license": [
  8995. "BSD-3-Clause"
  8996. ],
  8997. "authors": [
  8998. {
  8999. "name": "Sebastian Bergmann",
  9000. "email": "[email protected]"
  9001. }
  9002. ],
  9003. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9004. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9005. "support": {
  9006. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9007. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  9008. },
  9009. "funding": [
  9010. {
  9011. "url": "https://github.com/sebastianbergmann",
  9012. "type": "github"
  9013. }
  9014. ],
  9015. "time": "2023-02-03T07:06:18+00:00"
  9016. },
  9017. {
  9018. "name": "sebastian/recursion-context",
  9019. "version": "5.0.0",
  9020. "source": {
  9021. "type": "git",
  9022. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9023. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  9024. },
  9025. "dist": {
  9026. "type": "zip",
  9027. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  9028. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  9029. "shasum": ""
  9030. },
  9031. "require": {
  9032. "php": ">=8.1"
  9033. },
  9034. "require-dev": {
  9035. "phpunit/phpunit": "^10.0"
  9036. },
  9037. "type": "library",
  9038. "extra": {
  9039. "branch-alias": {
  9040. "dev-main": "5.0-dev"
  9041. }
  9042. },
  9043. "autoload": {
  9044. "classmap": [
  9045. "src/"
  9046. ]
  9047. },
  9048. "notification-url": "https://packagist.org/downloads/",
  9049. "license": [
  9050. "BSD-3-Clause"
  9051. ],
  9052. "authors": [
  9053. {
  9054. "name": "Sebastian Bergmann",
  9055. "email": "[email protected]"
  9056. },
  9057. {
  9058. "name": "Jeff Welch",
  9059. "email": "[email protected]"
  9060. },
  9061. {
  9062. "name": "Adam Harvey",
  9063. "email": "[email protected]"
  9064. }
  9065. ],
  9066. "description": "Provides functionality to recursively process PHP variables",
  9067. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  9068. "support": {
  9069. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9070. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  9071. },
  9072. "funding": [
  9073. {
  9074. "url": "https://github.com/sebastianbergmann",
  9075. "type": "github"
  9076. }
  9077. ],
  9078. "time": "2023-02-03T07:05:40+00:00"
  9079. },
  9080. {
  9081. "name": "sebastian/type",
  9082. "version": "4.0.0",
  9083. "source": {
  9084. "type": "git",
  9085. "url": "https://github.com/sebastianbergmann/type.git",
  9086. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  9087. },
  9088. "dist": {
  9089. "type": "zip",
  9090. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  9091. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  9092. "shasum": ""
  9093. },
  9094. "require": {
  9095. "php": ">=8.1"
  9096. },
  9097. "require-dev": {
  9098. "phpunit/phpunit": "^10.0"
  9099. },
  9100. "type": "library",
  9101. "extra": {
  9102. "branch-alias": {
  9103. "dev-main": "4.0-dev"
  9104. }
  9105. },
  9106. "autoload": {
  9107. "classmap": [
  9108. "src/"
  9109. ]
  9110. },
  9111. "notification-url": "https://packagist.org/downloads/",
  9112. "license": [
  9113. "BSD-3-Clause"
  9114. ],
  9115. "authors": [
  9116. {
  9117. "name": "Sebastian Bergmann",
  9118. "email": "[email protected]",
  9119. "role": "lead"
  9120. }
  9121. ],
  9122. "description": "Collection of value objects that represent the types of the PHP type system",
  9123. "homepage": "https://github.com/sebastianbergmann/type",
  9124. "support": {
  9125. "issues": "https://github.com/sebastianbergmann/type/issues",
  9126. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  9127. },
  9128. "funding": [
  9129. {
  9130. "url": "https://github.com/sebastianbergmann",
  9131. "type": "github"
  9132. }
  9133. ],
  9134. "time": "2023-02-03T07:10:45+00:00"
  9135. },
  9136. {
  9137. "name": "sebastian/version",
  9138. "version": "4.0.1",
  9139. "source": {
  9140. "type": "git",
  9141. "url": "https://github.com/sebastianbergmann/version.git",
  9142. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  9143. },
  9144. "dist": {
  9145. "type": "zip",
  9146. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  9147. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  9148. "shasum": ""
  9149. },
  9150. "require": {
  9151. "php": ">=8.1"
  9152. },
  9153. "type": "library",
  9154. "extra": {
  9155. "branch-alias": {
  9156. "dev-main": "4.0-dev"
  9157. }
  9158. },
  9159. "autoload": {
  9160. "classmap": [
  9161. "src/"
  9162. ]
  9163. },
  9164. "notification-url": "https://packagist.org/downloads/",
  9165. "license": [
  9166. "BSD-3-Clause"
  9167. ],
  9168. "authors": [
  9169. {
  9170. "name": "Sebastian Bergmann",
  9171. "email": "[email protected]",
  9172. "role": "lead"
  9173. }
  9174. ],
  9175. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9176. "homepage": "https://github.com/sebastianbergmann/version",
  9177. "support": {
  9178. "issues": "https://github.com/sebastianbergmann/version/issues",
  9179. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  9180. },
  9181. "funding": [
  9182. {
  9183. "url": "https://github.com/sebastianbergmann",
  9184. "type": "github"
  9185. }
  9186. ],
  9187. "time": "2023-02-07T11:34:05+00:00"
  9188. },
  9189. {
  9190. "name": "slevomat/coding-standard",
  9191. "version": "8.13.4",
  9192. "source": {
  9193. "type": "git",
  9194. "url": "https://github.com/slevomat/coding-standard.git",
  9195. "reference": "4b2af2fb17773656d02fbfb5d18024ebd19fe322"
  9196. },
  9197. "dist": {
  9198. "type": "zip",
  9199. "url": "https://api.github.com/repos/slevomat/coding-standard/zipball/4b2af2fb17773656d02fbfb5d18024ebd19fe322",
  9200. "reference": "4b2af2fb17773656d02fbfb5d18024ebd19fe322",
  9201. "shasum": ""
  9202. },
  9203. "require": {
  9204. "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7 || ^1.0",
  9205. "php": "^7.2 || ^8.0",
  9206. "phpstan/phpdoc-parser": "^1.23.0",
  9207. "squizlabs/php_codesniffer": "^3.7.1"
  9208. },
  9209. "require-dev": {
  9210. "phing/phing": "2.17.4",
  9211. "php-parallel-lint/php-parallel-lint": "1.3.2",
  9212. "phpstan/phpstan": "1.10.26",
  9213. "phpstan/phpstan-deprecation-rules": "1.1.3",
  9214. "phpstan/phpstan-phpunit": "1.3.13",
  9215. "phpstan/phpstan-strict-rules": "1.5.1",
  9216. "phpunit/phpunit": "7.5.20|8.5.21|9.6.8|10.2.6"
  9217. },
  9218. "type": "phpcodesniffer-standard",
  9219. "extra": {
  9220. "branch-alias": {
  9221. "dev-master": "8.x-dev"
  9222. }
  9223. },
  9224. "autoload": {
  9225. "psr-4": {
  9226. "SlevomatCodingStandard\\": "SlevomatCodingStandard/"
  9227. }
  9228. },
  9229. "notification-url": "https://packagist.org/downloads/",
  9230. "license": [
  9231. "MIT"
  9232. ],
  9233. "description": "Slevomat Coding Standard for PHP_CodeSniffer complements Consistence Coding Standard by providing sniffs with additional checks.",
  9234. "keywords": [
  9235. "dev",
  9236. "phpcs"
  9237. ],
  9238. "support": {
  9239. "issues": "https://github.com/slevomat/coding-standard/issues",
  9240. "source": "https://github.com/slevomat/coding-standard/tree/8.13.4"
  9241. },
  9242. "funding": [
  9243. {
  9244. "url": "https://github.com/kukulich",
  9245. "type": "github"
  9246. },
  9247. {
  9248. "url": "https://tidelift.com/funding/github/packagist/slevomat/coding-standard",
  9249. "type": "tidelift"
  9250. }
  9251. ],
  9252. "time": "2023-07-25T10:28:55+00:00"
  9253. },
  9254. {
  9255. "name": "squizlabs/php_codesniffer",
  9256. "version": "3.7.2",
  9257. "source": {
  9258. "type": "git",
  9259. "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
  9260. "reference": "ed8e00df0a83aa96acf703f8c2979ff33341f879"
  9261. },
  9262. "dist": {
  9263. "type": "zip",
  9264. "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/ed8e00df0a83aa96acf703f8c2979ff33341f879",
  9265. "reference": "ed8e00df0a83aa96acf703f8c2979ff33341f879",
  9266. "shasum": ""
  9267. },
  9268. "require": {
  9269. "ext-simplexml": "*",
  9270. "ext-tokenizer": "*",
  9271. "ext-xmlwriter": "*",
  9272. "php": ">=5.4.0"
  9273. },
  9274. "require-dev": {
  9275. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  9276. },
  9277. "bin": [
  9278. "bin/phpcs",
  9279. "bin/phpcbf"
  9280. ],
  9281. "type": "library",
  9282. "extra": {
  9283. "branch-alias": {
  9284. "dev-master": "3.x-dev"
  9285. }
  9286. },
  9287. "notification-url": "https://packagist.org/downloads/",
  9288. "license": [
  9289. "BSD-3-Clause"
  9290. ],
  9291. "authors": [
  9292. {
  9293. "name": "Greg Sherwood",
  9294. "role": "lead"
  9295. }
  9296. ],
  9297. "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
  9298. "homepage": "https://github.com/squizlabs/PHP_CodeSniffer",
  9299. "keywords": [
  9300. "phpcs",
  9301. "standards",
  9302. "static analysis"
  9303. ],
  9304. "support": {
  9305. "issues": "https://github.com/squizlabs/PHP_CodeSniffer/issues",
  9306. "source": "https://github.com/squizlabs/PHP_CodeSniffer",
  9307. "wiki": "https://github.com/squizlabs/PHP_CodeSniffer/wiki"
  9308. },
  9309. "time": "2023-02-22T23:07:41+00:00"
  9310. },
  9311. {
  9312. "name": "symfony/cache",
  9313. "version": "v6.3.4",
  9314. "source": {
  9315. "type": "git",
  9316. "url": "https://github.com/symfony/cache.git",
  9317. "reference": "e60d00b4f633efa4c1ef54e77c12762d9073e7b3"
  9318. },
  9319. "dist": {
  9320. "type": "zip",
  9321. "url": "https://api.github.com/repos/symfony/cache/zipball/e60d00b4f633efa4c1ef54e77c12762d9073e7b3",
  9322. "reference": "e60d00b4f633efa4c1ef54e77c12762d9073e7b3",
  9323. "shasum": ""
  9324. },
  9325. "require": {
  9326. "php": ">=8.1",
  9327. "psr/cache": "^2.0|^3.0",
  9328. "psr/log": "^1.1|^2|^3",
  9329. "symfony/cache-contracts": "^2.5|^3",
  9330. "symfony/service-contracts": "^2.5|^3",
  9331. "symfony/var-exporter": "^6.2.10"
  9332. },
  9333. "conflict": {
  9334. "doctrine/dbal": "<2.13.1",
  9335. "symfony/dependency-injection": "<5.4",
  9336. "symfony/http-kernel": "<5.4",
  9337. "symfony/var-dumper": "<5.4"
  9338. },
  9339. "provide": {
  9340. "psr/cache-implementation": "2.0|3.0",
  9341. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  9342. "symfony/cache-implementation": "1.1|2.0|3.0"
  9343. },
  9344. "require-dev": {
  9345. "cache/integration-tests": "dev-master",
  9346. "doctrine/dbal": "^2.13.1|^3.0",
  9347. "predis/predis": "^1.1|^2.0",
  9348. "psr/simple-cache": "^1.0|^2.0|^3.0",
  9349. "symfony/config": "^5.4|^6.0",
  9350. "symfony/dependency-injection": "^5.4|^6.0",
  9351. "symfony/filesystem": "^5.4|^6.0",
  9352. "symfony/http-kernel": "^5.4|^6.0",
  9353. "symfony/messenger": "^5.4|^6.0",
  9354. "symfony/var-dumper": "^5.4|^6.0"
  9355. },
  9356. "type": "library",
  9357. "autoload": {
  9358. "psr-4": {
  9359. "Symfony\\Component\\Cache\\": ""
  9360. },
  9361. "classmap": [
  9362. "Traits/ValueWrapper.php"
  9363. ],
  9364. "exclude-from-classmap": [
  9365. "/Tests/"
  9366. ]
  9367. },
  9368. "notification-url": "https://packagist.org/downloads/",
  9369. "license": [
  9370. "MIT"
  9371. ],
  9372. "authors": [
  9373. {
  9374. "name": "Nicolas Grekas",
  9375. "email": "[email protected]"
  9376. },
  9377. {
  9378. "name": "Symfony Community",
  9379. "homepage": "https://symfony.com/contributors"
  9380. }
  9381. ],
  9382. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  9383. "homepage": "https://symfony.com",
  9384. "keywords": [
  9385. "caching",
  9386. "psr6"
  9387. ],
  9388. "support": {
  9389. "source": "https://github.com/symfony/cache/tree/v6.3.4"
  9390. },
  9391. "funding": [
  9392. {
  9393. "url": "https://symfony.com/sponsor",
  9394. "type": "custom"
  9395. },
  9396. {
  9397. "url": "https://github.com/fabpot",
  9398. "type": "github"
  9399. },
  9400. {
  9401. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9402. "type": "tidelift"
  9403. }
  9404. ],
  9405. "time": "2023-08-05T09:10:27+00:00"
  9406. },
  9407. {
  9408. "name": "symfony/cache-contracts",
  9409. "version": "v3.3.0",
  9410. "source": {
  9411. "type": "git",
  9412. "url": "https://github.com/symfony/cache-contracts.git",
  9413. "reference": "ad945640ccc0ae6e208bcea7d7de4b39b569896b"
  9414. },
  9415. "dist": {
  9416. "type": "zip",
  9417. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/ad945640ccc0ae6e208bcea7d7de4b39b569896b",
  9418. "reference": "ad945640ccc0ae6e208bcea7d7de4b39b569896b",
  9419. "shasum": ""
  9420. },
  9421. "require": {
  9422. "php": ">=8.1",
  9423. "psr/cache": "^3.0"
  9424. },
  9425. "type": "library",
  9426. "extra": {
  9427. "branch-alias": {
  9428. "dev-main": "3.4-dev"
  9429. },
  9430. "thanks": {
  9431. "name": "symfony/contracts",
  9432. "url": "https://github.com/symfony/contracts"
  9433. }
  9434. },
  9435. "autoload": {
  9436. "psr-4": {
  9437. "Symfony\\Contracts\\Cache\\": ""
  9438. }
  9439. },
  9440. "notification-url": "https://packagist.org/downloads/",
  9441. "license": [
  9442. "MIT"
  9443. ],
  9444. "authors": [
  9445. {
  9446. "name": "Nicolas Grekas",
  9447. "email": "[email protected]"
  9448. },
  9449. {
  9450. "name": "Symfony Community",
  9451. "homepage": "https://symfony.com/contributors"
  9452. }
  9453. ],
  9454. "description": "Generic abstractions related to caching",
  9455. "homepage": "https://symfony.com",
  9456. "keywords": [
  9457. "abstractions",
  9458. "contracts",
  9459. "decoupling",
  9460. "interfaces",
  9461. "interoperability",
  9462. "standards"
  9463. ],
  9464. "support": {
  9465. "source": "https://github.com/symfony/cache-contracts/tree/v3.3.0"
  9466. },
  9467. "funding": [
  9468. {
  9469. "url": "https://symfony.com/sponsor",
  9470. "type": "custom"
  9471. },
  9472. {
  9473. "url": "https://github.com/fabpot",
  9474. "type": "github"
  9475. },
  9476. {
  9477. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9478. "type": "tidelift"
  9479. }
  9480. ],
  9481. "time": "2023-05-23T14:45:45+00:00"
  9482. },
  9483. {
  9484. "name": "symfony/console",
  9485. "version": "v6.3.4",
  9486. "source": {
  9487. "type": "git",
  9488. "url": "https://github.com/symfony/console.git",
  9489. "reference": "eca495f2ee845130855ddf1cf18460c38966c8b6"
  9490. },
  9491. "dist": {
  9492. "type": "zip",
  9493. "url": "https://api.github.com/repos/symfony/console/zipball/eca495f2ee845130855ddf1cf18460c38966c8b6",
  9494. "reference": "eca495f2ee845130855ddf1cf18460c38966c8b6",
  9495. "shasum": ""
  9496. },
  9497. "require": {
  9498. "php": ">=8.1",
  9499. "symfony/deprecation-contracts": "^2.5|^3",
  9500. "symfony/polyfill-mbstring": "~1.0",
  9501. "symfony/service-contracts": "^2.5|^3",
  9502. "symfony/string": "^5.4|^6.0"
  9503. },
  9504. "conflict": {
  9505. "symfony/dependency-injection": "<5.4",
  9506. "symfony/dotenv": "<5.4",
  9507. "symfony/event-dispatcher": "<5.4",
  9508. "symfony/lock": "<5.4",
  9509. "symfony/process": "<5.4"
  9510. },
  9511. "provide": {
  9512. "psr/log-implementation": "1.0|2.0|3.0"
  9513. },
  9514. "require-dev": {
  9515. "psr/log": "^1|^2|^3",
  9516. "symfony/config": "^5.4|^6.0",
  9517. "symfony/dependency-injection": "^5.4|^6.0",
  9518. "symfony/event-dispatcher": "^5.4|^6.0",
  9519. "symfony/lock": "^5.4|^6.0",
  9520. "symfony/process": "^5.4|^6.0",
  9521. "symfony/var-dumper": "^5.4|^6.0"
  9522. },
  9523. "type": "library",
  9524. "autoload": {
  9525. "psr-4": {
  9526. "Symfony\\Component\\Console\\": ""
  9527. },
  9528. "exclude-from-classmap": [
  9529. "/Tests/"
  9530. ]
  9531. },
  9532. "notification-url": "https://packagist.org/downloads/",
  9533. "license": [
  9534. "MIT"
  9535. ],
  9536. "authors": [
  9537. {
  9538. "name": "Fabien Potencier",
  9539. "email": "[email protected]"
  9540. },
  9541. {
  9542. "name": "Symfony Community",
  9543. "homepage": "https://symfony.com/contributors"
  9544. }
  9545. ],
  9546. "description": "Eases the creation of beautiful and testable command line interfaces",
  9547. "homepage": "https://symfony.com",
  9548. "keywords": [
  9549. "cli",
  9550. "command-line",
  9551. "console",
  9552. "terminal"
  9553. ],
  9554. "support": {
  9555. "source": "https://github.com/symfony/console/tree/v6.3.4"
  9556. },
  9557. "funding": [
  9558. {
  9559. "url": "https://symfony.com/sponsor",
  9560. "type": "custom"
  9561. },
  9562. {
  9563. "url": "https://github.com/fabpot",
  9564. "type": "github"
  9565. },
  9566. {
  9567. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9568. "type": "tidelift"
  9569. }
  9570. ],
  9571. "time": "2023-08-16T10:10:12+00:00"
  9572. },
  9573. {
  9574. "name": "symfony/event-dispatcher",
  9575. "version": "v6.3.2",
  9576. "source": {
  9577. "type": "git",
  9578. "url": "https://github.com/symfony/event-dispatcher.git",
  9579. "reference": "adb01fe097a4ee930db9258a3cc906b5beb5cf2e"
  9580. },
  9581. "dist": {
  9582. "type": "zip",
  9583. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/adb01fe097a4ee930db9258a3cc906b5beb5cf2e",
  9584. "reference": "adb01fe097a4ee930db9258a3cc906b5beb5cf2e",
  9585. "shasum": ""
  9586. },
  9587. "require": {
  9588. "php": ">=8.1",
  9589. "symfony/event-dispatcher-contracts": "^2.5|^3"
  9590. },
  9591. "conflict": {
  9592. "symfony/dependency-injection": "<5.4",
  9593. "symfony/service-contracts": "<2.5"
  9594. },
  9595. "provide": {
  9596. "psr/event-dispatcher-implementation": "1.0",
  9597. "symfony/event-dispatcher-implementation": "2.0|3.0"
  9598. },
  9599. "require-dev": {
  9600. "psr/log": "^1|^2|^3",
  9601. "symfony/config": "^5.4|^6.0",
  9602. "symfony/dependency-injection": "^5.4|^6.0",
  9603. "symfony/error-handler": "^5.4|^6.0",
  9604. "symfony/expression-language": "^5.4|^6.0",
  9605. "symfony/http-foundation": "^5.4|^6.0",
  9606. "symfony/service-contracts": "^2.5|^3",
  9607. "symfony/stopwatch": "^5.4|^6.0"
  9608. },
  9609. "type": "library",
  9610. "autoload": {
  9611. "psr-4": {
  9612. "Symfony\\Component\\EventDispatcher\\": ""
  9613. },
  9614. "exclude-from-classmap": [
  9615. "/Tests/"
  9616. ]
  9617. },
  9618. "notification-url": "https://packagist.org/downloads/",
  9619. "license": [
  9620. "MIT"
  9621. ],
  9622. "authors": [
  9623. {
  9624. "name": "Fabien Potencier",
  9625. "email": "[email protected]"
  9626. },
  9627. {
  9628. "name": "Symfony Community",
  9629. "homepage": "https://symfony.com/contributors"
  9630. }
  9631. ],
  9632. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  9633. "homepage": "https://symfony.com",
  9634. "support": {
  9635. "source": "https://github.com/symfony/event-dispatcher/tree/v6.3.2"
  9636. },
  9637. "funding": [
  9638. {
  9639. "url": "https://symfony.com/sponsor",
  9640. "type": "custom"
  9641. },
  9642. {
  9643. "url": "https://github.com/fabpot",
  9644. "type": "github"
  9645. },
  9646. {
  9647. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9648. "type": "tidelift"
  9649. }
  9650. ],
  9651. "time": "2023-07-06T06:56:43+00:00"
  9652. },
  9653. {
  9654. "name": "symfony/event-dispatcher-contracts",
  9655. "version": "v3.3.0",
  9656. "source": {
  9657. "type": "git",
  9658. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  9659. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df"
  9660. },
  9661. "dist": {
  9662. "type": "zip",
  9663. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/a76aed96a42d2b521153fb382d418e30d18b59df",
  9664. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df",
  9665. "shasum": ""
  9666. },
  9667. "require": {
  9668. "php": ">=8.1",
  9669. "psr/event-dispatcher": "^1"
  9670. },
  9671. "type": "library",
  9672. "extra": {
  9673. "branch-alias": {
  9674. "dev-main": "3.4-dev"
  9675. },
  9676. "thanks": {
  9677. "name": "symfony/contracts",
  9678. "url": "https://github.com/symfony/contracts"
  9679. }
  9680. },
  9681. "autoload": {
  9682. "psr-4": {
  9683. "Symfony\\Contracts\\EventDispatcher\\": ""
  9684. }
  9685. },
  9686. "notification-url": "https://packagist.org/downloads/",
  9687. "license": [
  9688. "MIT"
  9689. ],
  9690. "authors": [
  9691. {
  9692. "name": "Nicolas Grekas",
  9693. "email": "[email protected]"
  9694. },
  9695. {
  9696. "name": "Symfony Community",
  9697. "homepage": "https://symfony.com/contributors"
  9698. }
  9699. ],
  9700. "description": "Generic abstractions related to dispatching event",
  9701. "homepage": "https://symfony.com",
  9702. "keywords": [
  9703. "abstractions",
  9704. "contracts",
  9705. "decoupling",
  9706. "interfaces",
  9707. "interoperability",
  9708. "standards"
  9709. ],
  9710. "support": {
  9711. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.3.0"
  9712. },
  9713. "funding": [
  9714. {
  9715. "url": "https://symfony.com/sponsor",
  9716. "type": "custom"
  9717. },
  9718. {
  9719. "url": "https://github.com/fabpot",
  9720. "type": "github"
  9721. },
  9722. {
  9723. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9724. "type": "tidelift"
  9725. }
  9726. ],
  9727. "time": "2023-05-23T14:45:45+00:00"
  9728. },
  9729. {
  9730. "name": "symfony/filesystem",
  9731. "version": "v6.3.1",
  9732. "source": {
  9733. "type": "git",
  9734. "url": "https://github.com/symfony/filesystem.git",
  9735. "reference": "edd36776956f2a6fcf577edb5b05eb0e3bdc52ae"
  9736. },
  9737. "dist": {
  9738. "type": "zip",
  9739. "url": "https://api.github.com/repos/symfony/filesystem/zipball/edd36776956f2a6fcf577edb5b05eb0e3bdc52ae",
  9740. "reference": "edd36776956f2a6fcf577edb5b05eb0e3bdc52ae",
  9741. "shasum": ""
  9742. },
  9743. "require": {
  9744. "php": ">=8.1",
  9745. "symfony/polyfill-ctype": "~1.8",
  9746. "symfony/polyfill-mbstring": "~1.8"
  9747. },
  9748. "type": "library",
  9749. "autoload": {
  9750. "psr-4": {
  9751. "Symfony\\Component\\Filesystem\\": ""
  9752. },
  9753. "exclude-from-classmap": [
  9754. "/Tests/"
  9755. ]
  9756. },
  9757. "notification-url": "https://packagist.org/downloads/",
  9758. "license": [
  9759. "MIT"
  9760. ],
  9761. "authors": [
  9762. {
  9763. "name": "Fabien Potencier",
  9764. "email": "[email protected]"
  9765. },
  9766. {
  9767. "name": "Symfony Community",
  9768. "homepage": "https://symfony.com/contributors"
  9769. }
  9770. ],
  9771. "description": "Provides basic utilities for the filesystem",
  9772. "homepage": "https://symfony.com",
  9773. "support": {
  9774. "source": "https://github.com/symfony/filesystem/tree/v6.3.1"
  9775. },
  9776. "funding": [
  9777. {
  9778. "url": "https://symfony.com/sponsor",
  9779. "type": "custom"
  9780. },
  9781. {
  9782. "url": "https://github.com/fabpot",
  9783. "type": "github"
  9784. },
  9785. {
  9786. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9787. "type": "tidelift"
  9788. }
  9789. ],
  9790. "time": "2023-06-01T08:30:39+00:00"
  9791. },
  9792. {
  9793. "name": "symfony/finder",
  9794. "version": "v6.3.3",
  9795. "source": {
  9796. "type": "git",
  9797. "url": "https://github.com/symfony/finder.git",
  9798. "reference": "9915db259f67d21eefee768c1abcf1cc61b1fc9e"
  9799. },
  9800. "dist": {
  9801. "type": "zip",
  9802. "url": "https://api.github.com/repos/symfony/finder/zipball/9915db259f67d21eefee768c1abcf1cc61b1fc9e",
  9803. "reference": "9915db259f67d21eefee768c1abcf1cc61b1fc9e",
  9804. "shasum": ""
  9805. },
  9806. "require": {
  9807. "php": ">=8.1"
  9808. },
  9809. "require-dev": {
  9810. "symfony/filesystem": "^6.0"
  9811. },
  9812. "type": "library",
  9813. "autoload": {
  9814. "psr-4": {
  9815. "Symfony\\Component\\Finder\\": ""
  9816. },
  9817. "exclude-from-classmap": [
  9818. "/Tests/"
  9819. ]
  9820. },
  9821. "notification-url": "https://packagist.org/downloads/",
  9822. "license": [
  9823. "MIT"
  9824. ],
  9825. "authors": [
  9826. {
  9827. "name": "Fabien Potencier",
  9828. "email": "[email protected]"
  9829. },
  9830. {
  9831. "name": "Symfony Community",
  9832. "homepage": "https://symfony.com/contributors"
  9833. }
  9834. ],
  9835. "description": "Finds files and directories via an intuitive fluent interface",
  9836. "homepage": "https://symfony.com",
  9837. "support": {
  9838. "source": "https://github.com/symfony/finder/tree/v6.3.3"
  9839. },
  9840. "funding": [
  9841. {
  9842. "url": "https://symfony.com/sponsor",
  9843. "type": "custom"
  9844. },
  9845. {
  9846. "url": "https://github.com/fabpot",
  9847. "type": "github"
  9848. },
  9849. {
  9850. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9851. "type": "tidelift"
  9852. }
  9853. ],
  9854. "time": "2023-07-31T08:31:44+00:00"
  9855. },
  9856. {
  9857. "name": "symfony/polyfill-php81",
  9858. "version": "v1.28.0",
  9859. "source": {
  9860. "type": "git",
  9861. "url": "https://github.com/symfony/polyfill-php81.git",
  9862. "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b"
  9863. },
  9864. "dist": {
  9865. "type": "zip",
  9866. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/7581cd600fa9fd681b797d00b02f068e2f13263b",
  9867. "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b",
  9868. "shasum": ""
  9869. },
  9870. "require": {
  9871. "php": ">=7.1"
  9872. },
  9873. "type": "library",
  9874. "extra": {
  9875. "branch-alias": {
  9876. "dev-main": "1.28-dev"
  9877. },
  9878. "thanks": {
  9879. "name": "symfony/polyfill",
  9880. "url": "https://github.com/symfony/polyfill"
  9881. }
  9882. },
  9883. "autoload": {
  9884. "files": [
  9885. "bootstrap.php"
  9886. ],
  9887. "psr-4": {
  9888. "Symfony\\Polyfill\\Php81\\": ""
  9889. },
  9890. "classmap": [
  9891. "Resources/stubs"
  9892. ]
  9893. },
  9894. "notification-url": "https://packagist.org/downloads/",
  9895. "license": [
  9896. "MIT"
  9897. ],
  9898. "authors": [
  9899. {
  9900. "name": "Nicolas Grekas",
  9901. "email": "[email protected]"
  9902. },
  9903. {
  9904. "name": "Symfony Community",
  9905. "homepage": "https://symfony.com/contributors"
  9906. }
  9907. ],
  9908. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  9909. "homepage": "https://symfony.com",
  9910. "keywords": [
  9911. "compatibility",
  9912. "polyfill",
  9913. "portable",
  9914. "shim"
  9915. ],
  9916. "support": {
  9917. "source": "https://github.com/symfony/polyfill-php81/tree/v1.28.0"
  9918. },
  9919. "funding": [
  9920. {
  9921. "url": "https://symfony.com/sponsor",
  9922. "type": "custom"
  9923. },
  9924. {
  9925. "url": "https://github.com/fabpot",
  9926. "type": "github"
  9927. },
  9928. {
  9929. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9930. "type": "tidelift"
  9931. }
  9932. ],
  9933. "time": "2023-01-26T09:26:14+00:00"
  9934. },
  9935. {
  9936. "name": "symfony/process",
  9937. "version": "v6.3.4",
  9938. "source": {
  9939. "type": "git",
  9940. "url": "https://github.com/symfony/process.git",
  9941. "reference": "0b5c29118f2e980d455d2e34a5659f4579847c54"
  9942. },
  9943. "dist": {
  9944. "type": "zip",
  9945. "url": "https://api.github.com/repos/symfony/process/zipball/0b5c29118f2e980d455d2e34a5659f4579847c54",
  9946. "reference": "0b5c29118f2e980d455d2e34a5659f4579847c54",
  9947. "shasum": ""
  9948. },
  9949. "require": {
  9950. "php": ">=8.1"
  9951. },
  9952. "type": "library",
  9953. "autoload": {
  9954. "psr-4": {
  9955. "Symfony\\Component\\Process\\": ""
  9956. },
  9957. "exclude-from-classmap": [
  9958. "/Tests/"
  9959. ]
  9960. },
  9961. "notification-url": "https://packagist.org/downloads/",
  9962. "license": [
  9963. "MIT"
  9964. ],
  9965. "authors": [
  9966. {
  9967. "name": "Fabien Potencier",
  9968. "email": "[email protected]"
  9969. },
  9970. {
  9971. "name": "Symfony Community",
  9972. "homepage": "https://symfony.com/contributors"
  9973. }
  9974. ],
  9975. "description": "Executes commands in sub-processes",
  9976. "homepage": "https://symfony.com",
  9977. "support": {
  9978. "source": "https://github.com/symfony/process/tree/v6.3.4"
  9979. },
  9980. "funding": [
  9981. {
  9982. "url": "https://symfony.com/sponsor",
  9983. "type": "custom"
  9984. },
  9985. {
  9986. "url": "https://github.com/fabpot",
  9987. "type": "github"
  9988. },
  9989. {
  9990. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9991. "type": "tidelift"
  9992. }
  9993. ],
  9994. "time": "2023-08-07T10:39:22+00:00"
  9995. },
  9996. {
  9997. "name": "symfony/stopwatch",
  9998. "version": "v6.3.0",
  9999. "source": {
  10000. "type": "git",
  10001. "url": "https://github.com/symfony/stopwatch.git",
  10002. "reference": "fc47f1015ec80927ff64ba9094dfe8b9d48fe9f2"
  10003. },
  10004. "dist": {
  10005. "type": "zip",
  10006. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/fc47f1015ec80927ff64ba9094dfe8b9d48fe9f2",
  10007. "reference": "fc47f1015ec80927ff64ba9094dfe8b9d48fe9f2",
  10008. "shasum": ""
  10009. },
  10010. "require": {
  10011. "php": ">=8.1",
  10012. "symfony/service-contracts": "^2.5|^3"
  10013. },
  10014. "type": "library",
  10015. "autoload": {
  10016. "psr-4": {
  10017. "Symfony\\Component\\Stopwatch\\": ""
  10018. },
  10019. "exclude-from-classmap": [
  10020. "/Tests/"
  10021. ]
  10022. },
  10023. "notification-url": "https://packagist.org/downloads/",
  10024. "license": [
  10025. "MIT"
  10026. ],
  10027. "authors": [
  10028. {
  10029. "name": "Fabien Potencier",
  10030. "email": "[email protected]"
  10031. },
  10032. {
  10033. "name": "Symfony Community",
  10034. "homepage": "https://symfony.com/contributors"
  10035. }
  10036. ],
  10037. "description": "Provides a way to profile code",
  10038. "homepage": "https://symfony.com",
  10039. "support": {
  10040. "source": "https://github.com/symfony/stopwatch/tree/v6.3.0"
  10041. },
  10042. "funding": [
  10043. {
  10044. "url": "https://symfony.com/sponsor",
  10045. "type": "custom"
  10046. },
  10047. {
  10048. "url": "https://github.com/fabpot",
  10049. "type": "github"
  10050. },
  10051. {
  10052. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10053. "type": "tidelift"
  10054. }
  10055. ],
  10056. "time": "2023-02-16T10:14:28+00:00"
  10057. },
  10058. {
  10059. "name": "symfony/string",
  10060. "version": "v6.3.2",
  10061. "source": {
  10062. "type": "git",
  10063. "url": "https://github.com/symfony/string.git",
  10064. "reference": "53d1a83225002635bca3482fcbf963001313fb68"
  10065. },
  10066. "dist": {
  10067. "type": "zip",
  10068. "url": "https://api.github.com/repos/symfony/string/zipball/53d1a83225002635bca3482fcbf963001313fb68",
  10069. "reference": "53d1a83225002635bca3482fcbf963001313fb68",
  10070. "shasum": ""
  10071. },
  10072. "require": {
  10073. "php": ">=8.1",
  10074. "symfony/polyfill-ctype": "~1.8",
  10075. "symfony/polyfill-intl-grapheme": "~1.0",
  10076. "symfony/polyfill-intl-normalizer": "~1.0",
  10077. "symfony/polyfill-mbstring": "~1.0"
  10078. },
  10079. "conflict": {
  10080. "symfony/translation-contracts": "<2.5"
  10081. },
  10082. "require-dev": {
  10083. "symfony/error-handler": "^5.4|^6.0",
  10084. "symfony/http-client": "^5.4|^6.0",
  10085. "symfony/intl": "^6.2",
  10086. "symfony/translation-contracts": "^2.5|^3.0",
  10087. "symfony/var-exporter": "^5.4|^6.0"
  10088. },
  10089. "type": "library",
  10090. "autoload": {
  10091. "files": [
  10092. "Resources/functions.php"
  10093. ],
  10094. "psr-4": {
  10095. "Symfony\\Component\\String\\": ""
  10096. },
  10097. "exclude-from-classmap": [
  10098. "/Tests/"
  10099. ]
  10100. },
  10101. "notification-url": "https://packagist.org/downloads/",
  10102. "license": [
  10103. "MIT"
  10104. ],
  10105. "authors": [
  10106. {
  10107. "name": "Nicolas Grekas",
  10108. "email": "[email protected]"
  10109. },
  10110. {
  10111. "name": "Symfony Community",
  10112. "homepage": "https://symfony.com/contributors"
  10113. }
  10114. ],
  10115. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  10116. "homepage": "https://symfony.com",
  10117. "keywords": [
  10118. "grapheme",
  10119. "i18n",
  10120. "string",
  10121. "unicode",
  10122. "utf-8",
  10123. "utf8"
  10124. ],
  10125. "support": {
  10126. "source": "https://github.com/symfony/string/tree/v6.3.2"
  10127. },
  10128. "funding": [
  10129. {
  10130. "url": "https://symfony.com/sponsor",
  10131. "type": "custom"
  10132. },
  10133. {
  10134. "url": "https://github.com/fabpot",
  10135. "type": "github"
  10136. },
  10137. {
  10138. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10139. "type": "tidelift"
  10140. }
  10141. ],
  10142. "time": "2023-07-05T08:41:27+00:00"
  10143. },
  10144. {
  10145. "name": "symfony/var-exporter",
  10146. "version": "v6.3.4",
  10147. "source": {
  10148. "type": "git",
  10149. "url": "https://github.com/symfony/var-exporter.git",
  10150. "reference": "df1f8aac5751871b83d30bf3e2c355770f8f0691"
  10151. },
  10152. "dist": {
  10153. "type": "zip",
  10154. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/df1f8aac5751871b83d30bf3e2c355770f8f0691",
  10155. "reference": "df1f8aac5751871b83d30bf3e2c355770f8f0691",
  10156. "shasum": ""
  10157. },
  10158. "require": {
  10159. "php": ">=8.1"
  10160. },
  10161. "require-dev": {
  10162. "symfony/var-dumper": "^5.4|^6.0"
  10163. },
  10164. "type": "library",
  10165. "autoload": {
  10166. "psr-4": {
  10167. "Symfony\\Component\\VarExporter\\": ""
  10168. },
  10169. "exclude-from-classmap": [
  10170. "/Tests/"
  10171. ]
  10172. },
  10173. "notification-url": "https://packagist.org/downloads/",
  10174. "license": [
  10175. "MIT"
  10176. ],
  10177. "authors": [
  10178. {
  10179. "name": "Nicolas Grekas",
  10180. "email": "[email protected]"
  10181. },
  10182. {
  10183. "name": "Symfony Community",
  10184. "homepage": "https://symfony.com/contributors"
  10185. }
  10186. ],
  10187. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  10188. "homepage": "https://symfony.com",
  10189. "keywords": [
  10190. "clone",
  10191. "construct",
  10192. "export",
  10193. "hydrate",
  10194. "instantiate",
  10195. "lazy-loading",
  10196. "proxy",
  10197. "serialize"
  10198. ],
  10199. "support": {
  10200. "source": "https://github.com/symfony/var-exporter/tree/v6.3.4"
  10201. },
  10202. "funding": [
  10203. {
  10204. "url": "https://symfony.com/sponsor",
  10205. "type": "custom"
  10206. },
  10207. {
  10208. "url": "https://github.com/fabpot",
  10209. "type": "github"
  10210. },
  10211. {
  10212. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10213. "type": "tidelift"
  10214. }
  10215. ],
  10216. "time": "2023-08-16T18:14:47+00:00"
  10217. },
  10218. {
  10219. "name": "theseer/tokenizer",
  10220. "version": "1.2.1",
  10221. "source": {
  10222. "type": "git",
  10223. "url": "https://github.com/theseer/tokenizer.git",
  10224. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  10225. },
  10226. "dist": {
  10227. "type": "zip",
  10228. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  10229. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  10230. "shasum": ""
  10231. },
  10232. "require": {
  10233. "ext-dom": "*",
  10234. "ext-tokenizer": "*",
  10235. "ext-xmlwriter": "*",
  10236. "php": "^7.2 || ^8.0"
  10237. },
  10238. "type": "library",
  10239. "autoload": {
  10240. "classmap": [
  10241. "src/"
  10242. ]
  10243. },
  10244. "notification-url": "https://packagist.org/downloads/",
  10245. "license": [
  10246. "BSD-3-Clause"
  10247. ],
  10248. "authors": [
  10249. {
  10250. "name": "Arne Blankerts",
  10251. "email": "[email protected]",
  10252. "role": "Developer"
  10253. }
  10254. ],
  10255. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10256. "support": {
  10257. "issues": "https://github.com/theseer/tokenizer/issues",
  10258. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  10259. },
  10260. "funding": [
  10261. {
  10262. "url": "https://github.com/theseer",
  10263. "type": "github"
  10264. }
  10265. ],
  10266. "time": "2021-07-28T10:34:58+00:00"
  10267. }
  10268. ],
  10269. "aliases": [],
  10270. "minimum-stability": "stable",
  10271. "stability-flags": [],
  10272. "prefer-stable": false,
  10273. "prefer-lowest": false,
  10274. "platform": {
  10275. "php": "^8.1",
  10276. "ext-bcmath": "*",
  10277. "ext-curl": "*",
  10278. "ext-fileinfo": "*",
  10279. "ext-json": "*",
  10280. "ext-mysqli": "*",
  10281. "ext-openssl": "*",
  10282. "ext-pdo": "*",
  10283. "ext-posix": "*",
  10284. "ext-redis": "*",
  10285. "ext-xml": "*",
  10286. "ext-zip": "*"
  10287. },
  10288. "platform-dev": [],
  10289. "plugin-api-version": "2.6.0"
  10290. }