composer.lock 342 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576
  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": "859ff6b848c8bd9da31fd1a530ba2379",
  8. "packages": [
  9. {
  10. "name": "bacon/bacon-qr-code",
  11. "version": "2.0.8",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/Bacon/BaconQrCode.git",
  15. "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/8674e51bb65af933a5ffaf1c308a660387c35c22",
  20. "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "dasprid/enum": "^1.0.3",
  25. "ext-iconv": "*",
  26. "php": "^7.1 || ^8.0"
  27. },
  28. "require-dev": {
  29. "phly/keep-a-changelog": "^2.1",
  30. "phpunit/phpunit": "^7 | ^8 | ^9",
  31. "spatie/phpunit-snapshot-assertions": "^4.2.9",
  32. "squizlabs/php_codesniffer": "^3.4"
  33. },
  34. "suggest": {
  35. "ext-imagick": "to generate QR code images"
  36. },
  37. "type": "library",
  38. "autoload": {
  39. "psr-4": {
  40. "BaconQrCode\\": "src/"
  41. }
  42. },
  43. "notification-url": "https://packagist.org/downloads/",
  44. "license": [
  45. "BSD-2-Clause"
  46. ],
  47. "authors": [
  48. {
  49. "name": "Ben Scholzen 'DASPRiD'",
  50. "email": "mail@dasprids.de",
  51. "homepage": "https://dasprids.de/",
  52. "role": "Developer"
  53. }
  54. ],
  55. "description": "BaconQrCode is a QR code generator for PHP.",
  56. "homepage": "https://github.com/Bacon/BaconQrCode",
  57. "support": {
  58. "issues": "https://github.com/Bacon/BaconQrCode/issues",
  59. "source": "https://github.com/Bacon/BaconQrCode/tree/2.0.8"
  60. },
  61. "time": "2022-12-07T17:46:57+00:00"
  62. },
  63. {
  64. "name": "bensampo/laravel-enum",
  65. "version": "v6.11.1",
  66. "source": {
  67. "type": "git",
  68. "url": "https://github.com/BenSampo/laravel-enum.git",
  69. "reference": "facd826e65fe44b3c0a4f9c726c2433cf8a4a9ea"
  70. },
  71. "dist": {
  72. "type": "zip",
  73. "url": "https://api.github.com/repos/BenSampo/laravel-enum/zipball/facd826e65fe44b3c0a4f9c726c2433cf8a4a9ea",
  74. "reference": "facd826e65fe44b3c0a4f9c726c2433cf8a4a9ea",
  75. "shasum": ""
  76. },
  77. "require": {
  78. "composer/class-map-generator": "^1",
  79. "illuminate/contracts": "^9 || ^10 || ^11",
  80. "illuminate/support": "^9 || ^10 || ^11",
  81. "laminas/laminas-code": "^3.4 || ^4",
  82. "nikic/php-parser": "^4.13.2 || ^5",
  83. "php": "^8"
  84. },
  85. "require-dev": {
  86. "doctrine/dbal": "^3.4",
  87. "ergebnis/composer-normalize": "^2.28.3",
  88. "larastan/larastan": "^2.6.3",
  89. "mll-lab/php-cs-fixer-config": "^5.4",
  90. "mockery/mockery": "^1.5",
  91. "orchestra/testbench": "^7.6.1 || ^8 || ^9",
  92. "phpstan/extension-installer": "^1",
  93. "phpstan/phpstan": "^1.8.2",
  94. "phpstan/phpstan-mockery": "^1.1",
  95. "phpstan/phpstan-phpunit": "^1.1.1",
  96. "phpunit/phpunit": "^9.5.21 || ^10 || ^11",
  97. "rector/rector": "^1",
  98. "symplify/rule-doc-generator": "^11 || ^12 || ^13"
  99. },
  100. "type": "library",
  101. "extra": {
  102. "laravel": {
  103. "providers": [
  104. "BenSampo\\Enum\\EnumServiceProvider"
  105. ]
  106. },
  107. "phpstan": {
  108. "includes": [
  109. "extension.neon"
  110. ]
  111. }
  112. },
  113. "autoload": {
  114. "psr-4": {
  115. "BenSampo\\Enum\\": "src"
  116. }
  117. },
  118. "notification-url": "https://packagist.org/downloads/",
  119. "license": [
  120. "MIT"
  121. ],
  122. "authors": [
  123. {
  124. "name": "Ben Sampson",
  125. "homepage": "https://sampo.co.uk",
  126. "role": "Developer"
  127. },
  128. {
  129. "name": "Benedikt Franke",
  130. "homepage": "https://franke.tech",
  131. "role": "Developer"
  132. }
  133. ],
  134. "description": "Simple, extensible and powerful enumeration implementation for Laravel.",
  135. "homepage": "https://github.com/bensampo/laravel-enum",
  136. "keywords": [
  137. "bensampo",
  138. "enum",
  139. "laravel",
  140. "package",
  141. "validation"
  142. ],
  143. "support": {
  144. "issues": "https://github.com/BenSampo/laravel-enum/issues",
  145. "source": "https://github.com/BenSampo/laravel-enum/tree/v6.11.1"
  146. },
  147. "funding": [
  148. {
  149. "url": "https://github.com/bensampo",
  150. "type": "github"
  151. }
  152. ],
  153. "time": "2024-08-21T10:45:41+00:00"
  154. },
  155. {
  156. "name": "brick/math",
  157. "version": "0.12.1",
  158. "source": {
  159. "type": "git",
  160. "url": "https://github.com/brick/math.git",
  161. "reference": "f510c0a40911935b77b86859eb5223d58d660df1"
  162. },
  163. "dist": {
  164. "type": "zip",
  165. "url": "https://api.github.com/repos/brick/math/zipball/f510c0a40911935b77b86859eb5223d58d660df1",
  166. "reference": "f510c0a40911935b77b86859eb5223d58d660df1",
  167. "shasum": ""
  168. },
  169. "require": {
  170. "php": "^8.1"
  171. },
  172. "require-dev": {
  173. "php-coveralls/php-coveralls": "^2.2",
  174. "phpunit/phpunit": "^10.1",
  175. "vimeo/psalm": "5.16.0"
  176. },
  177. "type": "library",
  178. "autoload": {
  179. "psr-4": {
  180. "Brick\\Math\\": "src/"
  181. }
  182. },
  183. "notification-url": "https://packagist.org/downloads/",
  184. "license": [
  185. "MIT"
  186. ],
  187. "description": "Arbitrary-precision arithmetic library",
  188. "keywords": [
  189. "Arbitrary-precision",
  190. "BigInteger",
  191. "BigRational",
  192. "arithmetic",
  193. "bigdecimal",
  194. "bignum",
  195. "bignumber",
  196. "brick",
  197. "decimal",
  198. "integer",
  199. "math",
  200. "mathematics",
  201. "rational"
  202. ],
  203. "support": {
  204. "issues": "https://github.com/brick/math/issues",
  205. "source": "https://github.com/brick/math/tree/0.12.1"
  206. },
  207. "funding": [
  208. {
  209. "url": "https://github.com/BenMorel",
  210. "type": "github"
  211. }
  212. ],
  213. "time": "2023-11-29T23:19:16+00:00"
  214. },
  215. {
  216. "name": "carbonphp/carbon-doctrine-types",
  217. "version": "3.2.0",
  218. "source": {
  219. "type": "git",
  220. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  221. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  222. },
  223. "dist": {
  224. "type": "zip",
  225. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  226. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  227. "shasum": ""
  228. },
  229. "require": {
  230. "php": "^8.1"
  231. },
  232. "conflict": {
  233. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  234. },
  235. "require-dev": {
  236. "doctrine/dbal": "^4.0.0",
  237. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  238. "phpunit/phpunit": "^10.3"
  239. },
  240. "type": "library",
  241. "autoload": {
  242. "psr-4": {
  243. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  244. }
  245. },
  246. "notification-url": "https://packagist.org/downloads/",
  247. "license": [
  248. "MIT"
  249. ],
  250. "authors": [
  251. {
  252. "name": "KyleKatarn",
  253. "email": "kylekatarnls@gmail.com"
  254. }
  255. ],
  256. "description": "Types to use Carbon in Doctrine",
  257. "keywords": [
  258. "carbon",
  259. "date",
  260. "datetime",
  261. "doctrine",
  262. "time"
  263. ],
  264. "support": {
  265. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  266. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  267. },
  268. "funding": [
  269. {
  270. "url": "https://github.com/kylekatarnls",
  271. "type": "github"
  272. },
  273. {
  274. "url": "https://opencollective.com/Carbon",
  275. "type": "open_collective"
  276. },
  277. {
  278. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  279. "type": "tidelift"
  280. }
  281. ],
  282. "time": "2024-02-09T16:56:22+00:00"
  283. },
  284. {
  285. "name": "composer/class-map-generator",
  286. "version": "1.4.0",
  287. "source": {
  288. "type": "git",
  289. "url": "https://github.com/composer/class-map-generator.git",
  290. "reference": "98bbf6780e56e0fd2404fe4b82eb665a0f93b783"
  291. },
  292. "dist": {
  293. "type": "zip",
  294. "url": "https://api.github.com/repos/composer/class-map-generator/zipball/98bbf6780e56e0fd2404fe4b82eb665a0f93b783",
  295. "reference": "98bbf6780e56e0fd2404fe4b82eb665a0f93b783",
  296. "shasum": ""
  297. },
  298. "require": {
  299. "composer/pcre": "^2.1 || ^3.1",
  300. "php": "^7.2 || ^8.0",
  301. "symfony/finder": "^4.4 || ^5.3 || ^6 || ^7"
  302. },
  303. "require-dev": {
  304. "phpstan/phpstan": "^1.6",
  305. "phpstan/phpstan-deprecation-rules": "^1",
  306. "phpstan/phpstan-phpunit": "^1",
  307. "phpstan/phpstan-strict-rules": "^1.1",
  308. "phpunit/phpunit": "^8",
  309. "symfony/filesystem": "^5.4 || ^6"
  310. },
  311. "type": "library",
  312. "extra": {
  313. "branch-alias": {
  314. "dev-main": "1.x-dev"
  315. }
  316. },
  317. "autoload": {
  318. "psr-4": {
  319. "Composer\\ClassMapGenerator\\": "src"
  320. }
  321. },
  322. "notification-url": "https://packagist.org/downloads/",
  323. "license": [
  324. "MIT"
  325. ],
  326. "authors": [
  327. {
  328. "name": "Jordi Boggiano",
  329. "email": "j.boggiano@seld.be",
  330. "homepage": "https://seld.be"
  331. }
  332. ],
  333. "description": "Utilities to scan PHP code and generate class maps.",
  334. "keywords": [
  335. "classmap"
  336. ],
  337. "support": {
  338. "issues": "https://github.com/composer/class-map-generator/issues",
  339. "source": "https://github.com/composer/class-map-generator/tree/1.4.0"
  340. },
  341. "funding": [
  342. {
  343. "url": "https://packagist.com",
  344. "type": "custom"
  345. },
  346. {
  347. "url": "https://github.com/composer",
  348. "type": "github"
  349. },
  350. {
  351. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  352. "type": "tidelift"
  353. }
  354. ],
  355. "time": "2024-10-03T18:14:00+00:00"
  356. },
  357. {
  358. "name": "composer/pcre",
  359. "version": "3.3.1",
  360. "source": {
  361. "type": "git",
  362. "url": "https://github.com/composer/pcre.git",
  363. "reference": "63aaeac21d7e775ff9bc9d45021e1745c97521c4"
  364. },
  365. "dist": {
  366. "type": "zip",
  367. "url": "https://api.github.com/repos/composer/pcre/zipball/63aaeac21d7e775ff9bc9d45021e1745c97521c4",
  368. "reference": "63aaeac21d7e775ff9bc9d45021e1745c97521c4",
  369. "shasum": ""
  370. },
  371. "require": {
  372. "php": "^7.4 || ^8.0"
  373. },
  374. "conflict": {
  375. "phpstan/phpstan": "<1.11.10"
  376. },
  377. "require-dev": {
  378. "phpstan/phpstan": "^1.11.10",
  379. "phpstan/phpstan-strict-rules": "^1.1",
  380. "phpunit/phpunit": "^8 || ^9"
  381. },
  382. "type": "library",
  383. "extra": {
  384. "branch-alias": {
  385. "dev-main": "3.x-dev"
  386. },
  387. "phpstan": {
  388. "includes": [
  389. "extension.neon"
  390. ]
  391. }
  392. },
  393. "autoload": {
  394. "psr-4": {
  395. "Composer\\Pcre\\": "src"
  396. }
  397. },
  398. "notification-url": "https://packagist.org/downloads/",
  399. "license": [
  400. "MIT"
  401. ],
  402. "authors": [
  403. {
  404. "name": "Jordi Boggiano",
  405. "email": "j.boggiano@seld.be",
  406. "homepage": "http://seld.be"
  407. }
  408. ],
  409. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  410. "keywords": [
  411. "PCRE",
  412. "preg",
  413. "regex",
  414. "regular expression"
  415. ],
  416. "support": {
  417. "issues": "https://github.com/composer/pcre/issues",
  418. "source": "https://github.com/composer/pcre/tree/3.3.1"
  419. },
  420. "funding": [
  421. {
  422. "url": "https://packagist.com",
  423. "type": "custom"
  424. },
  425. {
  426. "url": "https://github.com/composer",
  427. "type": "github"
  428. },
  429. {
  430. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  431. "type": "tidelift"
  432. }
  433. ],
  434. "time": "2024-08-27T18:44:43+00:00"
  435. },
  436. {
  437. "name": "dasprid/enum",
  438. "version": "1.0.6",
  439. "source": {
  440. "type": "git",
  441. "url": "https://github.com/DASPRiD/Enum.git",
  442. "reference": "8dfd07c6d2cf31c8da90c53b83c026c7696dda90"
  443. },
  444. "dist": {
  445. "type": "zip",
  446. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/8dfd07c6d2cf31c8da90c53b83c026c7696dda90",
  447. "reference": "8dfd07c6d2cf31c8da90c53b83c026c7696dda90",
  448. "shasum": ""
  449. },
  450. "require": {
  451. "php": ">=7.1 <9.0"
  452. },
  453. "require-dev": {
  454. "phpunit/phpunit": "^7 || ^8 || ^9 || ^10 || ^11",
  455. "squizlabs/php_codesniffer": "*"
  456. },
  457. "type": "library",
  458. "autoload": {
  459. "psr-4": {
  460. "DASPRiD\\Enum\\": "src/"
  461. }
  462. },
  463. "notification-url": "https://packagist.org/downloads/",
  464. "license": [
  465. "BSD-2-Clause"
  466. ],
  467. "authors": [
  468. {
  469. "name": "Ben Scholzen 'DASPRiD'",
  470. "email": "mail@dasprids.de",
  471. "homepage": "https://dasprids.de/",
  472. "role": "Developer"
  473. }
  474. ],
  475. "description": "PHP 7.1 enum implementation",
  476. "keywords": [
  477. "enum",
  478. "map"
  479. ],
  480. "support": {
  481. "issues": "https://github.com/DASPRiD/Enum/issues",
  482. "source": "https://github.com/DASPRiD/Enum/tree/1.0.6"
  483. },
  484. "time": "2024-08-09T14:30:48+00:00"
  485. },
  486. {
  487. "name": "dflydev/dot-access-data",
  488. "version": "v3.0.3",
  489. "source": {
  490. "type": "git",
  491. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  492. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  493. },
  494. "dist": {
  495. "type": "zip",
  496. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  497. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  498. "shasum": ""
  499. },
  500. "require": {
  501. "php": "^7.1 || ^8.0"
  502. },
  503. "require-dev": {
  504. "phpstan/phpstan": "^0.12.42",
  505. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  506. "scrutinizer/ocular": "1.6.0",
  507. "squizlabs/php_codesniffer": "^3.5",
  508. "vimeo/psalm": "^4.0.0"
  509. },
  510. "type": "library",
  511. "extra": {
  512. "branch-alias": {
  513. "dev-main": "3.x-dev"
  514. }
  515. },
  516. "autoload": {
  517. "psr-4": {
  518. "Dflydev\\DotAccessData\\": "src/"
  519. }
  520. },
  521. "notification-url": "https://packagist.org/downloads/",
  522. "license": [
  523. "MIT"
  524. ],
  525. "authors": [
  526. {
  527. "name": "Dragonfly Development Inc.",
  528. "email": "info@dflydev.com",
  529. "homepage": "http://dflydev.com"
  530. },
  531. {
  532. "name": "Beau Simensen",
  533. "email": "beau@dflydev.com",
  534. "homepage": "http://beausimensen.com"
  535. },
  536. {
  537. "name": "Carlos Frutos",
  538. "email": "carlos@kiwing.it",
  539. "homepage": "https://github.com/cfrutos"
  540. },
  541. {
  542. "name": "Colin O'Dell",
  543. "email": "colinodell@gmail.com",
  544. "homepage": "https://www.colinodell.com"
  545. }
  546. ],
  547. "description": "Given a deep data structure, access data by dot notation.",
  548. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  549. "keywords": [
  550. "access",
  551. "data",
  552. "dot",
  553. "notation"
  554. ],
  555. "support": {
  556. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  557. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  558. },
  559. "time": "2024-07-08T12:26:09+00:00"
  560. },
  561. {
  562. "name": "doctrine/inflector",
  563. "version": "2.0.10",
  564. "source": {
  565. "type": "git",
  566. "url": "https://github.com/doctrine/inflector.git",
  567. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  568. },
  569. "dist": {
  570. "type": "zip",
  571. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  572. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  573. "shasum": ""
  574. },
  575. "require": {
  576. "php": "^7.2 || ^8.0"
  577. },
  578. "require-dev": {
  579. "doctrine/coding-standard": "^11.0",
  580. "phpstan/phpstan": "^1.8",
  581. "phpstan/phpstan-phpunit": "^1.1",
  582. "phpstan/phpstan-strict-rules": "^1.3",
  583. "phpunit/phpunit": "^8.5 || ^9.5",
  584. "vimeo/psalm": "^4.25 || ^5.4"
  585. },
  586. "type": "library",
  587. "autoload": {
  588. "psr-4": {
  589. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  590. }
  591. },
  592. "notification-url": "https://packagist.org/downloads/",
  593. "license": [
  594. "MIT"
  595. ],
  596. "authors": [
  597. {
  598. "name": "Guilherme Blanco",
  599. "email": "guilhermeblanco@gmail.com"
  600. },
  601. {
  602. "name": "Roman Borschel",
  603. "email": "roman@code-factory.org"
  604. },
  605. {
  606. "name": "Benjamin Eberlei",
  607. "email": "kontakt@beberlei.de"
  608. },
  609. {
  610. "name": "Jonathan Wage",
  611. "email": "jonwage@gmail.com"
  612. },
  613. {
  614. "name": "Johannes Schmitt",
  615. "email": "schmittjoh@gmail.com"
  616. }
  617. ],
  618. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  619. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  620. "keywords": [
  621. "inflection",
  622. "inflector",
  623. "lowercase",
  624. "manipulation",
  625. "php",
  626. "plural",
  627. "singular",
  628. "strings",
  629. "uppercase",
  630. "words"
  631. ],
  632. "support": {
  633. "issues": "https://github.com/doctrine/inflector/issues",
  634. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  635. },
  636. "funding": [
  637. {
  638. "url": "https://www.doctrine-project.org/sponsorship.html",
  639. "type": "custom"
  640. },
  641. {
  642. "url": "https://www.patreon.com/phpdoctrine",
  643. "type": "patreon"
  644. },
  645. {
  646. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  647. "type": "tidelift"
  648. }
  649. ],
  650. "time": "2024-02-18T20:23:39+00:00"
  651. },
  652. {
  653. "name": "doctrine/lexer",
  654. "version": "3.0.1",
  655. "source": {
  656. "type": "git",
  657. "url": "https://github.com/doctrine/lexer.git",
  658. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  659. },
  660. "dist": {
  661. "type": "zip",
  662. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  663. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  664. "shasum": ""
  665. },
  666. "require": {
  667. "php": "^8.1"
  668. },
  669. "require-dev": {
  670. "doctrine/coding-standard": "^12",
  671. "phpstan/phpstan": "^1.10",
  672. "phpunit/phpunit": "^10.5",
  673. "psalm/plugin-phpunit": "^0.18.3",
  674. "vimeo/psalm": "^5.21"
  675. },
  676. "type": "library",
  677. "autoload": {
  678. "psr-4": {
  679. "Doctrine\\Common\\Lexer\\": "src"
  680. }
  681. },
  682. "notification-url": "https://packagist.org/downloads/",
  683. "license": [
  684. "MIT"
  685. ],
  686. "authors": [
  687. {
  688. "name": "Guilherme Blanco",
  689. "email": "guilhermeblanco@gmail.com"
  690. },
  691. {
  692. "name": "Roman Borschel",
  693. "email": "roman@code-factory.org"
  694. },
  695. {
  696. "name": "Johannes Schmitt",
  697. "email": "schmittjoh@gmail.com"
  698. }
  699. ],
  700. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  701. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  702. "keywords": [
  703. "annotations",
  704. "docblock",
  705. "lexer",
  706. "parser",
  707. "php"
  708. ],
  709. "support": {
  710. "issues": "https://github.com/doctrine/lexer/issues",
  711. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  712. },
  713. "funding": [
  714. {
  715. "url": "https://www.doctrine-project.org/sponsorship.html",
  716. "type": "custom"
  717. },
  718. {
  719. "url": "https://www.patreon.com/phpdoctrine",
  720. "type": "patreon"
  721. },
  722. {
  723. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  724. "type": "tidelift"
  725. }
  726. ],
  727. "time": "2024-02-05T11:56:58+00:00"
  728. },
  729. {
  730. "name": "dragonmantank/cron-expression",
  731. "version": "v3.4.0",
  732. "source": {
  733. "type": "git",
  734. "url": "https://github.com/dragonmantank/cron-expression.git",
  735. "reference": "8c784d071debd117328803d86b2097615b457500"
  736. },
  737. "dist": {
  738. "type": "zip",
  739. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/8c784d071debd117328803d86b2097615b457500",
  740. "reference": "8c784d071debd117328803d86b2097615b457500",
  741. "shasum": ""
  742. },
  743. "require": {
  744. "php": "^7.2|^8.0",
  745. "webmozart/assert": "^1.0"
  746. },
  747. "replace": {
  748. "mtdowling/cron-expression": "^1.0"
  749. },
  750. "require-dev": {
  751. "phpstan/extension-installer": "^1.0",
  752. "phpstan/phpstan": "^1.0",
  753. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  754. },
  755. "type": "library",
  756. "extra": {
  757. "branch-alias": {
  758. "dev-master": "3.x-dev"
  759. }
  760. },
  761. "autoload": {
  762. "psr-4": {
  763. "Cron\\": "src/Cron/"
  764. }
  765. },
  766. "notification-url": "https://packagist.org/downloads/",
  767. "license": [
  768. "MIT"
  769. ],
  770. "authors": [
  771. {
  772. "name": "Chris Tankersley",
  773. "email": "chris@ctankersley.com",
  774. "homepage": "https://github.com/dragonmantank"
  775. }
  776. ],
  777. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  778. "keywords": [
  779. "cron",
  780. "schedule"
  781. ],
  782. "support": {
  783. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  784. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.4.0"
  785. },
  786. "funding": [
  787. {
  788. "url": "https://github.com/dragonmantank",
  789. "type": "github"
  790. }
  791. ],
  792. "time": "2024-10-09T13:47:03+00:00"
  793. },
  794. {
  795. "name": "egulias/email-validator",
  796. "version": "4.0.2",
  797. "source": {
  798. "type": "git",
  799. "url": "https://github.com/egulias/EmailValidator.git",
  800. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e"
  801. },
  802. "dist": {
  803. "type": "zip",
  804. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e",
  805. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
  806. "shasum": ""
  807. },
  808. "require": {
  809. "doctrine/lexer": "^2.0 || ^3.0",
  810. "php": ">=8.1",
  811. "symfony/polyfill-intl-idn": "^1.26"
  812. },
  813. "require-dev": {
  814. "phpunit/phpunit": "^10.2",
  815. "vimeo/psalm": "^5.12"
  816. },
  817. "suggest": {
  818. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  819. },
  820. "type": "library",
  821. "extra": {
  822. "branch-alias": {
  823. "dev-master": "4.0.x-dev"
  824. }
  825. },
  826. "autoload": {
  827. "psr-4": {
  828. "Egulias\\EmailValidator\\": "src"
  829. }
  830. },
  831. "notification-url": "https://packagist.org/downloads/",
  832. "license": [
  833. "MIT"
  834. ],
  835. "authors": [
  836. {
  837. "name": "Eduardo Gulias Davis"
  838. }
  839. ],
  840. "description": "A library for validating emails against several RFCs",
  841. "homepage": "https://github.com/egulias/EmailValidator",
  842. "keywords": [
  843. "email",
  844. "emailvalidation",
  845. "emailvalidator",
  846. "validation",
  847. "validator"
  848. ],
  849. "support": {
  850. "issues": "https://github.com/egulias/EmailValidator/issues",
  851. "source": "https://github.com/egulias/EmailValidator/tree/4.0.2"
  852. },
  853. "funding": [
  854. {
  855. "url": "https://github.com/egulias",
  856. "type": "github"
  857. }
  858. ],
  859. "time": "2023-10-06T06:47:41+00:00"
  860. },
  861. {
  862. "name": "endroid/qr-code",
  863. "version": "5.0.7",
  864. "source": {
  865. "type": "git",
  866. "url": "https://github.com/endroid/qr-code.git",
  867. "reference": "0cc00f0626b73bc71a1ea17af01387d0ac75e046"
  868. },
  869. "dist": {
  870. "type": "zip",
  871. "url": "https://api.github.com/repos/endroid/qr-code/zipball/0cc00f0626b73bc71a1ea17af01387d0ac75e046",
  872. "reference": "0cc00f0626b73bc71a1ea17af01387d0ac75e046",
  873. "shasum": ""
  874. },
  875. "require": {
  876. "bacon/bacon-qr-code": "^2.0.5",
  877. "php": "^8.1"
  878. },
  879. "conflict": {
  880. "khanamiryan/qrcode-detector-decoder": "^1.0.6"
  881. },
  882. "require-dev": {
  883. "endroid/quality": "dev-main",
  884. "ext-gd": "*",
  885. "khanamiryan/qrcode-detector-decoder": "^1.0.4||^2.0.2",
  886. "setasign/fpdf": "^1.8.2"
  887. },
  888. "suggest": {
  889. "ext-gd": "Enables you to write PNG images",
  890. "khanamiryan/qrcode-detector-decoder": "Enables you to use the image validator",
  891. "roave/security-advisories": "Makes sure package versions with known security issues are not installed",
  892. "setasign/fpdf": "Enables you to use the PDF writer"
  893. },
  894. "type": "library",
  895. "extra": {
  896. "branch-alias": {
  897. "dev-main": "5.x-dev"
  898. }
  899. },
  900. "autoload": {
  901. "psr-4": {
  902. "Endroid\\QrCode\\": "src/"
  903. }
  904. },
  905. "notification-url": "https://packagist.org/downloads/",
  906. "license": [
  907. "MIT"
  908. ],
  909. "authors": [
  910. {
  911. "name": "Jeroen van den Enden",
  912. "email": "info@endroid.nl"
  913. }
  914. ],
  915. "description": "Endroid QR Code",
  916. "homepage": "https://github.com/endroid/qr-code",
  917. "keywords": [
  918. "code",
  919. "endroid",
  920. "php",
  921. "qr",
  922. "qrcode"
  923. ],
  924. "support": {
  925. "issues": "https://github.com/endroid/qr-code/issues",
  926. "source": "https://github.com/endroid/qr-code/tree/5.0.7"
  927. },
  928. "funding": [
  929. {
  930. "url": "https://github.com/endroid",
  931. "type": "github"
  932. }
  933. ],
  934. "time": "2024-03-08T11:24:40+00:00"
  935. },
  936. {
  937. "name": "fruitcake/php-cors",
  938. "version": "v1.3.0",
  939. "source": {
  940. "type": "git",
  941. "url": "https://github.com/fruitcake/php-cors.git",
  942. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b"
  943. },
  944. "dist": {
  945. "type": "zip",
  946. "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/3d158f36e7875e2f040f37bc0573956240a5a38b",
  947. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b",
  948. "shasum": ""
  949. },
  950. "require": {
  951. "php": "^7.4|^8.0",
  952. "symfony/http-foundation": "^4.4|^5.4|^6|^7"
  953. },
  954. "require-dev": {
  955. "phpstan/phpstan": "^1.4",
  956. "phpunit/phpunit": "^9",
  957. "squizlabs/php_codesniffer": "^3.5"
  958. },
  959. "type": "library",
  960. "extra": {
  961. "branch-alias": {
  962. "dev-master": "1.2-dev"
  963. }
  964. },
  965. "autoload": {
  966. "psr-4": {
  967. "Fruitcake\\Cors\\": "src/"
  968. }
  969. },
  970. "notification-url": "https://packagist.org/downloads/",
  971. "license": [
  972. "MIT"
  973. ],
  974. "authors": [
  975. {
  976. "name": "Fruitcake",
  977. "homepage": "https://fruitcake.nl"
  978. },
  979. {
  980. "name": "Barryvdh",
  981. "email": "barryvdh@gmail.com"
  982. }
  983. ],
  984. "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
  985. "homepage": "https://github.com/fruitcake/php-cors",
  986. "keywords": [
  987. "cors",
  988. "laravel",
  989. "symfony"
  990. ],
  991. "support": {
  992. "issues": "https://github.com/fruitcake/php-cors/issues",
  993. "source": "https://github.com/fruitcake/php-cors/tree/v1.3.0"
  994. },
  995. "funding": [
  996. {
  997. "url": "https://fruitcake.nl",
  998. "type": "custom"
  999. },
  1000. {
  1001. "url": "https://github.com/barryvdh",
  1002. "type": "github"
  1003. }
  1004. ],
  1005. "time": "2023-10-12T05:21:21+00:00"
  1006. },
  1007. {
  1008. "name": "graham-campbell/result-type",
  1009. "version": "v1.1.3",
  1010. "source": {
  1011. "type": "git",
  1012. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  1013. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945"
  1014. },
  1015. "dist": {
  1016. "type": "zip",
  1017. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945",
  1018. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945",
  1019. "shasum": ""
  1020. },
  1021. "require": {
  1022. "php": "^7.2.5 || ^8.0",
  1023. "phpoption/phpoption": "^1.9.3"
  1024. },
  1025. "require-dev": {
  1026. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  1027. },
  1028. "type": "library",
  1029. "autoload": {
  1030. "psr-4": {
  1031. "GrahamCampbell\\ResultType\\": "src/"
  1032. }
  1033. },
  1034. "notification-url": "https://packagist.org/downloads/",
  1035. "license": [
  1036. "MIT"
  1037. ],
  1038. "authors": [
  1039. {
  1040. "name": "Graham Campbell",
  1041. "email": "hello@gjcampbell.co.uk",
  1042. "homepage": "https://github.com/GrahamCampbell"
  1043. }
  1044. ],
  1045. "description": "An Implementation Of The Result Type",
  1046. "keywords": [
  1047. "Graham Campbell",
  1048. "GrahamCampbell",
  1049. "Result Type",
  1050. "Result-Type",
  1051. "result"
  1052. ],
  1053. "support": {
  1054. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  1055. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3"
  1056. },
  1057. "funding": [
  1058. {
  1059. "url": "https://github.com/GrahamCampbell",
  1060. "type": "github"
  1061. },
  1062. {
  1063. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  1064. "type": "tidelift"
  1065. }
  1066. ],
  1067. "time": "2024-07-20T21:45:45+00:00"
  1068. },
  1069. {
  1070. "name": "guzzlehttp/guzzle",
  1071. "version": "7.9.2",
  1072. "source": {
  1073. "type": "git",
  1074. "url": "https://github.com/guzzle/guzzle.git",
  1075. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  1076. },
  1077. "dist": {
  1078. "type": "zip",
  1079. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  1080. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  1081. "shasum": ""
  1082. },
  1083. "require": {
  1084. "ext-json": "*",
  1085. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  1086. "guzzlehttp/psr7": "^2.7.0",
  1087. "php": "^7.2.5 || ^8.0",
  1088. "psr/http-client": "^1.0",
  1089. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1090. },
  1091. "provide": {
  1092. "psr/http-client-implementation": "1.0"
  1093. },
  1094. "require-dev": {
  1095. "bamarni/composer-bin-plugin": "^1.8.2",
  1096. "ext-curl": "*",
  1097. "guzzle/client-integration-tests": "3.0.2",
  1098. "php-http/message-factory": "^1.1",
  1099. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  1100. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1101. },
  1102. "suggest": {
  1103. "ext-curl": "Required for CURL handler support",
  1104. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1105. "psr/log": "Required for using the Log middleware"
  1106. },
  1107. "type": "library",
  1108. "extra": {
  1109. "bamarni-bin": {
  1110. "bin-links": true,
  1111. "forward-command": false
  1112. }
  1113. },
  1114. "autoload": {
  1115. "files": [
  1116. "src/functions_include.php"
  1117. ],
  1118. "psr-4": {
  1119. "GuzzleHttp\\": "src/"
  1120. }
  1121. },
  1122. "notification-url": "https://packagist.org/downloads/",
  1123. "license": [
  1124. "MIT"
  1125. ],
  1126. "authors": [
  1127. {
  1128. "name": "Graham Campbell",
  1129. "email": "hello@gjcampbell.co.uk",
  1130. "homepage": "https://github.com/GrahamCampbell"
  1131. },
  1132. {
  1133. "name": "Michael Dowling",
  1134. "email": "mtdowling@gmail.com",
  1135. "homepage": "https://github.com/mtdowling"
  1136. },
  1137. {
  1138. "name": "Jeremy Lindblom",
  1139. "email": "jeremeamia@gmail.com",
  1140. "homepage": "https://github.com/jeremeamia"
  1141. },
  1142. {
  1143. "name": "George Mponos",
  1144. "email": "gmponos@gmail.com",
  1145. "homepage": "https://github.com/gmponos"
  1146. },
  1147. {
  1148. "name": "Tobias Nyholm",
  1149. "email": "tobias.nyholm@gmail.com",
  1150. "homepage": "https://github.com/Nyholm"
  1151. },
  1152. {
  1153. "name": "Márk Sági-Kazár",
  1154. "email": "mark.sagikazar@gmail.com",
  1155. "homepage": "https://github.com/sagikazarmark"
  1156. },
  1157. {
  1158. "name": "Tobias Schultze",
  1159. "email": "webmaster@tubo-world.de",
  1160. "homepage": "https://github.com/Tobion"
  1161. }
  1162. ],
  1163. "description": "Guzzle is a PHP HTTP client library",
  1164. "keywords": [
  1165. "client",
  1166. "curl",
  1167. "framework",
  1168. "http",
  1169. "http client",
  1170. "psr-18",
  1171. "psr-7",
  1172. "rest",
  1173. "web service"
  1174. ],
  1175. "support": {
  1176. "issues": "https://github.com/guzzle/guzzle/issues",
  1177. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  1178. },
  1179. "funding": [
  1180. {
  1181. "url": "https://github.com/GrahamCampbell",
  1182. "type": "github"
  1183. },
  1184. {
  1185. "url": "https://github.com/Nyholm",
  1186. "type": "github"
  1187. },
  1188. {
  1189. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1190. "type": "tidelift"
  1191. }
  1192. ],
  1193. "time": "2024-07-24T11:22:20+00:00"
  1194. },
  1195. {
  1196. "name": "guzzlehttp/promises",
  1197. "version": "2.0.3",
  1198. "source": {
  1199. "type": "git",
  1200. "url": "https://github.com/guzzle/promises.git",
  1201. "reference": "6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8"
  1202. },
  1203. "dist": {
  1204. "type": "zip",
  1205. "url": "https://api.github.com/repos/guzzle/promises/zipball/6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8",
  1206. "reference": "6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8",
  1207. "shasum": ""
  1208. },
  1209. "require": {
  1210. "php": "^7.2.5 || ^8.0"
  1211. },
  1212. "require-dev": {
  1213. "bamarni/composer-bin-plugin": "^1.8.2",
  1214. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  1215. },
  1216. "type": "library",
  1217. "extra": {
  1218. "bamarni-bin": {
  1219. "bin-links": true,
  1220. "forward-command": false
  1221. }
  1222. },
  1223. "autoload": {
  1224. "psr-4": {
  1225. "GuzzleHttp\\Promise\\": "src/"
  1226. }
  1227. },
  1228. "notification-url": "https://packagist.org/downloads/",
  1229. "license": [
  1230. "MIT"
  1231. ],
  1232. "authors": [
  1233. {
  1234. "name": "Graham Campbell",
  1235. "email": "hello@gjcampbell.co.uk",
  1236. "homepage": "https://github.com/GrahamCampbell"
  1237. },
  1238. {
  1239. "name": "Michael Dowling",
  1240. "email": "mtdowling@gmail.com",
  1241. "homepage": "https://github.com/mtdowling"
  1242. },
  1243. {
  1244. "name": "Tobias Nyholm",
  1245. "email": "tobias.nyholm@gmail.com",
  1246. "homepage": "https://github.com/Nyholm"
  1247. },
  1248. {
  1249. "name": "Tobias Schultze",
  1250. "email": "webmaster@tubo-world.de",
  1251. "homepage": "https://github.com/Tobion"
  1252. }
  1253. ],
  1254. "description": "Guzzle promises library",
  1255. "keywords": [
  1256. "promise"
  1257. ],
  1258. "support": {
  1259. "issues": "https://github.com/guzzle/promises/issues",
  1260. "source": "https://github.com/guzzle/promises/tree/2.0.3"
  1261. },
  1262. "funding": [
  1263. {
  1264. "url": "https://github.com/GrahamCampbell",
  1265. "type": "github"
  1266. },
  1267. {
  1268. "url": "https://github.com/Nyholm",
  1269. "type": "github"
  1270. },
  1271. {
  1272. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1273. "type": "tidelift"
  1274. }
  1275. ],
  1276. "time": "2024-07-18T10:29:17+00:00"
  1277. },
  1278. {
  1279. "name": "guzzlehttp/psr7",
  1280. "version": "2.7.0",
  1281. "source": {
  1282. "type": "git",
  1283. "url": "https://github.com/guzzle/psr7.git",
  1284. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201"
  1285. },
  1286. "dist": {
  1287. "type": "zip",
  1288. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1289. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1290. "shasum": ""
  1291. },
  1292. "require": {
  1293. "php": "^7.2.5 || ^8.0",
  1294. "psr/http-factory": "^1.0",
  1295. "psr/http-message": "^1.1 || ^2.0",
  1296. "ralouphie/getallheaders": "^3.0"
  1297. },
  1298. "provide": {
  1299. "psr/http-factory-implementation": "1.0",
  1300. "psr/http-message-implementation": "1.0"
  1301. },
  1302. "require-dev": {
  1303. "bamarni/composer-bin-plugin": "^1.8.2",
  1304. "http-interop/http-factory-tests": "0.9.0",
  1305. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  1306. },
  1307. "suggest": {
  1308. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1309. },
  1310. "type": "library",
  1311. "extra": {
  1312. "bamarni-bin": {
  1313. "bin-links": true,
  1314. "forward-command": false
  1315. }
  1316. },
  1317. "autoload": {
  1318. "psr-4": {
  1319. "GuzzleHttp\\Psr7\\": "src/"
  1320. }
  1321. },
  1322. "notification-url": "https://packagist.org/downloads/",
  1323. "license": [
  1324. "MIT"
  1325. ],
  1326. "authors": [
  1327. {
  1328. "name": "Graham Campbell",
  1329. "email": "hello@gjcampbell.co.uk",
  1330. "homepage": "https://github.com/GrahamCampbell"
  1331. },
  1332. {
  1333. "name": "Michael Dowling",
  1334. "email": "mtdowling@gmail.com",
  1335. "homepage": "https://github.com/mtdowling"
  1336. },
  1337. {
  1338. "name": "George Mponos",
  1339. "email": "gmponos@gmail.com",
  1340. "homepage": "https://github.com/gmponos"
  1341. },
  1342. {
  1343. "name": "Tobias Nyholm",
  1344. "email": "tobias.nyholm@gmail.com",
  1345. "homepage": "https://github.com/Nyholm"
  1346. },
  1347. {
  1348. "name": "Márk Sági-Kazár",
  1349. "email": "mark.sagikazar@gmail.com",
  1350. "homepage": "https://github.com/sagikazarmark"
  1351. },
  1352. {
  1353. "name": "Tobias Schultze",
  1354. "email": "webmaster@tubo-world.de",
  1355. "homepage": "https://github.com/Tobion"
  1356. },
  1357. {
  1358. "name": "Márk Sági-Kazár",
  1359. "email": "mark.sagikazar@gmail.com",
  1360. "homepage": "https://sagikazarmark.hu"
  1361. }
  1362. ],
  1363. "description": "PSR-7 message implementation that also provides common utility methods",
  1364. "keywords": [
  1365. "http",
  1366. "message",
  1367. "psr-7",
  1368. "request",
  1369. "response",
  1370. "stream",
  1371. "uri",
  1372. "url"
  1373. ],
  1374. "support": {
  1375. "issues": "https://github.com/guzzle/psr7/issues",
  1376. "source": "https://github.com/guzzle/psr7/tree/2.7.0"
  1377. },
  1378. "funding": [
  1379. {
  1380. "url": "https://github.com/GrahamCampbell",
  1381. "type": "github"
  1382. },
  1383. {
  1384. "url": "https://github.com/Nyholm",
  1385. "type": "github"
  1386. },
  1387. {
  1388. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1389. "type": "tidelift"
  1390. }
  1391. ],
  1392. "time": "2024-07-18T11:15:46+00:00"
  1393. },
  1394. {
  1395. "name": "guzzlehttp/uri-template",
  1396. "version": "v1.0.3",
  1397. "source": {
  1398. "type": "git",
  1399. "url": "https://github.com/guzzle/uri-template.git",
  1400. "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c"
  1401. },
  1402. "dist": {
  1403. "type": "zip",
  1404. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/ecea8feef63bd4fef1f037ecb288386999ecc11c",
  1405. "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c",
  1406. "shasum": ""
  1407. },
  1408. "require": {
  1409. "php": "^7.2.5 || ^8.0",
  1410. "symfony/polyfill-php80": "^1.24"
  1411. },
  1412. "require-dev": {
  1413. "bamarni/composer-bin-plugin": "^1.8.2",
  1414. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  1415. "uri-template/tests": "1.0.0"
  1416. },
  1417. "type": "library",
  1418. "extra": {
  1419. "bamarni-bin": {
  1420. "bin-links": true,
  1421. "forward-command": false
  1422. }
  1423. },
  1424. "autoload": {
  1425. "psr-4": {
  1426. "GuzzleHttp\\UriTemplate\\": "src"
  1427. }
  1428. },
  1429. "notification-url": "https://packagist.org/downloads/",
  1430. "license": [
  1431. "MIT"
  1432. ],
  1433. "authors": [
  1434. {
  1435. "name": "Graham Campbell",
  1436. "email": "hello@gjcampbell.co.uk",
  1437. "homepage": "https://github.com/GrahamCampbell"
  1438. },
  1439. {
  1440. "name": "Michael Dowling",
  1441. "email": "mtdowling@gmail.com",
  1442. "homepage": "https://github.com/mtdowling"
  1443. },
  1444. {
  1445. "name": "George Mponos",
  1446. "email": "gmponos@gmail.com",
  1447. "homepage": "https://github.com/gmponos"
  1448. },
  1449. {
  1450. "name": "Tobias Nyholm",
  1451. "email": "tobias.nyholm@gmail.com",
  1452. "homepage": "https://github.com/Nyholm"
  1453. }
  1454. ],
  1455. "description": "A polyfill class for uri_template of PHP",
  1456. "keywords": [
  1457. "guzzlehttp",
  1458. "uri-template"
  1459. ],
  1460. "support": {
  1461. "issues": "https://github.com/guzzle/uri-template/issues",
  1462. "source": "https://github.com/guzzle/uri-template/tree/v1.0.3"
  1463. },
  1464. "funding": [
  1465. {
  1466. "url": "https://github.com/GrahamCampbell",
  1467. "type": "github"
  1468. },
  1469. {
  1470. "url": "https://github.com/Nyholm",
  1471. "type": "github"
  1472. },
  1473. {
  1474. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  1475. "type": "tidelift"
  1476. }
  1477. ],
  1478. "time": "2023-12-03T19:50:20+00:00"
  1479. },
  1480. {
  1481. "name": "laminas/laminas-code",
  1482. "version": "4.14.0",
  1483. "source": {
  1484. "type": "git",
  1485. "url": "https://github.com/laminas/laminas-code.git",
  1486. "reference": "562e02b7d85cb9142b5116cc76c4c7c162a11a1c"
  1487. },
  1488. "dist": {
  1489. "type": "zip",
  1490. "url": "https://api.github.com/repos/laminas/laminas-code/zipball/562e02b7d85cb9142b5116cc76c4c7c162a11a1c",
  1491. "reference": "562e02b7d85cb9142b5116cc76c4c7c162a11a1c",
  1492. "shasum": ""
  1493. },
  1494. "require": {
  1495. "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
  1496. },
  1497. "require-dev": {
  1498. "doctrine/annotations": "^2.0.1",
  1499. "ext-phar": "*",
  1500. "laminas/laminas-coding-standard": "^2.5.0",
  1501. "laminas/laminas-stdlib": "^3.17.0",
  1502. "phpunit/phpunit": "^10.3.3",
  1503. "psalm/plugin-phpunit": "^0.19.0",
  1504. "vimeo/psalm": "^5.15.0"
  1505. },
  1506. "suggest": {
  1507. "doctrine/annotations": "Doctrine\\Common\\Annotations >=1.0 for annotation features",
  1508. "laminas/laminas-stdlib": "Laminas\\Stdlib component"
  1509. },
  1510. "type": "library",
  1511. "autoload": {
  1512. "psr-4": {
  1513. "Laminas\\Code\\": "src/"
  1514. }
  1515. },
  1516. "notification-url": "https://packagist.org/downloads/",
  1517. "license": [
  1518. "BSD-3-Clause"
  1519. ],
  1520. "description": "Extensions to the PHP Reflection API, static code scanning, and code generation",
  1521. "homepage": "https://laminas.dev",
  1522. "keywords": [
  1523. "code",
  1524. "laminas",
  1525. "laminasframework"
  1526. ],
  1527. "support": {
  1528. "chat": "https://laminas.dev/chat",
  1529. "docs": "https://docs.laminas.dev/laminas-code/",
  1530. "forum": "https://discourse.laminas.dev",
  1531. "issues": "https://github.com/laminas/laminas-code/issues",
  1532. "rss": "https://github.com/laminas/laminas-code/releases.atom",
  1533. "source": "https://github.com/laminas/laminas-code"
  1534. },
  1535. "funding": [
  1536. {
  1537. "url": "https://funding.communitybridge.org/projects/laminas-project",
  1538. "type": "community_bridge"
  1539. }
  1540. ],
  1541. "time": "2024-06-17T08:50:25+00:00"
  1542. },
  1543. {
  1544. "name": "laravel/framework",
  1545. "version": "v11.27.2",
  1546. "source": {
  1547. "type": "git",
  1548. "url": "https://github.com/laravel/framework.git",
  1549. "reference": "a51d1f2b771c542324a3d9b76a98b1bbc75c0ee9"
  1550. },
  1551. "dist": {
  1552. "type": "zip",
  1553. "url": "https://api.github.com/repos/laravel/framework/zipball/a51d1f2b771c542324a3d9b76a98b1bbc75c0ee9",
  1554. "reference": "a51d1f2b771c542324a3d9b76a98b1bbc75c0ee9",
  1555. "shasum": ""
  1556. },
  1557. "require": {
  1558. "brick/math": "^0.9.3|^0.10.2|^0.11|^0.12",
  1559. "composer-runtime-api": "^2.2",
  1560. "doctrine/inflector": "^2.0.5",
  1561. "dragonmantank/cron-expression": "^3.3.2",
  1562. "egulias/email-validator": "^3.2.1|^4.0",
  1563. "ext-ctype": "*",
  1564. "ext-filter": "*",
  1565. "ext-hash": "*",
  1566. "ext-mbstring": "*",
  1567. "ext-openssl": "*",
  1568. "ext-session": "*",
  1569. "ext-tokenizer": "*",
  1570. "fruitcake/php-cors": "^1.3",
  1571. "guzzlehttp/guzzle": "^7.8",
  1572. "guzzlehttp/uri-template": "^1.0",
  1573. "laravel/prompts": "^0.1.18|^0.2.0|^0.3.0",
  1574. "laravel/serializable-closure": "^1.3",
  1575. "league/commonmark": "^2.2.1",
  1576. "league/flysystem": "^3.8.0",
  1577. "monolog/monolog": "^3.0",
  1578. "nesbot/carbon": "^2.72.2|^3.0",
  1579. "nunomaduro/termwind": "^2.0",
  1580. "php": "^8.2",
  1581. "psr/container": "^1.1.1|^2.0.1",
  1582. "psr/log": "^1.0|^2.0|^3.0",
  1583. "psr/simple-cache": "^1.0|^2.0|^3.0",
  1584. "ramsey/uuid": "^4.7",
  1585. "symfony/console": "^7.0",
  1586. "symfony/error-handler": "^7.0",
  1587. "symfony/finder": "^7.0",
  1588. "symfony/http-foundation": "^7.0",
  1589. "symfony/http-kernel": "^7.0",
  1590. "symfony/mailer": "^7.0",
  1591. "symfony/mime": "^7.0",
  1592. "symfony/polyfill-php83": "^1.28",
  1593. "symfony/process": "^7.0",
  1594. "symfony/routing": "^7.0",
  1595. "symfony/uid": "^7.0",
  1596. "symfony/var-dumper": "^7.0",
  1597. "tijsverkoyen/css-to-inline-styles": "^2.2.5",
  1598. "vlucas/phpdotenv": "^5.4.1",
  1599. "voku/portable-ascii": "^2.0"
  1600. },
  1601. "conflict": {
  1602. "mockery/mockery": "1.6.8",
  1603. "tightenco/collect": "<5.5.33"
  1604. },
  1605. "provide": {
  1606. "psr/container-implementation": "1.1|2.0",
  1607. "psr/log-implementation": "1.0|2.0|3.0",
  1608. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  1609. },
  1610. "replace": {
  1611. "illuminate/auth": "self.version",
  1612. "illuminate/broadcasting": "self.version",
  1613. "illuminate/bus": "self.version",
  1614. "illuminate/cache": "self.version",
  1615. "illuminate/collections": "self.version",
  1616. "illuminate/concurrency": "self.version",
  1617. "illuminate/conditionable": "self.version",
  1618. "illuminate/config": "self.version",
  1619. "illuminate/console": "self.version",
  1620. "illuminate/container": "self.version",
  1621. "illuminate/contracts": "self.version",
  1622. "illuminate/cookie": "self.version",
  1623. "illuminate/database": "self.version",
  1624. "illuminate/encryption": "self.version",
  1625. "illuminate/events": "self.version",
  1626. "illuminate/filesystem": "self.version",
  1627. "illuminate/hashing": "self.version",
  1628. "illuminate/http": "self.version",
  1629. "illuminate/log": "self.version",
  1630. "illuminate/macroable": "self.version",
  1631. "illuminate/mail": "self.version",
  1632. "illuminate/notifications": "self.version",
  1633. "illuminate/pagination": "self.version",
  1634. "illuminate/pipeline": "self.version",
  1635. "illuminate/process": "self.version",
  1636. "illuminate/queue": "self.version",
  1637. "illuminate/redis": "self.version",
  1638. "illuminate/routing": "self.version",
  1639. "illuminate/session": "self.version",
  1640. "illuminate/support": "self.version",
  1641. "illuminate/testing": "self.version",
  1642. "illuminate/translation": "self.version",
  1643. "illuminate/validation": "self.version",
  1644. "illuminate/view": "self.version",
  1645. "spatie/once": "*"
  1646. },
  1647. "require-dev": {
  1648. "ably/ably-php": "^1.0",
  1649. "aws/aws-sdk-php": "^3.235.5",
  1650. "ext-gmp": "*",
  1651. "fakerphp/faker": "^1.23",
  1652. "league/flysystem-aws-s3-v3": "^3.0",
  1653. "league/flysystem-ftp": "^3.0",
  1654. "league/flysystem-path-prefixing": "^3.3",
  1655. "league/flysystem-read-only": "^3.3",
  1656. "league/flysystem-sftp-v3": "^3.0",
  1657. "mockery/mockery": "^1.6",
  1658. "nyholm/psr7": "^1.2",
  1659. "orchestra/testbench-core": "^9.5",
  1660. "pda/pheanstalk": "^5.0",
  1661. "phpstan/phpstan": "^1.11.5",
  1662. "phpunit/phpunit": "^10.5|^11.0",
  1663. "predis/predis": "^2.0.2",
  1664. "resend/resend-php": "^0.10.0",
  1665. "symfony/cache": "^7.0",
  1666. "symfony/http-client": "^7.0",
  1667. "symfony/psr-http-message-bridge": "^7.0"
  1668. },
  1669. "suggest": {
  1670. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  1671. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.235.5).",
  1672. "brianium/paratest": "Required to run tests in parallel (^7.0|^8.0).",
  1673. "ext-apcu": "Required to use the APC cache driver.",
  1674. "ext-fileinfo": "Required to use the Filesystem class.",
  1675. "ext-ftp": "Required to use the Flysystem FTP driver.",
  1676. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  1677. "ext-memcached": "Required to use the memcache cache driver.",
  1678. "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.",
  1679. "ext-pdo": "Required to use all database features.",
  1680. "ext-posix": "Required to use all features of the queue worker.",
  1681. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0|^6.0).",
  1682. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  1683. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  1684. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  1685. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).",
  1686. "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.0).",
  1687. "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.3).",
  1688. "league/flysystem-read-only": "Required to use read-only disks (^3.3)",
  1689. "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.0).",
  1690. "mockery/mockery": "Required to use mocking (^1.6).",
  1691. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  1692. "pda/pheanstalk": "Required to use the beanstalk queue driver (^5.0).",
  1693. "phpunit/phpunit": "Required to use assertions and run tests (^10.5|^11.0).",
  1694. "predis/predis": "Required to use the predis connector (^2.0.2).",
  1695. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  1696. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
  1697. "resend/resend-php": "Required to enable support for the Resend mail transport (^0.10.0).",
  1698. "symfony/cache": "Required to PSR-6 cache bridge (^7.0).",
  1699. "symfony/filesystem": "Required to enable support for relative symbolic links (^7.0).",
  1700. "symfony/http-client": "Required to enable support for the Symfony API mail transports (^7.0).",
  1701. "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^7.0).",
  1702. "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^7.0).",
  1703. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^7.0)."
  1704. },
  1705. "type": "library",
  1706. "extra": {
  1707. "branch-alias": {
  1708. "dev-master": "11.x-dev"
  1709. }
  1710. },
  1711. "autoload": {
  1712. "files": [
  1713. "src/Illuminate/Collections/helpers.php",
  1714. "src/Illuminate/Events/functions.php",
  1715. "src/Illuminate/Filesystem/functions.php",
  1716. "src/Illuminate/Foundation/helpers.php",
  1717. "src/Illuminate/Log/functions.php",
  1718. "src/Illuminate/Support/functions.php",
  1719. "src/Illuminate/Support/helpers.php"
  1720. ],
  1721. "psr-4": {
  1722. "Illuminate\\": "src/Illuminate/",
  1723. "Illuminate\\Support\\": [
  1724. "src/Illuminate/Macroable/",
  1725. "src/Illuminate/Collections/",
  1726. "src/Illuminate/Conditionable/"
  1727. ]
  1728. }
  1729. },
  1730. "notification-url": "https://packagist.org/downloads/",
  1731. "license": [
  1732. "MIT"
  1733. ],
  1734. "authors": [
  1735. {
  1736. "name": "Taylor Otwell",
  1737. "email": "taylor@laravel.com"
  1738. }
  1739. ],
  1740. "description": "The Laravel Framework.",
  1741. "homepage": "https://laravel.com",
  1742. "keywords": [
  1743. "framework",
  1744. "laravel"
  1745. ],
  1746. "support": {
  1747. "issues": "https://github.com/laravel/framework/issues",
  1748. "source": "https://github.com/laravel/framework"
  1749. },
  1750. "time": "2024-10-09T04:17:35+00:00"
  1751. },
  1752. {
  1753. "name": "laravel/prompts",
  1754. "version": "v0.3.0",
  1755. "source": {
  1756. "type": "git",
  1757. "url": "https://github.com/laravel/prompts.git",
  1758. "reference": "ea57a2261093986721d4a5f4f9524d76f21f9fa0"
  1759. },
  1760. "dist": {
  1761. "type": "zip",
  1762. "url": "https://api.github.com/repos/laravel/prompts/zipball/ea57a2261093986721d4a5f4f9524d76f21f9fa0",
  1763. "reference": "ea57a2261093986721d4a5f4f9524d76f21f9fa0",
  1764. "shasum": ""
  1765. },
  1766. "require": {
  1767. "composer-runtime-api": "^2.2",
  1768. "ext-mbstring": "*",
  1769. "php": "^8.1",
  1770. "symfony/console": "^6.2|^7.0"
  1771. },
  1772. "conflict": {
  1773. "illuminate/console": ">=10.17.0 <10.25.0",
  1774. "laravel/framework": ">=10.17.0 <10.25.0"
  1775. },
  1776. "require-dev": {
  1777. "illuminate/collections": "^10.0|^11.0",
  1778. "mockery/mockery": "^1.5",
  1779. "pestphp/pest": "^2.3",
  1780. "phpstan/phpstan": "^1.11",
  1781. "phpstan/phpstan-mockery": "^1.1"
  1782. },
  1783. "suggest": {
  1784. "ext-pcntl": "Required for the spinner to be animated."
  1785. },
  1786. "type": "library",
  1787. "extra": {
  1788. "branch-alias": {
  1789. "dev-main": "0.3.x-dev"
  1790. }
  1791. },
  1792. "autoload": {
  1793. "files": [
  1794. "src/helpers.php"
  1795. ],
  1796. "psr-4": {
  1797. "Laravel\\Prompts\\": "src/"
  1798. }
  1799. },
  1800. "notification-url": "https://packagist.org/downloads/",
  1801. "license": [
  1802. "MIT"
  1803. ],
  1804. "description": "Add beautiful and user-friendly forms to your command-line applications.",
  1805. "support": {
  1806. "issues": "https://github.com/laravel/prompts/issues",
  1807. "source": "https://github.com/laravel/prompts/tree/v0.3.0"
  1808. },
  1809. "time": "2024-09-30T14:27:51+00:00"
  1810. },
  1811. {
  1812. "name": "laravel/sanctum",
  1813. "version": "v4.0.3",
  1814. "source": {
  1815. "type": "git",
  1816. "url": "https://github.com/laravel/sanctum.git",
  1817. "reference": "54aea9d13743ae8a6cdd3c28dbef128a17adecab"
  1818. },
  1819. "dist": {
  1820. "type": "zip",
  1821. "url": "https://api.github.com/repos/laravel/sanctum/zipball/54aea9d13743ae8a6cdd3c28dbef128a17adecab",
  1822. "reference": "54aea9d13743ae8a6cdd3c28dbef128a17adecab",
  1823. "shasum": ""
  1824. },
  1825. "require": {
  1826. "ext-json": "*",
  1827. "illuminate/console": "^11.0",
  1828. "illuminate/contracts": "^11.0",
  1829. "illuminate/database": "^11.0",
  1830. "illuminate/support": "^11.0",
  1831. "php": "^8.2",
  1832. "symfony/console": "^7.0"
  1833. },
  1834. "require-dev": {
  1835. "mockery/mockery": "^1.6",
  1836. "orchestra/testbench": "^9.0",
  1837. "phpstan/phpstan": "^1.10",
  1838. "phpunit/phpunit": "^10.5"
  1839. },
  1840. "type": "library",
  1841. "extra": {
  1842. "laravel": {
  1843. "providers": [
  1844. "Laravel\\Sanctum\\SanctumServiceProvider"
  1845. ]
  1846. }
  1847. },
  1848. "autoload": {
  1849. "psr-4": {
  1850. "Laravel\\Sanctum\\": "src/"
  1851. }
  1852. },
  1853. "notification-url": "https://packagist.org/downloads/",
  1854. "license": [
  1855. "MIT"
  1856. ],
  1857. "authors": [
  1858. {
  1859. "name": "Taylor Otwell",
  1860. "email": "taylor@laravel.com"
  1861. }
  1862. ],
  1863. "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.",
  1864. "keywords": [
  1865. "auth",
  1866. "laravel",
  1867. "sanctum"
  1868. ],
  1869. "support": {
  1870. "issues": "https://github.com/laravel/sanctum/issues",
  1871. "source": "https://github.com/laravel/sanctum"
  1872. },
  1873. "time": "2024-09-27T14:55:41+00:00"
  1874. },
  1875. {
  1876. "name": "laravel/serializable-closure",
  1877. "version": "v1.3.5",
  1878. "source": {
  1879. "type": "git",
  1880. "url": "https://github.com/laravel/serializable-closure.git",
  1881. "reference": "1dc4a3dbfa2b7628a3114e43e32120cce7cdda9c"
  1882. },
  1883. "dist": {
  1884. "type": "zip",
  1885. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/1dc4a3dbfa2b7628a3114e43e32120cce7cdda9c",
  1886. "reference": "1dc4a3dbfa2b7628a3114e43e32120cce7cdda9c",
  1887. "shasum": ""
  1888. },
  1889. "require": {
  1890. "php": "^7.3|^8.0"
  1891. },
  1892. "require-dev": {
  1893. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  1894. "nesbot/carbon": "^2.61|^3.0",
  1895. "pestphp/pest": "^1.21.3",
  1896. "phpstan/phpstan": "^1.8.2",
  1897. "symfony/var-dumper": "^5.4.11|^6.2.0|^7.0.0"
  1898. },
  1899. "type": "library",
  1900. "extra": {
  1901. "branch-alias": {
  1902. "dev-master": "1.x-dev"
  1903. }
  1904. },
  1905. "autoload": {
  1906. "psr-4": {
  1907. "Laravel\\SerializableClosure\\": "src/"
  1908. }
  1909. },
  1910. "notification-url": "https://packagist.org/downloads/",
  1911. "license": [
  1912. "MIT"
  1913. ],
  1914. "authors": [
  1915. {
  1916. "name": "Taylor Otwell",
  1917. "email": "taylor@laravel.com"
  1918. },
  1919. {
  1920. "name": "Nuno Maduro",
  1921. "email": "nuno@laravel.com"
  1922. }
  1923. ],
  1924. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  1925. "keywords": [
  1926. "closure",
  1927. "laravel",
  1928. "serializable"
  1929. ],
  1930. "support": {
  1931. "issues": "https://github.com/laravel/serializable-closure/issues",
  1932. "source": "https://github.com/laravel/serializable-closure"
  1933. },
  1934. "time": "2024-09-23T13:33:08+00:00"
  1935. },
  1936. {
  1937. "name": "laravel/tinker",
  1938. "version": "v2.10.0",
  1939. "source": {
  1940. "type": "git",
  1941. "url": "https://github.com/laravel/tinker.git",
  1942. "reference": "ba4d51eb56de7711b3a37d63aa0643e99a339ae5"
  1943. },
  1944. "dist": {
  1945. "type": "zip",
  1946. "url": "https://api.github.com/repos/laravel/tinker/zipball/ba4d51eb56de7711b3a37d63aa0643e99a339ae5",
  1947. "reference": "ba4d51eb56de7711b3a37d63aa0643e99a339ae5",
  1948. "shasum": ""
  1949. },
  1950. "require": {
  1951. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  1952. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  1953. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  1954. "php": "^7.2.5|^8.0",
  1955. "psy/psysh": "^0.11.1|^0.12.0",
  1956. "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0"
  1957. },
  1958. "require-dev": {
  1959. "mockery/mockery": "~1.3.3|^1.4.2",
  1960. "phpstan/phpstan": "^1.10",
  1961. "phpunit/phpunit": "^8.5.8|^9.3.3"
  1962. },
  1963. "suggest": {
  1964. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0)."
  1965. },
  1966. "type": "library",
  1967. "extra": {
  1968. "laravel": {
  1969. "providers": [
  1970. "Laravel\\Tinker\\TinkerServiceProvider"
  1971. ]
  1972. }
  1973. },
  1974. "autoload": {
  1975. "psr-4": {
  1976. "Laravel\\Tinker\\": "src/"
  1977. }
  1978. },
  1979. "notification-url": "https://packagist.org/downloads/",
  1980. "license": [
  1981. "MIT"
  1982. ],
  1983. "authors": [
  1984. {
  1985. "name": "Taylor Otwell",
  1986. "email": "taylor@laravel.com"
  1987. }
  1988. ],
  1989. "description": "Powerful REPL for the Laravel framework.",
  1990. "keywords": [
  1991. "REPL",
  1992. "Tinker",
  1993. "laravel",
  1994. "psysh"
  1995. ],
  1996. "support": {
  1997. "issues": "https://github.com/laravel/tinker/issues",
  1998. "source": "https://github.com/laravel/tinker/tree/v2.10.0"
  1999. },
  2000. "time": "2024-09-23T13:32:56+00:00"
  2001. },
  2002. {
  2003. "name": "league/commonmark",
  2004. "version": "2.5.3",
  2005. "source": {
  2006. "type": "git",
  2007. "url": "https://github.com/thephpleague/commonmark.git",
  2008. "reference": "b650144166dfa7703e62a22e493b853b58d874b0"
  2009. },
  2010. "dist": {
  2011. "type": "zip",
  2012. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/b650144166dfa7703e62a22e493b853b58d874b0",
  2013. "reference": "b650144166dfa7703e62a22e493b853b58d874b0",
  2014. "shasum": ""
  2015. },
  2016. "require": {
  2017. "ext-mbstring": "*",
  2018. "league/config": "^1.1.1",
  2019. "php": "^7.4 || ^8.0",
  2020. "psr/event-dispatcher": "^1.0",
  2021. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  2022. "symfony/polyfill-php80": "^1.16"
  2023. },
  2024. "require-dev": {
  2025. "cebe/markdown": "^1.0",
  2026. "commonmark/cmark": "0.31.1",
  2027. "commonmark/commonmark.js": "0.31.1",
  2028. "composer/package-versions-deprecated": "^1.8",
  2029. "embed/embed": "^4.4",
  2030. "erusev/parsedown": "^1.0",
  2031. "ext-json": "*",
  2032. "github/gfm": "0.29.0",
  2033. "michelf/php-markdown": "^1.4 || ^2.0",
  2034. "nyholm/psr7": "^1.5",
  2035. "phpstan/phpstan": "^1.8.2",
  2036. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  2037. "scrutinizer/ocular": "^1.8.1",
  2038. "symfony/finder": "^5.3 | ^6.0 || ^7.0",
  2039. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 || ^7.0",
  2040. "unleashedtech/php-coding-standard": "^3.1.1",
  2041. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  2042. },
  2043. "suggest": {
  2044. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  2045. },
  2046. "type": "library",
  2047. "extra": {
  2048. "branch-alias": {
  2049. "dev-main": "2.6-dev"
  2050. }
  2051. },
  2052. "autoload": {
  2053. "psr-4": {
  2054. "League\\CommonMark\\": "src"
  2055. }
  2056. },
  2057. "notification-url": "https://packagist.org/downloads/",
  2058. "license": [
  2059. "BSD-3-Clause"
  2060. ],
  2061. "authors": [
  2062. {
  2063. "name": "Colin O'Dell",
  2064. "email": "colinodell@gmail.com",
  2065. "homepage": "https://www.colinodell.com",
  2066. "role": "Lead Developer"
  2067. }
  2068. ],
  2069. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  2070. "homepage": "https://commonmark.thephpleague.com",
  2071. "keywords": [
  2072. "commonmark",
  2073. "flavored",
  2074. "gfm",
  2075. "github",
  2076. "github-flavored",
  2077. "markdown",
  2078. "md",
  2079. "parser"
  2080. ],
  2081. "support": {
  2082. "docs": "https://commonmark.thephpleague.com/",
  2083. "forum": "https://github.com/thephpleague/commonmark/discussions",
  2084. "issues": "https://github.com/thephpleague/commonmark/issues",
  2085. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2086. "source": "https://github.com/thephpleague/commonmark"
  2087. },
  2088. "funding": [
  2089. {
  2090. "url": "https://www.colinodell.com/sponsor",
  2091. "type": "custom"
  2092. },
  2093. {
  2094. "url": "https://www.paypal.me/colinpodell/10.00",
  2095. "type": "custom"
  2096. },
  2097. {
  2098. "url": "https://github.com/colinodell",
  2099. "type": "github"
  2100. },
  2101. {
  2102. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2103. "type": "tidelift"
  2104. }
  2105. ],
  2106. "time": "2024-08-16T11:46:16+00:00"
  2107. },
  2108. {
  2109. "name": "league/config",
  2110. "version": "v1.2.0",
  2111. "source": {
  2112. "type": "git",
  2113. "url": "https://github.com/thephpleague/config.git",
  2114. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  2115. },
  2116. "dist": {
  2117. "type": "zip",
  2118. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2119. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2120. "shasum": ""
  2121. },
  2122. "require": {
  2123. "dflydev/dot-access-data": "^3.0.1",
  2124. "nette/schema": "^1.2",
  2125. "php": "^7.4 || ^8.0"
  2126. },
  2127. "require-dev": {
  2128. "phpstan/phpstan": "^1.8.2",
  2129. "phpunit/phpunit": "^9.5.5",
  2130. "scrutinizer/ocular": "^1.8.1",
  2131. "unleashedtech/php-coding-standard": "^3.1",
  2132. "vimeo/psalm": "^4.7.3"
  2133. },
  2134. "type": "library",
  2135. "extra": {
  2136. "branch-alias": {
  2137. "dev-main": "1.2-dev"
  2138. }
  2139. },
  2140. "autoload": {
  2141. "psr-4": {
  2142. "League\\Config\\": "src"
  2143. }
  2144. },
  2145. "notification-url": "https://packagist.org/downloads/",
  2146. "license": [
  2147. "BSD-3-Clause"
  2148. ],
  2149. "authors": [
  2150. {
  2151. "name": "Colin O'Dell",
  2152. "email": "colinodell@gmail.com",
  2153. "homepage": "https://www.colinodell.com",
  2154. "role": "Lead Developer"
  2155. }
  2156. ],
  2157. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  2158. "homepage": "https://config.thephpleague.com",
  2159. "keywords": [
  2160. "array",
  2161. "config",
  2162. "configuration",
  2163. "dot",
  2164. "dot-access",
  2165. "nested",
  2166. "schema"
  2167. ],
  2168. "support": {
  2169. "docs": "https://config.thephpleague.com/",
  2170. "issues": "https://github.com/thephpleague/config/issues",
  2171. "rss": "https://github.com/thephpleague/config/releases.atom",
  2172. "source": "https://github.com/thephpleague/config"
  2173. },
  2174. "funding": [
  2175. {
  2176. "url": "https://www.colinodell.com/sponsor",
  2177. "type": "custom"
  2178. },
  2179. {
  2180. "url": "https://www.paypal.me/colinpodell/10.00",
  2181. "type": "custom"
  2182. },
  2183. {
  2184. "url": "https://github.com/colinodell",
  2185. "type": "github"
  2186. }
  2187. ],
  2188. "time": "2022-12-11T20:36:23+00:00"
  2189. },
  2190. {
  2191. "name": "league/flysystem",
  2192. "version": "3.29.1",
  2193. "source": {
  2194. "type": "git",
  2195. "url": "https://github.com/thephpleague/flysystem.git",
  2196. "reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319"
  2197. },
  2198. "dist": {
  2199. "type": "zip",
  2200. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/edc1bb7c86fab0776c3287dbd19b5fa278347319",
  2201. "reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319",
  2202. "shasum": ""
  2203. },
  2204. "require": {
  2205. "league/flysystem-local": "^3.0.0",
  2206. "league/mime-type-detection": "^1.0.0",
  2207. "php": "^8.0.2"
  2208. },
  2209. "conflict": {
  2210. "async-aws/core": "<1.19.0",
  2211. "async-aws/s3": "<1.14.0",
  2212. "aws/aws-sdk-php": "3.209.31 || 3.210.0",
  2213. "guzzlehttp/guzzle": "<7.0",
  2214. "guzzlehttp/ringphp": "<1.1.1",
  2215. "phpseclib/phpseclib": "3.0.15",
  2216. "symfony/http-client": "<5.2"
  2217. },
  2218. "require-dev": {
  2219. "async-aws/s3": "^1.5 || ^2.0",
  2220. "async-aws/simple-s3": "^1.1 || ^2.0",
  2221. "aws/aws-sdk-php": "^3.295.10",
  2222. "composer/semver": "^3.0",
  2223. "ext-fileinfo": "*",
  2224. "ext-ftp": "*",
  2225. "ext-mongodb": "^1.3",
  2226. "ext-zip": "*",
  2227. "friendsofphp/php-cs-fixer": "^3.5",
  2228. "google/cloud-storage": "^1.23",
  2229. "guzzlehttp/psr7": "^2.6",
  2230. "microsoft/azure-storage-blob": "^1.1",
  2231. "mongodb/mongodb": "^1.2",
  2232. "phpseclib/phpseclib": "^3.0.36",
  2233. "phpstan/phpstan": "^1.10",
  2234. "phpunit/phpunit": "^9.5.11|^10.0",
  2235. "sabre/dav": "^4.6.0"
  2236. },
  2237. "type": "library",
  2238. "autoload": {
  2239. "psr-4": {
  2240. "League\\Flysystem\\": "src"
  2241. }
  2242. },
  2243. "notification-url": "https://packagist.org/downloads/",
  2244. "license": [
  2245. "MIT"
  2246. ],
  2247. "authors": [
  2248. {
  2249. "name": "Frank de Jonge",
  2250. "email": "info@frankdejonge.nl"
  2251. }
  2252. ],
  2253. "description": "File storage abstraction for PHP",
  2254. "keywords": [
  2255. "WebDAV",
  2256. "aws",
  2257. "cloud",
  2258. "file",
  2259. "files",
  2260. "filesystem",
  2261. "filesystems",
  2262. "ftp",
  2263. "s3",
  2264. "sftp",
  2265. "storage"
  2266. ],
  2267. "support": {
  2268. "issues": "https://github.com/thephpleague/flysystem/issues",
  2269. "source": "https://github.com/thephpleague/flysystem/tree/3.29.1"
  2270. },
  2271. "time": "2024-10-08T08:58:34+00:00"
  2272. },
  2273. {
  2274. "name": "league/flysystem-local",
  2275. "version": "3.29.0",
  2276. "source": {
  2277. "type": "git",
  2278. "url": "https://github.com/thephpleague/flysystem-local.git",
  2279. "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27"
  2280. },
  2281. "dist": {
  2282. "type": "zip",
  2283. "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/e0e8d52ce4b2ed154148453d321e97c8e931bd27",
  2284. "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27",
  2285. "shasum": ""
  2286. },
  2287. "require": {
  2288. "ext-fileinfo": "*",
  2289. "league/flysystem": "^3.0.0",
  2290. "league/mime-type-detection": "^1.0.0",
  2291. "php": "^8.0.2"
  2292. },
  2293. "type": "library",
  2294. "autoload": {
  2295. "psr-4": {
  2296. "League\\Flysystem\\Local\\": ""
  2297. }
  2298. },
  2299. "notification-url": "https://packagist.org/downloads/",
  2300. "license": [
  2301. "MIT"
  2302. ],
  2303. "authors": [
  2304. {
  2305. "name": "Frank de Jonge",
  2306. "email": "info@frankdejonge.nl"
  2307. }
  2308. ],
  2309. "description": "Local filesystem adapter for Flysystem.",
  2310. "keywords": [
  2311. "Flysystem",
  2312. "file",
  2313. "files",
  2314. "filesystem",
  2315. "local"
  2316. ],
  2317. "support": {
  2318. "source": "https://github.com/thephpleague/flysystem-local/tree/3.29.0"
  2319. },
  2320. "time": "2024-08-09T21:24:39+00:00"
  2321. },
  2322. {
  2323. "name": "league/mime-type-detection",
  2324. "version": "1.16.0",
  2325. "source": {
  2326. "type": "git",
  2327. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2328. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9"
  2329. },
  2330. "dist": {
  2331. "type": "zip",
  2332. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/2d6702ff215bf922936ccc1ad31007edc76451b9",
  2333. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9",
  2334. "shasum": ""
  2335. },
  2336. "require": {
  2337. "ext-fileinfo": "*",
  2338. "php": "^7.4 || ^8.0"
  2339. },
  2340. "require-dev": {
  2341. "friendsofphp/php-cs-fixer": "^3.2",
  2342. "phpstan/phpstan": "^0.12.68",
  2343. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  2344. },
  2345. "type": "library",
  2346. "autoload": {
  2347. "psr-4": {
  2348. "League\\MimeTypeDetection\\": "src"
  2349. }
  2350. },
  2351. "notification-url": "https://packagist.org/downloads/",
  2352. "license": [
  2353. "MIT"
  2354. ],
  2355. "authors": [
  2356. {
  2357. "name": "Frank de Jonge",
  2358. "email": "info@frankdejonge.nl"
  2359. }
  2360. ],
  2361. "description": "Mime-type detection for Flysystem",
  2362. "support": {
  2363. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2364. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.16.0"
  2365. },
  2366. "funding": [
  2367. {
  2368. "url": "https://github.com/frankdejonge",
  2369. "type": "github"
  2370. },
  2371. {
  2372. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2373. "type": "tidelift"
  2374. }
  2375. ],
  2376. "time": "2024-09-21T08:32:55+00:00"
  2377. },
  2378. {
  2379. "name": "monolog/monolog",
  2380. "version": "3.7.0",
  2381. "source": {
  2382. "type": "git",
  2383. "url": "https://github.com/Seldaek/monolog.git",
  2384. "reference": "f4393b648b78a5408747de94fca38beb5f7e9ef8"
  2385. },
  2386. "dist": {
  2387. "type": "zip",
  2388. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f4393b648b78a5408747de94fca38beb5f7e9ef8",
  2389. "reference": "f4393b648b78a5408747de94fca38beb5f7e9ef8",
  2390. "shasum": ""
  2391. },
  2392. "require": {
  2393. "php": ">=8.1",
  2394. "psr/log": "^2.0 || ^3.0"
  2395. },
  2396. "provide": {
  2397. "psr/log-implementation": "3.0.0"
  2398. },
  2399. "require-dev": {
  2400. "aws/aws-sdk-php": "^3.0",
  2401. "doctrine/couchdb": "~1.0@dev",
  2402. "elasticsearch/elasticsearch": "^7 || ^8",
  2403. "ext-json": "*",
  2404. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  2405. "guzzlehttp/guzzle": "^7.4.5",
  2406. "guzzlehttp/psr7": "^2.2",
  2407. "mongodb/mongodb": "^1.8",
  2408. "php-amqplib/php-amqplib": "~2.4 || ^3",
  2409. "phpstan/phpstan": "^1.9",
  2410. "phpstan/phpstan-deprecation-rules": "^1.0",
  2411. "phpstan/phpstan-strict-rules": "^1.4",
  2412. "phpunit/phpunit": "^10.5.17",
  2413. "predis/predis": "^1.1 || ^2",
  2414. "ruflin/elastica": "^7",
  2415. "symfony/mailer": "^5.4 || ^6",
  2416. "symfony/mime": "^5.4 || ^6"
  2417. },
  2418. "suggest": {
  2419. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2420. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2421. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2422. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2423. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  2424. "ext-mbstring": "Allow to work properly with unicode symbols",
  2425. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2426. "ext-openssl": "Required to send log messages using SSL",
  2427. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  2428. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2429. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2430. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2431. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2432. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2433. },
  2434. "type": "library",
  2435. "extra": {
  2436. "branch-alias": {
  2437. "dev-main": "3.x-dev"
  2438. }
  2439. },
  2440. "autoload": {
  2441. "psr-4": {
  2442. "Monolog\\": "src/Monolog"
  2443. }
  2444. },
  2445. "notification-url": "https://packagist.org/downloads/",
  2446. "license": [
  2447. "MIT"
  2448. ],
  2449. "authors": [
  2450. {
  2451. "name": "Jordi Boggiano",
  2452. "email": "j.boggiano@seld.be",
  2453. "homepage": "https://seld.be"
  2454. }
  2455. ],
  2456. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2457. "homepage": "https://github.com/Seldaek/monolog",
  2458. "keywords": [
  2459. "log",
  2460. "logging",
  2461. "psr-3"
  2462. ],
  2463. "support": {
  2464. "issues": "https://github.com/Seldaek/monolog/issues",
  2465. "source": "https://github.com/Seldaek/monolog/tree/3.7.0"
  2466. },
  2467. "funding": [
  2468. {
  2469. "url": "https://github.com/Seldaek",
  2470. "type": "github"
  2471. },
  2472. {
  2473. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2474. "type": "tidelift"
  2475. }
  2476. ],
  2477. "time": "2024-06-28T09:40:51+00:00"
  2478. },
  2479. {
  2480. "name": "nesbot/carbon",
  2481. "version": "3.8.0",
  2482. "source": {
  2483. "type": "git",
  2484. "url": "https://github.com/briannesbitt/Carbon.git",
  2485. "reference": "bbd3eef89af8ba66a3aa7952b5439168fbcc529f"
  2486. },
  2487. "dist": {
  2488. "type": "zip",
  2489. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/bbd3eef89af8ba66a3aa7952b5439168fbcc529f",
  2490. "reference": "bbd3eef89af8ba66a3aa7952b5439168fbcc529f",
  2491. "shasum": ""
  2492. },
  2493. "require": {
  2494. "carbonphp/carbon-doctrine-types": "*",
  2495. "ext-json": "*",
  2496. "php": "^8.1",
  2497. "psr/clock": "^1.0",
  2498. "symfony/clock": "^6.3 || ^7.0",
  2499. "symfony/polyfill-mbstring": "^1.0",
  2500. "symfony/translation": "^4.4.18 || ^5.2.1|| ^6.0 || ^7.0"
  2501. },
  2502. "provide": {
  2503. "psr/clock-implementation": "1.0"
  2504. },
  2505. "require-dev": {
  2506. "doctrine/dbal": "^3.6.3 || ^4.0",
  2507. "doctrine/orm": "^2.15.2 || ^3.0",
  2508. "friendsofphp/php-cs-fixer": "^3.57.2",
  2509. "kylekatarnls/multi-tester": "^2.5.3",
  2510. "ondrejmirtes/better-reflection": "^6.25.0.4",
  2511. "phpmd/phpmd": "^2.15.0",
  2512. "phpstan/extension-installer": "^1.3.1",
  2513. "phpstan/phpstan": "^1.11.2",
  2514. "phpunit/phpunit": "^10.5.20",
  2515. "squizlabs/php_codesniffer": "^3.9.0"
  2516. },
  2517. "bin": [
  2518. "bin/carbon"
  2519. ],
  2520. "type": "library",
  2521. "extra": {
  2522. "branch-alias": {
  2523. "dev-master": "3.x-dev",
  2524. "dev-2.x": "2.x-dev"
  2525. },
  2526. "laravel": {
  2527. "providers": [
  2528. "Carbon\\Laravel\\ServiceProvider"
  2529. ]
  2530. },
  2531. "phpstan": {
  2532. "includes": [
  2533. "extension.neon"
  2534. ]
  2535. }
  2536. },
  2537. "autoload": {
  2538. "psr-4": {
  2539. "Carbon\\": "src/Carbon/"
  2540. }
  2541. },
  2542. "notification-url": "https://packagist.org/downloads/",
  2543. "license": [
  2544. "MIT"
  2545. ],
  2546. "authors": [
  2547. {
  2548. "name": "Brian Nesbitt",
  2549. "email": "brian@nesbot.com",
  2550. "homepage": "https://markido.com"
  2551. },
  2552. {
  2553. "name": "kylekatarnls",
  2554. "homepage": "https://github.com/kylekatarnls"
  2555. }
  2556. ],
  2557. "description": "An API extension for DateTime that supports 281 different languages.",
  2558. "homepage": "https://carbon.nesbot.com",
  2559. "keywords": [
  2560. "date",
  2561. "datetime",
  2562. "time"
  2563. ],
  2564. "support": {
  2565. "docs": "https://carbon.nesbot.com/docs",
  2566. "issues": "https://github.com/briannesbitt/Carbon/issues",
  2567. "source": "https://github.com/briannesbitt/Carbon"
  2568. },
  2569. "funding": [
  2570. {
  2571. "url": "https://github.com/sponsors/kylekatarnls",
  2572. "type": "github"
  2573. },
  2574. {
  2575. "url": "https://opencollective.com/Carbon#sponsor",
  2576. "type": "opencollective"
  2577. },
  2578. {
  2579. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  2580. "type": "tidelift"
  2581. }
  2582. ],
  2583. "time": "2024-08-19T06:22:39+00:00"
  2584. },
  2585. {
  2586. "name": "nette/schema",
  2587. "version": "v1.3.2",
  2588. "source": {
  2589. "type": "git",
  2590. "url": "https://github.com/nette/schema.git",
  2591. "reference": "da801d52f0354f70a638673c4a0f04e16529431d"
  2592. },
  2593. "dist": {
  2594. "type": "zip",
  2595. "url": "https://api.github.com/repos/nette/schema/zipball/da801d52f0354f70a638673c4a0f04e16529431d",
  2596. "reference": "da801d52f0354f70a638673c4a0f04e16529431d",
  2597. "shasum": ""
  2598. },
  2599. "require": {
  2600. "nette/utils": "^4.0",
  2601. "php": "8.1 - 8.4"
  2602. },
  2603. "require-dev": {
  2604. "nette/tester": "^2.5.2",
  2605. "phpstan/phpstan-nette": "^1.0",
  2606. "tracy/tracy": "^2.8"
  2607. },
  2608. "type": "library",
  2609. "extra": {
  2610. "branch-alias": {
  2611. "dev-master": "1.3-dev"
  2612. }
  2613. },
  2614. "autoload": {
  2615. "classmap": [
  2616. "src/"
  2617. ]
  2618. },
  2619. "notification-url": "https://packagist.org/downloads/",
  2620. "license": [
  2621. "BSD-3-Clause",
  2622. "GPL-2.0-only",
  2623. "GPL-3.0-only"
  2624. ],
  2625. "authors": [
  2626. {
  2627. "name": "David Grudl",
  2628. "homepage": "https://davidgrudl.com"
  2629. },
  2630. {
  2631. "name": "Nette Community",
  2632. "homepage": "https://nette.org/contributors"
  2633. }
  2634. ],
  2635. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  2636. "homepage": "https://nette.org",
  2637. "keywords": [
  2638. "config",
  2639. "nette"
  2640. ],
  2641. "support": {
  2642. "issues": "https://github.com/nette/schema/issues",
  2643. "source": "https://github.com/nette/schema/tree/v1.3.2"
  2644. },
  2645. "time": "2024-10-06T23:10:23+00:00"
  2646. },
  2647. {
  2648. "name": "nette/utils",
  2649. "version": "v4.0.5",
  2650. "source": {
  2651. "type": "git",
  2652. "url": "https://github.com/nette/utils.git",
  2653. "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96"
  2654. },
  2655. "dist": {
  2656. "type": "zip",
  2657. "url": "https://api.github.com/repos/nette/utils/zipball/736c567e257dbe0fcf6ce81b4d6dbe05c6899f96",
  2658. "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96",
  2659. "shasum": ""
  2660. },
  2661. "require": {
  2662. "php": "8.0 - 8.4"
  2663. },
  2664. "conflict": {
  2665. "nette/finder": "<3",
  2666. "nette/schema": "<1.2.2"
  2667. },
  2668. "require-dev": {
  2669. "jetbrains/phpstorm-attributes": "dev-master",
  2670. "nette/tester": "^2.5",
  2671. "phpstan/phpstan": "^1.0",
  2672. "tracy/tracy": "^2.9"
  2673. },
  2674. "suggest": {
  2675. "ext-gd": "to use Image",
  2676. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  2677. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  2678. "ext-json": "to use Nette\\Utils\\Json",
  2679. "ext-mbstring": "to use Strings::lower() etc...",
  2680. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  2681. },
  2682. "type": "library",
  2683. "extra": {
  2684. "branch-alias": {
  2685. "dev-master": "4.0-dev"
  2686. }
  2687. },
  2688. "autoload": {
  2689. "classmap": [
  2690. "src/"
  2691. ]
  2692. },
  2693. "notification-url": "https://packagist.org/downloads/",
  2694. "license": [
  2695. "BSD-3-Clause",
  2696. "GPL-2.0-only",
  2697. "GPL-3.0-only"
  2698. ],
  2699. "authors": [
  2700. {
  2701. "name": "David Grudl",
  2702. "homepage": "https://davidgrudl.com"
  2703. },
  2704. {
  2705. "name": "Nette Community",
  2706. "homepage": "https://nette.org/contributors"
  2707. }
  2708. ],
  2709. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  2710. "homepage": "https://nette.org",
  2711. "keywords": [
  2712. "array",
  2713. "core",
  2714. "datetime",
  2715. "images",
  2716. "json",
  2717. "nette",
  2718. "paginator",
  2719. "password",
  2720. "slugify",
  2721. "string",
  2722. "unicode",
  2723. "utf-8",
  2724. "utility",
  2725. "validation"
  2726. ],
  2727. "support": {
  2728. "issues": "https://github.com/nette/utils/issues",
  2729. "source": "https://github.com/nette/utils/tree/v4.0.5"
  2730. },
  2731. "time": "2024-08-07T15:39:19+00:00"
  2732. },
  2733. {
  2734. "name": "nikic/php-parser",
  2735. "version": "v5.3.1",
  2736. "source": {
  2737. "type": "git",
  2738. "url": "https://github.com/nikic/PHP-Parser.git",
  2739. "reference": "8eea230464783aa9671db8eea6f8c6ac5285794b"
  2740. },
  2741. "dist": {
  2742. "type": "zip",
  2743. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/8eea230464783aa9671db8eea6f8c6ac5285794b",
  2744. "reference": "8eea230464783aa9671db8eea6f8c6ac5285794b",
  2745. "shasum": ""
  2746. },
  2747. "require": {
  2748. "ext-ctype": "*",
  2749. "ext-json": "*",
  2750. "ext-tokenizer": "*",
  2751. "php": ">=7.4"
  2752. },
  2753. "require-dev": {
  2754. "ircmaxell/php-yacc": "^0.0.7",
  2755. "phpunit/phpunit": "^9.0"
  2756. },
  2757. "bin": [
  2758. "bin/php-parse"
  2759. ],
  2760. "type": "library",
  2761. "extra": {
  2762. "branch-alias": {
  2763. "dev-master": "5.0-dev"
  2764. }
  2765. },
  2766. "autoload": {
  2767. "psr-4": {
  2768. "PhpParser\\": "lib/PhpParser"
  2769. }
  2770. },
  2771. "notification-url": "https://packagist.org/downloads/",
  2772. "license": [
  2773. "BSD-3-Clause"
  2774. ],
  2775. "authors": [
  2776. {
  2777. "name": "Nikita Popov"
  2778. }
  2779. ],
  2780. "description": "A PHP parser written in PHP",
  2781. "keywords": [
  2782. "parser",
  2783. "php"
  2784. ],
  2785. "support": {
  2786. "issues": "https://github.com/nikic/PHP-Parser/issues",
  2787. "source": "https://github.com/nikic/PHP-Parser/tree/v5.3.1"
  2788. },
  2789. "time": "2024-10-08T18:51:32+00:00"
  2790. },
  2791. {
  2792. "name": "nunomaduro/termwind",
  2793. "version": "v2.1.0",
  2794. "source": {
  2795. "type": "git",
  2796. "url": "https://github.com/nunomaduro/termwind.git",
  2797. "reference": "e5f21eade88689536c0cdad4c3cd75f3ed26e01a"
  2798. },
  2799. "dist": {
  2800. "type": "zip",
  2801. "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/e5f21eade88689536c0cdad4c3cd75f3ed26e01a",
  2802. "reference": "e5f21eade88689536c0cdad4c3cd75f3ed26e01a",
  2803. "shasum": ""
  2804. },
  2805. "require": {
  2806. "ext-mbstring": "*",
  2807. "php": "^8.2",
  2808. "symfony/console": "^7.0.4"
  2809. },
  2810. "require-dev": {
  2811. "ergebnis/phpstan-rules": "^2.2.0",
  2812. "illuminate/console": "^11.1.1",
  2813. "laravel/pint": "^1.15.0",
  2814. "mockery/mockery": "^1.6.11",
  2815. "pestphp/pest": "^2.34.6",
  2816. "phpstan/phpstan": "^1.10.66",
  2817. "phpstan/phpstan-strict-rules": "^1.5.2",
  2818. "symfony/var-dumper": "^7.0.4",
  2819. "thecodingmachine/phpstan-strict-rules": "^1.0.0"
  2820. },
  2821. "type": "library",
  2822. "extra": {
  2823. "laravel": {
  2824. "providers": [
  2825. "Termwind\\Laravel\\TermwindServiceProvider"
  2826. ]
  2827. },
  2828. "branch-alias": {
  2829. "dev-2.x": "2.x-dev"
  2830. }
  2831. },
  2832. "autoload": {
  2833. "files": [
  2834. "src/Functions.php"
  2835. ],
  2836. "psr-4": {
  2837. "Termwind\\": "src/"
  2838. }
  2839. },
  2840. "notification-url": "https://packagist.org/downloads/",
  2841. "license": [
  2842. "MIT"
  2843. ],
  2844. "authors": [
  2845. {
  2846. "name": "Nuno Maduro",
  2847. "email": "enunomaduro@gmail.com"
  2848. }
  2849. ],
  2850. "description": "Its like Tailwind CSS, but for the console.",
  2851. "keywords": [
  2852. "cli",
  2853. "console",
  2854. "css",
  2855. "package",
  2856. "php",
  2857. "style"
  2858. ],
  2859. "support": {
  2860. "issues": "https://github.com/nunomaduro/termwind/issues",
  2861. "source": "https://github.com/nunomaduro/termwind/tree/v2.1.0"
  2862. },
  2863. "funding": [
  2864. {
  2865. "url": "https://www.paypal.com/paypalme/enunomaduro",
  2866. "type": "custom"
  2867. },
  2868. {
  2869. "url": "https://github.com/nunomaduro",
  2870. "type": "github"
  2871. },
  2872. {
  2873. "url": "https://github.com/xiCO2k",
  2874. "type": "github"
  2875. }
  2876. ],
  2877. "time": "2024-09-05T15:25:50+00:00"
  2878. },
  2879. {
  2880. "name": "nyholm/psr7",
  2881. "version": "1.8.2",
  2882. "source": {
  2883. "type": "git",
  2884. "url": "https://github.com/Nyholm/psr7.git",
  2885. "reference": "a71f2b11690f4b24d099d6b16690a90ae14fc6f3"
  2886. },
  2887. "dist": {
  2888. "type": "zip",
  2889. "url": "https://api.github.com/repos/Nyholm/psr7/zipball/a71f2b11690f4b24d099d6b16690a90ae14fc6f3",
  2890. "reference": "a71f2b11690f4b24d099d6b16690a90ae14fc6f3",
  2891. "shasum": ""
  2892. },
  2893. "require": {
  2894. "php": ">=7.2",
  2895. "psr/http-factory": "^1.0",
  2896. "psr/http-message": "^1.1 || ^2.0"
  2897. },
  2898. "provide": {
  2899. "php-http/message-factory-implementation": "1.0",
  2900. "psr/http-factory-implementation": "1.0",
  2901. "psr/http-message-implementation": "1.0"
  2902. },
  2903. "require-dev": {
  2904. "http-interop/http-factory-tests": "^0.9",
  2905. "php-http/message-factory": "^1.0",
  2906. "php-http/psr7-integration-tests": "^1.0",
  2907. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.4",
  2908. "symfony/error-handler": "^4.4"
  2909. },
  2910. "type": "library",
  2911. "extra": {
  2912. "branch-alias": {
  2913. "dev-master": "1.8-dev"
  2914. }
  2915. },
  2916. "autoload": {
  2917. "psr-4": {
  2918. "Nyholm\\Psr7\\": "src/"
  2919. }
  2920. },
  2921. "notification-url": "https://packagist.org/downloads/",
  2922. "license": [
  2923. "MIT"
  2924. ],
  2925. "authors": [
  2926. {
  2927. "name": "Tobias Nyholm",
  2928. "email": "tobias.nyholm@gmail.com"
  2929. },
  2930. {
  2931. "name": "Martijn van der Ven",
  2932. "email": "martijn@vanderven.se"
  2933. }
  2934. ],
  2935. "description": "A fast PHP7 implementation of PSR-7",
  2936. "homepage": "https://tnyholm.se",
  2937. "keywords": [
  2938. "psr-17",
  2939. "psr-7"
  2940. ],
  2941. "support": {
  2942. "issues": "https://github.com/Nyholm/psr7/issues",
  2943. "source": "https://github.com/Nyholm/psr7/tree/1.8.2"
  2944. },
  2945. "funding": [
  2946. {
  2947. "url": "https://github.com/Zegnat",
  2948. "type": "github"
  2949. },
  2950. {
  2951. "url": "https://github.com/nyholm",
  2952. "type": "github"
  2953. }
  2954. ],
  2955. "time": "2024-09-09T07:06:30+00:00"
  2956. },
  2957. {
  2958. "name": "nyholm/psr7-server",
  2959. "version": "1.1.0",
  2960. "source": {
  2961. "type": "git",
  2962. "url": "https://github.com/Nyholm/psr7-server.git",
  2963. "reference": "4335801d851f554ca43fa6e7d2602141538854dc"
  2964. },
  2965. "dist": {
  2966. "type": "zip",
  2967. "url": "https://api.github.com/repos/Nyholm/psr7-server/zipball/4335801d851f554ca43fa6e7d2602141538854dc",
  2968. "reference": "4335801d851f554ca43fa6e7d2602141538854dc",
  2969. "shasum": ""
  2970. },
  2971. "require": {
  2972. "php": "^7.1 || ^8.0",
  2973. "psr/http-factory": "^1.0",
  2974. "psr/http-message": "^1.0 || ^2.0"
  2975. },
  2976. "require-dev": {
  2977. "nyholm/nsa": "^1.1",
  2978. "nyholm/psr7": "^1.3",
  2979. "phpunit/phpunit": "^7.0 || ^8.5 || ^9.3"
  2980. },
  2981. "type": "library",
  2982. "autoload": {
  2983. "psr-4": {
  2984. "Nyholm\\Psr7Server\\": "src/"
  2985. }
  2986. },
  2987. "notification-url": "https://packagist.org/downloads/",
  2988. "license": [
  2989. "MIT"
  2990. ],
  2991. "authors": [
  2992. {
  2993. "name": "Tobias Nyholm",
  2994. "email": "tobias.nyholm@gmail.com"
  2995. },
  2996. {
  2997. "name": "Martijn van der Ven",
  2998. "email": "martijn@vanderven.se"
  2999. }
  3000. ],
  3001. "description": "Helper classes to handle PSR-7 server requests",
  3002. "homepage": "http://tnyholm.se",
  3003. "keywords": [
  3004. "psr-17",
  3005. "psr-7"
  3006. ],
  3007. "support": {
  3008. "issues": "https://github.com/Nyholm/psr7-server/issues",
  3009. "source": "https://github.com/Nyholm/psr7-server/tree/1.1.0"
  3010. },
  3011. "funding": [
  3012. {
  3013. "url": "https://github.com/Zegnat",
  3014. "type": "github"
  3015. },
  3016. {
  3017. "url": "https://github.com/nyholm",
  3018. "type": "github"
  3019. }
  3020. ],
  3021. "time": "2023-11-08T09:30:43+00:00"
  3022. },
  3023. {
  3024. "name": "overtrue/laravel-wechat",
  3025. "version": "7.3.0",
  3026. "source": {
  3027. "type": "git",
  3028. "url": "https://github.com/overtrue/laravel-wechat.git",
  3029. "reference": "b3e89dddc45da4eb3d5322a10dee9dc65e619579"
  3030. },
  3031. "dist": {
  3032. "type": "zip",
  3033. "url": "https://api.github.com/repos/overtrue/laravel-wechat/zipball/b3e89dddc45da4eb3d5322a10dee9dc65e619579",
  3034. "reference": "b3e89dddc45da4eb3d5322a10dee9dc65e619579",
  3035. "shasum": ""
  3036. },
  3037. "require": {
  3038. "illuminate/container": "^9.0|^10.0|^11.0",
  3039. "w7corp/easywechat": "^6.0.0"
  3040. },
  3041. "require-dev": {
  3042. "brainmaestro/composer-git-hooks": "dev-master",
  3043. "jetbrains/phpstorm-attributes": "^1.0",
  3044. "laravel/framework": "^10.0",
  3045. "laravel/pint": "^1.5"
  3046. },
  3047. "type": "library",
  3048. "extra": {
  3049. "laravel": {
  3050. "providers": [
  3051. "Overtrue\\LaravelWeChat\\ServiceProvider"
  3052. ]
  3053. },
  3054. "hooks": {
  3055. "pre-commit": [
  3056. "composer check-style"
  3057. ],
  3058. "pre-push": [
  3059. "composer check-style"
  3060. ]
  3061. }
  3062. },
  3063. "autoload": {
  3064. "psr-4": {
  3065. "Overtrue\\LaravelWeChat\\": "src/"
  3066. }
  3067. },
  3068. "notification-url": "https://packagist.org/downloads/",
  3069. "license": [
  3070. "MIT"
  3071. ],
  3072. "authors": [
  3073. {
  3074. "name": "overtrue",
  3075. "email": "anzhengchao@gmail.com"
  3076. }
  3077. ],
  3078. "description": "微信 SDK for Laravel",
  3079. "keywords": [
  3080. "laravel",
  3081. "sdk",
  3082. "wechat",
  3083. "weixin"
  3084. ],
  3085. "support": {
  3086. "issues": "https://github.com/overtrue/laravel-wechat/issues",
  3087. "source": "https://github.com/overtrue/laravel-wechat/tree/7.3.0"
  3088. },
  3089. "funding": [
  3090. {
  3091. "url": "https://github.com/overtrue",
  3092. "type": "github"
  3093. }
  3094. ],
  3095. "time": "2024-03-13T02:06:36+00:00"
  3096. },
  3097. {
  3098. "name": "overtrue/socialite",
  3099. "version": "4.11.2",
  3100. "source": {
  3101. "type": "git",
  3102. "url": "https://github.com/overtrue/socialite.git",
  3103. "reference": "83dd537a88b30cd9204ee2c46a5b2e181bc1fa66"
  3104. },
  3105. "dist": {
  3106. "type": "zip",
  3107. "url": "https://api.github.com/repos/overtrue/socialite/zipball/83dd537a88b30cd9204ee2c46a5b2e181bc1fa66",
  3108. "reference": "83dd537a88b30cd9204ee2c46a5b2e181bc1fa66",
  3109. "shasum": ""
  3110. },
  3111. "require": {
  3112. "ext-json": "*",
  3113. "ext-openssl": "*",
  3114. "guzzlehttp/guzzle": "^7.0",
  3115. "php": ">=8.0.2"
  3116. },
  3117. "require-dev": {
  3118. "jetbrains/phpstorm-attributes": "^1.0",
  3119. "laravel/pint": "^1.2",
  3120. "mockery/mockery": "^1.3",
  3121. "phpstan/phpstan": "^1.7",
  3122. "phpunit/phpunit": "^11.3"
  3123. },
  3124. "type": "library",
  3125. "autoload": {
  3126. "files": [
  3127. "src/Contracts/FactoryInterface.php",
  3128. "src/Contracts/UserInterface.php",
  3129. "src/Contracts/ProviderInterface.php"
  3130. ],
  3131. "psr-4": {
  3132. "Overtrue\\Socialite\\": "src/"
  3133. }
  3134. },
  3135. "notification-url": "https://packagist.org/downloads/",
  3136. "license": [
  3137. "MIT"
  3138. ],
  3139. "authors": [
  3140. {
  3141. "name": "overtrue",
  3142. "email": "anzhengchao@gmail.com"
  3143. }
  3144. ],
  3145. "description": "A collection of OAuth 2 packages.",
  3146. "keywords": [
  3147. "Feishu",
  3148. "login",
  3149. "oauth",
  3150. "qcloud",
  3151. "qq",
  3152. "social",
  3153. "wechat",
  3154. "weibo"
  3155. ],
  3156. "support": {
  3157. "issues": "https://github.com/overtrue/socialite/issues",
  3158. "source": "https://github.com/overtrue/socialite/tree/4.11.2"
  3159. },
  3160. "funding": [
  3161. {
  3162. "url": "https://github.com/overtrue",
  3163. "type": "github"
  3164. }
  3165. ],
  3166. "time": "2024-10-08T16:23:14+00:00"
  3167. },
  3168. {
  3169. "name": "phpoption/phpoption",
  3170. "version": "1.9.3",
  3171. "source": {
  3172. "type": "git",
  3173. "url": "https://github.com/schmittjoh/php-option.git",
  3174. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  3175. },
  3176. "dist": {
  3177. "type": "zip",
  3178. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  3179. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  3180. "shasum": ""
  3181. },
  3182. "require": {
  3183. "php": "^7.2.5 || ^8.0"
  3184. },
  3185. "require-dev": {
  3186. "bamarni/composer-bin-plugin": "^1.8.2",
  3187. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  3188. },
  3189. "type": "library",
  3190. "extra": {
  3191. "bamarni-bin": {
  3192. "bin-links": true,
  3193. "forward-command": false
  3194. },
  3195. "branch-alias": {
  3196. "dev-master": "1.9-dev"
  3197. }
  3198. },
  3199. "autoload": {
  3200. "psr-4": {
  3201. "PhpOption\\": "src/PhpOption/"
  3202. }
  3203. },
  3204. "notification-url": "https://packagist.org/downloads/",
  3205. "license": [
  3206. "Apache-2.0"
  3207. ],
  3208. "authors": [
  3209. {
  3210. "name": "Johannes M. Schmitt",
  3211. "email": "schmittjoh@gmail.com",
  3212. "homepage": "https://github.com/schmittjoh"
  3213. },
  3214. {
  3215. "name": "Graham Campbell",
  3216. "email": "hello@gjcampbell.co.uk",
  3217. "homepage": "https://github.com/GrahamCampbell"
  3218. }
  3219. ],
  3220. "description": "Option Type for PHP",
  3221. "keywords": [
  3222. "language",
  3223. "option",
  3224. "php",
  3225. "type"
  3226. ],
  3227. "support": {
  3228. "issues": "https://github.com/schmittjoh/php-option/issues",
  3229. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  3230. },
  3231. "funding": [
  3232. {
  3233. "url": "https://github.com/GrahamCampbell",
  3234. "type": "github"
  3235. },
  3236. {
  3237. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3238. "type": "tidelift"
  3239. }
  3240. ],
  3241. "time": "2024-07-20T21:41:07+00:00"
  3242. },
  3243. {
  3244. "name": "psr/cache",
  3245. "version": "3.0.0",
  3246. "source": {
  3247. "type": "git",
  3248. "url": "https://github.com/php-fig/cache.git",
  3249. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  3250. },
  3251. "dist": {
  3252. "type": "zip",
  3253. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  3254. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  3255. "shasum": ""
  3256. },
  3257. "require": {
  3258. "php": ">=8.0.0"
  3259. },
  3260. "type": "library",
  3261. "extra": {
  3262. "branch-alias": {
  3263. "dev-master": "1.0.x-dev"
  3264. }
  3265. },
  3266. "autoload": {
  3267. "psr-4": {
  3268. "Psr\\Cache\\": "src/"
  3269. }
  3270. },
  3271. "notification-url": "https://packagist.org/downloads/",
  3272. "license": [
  3273. "MIT"
  3274. ],
  3275. "authors": [
  3276. {
  3277. "name": "PHP-FIG",
  3278. "homepage": "https://www.php-fig.org/"
  3279. }
  3280. ],
  3281. "description": "Common interface for caching libraries",
  3282. "keywords": [
  3283. "cache",
  3284. "psr",
  3285. "psr-6"
  3286. ],
  3287. "support": {
  3288. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  3289. },
  3290. "time": "2021-02-03T23:26:27+00:00"
  3291. },
  3292. {
  3293. "name": "psr/clock",
  3294. "version": "1.0.0",
  3295. "source": {
  3296. "type": "git",
  3297. "url": "https://github.com/php-fig/clock.git",
  3298. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  3299. },
  3300. "dist": {
  3301. "type": "zip",
  3302. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  3303. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  3304. "shasum": ""
  3305. },
  3306. "require": {
  3307. "php": "^7.0 || ^8.0"
  3308. },
  3309. "type": "library",
  3310. "autoload": {
  3311. "psr-4": {
  3312. "Psr\\Clock\\": "src/"
  3313. }
  3314. },
  3315. "notification-url": "https://packagist.org/downloads/",
  3316. "license": [
  3317. "MIT"
  3318. ],
  3319. "authors": [
  3320. {
  3321. "name": "PHP-FIG",
  3322. "homepage": "https://www.php-fig.org/"
  3323. }
  3324. ],
  3325. "description": "Common interface for reading the clock.",
  3326. "homepage": "https://github.com/php-fig/clock",
  3327. "keywords": [
  3328. "clock",
  3329. "now",
  3330. "psr",
  3331. "psr-20",
  3332. "time"
  3333. ],
  3334. "support": {
  3335. "issues": "https://github.com/php-fig/clock/issues",
  3336. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  3337. },
  3338. "time": "2022-11-25T14:36:26+00:00"
  3339. },
  3340. {
  3341. "name": "psr/container",
  3342. "version": "2.0.2",
  3343. "source": {
  3344. "type": "git",
  3345. "url": "https://github.com/php-fig/container.git",
  3346. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  3347. },
  3348. "dist": {
  3349. "type": "zip",
  3350. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  3351. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  3352. "shasum": ""
  3353. },
  3354. "require": {
  3355. "php": ">=7.4.0"
  3356. },
  3357. "type": "library",
  3358. "extra": {
  3359. "branch-alias": {
  3360. "dev-master": "2.0.x-dev"
  3361. }
  3362. },
  3363. "autoload": {
  3364. "psr-4": {
  3365. "Psr\\Container\\": "src/"
  3366. }
  3367. },
  3368. "notification-url": "https://packagist.org/downloads/",
  3369. "license": [
  3370. "MIT"
  3371. ],
  3372. "authors": [
  3373. {
  3374. "name": "PHP-FIG",
  3375. "homepage": "https://www.php-fig.org/"
  3376. }
  3377. ],
  3378. "description": "Common Container Interface (PHP FIG PSR-11)",
  3379. "homepage": "https://github.com/php-fig/container",
  3380. "keywords": [
  3381. "PSR-11",
  3382. "container",
  3383. "container-interface",
  3384. "container-interop",
  3385. "psr"
  3386. ],
  3387. "support": {
  3388. "issues": "https://github.com/php-fig/container/issues",
  3389. "source": "https://github.com/php-fig/container/tree/2.0.2"
  3390. },
  3391. "time": "2021-11-05T16:47:00+00:00"
  3392. },
  3393. {
  3394. "name": "psr/event-dispatcher",
  3395. "version": "1.0.0",
  3396. "source": {
  3397. "type": "git",
  3398. "url": "https://github.com/php-fig/event-dispatcher.git",
  3399. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  3400. },
  3401. "dist": {
  3402. "type": "zip",
  3403. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3404. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3405. "shasum": ""
  3406. },
  3407. "require": {
  3408. "php": ">=7.2.0"
  3409. },
  3410. "type": "library",
  3411. "extra": {
  3412. "branch-alias": {
  3413. "dev-master": "1.0.x-dev"
  3414. }
  3415. },
  3416. "autoload": {
  3417. "psr-4": {
  3418. "Psr\\EventDispatcher\\": "src/"
  3419. }
  3420. },
  3421. "notification-url": "https://packagist.org/downloads/",
  3422. "license": [
  3423. "MIT"
  3424. ],
  3425. "authors": [
  3426. {
  3427. "name": "PHP-FIG",
  3428. "homepage": "http://www.php-fig.org/"
  3429. }
  3430. ],
  3431. "description": "Standard interfaces for event handling.",
  3432. "keywords": [
  3433. "events",
  3434. "psr",
  3435. "psr-14"
  3436. ],
  3437. "support": {
  3438. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  3439. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  3440. },
  3441. "time": "2019-01-08T18:20:26+00:00"
  3442. },
  3443. {
  3444. "name": "psr/http-client",
  3445. "version": "1.0.3",
  3446. "source": {
  3447. "type": "git",
  3448. "url": "https://github.com/php-fig/http-client.git",
  3449. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  3450. },
  3451. "dist": {
  3452. "type": "zip",
  3453. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  3454. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  3455. "shasum": ""
  3456. },
  3457. "require": {
  3458. "php": "^7.0 || ^8.0",
  3459. "psr/http-message": "^1.0 || ^2.0"
  3460. },
  3461. "type": "library",
  3462. "extra": {
  3463. "branch-alias": {
  3464. "dev-master": "1.0.x-dev"
  3465. }
  3466. },
  3467. "autoload": {
  3468. "psr-4": {
  3469. "Psr\\Http\\Client\\": "src/"
  3470. }
  3471. },
  3472. "notification-url": "https://packagist.org/downloads/",
  3473. "license": [
  3474. "MIT"
  3475. ],
  3476. "authors": [
  3477. {
  3478. "name": "PHP-FIG",
  3479. "homepage": "https://www.php-fig.org/"
  3480. }
  3481. ],
  3482. "description": "Common interface for HTTP clients",
  3483. "homepage": "https://github.com/php-fig/http-client",
  3484. "keywords": [
  3485. "http",
  3486. "http-client",
  3487. "psr",
  3488. "psr-18"
  3489. ],
  3490. "support": {
  3491. "source": "https://github.com/php-fig/http-client"
  3492. },
  3493. "time": "2023-09-23T14:17:50+00:00"
  3494. },
  3495. {
  3496. "name": "psr/http-factory",
  3497. "version": "1.1.0",
  3498. "source": {
  3499. "type": "git",
  3500. "url": "https://github.com/php-fig/http-factory.git",
  3501. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  3502. },
  3503. "dist": {
  3504. "type": "zip",
  3505. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  3506. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  3507. "shasum": ""
  3508. },
  3509. "require": {
  3510. "php": ">=7.1",
  3511. "psr/http-message": "^1.0 || ^2.0"
  3512. },
  3513. "type": "library",
  3514. "extra": {
  3515. "branch-alias": {
  3516. "dev-master": "1.0.x-dev"
  3517. }
  3518. },
  3519. "autoload": {
  3520. "psr-4": {
  3521. "Psr\\Http\\Message\\": "src/"
  3522. }
  3523. },
  3524. "notification-url": "https://packagist.org/downloads/",
  3525. "license": [
  3526. "MIT"
  3527. ],
  3528. "authors": [
  3529. {
  3530. "name": "PHP-FIG",
  3531. "homepage": "https://www.php-fig.org/"
  3532. }
  3533. ],
  3534. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  3535. "keywords": [
  3536. "factory",
  3537. "http",
  3538. "message",
  3539. "psr",
  3540. "psr-17",
  3541. "psr-7",
  3542. "request",
  3543. "response"
  3544. ],
  3545. "support": {
  3546. "source": "https://github.com/php-fig/http-factory"
  3547. },
  3548. "time": "2024-04-15T12:06:14+00:00"
  3549. },
  3550. {
  3551. "name": "psr/http-message",
  3552. "version": "2.0",
  3553. "source": {
  3554. "type": "git",
  3555. "url": "https://github.com/php-fig/http-message.git",
  3556. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  3557. },
  3558. "dist": {
  3559. "type": "zip",
  3560. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  3561. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  3562. "shasum": ""
  3563. },
  3564. "require": {
  3565. "php": "^7.2 || ^8.0"
  3566. },
  3567. "type": "library",
  3568. "extra": {
  3569. "branch-alias": {
  3570. "dev-master": "2.0.x-dev"
  3571. }
  3572. },
  3573. "autoload": {
  3574. "psr-4": {
  3575. "Psr\\Http\\Message\\": "src/"
  3576. }
  3577. },
  3578. "notification-url": "https://packagist.org/downloads/",
  3579. "license": [
  3580. "MIT"
  3581. ],
  3582. "authors": [
  3583. {
  3584. "name": "PHP-FIG",
  3585. "homepage": "https://www.php-fig.org/"
  3586. }
  3587. ],
  3588. "description": "Common interface for HTTP messages",
  3589. "homepage": "https://github.com/php-fig/http-message",
  3590. "keywords": [
  3591. "http",
  3592. "http-message",
  3593. "psr",
  3594. "psr-7",
  3595. "request",
  3596. "response"
  3597. ],
  3598. "support": {
  3599. "source": "https://github.com/php-fig/http-message/tree/2.0"
  3600. },
  3601. "time": "2023-04-04T09:54:51+00:00"
  3602. },
  3603. {
  3604. "name": "psr/log",
  3605. "version": "3.0.2",
  3606. "source": {
  3607. "type": "git",
  3608. "url": "https://github.com/php-fig/log.git",
  3609. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  3610. },
  3611. "dist": {
  3612. "type": "zip",
  3613. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  3614. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  3615. "shasum": ""
  3616. },
  3617. "require": {
  3618. "php": ">=8.0.0"
  3619. },
  3620. "type": "library",
  3621. "extra": {
  3622. "branch-alias": {
  3623. "dev-master": "3.x-dev"
  3624. }
  3625. },
  3626. "autoload": {
  3627. "psr-4": {
  3628. "Psr\\Log\\": "src"
  3629. }
  3630. },
  3631. "notification-url": "https://packagist.org/downloads/",
  3632. "license": [
  3633. "MIT"
  3634. ],
  3635. "authors": [
  3636. {
  3637. "name": "PHP-FIG",
  3638. "homepage": "https://www.php-fig.org/"
  3639. }
  3640. ],
  3641. "description": "Common interface for logging libraries",
  3642. "homepage": "https://github.com/php-fig/log",
  3643. "keywords": [
  3644. "log",
  3645. "psr",
  3646. "psr-3"
  3647. ],
  3648. "support": {
  3649. "source": "https://github.com/php-fig/log/tree/3.0.2"
  3650. },
  3651. "time": "2024-09-11T13:17:53+00:00"
  3652. },
  3653. {
  3654. "name": "psr/simple-cache",
  3655. "version": "3.0.0",
  3656. "source": {
  3657. "type": "git",
  3658. "url": "https://github.com/php-fig/simple-cache.git",
  3659. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  3660. },
  3661. "dist": {
  3662. "type": "zip",
  3663. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  3664. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  3665. "shasum": ""
  3666. },
  3667. "require": {
  3668. "php": ">=8.0.0"
  3669. },
  3670. "type": "library",
  3671. "extra": {
  3672. "branch-alias": {
  3673. "dev-master": "3.0.x-dev"
  3674. }
  3675. },
  3676. "autoload": {
  3677. "psr-4": {
  3678. "Psr\\SimpleCache\\": "src/"
  3679. }
  3680. },
  3681. "notification-url": "https://packagist.org/downloads/",
  3682. "license": [
  3683. "MIT"
  3684. ],
  3685. "authors": [
  3686. {
  3687. "name": "PHP-FIG",
  3688. "homepage": "https://www.php-fig.org/"
  3689. }
  3690. ],
  3691. "description": "Common interfaces for simple caching",
  3692. "keywords": [
  3693. "cache",
  3694. "caching",
  3695. "psr",
  3696. "psr-16",
  3697. "simple-cache"
  3698. ],
  3699. "support": {
  3700. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  3701. },
  3702. "time": "2021-10-29T13:26:27+00:00"
  3703. },
  3704. {
  3705. "name": "psy/psysh",
  3706. "version": "v0.12.4",
  3707. "source": {
  3708. "type": "git",
  3709. "url": "https://github.com/bobthecow/psysh.git",
  3710. "reference": "2fd717afa05341b4f8152547f142cd2f130f6818"
  3711. },
  3712. "dist": {
  3713. "type": "zip",
  3714. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/2fd717afa05341b4f8152547f142cd2f130f6818",
  3715. "reference": "2fd717afa05341b4f8152547f142cd2f130f6818",
  3716. "shasum": ""
  3717. },
  3718. "require": {
  3719. "ext-json": "*",
  3720. "ext-tokenizer": "*",
  3721. "nikic/php-parser": "^5.0 || ^4.0",
  3722. "php": "^8.0 || ^7.4",
  3723. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  3724. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  3725. },
  3726. "conflict": {
  3727. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  3728. },
  3729. "require-dev": {
  3730. "bamarni/composer-bin-plugin": "^1.2"
  3731. },
  3732. "suggest": {
  3733. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  3734. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  3735. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  3736. },
  3737. "bin": [
  3738. "bin/psysh"
  3739. ],
  3740. "type": "library",
  3741. "extra": {
  3742. "branch-alias": {
  3743. "dev-main": "0.12.x-dev"
  3744. },
  3745. "bamarni-bin": {
  3746. "bin-links": false,
  3747. "forward-command": false
  3748. }
  3749. },
  3750. "autoload": {
  3751. "files": [
  3752. "src/functions.php"
  3753. ],
  3754. "psr-4": {
  3755. "Psy\\": "src/"
  3756. }
  3757. },
  3758. "notification-url": "https://packagist.org/downloads/",
  3759. "license": [
  3760. "MIT"
  3761. ],
  3762. "authors": [
  3763. {
  3764. "name": "Justin Hileman",
  3765. "email": "justin@justinhileman.info",
  3766. "homepage": "http://justinhileman.com"
  3767. }
  3768. ],
  3769. "description": "An interactive shell for modern PHP.",
  3770. "homepage": "http://psysh.org",
  3771. "keywords": [
  3772. "REPL",
  3773. "console",
  3774. "interactive",
  3775. "shell"
  3776. ],
  3777. "support": {
  3778. "issues": "https://github.com/bobthecow/psysh/issues",
  3779. "source": "https://github.com/bobthecow/psysh/tree/v0.12.4"
  3780. },
  3781. "time": "2024-06-10T01:18:23+00:00"
  3782. },
  3783. {
  3784. "name": "ralouphie/getallheaders",
  3785. "version": "3.0.3",
  3786. "source": {
  3787. "type": "git",
  3788. "url": "https://github.com/ralouphie/getallheaders.git",
  3789. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  3790. },
  3791. "dist": {
  3792. "type": "zip",
  3793. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  3794. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  3795. "shasum": ""
  3796. },
  3797. "require": {
  3798. "php": ">=5.6"
  3799. },
  3800. "require-dev": {
  3801. "php-coveralls/php-coveralls": "^2.1",
  3802. "phpunit/phpunit": "^5 || ^6.5"
  3803. },
  3804. "type": "library",
  3805. "autoload": {
  3806. "files": [
  3807. "src/getallheaders.php"
  3808. ]
  3809. },
  3810. "notification-url": "https://packagist.org/downloads/",
  3811. "license": [
  3812. "MIT"
  3813. ],
  3814. "authors": [
  3815. {
  3816. "name": "Ralph Khattar",
  3817. "email": "ralph.khattar@gmail.com"
  3818. }
  3819. ],
  3820. "description": "A polyfill for getallheaders.",
  3821. "support": {
  3822. "issues": "https://github.com/ralouphie/getallheaders/issues",
  3823. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  3824. },
  3825. "time": "2019-03-08T08:55:37+00:00"
  3826. },
  3827. {
  3828. "name": "ramsey/collection",
  3829. "version": "2.0.0",
  3830. "source": {
  3831. "type": "git",
  3832. "url": "https://github.com/ramsey/collection.git",
  3833. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5"
  3834. },
  3835. "dist": {
  3836. "type": "zip",
  3837. "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  3838. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  3839. "shasum": ""
  3840. },
  3841. "require": {
  3842. "php": "^8.1"
  3843. },
  3844. "require-dev": {
  3845. "captainhook/plugin-composer": "^5.3",
  3846. "ergebnis/composer-normalize": "^2.28.3",
  3847. "fakerphp/faker": "^1.21",
  3848. "hamcrest/hamcrest-php": "^2.0",
  3849. "jangregor/phpstan-prophecy": "^1.0",
  3850. "mockery/mockery": "^1.5",
  3851. "php-parallel-lint/php-console-highlighter": "^1.0",
  3852. "php-parallel-lint/php-parallel-lint": "^1.3",
  3853. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  3854. "phpspec/prophecy-phpunit": "^2.0",
  3855. "phpstan/extension-installer": "^1.2",
  3856. "phpstan/phpstan": "^1.9",
  3857. "phpstan/phpstan-mockery": "^1.1",
  3858. "phpstan/phpstan-phpunit": "^1.3",
  3859. "phpunit/phpunit": "^9.5",
  3860. "psalm/plugin-mockery": "^1.1",
  3861. "psalm/plugin-phpunit": "^0.18.4",
  3862. "ramsey/coding-standard": "^2.0.3",
  3863. "ramsey/conventional-commits": "^1.3",
  3864. "vimeo/psalm": "^5.4"
  3865. },
  3866. "type": "library",
  3867. "extra": {
  3868. "captainhook": {
  3869. "force-install": true
  3870. },
  3871. "ramsey/conventional-commits": {
  3872. "configFile": "conventional-commits.json"
  3873. }
  3874. },
  3875. "autoload": {
  3876. "psr-4": {
  3877. "Ramsey\\Collection\\": "src/"
  3878. }
  3879. },
  3880. "notification-url": "https://packagist.org/downloads/",
  3881. "license": [
  3882. "MIT"
  3883. ],
  3884. "authors": [
  3885. {
  3886. "name": "Ben Ramsey",
  3887. "email": "ben@benramsey.com",
  3888. "homepage": "https://benramsey.com"
  3889. }
  3890. ],
  3891. "description": "A PHP library for representing and manipulating collections.",
  3892. "keywords": [
  3893. "array",
  3894. "collection",
  3895. "hash",
  3896. "map",
  3897. "queue",
  3898. "set"
  3899. ],
  3900. "support": {
  3901. "issues": "https://github.com/ramsey/collection/issues",
  3902. "source": "https://github.com/ramsey/collection/tree/2.0.0"
  3903. },
  3904. "funding": [
  3905. {
  3906. "url": "https://github.com/ramsey",
  3907. "type": "github"
  3908. },
  3909. {
  3910. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  3911. "type": "tidelift"
  3912. }
  3913. ],
  3914. "time": "2022-12-31T21:50:55+00:00"
  3915. },
  3916. {
  3917. "name": "ramsey/uuid",
  3918. "version": "4.7.6",
  3919. "source": {
  3920. "type": "git",
  3921. "url": "https://github.com/ramsey/uuid.git",
  3922. "reference": "91039bc1faa45ba123c4328958e620d382ec7088"
  3923. },
  3924. "dist": {
  3925. "type": "zip",
  3926. "url": "https://api.github.com/repos/ramsey/uuid/zipball/91039bc1faa45ba123c4328958e620d382ec7088",
  3927. "reference": "91039bc1faa45ba123c4328958e620d382ec7088",
  3928. "shasum": ""
  3929. },
  3930. "require": {
  3931. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12",
  3932. "ext-json": "*",
  3933. "php": "^8.0",
  3934. "ramsey/collection": "^1.2 || ^2.0"
  3935. },
  3936. "replace": {
  3937. "rhumsaa/uuid": "self.version"
  3938. },
  3939. "require-dev": {
  3940. "captainhook/captainhook": "^5.10",
  3941. "captainhook/plugin-composer": "^5.3",
  3942. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  3943. "doctrine/annotations": "^1.8",
  3944. "ergebnis/composer-normalize": "^2.15",
  3945. "mockery/mockery": "^1.3",
  3946. "paragonie/random-lib": "^2",
  3947. "php-mock/php-mock": "^2.2",
  3948. "php-mock/php-mock-mockery": "^1.3",
  3949. "php-parallel-lint/php-parallel-lint": "^1.1",
  3950. "phpbench/phpbench": "^1.0",
  3951. "phpstan/extension-installer": "^1.1",
  3952. "phpstan/phpstan": "^1.8",
  3953. "phpstan/phpstan-mockery": "^1.1",
  3954. "phpstan/phpstan-phpunit": "^1.1",
  3955. "phpunit/phpunit": "^8.5 || ^9",
  3956. "ramsey/composer-repl": "^1.4",
  3957. "slevomat/coding-standard": "^8.4",
  3958. "squizlabs/php_codesniffer": "^3.5",
  3959. "vimeo/psalm": "^4.9"
  3960. },
  3961. "suggest": {
  3962. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  3963. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  3964. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  3965. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  3966. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  3967. },
  3968. "type": "library",
  3969. "extra": {
  3970. "captainhook": {
  3971. "force-install": true
  3972. }
  3973. },
  3974. "autoload": {
  3975. "files": [
  3976. "src/functions.php"
  3977. ],
  3978. "psr-4": {
  3979. "Ramsey\\Uuid\\": "src/"
  3980. }
  3981. },
  3982. "notification-url": "https://packagist.org/downloads/",
  3983. "license": [
  3984. "MIT"
  3985. ],
  3986. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  3987. "keywords": [
  3988. "guid",
  3989. "identifier",
  3990. "uuid"
  3991. ],
  3992. "support": {
  3993. "issues": "https://github.com/ramsey/uuid/issues",
  3994. "source": "https://github.com/ramsey/uuid/tree/4.7.6"
  3995. },
  3996. "funding": [
  3997. {
  3998. "url": "https://github.com/ramsey",
  3999. "type": "github"
  4000. },
  4001. {
  4002. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  4003. "type": "tidelift"
  4004. }
  4005. ],
  4006. "time": "2024-04-27T21:32:50+00:00"
  4007. },
  4008. {
  4009. "name": "simplesoftwareio/simple-qrcode",
  4010. "version": "4.2.0",
  4011. "source": {
  4012. "type": "git",
  4013. "url": "https://github.com/SimpleSoftwareIO/simple-qrcode.git",
  4014. "reference": "916db7948ca6772d54bb617259c768c9cdc8d537"
  4015. },
  4016. "dist": {
  4017. "type": "zip",
  4018. "url": "https://api.github.com/repos/SimpleSoftwareIO/simple-qrcode/zipball/916db7948ca6772d54bb617259c768c9cdc8d537",
  4019. "reference": "916db7948ca6772d54bb617259c768c9cdc8d537",
  4020. "shasum": ""
  4021. },
  4022. "require": {
  4023. "bacon/bacon-qr-code": "^2.0",
  4024. "ext-gd": "*",
  4025. "php": ">=7.2|^8.0"
  4026. },
  4027. "require-dev": {
  4028. "mockery/mockery": "~1",
  4029. "phpunit/phpunit": "~9"
  4030. },
  4031. "suggest": {
  4032. "ext-imagick": "Allows the generation of PNG QrCodes.",
  4033. "illuminate/support": "Allows for use within Laravel."
  4034. },
  4035. "type": "library",
  4036. "extra": {
  4037. "laravel": {
  4038. "providers": [
  4039. "SimpleSoftwareIO\\QrCode\\QrCodeServiceProvider"
  4040. ],
  4041. "aliases": {
  4042. "QrCode": "SimpleSoftwareIO\\QrCode\\Facades\\QrCode"
  4043. }
  4044. }
  4045. },
  4046. "autoload": {
  4047. "psr-4": {
  4048. "SimpleSoftwareIO\\QrCode\\": "src"
  4049. }
  4050. },
  4051. "notification-url": "https://packagist.org/downloads/",
  4052. "license": [
  4053. "MIT"
  4054. ],
  4055. "authors": [
  4056. {
  4057. "name": "Simple Software LLC",
  4058. "email": "support@simplesoftware.io"
  4059. }
  4060. ],
  4061. "description": "Simple QrCode is a QR code generator made for Laravel.",
  4062. "homepage": "https://www.simplesoftware.io/#/docs/simple-qrcode",
  4063. "keywords": [
  4064. "Simple",
  4065. "generator",
  4066. "laravel",
  4067. "qrcode",
  4068. "wrapper"
  4069. ],
  4070. "support": {
  4071. "issues": "https://github.com/SimpleSoftwareIO/simple-qrcode/issues",
  4072. "source": "https://github.com/SimpleSoftwareIO/simple-qrcode/tree/4.2.0"
  4073. },
  4074. "time": "2021-02-08T20:43:55+00:00"
  4075. },
  4076. {
  4077. "name": "spatie/laravel-permission",
  4078. "version": "6.9.0",
  4079. "source": {
  4080. "type": "git",
  4081. "url": "https://github.com/spatie/laravel-permission.git",
  4082. "reference": "fe973a58b44380d0e8620107259b7bda22f70408"
  4083. },
  4084. "dist": {
  4085. "type": "zip",
  4086. "url": "https://api.github.com/repos/spatie/laravel-permission/zipball/fe973a58b44380d0e8620107259b7bda22f70408",
  4087. "reference": "fe973a58b44380d0e8620107259b7bda22f70408",
  4088. "shasum": ""
  4089. },
  4090. "require": {
  4091. "illuminate/auth": "^8.12|^9.0|^10.0|^11.0",
  4092. "illuminate/container": "^8.12|^9.0|^10.0|^11.0",
  4093. "illuminate/contracts": "^8.12|^9.0|^10.0|^11.0",
  4094. "illuminate/database": "^8.12|^9.0|^10.0|^11.0",
  4095. "php": "^8.0"
  4096. },
  4097. "require-dev": {
  4098. "laravel/passport": "^11.0|^12.0",
  4099. "orchestra/testbench": "^6.23|^7.0|^8.0|^9.0",
  4100. "phpunit/phpunit": "^9.4|^10.1"
  4101. },
  4102. "type": "library",
  4103. "extra": {
  4104. "branch-alias": {
  4105. "dev-main": "6.x-dev",
  4106. "dev-master": "6.x-dev"
  4107. },
  4108. "laravel": {
  4109. "providers": [
  4110. "Spatie\\Permission\\PermissionServiceProvider"
  4111. ]
  4112. }
  4113. },
  4114. "autoload": {
  4115. "files": [
  4116. "src/helpers.php"
  4117. ],
  4118. "psr-4": {
  4119. "Spatie\\Permission\\": "src"
  4120. }
  4121. },
  4122. "notification-url": "https://packagist.org/downloads/",
  4123. "license": [
  4124. "MIT"
  4125. ],
  4126. "authors": [
  4127. {
  4128. "name": "Freek Van der Herten",
  4129. "email": "freek@spatie.be",
  4130. "homepage": "https://spatie.be",
  4131. "role": "Developer"
  4132. }
  4133. ],
  4134. "description": "Permission handling for Laravel 8.0 and up",
  4135. "homepage": "https://github.com/spatie/laravel-permission",
  4136. "keywords": [
  4137. "acl",
  4138. "laravel",
  4139. "permission",
  4140. "permissions",
  4141. "rbac",
  4142. "roles",
  4143. "security",
  4144. "spatie"
  4145. ],
  4146. "support": {
  4147. "issues": "https://github.com/spatie/laravel-permission/issues",
  4148. "source": "https://github.com/spatie/laravel-permission/tree/6.9.0"
  4149. },
  4150. "funding": [
  4151. {
  4152. "url": "https://github.com/spatie",
  4153. "type": "github"
  4154. }
  4155. ],
  4156. "time": "2024-06-22T23:04:52+00:00"
  4157. },
  4158. {
  4159. "name": "symfony/cache",
  4160. "version": "v7.1.5",
  4161. "source": {
  4162. "type": "git",
  4163. "url": "https://github.com/symfony/cache.git",
  4164. "reference": "86e5296b10e4dec8c8441056ca606aedb8a3be0a"
  4165. },
  4166. "dist": {
  4167. "type": "zip",
  4168. "url": "https://api.github.com/repos/symfony/cache/zipball/86e5296b10e4dec8c8441056ca606aedb8a3be0a",
  4169. "reference": "86e5296b10e4dec8c8441056ca606aedb8a3be0a",
  4170. "shasum": ""
  4171. },
  4172. "require": {
  4173. "php": ">=8.2",
  4174. "psr/cache": "^2.0|^3.0",
  4175. "psr/log": "^1.1|^2|^3",
  4176. "symfony/cache-contracts": "^2.5|^3",
  4177. "symfony/deprecation-contracts": "^2.5|^3.0",
  4178. "symfony/service-contracts": "^2.5|^3",
  4179. "symfony/var-exporter": "^6.4|^7.0"
  4180. },
  4181. "conflict": {
  4182. "doctrine/dbal": "<3.6",
  4183. "symfony/dependency-injection": "<6.4",
  4184. "symfony/http-kernel": "<6.4",
  4185. "symfony/var-dumper": "<6.4"
  4186. },
  4187. "provide": {
  4188. "psr/cache-implementation": "2.0|3.0",
  4189. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  4190. "symfony/cache-implementation": "1.1|2.0|3.0"
  4191. },
  4192. "require-dev": {
  4193. "cache/integration-tests": "dev-master",
  4194. "doctrine/dbal": "^3.6|^4",
  4195. "predis/predis": "^1.1|^2.0",
  4196. "psr/simple-cache": "^1.0|^2.0|^3.0",
  4197. "symfony/config": "^6.4|^7.0",
  4198. "symfony/dependency-injection": "^6.4|^7.0",
  4199. "symfony/filesystem": "^6.4|^7.0",
  4200. "symfony/http-kernel": "^6.4|^7.0",
  4201. "symfony/messenger": "^6.4|^7.0",
  4202. "symfony/var-dumper": "^6.4|^7.0"
  4203. },
  4204. "type": "library",
  4205. "autoload": {
  4206. "psr-4": {
  4207. "Symfony\\Component\\Cache\\": ""
  4208. },
  4209. "classmap": [
  4210. "Traits/ValueWrapper.php"
  4211. ],
  4212. "exclude-from-classmap": [
  4213. "/Tests/"
  4214. ]
  4215. },
  4216. "notification-url": "https://packagist.org/downloads/",
  4217. "license": [
  4218. "MIT"
  4219. ],
  4220. "authors": [
  4221. {
  4222. "name": "Nicolas Grekas",
  4223. "email": "p@tchwork.com"
  4224. },
  4225. {
  4226. "name": "Symfony Community",
  4227. "homepage": "https://symfony.com/contributors"
  4228. }
  4229. ],
  4230. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  4231. "homepage": "https://symfony.com",
  4232. "keywords": [
  4233. "caching",
  4234. "psr6"
  4235. ],
  4236. "support": {
  4237. "source": "https://github.com/symfony/cache/tree/v7.1.5"
  4238. },
  4239. "funding": [
  4240. {
  4241. "url": "https://symfony.com/sponsor",
  4242. "type": "custom"
  4243. },
  4244. {
  4245. "url": "https://github.com/fabpot",
  4246. "type": "github"
  4247. },
  4248. {
  4249. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4250. "type": "tidelift"
  4251. }
  4252. ],
  4253. "time": "2024-09-17T09:16:35+00:00"
  4254. },
  4255. {
  4256. "name": "symfony/cache-contracts",
  4257. "version": "v3.5.0",
  4258. "source": {
  4259. "type": "git",
  4260. "url": "https://github.com/symfony/cache-contracts.git",
  4261. "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197"
  4262. },
  4263. "dist": {
  4264. "type": "zip",
  4265. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/df6a1a44c890faded49a5fca33c2d5c5fd3c2197",
  4266. "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197",
  4267. "shasum": ""
  4268. },
  4269. "require": {
  4270. "php": ">=8.1",
  4271. "psr/cache": "^3.0"
  4272. },
  4273. "type": "library",
  4274. "extra": {
  4275. "branch-alias": {
  4276. "dev-main": "3.5-dev"
  4277. },
  4278. "thanks": {
  4279. "name": "symfony/contracts",
  4280. "url": "https://github.com/symfony/contracts"
  4281. }
  4282. },
  4283. "autoload": {
  4284. "psr-4": {
  4285. "Symfony\\Contracts\\Cache\\": ""
  4286. }
  4287. },
  4288. "notification-url": "https://packagist.org/downloads/",
  4289. "license": [
  4290. "MIT"
  4291. ],
  4292. "authors": [
  4293. {
  4294. "name": "Nicolas Grekas",
  4295. "email": "p@tchwork.com"
  4296. },
  4297. {
  4298. "name": "Symfony Community",
  4299. "homepage": "https://symfony.com/contributors"
  4300. }
  4301. ],
  4302. "description": "Generic abstractions related to caching",
  4303. "homepage": "https://symfony.com",
  4304. "keywords": [
  4305. "abstractions",
  4306. "contracts",
  4307. "decoupling",
  4308. "interfaces",
  4309. "interoperability",
  4310. "standards"
  4311. ],
  4312. "support": {
  4313. "source": "https://github.com/symfony/cache-contracts/tree/v3.5.0"
  4314. },
  4315. "funding": [
  4316. {
  4317. "url": "https://symfony.com/sponsor",
  4318. "type": "custom"
  4319. },
  4320. {
  4321. "url": "https://github.com/fabpot",
  4322. "type": "github"
  4323. },
  4324. {
  4325. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4326. "type": "tidelift"
  4327. }
  4328. ],
  4329. "time": "2024-04-18T09:32:20+00:00"
  4330. },
  4331. {
  4332. "name": "symfony/clock",
  4333. "version": "v7.1.1",
  4334. "source": {
  4335. "type": "git",
  4336. "url": "https://github.com/symfony/clock.git",
  4337. "reference": "3dfc8b084853586de51dd1441c6242c76a28cbe7"
  4338. },
  4339. "dist": {
  4340. "type": "zip",
  4341. "url": "https://api.github.com/repos/symfony/clock/zipball/3dfc8b084853586de51dd1441c6242c76a28cbe7",
  4342. "reference": "3dfc8b084853586de51dd1441c6242c76a28cbe7",
  4343. "shasum": ""
  4344. },
  4345. "require": {
  4346. "php": ">=8.2",
  4347. "psr/clock": "^1.0",
  4348. "symfony/polyfill-php83": "^1.28"
  4349. },
  4350. "provide": {
  4351. "psr/clock-implementation": "1.0"
  4352. },
  4353. "type": "library",
  4354. "autoload": {
  4355. "files": [
  4356. "Resources/now.php"
  4357. ],
  4358. "psr-4": {
  4359. "Symfony\\Component\\Clock\\": ""
  4360. },
  4361. "exclude-from-classmap": [
  4362. "/Tests/"
  4363. ]
  4364. },
  4365. "notification-url": "https://packagist.org/downloads/",
  4366. "license": [
  4367. "MIT"
  4368. ],
  4369. "authors": [
  4370. {
  4371. "name": "Nicolas Grekas",
  4372. "email": "p@tchwork.com"
  4373. },
  4374. {
  4375. "name": "Symfony Community",
  4376. "homepage": "https://symfony.com/contributors"
  4377. }
  4378. ],
  4379. "description": "Decouples applications from the system clock",
  4380. "homepage": "https://symfony.com",
  4381. "keywords": [
  4382. "clock",
  4383. "psr20",
  4384. "time"
  4385. ],
  4386. "support": {
  4387. "source": "https://github.com/symfony/clock/tree/v7.1.1"
  4388. },
  4389. "funding": [
  4390. {
  4391. "url": "https://symfony.com/sponsor",
  4392. "type": "custom"
  4393. },
  4394. {
  4395. "url": "https://github.com/fabpot",
  4396. "type": "github"
  4397. },
  4398. {
  4399. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4400. "type": "tidelift"
  4401. }
  4402. ],
  4403. "time": "2024-05-31T14:57:53+00:00"
  4404. },
  4405. {
  4406. "name": "symfony/console",
  4407. "version": "v7.1.5",
  4408. "source": {
  4409. "type": "git",
  4410. "url": "https://github.com/symfony/console.git",
  4411. "reference": "0fa539d12b3ccf068a722bbbffa07ca7079af9ee"
  4412. },
  4413. "dist": {
  4414. "type": "zip",
  4415. "url": "https://api.github.com/repos/symfony/console/zipball/0fa539d12b3ccf068a722bbbffa07ca7079af9ee",
  4416. "reference": "0fa539d12b3ccf068a722bbbffa07ca7079af9ee",
  4417. "shasum": ""
  4418. },
  4419. "require": {
  4420. "php": ">=8.2",
  4421. "symfony/polyfill-mbstring": "~1.0",
  4422. "symfony/service-contracts": "^2.5|^3",
  4423. "symfony/string": "^6.4|^7.0"
  4424. },
  4425. "conflict": {
  4426. "symfony/dependency-injection": "<6.4",
  4427. "symfony/dotenv": "<6.4",
  4428. "symfony/event-dispatcher": "<6.4",
  4429. "symfony/lock": "<6.4",
  4430. "symfony/process": "<6.4"
  4431. },
  4432. "provide": {
  4433. "psr/log-implementation": "1.0|2.0|3.0"
  4434. },
  4435. "require-dev": {
  4436. "psr/log": "^1|^2|^3",
  4437. "symfony/config": "^6.4|^7.0",
  4438. "symfony/dependency-injection": "^6.4|^7.0",
  4439. "symfony/event-dispatcher": "^6.4|^7.0",
  4440. "symfony/http-foundation": "^6.4|^7.0",
  4441. "symfony/http-kernel": "^6.4|^7.0",
  4442. "symfony/lock": "^6.4|^7.0",
  4443. "symfony/messenger": "^6.4|^7.0",
  4444. "symfony/process": "^6.4|^7.0",
  4445. "symfony/stopwatch": "^6.4|^7.0",
  4446. "symfony/var-dumper": "^6.4|^7.0"
  4447. },
  4448. "type": "library",
  4449. "autoload": {
  4450. "psr-4": {
  4451. "Symfony\\Component\\Console\\": ""
  4452. },
  4453. "exclude-from-classmap": [
  4454. "/Tests/"
  4455. ]
  4456. },
  4457. "notification-url": "https://packagist.org/downloads/",
  4458. "license": [
  4459. "MIT"
  4460. ],
  4461. "authors": [
  4462. {
  4463. "name": "Fabien Potencier",
  4464. "email": "fabien@symfony.com"
  4465. },
  4466. {
  4467. "name": "Symfony Community",
  4468. "homepage": "https://symfony.com/contributors"
  4469. }
  4470. ],
  4471. "description": "Eases the creation of beautiful and testable command line interfaces",
  4472. "homepage": "https://symfony.com",
  4473. "keywords": [
  4474. "cli",
  4475. "command-line",
  4476. "console",
  4477. "terminal"
  4478. ],
  4479. "support": {
  4480. "source": "https://github.com/symfony/console/tree/v7.1.5"
  4481. },
  4482. "funding": [
  4483. {
  4484. "url": "https://symfony.com/sponsor",
  4485. "type": "custom"
  4486. },
  4487. {
  4488. "url": "https://github.com/fabpot",
  4489. "type": "github"
  4490. },
  4491. {
  4492. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4493. "type": "tidelift"
  4494. }
  4495. ],
  4496. "time": "2024-09-20T08:28:38+00:00"
  4497. },
  4498. {
  4499. "name": "symfony/css-selector",
  4500. "version": "v7.1.1",
  4501. "source": {
  4502. "type": "git",
  4503. "url": "https://github.com/symfony/css-selector.git",
  4504. "reference": "1c7cee86c6f812896af54434f8ce29c8d94f9ff4"
  4505. },
  4506. "dist": {
  4507. "type": "zip",
  4508. "url": "https://api.github.com/repos/symfony/css-selector/zipball/1c7cee86c6f812896af54434f8ce29c8d94f9ff4",
  4509. "reference": "1c7cee86c6f812896af54434f8ce29c8d94f9ff4",
  4510. "shasum": ""
  4511. },
  4512. "require": {
  4513. "php": ">=8.2"
  4514. },
  4515. "type": "library",
  4516. "autoload": {
  4517. "psr-4": {
  4518. "Symfony\\Component\\CssSelector\\": ""
  4519. },
  4520. "exclude-from-classmap": [
  4521. "/Tests/"
  4522. ]
  4523. },
  4524. "notification-url": "https://packagist.org/downloads/",
  4525. "license": [
  4526. "MIT"
  4527. ],
  4528. "authors": [
  4529. {
  4530. "name": "Fabien Potencier",
  4531. "email": "fabien@symfony.com"
  4532. },
  4533. {
  4534. "name": "Jean-François Simon",
  4535. "email": "jeanfrancois.simon@sensiolabs.com"
  4536. },
  4537. {
  4538. "name": "Symfony Community",
  4539. "homepage": "https://symfony.com/contributors"
  4540. }
  4541. ],
  4542. "description": "Converts CSS selectors to XPath expressions",
  4543. "homepage": "https://symfony.com",
  4544. "support": {
  4545. "source": "https://github.com/symfony/css-selector/tree/v7.1.1"
  4546. },
  4547. "funding": [
  4548. {
  4549. "url": "https://symfony.com/sponsor",
  4550. "type": "custom"
  4551. },
  4552. {
  4553. "url": "https://github.com/fabpot",
  4554. "type": "github"
  4555. },
  4556. {
  4557. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4558. "type": "tidelift"
  4559. }
  4560. ],
  4561. "time": "2024-05-31T14:57:53+00:00"
  4562. },
  4563. {
  4564. "name": "symfony/deprecation-contracts",
  4565. "version": "v3.5.0",
  4566. "source": {
  4567. "type": "git",
  4568. "url": "https://github.com/symfony/deprecation-contracts.git",
  4569. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  4570. },
  4571. "dist": {
  4572. "type": "zip",
  4573. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  4574. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  4575. "shasum": ""
  4576. },
  4577. "require": {
  4578. "php": ">=8.1"
  4579. },
  4580. "type": "library",
  4581. "extra": {
  4582. "branch-alias": {
  4583. "dev-main": "3.5-dev"
  4584. },
  4585. "thanks": {
  4586. "name": "symfony/contracts",
  4587. "url": "https://github.com/symfony/contracts"
  4588. }
  4589. },
  4590. "autoload": {
  4591. "files": [
  4592. "function.php"
  4593. ]
  4594. },
  4595. "notification-url": "https://packagist.org/downloads/",
  4596. "license": [
  4597. "MIT"
  4598. ],
  4599. "authors": [
  4600. {
  4601. "name": "Nicolas Grekas",
  4602. "email": "p@tchwork.com"
  4603. },
  4604. {
  4605. "name": "Symfony Community",
  4606. "homepage": "https://symfony.com/contributors"
  4607. }
  4608. ],
  4609. "description": "A generic function and convention to trigger deprecation notices",
  4610. "homepage": "https://symfony.com",
  4611. "support": {
  4612. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  4613. },
  4614. "funding": [
  4615. {
  4616. "url": "https://symfony.com/sponsor",
  4617. "type": "custom"
  4618. },
  4619. {
  4620. "url": "https://github.com/fabpot",
  4621. "type": "github"
  4622. },
  4623. {
  4624. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4625. "type": "tidelift"
  4626. }
  4627. ],
  4628. "time": "2024-04-18T09:32:20+00:00"
  4629. },
  4630. {
  4631. "name": "symfony/error-handler",
  4632. "version": "v7.1.3",
  4633. "source": {
  4634. "type": "git",
  4635. "url": "https://github.com/symfony/error-handler.git",
  4636. "reference": "432bb369952795c61ca1def65e078c4a80dad13c"
  4637. },
  4638. "dist": {
  4639. "type": "zip",
  4640. "url": "https://api.github.com/repos/symfony/error-handler/zipball/432bb369952795c61ca1def65e078c4a80dad13c",
  4641. "reference": "432bb369952795c61ca1def65e078c4a80dad13c",
  4642. "shasum": ""
  4643. },
  4644. "require": {
  4645. "php": ">=8.2",
  4646. "psr/log": "^1|^2|^3",
  4647. "symfony/var-dumper": "^6.4|^7.0"
  4648. },
  4649. "conflict": {
  4650. "symfony/deprecation-contracts": "<2.5",
  4651. "symfony/http-kernel": "<6.4"
  4652. },
  4653. "require-dev": {
  4654. "symfony/deprecation-contracts": "^2.5|^3",
  4655. "symfony/http-kernel": "^6.4|^7.0",
  4656. "symfony/serializer": "^6.4|^7.0"
  4657. },
  4658. "bin": [
  4659. "Resources/bin/patch-type-declarations"
  4660. ],
  4661. "type": "library",
  4662. "autoload": {
  4663. "psr-4": {
  4664. "Symfony\\Component\\ErrorHandler\\": ""
  4665. },
  4666. "exclude-from-classmap": [
  4667. "/Tests/"
  4668. ]
  4669. },
  4670. "notification-url": "https://packagist.org/downloads/",
  4671. "license": [
  4672. "MIT"
  4673. ],
  4674. "authors": [
  4675. {
  4676. "name": "Fabien Potencier",
  4677. "email": "fabien@symfony.com"
  4678. },
  4679. {
  4680. "name": "Symfony Community",
  4681. "homepage": "https://symfony.com/contributors"
  4682. }
  4683. ],
  4684. "description": "Provides tools to manage errors and ease debugging PHP code",
  4685. "homepage": "https://symfony.com",
  4686. "support": {
  4687. "source": "https://github.com/symfony/error-handler/tree/v7.1.3"
  4688. },
  4689. "funding": [
  4690. {
  4691. "url": "https://symfony.com/sponsor",
  4692. "type": "custom"
  4693. },
  4694. {
  4695. "url": "https://github.com/fabpot",
  4696. "type": "github"
  4697. },
  4698. {
  4699. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4700. "type": "tidelift"
  4701. }
  4702. ],
  4703. "time": "2024-07-26T13:02:51+00:00"
  4704. },
  4705. {
  4706. "name": "symfony/event-dispatcher",
  4707. "version": "v7.1.1",
  4708. "source": {
  4709. "type": "git",
  4710. "url": "https://github.com/symfony/event-dispatcher.git",
  4711. "reference": "9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7"
  4712. },
  4713. "dist": {
  4714. "type": "zip",
  4715. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7",
  4716. "reference": "9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7",
  4717. "shasum": ""
  4718. },
  4719. "require": {
  4720. "php": ">=8.2",
  4721. "symfony/event-dispatcher-contracts": "^2.5|^3"
  4722. },
  4723. "conflict": {
  4724. "symfony/dependency-injection": "<6.4",
  4725. "symfony/service-contracts": "<2.5"
  4726. },
  4727. "provide": {
  4728. "psr/event-dispatcher-implementation": "1.0",
  4729. "symfony/event-dispatcher-implementation": "2.0|3.0"
  4730. },
  4731. "require-dev": {
  4732. "psr/log": "^1|^2|^3",
  4733. "symfony/config": "^6.4|^7.0",
  4734. "symfony/dependency-injection": "^6.4|^7.0",
  4735. "symfony/error-handler": "^6.4|^7.0",
  4736. "symfony/expression-language": "^6.4|^7.0",
  4737. "symfony/http-foundation": "^6.4|^7.0",
  4738. "symfony/service-contracts": "^2.5|^3",
  4739. "symfony/stopwatch": "^6.4|^7.0"
  4740. },
  4741. "type": "library",
  4742. "autoload": {
  4743. "psr-4": {
  4744. "Symfony\\Component\\EventDispatcher\\": ""
  4745. },
  4746. "exclude-from-classmap": [
  4747. "/Tests/"
  4748. ]
  4749. },
  4750. "notification-url": "https://packagist.org/downloads/",
  4751. "license": [
  4752. "MIT"
  4753. ],
  4754. "authors": [
  4755. {
  4756. "name": "Fabien Potencier",
  4757. "email": "fabien@symfony.com"
  4758. },
  4759. {
  4760. "name": "Symfony Community",
  4761. "homepage": "https://symfony.com/contributors"
  4762. }
  4763. ],
  4764. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  4765. "homepage": "https://symfony.com",
  4766. "support": {
  4767. "source": "https://github.com/symfony/event-dispatcher/tree/v7.1.1"
  4768. },
  4769. "funding": [
  4770. {
  4771. "url": "https://symfony.com/sponsor",
  4772. "type": "custom"
  4773. },
  4774. {
  4775. "url": "https://github.com/fabpot",
  4776. "type": "github"
  4777. },
  4778. {
  4779. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4780. "type": "tidelift"
  4781. }
  4782. ],
  4783. "time": "2024-05-31T14:57:53+00:00"
  4784. },
  4785. {
  4786. "name": "symfony/event-dispatcher-contracts",
  4787. "version": "v3.5.0",
  4788. "source": {
  4789. "type": "git",
  4790. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  4791. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  4792. },
  4793. "dist": {
  4794. "type": "zip",
  4795. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  4796. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  4797. "shasum": ""
  4798. },
  4799. "require": {
  4800. "php": ">=8.1",
  4801. "psr/event-dispatcher": "^1"
  4802. },
  4803. "type": "library",
  4804. "extra": {
  4805. "branch-alias": {
  4806. "dev-main": "3.5-dev"
  4807. },
  4808. "thanks": {
  4809. "name": "symfony/contracts",
  4810. "url": "https://github.com/symfony/contracts"
  4811. }
  4812. },
  4813. "autoload": {
  4814. "psr-4": {
  4815. "Symfony\\Contracts\\EventDispatcher\\": ""
  4816. }
  4817. },
  4818. "notification-url": "https://packagist.org/downloads/",
  4819. "license": [
  4820. "MIT"
  4821. ],
  4822. "authors": [
  4823. {
  4824. "name": "Nicolas Grekas",
  4825. "email": "p@tchwork.com"
  4826. },
  4827. {
  4828. "name": "Symfony Community",
  4829. "homepage": "https://symfony.com/contributors"
  4830. }
  4831. ],
  4832. "description": "Generic abstractions related to dispatching event",
  4833. "homepage": "https://symfony.com",
  4834. "keywords": [
  4835. "abstractions",
  4836. "contracts",
  4837. "decoupling",
  4838. "interfaces",
  4839. "interoperability",
  4840. "standards"
  4841. ],
  4842. "support": {
  4843. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
  4844. },
  4845. "funding": [
  4846. {
  4847. "url": "https://symfony.com/sponsor",
  4848. "type": "custom"
  4849. },
  4850. {
  4851. "url": "https://github.com/fabpot",
  4852. "type": "github"
  4853. },
  4854. {
  4855. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4856. "type": "tidelift"
  4857. }
  4858. ],
  4859. "time": "2024-04-18T09:32:20+00:00"
  4860. },
  4861. {
  4862. "name": "symfony/finder",
  4863. "version": "v7.1.4",
  4864. "source": {
  4865. "type": "git",
  4866. "url": "https://github.com/symfony/finder.git",
  4867. "reference": "d95bbf319f7d052082fb7af147e0f835a695e823"
  4868. },
  4869. "dist": {
  4870. "type": "zip",
  4871. "url": "https://api.github.com/repos/symfony/finder/zipball/d95bbf319f7d052082fb7af147e0f835a695e823",
  4872. "reference": "d95bbf319f7d052082fb7af147e0f835a695e823",
  4873. "shasum": ""
  4874. },
  4875. "require": {
  4876. "php": ">=8.2"
  4877. },
  4878. "require-dev": {
  4879. "symfony/filesystem": "^6.4|^7.0"
  4880. },
  4881. "type": "library",
  4882. "autoload": {
  4883. "psr-4": {
  4884. "Symfony\\Component\\Finder\\": ""
  4885. },
  4886. "exclude-from-classmap": [
  4887. "/Tests/"
  4888. ]
  4889. },
  4890. "notification-url": "https://packagist.org/downloads/",
  4891. "license": [
  4892. "MIT"
  4893. ],
  4894. "authors": [
  4895. {
  4896. "name": "Fabien Potencier",
  4897. "email": "fabien@symfony.com"
  4898. },
  4899. {
  4900. "name": "Symfony Community",
  4901. "homepage": "https://symfony.com/contributors"
  4902. }
  4903. ],
  4904. "description": "Finds files and directories via an intuitive fluent interface",
  4905. "homepage": "https://symfony.com",
  4906. "support": {
  4907. "source": "https://github.com/symfony/finder/tree/v7.1.4"
  4908. },
  4909. "funding": [
  4910. {
  4911. "url": "https://symfony.com/sponsor",
  4912. "type": "custom"
  4913. },
  4914. {
  4915. "url": "https://github.com/fabpot",
  4916. "type": "github"
  4917. },
  4918. {
  4919. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4920. "type": "tidelift"
  4921. }
  4922. ],
  4923. "time": "2024-08-13T14:28:19+00:00"
  4924. },
  4925. {
  4926. "name": "symfony/http-client",
  4927. "version": "v7.1.5",
  4928. "source": {
  4929. "type": "git",
  4930. "url": "https://github.com/symfony/http-client.git",
  4931. "reference": "abca35865118edf35a23f2f24978a1784c831cb4"
  4932. },
  4933. "dist": {
  4934. "type": "zip",
  4935. "url": "https://api.github.com/repos/symfony/http-client/zipball/abca35865118edf35a23f2f24978a1784c831cb4",
  4936. "reference": "abca35865118edf35a23f2f24978a1784c831cb4",
  4937. "shasum": ""
  4938. },
  4939. "require": {
  4940. "php": ">=8.2",
  4941. "psr/log": "^1|^2|^3",
  4942. "symfony/deprecation-contracts": "^2.5|^3",
  4943. "symfony/http-client-contracts": "^3.4.1",
  4944. "symfony/service-contracts": "^2.5|^3"
  4945. },
  4946. "conflict": {
  4947. "php-http/discovery": "<1.15",
  4948. "symfony/http-foundation": "<6.4"
  4949. },
  4950. "provide": {
  4951. "php-http/async-client-implementation": "*",
  4952. "php-http/client-implementation": "*",
  4953. "psr/http-client-implementation": "1.0",
  4954. "symfony/http-client-implementation": "3.0"
  4955. },
  4956. "require-dev": {
  4957. "amphp/amp": "^2.5",
  4958. "amphp/http-client": "^4.2.1",
  4959. "amphp/http-tunnel": "^1.0",
  4960. "amphp/socket": "^1.1",
  4961. "guzzlehttp/promises": "^1.4|^2.0",
  4962. "nyholm/psr7": "^1.0",
  4963. "php-http/httplug": "^1.0|^2.0",
  4964. "psr/http-client": "^1.0",
  4965. "symfony/dependency-injection": "^6.4|^7.0",
  4966. "symfony/http-kernel": "^6.4|^7.0",
  4967. "symfony/messenger": "^6.4|^7.0",
  4968. "symfony/process": "^6.4|^7.0",
  4969. "symfony/rate-limiter": "^6.4|^7.0",
  4970. "symfony/stopwatch": "^6.4|^7.0"
  4971. },
  4972. "type": "library",
  4973. "autoload": {
  4974. "psr-4": {
  4975. "Symfony\\Component\\HttpClient\\": ""
  4976. },
  4977. "exclude-from-classmap": [
  4978. "/Tests/"
  4979. ]
  4980. },
  4981. "notification-url": "https://packagist.org/downloads/",
  4982. "license": [
  4983. "MIT"
  4984. ],
  4985. "authors": [
  4986. {
  4987. "name": "Nicolas Grekas",
  4988. "email": "p@tchwork.com"
  4989. },
  4990. {
  4991. "name": "Symfony Community",
  4992. "homepage": "https://symfony.com/contributors"
  4993. }
  4994. ],
  4995. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  4996. "homepage": "https://symfony.com",
  4997. "keywords": [
  4998. "http"
  4999. ],
  5000. "support": {
  5001. "source": "https://github.com/symfony/http-client/tree/v7.1.5"
  5002. },
  5003. "funding": [
  5004. {
  5005. "url": "https://symfony.com/sponsor",
  5006. "type": "custom"
  5007. },
  5008. {
  5009. "url": "https://github.com/fabpot",
  5010. "type": "github"
  5011. },
  5012. {
  5013. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5014. "type": "tidelift"
  5015. }
  5016. ],
  5017. "time": "2024-09-20T13:35:23+00:00"
  5018. },
  5019. {
  5020. "name": "symfony/http-client-contracts",
  5021. "version": "v3.5.0",
  5022. "source": {
  5023. "type": "git",
  5024. "url": "https://github.com/symfony/http-client-contracts.git",
  5025. "reference": "20414d96f391677bf80078aa55baece78b82647d"
  5026. },
  5027. "dist": {
  5028. "type": "zip",
  5029. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/20414d96f391677bf80078aa55baece78b82647d",
  5030. "reference": "20414d96f391677bf80078aa55baece78b82647d",
  5031. "shasum": ""
  5032. },
  5033. "require": {
  5034. "php": ">=8.1"
  5035. },
  5036. "type": "library",
  5037. "extra": {
  5038. "branch-alias": {
  5039. "dev-main": "3.5-dev"
  5040. },
  5041. "thanks": {
  5042. "name": "symfony/contracts",
  5043. "url": "https://github.com/symfony/contracts"
  5044. }
  5045. },
  5046. "autoload": {
  5047. "psr-4": {
  5048. "Symfony\\Contracts\\HttpClient\\": ""
  5049. },
  5050. "exclude-from-classmap": [
  5051. "/Test/"
  5052. ]
  5053. },
  5054. "notification-url": "https://packagist.org/downloads/",
  5055. "license": [
  5056. "MIT"
  5057. ],
  5058. "authors": [
  5059. {
  5060. "name": "Nicolas Grekas",
  5061. "email": "p@tchwork.com"
  5062. },
  5063. {
  5064. "name": "Symfony Community",
  5065. "homepage": "https://symfony.com/contributors"
  5066. }
  5067. ],
  5068. "description": "Generic abstractions related to HTTP clients",
  5069. "homepage": "https://symfony.com",
  5070. "keywords": [
  5071. "abstractions",
  5072. "contracts",
  5073. "decoupling",
  5074. "interfaces",
  5075. "interoperability",
  5076. "standards"
  5077. ],
  5078. "support": {
  5079. "source": "https://github.com/symfony/http-client-contracts/tree/v3.5.0"
  5080. },
  5081. "funding": [
  5082. {
  5083. "url": "https://symfony.com/sponsor",
  5084. "type": "custom"
  5085. },
  5086. {
  5087. "url": "https://github.com/fabpot",
  5088. "type": "github"
  5089. },
  5090. {
  5091. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5092. "type": "tidelift"
  5093. }
  5094. ],
  5095. "time": "2024-04-18T09:32:20+00:00"
  5096. },
  5097. {
  5098. "name": "symfony/http-foundation",
  5099. "version": "v7.1.5",
  5100. "source": {
  5101. "type": "git",
  5102. "url": "https://github.com/symfony/http-foundation.git",
  5103. "reference": "e30ef73b1e44eea7eb37ba69600a354e553f694b"
  5104. },
  5105. "dist": {
  5106. "type": "zip",
  5107. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e30ef73b1e44eea7eb37ba69600a354e553f694b",
  5108. "reference": "e30ef73b1e44eea7eb37ba69600a354e553f694b",
  5109. "shasum": ""
  5110. },
  5111. "require": {
  5112. "php": ">=8.2",
  5113. "symfony/polyfill-mbstring": "~1.1",
  5114. "symfony/polyfill-php83": "^1.27"
  5115. },
  5116. "conflict": {
  5117. "doctrine/dbal": "<3.6",
  5118. "symfony/cache": "<6.4"
  5119. },
  5120. "require-dev": {
  5121. "doctrine/dbal": "^3.6|^4",
  5122. "predis/predis": "^1.1|^2.0",
  5123. "symfony/cache": "^6.4|^7.0",
  5124. "symfony/dependency-injection": "^6.4|^7.0",
  5125. "symfony/expression-language": "^6.4|^7.0",
  5126. "symfony/http-kernel": "^6.4|^7.0",
  5127. "symfony/mime": "^6.4|^7.0",
  5128. "symfony/rate-limiter": "^6.4|^7.0"
  5129. },
  5130. "type": "library",
  5131. "autoload": {
  5132. "psr-4": {
  5133. "Symfony\\Component\\HttpFoundation\\": ""
  5134. },
  5135. "exclude-from-classmap": [
  5136. "/Tests/"
  5137. ]
  5138. },
  5139. "notification-url": "https://packagist.org/downloads/",
  5140. "license": [
  5141. "MIT"
  5142. ],
  5143. "authors": [
  5144. {
  5145. "name": "Fabien Potencier",
  5146. "email": "fabien@symfony.com"
  5147. },
  5148. {
  5149. "name": "Symfony Community",
  5150. "homepage": "https://symfony.com/contributors"
  5151. }
  5152. ],
  5153. "description": "Defines an object-oriented layer for the HTTP specification",
  5154. "homepage": "https://symfony.com",
  5155. "support": {
  5156. "source": "https://github.com/symfony/http-foundation/tree/v7.1.5"
  5157. },
  5158. "funding": [
  5159. {
  5160. "url": "https://symfony.com/sponsor",
  5161. "type": "custom"
  5162. },
  5163. {
  5164. "url": "https://github.com/fabpot",
  5165. "type": "github"
  5166. },
  5167. {
  5168. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5169. "type": "tidelift"
  5170. }
  5171. ],
  5172. "time": "2024-09-20T08:28:38+00:00"
  5173. },
  5174. {
  5175. "name": "symfony/http-kernel",
  5176. "version": "v7.1.5",
  5177. "source": {
  5178. "type": "git",
  5179. "url": "https://github.com/symfony/http-kernel.git",
  5180. "reference": "44204d96150a9df1fc57601ec933d23fefc2d65b"
  5181. },
  5182. "dist": {
  5183. "type": "zip",
  5184. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/44204d96150a9df1fc57601ec933d23fefc2d65b",
  5185. "reference": "44204d96150a9df1fc57601ec933d23fefc2d65b",
  5186. "shasum": ""
  5187. },
  5188. "require": {
  5189. "php": ">=8.2",
  5190. "psr/log": "^1|^2|^3",
  5191. "symfony/deprecation-contracts": "^2.5|^3",
  5192. "symfony/error-handler": "^6.4|^7.0",
  5193. "symfony/event-dispatcher": "^6.4|^7.0",
  5194. "symfony/http-foundation": "^6.4|^7.0",
  5195. "symfony/polyfill-ctype": "^1.8"
  5196. },
  5197. "conflict": {
  5198. "symfony/browser-kit": "<6.4",
  5199. "symfony/cache": "<6.4",
  5200. "symfony/config": "<6.4",
  5201. "symfony/console": "<6.4",
  5202. "symfony/dependency-injection": "<6.4",
  5203. "symfony/doctrine-bridge": "<6.4",
  5204. "symfony/form": "<6.4",
  5205. "symfony/http-client": "<6.4",
  5206. "symfony/http-client-contracts": "<2.5",
  5207. "symfony/mailer": "<6.4",
  5208. "symfony/messenger": "<6.4",
  5209. "symfony/translation": "<6.4",
  5210. "symfony/translation-contracts": "<2.5",
  5211. "symfony/twig-bridge": "<6.4",
  5212. "symfony/validator": "<6.4",
  5213. "symfony/var-dumper": "<6.4",
  5214. "twig/twig": "<3.0.4"
  5215. },
  5216. "provide": {
  5217. "psr/log-implementation": "1.0|2.0|3.0"
  5218. },
  5219. "require-dev": {
  5220. "psr/cache": "^1.0|^2.0|^3.0",
  5221. "symfony/browser-kit": "^6.4|^7.0",
  5222. "symfony/clock": "^6.4|^7.0",
  5223. "symfony/config": "^6.4|^7.0",
  5224. "symfony/console": "^6.4|^7.0",
  5225. "symfony/css-selector": "^6.4|^7.0",
  5226. "symfony/dependency-injection": "^6.4|^7.0",
  5227. "symfony/dom-crawler": "^6.4|^7.0",
  5228. "symfony/expression-language": "^6.4|^7.0",
  5229. "symfony/finder": "^6.4|^7.0",
  5230. "symfony/http-client-contracts": "^2.5|^3",
  5231. "symfony/process": "^6.4|^7.0",
  5232. "symfony/property-access": "^7.1",
  5233. "symfony/routing": "^6.4|^7.0",
  5234. "symfony/serializer": "^7.1",
  5235. "symfony/stopwatch": "^6.4|^7.0",
  5236. "symfony/translation": "^6.4|^7.0",
  5237. "symfony/translation-contracts": "^2.5|^3",
  5238. "symfony/uid": "^6.4|^7.0",
  5239. "symfony/validator": "^6.4|^7.0",
  5240. "symfony/var-dumper": "^6.4|^7.0",
  5241. "symfony/var-exporter": "^6.4|^7.0",
  5242. "twig/twig": "^3.0.4"
  5243. },
  5244. "type": "library",
  5245. "autoload": {
  5246. "psr-4": {
  5247. "Symfony\\Component\\HttpKernel\\": ""
  5248. },
  5249. "exclude-from-classmap": [
  5250. "/Tests/"
  5251. ]
  5252. },
  5253. "notification-url": "https://packagist.org/downloads/",
  5254. "license": [
  5255. "MIT"
  5256. ],
  5257. "authors": [
  5258. {
  5259. "name": "Fabien Potencier",
  5260. "email": "fabien@symfony.com"
  5261. },
  5262. {
  5263. "name": "Symfony Community",
  5264. "homepage": "https://symfony.com/contributors"
  5265. }
  5266. ],
  5267. "description": "Provides a structured process for converting a Request into a Response",
  5268. "homepage": "https://symfony.com",
  5269. "support": {
  5270. "source": "https://github.com/symfony/http-kernel/tree/v7.1.5"
  5271. },
  5272. "funding": [
  5273. {
  5274. "url": "https://symfony.com/sponsor",
  5275. "type": "custom"
  5276. },
  5277. {
  5278. "url": "https://github.com/fabpot",
  5279. "type": "github"
  5280. },
  5281. {
  5282. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5283. "type": "tidelift"
  5284. }
  5285. ],
  5286. "time": "2024-09-21T06:09:21+00:00"
  5287. },
  5288. {
  5289. "name": "symfony/mailer",
  5290. "version": "v7.1.5",
  5291. "source": {
  5292. "type": "git",
  5293. "url": "https://github.com/symfony/mailer.git",
  5294. "reference": "bbf21460c56f29810da3df3e206e38dfbb01e80b"
  5295. },
  5296. "dist": {
  5297. "type": "zip",
  5298. "url": "https://api.github.com/repos/symfony/mailer/zipball/bbf21460c56f29810da3df3e206e38dfbb01e80b",
  5299. "reference": "bbf21460c56f29810da3df3e206e38dfbb01e80b",
  5300. "shasum": ""
  5301. },
  5302. "require": {
  5303. "egulias/email-validator": "^2.1.10|^3|^4",
  5304. "php": ">=8.2",
  5305. "psr/event-dispatcher": "^1",
  5306. "psr/log": "^1|^2|^3",
  5307. "symfony/event-dispatcher": "^6.4|^7.0",
  5308. "symfony/mime": "^6.4|^7.0",
  5309. "symfony/service-contracts": "^2.5|^3"
  5310. },
  5311. "conflict": {
  5312. "symfony/http-client-contracts": "<2.5",
  5313. "symfony/http-kernel": "<6.4",
  5314. "symfony/messenger": "<6.4",
  5315. "symfony/mime": "<6.4",
  5316. "symfony/twig-bridge": "<6.4"
  5317. },
  5318. "require-dev": {
  5319. "symfony/console": "^6.4|^7.0",
  5320. "symfony/http-client": "^6.4|^7.0",
  5321. "symfony/messenger": "^6.4|^7.0",
  5322. "symfony/twig-bridge": "^6.4|^7.0"
  5323. },
  5324. "type": "library",
  5325. "autoload": {
  5326. "psr-4": {
  5327. "Symfony\\Component\\Mailer\\": ""
  5328. },
  5329. "exclude-from-classmap": [
  5330. "/Tests/"
  5331. ]
  5332. },
  5333. "notification-url": "https://packagist.org/downloads/",
  5334. "license": [
  5335. "MIT"
  5336. ],
  5337. "authors": [
  5338. {
  5339. "name": "Fabien Potencier",
  5340. "email": "fabien@symfony.com"
  5341. },
  5342. {
  5343. "name": "Symfony Community",
  5344. "homepage": "https://symfony.com/contributors"
  5345. }
  5346. ],
  5347. "description": "Helps sending emails",
  5348. "homepage": "https://symfony.com",
  5349. "support": {
  5350. "source": "https://github.com/symfony/mailer/tree/v7.1.5"
  5351. },
  5352. "funding": [
  5353. {
  5354. "url": "https://symfony.com/sponsor",
  5355. "type": "custom"
  5356. },
  5357. {
  5358. "url": "https://github.com/fabpot",
  5359. "type": "github"
  5360. },
  5361. {
  5362. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5363. "type": "tidelift"
  5364. }
  5365. ],
  5366. "time": "2024-09-08T12:32:26+00:00"
  5367. },
  5368. {
  5369. "name": "symfony/mime",
  5370. "version": "v7.1.5",
  5371. "source": {
  5372. "type": "git",
  5373. "url": "https://github.com/symfony/mime.git",
  5374. "reference": "711d2e167e8ce65b05aea6b258c449671cdd38ff"
  5375. },
  5376. "dist": {
  5377. "type": "zip",
  5378. "url": "https://api.github.com/repos/symfony/mime/zipball/711d2e167e8ce65b05aea6b258c449671cdd38ff",
  5379. "reference": "711d2e167e8ce65b05aea6b258c449671cdd38ff",
  5380. "shasum": ""
  5381. },
  5382. "require": {
  5383. "php": ">=8.2",
  5384. "symfony/polyfill-intl-idn": "^1.10",
  5385. "symfony/polyfill-mbstring": "^1.0"
  5386. },
  5387. "conflict": {
  5388. "egulias/email-validator": "~3.0.0",
  5389. "phpdocumentor/reflection-docblock": "<3.2.2",
  5390. "phpdocumentor/type-resolver": "<1.4.0",
  5391. "symfony/mailer": "<6.4",
  5392. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  5393. },
  5394. "require-dev": {
  5395. "egulias/email-validator": "^2.1.10|^3.1|^4",
  5396. "league/html-to-markdown": "^5.0",
  5397. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5398. "symfony/dependency-injection": "^6.4|^7.0",
  5399. "symfony/process": "^6.4|^7.0",
  5400. "symfony/property-access": "^6.4|^7.0",
  5401. "symfony/property-info": "^6.4|^7.0",
  5402. "symfony/serializer": "^6.4.3|^7.0.3"
  5403. },
  5404. "type": "library",
  5405. "autoload": {
  5406. "psr-4": {
  5407. "Symfony\\Component\\Mime\\": ""
  5408. },
  5409. "exclude-from-classmap": [
  5410. "/Tests/"
  5411. ]
  5412. },
  5413. "notification-url": "https://packagist.org/downloads/",
  5414. "license": [
  5415. "MIT"
  5416. ],
  5417. "authors": [
  5418. {
  5419. "name": "Fabien Potencier",
  5420. "email": "fabien@symfony.com"
  5421. },
  5422. {
  5423. "name": "Symfony Community",
  5424. "homepage": "https://symfony.com/contributors"
  5425. }
  5426. ],
  5427. "description": "Allows manipulating MIME messages",
  5428. "homepage": "https://symfony.com",
  5429. "keywords": [
  5430. "mime",
  5431. "mime-type"
  5432. ],
  5433. "support": {
  5434. "source": "https://github.com/symfony/mime/tree/v7.1.5"
  5435. },
  5436. "funding": [
  5437. {
  5438. "url": "https://symfony.com/sponsor",
  5439. "type": "custom"
  5440. },
  5441. {
  5442. "url": "https://github.com/fabpot",
  5443. "type": "github"
  5444. },
  5445. {
  5446. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5447. "type": "tidelift"
  5448. }
  5449. ],
  5450. "time": "2024-09-20T08:28:38+00:00"
  5451. },
  5452. {
  5453. "name": "symfony/polyfill-ctype",
  5454. "version": "v1.31.0",
  5455. "source": {
  5456. "type": "git",
  5457. "url": "https://github.com/symfony/polyfill-ctype.git",
  5458. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  5459. },
  5460. "dist": {
  5461. "type": "zip",
  5462. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  5463. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  5464. "shasum": ""
  5465. },
  5466. "require": {
  5467. "php": ">=7.2"
  5468. },
  5469. "provide": {
  5470. "ext-ctype": "*"
  5471. },
  5472. "suggest": {
  5473. "ext-ctype": "For best performance"
  5474. },
  5475. "type": "library",
  5476. "extra": {
  5477. "thanks": {
  5478. "name": "symfony/polyfill",
  5479. "url": "https://github.com/symfony/polyfill"
  5480. }
  5481. },
  5482. "autoload": {
  5483. "files": [
  5484. "bootstrap.php"
  5485. ],
  5486. "psr-4": {
  5487. "Symfony\\Polyfill\\Ctype\\": ""
  5488. }
  5489. },
  5490. "notification-url": "https://packagist.org/downloads/",
  5491. "license": [
  5492. "MIT"
  5493. ],
  5494. "authors": [
  5495. {
  5496. "name": "Gert de Pagter",
  5497. "email": "BackEndTea@gmail.com"
  5498. },
  5499. {
  5500. "name": "Symfony Community",
  5501. "homepage": "https://symfony.com/contributors"
  5502. }
  5503. ],
  5504. "description": "Symfony polyfill for ctype functions",
  5505. "homepage": "https://symfony.com",
  5506. "keywords": [
  5507. "compatibility",
  5508. "ctype",
  5509. "polyfill",
  5510. "portable"
  5511. ],
  5512. "support": {
  5513. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  5514. },
  5515. "funding": [
  5516. {
  5517. "url": "https://symfony.com/sponsor",
  5518. "type": "custom"
  5519. },
  5520. {
  5521. "url": "https://github.com/fabpot",
  5522. "type": "github"
  5523. },
  5524. {
  5525. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5526. "type": "tidelift"
  5527. }
  5528. ],
  5529. "time": "2024-09-09T11:45:10+00:00"
  5530. },
  5531. {
  5532. "name": "symfony/polyfill-intl-grapheme",
  5533. "version": "v1.31.0",
  5534. "source": {
  5535. "type": "git",
  5536. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5537. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  5538. },
  5539. "dist": {
  5540. "type": "zip",
  5541. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  5542. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  5543. "shasum": ""
  5544. },
  5545. "require": {
  5546. "php": ">=7.2"
  5547. },
  5548. "suggest": {
  5549. "ext-intl": "For best performance"
  5550. },
  5551. "type": "library",
  5552. "extra": {
  5553. "thanks": {
  5554. "name": "symfony/polyfill",
  5555. "url": "https://github.com/symfony/polyfill"
  5556. }
  5557. },
  5558. "autoload": {
  5559. "files": [
  5560. "bootstrap.php"
  5561. ],
  5562. "psr-4": {
  5563. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5564. }
  5565. },
  5566. "notification-url": "https://packagist.org/downloads/",
  5567. "license": [
  5568. "MIT"
  5569. ],
  5570. "authors": [
  5571. {
  5572. "name": "Nicolas Grekas",
  5573. "email": "p@tchwork.com"
  5574. },
  5575. {
  5576. "name": "Symfony Community",
  5577. "homepage": "https://symfony.com/contributors"
  5578. }
  5579. ],
  5580. "description": "Symfony polyfill for intl's grapheme_* functions",
  5581. "homepage": "https://symfony.com",
  5582. "keywords": [
  5583. "compatibility",
  5584. "grapheme",
  5585. "intl",
  5586. "polyfill",
  5587. "portable",
  5588. "shim"
  5589. ],
  5590. "support": {
  5591. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  5592. },
  5593. "funding": [
  5594. {
  5595. "url": "https://symfony.com/sponsor",
  5596. "type": "custom"
  5597. },
  5598. {
  5599. "url": "https://github.com/fabpot",
  5600. "type": "github"
  5601. },
  5602. {
  5603. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5604. "type": "tidelift"
  5605. }
  5606. ],
  5607. "time": "2024-09-09T11:45:10+00:00"
  5608. },
  5609. {
  5610. "name": "symfony/polyfill-intl-idn",
  5611. "version": "v1.31.0",
  5612. "source": {
  5613. "type": "git",
  5614. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5615. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
  5616. },
  5617. "dist": {
  5618. "type": "zip",
  5619. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
  5620. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
  5621. "shasum": ""
  5622. },
  5623. "require": {
  5624. "php": ">=7.2",
  5625. "symfony/polyfill-intl-normalizer": "^1.10"
  5626. },
  5627. "suggest": {
  5628. "ext-intl": "For best performance"
  5629. },
  5630. "type": "library",
  5631. "extra": {
  5632. "thanks": {
  5633. "name": "symfony/polyfill",
  5634. "url": "https://github.com/symfony/polyfill"
  5635. }
  5636. },
  5637. "autoload": {
  5638. "files": [
  5639. "bootstrap.php"
  5640. ],
  5641. "psr-4": {
  5642. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5643. }
  5644. },
  5645. "notification-url": "https://packagist.org/downloads/",
  5646. "license": [
  5647. "MIT"
  5648. ],
  5649. "authors": [
  5650. {
  5651. "name": "Laurent Bassin",
  5652. "email": "laurent@bassin.info"
  5653. },
  5654. {
  5655. "name": "Trevor Rowbotham",
  5656. "email": "trevor.rowbotham@pm.me"
  5657. },
  5658. {
  5659. "name": "Symfony Community",
  5660. "homepage": "https://symfony.com/contributors"
  5661. }
  5662. ],
  5663. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5664. "homepage": "https://symfony.com",
  5665. "keywords": [
  5666. "compatibility",
  5667. "idn",
  5668. "intl",
  5669. "polyfill",
  5670. "portable",
  5671. "shim"
  5672. ],
  5673. "support": {
  5674. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0"
  5675. },
  5676. "funding": [
  5677. {
  5678. "url": "https://symfony.com/sponsor",
  5679. "type": "custom"
  5680. },
  5681. {
  5682. "url": "https://github.com/fabpot",
  5683. "type": "github"
  5684. },
  5685. {
  5686. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5687. "type": "tidelift"
  5688. }
  5689. ],
  5690. "time": "2024-09-09T11:45:10+00:00"
  5691. },
  5692. {
  5693. "name": "symfony/polyfill-intl-normalizer",
  5694. "version": "v1.31.0",
  5695. "source": {
  5696. "type": "git",
  5697. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5698. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  5699. },
  5700. "dist": {
  5701. "type": "zip",
  5702. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  5703. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  5704. "shasum": ""
  5705. },
  5706. "require": {
  5707. "php": ">=7.2"
  5708. },
  5709. "suggest": {
  5710. "ext-intl": "For best performance"
  5711. },
  5712. "type": "library",
  5713. "extra": {
  5714. "thanks": {
  5715. "name": "symfony/polyfill",
  5716. "url": "https://github.com/symfony/polyfill"
  5717. }
  5718. },
  5719. "autoload": {
  5720. "files": [
  5721. "bootstrap.php"
  5722. ],
  5723. "psr-4": {
  5724. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5725. },
  5726. "classmap": [
  5727. "Resources/stubs"
  5728. ]
  5729. },
  5730. "notification-url": "https://packagist.org/downloads/",
  5731. "license": [
  5732. "MIT"
  5733. ],
  5734. "authors": [
  5735. {
  5736. "name": "Nicolas Grekas",
  5737. "email": "p@tchwork.com"
  5738. },
  5739. {
  5740. "name": "Symfony Community",
  5741. "homepage": "https://symfony.com/contributors"
  5742. }
  5743. ],
  5744. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5745. "homepage": "https://symfony.com",
  5746. "keywords": [
  5747. "compatibility",
  5748. "intl",
  5749. "normalizer",
  5750. "polyfill",
  5751. "portable",
  5752. "shim"
  5753. ],
  5754. "support": {
  5755. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  5756. },
  5757. "funding": [
  5758. {
  5759. "url": "https://symfony.com/sponsor",
  5760. "type": "custom"
  5761. },
  5762. {
  5763. "url": "https://github.com/fabpot",
  5764. "type": "github"
  5765. },
  5766. {
  5767. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5768. "type": "tidelift"
  5769. }
  5770. ],
  5771. "time": "2024-09-09T11:45:10+00:00"
  5772. },
  5773. {
  5774. "name": "symfony/polyfill-mbstring",
  5775. "version": "v1.31.0",
  5776. "source": {
  5777. "type": "git",
  5778. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5779. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  5780. },
  5781. "dist": {
  5782. "type": "zip",
  5783. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  5784. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  5785. "shasum": ""
  5786. },
  5787. "require": {
  5788. "php": ">=7.2"
  5789. },
  5790. "provide": {
  5791. "ext-mbstring": "*"
  5792. },
  5793. "suggest": {
  5794. "ext-mbstring": "For best performance"
  5795. },
  5796. "type": "library",
  5797. "extra": {
  5798. "thanks": {
  5799. "name": "symfony/polyfill",
  5800. "url": "https://github.com/symfony/polyfill"
  5801. }
  5802. },
  5803. "autoload": {
  5804. "files": [
  5805. "bootstrap.php"
  5806. ],
  5807. "psr-4": {
  5808. "Symfony\\Polyfill\\Mbstring\\": ""
  5809. }
  5810. },
  5811. "notification-url": "https://packagist.org/downloads/",
  5812. "license": [
  5813. "MIT"
  5814. ],
  5815. "authors": [
  5816. {
  5817. "name": "Nicolas Grekas",
  5818. "email": "p@tchwork.com"
  5819. },
  5820. {
  5821. "name": "Symfony Community",
  5822. "homepage": "https://symfony.com/contributors"
  5823. }
  5824. ],
  5825. "description": "Symfony polyfill for the Mbstring extension",
  5826. "homepage": "https://symfony.com",
  5827. "keywords": [
  5828. "compatibility",
  5829. "mbstring",
  5830. "polyfill",
  5831. "portable",
  5832. "shim"
  5833. ],
  5834. "support": {
  5835. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  5836. },
  5837. "funding": [
  5838. {
  5839. "url": "https://symfony.com/sponsor",
  5840. "type": "custom"
  5841. },
  5842. {
  5843. "url": "https://github.com/fabpot",
  5844. "type": "github"
  5845. },
  5846. {
  5847. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5848. "type": "tidelift"
  5849. }
  5850. ],
  5851. "time": "2024-09-09T11:45:10+00:00"
  5852. },
  5853. {
  5854. "name": "symfony/polyfill-php80",
  5855. "version": "v1.31.0",
  5856. "source": {
  5857. "type": "git",
  5858. "url": "https://github.com/symfony/polyfill-php80.git",
  5859. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  5860. },
  5861. "dist": {
  5862. "type": "zip",
  5863. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  5864. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  5865. "shasum": ""
  5866. },
  5867. "require": {
  5868. "php": ">=7.2"
  5869. },
  5870. "type": "library",
  5871. "extra": {
  5872. "thanks": {
  5873. "name": "symfony/polyfill",
  5874. "url": "https://github.com/symfony/polyfill"
  5875. }
  5876. },
  5877. "autoload": {
  5878. "files": [
  5879. "bootstrap.php"
  5880. ],
  5881. "psr-4": {
  5882. "Symfony\\Polyfill\\Php80\\": ""
  5883. },
  5884. "classmap": [
  5885. "Resources/stubs"
  5886. ]
  5887. },
  5888. "notification-url": "https://packagist.org/downloads/",
  5889. "license": [
  5890. "MIT"
  5891. ],
  5892. "authors": [
  5893. {
  5894. "name": "Ion Bazan",
  5895. "email": "ion.bazan@gmail.com"
  5896. },
  5897. {
  5898. "name": "Nicolas Grekas",
  5899. "email": "p@tchwork.com"
  5900. },
  5901. {
  5902. "name": "Symfony Community",
  5903. "homepage": "https://symfony.com/contributors"
  5904. }
  5905. ],
  5906. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  5907. "homepage": "https://symfony.com",
  5908. "keywords": [
  5909. "compatibility",
  5910. "polyfill",
  5911. "portable",
  5912. "shim"
  5913. ],
  5914. "support": {
  5915. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  5916. },
  5917. "funding": [
  5918. {
  5919. "url": "https://symfony.com/sponsor",
  5920. "type": "custom"
  5921. },
  5922. {
  5923. "url": "https://github.com/fabpot",
  5924. "type": "github"
  5925. },
  5926. {
  5927. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5928. "type": "tidelift"
  5929. }
  5930. ],
  5931. "time": "2024-09-09T11:45:10+00:00"
  5932. },
  5933. {
  5934. "name": "symfony/polyfill-php81",
  5935. "version": "v1.31.0",
  5936. "source": {
  5937. "type": "git",
  5938. "url": "https://github.com/symfony/polyfill-php81.git",
  5939. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  5940. },
  5941. "dist": {
  5942. "type": "zip",
  5943. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  5944. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  5945. "shasum": ""
  5946. },
  5947. "require": {
  5948. "php": ">=7.2"
  5949. },
  5950. "type": "library",
  5951. "extra": {
  5952. "thanks": {
  5953. "name": "symfony/polyfill",
  5954. "url": "https://github.com/symfony/polyfill"
  5955. }
  5956. },
  5957. "autoload": {
  5958. "files": [
  5959. "bootstrap.php"
  5960. ],
  5961. "psr-4": {
  5962. "Symfony\\Polyfill\\Php81\\": ""
  5963. },
  5964. "classmap": [
  5965. "Resources/stubs"
  5966. ]
  5967. },
  5968. "notification-url": "https://packagist.org/downloads/",
  5969. "license": [
  5970. "MIT"
  5971. ],
  5972. "authors": [
  5973. {
  5974. "name": "Nicolas Grekas",
  5975. "email": "p@tchwork.com"
  5976. },
  5977. {
  5978. "name": "Symfony Community",
  5979. "homepage": "https://symfony.com/contributors"
  5980. }
  5981. ],
  5982. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  5983. "homepage": "https://symfony.com",
  5984. "keywords": [
  5985. "compatibility",
  5986. "polyfill",
  5987. "portable",
  5988. "shim"
  5989. ],
  5990. "support": {
  5991. "source": "https://github.com/symfony/polyfill-php81/tree/v1.31.0"
  5992. },
  5993. "funding": [
  5994. {
  5995. "url": "https://symfony.com/sponsor",
  5996. "type": "custom"
  5997. },
  5998. {
  5999. "url": "https://github.com/fabpot",
  6000. "type": "github"
  6001. },
  6002. {
  6003. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6004. "type": "tidelift"
  6005. }
  6006. ],
  6007. "time": "2024-09-09T11:45:10+00:00"
  6008. },
  6009. {
  6010. "name": "symfony/polyfill-php83",
  6011. "version": "v1.31.0",
  6012. "source": {
  6013. "type": "git",
  6014. "url": "https://github.com/symfony/polyfill-php83.git",
  6015. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  6016. },
  6017. "dist": {
  6018. "type": "zip",
  6019. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  6020. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  6021. "shasum": ""
  6022. },
  6023. "require": {
  6024. "php": ">=7.2"
  6025. },
  6026. "type": "library",
  6027. "extra": {
  6028. "thanks": {
  6029. "name": "symfony/polyfill",
  6030. "url": "https://github.com/symfony/polyfill"
  6031. }
  6032. },
  6033. "autoload": {
  6034. "files": [
  6035. "bootstrap.php"
  6036. ],
  6037. "psr-4": {
  6038. "Symfony\\Polyfill\\Php83\\": ""
  6039. },
  6040. "classmap": [
  6041. "Resources/stubs"
  6042. ]
  6043. },
  6044. "notification-url": "https://packagist.org/downloads/",
  6045. "license": [
  6046. "MIT"
  6047. ],
  6048. "authors": [
  6049. {
  6050. "name": "Nicolas Grekas",
  6051. "email": "p@tchwork.com"
  6052. },
  6053. {
  6054. "name": "Symfony Community",
  6055. "homepage": "https://symfony.com/contributors"
  6056. }
  6057. ],
  6058. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  6059. "homepage": "https://symfony.com",
  6060. "keywords": [
  6061. "compatibility",
  6062. "polyfill",
  6063. "portable",
  6064. "shim"
  6065. ],
  6066. "support": {
  6067. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  6068. },
  6069. "funding": [
  6070. {
  6071. "url": "https://symfony.com/sponsor",
  6072. "type": "custom"
  6073. },
  6074. {
  6075. "url": "https://github.com/fabpot",
  6076. "type": "github"
  6077. },
  6078. {
  6079. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6080. "type": "tidelift"
  6081. }
  6082. ],
  6083. "time": "2024-09-09T11:45:10+00:00"
  6084. },
  6085. {
  6086. "name": "symfony/polyfill-uuid",
  6087. "version": "v1.31.0",
  6088. "source": {
  6089. "type": "git",
  6090. "url": "https://github.com/symfony/polyfill-uuid.git",
  6091. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2"
  6092. },
  6093. "dist": {
  6094. "type": "zip",
  6095. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  6096. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  6097. "shasum": ""
  6098. },
  6099. "require": {
  6100. "php": ">=7.2"
  6101. },
  6102. "provide": {
  6103. "ext-uuid": "*"
  6104. },
  6105. "suggest": {
  6106. "ext-uuid": "For best performance"
  6107. },
  6108. "type": "library",
  6109. "extra": {
  6110. "thanks": {
  6111. "name": "symfony/polyfill",
  6112. "url": "https://github.com/symfony/polyfill"
  6113. }
  6114. },
  6115. "autoload": {
  6116. "files": [
  6117. "bootstrap.php"
  6118. ],
  6119. "psr-4": {
  6120. "Symfony\\Polyfill\\Uuid\\": ""
  6121. }
  6122. },
  6123. "notification-url": "https://packagist.org/downloads/",
  6124. "license": [
  6125. "MIT"
  6126. ],
  6127. "authors": [
  6128. {
  6129. "name": "Grégoire Pineau",
  6130. "email": "lyrixx@lyrixx.info"
  6131. },
  6132. {
  6133. "name": "Symfony Community",
  6134. "homepage": "https://symfony.com/contributors"
  6135. }
  6136. ],
  6137. "description": "Symfony polyfill for uuid functions",
  6138. "homepage": "https://symfony.com",
  6139. "keywords": [
  6140. "compatibility",
  6141. "polyfill",
  6142. "portable",
  6143. "uuid"
  6144. ],
  6145. "support": {
  6146. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.31.0"
  6147. },
  6148. "funding": [
  6149. {
  6150. "url": "https://symfony.com/sponsor",
  6151. "type": "custom"
  6152. },
  6153. {
  6154. "url": "https://github.com/fabpot",
  6155. "type": "github"
  6156. },
  6157. {
  6158. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6159. "type": "tidelift"
  6160. }
  6161. ],
  6162. "time": "2024-09-09T11:45:10+00:00"
  6163. },
  6164. {
  6165. "name": "symfony/process",
  6166. "version": "v7.1.5",
  6167. "source": {
  6168. "type": "git",
  6169. "url": "https://github.com/symfony/process.git",
  6170. "reference": "5c03ee6369281177f07f7c68252a280beccba847"
  6171. },
  6172. "dist": {
  6173. "type": "zip",
  6174. "url": "https://api.github.com/repos/symfony/process/zipball/5c03ee6369281177f07f7c68252a280beccba847",
  6175. "reference": "5c03ee6369281177f07f7c68252a280beccba847",
  6176. "shasum": ""
  6177. },
  6178. "require": {
  6179. "php": ">=8.2"
  6180. },
  6181. "type": "library",
  6182. "autoload": {
  6183. "psr-4": {
  6184. "Symfony\\Component\\Process\\": ""
  6185. },
  6186. "exclude-from-classmap": [
  6187. "/Tests/"
  6188. ]
  6189. },
  6190. "notification-url": "https://packagist.org/downloads/",
  6191. "license": [
  6192. "MIT"
  6193. ],
  6194. "authors": [
  6195. {
  6196. "name": "Fabien Potencier",
  6197. "email": "fabien@symfony.com"
  6198. },
  6199. {
  6200. "name": "Symfony Community",
  6201. "homepage": "https://symfony.com/contributors"
  6202. }
  6203. ],
  6204. "description": "Executes commands in sub-processes",
  6205. "homepage": "https://symfony.com",
  6206. "support": {
  6207. "source": "https://github.com/symfony/process/tree/v7.1.5"
  6208. },
  6209. "funding": [
  6210. {
  6211. "url": "https://symfony.com/sponsor",
  6212. "type": "custom"
  6213. },
  6214. {
  6215. "url": "https://github.com/fabpot",
  6216. "type": "github"
  6217. },
  6218. {
  6219. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6220. "type": "tidelift"
  6221. }
  6222. ],
  6223. "time": "2024-09-19T21:48:23+00:00"
  6224. },
  6225. {
  6226. "name": "symfony/psr-http-message-bridge",
  6227. "version": "v7.1.4",
  6228. "source": {
  6229. "type": "git",
  6230. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  6231. "reference": "405a7bcd872f1563966f64be19f1362d94ce71ab"
  6232. },
  6233. "dist": {
  6234. "type": "zip",
  6235. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/405a7bcd872f1563966f64be19f1362d94ce71ab",
  6236. "reference": "405a7bcd872f1563966f64be19f1362d94ce71ab",
  6237. "shasum": ""
  6238. },
  6239. "require": {
  6240. "php": ">=8.2",
  6241. "psr/http-message": "^1.0|^2.0",
  6242. "symfony/http-foundation": "^6.4|^7.0"
  6243. },
  6244. "conflict": {
  6245. "php-http/discovery": "<1.15",
  6246. "symfony/http-kernel": "<6.4"
  6247. },
  6248. "require-dev": {
  6249. "nyholm/psr7": "^1.1",
  6250. "php-http/discovery": "^1.15",
  6251. "psr/log": "^1.1.4|^2|^3",
  6252. "symfony/browser-kit": "^6.4|^7.0",
  6253. "symfony/config": "^6.4|^7.0",
  6254. "symfony/event-dispatcher": "^6.4|^7.0",
  6255. "symfony/framework-bundle": "^6.4|^7.0",
  6256. "symfony/http-kernel": "^6.4|^7.0"
  6257. },
  6258. "type": "symfony-bridge",
  6259. "autoload": {
  6260. "psr-4": {
  6261. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  6262. },
  6263. "exclude-from-classmap": [
  6264. "/Tests/"
  6265. ]
  6266. },
  6267. "notification-url": "https://packagist.org/downloads/",
  6268. "license": [
  6269. "MIT"
  6270. ],
  6271. "authors": [
  6272. {
  6273. "name": "Fabien Potencier",
  6274. "email": "fabien@symfony.com"
  6275. },
  6276. {
  6277. "name": "Symfony Community",
  6278. "homepage": "https://symfony.com/contributors"
  6279. }
  6280. ],
  6281. "description": "PSR HTTP message bridge",
  6282. "homepage": "https://symfony.com",
  6283. "keywords": [
  6284. "http",
  6285. "http-message",
  6286. "psr-17",
  6287. "psr-7"
  6288. ],
  6289. "support": {
  6290. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v7.1.4"
  6291. },
  6292. "funding": [
  6293. {
  6294. "url": "https://symfony.com/sponsor",
  6295. "type": "custom"
  6296. },
  6297. {
  6298. "url": "https://github.com/fabpot",
  6299. "type": "github"
  6300. },
  6301. {
  6302. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6303. "type": "tidelift"
  6304. }
  6305. ],
  6306. "time": "2024-08-15T22:48:53+00:00"
  6307. },
  6308. {
  6309. "name": "symfony/routing",
  6310. "version": "v7.1.4",
  6311. "source": {
  6312. "type": "git",
  6313. "url": "https://github.com/symfony/routing.git",
  6314. "reference": "1500aee0094a3ce1c92626ed8cf3c2037e86f5a7"
  6315. },
  6316. "dist": {
  6317. "type": "zip",
  6318. "url": "https://api.github.com/repos/symfony/routing/zipball/1500aee0094a3ce1c92626ed8cf3c2037e86f5a7",
  6319. "reference": "1500aee0094a3ce1c92626ed8cf3c2037e86f5a7",
  6320. "shasum": ""
  6321. },
  6322. "require": {
  6323. "php": ">=8.2",
  6324. "symfony/deprecation-contracts": "^2.5|^3"
  6325. },
  6326. "conflict": {
  6327. "symfony/config": "<6.4",
  6328. "symfony/dependency-injection": "<6.4",
  6329. "symfony/yaml": "<6.4"
  6330. },
  6331. "require-dev": {
  6332. "psr/log": "^1|^2|^3",
  6333. "symfony/config": "^6.4|^7.0",
  6334. "symfony/dependency-injection": "^6.4|^7.0",
  6335. "symfony/expression-language": "^6.4|^7.0",
  6336. "symfony/http-foundation": "^6.4|^7.0",
  6337. "symfony/yaml": "^6.4|^7.0"
  6338. },
  6339. "type": "library",
  6340. "autoload": {
  6341. "psr-4": {
  6342. "Symfony\\Component\\Routing\\": ""
  6343. },
  6344. "exclude-from-classmap": [
  6345. "/Tests/"
  6346. ]
  6347. },
  6348. "notification-url": "https://packagist.org/downloads/",
  6349. "license": [
  6350. "MIT"
  6351. ],
  6352. "authors": [
  6353. {
  6354. "name": "Fabien Potencier",
  6355. "email": "fabien@symfony.com"
  6356. },
  6357. {
  6358. "name": "Symfony Community",
  6359. "homepage": "https://symfony.com/contributors"
  6360. }
  6361. ],
  6362. "description": "Maps an HTTP request to a set of configuration variables",
  6363. "homepage": "https://symfony.com",
  6364. "keywords": [
  6365. "router",
  6366. "routing",
  6367. "uri",
  6368. "url"
  6369. ],
  6370. "support": {
  6371. "source": "https://github.com/symfony/routing/tree/v7.1.4"
  6372. },
  6373. "funding": [
  6374. {
  6375. "url": "https://symfony.com/sponsor",
  6376. "type": "custom"
  6377. },
  6378. {
  6379. "url": "https://github.com/fabpot",
  6380. "type": "github"
  6381. },
  6382. {
  6383. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6384. "type": "tidelift"
  6385. }
  6386. ],
  6387. "time": "2024-08-29T08:16:25+00:00"
  6388. },
  6389. {
  6390. "name": "symfony/service-contracts",
  6391. "version": "v3.5.0",
  6392. "source": {
  6393. "type": "git",
  6394. "url": "https://github.com/symfony/service-contracts.git",
  6395. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  6396. },
  6397. "dist": {
  6398. "type": "zip",
  6399. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  6400. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  6401. "shasum": ""
  6402. },
  6403. "require": {
  6404. "php": ">=8.1",
  6405. "psr/container": "^1.1|^2.0",
  6406. "symfony/deprecation-contracts": "^2.5|^3"
  6407. },
  6408. "conflict": {
  6409. "ext-psr": "<1.1|>=2"
  6410. },
  6411. "type": "library",
  6412. "extra": {
  6413. "branch-alias": {
  6414. "dev-main": "3.5-dev"
  6415. },
  6416. "thanks": {
  6417. "name": "symfony/contracts",
  6418. "url": "https://github.com/symfony/contracts"
  6419. }
  6420. },
  6421. "autoload": {
  6422. "psr-4": {
  6423. "Symfony\\Contracts\\Service\\": ""
  6424. },
  6425. "exclude-from-classmap": [
  6426. "/Test/"
  6427. ]
  6428. },
  6429. "notification-url": "https://packagist.org/downloads/",
  6430. "license": [
  6431. "MIT"
  6432. ],
  6433. "authors": [
  6434. {
  6435. "name": "Nicolas Grekas",
  6436. "email": "p@tchwork.com"
  6437. },
  6438. {
  6439. "name": "Symfony Community",
  6440. "homepage": "https://symfony.com/contributors"
  6441. }
  6442. ],
  6443. "description": "Generic abstractions related to writing services",
  6444. "homepage": "https://symfony.com",
  6445. "keywords": [
  6446. "abstractions",
  6447. "contracts",
  6448. "decoupling",
  6449. "interfaces",
  6450. "interoperability",
  6451. "standards"
  6452. ],
  6453. "support": {
  6454. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  6455. },
  6456. "funding": [
  6457. {
  6458. "url": "https://symfony.com/sponsor",
  6459. "type": "custom"
  6460. },
  6461. {
  6462. "url": "https://github.com/fabpot",
  6463. "type": "github"
  6464. },
  6465. {
  6466. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6467. "type": "tidelift"
  6468. }
  6469. ],
  6470. "time": "2024-04-18T09:32:20+00:00"
  6471. },
  6472. {
  6473. "name": "symfony/string",
  6474. "version": "v7.1.5",
  6475. "source": {
  6476. "type": "git",
  6477. "url": "https://github.com/symfony/string.git",
  6478. "reference": "d66f9c343fa894ec2037cc928381df90a7ad4306"
  6479. },
  6480. "dist": {
  6481. "type": "zip",
  6482. "url": "https://api.github.com/repos/symfony/string/zipball/d66f9c343fa894ec2037cc928381df90a7ad4306",
  6483. "reference": "d66f9c343fa894ec2037cc928381df90a7ad4306",
  6484. "shasum": ""
  6485. },
  6486. "require": {
  6487. "php": ">=8.2",
  6488. "symfony/polyfill-ctype": "~1.8",
  6489. "symfony/polyfill-intl-grapheme": "~1.0",
  6490. "symfony/polyfill-intl-normalizer": "~1.0",
  6491. "symfony/polyfill-mbstring": "~1.0"
  6492. },
  6493. "conflict": {
  6494. "symfony/translation-contracts": "<2.5"
  6495. },
  6496. "require-dev": {
  6497. "symfony/emoji": "^7.1",
  6498. "symfony/error-handler": "^6.4|^7.0",
  6499. "symfony/http-client": "^6.4|^7.0",
  6500. "symfony/intl": "^6.4|^7.0",
  6501. "symfony/translation-contracts": "^2.5|^3.0",
  6502. "symfony/var-exporter": "^6.4|^7.0"
  6503. },
  6504. "type": "library",
  6505. "autoload": {
  6506. "files": [
  6507. "Resources/functions.php"
  6508. ],
  6509. "psr-4": {
  6510. "Symfony\\Component\\String\\": ""
  6511. },
  6512. "exclude-from-classmap": [
  6513. "/Tests/"
  6514. ]
  6515. },
  6516. "notification-url": "https://packagist.org/downloads/",
  6517. "license": [
  6518. "MIT"
  6519. ],
  6520. "authors": [
  6521. {
  6522. "name": "Nicolas Grekas",
  6523. "email": "p@tchwork.com"
  6524. },
  6525. {
  6526. "name": "Symfony Community",
  6527. "homepage": "https://symfony.com/contributors"
  6528. }
  6529. ],
  6530. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  6531. "homepage": "https://symfony.com",
  6532. "keywords": [
  6533. "grapheme",
  6534. "i18n",
  6535. "string",
  6536. "unicode",
  6537. "utf-8",
  6538. "utf8"
  6539. ],
  6540. "support": {
  6541. "source": "https://github.com/symfony/string/tree/v7.1.5"
  6542. },
  6543. "funding": [
  6544. {
  6545. "url": "https://symfony.com/sponsor",
  6546. "type": "custom"
  6547. },
  6548. {
  6549. "url": "https://github.com/fabpot",
  6550. "type": "github"
  6551. },
  6552. {
  6553. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6554. "type": "tidelift"
  6555. }
  6556. ],
  6557. "time": "2024-09-20T08:28:38+00:00"
  6558. },
  6559. {
  6560. "name": "symfony/translation",
  6561. "version": "v7.1.5",
  6562. "source": {
  6563. "type": "git",
  6564. "url": "https://github.com/symfony/translation.git",
  6565. "reference": "235535e3f84f3dfbdbde0208ede6ca75c3a489ea"
  6566. },
  6567. "dist": {
  6568. "type": "zip",
  6569. "url": "https://api.github.com/repos/symfony/translation/zipball/235535e3f84f3dfbdbde0208ede6ca75c3a489ea",
  6570. "reference": "235535e3f84f3dfbdbde0208ede6ca75c3a489ea",
  6571. "shasum": ""
  6572. },
  6573. "require": {
  6574. "php": ">=8.2",
  6575. "symfony/polyfill-mbstring": "~1.0",
  6576. "symfony/translation-contracts": "^2.5|^3.0"
  6577. },
  6578. "conflict": {
  6579. "symfony/config": "<6.4",
  6580. "symfony/console": "<6.4",
  6581. "symfony/dependency-injection": "<6.4",
  6582. "symfony/http-client-contracts": "<2.5",
  6583. "symfony/http-kernel": "<6.4",
  6584. "symfony/service-contracts": "<2.5",
  6585. "symfony/twig-bundle": "<6.4",
  6586. "symfony/yaml": "<6.4"
  6587. },
  6588. "provide": {
  6589. "symfony/translation-implementation": "2.3|3.0"
  6590. },
  6591. "require-dev": {
  6592. "nikic/php-parser": "^4.18|^5.0",
  6593. "psr/log": "^1|^2|^3",
  6594. "symfony/config": "^6.4|^7.0",
  6595. "symfony/console": "^6.4|^7.0",
  6596. "symfony/dependency-injection": "^6.4|^7.0",
  6597. "symfony/finder": "^6.4|^7.0",
  6598. "symfony/http-client-contracts": "^2.5|^3.0",
  6599. "symfony/http-kernel": "^6.4|^7.0",
  6600. "symfony/intl": "^6.4|^7.0",
  6601. "symfony/polyfill-intl-icu": "^1.21",
  6602. "symfony/routing": "^6.4|^7.0",
  6603. "symfony/service-contracts": "^2.5|^3",
  6604. "symfony/yaml": "^6.4|^7.0"
  6605. },
  6606. "type": "library",
  6607. "autoload": {
  6608. "files": [
  6609. "Resources/functions.php"
  6610. ],
  6611. "psr-4": {
  6612. "Symfony\\Component\\Translation\\": ""
  6613. },
  6614. "exclude-from-classmap": [
  6615. "/Tests/"
  6616. ]
  6617. },
  6618. "notification-url": "https://packagist.org/downloads/",
  6619. "license": [
  6620. "MIT"
  6621. ],
  6622. "authors": [
  6623. {
  6624. "name": "Fabien Potencier",
  6625. "email": "fabien@symfony.com"
  6626. },
  6627. {
  6628. "name": "Symfony Community",
  6629. "homepage": "https://symfony.com/contributors"
  6630. }
  6631. ],
  6632. "description": "Provides tools to internationalize your application",
  6633. "homepage": "https://symfony.com",
  6634. "support": {
  6635. "source": "https://github.com/symfony/translation/tree/v7.1.5"
  6636. },
  6637. "funding": [
  6638. {
  6639. "url": "https://symfony.com/sponsor",
  6640. "type": "custom"
  6641. },
  6642. {
  6643. "url": "https://github.com/fabpot",
  6644. "type": "github"
  6645. },
  6646. {
  6647. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6648. "type": "tidelift"
  6649. }
  6650. ],
  6651. "time": "2024-09-16T06:30:38+00:00"
  6652. },
  6653. {
  6654. "name": "symfony/translation-contracts",
  6655. "version": "v3.5.0",
  6656. "source": {
  6657. "type": "git",
  6658. "url": "https://github.com/symfony/translation-contracts.git",
  6659. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
  6660. },
  6661. "dist": {
  6662. "type": "zip",
  6663. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  6664. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  6665. "shasum": ""
  6666. },
  6667. "require": {
  6668. "php": ">=8.1"
  6669. },
  6670. "type": "library",
  6671. "extra": {
  6672. "branch-alias": {
  6673. "dev-main": "3.5-dev"
  6674. },
  6675. "thanks": {
  6676. "name": "symfony/contracts",
  6677. "url": "https://github.com/symfony/contracts"
  6678. }
  6679. },
  6680. "autoload": {
  6681. "psr-4": {
  6682. "Symfony\\Contracts\\Translation\\": ""
  6683. },
  6684. "exclude-from-classmap": [
  6685. "/Test/"
  6686. ]
  6687. },
  6688. "notification-url": "https://packagist.org/downloads/",
  6689. "license": [
  6690. "MIT"
  6691. ],
  6692. "authors": [
  6693. {
  6694. "name": "Nicolas Grekas",
  6695. "email": "p@tchwork.com"
  6696. },
  6697. {
  6698. "name": "Symfony Community",
  6699. "homepage": "https://symfony.com/contributors"
  6700. }
  6701. ],
  6702. "description": "Generic abstractions related to translation",
  6703. "homepage": "https://symfony.com",
  6704. "keywords": [
  6705. "abstractions",
  6706. "contracts",
  6707. "decoupling",
  6708. "interfaces",
  6709. "interoperability",
  6710. "standards"
  6711. ],
  6712. "support": {
  6713. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
  6714. },
  6715. "funding": [
  6716. {
  6717. "url": "https://symfony.com/sponsor",
  6718. "type": "custom"
  6719. },
  6720. {
  6721. "url": "https://github.com/fabpot",
  6722. "type": "github"
  6723. },
  6724. {
  6725. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6726. "type": "tidelift"
  6727. }
  6728. ],
  6729. "time": "2024-04-18T09:32:20+00:00"
  6730. },
  6731. {
  6732. "name": "symfony/uid",
  6733. "version": "v7.1.5",
  6734. "source": {
  6735. "type": "git",
  6736. "url": "https://github.com/symfony/uid.git",
  6737. "reference": "8c7bb8acb933964055215d89f9a9871df0239317"
  6738. },
  6739. "dist": {
  6740. "type": "zip",
  6741. "url": "https://api.github.com/repos/symfony/uid/zipball/8c7bb8acb933964055215d89f9a9871df0239317",
  6742. "reference": "8c7bb8acb933964055215d89f9a9871df0239317",
  6743. "shasum": ""
  6744. },
  6745. "require": {
  6746. "php": ">=8.2",
  6747. "symfony/polyfill-uuid": "^1.15"
  6748. },
  6749. "require-dev": {
  6750. "symfony/console": "^6.4|^7.0"
  6751. },
  6752. "type": "library",
  6753. "autoload": {
  6754. "psr-4": {
  6755. "Symfony\\Component\\Uid\\": ""
  6756. },
  6757. "exclude-from-classmap": [
  6758. "/Tests/"
  6759. ]
  6760. },
  6761. "notification-url": "https://packagist.org/downloads/",
  6762. "license": [
  6763. "MIT"
  6764. ],
  6765. "authors": [
  6766. {
  6767. "name": "Grégoire Pineau",
  6768. "email": "lyrixx@lyrixx.info"
  6769. },
  6770. {
  6771. "name": "Nicolas Grekas",
  6772. "email": "p@tchwork.com"
  6773. },
  6774. {
  6775. "name": "Symfony Community",
  6776. "homepage": "https://symfony.com/contributors"
  6777. }
  6778. ],
  6779. "description": "Provides an object-oriented API to generate and represent UIDs",
  6780. "homepage": "https://symfony.com",
  6781. "keywords": [
  6782. "UID",
  6783. "ulid",
  6784. "uuid"
  6785. ],
  6786. "support": {
  6787. "source": "https://github.com/symfony/uid/tree/v7.1.5"
  6788. },
  6789. "funding": [
  6790. {
  6791. "url": "https://symfony.com/sponsor",
  6792. "type": "custom"
  6793. },
  6794. {
  6795. "url": "https://github.com/fabpot",
  6796. "type": "github"
  6797. },
  6798. {
  6799. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6800. "type": "tidelift"
  6801. }
  6802. ],
  6803. "time": "2024-09-17T09:16:35+00:00"
  6804. },
  6805. {
  6806. "name": "symfony/var-dumper",
  6807. "version": "v7.1.5",
  6808. "source": {
  6809. "type": "git",
  6810. "url": "https://github.com/symfony/var-dumper.git",
  6811. "reference": "e20e03889539fd4e4211e14d2179226c513c010d"
  6812. },
  6813. "dist": {
  6814. "type": "zip",
  6815. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/e20e03889539fd4e4211e14d2179226c513c010d",
  6816. "reference": "e20e03889539fd4e4211e14d2179226c513c010d",
  6817. "shasum": ""
  6818. },
  6819. "require": {
  6820. "php": ">=8.2",
  6821. "symfony/polyfill-mbstring": "~1.0"
  6822. },
  6823. "conflict": {
  6824. "symfony/console": "<6.4"
  6825. },
  6826. "require-dev": {
  6827. "ext-iconv": "*",
  6828. "symfony/console": "^6.4|^7.0",
  6829. "symfony/http-kernel": "^6.4|^7.0",
  6830. "symfony/process": "^6.4|^7.0",
  6831. "symfony/uid": "^6.4|^7.0",
  6832. "twig/twig": "^3.0.4"
  6833. },
  6834. "bin": [
  6835. "Resources/bin/var-dump-server"
  6836. ],
  6837. "type": "library",
  6838. "autoload": {
  6839. "files": [
  6840. "Resources/functions/dump.php"
  6841. ],
  6842. "psr-4": {
  6843. "Symfony\\Component\\VarDumper\\": ""
  6844. },
  6845. "exclude-from-classmap": [
  6846. "/Tests/"
  6847. ]
  6848. },
  6849. "notification-url": "https://packagist.org/downloads/",
  6850. "license": [
  6851. "MIT"
  6852. ],
  6853. "authors": [
  6854. {
  6855. "name": "Nicolas Grekas",
  6856. "email": "p@tchwork.com"
  6857. },
  6858. {
  6859. "name": "Symfony Community",
  6860. "homepage": "https://symfony.com/contributors"
  6861. }
  6862. ],
  6863. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  6864. "homepage": "https://symfony.com",
  6865. "keywords": [
  6866. "debug",
  6867. "dump"
  6868. ],
  6869. "support": {
  6870. "source": "https://github.com/symfony/var-dumper/tree/v7.1.5"
  6871. },
  6872. "funding": [
  6873. {
  6874. "url": "https://symfony.com/sponsor",
  6875. "type": "custom"
  6876. },
  6877. {
  6878. "url": "https://github.com/fabpot",
  6879. "type": "github"
  6880. },
  6881. {
  6882. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6883. "type": "tidelift"
  6884. }
  6885. ],
  6886. "time": "2024-09-16T10:07:02+00:00"
  6887. },
  6888. {
  6889. "name": "symfony/var-exporter",
  6890. "version": "v7.1.2",
  6891. "source": {
  6892. "type": "git",
  6893. "url": "https://github.com/symfony/var-exporter.git",
  6894. "reference": "b80a669a2264609f07f1667f891dbfca25eba44c"
  6895. },
  6896. "dist": {
  6897. "type": "zip",
  6898. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/b80a669a2264609f07f1667f891dbfca25eba44c",
  6899. "reference": "b80a669a2264609f07f1667f891dbfca25eba44c",
  6900. "shasum": ""
  6901. },
  6902. "require": {
  6903. "php": ">=8.2"
  6904. },
  6905. "require-dev": {
  6906. "symfony/property-access": "^6.4|^7.0",
  6907. "symfony/serializer": "^6.4|^7.0",
  6908. "symfony/var-dumper": "^6.4|^7.0"
  6909. },
  6910. "type": "library",
  6911. "autoload": {
  6912. "psr-4": {
  6913. "Symfony\\Component\\VarExporter\\": ""
  6914. },
  6915. "exclude-from-classmap": [
  6916. "/Tests/"
  6917. ]
  6918. },
  6919. "notification-url": "https://packagist.org/downloads/",
  6920. "license": [
  6921. "MIT"
  6922. ],
  6923. "authors": [
  6924. {
  6925. "name": "Nicolas Grekas",
  6926. "email": "p@tchwork.com"
  6927. },
  6928. {
  6929. "name": "Symfony Community",
  6930. "homepage": "https://symfony.com/contributors"
  6931. }
  6932. ],
  6933. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  6934. "homepage": "https://symfony.com",
  6935. "keywords": [
  6936. "clone",
  6937. "construct",
  6938. "export",
  6939. "hydrate",
  6940. "instantiate",
  6941. "lazy-loading",
  6942. "proxy",
  6943. "serialize"
  6944. ],
  6945. "support": {
  6946. "source": "https://github.com/symfony/var-exporter/tree/v7.1.2"
  6947. },
  6948. "funding": [
  6949. {
  6950. "url": "https://symfony.com/sponsor",
  6951. "type": "custom"
  6952. },
  6953. {
  6954. "url": "https://github.com/fabpot",
  6955. "type": "github"
  6956. },
  6957. {
  6958. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6959. "type": "tidelift"
  6960. }
  6961. ],
  6962. "time": "2024-06-28T08:00:31+00:00"
  6963. },
  6964. {
  6965. "name": "thenorthmemory/xml",
  6966. "version": "1.1.1",
  6967. "source": {
  6968. "type": "git",
  6969. "url": "https://github.com/TheNorthMemory/xml.git",
  6970. "reference": "6f50c63450a0b098772423f8bdc3c4ad2c4c30bb"
  6971. },
  6972. "dist": {
  6973. "type": "zip",
  6974. "url": "https://api.github.com/repos/TheNorthMemory/xml/zipball/6f50c63450a0b098772423f8bdc3c4ad2c4c30bb",
  6975. "reference": "6f50c63450a0b098772423f8bdc3c4ad2c4c30bb",
  6976. "shasum": ""
  6977. },
  6978. "require": {
  6979. "ext-libxml": "*",
  6980. "ext-simplexml": "*",
  6981. "php": ">=7.1.2"
  6982. },
  6983. "require-dev": {
  6984. "phpstan/phpstan": "^0.12.89 || ^1.0",
  6985. "phpunit/phpunit": "^7.5 || ^8.5.16 || ^9.3.5"
  6986. },
  6987. "type": "library",
  6988. "autoload": {
  6989. "psr-4": {
  6990. "TheNorthMemory\\Xml\\": "src/"
  6991. }
  6992. },
  6993. "notification-url": "https://packagist.org/downloads/",
  6994. "license": [
  6995. "Apache-2.0"
  6996. ],
  6997. "authors": [
  6998. {
  6999. "name": "James ZHANG",
  7000. "homepage": "https://github.com/TheNorthMemory"
  7001. }
  7002. ],
  7003. "description": "A wrapper of the XML parser and builder",
  7004. "homepage": "https://github.com/TheNorthMemory/xml",
  7005. "keywords": [
  7006. "xml-builder",
  7007. "xml-parser"
  7008. ],
  7009. "support": {
  7010. "issues": "https://github.com/TheNorthMemory/xml/issues",
  7011. "source": "https://github.com/TheNorthMemory/xml/tree/1.1.1"
  7012. },
  7013. "time": "2023-01-15T06:01:13+00:00"
  7014. },
  7015. {
  7016. "name": "tijsverkoyen/css-to-inline-styles",
  7017. "version": "v2.2.7",
  7018. "source": {
  7019. "type": "git",
  7020. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7021. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb"
  7022. },
  7023. "dist": {
  7024. "type": "zip",
  7025. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/83ee6f38df0a63106a9e4536e3060458b74ccedb",
  7026. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb",
  7027. "shasum": ""
  7028. },
  7029. "require": {
  7030. "ext-dom": "*",
  7031. "ext-libxml": "*",
  7032. "php": "^5.5 || ^7.0 || ^8.0",
  7033. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0"
  7034. },
  7035. "require-dev": {
  7036. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  7037. },
  7038. "type": "library",
  7039. "extra": {
  7040. "branch-alias": {
  7041. "dev-master": "2.2.x-dev"
  7042. }
  7043. },
  7044. "autoload": {
  7045. "psr-4": {
  7046. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7047. }
  7048. },
  7049. "notification-url": "https://packagist.org/downloads/",
  7050. "license": [
  7051. "BSD-3-Clause"
  7052. ],
  7053. "authors": [
  7054. {
  7055. "name": "Tijs Verkoyen",
  7056. "email": "css_to_inline_styles@verkoyen.eu",
  7057. "role": "Developer"
  7058. }
  7059. ],
  7060. "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.",
  7061. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7062. "support": {
  7063. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7064. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.2.7"
  7065. },
  7066. "time": "2023-12-08T13:03:43+00:00"
  7067. },
  7068. {
  7069. "name": "vlucas/phpdotenv",
  7070. "version": "v5.6.1",
  7071. "source": {
  7072. "type": "git",
  7073. "url": "https://github.com/vlucas/phpdotenv.git",
  7074. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  7075. },
  7076. "dist": {
  7077. "type": "zip",
  7078. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7079. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7080. "shasum": ""
  7081. },
  7082. "require": {
  7083. "ext-pcre": "*",
  7084. "graham-campbell/result-type": "^1.1.3",
  7085. "php": "^7.2.5 || ^8.0",
  7086. "phpoption/phpoption": "^1.9.3",
  7087. "symfony/polyfill-ctype": "^1.24",
  7088. "symfony/polyfill-mbstring": "^1.24",
  7089. "symfony/polyfill-php80": "^1.24"
  7090. },
  7091. "require-dev": {
  7092. "bamarni/composer-bin-plugin": "^1.8.2",
  7093. "ext-filter": "*",
  7094. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  7095. },
  7096. "suggest": {
  7097. "ext-filter": "Required to use the boolean validator."
  7098. },
  7099. "type": "library",
  7100. "extra": {
  7101. "bamarni-bin": {
  7102. "bin-links": true,
  7103. "forward-command": false
  7104. },
  7105. "branch-alias": {
  7106. "dev-master": "5.6-dev"
  7107. }
  7108. },
  7109. "autoload": {
  7110. "psr-4": {
  7111. "Dotenv\\": "src/"
  7112. }
  7113. },
  7114. "notification-url": "https://packagist.org/downloads/",
  7115. "license": [
  7116. "BSD-3-Clause"
  7117. ],
  7118. "authors": [
  7119. {
  7120. "name": "Graham Campbell",
  7121. "email": "hello@gjcampbell.co.uk",
  7122. "homepage": "https://github.com/GrahamCampbell"
  7123. },
  7124. {
  7125. "name": "Vance Lucas",
  7126. "email": "vance@vancelucas.com",
  7127. "homepage": "https://github.com/vlucas"
  7128. }
  7129. ],
  7130. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7131. "keywords": [
  7132. "dotenv",
  7133. "env",
  7134. "environment"
  7135. ],
  7136. "support": {
  7137. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7138. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  7139. },
  7140. "funding": [
  7141. {
  7142. "url": "https://github.com/GrahamCampbell",
  7143. "type": "github"
  7144. },
  7145. {
  7146. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7147. "type": "tidelift"
  7148. }
  7149. ],
  7150. "time": "2024-07-20T21:52:34+00:00"
  7151. },
  7152. {
  7153. "name": "voku/portable-ascii",
  7154. "version": "2.0.1",
  7155. "source": {
  7156. "type": "git",
  7157. "url": "https://github.com/voku/portable-ascii.git",
  7158. "reference": "b56450eed252f6801410d810c8e1727224ae0743"
  7159. },
  7160. "dist": {
  7161. "type": "zip",
  7162. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743",
  7163. "reference": "b56450eed252f6801410d810c8e1727224ae0743",
  7164. "shasum": ""
  7165. },
  7166. "require": {
  7167. "php": ">=7.0.0"
  7168. },
  7169. "require-dev": {
  7170. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  7171. },
  7172. "suggest": {
  7173. "ext-intl": "Use Intl for transliterator_transliterate() support"
  7174. },
  7175. "type": "library",
  7176. "autoload": {
  7177. "psr-4": {
  7178. "voku\\": "src/voku/"
  7179. }
  7180. },
  7181. "notification-url": "https://packagist.org/downloads/",
  7182. "license": [
  7183. "MIT"
  7184. ],
  7185. "authors": [
  7186. {
  7187. "name": "Lars Moelleken",
  7188. "homepage": "http://www.moelleken.org/"
  7189. }
  7190. ],
  7191. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  7192. "homepage": "https://github.com/voku/portable-ascii",
  7193. "keywords": [
  7194. "ascii",
  7195. "clean",
  7196. "php"
  7197. ],
  7198. "support": {
  7199. "issues": "https://github.com/voku/portable-ascii/issues",
  7200. "source": "https://github.com/voku/portable-ascii/tree/2.0.1"
  7201. },
  7202. "funding": [
  7203. {
  7204. "url": "https://www.paypal.me/moelleken",
  7205. "type": "custom"
  7206. },
  7207. {
  7208. "url": "https://github.com/voku",
  7209. "type": "github"
  7210. },
  7211. {
  7212. "url": "https://opencollective.com/portable-ascii",
  7213. "type": "open_collective"
  7214. },
  7215. {
  7216. "url": "https://www.patreon.com/voku",
  7217. "type": "patreon"
  7218. },
  7219. {
  7220. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  7221. "type": "tidelift"
  7222. }
  7223. ],
  7224. "time": "2022-03-08T17:03:00+00:00"
  7225. },
  7226. {
  7227. "name": "w7corp/easywechat",
  7228. "version": "6.15.4",
  7229. "source": {
  7230. "type": "git",
  7231. "url": "https://github.com/w7corp/easywechat.git",
  7232. "reference": "3299422c387407b231de4dd293770b917f288c2b"
  7233. },
  7234. "dist": {
  7235. "type": "zip",
  7236. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/3299422c387407b231de4dd293770b917f288c2b",
  7237. "reference": "3299422c387407b231de4dd293770b917f288c2b",
  7238. "shasum": ""
  7239. },
  7240. "require": {
  7241. "ext-curl": "*",
  7242. "ext-fileinfo": "*",
  7243. "ext-libxml": "*",
  7244. "ext-openssl": "*",
  7245. "ext-simplexml": "*",
  7246. "ext-sodium": "*",
  7247. "nyholm/psr7": "^1.5",
  7248. "nyholm/psr7-server": "^1.0",
  7249. "overtrue/socialite": "^3.5.4|^4.0.1",
  7250. "php": ">=8.0.2",
  7251. "psr/http-client": "^1.0",
  7252. "psr/simple-cache": "^1.0|^2.0|^3.0",
  7253. "symfony/cache": "^5.4|^6.0|^7.0",
  7254. "symfony/http-client": "^5.4|^6.0|^7.0",
  7255. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  7256. "symfony/mime": "^5.4|^6.0|^7.0",
  7257. "symfony/polyfill-php81": "^1.25",
  7258. "symfony/psr-http-message-bridge": "^2.1.2|^6.4.0|^7.1",
  7259. "thenorthmemory/xml": "^1.0"
  7260. },
  7261. "require-dev": {
  7262. "jetbrains/phpstorm-attributes": "^1.0",
  7263. "laravel/pint": "^1.2",
  7264. "mikey179/vfsstream": "^1.6",
  7265. "mockery/mockery": "^1.4.4",
  7266. "phpstan/phpstan": "^1.0",
  7267. "phpunit/phpunit": "^9.5",
  7268. "symfony/var-dumper": "^5.2"
  7269. },
  7270. "type": "library",
  7271. "autoload": {
  7272. "psr-4": {
  7273. "EasyWeChat\\": "src/"
  7274. }
  7275. },
  7276. "notification-url": "https://packagist.org/downloads/",
  7277. "license": [
  7278. "MIT"
  7279. ],
  7280. "authors": [
  7281. {
  7282. "name": "overtrue",
  7283. "email": "anzhengchao@gmail.com"
  7284. }
  7285. ],
  7286. "description": "微信SDK",
  7287. "keywords": [
  7288. "easywechat",
  7289. "sdk",
  7290. "wechat",
  7291. "weixin",
  7292. "weixin-sdk"
  7293. ],
  7294. "support": {
  7295. "issues": "https://github.com/w7corp/easywechat/issues",
  7296. "source": "https://github.com/w7corp/easywechat/tree/6.15.4"
  7297. },
  7298. "funding": [
  7299. {
  7300. "url": "https://github.com/overtrue",
  7301. "type": "github"
  7302. }
  7303. ],
  7304. "time": "2024-10-09T07:07:09+00:00"
  7305. },
  7306. {
  7307. "name": "webmozart/assert",
  7308. "version": "1.11.0",
  7309. "source": {
  7310. "type": "git",
  7311. "url": "https://github.com/webmozarts/assert.git",
  7312. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  7313. },
  7314. "dist": {
  7315. "type": "zip",
  7316. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7317. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7318. "shasum": ""
  7319. },
  7320. "require": {
  7321. "ext-ctype": "*",
  7322. "php": "^7.2 || ^8.0"
  7323. },
  7324. "conflict": {
  7325. "phpstan/phpstan": "<0.12.20",
  7326. "vimeo/psalm": "<4.6.1 || 4.6.2"
  7327. },
  7328. "require-dev": {
  7329. "phpunit/phpunit": "^8.5.13"
  7330. },
  7331. "type": "library",
  7332. "extra": {
  7333. "branch-alias": {
  7334. "dev-master": "1.10-dev"
  7335. }
  7336. },
  7337. "autoload": {
  7338. "psr-4": {
  7339. "Webmozart\\Assert\\": "src/"
  7340. }
  7341. },
  7342. "notification-url": "https://packagist.org/downloads/",
  7343. "license": [
  7344. "MIT"
  7345. ],
  7346. "authors": [
  7347. {
  7348. "name": "Bernhard Schussek",
  7349. "email": "bschussek@gmail.com"
  7350. }
  7351. ],
  7352. "description": "Assertions to validate method input/output with nice error messages.",
  7353. "keywords": [
  7354. "assert",
  7355. "check",
  7356. "validate"
  7357. ],
  7358. "support": {
  7359. "issues": "https://github.com/webmozarts/assert/issues",
  7360. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  7361. },
  7362. "time": "2022-06-03T18:03:27+00:00"
  7363. }
  7364. ],
  7365. "packages-dev": [
  7366. {
  7367. "name": "fakerphp/faker",
  7368. "version": "v1.23.1",
  7369. "source": {
  7370. "type": "git",
  7371. "url": "https://github.com/FakerPHP/Faker.git",
  7372. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b"
  7373. },
  7374. "dist": {
  7375. "type": "zip",
  7376. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/bfb4fe148adbf78eff521199619b93a52ae3554b",
  7377. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b",
  7378. "shasum": ""
  7379. },
  7380. "require": {
  7381. "php": "^7.4 || ^8.0",
  7382. "psr/container": "^1.0 || ^2.0",
  7383. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  7384. },
  7385. "conflict": {
  7386. "fzaninotto/faker": "*"
  7387. },
  7388. "require-dev": {
  7389. "bamarni/composer-bin-plugin": "^1.4.1",
  7390. "doctrine/persistence": "^1.3 || ^2.0",
  7391. "ext-intl": "*",
  7392. "phpunit/phpunit": "^9.5.26",
  7393. "symfony/phpunit-bridge": "^5.4.16"
  7394. },
  7395. "suggest": {
  7396. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  7397. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  7398. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  7399. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  7400. "ext-mbstring": "Required for multibyte Unicode string functionality."
  7401. },
  7402. "type": "library",
  7403. "autoload": {
  7404. "psr-4": {
  7405. "Faker\\": "src/Faker/"
  7406. }
  7407. },
  7408. "notification-url": "https://packagist.org/downloads/",
  7409. "license": [
  7410. "MIT"
  7411. ],
  7412. "authors": [
  7413. {
  7414. "name": "François Zaninotto"
  7415. }
  7416. ],
  7417. "description": "Faker is a PHP library that generates fake data for you.",
  7418. "keywords": [
  7419. "data",
  7420. "faker",
  7421. "fixtures"
  7422. ],
  7423. "support": {
  7424. "issues": "https://github.com/FakerPHP/Faker/issues",
  7425. "source": "https://github.com/FakerPHP/Faker/tree/v1.23.1"
  7426. },
  7427. "time": "2024-01-02T13:46:09+00:00"
  7428. },
  7429. {
  7430. "name": "filp/whoops",
  7431. "version": "2.16.0",
  7432. "source": {
  7433. "type": "git",
  7434. "url": "https://github.com/filp/whoops.git",
  7435. "reference": "befcdc0e5dce67252aa6322d82424be928214fa2"
  7436. },
  7437. "dist": {
  7438. "type": "zip",
  7439. "url": "https://api.github.com/repos/filp/whoops/zipball/befcdc0e5dce67252aa6322d82424be928214fa2",
  7440. "reference": "befcdc0e5dce67252aa6322d82424be928214fa2",
  7441. "shasum": ""
  7442. },
  7443. "require": {
  7444. "php": "^7.1 || ^8.0",
  7445. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  7446. },
  7447. "require-dev": {
  7448. "mockery/mockery": "^1.0",
  7449. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.3",
  7450. "symfony/var-dumper": "^4.0 || ^5.0"
  7451. },
  7452. "suggest": {
  7453. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  7454. "whoops/soap": "Formats errors as SOAP responses"
  7455. },
  7456. "type": "library",
  7457. "extra": {
  7458. "branch-alias": {
  7459. "dev-master": "2.7-dev"
  7460. }
  7461. },
  7462. "autoload": {
  7463. "psr-4": {
  7464. "Whoops\\": "src/Whoops/"
  7465. }
  7466. },
  7467. "notification-url": "https://packagist.org/downloads/",
  7468. "license": [
  7469. "MIT"
  7470. ],
  7471. "authors": [
  7472. {
  7473. "name": "Filipe Dobreira",
  7474. "homepage": "https://github.com/filp",
  7475. "role": "Developer"
  7476. }
  7477. ],
  7478. "description": "php error handling for cool kids",
  7479. "homepage": "https://filp.github.io/whoops/",
  7480. "keywords": [
  7481. "error",
  7482. "exception",
  7483. "handling",
  7484. "library",
  7485. "throwable",
  7486. "whoops"
  7487. ],
  7488. "support": {
  7489. "issues": "https://github.com/filp/whoops/issues",
  7490. "source": "https://github.com/filp/whoops/tree/2.16.0"
  7491. },
  7492. "funding": [
  7493. {
  7494. "url": "https://github.com/denis-sokolov",
  7495. "type": "github"
  7496. }
  7497. ],
  7498. "time": "2024-09-25T12:00:00+00:00"
  7499. },
  7500. {
  7501. "name": "hamcrest/hamcrest-php",
  7502. "version": "v2.0.1",
  7503. "source": {
  7504. "type": "git",
  7505. "url": "https://github.com/hamcrest/hamcrest-php.git",
  7506. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  7507. },
  7508. "dist": {
  7509. "type": "zip",
  7510. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7511. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7512. "shasum": ""
  7513. },
  7514. "require": {
  7515. "php": "^5.3|^7.0|^8.0"
  7516. },
  7517. "replace": {
  7518. "cordoval/hamcrest-php": "*",
  7519. "davedevelopment/hamcrest-php": "*",
  7520. "kodova/hamcrest-php": "*"
  7521. },
  7522. "require-dev": {
  7523. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  7524. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  7525. },
  7526. "type": "library",
  7527. "extra": {
  7528. "branch-alias": {
  7529. "dev-master": "2.1-dev"
  7530. }
  7531. },
  7532. "autoload": {
  7533. "classmap": [
  7534. "hamcrest"
  7535. ]
  7536. },
  7537. "notification-url": "https://packagist.org/downloads/",
  7538. "license": [
  7539. "BSD-3-Clause"
  7540. ],
  7541. "description": "This is the PHP port of Hamcrest Matchers",
  7542. "keywords": [
  7543. "test"
  7544. ],
  7545. "support": {
  7546. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  7547. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  7548. },
  7549. "time": "2020-07-09T08:09:16+00:00"
  7550. },
  7551. {
  7552. "name": "laravel/breeze",
  7553. "version": "v2.2.2",
  7554. "source": {
  7555. "type": "git",
  7556. "url": "https://github.com/laravel/breeze.git",
  7557. "reference": "1dd612eb9e1c2632a39e6aa6df4e69cd45129dca"
  7558. },
  7559. "dist": {
  7560. "type": "zip",
  7561. "url": "https://api.github.com/repos/laravel/breeze/zipball/1dd612eb9e1c2632a39e6aa6df4e69cd45129dca",
  7562. "reference": "1dd612eb9e1c2632a39e6aa6df4e69cd45129dca",
  7563. "shasum": ""
  7564. },
  7565. "require": {
  7566. "illuminate/console": "^11.0",
  7567. "illuminate/filesystem": "^11.0",
  7568. "illuminate/support": "^11.0",
  7569. "illuminate/validation": "^11.0",
  7570. "php": "^8.2.0",
  7571. "symfony/console": "^7.0"
  7572. },
  7573. "require-dev": {
  7574. "orchestra/testbench": "^9.0",
  7575. "phpstan/phpstan": "^1.10"
  7576. },
  7577. "type": "library",
  7578. "extra": {
  7579. "laravel": {
  7580. "providers": [
  7581. "Laravel\\Breeze\\BreezeServiceProvider"
  7582. ]
  7583. }
  7584. },
  7585. "autoload": {
  7586. "psr-4": {
  7587. "Laravel\\Breeze\\": "src/"
  7588. }
  7589. },
  7590. "notification-url": "https://packagist.org/downloads/",
  7591. "license": [
  7592. "MIT"
  7593. ],
  7594. "authors": [
  7595. {
  7596. "name": "Taylor Otwell",
  7597. "email": "taylor@laravel.com"
  7598. }
  7599. ],
  7600. "description": "Minimal Laravel authentication scaffolding with Blade and Tailwind.",
  7601. "keywords": [
  7602. "auth",
  7603. "laravel"
  7604. ],
  7605. "support": {
  7606. "issues": "https://github.com/laravel/breeze/issues",
  7607. "source": "https://github.com/laravel/breeze"
  7608. },
  7609. "time": "2024-10-06T21:13:27+00:00"
  7610. },
  7611. {
  7612. "name": "laravel/pint",
  7613. "version": "v1.18.1",
  7614. "source": {
  7615. "type": "git",
  7616. "url": "https://github.com/laravel/pint.git",
  7617. "reference": "35c00c05ec43e6b46d295efc0f4386ceb30d50d9"
  7618. },
  7619. "dist": {
  7620. "type": "zip",
  7621. "url": "https://api.github.com/repos/laravel/pint/zipball/35c00c05ec43e6b46d295efc0f4386ceb30d50d9",
  7622. "reference": "35c00c05ec43e6b46d295efc0f4386ceb30d50d9",
  7623. "shasum": ""
  7624. },
  7625. "require": {
  7626. "ext-json": "*",
  7627. "ext-mbstring": "*",
  7628. "ext-tokenizer": "*",
  7629. "ext-xml": "*",
  7630. "php": "^8.1.0"
  7631. },
  7632. "require-dev": {
  7633. "friendsofphp/php-cs-fixer": "^3.64.0",
  7634. "illuminate/view": "^10.48.20",
  7635. "larastan/larastan": "^2.9.8",
  7636. "laravel-zero/framework": "^10.4.0",
  7637. "mockery/mockery": "^1.6.12",
  7638. "nunomaduro/termwind": "^1.15.1",
  7639. "pestphp/pest": "^2.35.1"
  7640. },
  7641. "bin": [
  7642. "builds/pint"
  7643. ],
  7644. "type": "project",
  7645. "autoload": {
  7646. "psr-4": {
  7647. "App\\": "app/",
  7648. "Database\\Seeders\\": "database/seeders/",
  7649. "Database\\Factories\\": "database/factories/"
  7650. }
  7651. },
  7652. "notification-url": "https://packagist.org/downloads/",
  7653. "license": [
  7654. "MIT"
  7655. ],
  7656. "authors": [
  7657. {
  7658. "name": "Nuno Maduro",
  7659. "email": "enunomaduro@gmail.com"
  7660. }
  7661. ],
  7662. "description": "An opinionated code formatter for PHP.",
  7663. "homepage": "https://laravel.com",
  7664. "keywords": [
  7665. "format",
  7666. "formatter",
  7667. "lint",
  7668. "linter",
  7669. "php"
  7670. ],
  7671. "support": {
  7672. "issues": "https://github.com/laravel/pint/issues",
  7673. "source": "https://github.com/laravel/pint"
  7674. },
  7675. "time": "2024-09-24T17:22:50+00:00"
  7676. },
  7677. {
  7678. "name": "laravel/sail",
  7679. "version": "v1.35.0",
  7680. "source": {
  7681. "type": "git",
  7682. "url": "https://github.com/laravel/sail.git",
  7683. "reference": "992bc2d9e52174c79515967f30849d21daa334d8"
  7684. },
  7685. "dist": {
  7686. "type": "zip",
  7687. "url": "https://api.github.com/repos/laravel/sail/zipball/992bc2d9e52174c79515967f30849d21daa334d8",
  7688. "reference": "992bc2d9e52174c79515967f30849d21daa334d8",
  7689. "shasum": ""
  7690. },
  7691. "require": {
  7692. "illuminate/console": "^9.52.16|^10.0|^11.0",
  7693. "illuminate/contracts": "^9.52.16|^10.0|^11.0",
  7694. "illuminate/support": "^9.52.16|^10.0|^11.0",
  7695. "php": "^8.0",
  7696. "symfony/console": "^6.0|^7.0",
  7697. "symfony/yaml": "^6.0|^7.0"
  7698. },
  7699. "require-dev": {
  7700. "orchestra/testbench": "^7.0|^8.0|^9.0",
  7701. "phpstan/phpstan": "^1.10"
  7702. },
  7703. "bin": [
  7704. "bin/sail"
  7705. ],
  7706. "type": "library",
  7707. "extra": {
  7708. "laravel": {
  7709. "providers": [
  7710. "Laravel\\Sail\\SailServiceProvider"
  7711. ]
  7712. }
  7713. },
  7714. "autoload": {
  7715. "psr-4": {
  7716. "Laravel\\Sail\\": "src/"
  7717. }
  7718. },
  7719. "notification-url": "https://packagist.org/downloads/",
  7720. "license": [
  7721. "MIT"
  7722. ],
  7723. "authors": [
  7724. {
  7725. "name": "Taylor Otwell",
  7726. "email": "taylor@laravel.com"
  7727. }
  7728. ],
  7729. "description": "Docker files for running a basic Laravel application.",
  7730. "keywords": [
  7731. "docker",
  7732. "laravel"
  7733. ],
  7734. "support": {
  7735. "issues": "https://github.com/laravel/sail/issues",
  7736. "source": "https://github.com/laravel/sail"
  7737. },
  7738. "time": "2024-10-08T14:45:26+00:00"
  7739. },
  7740. {
  7741. "name": "mockery/mockery",
  7742. "version": "1.6.12",
  7743. "source": {
  7744. "type": "git",
  7745. "url": "https://github.com/mockery/mockery.git",
  7746. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  7747. },
  7748. "dist": {
  7749. "type": "zip",
  7750. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  7751. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  7752. "shasum": ""
  7753. },
  7754. "require": {
  7755. "hamcrest/hamcrest-php": "^2.0.1",
  7756. "lib-pcre": ">=7.0",
  7757. "php": ">=7.3"
  7758. },
  7759. "conflict": {
  7760. "phpunit/phpunit": "<8.0"
  7761. },
  7762. "require-dev": {
  7763. "phpunit/phpunit": "^8.5 || ^9.6.17",
  7764. "symplify/easy-coding-standard": "^12.1.14"
  7765. },
  7766. "type": "library",
  7767. "autoload": {
  7768. "files": [
  7769. "library/helpers.php",
  7770. "library/Mockery.php"
  7771. ],
  7772. "psr-4": {
  7773. "Mockery\\": "library/Mockery"
  7774. }
  7775. },
  7776. "notification-url": "https://packagist.org/downloads/",
  7777. "license": [
  7778. "BSD-3-Clause"
  7779. ],
  7780. "authors": [
  7781. {
  7782. "name": "Pádraic Brady",
  7783. "email": "padraic.brady@gmail.com",
  7784. "homepage": "https://github.com/padraic",
  7785. "role": "Author"
  7786. },
  7787. {
  7788. "name": "Dave Marshall",
  7789. "email": "dave.marshall@atstsolutions.co.uk",
  7790. "homepage": "https://davedevelopment.co.uk",
  7791. "role": "Developer"
  7792. },
  7793. {
  7794. "name": "Nathanael Esayeas",
  7795. "email": "nathanael.esayeas@protonmail.com",
  7796. "homepage": "https://github.com/ghostwriter",
  7797. "role": "Lead Developer"
  7798. }
  7799. ],
  7800. "description": "Mockery is a simple yet flexible PHP mock object framework",
  7801. "homepage": "https://github.com/mockery/mockery",
  7802. "keywords": [
  7803. "BDD",
  7804. "TDD",
  7805. "library",
  7806. "mock",
  7807. "mock objects",
  7808. "mockery",
  7809. "stub",
  7810. "test",
  7811. "test double",
  7812. "testing"
  7813. ],
  7814. "support": {
  7815. "docs": "https://docs.mockery.io/",
  7816. "issues": "https://github.com/mockery/mockery/issues",
  7817. "rss": "https://github.com/mockery/mockery/releases.atom",
  7818. "security": "https://github.com/mockery/mockery/security/advisories",
  7819. "source": "https://github.com/mockery/mockery"
  7820. },
  7821. "time": "2024-05-16T03:13:13+00:00"
  7822. },
  7823. {
  7824. "name": "myclabs/deep-copy",
  7825. "version": "1.12.0",
  7826. "source": {
  7827. "type": "git",
  7828. "url": "https://github.com/myclabs/DeepCopy.git",
  7829. "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c"
  7830. },
  7831. "dist": {
  7832. "type": "zip",
  7833. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c",
  7834. "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c",
  7835. "shasum": ""
  7836. },
  7837. "require": {
  7838. "php": "^7.1 || ^8.0"
  7839. },
  7840. "conflict": {
  7841. "doctrine/collections": "<1.6.8",
  7842. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  7843. },
  7844. "require-dev": {
  7845. "doctrine/collections": "^1.6.8",
  7846. "doctrine/common": "^2.13.3 || ^3.2.2",
  7847. "phpspec/prophecy": "^1.10",
  7848. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  7849. },
  7850. "type": "library",
  7851. "autoload": {
  7852. "files": [
  7853. "src/DeepCopy/deep_copy.php"
  7854. ],
  7855. "psr-4": {
  7856. "DeepCopy\\": "src/DeepCopy/"
  7857. }
  7858. },
  7859. "notification-url": "https://packagist.org/downloads/",
  7860. "license": [
  7861. "MIT"
  7862. ],
  7863. "description": "Create deep copies (clones) of your objects",
  7864. "keywords": [
  7865. "clone",
  7866. "copy",
  7867. "duplicate",
  7868. "object",
  7869. "object graph"
  7870. ],
  7871. "support": {
  7872. "issues": "https://github.com/myclabs/DeepCopy/issues",
  7873. "source": "https://github.com/myclabs/DeepCopy/tree/1.12.0"
  7874. },
  7875. "funding": [
  7876. {
  7877. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  7878. "type": "tidelift"
  7879. }
  7880. ],
  7881. "time": "2024-06-12T14:39:25+00:00"
  7882. },
  7883. {
  7884. "name": "nunomaduro/collision",
  7885. "version": "v8.4.0",
  7886. "source": {
  7887. "type": "git",
  7888. "url": "https://github.com/nunomaduro/collision.git",
  7889. "reference": "e7d1aa8ed753f63fa816932bbc89678238843b4a"
  7890. },
  7891. "dist": {
  7892. "type": "zip",
  7893. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/e7d1aa8ed753f63fa816932bbc89678238843b4a",
  7894. "reference": "e7d1aa8ed753f63fa816932bbc89678238843b4a",
  7895. "shasum": ""
  7896. },
  7897. "require": {
  7898. "filp/whoops": "^2.15.4",
  7899. "nunomaduro/termwind": "^2.0.1",
  7900. "php": "^8.2.0",
  7901. "symfony/console": "^7.1.3"
  7902. },
  7903. "conflict": {
  7904. "laravel/framework": "<11.0.0 || >=12.0.0",
  7905. "phpunit/phpunit": "<10.5.1 || >=12.0.0"
  7906. },
  7907. "require-dev": {
  7908. "larastan/larastan": "^2.9.8",
  7909. "laravel/framework": "^11.19.0",
  7910. "laravel/pint": "^1.17.1",
  7911. "laravel/sail": "^1.31.0",
  7912. "laravel/sanctum": "^4.0.2",
  7913. "laravel/tinker": "^2.9.0",
  7914. "orchestra/testbench-core": "^9.2.3",
  7915. "pestphp/pest": "^2.35.0 || ^3.0.0",
  7916. "sebastian/environment": "^6.1.0 || ^7.0.0"
  7917. },
  7918. "type": "library",
  7919. "extra": {
  7920. "laravel": {
  7921. "providers": [
  7922. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  7923. ]
  7924. },
  7925. "branch-alias": {
  7926. "dev-8.x": "8.x-dev"
  7927. }
  7928. },
  7929. "autoload": {
  7930. "files": [
  7931. "./src/Adapters/Phpunit/Autoload.php"
  7932. ],
  7933. "psr-4": {
  7934. "NunoMaduro\\Collision\\": "src/"
  7935. }
  7936. },
  7937. "notification-url": "https://packagist.org/downloads/",
  7938. "license": [
  7939. "MIT"
  7940. ],
  7941. "authors": [
  7942. {
  7943. "name": "Nuno Maduro",
  7944. "email": "enunomaduro@gmail.com"
  7945. }
  7946. ],
  7947. "description": "Cli error handling for console/command-line PHP applications.",
  7948. "keywords": [
  7949. "artisan",
  7950. "cli",
  7951. "command-line",
  7952. "console",
  7953. "error",
  7954. "handling",
  7955. "laravel",
  7956. "laravel-zero",
  7957. "php",
  7958. "symfony"
  7959. ],
  7960. "support": {
  7961. "issues": "https://github.com/nunomaduro/collision/issues",
  7962. "source": "https://github.com/nunomaduro/collision"
  7963. },
  7964. "funding": [
  7965. {
  7966. "url": "https://www.paypal.com/paypalme/enunomaduro",
  7967. "type": "custom"
  7968. },
  7969. {
  7970. "url": "https://github.com/nunomaduro",
  7971. "type": "github"
  7972. },
  7973. {
  7974. "url": "https://www.patreon.com/nunomaduro",
  7975. "type": "patreon"
  7976. }
  7977. ],
  7978. "time": "2024-08-03T15:32:23+00:00"
  7979. },
  7980. {
  7981. "name": "phar-io/manifest",
  7982. "version": "2.0.4",
  7983. "source": {
  7984. "type": "git",
  7985. "url": "https://github.com/phar-io/manifest.git",
  7986. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  7987. },
  7988. "dist": {
  7989. "type": "zip",
  7990. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  7991. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  7992. "shasum": ""
  7993. },
  7994. "require": {
  7995. "ext-dom": "*",
  7996. "ext-libxml": "*",
  7997. "ext-phar": "*",
  7998. "ext-xmlwriter": "*",
  7999. "phar-io/version": "^3.0.1",
  8000. "php": "^7.2 || ^8.0"
  8001. },
  8002. "type": "library",
  8003. "extra": {
  8004. "branch-alias": {
  8005. "dev-master": "2.0.x-dev"
  8006. }
  8007. },
  8008. "autoload": {
  8009. "classmap": [
  8010. "src/"
  8011. ]
  8012. },
  8013. "notification-url": "https://packagist.org/downloads/",
  8014. "license": [
  8015. "BSD-3-Clause"
  8016. ],
  8017. "authors": [
  8018. {
  8019. "name": "Arne Blankerts",
  8020. "email": "arne@blankerts.de",
  8021. "role": "Developer"
  8022. },
  8023. {
  8024. "name": "Sebastian Heuer",
  8025. "email": "sebastian@phpeople.de",
  8026. "role": "Developer"
  8027. },
  8028. {
  8029. "name": "Sebastian Bergmann",
  8030. "email": "sebastian@phpunit.de",
  8031. "role": "Developer"
  8032. }
  8033. ],
  8034. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8035. "support": {
  8036. "issues": "https://github.com/phar-io/manifest/issues",
  8037. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  8038. },
  8039. "funding": [
  8040. {
  8041. "url": "https://github.com/theseer",
  8042. "type": "github"
  8043. }
  8044. ],
  8045. "time": "2024-03-03T12:33:53+00:00"
  8046. },
  8047. {
  8048. "name": "phar-io/version",
  8049. "version": "3.2.1",
  8050. "source": {
  8051. "type": "git",
  8052. "url": "https://github.com/phar-io/version.git",
  8053. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8054. },
  8055. "dist": {
  8056. "type": "zip",
  8057. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8058. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8059. "shasum": ""
  8060. },
  8061. "require": {
  8062. "php": "^7.2 || ^8.0"
  8063. },
  8064. "type": "library",
  8065. "autoload": {
  8066. "classmap": [
  8067. "src/"
  8068. ]
  8069. },
  8070. "notification-url": "https://packagist.org/downloads/",
  8071. "license": [
  8072. "BSD-3-Clause"
  8073. ],
  8074. "authors": [
  8075. {
  8076. "name": "Arne Blankerts",
  8077. "email": "arne@blankerts.de",
  8078. "role": "Developer"
  8079. },
  8080. {
  8081. "name": "Sebastian Heuer",
  8082. "email": "sebastian@phpeople.de",
  8083. "role": "Developer"
  8084. },
  8085. {
  8086. "name": "Sebastian Bergmann",
  8087. "email": "sebastian@phpunit.de",
  8088. "role": "Developer"
  8089. }
  8090. ],
  8091. "description": "Library for handling version information and constraints",
  8092. "support": {
  8093. "issues": "https://github.com/phar-io/version/issues",
  8094. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8095. },
  8096. "time": "2022-02-21T01:04:05+00:00"
  8097. },
  8098. {
  8099. "name": "phpunit/php-code-coverage",
  8100. "version": "11.0.7",
  8101. "source": {
  8102. "type": "git",
  8103. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8104. "reference": "f7f08030e8811582cc459871d28d6f5a1a4d35ca"
  8105. },
  8106. "dist": {
  8107. "type": "zip",
  8108. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f7f08030e8811582cc459871d28d6f5a1a4d35ca",
  8109. "reference": "f7f08030e8811582cc459871d28d6f5a1a4d35ca",
  8110. "shasum": ""
  8111. },
  8112. "require": {
  8113. "ext-dom": "*",
  8114. "ext-libxml": "*",
  8115. "ext-xmlwriter": "*",
  8116. "nikic/php-parser": "^5.3.1",
  8117. "php": ">=8.2",
  8118. "phpunit/php-file-iterator": "^5.1.0",
  8119. "phpunit/php-text-template": "^4.0.1",
  8120. "sebastian/code-unit-reverse-lookup": "^4.0.1",
  8121. "sebastian/complexity": "^4.0.1",
  8122. "sebastian/environment": "^7.2.0",
  8123. "sebastian/lines-of-code": "^3.0.1",
  8124. "sebastian/version": "^5.0.2",
  8125. "theseer/tokenizer": "^1.2.3"
  8126. },
  8127. "require-dev": {
  8128. "phpunit/phpunit": "^11.4.1"
  8129. },
  8130. "suggest": {
  8131. "ext-pcov": "PHP extension that provides line coverage",
  8132. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8133. },
  8134. "type": "library",
  8135. "extra": {
  8136. "branch-alias": {
  8137. "dev-main": "11.0.x-dev"
  8138. }
  8139. },
  8140. "autoload": {
  8141. "classmap": [
  8142. "src/"
  8143. ]
  8144. },
  8145. "notification-url": "https://packagist.org/downloads/",
  8146. "license": [
  8147. "BSD-3-Clause"
  8148. ],
  8149. "authors": [
  8150. {
  8151. "name": "Sebastian Bergmann",
  8152. "email": "sebastian@phpunit.de",
  8153. "role": "lead"
  8154. }
  8155. ],
  8156. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8157. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8158. "keywords": [
  8159. "coverage",
  8160. "testing",
  8161. "xunit"
  8162. ],
  8163. "support": {
  8164. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8165. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  8166. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/11.0.7"
  8167. },
  8168. "funding": [
  8169. {
  8170. "url": "https://github.com/sebastianbergmann",
  8171. "type": "github"
  8172. }
  8173. ],
  8174. "time": "2024-10-09T06:21:38+00:00"
  8175. },
  8176. {
  8177. "name": "phpunit/php-file-iterator",
  8178. "version": "5.1.0",
  8179. "source": {
  8180. "type": "git",
  8181. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8182. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6"
  8183. },
  8184. "dist": {
  8185. "type": "zip",
  8186. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/118cfaaa8bc5aef3287bf315b6060b1174754af6",
  8187. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6",
  8188. "shasum": ""
  8189. },
  8190. "require": {
  8191. "php": ">=8.2"
  8192. },
  8193. "require-dev": {
  8194. "phpunit/phpunit": "^11.0"
  8195. },
  8196. "type": "library",
  8197. "extra": {
  8198. "branch-alias": {
  8199. "dev-main": "5.0-dev"
  8200. }
  8201. },
  8202. "autoload": {
  8203. "classmap": [
  8204. "src/"
  8205. ]
  8206. },
  8207. "notification-url": "https://packagist.org/downloads/",
  8208. "license": [
  8209. "BSD-3-Clause"
  8210. ],
  8211. "authors": [
  8212. {
  8213. "name": "Sebastian Bergmann",
  8214. "email": "sebastian@phpunit.de",
  8215. "role": "lead"
  8216. }
  8217. ],
  8218. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8219. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8220. "keywords": [
  8221. "filesystem",
  8222. "iterator"
  8223. ],
  8224. "support": {
  8225. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8226. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  8227. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/5.1.0"
  8228. },
  8229. "funding": [
  8230. {
  8231. "url": "https://github.com/sebastianbergmann",
  8232. "type": "github"
  8233. }
  8234. ],
  8235. "time": "2024-08-27T05:02:59+00:00"
  8236. },
  8237. {
  8238. "name": "phpunit/php-invoker",
  8239. "version": "5.0.1",
  8240. "source": {
  8241. "type": "git",
  8242. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8243. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2"
  8244. },
  8245. "dist": {
  8246. "type": "zip",
  8247. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/c1ca3814734c07492b3d4c5f794f4b0995333da2",
  8248. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2",
  8249. "shasum": ""
  8250. },
  8251. "require": {
  8252. "php": ">=8.2"
  8253. },
  8254. "require-dev": {
  8255. "ext-pcntl": "*",
  8256. "phpunit/phpunit": "^11.0"
  8257. },
  8258. "suggest": {
  8259. "ext-pcntl": "*"
  8260. },
  8261. "type": "library",
  8262. "extra": {
  8263. "branch-alias": {
  8264. "dev-main": "5.0-dev"
  8265. }
  8266. },
  8267. "autoload": {
  8268. "classmap": [
  8269. "src/"
  8270. ]
  8271. },
  8272. "notification-url": "https://packagist.org/downloads/",
  8273. "license": [
  8274. "BSD-3-Clause"
  8275. ],
  8276. "authors": [
  8277. {
  8278. "name": "Sebastian Bergmann",
  8279. "email": "sebastian@phpunit.de",
  8280. "role": "lead"
  8281. }
  8282. ],
  8283. "description": "Invoke callables with a timeout",
  8284. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8285. "keywords": [
  8286. "process"
  8287. ],
  8288. "support": {
  8289. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8290. "security": "https://github.com/sebastianbergmann/php-invoker/security/policy",
  8291. "source": "https://github.com/sebastianbergmann/php-invoker/tree/5.0.1"
  8292. },
  8293. "funding": [
  8294. {
  8295. "url": "https://github.com/sebastianbergmann",
  8296. "type": "github"
  8297. }
  8298. ],
  8299. "time": "2024-07-03T05:07:44+00:00"
  8300. },
  8301. {
  8302. "name": "phpunit/php-text-template",
  8303. "version": "4.0.1",
  8304. "source": {
  8305. "type": "git",
  8306. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8307. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964"
  8308. },
  8309. "dist": {
  8310. "type": "zip",
  8311. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  8312. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  8313. "shasum": ""
  8314. },
  8315. "require": {
  8316. "php": ">=8.2"
  8317. },
  8318. "require-dev": {
  8319. "phpunit/phpunit": "^11.0"
  8320. },
  8321. "type": "library",
  8322. "extra": {
  8323. "branch-alias": {
  8324. "dev-main": "4.0-dev"
  8325. }
  8326. },
  8327. "autoload": {
  8328. "classmap": [
  8329. "src/"
  8330. ]
  8331. },
  8332. "notification-url": "https://packagist.org/downloads/",
  8333. "license": [
  8334. "BSD-3-Clause"
  8335. ],
  8336. "authors": [
  8337. {
  8338. "name": "Sebastian Bergmann",
  8339. "email": "sebastian@phpunit.de",
  8340. "role": "lead"
  8341. }
  8342. ],
  8343. "description": "Simple template engine.",
  8344. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8345. "keywords": [
  8346. "template"
  8347. ],
  8348. "support": {
  8349. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8350. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  8351. "source": "https://github.com/sebastianbergmann/php-text-template/tree/4.0.1"
  8352. },
  8353. "funding": [
  8354. {
  8355. "url": "https://github.com/sebastianbergmann",
  8356. "type": "github"
  8357. }
  8358. ],
  8359. "time": "2024-07-03T05:08:43+00:00"
  8360. },
  8361. {
  8362. "name": "phpunit/php-timer",
  8363. "version": "7.0.1",
  8364. "source": {
  8365. "type": "git",
  8366. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8367. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3"
  8368. },
  8369. "dist": {
  8370. "type": "zip",
  8371. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  8372. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  8373. "shasum": ""
  8374. },
  8375. "require": {
  8376. "php": ">=8.2"
  8377. },
  8378. "require-dev": {
  8379. "phpunit/phpunit": "^11.0"
  8380. },
  8381. "type": "library",
  8382. "extra": {
  8383. "branch-alias": {
  8384. "dev-main": "7.0-dev"
  8385. }
  8386. },
  8387. "autoload": {
  8388. "classmap": [
  8389. "src/"
  8390. ]
  8391. },
  8392. "notification-url": "https://packagist.org/downloads/",
  8393. "license": [
  8394. "BSD-3-Clause"
  8395. ],
  8396. "authors": [
  8397. {
  8398. "name": "Sebastian Bergmann",
  8399. "email": "sebastian@phpunit.de",
  8400. "role": "lead"
  8401. }
  8402. ],
  8403. "description": "Utility class for timing",
  8404. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8405. "keywords": [
  8406. "timer"
  8407. ],
  8408. "support": {
  8409. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8410. "security": "https://github.com/sebastianbergmann/php-timer/security/policy",
  8411. "source": "https://github.com/sebastianbergmann/php-timer/tree/7.0.1"
  8412. },
  8413. "funding": [
  8414. {
  8415. "url": "https://github.com/sebastianbergmann",
  8416. "type": "github"
  8417. }
  8418. ],
  8419. "time": "2024-07-03T05:09:35+00:00"
  8420. },
  8421. {
  8422. "name": "phpunit/phpunit",
  8423. "version": "11.4.1",
  8424. "source": {
  8425. "type": "git",
  8426. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8427. "reference": "7875627f15f4da7e7f0823d1f323f7295a77334e"
  8428. },
  8429. "dist": {
  8430. "type": "zip",
  8431. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/7875627f15f4da7e7f0823d1f323f7295a77334e",
  8432. "reference": "7875627f15f4da7e7f0823d1f323f7295a77334e",
  8433. "shasum": ""
  8434. },
  8435. "require": {
  8436. "ext-dom": "*",
  8437. "ext-json": "*",
  8438. "ext-libxml": "*",
  8439. "ext-mbstring": "*",
  8440. "ext-xml": "*",
  8441. "ext-xmlwriter": "*",
  8442. "myclabs/deep-copy": "^1.12.0",
  8443. "phar-io/manifest": "^2.0.4",
  8444. "phar-io/version": "^3.2.1",
  8445. "php": ">=8.2",
  8446. "phpunit/php-code-coverage": "^11.0.6",
  8447. "phpunit/php-file-iterator": "^5.1.0",
  8448. "phpunit/php-invoker": "^5.0.1",
  8449. "phpunit/php-text-template": "^4.0.1",
  8450. "phpunit/php-timer": "^7.0.1",
  8451. "sebastian/cli-parser": "^3.0.2",
  8452. "sebastian/code-unit": "^3.0.1",
  8453. "sebastian/comparator": "^6.1.0",
  8454. "sebastian/diff": "^6.0.2",
  8455. "sebastian/environment": "^7.2.0",
  8456. "sebastian/exporter": "^6.1.3",
  8457. "sebastian/global-state": "^7.0.2",
  8458. "sebastian/object-enumerator": "^6.0.1",
  8459. "sebastian/type": "^5.1.0",
  8460. "sebastian/version": "^5.0.1"
  8461. },
  8462. "suggest": {
  8463. "ext-soap": "To be able to generate mocks based on WSDL files"
  8464. },
  8465. "bin": [
  8466. "phpunit"
  8467. ],
  8468. "type": "library",
  8469. "extra": {
  8470. "branch-alias": {
  8471. "dev-main": "11.4-dev"
  8472. }
  8473. },
  8474. "autoload": {
  8475. "files": [
  8476. "src/Framework/Assert/Functions.php"
  8477. ],
  8478. "classmap": [
  8479. "src/"
  8480. ]
  8481. },
  8482. "notification-url": "https://packagist.org/downloads/",
  8483. "license": [
  8484. "BSD-3-Clause"
  8485. ],
  8486. "authors": [
  8487. {
  8488. "name": "Sebastian Bergmann",
  8489. "email": "sebastian@phpunit.de",
  8490. "role": "lead"
  8491. }
  8492. ],
  8493. "description": "The PHP Unit Testing framework.",
  8494. "homepage": "https://phpunit.de/",
  8495. "keywords": [
  8496. "phpunit",
  8497. "testing",
  8498. "xunit"
  8499. ],
  8500. "support": {
  8501. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  8502. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  8503. "source": "https://github.com/sebastianbergmann/phpunit/tree/11.4.1"
  8504. },
  8505. "funding": [
  8506. {
  8507. "url": "https://phpunit.de/sponsors.html",
  8508. "type": "custom"
  8509. },
  8510. {
  8511. "url": "https://github.com/sebastianbergmann",
  8512. "type": "github"
  8513. },
  8514. {
  8515. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  8516. "type": "tidelift"
  8517. }
  8518. ],
  8519. "time": "2024-10-08T15:38:37+00:00"
  8520. },
  8521. {
  8522. "name": "sebastian/cli-parser",
  8523. "version": "3.0.2",
  8524. "source": {
  8525. "type": "git",
  8526. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  8527. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180"
  8528. },
  8529. "dist": {
  8530. "type": "zip",
  8531. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/15c5dd40dc4f38794d383bb95465193f5e0ae180",
  8532. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180",
  8533. "shasum": ""
  8534. },
  8535. "require": {
  8536. "php": ">=8.2"
  8537. },
  8538. "require-dev": {
  8539. "phpunit/phpunit": "^11.0"
  8540. },
  8541. "type": "library",
  8542. "extra": {
  8543. "branch-alias": {
  8544. "dev-main": "3.0-dev"
  8545. }
  8546. },
  8547. "autoload": {
  8548. "classmap": [
  8549. "src/"
  8550. ]
  8551. },
  8552. "notification-url": "https://packagist.org/downloads/",
  8553. "license": [
  8554. "BSD-3-Clause"
  8555. ],
  8556. "authors": [
  8557. {
  8558. "name": "Sebastian Bergmann",
  8559. "email": "sebastian@phpunit.de",
  8560. "role": "lead"
  8561. }
  8562. ],
  8563. "description": "Library for parsing CLI options",
  8564. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  8565. "support": {
  8566. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  8567. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  8568. "source": "https://github.com/sebastianbergmann/cli-parser/tree/3.0.2"
  8569. },
  8570. "funding": [
  8571. {
  8572. "url": "https://github.com/sebastianbergmann",
  8573. "type": "github"
  8574. }
  8575. ],
  8576. "time": "2024-07-03T04:41:36+00:00"
  8577. },
  8578. {
  8579. "name": "sebastian/code-unit",
  8580. "version": "3.0.1",
  8581. "source": {
  8582. "type": "git",
  8583. "url": "https://github.com/sebastianbergmann/code-unit.git",
  8584. "reference": "6bb7d09d6623567178cf54126afa9c2310114268"
  8585. },
  8586. "dist": {
  8587. "type": "zip",
  8588. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/6bb7d09d6623567178cf54126afa9c2310114268",
  8589. "reference": "6bb7d09d6623567178cf54126afa9c2310114268",
  8590. "shasum": ""
  8591. },
  8592. "require": {
  8593. "php": ">=8.2"
  8594. },
  8595. "require-dev": {
  8596. "phpunit/phpunit": "^11.0"
  8597. },
  8598. "type": "library",
  8599. "extra": {
  8600. "branch-alias": {
  8601. "dev-main": "3.0-dev"
  8602. }
  8603. },
  8604. "autoload": {
  8605. "classmap": [
  8606. "src/"
  8607. ]
  8608. },
  8609. "notification-url": "https://packagist.org/downloads/",
  8610. "license": [
  8611. "BSD-3-Clause"
  8612. ],
  8613. "authors": [
  8614. {
  8615. "name": "Sebastian Bergmann",
  8616. "email": "sebastian@phpunit.de",
  8617. "role": "lead"
  8618. }
  8619. ],
  8620. "description": "Collection of value objects that represent the PHP code units",
  8621. "homepage": "https://github.com/sebastianbergmann/code-unit",
  8622. "support": {
  8623. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  8624. "security": "https://github.com/sebastianbergmann/code-unit/security/policy",
  8625. "source": "https://github.com/sebastianbergmann/code-unit/tree/3.0.1"
  8626. },
  8627. "funding": [
  8628. {
  8629. "url": "https://github.com/sebastianbergmann",
  8630. "type": "github"
  8631. }
  8632. ],
  8633. "time": "2024-07-03T04:44:28+00:00"
  8634. },
  8635. {
  8636. "name": "sebastian/code-unit-reverse-lookup",
  8637. "version": "4.0.1",
  8638. "source": {
  8639. "type": "git",
  8640. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  8641. "reference": "183a9b2632194febd219bb9246eee421dad8d45e"
  8642. },
  8643. "dist": {
  8644. "type": "zip",
  8645. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/183a9b2632194febd219bb9246eee421dad8d45e",
  8646. "reference": "183a9b2632194febd219bb9246eee421dad8d45e",
  8647. "shasum": ""
  8648. },
  8649. "require": {
  8650. "php": ">=8.2"
  8651. },
  8652. "require-dev": {
  8653. "phpunit/phpunit": "^11.0"
  8654. },
  8655. "type": "library",
  8656. "extra": {
  8657. "branch-alias": {
  8658. "dev-main": "4.0-dev"
  8659. }
  8660. },
  8661. "autoload": {
  8662. "classmap": [
  8663. "src/"
  8664. ]
  8665. },
  8666. "notification-url": "https://packagist.org/downloads/",
  8667. "license": [
  8668. "BSD-3-Clause"
  8669. ],
  8670. "authors": [
  8671. {
  8672. "name": "Sebastian Bergmann",
  8673. "email": "sebastian@phpunit.de"
  8674. }
  8675. ],
  8676. "description": "Looks up which function or method a line of code belongs to",
  8677. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  8678. "support": {
  8679. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  8680. "security": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/security/policy",
  8681. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/4.0.1"
  8682. },
  8683. "funding": [
  8684. {
  8685. "url": "https://github.com/sebastianbergmann",
  8686. "type": "github"
  8687. }
  8688. ],
  8689. "time": "2024-07-03T04:45:54+00:00"
  8690. },
  8691. {
  8692. "name": "sebastian/comparator",
  8693. "version": "6.1.0",
  8694. "source": {
  8695. "type": "git",
  8696. "url": "https://github.com/sebastianbergmann/comparator.git",
  8697. "reference": "fa37b9e2ca618cb051d71b60120952ee8ca8b03d"
  8698. },
  8699. "dist": {
  8700. "type": "zip",
  8701. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa37b9e2ca618cb051d71b60120952ee8ca8b03d",
  8702. "reference": "fa37b9e2ca618cb051d71b60120952ee8ca8b03d",
  8703. "shasum": ""
  8704. },
  8705. "require": {
  8706. "ext-dom": "*",
  8707. "ext-mbstring": "*",
  8708. "php": ">=8.2",
  8709. "sebastian/diff": "^6.0",
  8710. "sebastian/exporter": "^6.0"
  8711. },
  8712. "require-dev": {
  8713. "phpunit/phpunit": "^11.3"
  8714. },
  8715. "type": "library",
  8716. "extra": {
  8717. "branch-alias": {
  8718. "dev-main": "6.1-dev"
  8719. }
  8720. },
  8721. "autoload": {
  8722. "classmap": [
  8723. "src/"
  8724. ]
  8725. },
  8726. "notification-url": "https://packagist.org/downloads/",
  8727. "license": [
  8728. "BSD-3-Clause"
  8729. ],
  8730. "authors": [
  8731. {
  8732. "name": "Sebastian Bergmann",
  8733. "email": "sebastian@phpunit.de"
  8734. },
  8735. {
  8736. "name": "Jeff Welch",
  8737. "email": "whatthejeff@gmail.com"
  8738. },
  8739. {
  8740. "name": "Volker Dusch",
  8741. "email": "github@wallbash.com"
  8742. },
  8743. {
  8744. "name": "Bernhard Schussek",
  8745. "email": "bschussek@2bepublished.at"
  8746. }
  8747. ],
  8748. "description": "Provides the functionality to compare PHP values for equality",
  8749. "homepage": "https://github.com/sebastianbergmann/comparator",
  8750. "keywords": [
  8751. "comparator",
  8752. "compare",
  8753. "equality"
  8754. ],
  8755. "support": {
  8756. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  8757. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  8758. "source": "https://github.com/sebastianbergmann/comparator/tree/6.1.0"
  8759. },
  8760. "funding": [
  8761. {
  8762. "url": "https://github.com/sebastianbergmann",
  8763. "type": "github"
  8764. }
  8765. ],
  8766. "time": "2024-09-11T15:42:56+00:00"
  8767. },
  8768. {
  8769. "name": "sebastian/complexity",
  8770. "version": "4.0.1",
  8771. "source": {
  8772. "type": "git",
  8773. "url": "https://github.com/sebastianbergmann/complexity.git",
  8774. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0"
  8775. },
  8776. "dist": {
  8777. "type": "zip",
  8778. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/ee41d384ab1906c68852636b6de493846e13e5a0",
  8779. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0",
  8780. "shasum": ""
  8781. },
  8782. "require": {
  8783. "nikic/php-parser": "^5.0",
  8784. "php": ">=8.2"
  8785. },
  8786. "require-dev": {
  8787. "phpunit/phpunit": "^11.0"
  8788. },
  8789. "type": "library",
  8790. "extra": {
  8791. "branch-alias": {
  8792. "dev-main": "4.0-dev"
  8793. }
  8794. },
  8795. "autoload": {
  8796. "classmap": [
  8797. "src/"
  8798. ]
  8799. },
  8800. "notification-url": "https://packagist.org/downloads/",
  8801. "license": [
  8802. "BSD-3-Clause"
  8803. ],
  8804. "authors": [
  8805. {
  8806. "name": "Sebastian Bergmann",
  8807. "email": "sebastian@phpunit.de",
  8808. "role": "lead"
  8809. }
  8810. ],
  8811. "description": "Library for calculating the complexity of PHP code units",
  8812. "homepage": "https://github.com/sebastianbergmann/complexity",
  8813. "support": {
  8814. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  8815. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  8816. "source": "https://github.com/sebastianbergmann/complexity/tree/4.0.1"
  8817. },
  8818. "funding": [
  8819. {
  8820. "url": "https://github.com/sebastianbergmann",
  8821. "type": "github"
  8822. }
  8823. ],
  8824. "time": "2024-07-03T04:49:50+00:00"
  8825. },
  8826. {
  8827. "name": "sebastian/diff",
  8828. "version": "6.0.2",
  8829. "source": {
  8830. "type": "git",
  8831. "url": "https://github.com/sebastianbergmann/diff.git",
  8832. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544"
  8833. },
  8834. "dist": {
  8835. "type": "zip",
  8836. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/b4ccd857127db5d41a5b676f24b51371d76d8544",
  8837. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544",
  8838. "shasum": ""
  8839. },
  8840. "require": {
  8841. "php": ">=8.2"
  8842. },
  8843. "require-dev": {
  8844. "phpunit/phpunit": "^11.0",
  8845. "symfony/process": "^4.2 || ^5"
  8846. },
  8847. "type": "library",
  8848. "extra": {
  8849. "branch-alias": {
  8850. "dev-main": "6.0-dev"
  8851. }
  8852. },
  8853. "autoload": {
  8854. "classmap": [
  8855. "src/"
  8856. ]
  8857. },
  8858. "notification-url": "https://packagist.org/downloads/",
  8859. "license": [
  8860. "BSD-3-Clause"
  8861. ],
  8862. "authors": [
  8863. {
  8864. "name": "Sebastian Bergmann",
  8865. "email": "sebastian@phpunit.de"
  8866. },
  8867. {
  8868. "name": "Kore Nordmann",
  8869. "email": "mail@kore-nordmann.de"
  8870. }
  8871. ],
  8872. "description": "Diff implementation",
  8873. "homepage": "https://github.com/sebastianbergmann/diff",
  8874. "keywords": [
  8875. "diff",
  8876. "udiff",
  8877. "unidiff",
  8878. "unified diff"
  8879. ],
  8880. "support": {
  8881. "issues": "https://github.com/sebastianbergmann/diff/issues",
  8882. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  8883. "source": "https://github.com/sebastianbergmann/diff/tree/6.0.2"
  8884. },
  8885. "funding": [
  8886. {
  8887. "url": "https://github.com/sebastianbergmann",
  8888. "type": "github"
  8889. }
  8890. ],
  8891. "time": "2024-07-03T04:53:05+00:00"
  8892. },
  8893. {
  8894. "name": "sebastian/environment",
  8895. "version": "7.2.0",
  8896. "source": {
  8897. "type": "git",
  8898. "url": "https://github.com/sebastianbergmann/environment.git",
  8899. "reference": "855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5"
  8900. },
  8901. "dist": {
  8902. "type": "zip",
  8903. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5",
  8904. "reference": "855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5",
  8905. "shasum": ""
  8906. },
  8907. "require": {
  8908. "php": ">=8.2"
  8909. },
  8910. "require-dev": {
  8911. "phpunit/phpunit": "^11.0"
  8912. },
  8913. "suggest": {
  8914. "ext-posix": "*"
  8915. },
  8916. "type": "library",
  8917. "extra": {
  8918. "branch-alias": {
  8919. "dev-main": "7.2-dev"
  8920. }
  8921. },
  8922. "autoload": {
  8923. "classmap": [
  8924. "src/"
  8925. ]
  8926. },
  8927. "notification-url": "https://packagist.org/downloads/",
  8928. "license": [
  8929. "BSD-3-Clause"
  8930. ],
  8931. "authors": [
  8932. {
  8933. "name": "Sebastian Bergmann",
  8934. "email": "sebastian@phpunit.de"
  8935. }
  8936. ],
  8937. "description": "Provides functionality to handle HHVM/PHP environments",
  8938. "homepage": "https://github.com/sebastianbergmann/environment",
  8939. "keywords": [
  8940. "Xdebug",
  8941. "environment",
  8942. "hhvm"
  8943. ],
  8944. "support": {
  8945. "issues": "https://github.com/sebastianbergmann/environment/issues",
  8946. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  8947. "source": "https://github.com/sebastianbergmann/environment/tree/7.2.0"
  8948. },
  8949. "funding": [
  8950. {
  8951. "url": "https://github.com/sebastianbergmann",
  8952. "type": "github"
  8953. }
  8954. ],
  8955. "time": "2024-07-03T04:54:44+00:00"
  8956. },
  8957. {
  8958. "name": "sebastian/exporter",
  8959. "version": "6.1.3",
  8960. "source": {
  8961. "type": "git",
  8962. "url": "https://github.com/sebastianbergmann/exporter.git",
  8963. "reference": "c414673eee9a8f9d51bbf8d61fc9e3ef1e85b20e"
  8964. },
  8965. "dist": {
  8966. "type": "zip",
  8967. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/c414673eee9a8f9d51bbf8d61fc9e3ef1e85b20e",
  8968. "reference": "c414673eee9a8f9d51bbf8d61fc9e3ef1e85b20e",
  8969. "shasum": ""
  8970. },
  8971. "require": {
  8972. "ext-mbstring": "*",
  8973. "php": ">=8.2",
  8974. "sebastian/recursion-context": "^6.0"
  8975. },
  8976. "require-dev": {
  8977. "phpunit/phpunit": "^11.2"
  8978. },
  8979. "type": "library",
  8980. "extra": {
  8981. "branch-alias": {
  8982. "dev-main": "6.1-dev"
  8983. }
  8984. },
  8985. "autoload": {
  8986. "classmap": [
  8987. "src/"
  8988. ]
  8989. },
  8990. "notification-url": "https://packagist.org/downloads/",
  8991. "license": [
  8992. "BSD-3-Clause"
  8993. ],
  8994. "authors": [
  8995. {
  8996. "name": "Sebastian Bergmann",
  8997. "email": "sebastian@phpunit.de"
  8998. },
  8999. {
  9000. "name": "Jeff Welch",
  9001. "email": "whatthejeff@gmail.com"
  9002. },
  9003. {
  9004. "name": "Volker Dusch",
  9005. "email": "github@wallbash.com"
  9006. },
  9007. {
  9008. "name": "Adam Harvey",
  9009. "email": "aharvey@php.net"
  9010. },
  9011. {
  9012. "name": "Bernhard Schussek",
  9013. "email": "bschussek@gmail.com"
  9014. }
  9015. ],
  9016. "description": "Provides the functionality to export PHP variables for visualization",
  9017. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9018. "keywords": [
  9019. "export",
  9020. "exporter"
  9021. ],
  9022. "support": {
  9023. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9024. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  9025. "source": "https://github.com/sebastianbergmann/exporter/tree/6.1.3"
  9026. },
  9027. "funding": [
  9028. {
  9029. "url": "https://github.com/sebastianbergmann",
  9030. "type": "github"
  9031. }
  9032. ],
  9033. "time": "2024-07-03T04:56:19+00:00"
  9034. },
  9035. {
  9036. "name": "sebastian/global-state",
  9037. "version": "7.0.2",
  9038. "source": {
  9039. "type": "git",
  9040. "url": "https://github.com/sebastianbergmann/global-state.git",
  9041. "reference": "3be331570a721f9a4b5917f4209773de17f747d7"
  9042. },
  9043. "dist": {
  9044. "type": "zip",
  9045. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/3be331570a721f9a4b5917f4209773de17f747d7",
  9046. "reference": "3be331570a721f9a4b5917f4209773de17f747d7",
  9047. "shasum": ""
  9048. },
  9049. "require": {
  9050. "php": ">=8.2",
  9051. "sebastian/object-reflector": "^4.0",
  9052. "sebastian/recursion-context": "^6.0"
  9053. },
  9054. "require-dev": {
  9055. "ext-dom": "*",
  9056. "phpunit/phpunit": "^11.0"
  9057. },
  9058. "type": "library",
  9059. "extra": {
  9060. "branch-alias": {
  9061. "dev-main": "7.0-dev"
  9062. }
  9063. },
  9064. "autoload": {
  9065. "classmap": [
  9066. "src/"
  9067. ]
  9068. },
  9069. "notification-url": "https://packagist.org/downloads/",
  9070. "license": [
  9071. "BSD-3-Clause"
  9072. ],
  9073. "authors": [
  9074. {
  9075. "name": "Sebastian Bergmann",
  9076. "email": "sebastian@phpunit.de"
  9077. }
  9078. ],
  9079. "description": "Snapshotting of global state",
  9080. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  9081. "keywords": [
  9082. "global state"
  9083. ],
  9084. "support": {
  9085. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9086. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  9087. "source": "https://github.com/sebastianbergmann/global-state/tree/7.0.2"
  9088. },
  9089. "funding": [
  9090. {
  9091. "url": "https://github.com/sebastianbergmann",
  9092. "type": "github"
  9093. }
  9094. ],
  9095. "time": "2024-07-03T04:57:36+00:00"
  9096. },
  9097. {
  9098. "name": "sebastian/lines-of-code",
  9099. "version": "3.0.1",
  9100. "source": {
  9101. "type": "git",
  9102. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  9103. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a"
  9104. },
  9105. "dist": {
  9106. "type": "zip",
  9107. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  9108. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  9109. "shasum": ""
  9110. },
  9111. "require": {
  9112. "nikic/php-parser": "^5.0",
  9113. "php": ">=8.2"
  9114. },
  9115. "require-dev": {
  9116. "phpunit/phpunit": "^11.0"
  9117. },
  9118. "type": "library",
  9119. "extra": {
  9120. "branch-alias": {
  9121. "dev-main": "3.0-dev"
  9122. }
  9123. },
  9124. "autoload": {
  9125. "classmap": [
  9126. "src/"
  9127. ]
  9128. },
  9129. "notification-url": "https://packagist.org/downloads/",
  9130. "license": [
  9131. "BSD-3-Clause"
  9132. ],
  9133. "authors": [
  9134. {
  9135. "name": "Sebastian Bergmann",
  9136. "email": "sebastian@phpunit.de",
  9137. "role": "lead"
  9138. }
  9139. ],
  9140. "description": "Library for counting the lines of code in PHP source code",
  9141. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  9142. "support": {
  9143. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  9144. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  9145. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/3.0.1"
  9146. },
  9147. "funding": [
  9148. {
  9149. "url": "https://github.com/sebastianbergmann",
  9150. "type": "github"
  9151. }
  9152. ],
  9153. "time": "2024-07-03T04:58:38+00:00"
  9154. },
  9155. {
  9156. "name": "sebastian/object-enumerator",
  9157. "version": "6.0.1",
  9158. "source": {
  9159. "type": "git",
  9160. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9161. "reference": "f5b498e631a74204185071eb41f33f38d64608aa"
  9162. },
  9163. "dist": {
  9164. "type": "zip",
  9165. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/f5b498e631a74204185071eb41f33f38d64608aa",
  9166. "reference": "f5b498e631a74204185071eb41f33f38d64608aa",
  9167. "shasum": ""
  9168. },
  9169. "require": {
  9170. "php": ">=8.2",
  9171. "sebastian/object-reflector": "^4.0",
  9172. "sebastian/recursion-context": "^6.0"
  9173. },
  9174. "require-dev": {
  9175. "phpunit/phpunit": "^11.0"
  9176. },
  9177. "type": "library",
  9178. "extra": {
  9179. "branch-alias": {
  9180. "dev-main": "6.0-dev"
  9181. }
  9182. },
  9183. "autoload": {
  9184. "classmap": [
  9185. "src/"
  9186. ]
  9187. },
  9188. "notification-url": "https://packagist.org/downloads/",
  9189. "license": [
  9190. "BSD-3-Clause"
  9191. ],
  9192. "authors": [
  9193. {
  9194. "name": "Sebastian Bergmann",
  9195. "email": "sebastian@phpunit.de"
  9196. }
  9197. ],
  9198. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9199. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9200. "support": {
  9201. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9202. "security": "https://github.com/sebastianbergmann/object-enumerator/security/policy",
  9203. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/6.0.1"
  9204. },
  9205. "funding": [
  9206. {
  9207. "url": "https://github.com/sebastianbergmann",
  9208. "type": "github"
  9209. }
  9210. ],
  9211. "time": "2024-07-03T05:00:13+00:00"
  9212. },
  9213. {
  9214. "name": "sebastian/object-reflector",
  9215. "version": "4.0.1",
  9216. "source": {
  9217. "type": "git",
  9218. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9219. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9"
  9220. },
  9221. "dist": {
  9222. "type": "zip",
  9223. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  9224. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  9225. "shasum": ""
  9226. },
  9227. "require": {
  9228. "php": ">=8.2"
  9229. },
  9230. "require-dev": {
  9231. "phpunit/phpunit": "^11.0"
  9232. },
  9233. "type": "library",
  9234. "extra": {
  9235. "branch-alias": {
  9236. "dev-main": "4.0-dev"
  9237. }
  9238. },
  9239. "autoload": {
  9240. "classmap": [
  9241. "src/"
  9242. ]
  9243. },
  9244. "notification-url": "https://packagist.org/downloads/",
  9245. "license": [
  9246. "BSD-3-Clause"
  9247. ],
  9248. "authors": [
  9249. {
  9250. "name": "Sebastian Bergmann",
  9251. "email": "sebastian@phpunit.de"
  9252. }
  9253. ],
  9254. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9255. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9256. "support": {
  9257. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9258. "security": "https://github.com/sebastianbergmann/object-reflector/security/policy",
  9259. "source": "https://github.com/sebastianbergmann/object-reflector/tree/4.0.1"
  9260. },
  9261. "funding": [
  9262. {
  9263. "url": "https://github.com/sebastianbergmann",
  9264. "type": "github"
  9265. }
  9266. ],
  9267. "time": "2024-07-03T05:01:32+00:00"
  9268. },
  9269. {
  9270. "name": "sebastian/recursion-context",
  9271. "version": "6.0.2",
  9272. "source": {
  9273. "type": "git",
  9274. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9275. "reference": "694d156164372abbd149a4b85ccda2e4670c0e16"
  9276. },
  9277. "dist": {
  9278. "type": "zip",
  9279. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/694d156164372abbd149a4b85ccda2e4670c0e16",
  9280. "reference": "694d156164372abbd149a4b85ccda2e4670c0e16",
  9281. "shasum": ""
  9282. },
  9283. "require": {
  9284. "php": ">=8.2"
  9285. },
  9286. "require-dev": {
  9287. "phpunit/phpunit": "^11.0"
  9288. },
  9289. "type": "library",
  9290. "extra": {
  9291. "branch-alias": {
  9292. "dev-main": "6.0-dev"
  9293. }
  9294. },
  9295. "autoload": {
  9296. "classmap": [
  9297. "src/"
  9298. ]
  9299. },
  9300. "notification-url": "https://packagist.org/downloads/",
  9301. "license": [
  9302. "BSD-3-Clause"
  9303. ],
  9304. "authors": [
  9305. {
  9306. "name": "Sebastian Bergmann",
  9307. "email": "sebastian@phpunit.de"
  9308. },
  9309. {
  9310. "name": "Jeff Welch",
  9311. "email": "whatthejeff@gmail.com"
  9312. },
  9313. {
  9314. "name": "Adam Harvey",
  9315. "email": "aharvey@php.net"
  9316. }
  9317. ],
  9318. "description": "Provides functionality to recursively process PHP variables",
  9319. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  9320. "support": {
  9321. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9322. "security": "https://github.com/sebastianbergmann/recursion-context/security/policy",
  9323. "source": "https://github.com/sebastianbergmann/recursion-context/tree/6.0.2"
  9324. },
  9325. "funding": [
  9326. {
  9327. "url": "https://github.com/sebastianbergmann",
  9328. "type": "github"
  9329. }
  9330. ],
  9331. "time": "2024-07-03T05:10:34+00:00"
  9332. },
  9333. {
  9334. "name": "sebastian/type",
  9335. "version": "5.1.0",
  9336. "source": {
  9337. "type": "git",
  9338. "url": "https://github.com/sebastianbergmann/type.git",
  9339. "reference": "461b9c5da241511a2a0e8f240814fb23ce5c0aac"
  9340. },
  9341. "dist": {
  9342. "type": "zip",
  9343. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/461b9c5da241511a2a0e8f240814fb23ce5c0aac",
  9344. "reference": "461b9c5da241511a2a0e8f240814fb23ce5c0aac",
  9345. "shasum": ""
  9346. },
  9347. "require": {
  9348. "php": ">=8.2"
  9349. },
  9350. "require-dev": {
  9351. "phpunit/phpunit": "^11.3"
  9352. },
  9353. "type": "library",
  9354. "extra": {
  9355. "branch-alias": {
  9356. "dev-main": "5.1-dev"
  9357. }
  9358. },
  9359. "autoload": {
  9360. "classmap": [
  9361. "src/"
  9362. ]
  9363. },
  9364. "notification-url": "https://packagist.org/downloads/",
  9365. "license": [
  9366. "BSD-3-Clause"
  9367. ],
  9368. "authors": [
  9369. {
  9370. "name": "Sebastian Bergmann",
  9371. "email": "sebastian@phpunit.de",
  9372. "role": "lead"
  9373. }
  9374. ],
  9375. "description": "Collection of value objects that represent the types of the PHP type system",
  9376. "homepage": "https://github.com/sebastianbergmann/type",
  9377. "support": {
  9378. "issues": "https://github.com/sebastianbergmann/type/issues",
  9379. "security": "https://github.com/sebastianbergmann/type/security/policy",
  9380. "source": "https://github.com/sebastianbergmann/type/tree/5.1.0"
  9381. },
  9382. "funding": [
  9383. {
  9384. "url": "https://github.com/sebastianbergmann",
  9385. "type": "github"
  9386. }
  9387. ],
  9388. "time": "2024-09-17T13:12:04+00:00"
  9389. },
  9390. {
  9391. "name": "sebastian/version",
  9392. "version": "5.0.2",
  9393. "source": {
  9394. "type": "git",
  9395. "url": "https://github.com/sebastianbergmann/version.git",
  9396. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874"
  9397. },
  9398. "dist": {
  9399. "type": "zip",
  9400. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c687e3387b99f5b03b6caa64c74b63e2936ff874",
  9401. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874",
  9402. "shasum": ""
  9403. },
  9404. "require": {
  9405. "php": ">=8.2"
  9406. },
  9407. "type": "library",
  9408. "extra": {
  9409. "branch-alias": {
  9410. "dev-main": "5.0-dev"
  9411. }
  9412. },
  9413. "autoload": {
  9414. "classmap": [
  9415. "src/"
  9416. ]
  9417. },
  9418. "notification-url": "https://packagist.org/downloads/",
  9419. "license": [
  9420. "BSD-3-Clause"
  9421. ],
  9422. "authors": [
  9423. {
  9424. "name": "Sebastian Bergmann",
  9425. "email": "sebastian@phpunit.de",
  9426. "role": "lead"
  9427. }
  9428. ],
  9429. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9430. "homepage": "https://github.com/sebastianbergmann/version",
  9431. "support": {
  9432. "issues": "https://github.com/sebastianbergmann/version/issues",
  9433. "security": "https://github.com/sebastianbergmann/version/security/policy",
  9434. "source": "https://github.com/sebastianbergmann/version/tree/5.0.2"
  9435. },
  9436. "funding": [
  9437. {
  9438. "url": "https://github.com/sebastianbergmann",
  9439. "type": "github"
  9440. }
  9441. ],
  9442. "time": "2024-10-09T05:16:32+00:00"
  9443. },
  9444. {
  9445. "name": "symfony/yaml",
  9446. "version": "v7.1.5",
  9447. "source": {
  9448. "type": "git",
  9449. "url": "https://github.com/symfony/yaml.git",
  9450. "reference": "4e561c316e135e053bd758bf3b3eb291d9919de4"
  9451. },
  9452. "dist": {
  9453. "type": "zip",
  9454. "url": "https://api.github.com/repos/symfony/yaml/zipball/4e561c316e135e053bd758bf3b3eb291d9919de4",
  9455. "reference": "4e561c316e135e053bd758bf3b3eb291d9919de4",
  9456. "shasum": ""
  9457. },
  9458. "require": {
  9459. "php": ">=8.2",
  9460. "symfony/polyfill-ctype": "^1.8"
  9461. },
  9462. "conflict": {
  9463. "symfony/console": "<6.4"
  9464. },
  9465. "require-dev": {
  9466. "symfony/console": "^6.4|^7.0"
  9467. },
  9468. "bin": [
  9469. "Resources/bin/yaml-lint"
  9470. ],
  9471. "type": "library",
  9472. "autoload": {
  9473. "psr-4": {
  9474. "Symfony\\Component\\Yaml\\": ""
  9475. },
  9476. "exclude-from-classmap": [
  9477. "/Tests/"
  9478. ]
  9479. },
  9480. "notification-url": "https://packagist.org/downloads/",
  9481. "license": [
  9482. "MIT"
  9483. ],
  9484. "authors": [
  9485. {
  9486. "name": "Fabien Potencier",
  9487. "email": "fabien@symfony.com"
  9488. },
  9489. {
  9490. "name": "Symfony Community",
  9491. "homepage": "https://symfony.com/contributors"
  9492. }
  9493. ],
  9494. "description": "Loads and dumps YAML files",
  9495. "homepage": "https://symfony.com",
  9496. "support": {
  9497. "source": "https://github.com/symfony/yaml/tree/v7.1.5"
  9498. },
  9499. "funding": [
  9500. {
  9501. "url": "https://symfony.com/sponsor",
  9502. "type": "custom"
  9503. },
  9504. {
  9505. "url": "https://github.com/fabpot",
  9506. "type": "github"
  9507. },
  9508. {
  9509. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9510. "type": "tidelift"
  9511. }
  9512. ],
  9513. "time": "2024-09-17T12:49:58+00:00"
  9514. },
  9515. {
  9516. "name": "theseer/tokenizer",
  9517. "version": "1.2.3",
  9518. "source": {
  9519. "type": "git",
  9520. "url": "https://github.com/theseer/tokenizer.git",
  9521. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  9522. },
  9523. "dist": {
  9524. "type": "zip",
  9525. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  9526. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  9527. "shasum": ""
  9528. },
  9529. "require": {
  9530. "ext-dom": "*",
  9531. "ext-tokenizer": "*",
  9532. "ext-xmlwriter": "*",
  9533. "php": "^7.2 || ^8.0"
  9534. },
  9535. "type": "library",
  9536. "autoload": {
  9537. "classmap": [
  9538. "src/"
  9539. ]
  9540. },
  9541. "notification-url": "https://packagist.org/downloads/",
  9542. "license": [
  9543. "BSD-3-Clause"
  9544. ],
  9545. "authors": [
  9546. {
  9547. "name": "Arne Blankerts",
  9548. "email": "arne@blankerts.de",
  9549. "role": "Developer"
  9550. }
  9551. ],
  9552. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  9553. "support": {
  9554. "issues": "https://github.com/theseer/tokenizer/issues",
  9555. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  9556. },
  9557. "funding": [
  9558. {
  9559. "url": "https://github.com/theseer",
  9560. "type": "github"
  9561. }
  9562. ],
  9563. "time": "2024-03-03T12:36:25+00:00"
  9564. }
  9565. ],
  9566. "aliases": [],
  9567. "minimum-stability": "stable",
  9568. "stability-flags": [],
  9569. "prefer-stable": true,
  9570. "prefer-lowest": false,
  9571. "platform": {
  9572. "php": "^8.2"
  9573. },
  9574. "platform-dev": [],
  9575. "plugin-api-version": "2.6.0"
  9576. }