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": "e0924246d3b2b98e5029e3ea4f06c23b",
  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.4",
  1198. "source": {
  1199. "type": "git",
  1200. "url": "https://github.com/guzzle/promises.git",
  1201. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455"
  1202. },
  1203. "dist": {
  1204. "type": "zip",
  1205. "url": "https://api.github.com/repos/guzzle/promises/zipball/f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  1206. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  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.4"
  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-10-17T10:06:22+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.28.1",
  1546. "source": {
  1547. "type": "git",
  1548. "url": "https://github.com/laravel/framework.git",
  1549. "reference": "3ef5c8a85b4c598d5ffaf98afd72f6a5d6a0be2c"
  1550. },
  1551. "dist": {
  1552. "type": "zip",
  1553. "url": "https://api.github.com/repos/laravel/framework/zipball/3ef5c8a85b4c598d5ffaf98afd72f6a5d6a0be2c",
  1554. "reference": "3ef5c8a85b4c598d5ffaf98afd72f6a5d6a0be2c",
  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-16T16:32:21+00:00"
  1751. },
  1752. {
  1753. "name": "laravel/prompts",
  1754. "version": "v0.3.1",
  1755. "source": {
  1756. "type": "git",
  1757. "url": "https://github.com/laravel/prompts.git",
  1758. "reference": "0f3848a445562dac376b27968f753c65e7e1036e"
  1759. },
  1760. "dist": {
  1761. "type": "zip",
  1762. "url": "https://api.github.com/repos/laravel/prompts/zipball/0f3848a445562dac376b27968f753c65e7e1036e",
  1763. "reference": "0f3848a445562dac376b27968f753c65e7e1036e",
  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.1"
  1808. },
  1809. "time": "2024-10-09T19:42:26+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.2.0",
  2794. "source": {
  2795. "type": "git",
  2796. "url": "https://github.com/nunomaduro/termwind.git",
  2797. "reference": "42c84e4e8090766bbd6445d06cd6e57650626ea3"
  2798. },
  2799. "dist": {
  2800. "type": "zip",
  2801. "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/42c84e4e8090766bbd6445d06cd6e57650626ea3",
  2802. "reference": "42c84e4e8090766bbd6445d06cd6e57650626ea3",
  2803. "shasum": ""
  2804. },
  2805. "require": {
  2806. "ext-mbstring": "*",
  2807. "php": "^8.2",
  2808. "symfony/console": "^7.1.5"
  2809. },
  2810. "require-dev": {
  2811. "illuminate/console": "^11.28.0",
  2812. "laravel/pint": "^1.18.1",
  2813. "mockery/mockery": "^1.6.12",
  2814. "pestphp/pest": "^2.36.0",
  2815. "phpstan/phpstan": "^1.12.6",
  2816. "phpstan/phpstan-strict-rules": "^1.6.1",
  2817. "symfony/var-dumper": "^7.1.5",
  2818. "thecodingmachine/phpstan-strict-rules": "^1.0.0"
  2819. },
  2820. "type": "library",
  2821. "extra": {
  2822. "laravel": {
  2823. "providers": [
  2824. "Termwind\\Laravel\\TermwindServiceProvider"
  2825. ]
  2826. },
  2827. "branch-alias": {
  2828. "dev-2.x": "2.x-dev"
  2829. }
  2830. },
  2831. "autoload": {
  2832. "files": [
  2833. "src/Functions.php"
  2834. ],
  2835. "psr-4": {
  2836. "Termwind\\": "src/"
  2837. }
  2838. },
  2839. "notification-url": "https://packagist.org/downloads/",
  2840. "license": [
  2841. "MIT"
  2842. ],
  2843. "authors": [
  2844. {
  2845. "name": "Nuno Maduro",
  2846. "email": "enunomaduro@gmail.com"
  2847. }
  2848. ],
  2849. "description": "Its like Tailwind CSS, but for the console.",
  2850. "keywords": [
  2851. "cli",
  2852. "console",
  2853. "css",
  2854. "package",
  2855. "php",
  2856. "style"
  2857. ],
  2858. "support": {
  2859. "issues": "https://github.com/nunomaduro/termwind/issues",
  2860. "source": "https://github.com/nunomaduro/termwind/tree/v2.2.0"
  2861. },
  2862. "funding": [
  2863. {
  2864. "url": "https://www.paypal.com/paypalme/enunomaduro",
  2865. "type": "custom"
  2866. },
  2867. {
  2868. "url": "https://github.com/nunomaduro",
  2869. "type": "github"
  2870. },
  2871. {
  2872. "url": "https://github.com/xiCO2k",
  2873. "type": "github"
  2874. }
  2875. ],
  2876. "time": "2024-10-15T16:15:16+00:00"
  2877. },
  2878. {
  2879. "name": "nyholm/psr7",
  2880. "version": "1.8.2",
  2881. "source": {
  2882. "type": "git",
  2883. "url": "https://github.com/Nyholm/psr7.git",
  2884. "reference": "a71f2b11690f4b24d099d6b16690a90ae14fc6f3"
  2885. },
  2886. "dist": {
  2887. "type": "zip",
  2888. "url": "https://api.github.com/repos/Nyholm/psr7/zipball/a71f2b11690f4b24d099d6b16690a90ae14fc6f3",
  2889. "reference": "a71f2b11690f4b24d099d6b16690a90ae14fc6f3",
  2890. "shasum": ""
  2891. },
  2892. "require": {
  2893. "php": ">=7.2",
  2894. "psr/http-factory": "^1.0",
  2895. "psr/http-message": "^1.1 || ^2.0"
  2896. },
  2897. "provide": {
  2898. "php-http/message-factory-implementation": "1.0",
  2899. "psr/http-factory-implementation": "1.0",
  2900. "psr/http-message-implementation": "1.0"
  2901. },
  2902. "require-dev": {
  2903. "http-interop/http-factory-tests": "^0.9",
  2904. "php-http/message-factory": "^1.0",
  2905. "php-http/psr7-integration-tests": "^1.0",
  2906. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.4",
  2907. "symfony/error-handler": "^4.4"
  2908. },
  2909. "type": "library",
  2910. "extra": {
  2911. "branch-alias": {
  2912. "dev-master": "1.8-dev"
  2913. }
  2914. },
  2915. "autoload": {
  2916. "psr-4": {
  2917. "Nyholm\\Psr7\\": "src/"
  2918. }
  2919. },
  2920. "notification-url": "https://packagist.org/downloads/",
  2921. "license": [
  2922. "MIT"
  2923. ],
  2924. "authors": [
  2925. {
  2926. "name": "Tobias Nyholm",
  2927. "email": "tobias.nyholm@gmail.com"
  2928. },
  2929. {
  2930. "name": "Martijn van der Ven",
  2931. "email": "martijn@vanderven.se"
  2932. }
  2933. ],
  2934. "description": "A fast PHP7 implementation of PSR-7",
  2935. "homepage": "https://tnyholm.se",
  2936. "keywords": [
  2937. "psr-17",
  2938. "psr-7"
  2939. ],
  2940. "support": {
  2941. "issues": "https://github.com/Nyholm/psr7/issues",
  2942. "source": "https://github.com/Nyholm/psr7/tree/1.8.2"
  2943. },
  2944. "funding": [
  2945. {
  2946. "url": "https://github.com/Zegnat",
  2947. "type": "github"
  2948. },
  2949. {
  2950. "url": "https://github.com/nyholm",
  2951. "type": "github"
  2952. }
  2953. ],
  2954. "time": "2024-09-09T07:06:30+00:00"
  2955. },
  2956. {
  2957. "name": "nyholm/psr7-server",
  2958. "version": "1.1.0",
  2959. "source": {
  2960. "type": "git",
  2961. "url": "https://github.com/Nyholm/psr7-server.git",
  2962. "reference": "4335801d851f554ca43fa6e7d2602141538854dc"
  2963. },
  2964. "dist": {
  2965. "type": "zip",
  2966. "url": "https://api.github.com/repos/Nyholm/psr7-server/zipball/4335801d851f554ca43fa6e7d2602141538854dc",
  2967. "reference": "4335801d851f554ca43fa6e7d2602141538854dc",
  2968. "shasum": ""
  2969. },
  2970. "require": {
  2971. "php": "^7.1 || ^8.0",
  2972. "psr/http-factory": "^1.0",
  2973. "psr/http-message": "^1.0 || ^2.0"
  2974. },
  2975. "require-dev": {
  2976. "nyholm/nsa": "^1.1",
  2977. "nyholm/psr7": "^1.3",
  2978. "phpunit/phpunit": "^7.0 || ^8.5 || ^9.3"
  2979. },
  2980. "type": "library",
  2981. "autoload": {
  2982. "psr-4": {
  2983. "Nyholm\\Psr7Server\\": "src/"
  2984. }
  2985. },
  2986. "notification-url": "https://packagist.org/downloads/",
  2987. "license": [
  2988. "MIT"
  2989. ],
  2990. "authors": [
  2991. {
  2992. "name": "Tobias Nyholm",
  2993. "email": "tobias.nyholm@gmail.com"
  2994. },
  2995. {
  2996. "name": "Martijn van der Ven",
  2997. "email": "martijn@vanderven.se"
  2998. }
  2999. ],
  3000. "description": "Helper classes to handle PSR-7 server requests",
  3001. "homepage": "http://tnyholm.se",
  3002. "keywords": [
  3003. "psr-17",
  3004. "psr-7"
  3005. ],
  3006. "support": {
  3007. "issues": "https://github.com/Nyholm/psr7-server/issues",
  3008. "source": "https://github.com/Nyholm/psr7-server/tree/1.1.0"
  3009. },
  3010. "funding": [
  3011. {
  3012. "url": "https://github.com/Zegnat",
  3013. "type": "github"
  3014. },
  3015. {
  3016. "url": "https://github.com/nyholm",
  3017. "type": "github"
  3018. }
  3019. ],
  3020. "time": "2023-11-08T09:30:43+00:00"
  3021. },
  3022. {
  3023. "name": "overtrue/laravel-wechat",
  3024. "version": "7.3.0",
  3025. "source": {
  3026. "type": "git",
  3027. "url": "https://github.com/overtrue/laravel-wechat.git",
  3028. "reference": "b3e89dddc45da4eb3d5322a10dee9dc65e619579"
  3029. },
  3030. "dist": {
  3031. "type": "zip",
  3032. "url": "https://api.github.com/repos/overtrue/laravel-wechat/zipball/b3e89dddc45da4eb3d5322a10dee9dc65e619579",
  3033. "reference": "b3e89dddc45da4eb3d5322a10dee9dc65e619579",
  3034. "shasum": ""
  3035. },
  3036. "require": {
  3037. "illuminate/container": "^9.0|^10.0|^11.0",
  3038. "w7corp/easywechat": "^6.0.0"
  3039. },
  3040. "require-dev": {
  3041. "brainmaestro/composer-git-hooks": "dev-master",
  3042. "jetbrains/phpstorm-attributes": "^1.0",
  3043. "laravel/framework": "^10.0",
  3044. "laravel/pint": "^1.5"
  3045. },
  3046. "type": "library",
  3047. "extra": {
  3048. "laravel": {
  3049. "providers": [
  3050. "Overtrue\\LaravelWeChat\\ServiceProvider"
  3051. ]
  3052. },
  3053. "hooks": {
  3054. "pre-commit": [
  3055. "composer check-style"
  3056. ],
  3057. "pre-push": [
  3058. "composer check-style"
  3059. ]
  3060. }
  3061. },
  3062. "autoload": {
  3063. "psr-4": {
  3064. "Overtrue\\LaravelWeChat\\": "src/"
  3065. }
  3066. },
  3067. "notification-url": "https://packagist.org/downloads/",
  3068. "license": [
  3069. "MIT"
  3070. ],
  3071. "authors": [
  3072. {
  3073. "name": "overtrue",
  3074. "email": "anzhengchao@gmail.com"
  3075. }
  3076. ],
  3077. "description": "微信 SDK for Laravel",
  3078. "keywords": [
  3079. "laravel",
  3080. "sdk",
  3081. "wechat",
  3082. "weixin"
  3083. ],
  3084. "support": {
  3085. "issues": "https://github.com/overtrue/laravel-wechat/issues",
  3086. "source": "https://github.com/overtrue/laravel-wechat/tree/7.3.0"
  3087. },
  3088. "funding": [
  3089. {
  3090. "url": "https://github.com/overtrue",
  3091. "type": "github"
  3092. }
  3093. ],
  3094. "time": "2024-03-13T02:06:36+00:00"
  3095. },
  3096. {
  3097. "name": "overtrue/socialite",
  3098. "version": "4.11.2",
  3099. "source": {
  3100. "type": "git",
  3101. "url": "https://github.com/overtrue/socialite.git",
  3102. "reference": "83dd537a88b30cd9204ee2c46a5b2e181bc1fa66"
  3103. },
  3104. "dist": {
  3105. "type": "zip",
  3106. "url": "https://api.github.com/repos/overtrue/socialite/zipball/83dd537a88b30cd9204ee2c46a5b2e181bc1fa66",
  3107. "reference": "83dd537a88b30cd9204ee2c46a5b2e181bc1fa66",
  3108. "shasum": ""
  3109. },
  3110. "require": {
  3111. "ext-json": "*",
  3112. "ext-openssl": "*",
  3113. "guzzlehttp/guzzle": "^7.0",
  3114. "php": ">=8.0.2"
  3115. },
  3116. "require-dev": {
  3117. "jetbrains/phpstorm-attributes": "^1.0",
  3118. "laravel/pint": "^1.2",
  3119. "mockery/mockery": "^1.3",
  3120. "phpstan/phpstan": "^1.7",
  3121. "phpunit/phpunit": "^11.3"
  3122. },
  3123. "type": "library",
  3124. "autoload": {
  3125. "files": [
  3126. "src/Contracts/FactoryInterface.php",
  3127. "src/Contracts/UserInterface.php",
  3128. "src/Contracts/ProviderInterface.php"
  3129. ],
  3130. "psr-4": {
  3131. "Overtrue\\Socialite\\": "src/"
  3132. }
  3133. },
  3134. "notification-url": "https://packagist.org/downloads/",
  3135. "license": [
  3136. "MIT"
  3137. ],
  3138. "authors": [
  3139. {
  3140. "name": "overtrue",
  3141. "email": "anzhengchao@gmail.com"
  3142. }
  3143. ],
  3144. "description": "A collection of OAuth 2 packages.",
  3145. "keywords": [
  3146. "Feishu",
  3147. "login",
  3148. "oauth",
  3149. "qcloud",
  3150. "qq",
  3151. "social",
  3152. "wechat",
  3153. "weibo"
  3154. ],
  3155. "support": {
  3156. "issues": "https://github.com/overtrue/socialite/issues",
  3157. "source": "https://github.com/overtrue/socialite/tree/4.11.2"
  3158. },
  3159. "funding": [
  3160. {
  3161. "url": "https://github.com/overtrue",
  3162. "type": "github"
  3163. }
  3164. ],
  3165. "time": "2024-10-08T16:23:14+00:00"
  3166. },
  3167. {
  3168. "name": "phpoption/phpoption",
  3169. "version": "1.9.3",
  3170. "source": {
  3171. "type": "git",
  3172. "url": "https://github.com/schmittjoh/php-option.git",
  3173. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  3174. },
  3175. "dist": {
  3176. "type": "zip",
  3177. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  3178. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  3179. "shasum": ""
  3180. },
  3181. "require": {
  3182. "php": "^7.2.5 || ^8.0"
  3183. },
  3184. "require-dev": {
  3185. "bamarni/composer-bin-plugin": "^1.8.2",
  3186. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  3187. },
  3188. "type": "library",
  3189. "extra": {
  3190. "bamarni-bin": {
  3191. "bin-links": true,
  3192. "forward-command": false
  3193. },
  3194. "branch-alias": {
  3195. "dev-master": "1.9-dev"
  3196. }
  3197. },
  3198. "autoload": {
  3199. "psr-4": {
  3200. "PhpOption\\": "src/PhpOption/"
  3201. }
  3202. },
  3203. "notification-url": "https://packagist.org/downloads/",
  3204. "license": [
  3205. "Apache-2.0"
  3206. ],
  3207. "authors": [
  3208. {
  3209. "name": "Johannes M. Schmitt",
  3210. "email": "schmittjoh@gmail.com",
  3211. "homepage": "https://github.com/schmittjoh"
  3212. },
  3213. {
  3214. "name": "Graham Campbell",
  3215. "email": "hello@gjcampbell.co.uk",
  3216. "homepage": "https://github.com/GrahamCampbell"
  3217. }
  3218. ],
  3219. "description": "Option Type for PHP",
  3220. "keywords": [
  3221. "language",
  3222. "option",
  3223. "php",
  3224. "type"
  3225. ],
  3226. "support": {
  3227. "issues": "https://github.com/schmittjoh/php-option/issues",
  3228. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  3229. },
  3230. "funding": [
  3231. {
  3232. "url": "https://github.com/GrahamCampbell",
  3233. "type": "github"
  3234. },
  3235. {
  3236. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3237. "type": "tidelift"
  3238. }
  3239. ],
  3240. "time": "2024-07-20T21:41:07+00:00"
  3241. },
  3242. {
  3243. "name": "psr/cache",
  3244. "version": "3.0.0",
  3245. "source": {
  3246. "type": "git",
  3247. "url": "https://github.com/php-fig/cache.git",
  3248. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  3249. },
  3250. "dist": {
  3251. "type": "zip",
  3252. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  3253. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  3254. "shasum": ""
  3255. },
  3256. "require": {
  3257. "php": ">=8.0.0"
  3258. },
  3259. "type": "library",
  3260. "extra": {
  3261. "branch-alias": {
  3262. "dev-master": "1.0.x-dev"
  3263. }
  3264. },
  3265. "autoload": {
  3266. "psr-4": {
  3267. "Psr\\Cache\\": "src/"
  3268. }
  3269. },
  3270. "notification-url": "https://packagist.org/downloads/",
  3271. "license": [
  3272. "MIT"
  3273. ],
  3274. "authors": [
  3275. {
  3276. "name": "PHP-FIG",
  3277. "homepage": "https://www.php-fig.org/"
  3278. }
  3279. ],
  3280. "description": "Common interface for caching libraries",
  3281. "keywords": [
  3282. "cache",
  3283. "psr",
  3284. "psr-6"
  3285. ],
  3286. "support": {
  3287. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  3288. },
  3289. "time": "2021-02-03T23:26:27+00:00"
  3290. },
  3291. {
  3292. "name": "psr/clock",
  3293. "version": "1.0.0",
  3294. "source": {
  3295. "type": "git",
  3296. "url": "https://github.com/php-fig/clock.git",
  3297. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  3298. },
  3299. "dist": {
  3300. "type": "zip",
  3301. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  3302. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  3303. "shasum": ""
  3304. },
  3305. "require": {
  3306. "php": "^7.0 || ^8.0"
  3307. },
  3308. "type": "library",
  3309. "autoload": {
  3310. "psr-4": {
  3311. "Psr\\Clock\\": "src/"
  3312. }
  3313. },
  3314. "notification-url": "https://packagist.org/downloads/",
  3315. "license": [
  3316. "MIT"
  3317. ],
  3318. "authors": [
  3319. {
  3320. "name": "PHP-FIG",
  3321. "homepage": "https://www.php-fig.org/"
  3322. }
  3323. ],
  3324. "description": "Common interface for reading the clock.",
  3325. "homepage": "https://github.com/php-fig/clock",
  3326. "keywords": [
  3327. "clock",
  3328. "now",
  3329. "psr",
  3330. "psr-20",
  3331. "time"
  3332. ],
  3333. "support": {
  3334. "issues": "https://github.com/php-fig/clock/issues",
  3335. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  3336. },
  3337. "time": "2022-11-25T14:36:26+00:00"
  3338. },
  3339. {
  3340. "name": "psr/container",
  3341. "version": "2.0.2",
  3342. "source": {
  3343. "type": "git",
  3344. "url": "https://github.com/php-fig/container.git",
  3345. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  3346. },
  3347. "dist": {
  3348. "type": "zip",
  3349. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  3350. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  3351. "shasum": ""
  3352. },
  3353. "require": {
  3354. "php": ">=7.4.0"
  3355. },
  3356. "type": "library",
  3357. "extra": {
  3358. "branch-alias": {
  3359. "dev-master": "2.0.x-dev"
  3360. }
  3361. },
  3362. "autoload": {
  3363. "psr-4": {
  3364. "Psr\\Container\\": "src/"
  3365. }
  3366. },
  3367. "notification-url": "https://packagist.org/downloads/",
  3368. "license": [
  3369. "MIT"
  3370. ],
  3371. "authors": [
  3372. {
  3373. "name": "PHP-FIG",
  3374. "homepage": "https://www.php-fig.org/"
  3375. }
  3376. ],
  3377. "description": "Common Container Interface (PHP FIG PSR-11)",
  3378. "homepage": "https://github.com/php-fig/container",
  3379. "keywords": [
  3380. "PSR-11",
  3381. "container",
  3382. "container-interface",
  3383. "container-interop",
  3384. "psr"
  3385. ],
  3386. "support": {
  3387. "issues": "https://github.com/php-fig/container/issues",
  3388. "source": "https://github.com/php-fig/container/tree/2.0.2"
  3389. },
  3390. "time": "2021-11-05T16:47:00+00:00"
  3391. },
  3392. {
  3393. "name": "psr/event-dispatcher",
  3394. "version": "1.0.0",
  3395. "source": {
  3396. "type": "git",
  3397. "url": "https://github.com/php-fig/event-dispatcher.git",
  3398. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  3399. },
  3400. "dist": {
  3401. "type": "zip",
  3402. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3403. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3404. "shasum": ""
  3405. },
  3406. "require": {
  3407. "php": ">=7.2.0"
  3408. },
  3409. "type": "library",
  3410. "extra": {
  3411. "branch-alias": {
  3412. "dev-master": "1.0.x-dev"
  3413. }
  3414. },
  3415. "autoload": {
  3416. "psr-4": {
  3417. "Psr\\EventDispatcher\\": "src/"
  3418. }
  3419. },
  3420. "notification-url": "https://packagist.org/downloads/",
  3421. "license": [
  3422. "MIT"
  3423. ],
  3424. "authors": [
  3425. {
  3426. "name": "PHP-FIG",
  3427. "homepage": "http://www.php-fig.org/"
  3428. }
  3429. ],
  3430. "description": "Standard interfaces for event handling.",
  3431. "keywords": [
  3432. "events",
  3433. "psr",
  3434. "psr-14"
  3435. ],
  3436. "support": {
  3437. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  3438. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  3439. },
  3440. "time": "2019-01-08T18:20:26+00:00"
  3441. },
  3442. {
  3443. "name": "psr/http-client",
  3444. "version": "1.0.3",
  3445. "source": {
  3446. "type": "git",
  3447. "url": "https://github.com/php-fig/http-client.git",
  3448. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  3449. },
  3450. "dist": {
  3451. "type": "zip",
  3452. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  3453. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  3454. "shasum": ""
  3455. },
  3456. "require": {
  3457. "php": "^7.0 || ^8.0",
  3458. "psr/http-message": "^1.0 || ^2.0"
  3459. },
  3460. "type": "library",
  3461. "extra": {
  3462. "branch-alias": {
  3463. "dev-master": "1.0.x-dev"
  3464. }
  3465. },
  3466. "autoload": {
  3467. "psr-4": {
  3468. "Psr\\Http\\Client\\": "src/"
  3469. }
  3470. },
  3471. "notification-url": "https://packagist.org/downloads/",
  3472. "license": [
  3473. "MIT"
  3474. ],
  3475. "authors": [
  3476. {
  3477. "name": "PHP-FIG",
  3478. "homepage": "https://www.php-fig.org/"
  3479. }
  3480. ],
  3481. "description": "Common interface for HTTP clients",
  3482. "homepage": "https://github.com/php-fig/http-client",
  3483. "keywords": [
  3484. "http",
  3485. "http-client",
  3486. "psr",
  3487. "psr-18"
  3488. ],
  3489. "support": {
  3490. "source": "https://github.com/php-fig/http-client"
  3491. },
  3492. "time": "2023-09-23T14:17:50+00:00"
  3493. },
  3494. {
  3495. "name": "psr/http-factory",
  3496. "version": "1.1.0",
  3497. "source": {
  3498. "type": "git",
  3499. "url": "https://github.com/php-fig/http-factory.git",
  3500. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  3501. },
  3502. "dist": {
  3503. "type": "zip",
  3504. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  3505. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  3506. "shasum": ""
  3507. },
  3508. "require": {
  3509. "php": ">=7.1",
  3510. "psr/http-message": "^1.0 || ^2.0"
  3511. },
  3512. "type": "library",
  3513. "extra": {
  3514. "branch-alias": {
  3515. "dev-master": "1.0.x-dev"
  3516. }
  3517. },
  3518. "autoload": {
  3519. "psr-4": {
  3520. "Psr\\Http\\Message\\": "src/"
  3521. }
  3522. },
  3523. "notification-url": "https://packagist.org/downloads/",
  3524. "license": [
  3525. "MIT"
  3526. ],
  3527. "authors": [
  3528. {
  3529. "name": "PHP-FIG",
  3530. "homepage": "https://www.php-fig.org/"
  3531. }
  3532. ],
  3533. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  3534. "keywords": [
  3535. "factory",
  3536. "http",
  3537. "message",
  3538. "psr",
  3539. "psr-17",
  3540. "psr-7",
  3541. "request",
  3542. "response"
  3543. ],
  3544. "support": {
  3545. "source": "https://github.com/php-fig/http-factory"
  3546. },
  3547. "time": "2024-04-15T12:06:14+00:00"
  3548. },
  3549. {
  3550. "name": "psr/http-message",
  3551. "version": "2.0",
  3552. "source": {
  3553. "type": "git",
  3554. "url": "https://github.com/php-fig/http-message.git",
  3555. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  3556. },
  3557. "dist": {
  3558. "type": "zip",
  3559. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  3560. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  3561. "shasum": ""
  3562. },
  3563. "require": {
  3564. "php": "^7.2 || ^8.0"
  3565. },
  3566. "type": "library",
  3567. "extra": {
  3568. "branch-alias": {
  3569. "dev-master": "2.0.x-dev"
  3570. }
  3571. },
  3572. "autoload": {
  3573. "psr-4": {
  3574. "Psr\\Http\\Message\\": "src/"
  3575. }
  3576. },
  3577. "notification-url": "https://packagist.org/downloads/",
  3578. "license": [
  3579. "MIT"
  3580. ],
  3581. "authors": [
  3582. {
  3583. "name": "PHP-FIG",
  3584. "homepage": "https://www.php-fig.org/"
  3585. }
  3586. ],
  3587. "description": "Common interface for HTTP messages",
  3588. "homepage": "https://github.com/php-fig/http-message",
  3589. "keywords": [
  3590. "http",
  3591. "http-message",
  3592. "psr",
  3593. "psr-7",
  3594. "request",
  3595. "response"
  3596. ],
  3597. "support": {
  3598. "source": "https://github.com/php-fig/http-message/tree/2.0"
  3599. },
  3600. "time": "2023-04-04T09:54:51+00:00"
  3601. },
  3602. {
  3603. "name": "psr/log",
  3604. "version": "3.0.2",
  3605. "source": {
  3606. "type": "git",
  3607. "url": "https://github.com/php-fig/log.git",
  3608. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  3609. },
  3610. "dist": {
  3611. "type": "zip",
  3612. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  3613. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  3614. "shasum": ""
  3615. },
  3616. "require": {
  3617. "php": ">=8.0.0"
  3618. },
  3619. "type": "library",
  3620. "extra": {
  3621. "branch-alias": {
  3622. "dev-master": "3.x-dev"
  3623. }
  3624. },
  3625. "autoload": {
  3626. "psr-4": {
  3627. "Psr\\Log\\": "src"
  3628. }
  3629. },
  3630. "notification-url": "https://packagist.org/downloads/",
  3631. "license": [
  3632. "MIT"
  3633. ],
  3634. "authors": [
  3635. {
  3636. "name": "PHP-FIG",
  3637. "homepage": "https://www.php-fig.org/"
  3638. }
  3639. ],
  3640. "description": "Common interface for logging libraries",
  3641. "homepage": "https://github.com/php-fig/log",
  3642. "keywords": [
  3643. "log",
  3644. "psr",
  3645. "psr-3"
  3646. ],
  3647. "support": {
  3648. "source": "https://github.com/php-fig/log/tree/3.0.2"
  3649. },
  3650. "time": "2024-09-11T13:17:53+00:00"
  3651. },
  3652. {
  3653. "name": "psr/simple-cache",
  3654. "version": "3.0.0",
  3655. "source": {
  3656. "type": "git",
  3657. "url": "https://github.com/php-fig/simple-cache.git",
  3658. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  3659. },
  3660. "dist": {
  3661. "type": "zip",
  3662. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  3663. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  3664. "shasum": ""
  3665. },
  3666. "require": {
  3667. "php": ">=8.0.0"
  3668. },
  3669. "type": "library",
  3670. "extra": {
  3671. "branch-alias": {
  3672. "dev-master": "3.0.x-dev"
  3673. }
  3674. },
  3675. "autoload": {
  3676. "psr-4": {
  3677. "Psr\\SimpleCache\\": "src/"
  3678. }
  3679. },
  3680. "notification-url": "https://packagist.org/downloads/",
  3681. "license": [
  3682. "MIT"
  3683. ],
  3684. "authors": [
  3685. {
  3686. "name": "PHP-FIG",
  3687. "homepage": "https://www.php-fig.org/"
  3688. }
  3689. ],
  3690. "description": "Common interfaces for simple caching",
  3691. "keywords": [
  3692. "cache",
  3693. "caching",
  3694. "psr",
  3695. "psr-16",
  3696. "simple-cache"
  3697. ],
  3698. "support": {
  3699. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  3700. },
  3701. "time": "2021-10-29T13:26:27+00:00"
  3702. },
  3703. {
  3704. "name": "psy/psysh",
  3705. "version": "v0.12.4",
  3706. "source": {
  3707. "type": "git",
  3708. "url": "https://github.com/bobthecow/psysh.git",
  3709. "reference": "2fd717afa05341b4f8152547f142cd2f130f6818"
  3710. },
  3711. "dist": {
  3712. "type": "zip",
  3713. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/2fd717afa05341b4f8152547f142cd2f130f6818",
  3714. "reference": "2fd717afa05341b4f8152547f142cd2f130f6818",
  3715. "shasum": ""
  3716. },
  3717. "require": {
  3718. "ext-json": "*",
  3719. "ext-tokenizer": "*",
  3720. "nikic/php-parser": "^5.0 || ^4.0",
  3721. "php": "^8.0 || ^7.4",
  3722. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  3723. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  3724. },
  3725. "conflict": {
  3726. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  3727. },
  3728. "require-dev": {
  3729. "bamarni/composer-bin-plugin": "^1.2"
  3730. },
  3731. "suggest": {
  3732. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  3733. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  3734. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  3735. },
  3736. "bin": [
  3737. "bin/psysh"
  3738. ],
  3739. "type": "library",
  3740. "extra": {
  3741. "branch-alias": {
  3742. "dev-main": "0.12.x-dev"
  3743. },
  3744. "bamarni-bin": {
  3745. "bin-links": false,
  3746. "forward-command": false
  3747. }
  3748. },
  3749. "autoload": {
  3750. "files": [
  3751. "src/functions.php"
  3752. ],
  3753. "psr-4": {
  3754. "Psy\\": "src/"
  3755. }
  3756. },
  3757. "notification-url": "https://packagist.org/downloads/",
  3758. "license": [
  3759. "MIT"
  3760. ],
  3761. "authors": [
  3762. {
  3763. "name": "Justin Hileman",
  3764. "email": "justin@justinhileman.info",
  3765. "homepage": "http://justinhileman.com"
  3766. }
  3767. ],
  3768. "description": "An interactive shell for modern PHP.",
  3769. "homepage": "http://psysh.org",
  3770. "keywords": [
  3771. "REPL",
  3772. "console",
  3773. "interactive",
  3774. "shell"
  3775. ],
  3776. "support": {
  3777. "issues": "https://github.com/bobthecow/psysh/issues",
  3778. "source": "https://github.com/bobthecow/psysh/tree/v0.12.4"
  3779. },
  3780. "time": "2024-06-10T01:18:23+00:00"
  3781. },
  3782. {
  3783. "name": "ralouphie/getallheaders",
  3784. "version": "3.0.3",
  3785. "source": {
  3786. "type": "git",
  3787. "url": "https://github.com/ralouphie/getallheaders.git",
  3788. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  3789. },
  3790. "dist": {
  3791. "type": "zip",
  3792. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  3793. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  3794. "shasum": ""
  3795. },
  3796. "require": {
  3797. "php": ">=5.6"
  3798. },
  3799. "require-dev": {
  3800. "php-coveralls/php-coveralls": "^2.1",
  3801. "phpunit/phpunit": "^5 || ^6.5"
  3802. },
  3803. "type": "library",
  3804. "autoload": {
  3805. "files": [
  3806. "src/getallheaders.php"
  3807. ]
  3808. },
  3809. "notification-url": "https://packagist.org/downloads/",
  3810. "license": [
  3811. "MIT"
  3812. ],
  3813. "authors": [
  3814. {
  3815. "name": "Ralph Khattar",
  3816. "email": "ralph.khattar@gmail.com"
  3817. }
  3818. ],
  3819. "description": "A polyfill for getallheaders.",
  3820. "support": {
  3821. "issues": "https://github.com/ralouphie/getallheaders/issues",
  3822. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  3823. },
  3824. "time": "2019-03-08T08:55:37+00:00"
  3825. },
  3826. {
  3827. "name": "ramsey/collection",
  3828. "version": "2.0.0",
  3829. "source": {
  3830. "type": "git",
  3831. "url": "https://github.com/ramsey/collection.git",
  3832. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5"
  3833. },
  3834. "dist": {
  3835. "type": "zip",
  3836. "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  3837. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  3838. "shasum": ""
  3839. },
  3840. "require": {
  3841. "php": "^8.1"
  3842. },
  3843. "require-dev": {
  3844. "captainhook/plugin-composer": "^5.3",
  3845. "ergebnis/composer-normalize": "^2.28.3",
  3846. "fakerphp/faker": "^1.21",
  3847. "hamcrest/hamcrest-php": "^2.0",
  3848. "jangregor/phpstan-prophecy": "^1.0",
  3849. "mockery/mockery": "^1.5",
  3850. "php-parallel-lint/php-console-highlighter": "^1.0",
  3851. "php-parallel-lint/php-parallel-lint": "^1.3",
  3852. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  3853. "phpspec/prophecy-phpunit": "^2.0",
  3854. "phpstan/extension-installer": "^1.2",
  3855. "phpstan/phpstan": "^1.9",
  3856. "phpstan/phpstan-mockery": "^1.1",
  3857. "phpstan/phpstan-phpunit": "^1.3",
  3858. "phpunit/phpunit": "^9.5",
  3859. "psalm/plugin-mockery": "^1.1",
  3860. "psalm/plugin-phpunit": "^0.18.4",
  3861. "ramsey/coding-standard": "^2.0.3",
  3862. "ramsey/conventional-commits": "^1.3",
  3863. "vimeo/psalm": "^5.4"
  3864. },
  3865. "type": "library",
  3866. "extra": {
  3867. "captainhook": {
  3868. "force-install": true
  3869. },
  3870. "ramsey/conventional-commits": {
  3871. "configFile": "conventional-commits.json"
  3872. }
  3873. },
  3874. "autoload": {
  3875. "psr-4": {
  3876. "Ramsey\\Collection\\": "src/"
  3877. }
  3878. },
  3879. "notification-url": "https://packagist.org/downloads/",
  3880. "license": [
  3881. "MIT"
  3882. ],
  3883. "authors": [
  3884. {
  3885. "name": "Ben Ramsey",
  3886. "email": "ben@benramsey.com",
  3887. "homepage": "https://benramsey.com"
  3888. }
  3889. ],
  3890. "description": "A PHP library for representing and manipulating collections.",
  3891. "keywords": [
  3892. "array",
  3893. "collection",
  3894. "hash",
  3895. "map",
  3896. "queue",
  3897. "set"
  3898. ],
  3899. "support": {
  3900. "issues": "https://github.com/ramsey/collection/issues",
  3901. "source": "https://github.com/ramsey/collection/tree/2.0.0"
  3902. },
  3903. "funding": [
  3904. {
  3905. "url": "https://github.com/ramsey",
  3906. "type": "github"
  3907. },
  3908. {
  3909. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  3910. "type": "tidelift"
  3911. }
  3912. ],
  3913. "time": "2022-12-31T21:50:55+00:00"
  3914. },
  3915. {
  3916. "name": "ramsey/uuid",
  3917. "version": "4.7.6",
  3918. "source": {
  3919. "type": "git",
  3920. "url": "https://github.com/ramsey/uuid.git",
  3921. "reference": "91039bc1faa45ba123c4328958e620d382ec7088"
  3922. },
  3923. "dist": {
  3924. "type": "zip",
  3925. "url": "https://api.github.com/repos/ramsey/uuid/zipball/91039bc1faa45ba123c4328958e620d382ec7088",
  3926. "reference": "91039bc1faa45ba123c4328958e620d382ec7088",
  3927. "shasum": ""
  3928. },
  3929. "require": {
  3930. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12",
  3931. "ext-json": "*",
  3932. "php": "^8.0",
  3933. "ramsey/collection": "^1.2 || ^2.0"
  3934. },
  3935. "replace": {
  3936. "rhumsaa/uuid": "self.version"
  3937. },
  3938. "require-dev": {
  3939. "captainhook/captainhook": "^5.10",
  3940. "captainhook/plugin-composer": "^5.3",
  3941. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  3942. "doctrine/annotations": "^1.8",
  3943. "ergebnis/composer-normalize": "^2.15",
  3944. "mockery/mockery": "^1.3",
  3945. "paragonie/random-lib": "^2",
  3946. "php-mock/php-mock": "^2.2",
  3947. "php-mock/php-mock-mockery": "^1.3",
  3948. "php-parallel-lint/php-parallel-lint": "^1.1",
  3949. "phpbench/phpbench": "^1.0",
  3950. "phpstan/extension-installer": "^1.1",
  3951. "phpstan/phpstan": "^1.8",
  3952. "phpstan/phpstan-mockery": "^1.1",
  3953. "phpstan/phpstan-phpunit": "^1.1",
  3954. "phpunit/phpunit": "^8.5 || ^9",
  3955. "ramsey/composer-repl": "^1.4",
  3956. "slevomat/coding-standard": "^8.4",
  3957. "squizlabs/php_codesniffer": "^3.5",
  3958. "vimeo/psalm": "^4.9"
  3959. },
  3960. "suggest": {
  3961. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  3962. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  3963. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  3964. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  3965. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  3966. },
  3967. "type": "library",
  3968. "extra": {
  3969. "captainhook": {
  3970. "force-install": true
  3971. }
  3972. },
  3973. "autoload": {
  3974. "files": [
  3975. "src/functions.php"
  3976. ],
  3977. "psr-4": {
  3978. "Ramsey\\Uuid\\": "src/"
  3979. }
  3980. },
  3981. "notification-url": "https://packagist.org/downloads/",
  3982. "license": [
  3983. "MIT"
  3984. ],
  3985. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  3986. "keywords": [
  3987. "guid",
  3988. "identifier",
  3989. "uuid"
  3990. ],
  3991. "support": {
  3992. "issues": "https://github.com/ramsey/uuid/issues",
  3993. "source": "https://github.com/ramsey/uuid/tree/4.7.6"
  3994. },
  3995. "funding": [
  3996. {
  3997. "url": "https://github.com/ramsey",
  3998. "type": "github"
  3999. },
  4000. {
  4001. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  4002. "type": "tidelift"
  4003. }
  4004. ],
  4005. "time": "2024-04-27T21:32:50+00:00"
  4006. },
  4007. {
  4008. "name": "simplesoftwareio/simple-qrcode",
  4009. "version": "4.2.0",
  4010. "source": {
  4011. "type": "git",
  4012. "url": "https://github.com/SimpleSoftwareIO/simple-qrcode.git",
  4013. "reference": "916db7948ca6772d54bb617259c768c9cdc8d537"
  4014. },
  4015. "dist": {
  4016. "type": "zip",
  4017. "url": "https://api.github.com/repos/SimpleSoftwareIO/simple-qrcode/zipball/916db7948ca6772d54bb617259c768c9cdc8d537",
  4018. "reference": "916db7948ca6772d54bb617259c768c9cdc8d537",
  4019. "shasum": ""
  4020. },
  4021. "require": {
  4022. "bacon/bacon-qr-code": "^2.0",
  4023. "ext-gd": "*",
  4024. "php": ">=7.2|^8.0"
  4025. },
  4026. "require-dev": {
  4027. "mockery/mockery": "~1",
  4028. "phpunit/phpunit": "~9"
  4029. },
  4030. "suggest": {
  4031. "ext-imagick": "Allows the generation of PNG QrCodes.",
  4032. "illuminate/support": "Allows for use within Laravel."
  4033. },
  4034. "type": "library",
  4035. "extra": {
  4036. "laravel": {
  4037. "providers": [
  4038. "SimpleSoftwareIO\\QrCode\\QrCodeServiceProvider"
  4039. ],
  4040. "aliases": {
  4041. "QrCode": "SimpleSoftwareIO\\QrCode\\Facades\\QrCode"
  4042. }
  4043. }
  4044. },
  4045. "autoload": {
  4046. "psr-4": {
  4047. "SimpleSoftwareIO\\QrCode\\": "src"
  4048. }
  4049. },
  4050. "notification-url": "https://packagist.org/downloads/",
  4051. "license": [
  4052. "MIT"
  4053. ],
  4054. "authors": [
  4055. {
  4056. "name": "Simple Software LLC",
  4057. "email": "support@simplesoftware.io"
  4058. }
  4059. ],
  4060. "description": "Simple QrCode is a QR code generator made for Laravel.",
  4061. "homepage": "https://www.simplesoftware.io/#/docs/simple-qrcode",
  4062. "keywords": [
  4063. "Simple",
  4064. "generator",
  4065. "laravel",
  4066. "qrcode",
  4067. "wrapper"
  4068. ],
  4069. "support": {
  4070. "issues": "https://github.com/SimpleSoftwareIO/simple-qrcode/issues",
  4071. "source": "https://github.com/SimpleSoftwareIO/simple-qrcode/tree/4.2.0"
  4072. },
  4073. "time": "2021-02-08T20:43:55+00:00"
  4074. },
  4075. {
  4076. "name": "spatie/laravel-permission",
  4077. "version": "6.9.0",
  4078. "source": {
  4079. "type": "git",
  4080. "url": "https://github.com/spatie/laravel-permission.git",
  4081. "reference": "fe973a58b44380d0e8620107259b7bda22f70408"
  4082. },
  4083. "dist": {
  4084. "type": "zip",
  4085. "url": "https://api.github.com/repos/spatie/laravel-permission/zipball/fe973a58b44380d0e8620107259b7bda22f70408",
  4086. "reference": "fe973a58b44380d0e8620107259b7bda22f70408",
  4087. "shasum": ""
  4088. },
  4089. "require": {
  4090. "illuminate/auth": "^8.12|^9.0|^10.0|^11.0",
  4091. "illuminate/container": "^8.12|^9.0|^10.0|^11.0",
  4092. "illuminate/contracts": "^8.12|^9.0|^10.0|^11.0",
  4093. "illuminate/database": "^8.12|^9.0|^10.0|^11.0",
  4094. "php": "^8.0"
  4095. },
  4096. "require-dev": {
  4097. "laravel/passport": "^11.0|^12.0",
  4098. "orchestra/testbench": "^6.23|^7.0|^8.0|^9.0",
  4099. "phpunit/phpunit": "^9.4|^10.1"
  4100. },
  4101. "type": "library",
  4102. "extra": {
  4103. "branch-alias": {
  4104. "dev-main": "6.x-dev",
  4105. "dev-master": "6.x-dev"
  4106. },
  4107. "laravel": {
  4108. "providers": [
  4109. "Spatie\\Permission\\PermissionServiceProvider"
  4110. ]
  4111. }
  4112. },
  4113. "autoload": {
  4114. "files": [
  4115. "src/helpers.php"
  4116. ],
  4117. "psr-4": {
  4118. "Spatie\\Permission\\": "src"
  4119. }
  4120. },
  4121. "notification-url": "https://packagist.org/downloads/",
  4122. "license": [
  4123. "MIT"
  4124. ],
  4125. "authors": [
  4126. {
  4127. "name": "Freek Van der Herten",
  4128. "email": "freek@spatie.be",
  4129. "homepage": "https://spatie.be",
  4130. "role": "Developer"
  4131. }
  4132. ],
  4133. "description": "Permission handling for Laravel 8.0 and up",
  4134. "homepage": "https://github.com/spatie/laravel-permission",
  4135. "keywords": [
  4136. "acl",
  4137. "laravel",
  4138. "permission",
  4139. "permissions",
  4140. "rbac",
  4141. "roles",
  4142. "security",
  4143. "spatie"
  4144. ],
  4145. "support": {
  4146. "issues": "https://github.com/spatie/laravel-permission/issues",
  4147. "source": "https://github.com/spatie/laravel-permission/tree/6.9.0"
  4148. },
  4149. "funding": [
  4150. {
  4151. "url": "https://github.com/spatie",
  4152. "type": "github"
  4153. }
  4154. ],
  4155. "time": "2024-06-22T23:04:52+00:00"
  4156. },
  4157. {
  4158. "name": "symfony/cache",
  4159. "version": "v7.1.5",
  4160. "source": {
  4161. "type": "git",
  4162. "url": "https://github.com/symfony/cache.git",
  4163. "reference": "86e5296b10e4dec8c8441056ca606aedb8a3be0a"
  4164. },
  4165. "dist": {
  4166. "type": "zip",
  4167. "url": "https://api.github.com/repos/symfony/cache/zipball/86e5296b10e4dec8c8441056ca606aedb8a3be0a",
  4168. "reference": "86e5296b10e4dec8c8441056ca606aedb8a3be0a",
  4169. "shasum": ""
  4170. },
  4171. "require": {
  4172. "php": ">=8.2",
  4173. "psr/cache": "^2.0|^3.0",
  4174. "psr/log": "^1.1|^2|^3",
  4175. "symfony/cache-contracts": "^2.5|^3",
  4176. "symfony/deprecation-contracts": "^2.5|^3.0",
  4177. "symfony/service-contracts": "^2.5|^3",
  4178. "symfony/var-exporter": "^6.4|^7.0"
  4179. },
  4180. "conflict": {
  4181. "doctrine/dbal": "<3.6",
  4182. "symfony/dependency-injection": "<6.4",
  4183. "symfony/http-kernel": "<6.4",
  4184. "symfony/var-dumper": "<6.4"
  4185. },
  4186. "provide": {
  4187. "psr/cache-implementation": "2.0|3.0",
  4188. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  4189. "symfony/cache-implementation": "1.1|2.0|3.0"
  4190. },
  4191. "require-dev": {
  4192. "cache/integration-tests": "dev-master",
  4193. "doctrine/dbal": "^3.6|^4",
  4194. "predis/predis": "^1.1|^2.0",
  4195. "psr/simple-cache": "^1.0|^2.0|^3.0",
  4196. "symfony/config": "^6.4|^7.0",
  4197. "symfony/dependency-injection": "^6.4|^7.0",
  4198. "symfony/filesystem": "^6.4|^7.0",
  4199. "symfony/http-kernel": "^6.4|^7.0",
  4200. "symfony/messenger": "^6.4|^7.0",
  4201. "symfony/var-dumper": "^6.4|^7.0"
  4202. },
  4203. "type": "library",
  4204. "autoload": {
  4205. "psr-4": {
  4206. "Symfony\\Component\\Cache\\": ""
  4207. },
  4208. "classmap": [
  4209. "Traits/ValueWrapper.php"
  4210. ],
  4211. "exclude-from-classmap": [
  4212. "/Tests/"
  4213. ]
  4214. },
  4215. "notification-url": "https://packagist.org/downloads/",
  4216. "license": [
  4217. "MIT"
  4218. ],
  4219. "authors": [
  4220. {
  4221. "name": "Nicolas Grekas",
  4222. "email": "p@tchwork.com"
  4223. },
  4224. {
  4225. "name": "Symfony Community",
  4226. "homepage": "https://symfony.com/contributors"
  4227. }
  4228. ],
  4229. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  4230. "homepage": "https://symfony.com",
  4231. "keywords": [
  4232. "caching",
  4233. "psr6"
  4234. ],
  4235. "support": {
  4236. "source": "https://github.com/symfony/cache/tree/v7.1.5"
  4237. },
  4238. "funding": [
  4239. {
  4240. "url": "https://symfony.com/sponsor",
  4241. "type": "custom"
  4242. },
  4243. {
  4244. "url": "https://github.com/fabpot",
  4245. "type": "github"
  4246. },
  4247. {
  4248. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4249. "type": "tidelift"
  4250. }
  4251. ],
  4252. "time": "2024-09-17T09:16:35+00:00"
  4253. },
  4254. {
  4255. "name": "symfony/cache-contracts",
  4256. "version": "v3.5.0",
  4257. "source": {
  4258. "type": "git",
  4259. "url": "https://github.com/symfony/cache-contracts.git",
  4260. "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197"
  4261. },
  4262. "dist": {
  4263. "type": "zip",
  4264. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/df6a1a44c890faded49a5fca33c2d5c5fd3c2197",
  4265. "reference": "df6a1a44c890faded49a5fca33c2d5c5fd3c2197",
  4266. "shasum": ""
  4267. },
  4268. "require": {
  4269. "php": ">=8.1",
  4270. "psr/cache": "^3.0"
  4271. },
  4272. "type": "library",
  4273. "extra": {
  4274. "branch-alias": {
  4275. "dev-main": "3.5-dev"
  4276. },
  4277. "thanks": {
  4278. "name": "symfony/contracts",
  4279. "url": "https://github.com/symfony/contracts"
  4280. }
  4281. },
  4282. "autoload": {
  4283. "psr-4": {
  4284. "Symfony\\Contracts\\Cache\\": ""
  4285. }
  4286. },
  4287. "notification-url": "https://packagist.org/downloads/",
  4288. "license": [
  4289. "MIT"
  4290. ],
  4291. "authors": [
  4292. {
  4293. "name": "Nicolas Grekas",
  4294. "email": "p@tchwork.com"
  4295. },
  4296. {
  4297. "name": "Symfony Community",
  4298. "homepage": "https://symfony.com/contributors"
  4299. }
  4300. ],
  4301. "description": "Generic abstractions related to caching",
  4302. "homepage": "https://symfony.com",
  4303. "keywords": [
  4304. "abstractions",
  4305. "contracts",
  4306. "decoupling",
  4307. "interfaces",
  4308. "interoperability",
  4309. "standards"
  4310. ],
  4311. "support": {
  4312. "source": "https://github.com/symfony/cache-contracts/tree/v3.5.0"
  4313. },
  4314. "funding": [
  4315. {
  4316. "url": "https://symfony.com/sponsor",
  4317. "type": "custom"
  4318. },
  4319. {
  4320. "url": "https://github.com/fabpot",
  4321. "type": "github"
  4322. },
  4323. {
  4324. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4325. "type": "tidelift"
  4326. }
  4327. ],
  4328. "time": "2024-04-18T09:32:20+00:00"
  4329. },
  4330. {
  4331. "name": "symfony/clock",
  4332. "version": "v7.1.1",
  4333. "source": {
  4334. "type": "git",
  4335. "url": "https://github.com/symfony/clock.git",
  4336. "reference": "3dfc8b084853586de51dd1441c6242c76a28cbe7"
  4337. },
  4338. "dist": {
  4339. "type": "zip",
  4340. "url": "https://api.github.com/repos/symfony/clock/zipball/3dfc8b084853586de51dd1441c6242c76a28cbe7",
  4341. "reference": "3dfc8b084853586de51dd1441c6242c76a28cbe7",
  4342. "shasum": ""
  4343. },
  4344. "require": {
  4345. "php": ">=8.2",
  4346. "psr/clock": "^1.0",
  4347. "symfony/polyfill-php83": "^1.28"
  4348. },
  4349. "provide": {
  4350. "psr/clock-implementation": "1.0"
  4351. },
  4352. "type": "library",
  4353. "autoload": {
  4354. "files": [
  4355. "Resources/now.php"
  4356. ],
  4357. "psr-4": {
  4358. "Symfony\\Component\\Clock\\": ""
  4359. },
  4360. "exclude-from-classmap": [
  4361. "/Tests/"
  4362. ]
  4363. },
  4364. "notification-url": "https://packagist.org/downloads/",
  4365. "license": [
  4366. "MIT"
  4367. ],
  4368. "authors": [
  4369. {
  4370. "name": "Nicolas Grekas",
  4371. "email": "p@tchwork.com"
  4372. },
  4373. {
  4374. "name": "Symfony Community",
  4375. "homepage": "https://symfony.com/contributors"
  4376. }
  4377. ],
  4378. "description": "Decouples applications from the system clock",
  4379. "homepage": "https://symfony.com",
  4380. "keywords": [
  4381. "clock",
  4382. "psr20",
  4383. "time"
  4384. ],
  4385. "support": {
  4386. "source": "https://github.com/symfony/clock/tree/v7.1.1"
  4387. },
  4388. "funding": [
  4389. {
  4390. "url": "https://symfony.com/sponsor",
  4391. "type": "custom"
  4392. },
  4393. {
  4394. "url": "https://github.com/fabpot",
  4395. "type": "github"
  4396. },
  4397. {
  4398. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4399. "type": "tidelift"
  4400. }
  4401. ],
  4402. "time": "2024-05-31T14:57:53+00:00"
  4403. },
  4404. {
  4405. "name": "symfony/console",
  4406. "version": "v7.1.5",
  4407. "source": {
  4408. "type": "git",
  4409. "url": "https://github.com/symfony/console.git",
  4410. "reference": "0fa539d12b3ccf068a722bbbffa07ca7079af9ee"
  4411. },
  4412. "dist": {
  4413. "type": "zip",
  4414. "url": "https://api.github.com/repos/symfony/console/zipball/0fa539d12b3ccf068a722bbbffa07ca7079af9ee",
  4415. "reference": "0fa539d12b3ccf068a722bbbffa07ca7079af9ee",
  4416. "shasum": ""
  4417. },
  4418. "require": {
  4419. "php": ">=8.2",
  4420. "symfony/polyfill-mbstring": "~1.0",
  4421. "symfony/service-contracts": "^2.5|^3",
  4422. "symfony/string": "^6.4|^7.0"
  4423. },
  4424. "conflict": {
  4425. "symfony/dependency-injection": "<6.4",
  4426. "symfony/dotenv": "<6.4",
  4427. "symfony/event-dispatcher": "<6.4",
  4428. "symfony/lock": "<6.4",
  4429. "symfony/process": "<6.4"
  4430. },
  4431. "provide": {
  4432. "psr/log-implementation": "1.0|2.0|3.0"
  4433. },
  4434. "require-dev": {
  4435. "psr/log": "^1|^2|^3",
  4436. "symfony/config": "^6.4|^7.0",
  4437. "symfony/dependency-injection": "^6.4|^7.0",
  4438. "symfony/event-dispatcher": "^6.4|^7.0",
  4439. "symfony/http-foundation": "^6.4|^7.0",
  4440. "symfony/http-kernel": "^6.4|^7.0",
  4441. "symfony/lock": "^6.4|^7.0",
  4442. "symfony/messenger": "^6.4|^7.0",
  4443. "symfony/process": "^6.4|^7.0",
  4444. "symfony/stopwatch": "^6.4|^7.0",
  4445. "symfony/var-dumper": "^6.4|^7.0"
  4446. },
  4447. "type": "library",
  4448. "autoload": {
  4449. "psr-4": {
  4450. "Symfony\\Component\\Console\\": ""
  4451. },
  4452. "exclude-from-classmap": [
  4453. "/Tests/"
  4454. ]
  4455. },
  4456. "notification-url": "https://packagist.org/downloads/",
  4457. "license": [
  4458. "MIT"
  4459. ],
  4460. "authors": [
  4461. {
  4462. "name": "Fabien Potencier",
  4463. "email": "fabien@symfony.com"
  4464. },
  4465. {
  4466. "name": "Symfony Community",
  4467. "homepage": "https://symfony.com/contributors"
  4468. }
  4469. ],
  4470. "description": "Eases the creation of beautiful and testable command line interfaces",
  4471. "homepage": "https://symfony.com",
  4472. "keywords": [
  4473. "cli",
  4474. "command-line",
  4475. "console",
  4476. "terminal"
  4477. ],
  4478. "support": {
  4479. "source": "https://github.com/symfony/console/tree/v7.1.5"
  4480. },
  4481. "funding": [
  4482. {
  4483. "url": "https://symfony.com/sponsor",
  4484. "type": "custom"
  4485. },
  4486. {
  4487. "url": "https://github.com/fabpot",
  4488. "type": "github"
  4489. },
  4490. {
  4491. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4492. "type": "tidelift"
  4493. }
  4494. ],
  4495. "time": "2024-09-20T08:28:38+00:00"
  4496. },
  4497. {
  4498. "name": "symfony/css-selector",
  4499. "version": "v7.1.1",
  4500. "source": {
  4501. "type": "git",
  4502. "url": "https://github.com/symfony/css-selector.git",
  4503. "reference": "1c7cee86c6f812896af54434f8ce29c8d94f9ff4"
  4504. },
  4505. "dist": {
  4506. "type": "zip",
  4507. "url": "https://api.github.com/repos/symfony/css-selector/zipball/1c7cee86c6f812896af54434f8ce29c8d94f9ff4",
  4508. "reference": "1c7cee86c6f812896af54434f8ce29c8d94f9ff4",
  4509. "shasum": ""
  4510. },
  4511. "require": {
  4512. "php": ">=8.2"
  4513. },
  4514. "type": "library",
  4515. "autoload": {
  4516. "psr-4": {
  4517. "Symfony\\Component\\CssSelector\\": ""
  4518. },
  4519. "exclude-from-classmap": [
  4520. "/Tests/"
  4521. ]
  4522. },
  4523. "notification-url": "https://packagist.org/downloads/",
  4524. "license": [
  4525. "MIT"
  4526. ],
  4527. "authors": [
  4528. {
  4529. "name": "Fabien Potencier",
  4530. "email": "fabien@symfony.com"
  4531. },
  4532. {
  4533. "name": "Jean-François Simon",
  4534. "email": "jeanfrancois.simon@sensiolabs.com"
  4535. },
  4536. {
  4537. "name": "Symfony Community",
  4538. "homepage": "https://symfony.com/contributors"
  4539. }
  4540. ],
  4541. "description": "Converts CSS selectors to XPath expressions",
  4542. "homepage": "https://symfony.com",
  4543. "support": {
  4544. "source": "https://github.com/symfony/css-selector/tree/v7.1.1"
  4545. },
  4546. "funding": [
  4547. {
  4548. "url": "https://symfony.com/sponsor",
  4549. "type": "custom"
  4550. },
  4551. {
  4552. "url": "https://github.com/fabpot",
  4553. "type": "github"
  4554. },
  4555. {
  4556. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4557. "type": "tidelift"
  4558. }
  4559. ],
  4560. "time": "2024-05-31T14:57:53+00:00"
  4561. },
  4562. {
  4563. "name": "symfony/deprecation-contracts",
  4564. "version": "v3.5.0",
  4565. "source": {
  4566. "type": "git",
  4567. "url": "https://github.com/symfony/deprecation-contracts.git",
  4568. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  4569. },
  4570. "dist": {
  4571. "type": "zip",
  4572. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  4573. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  4574. "shasum": ""
  4575. },
  4576. "require": {
  4577. "php": ">=8.1"
  4578. },
  4579. "type": "library",
  4580. "extra": {
  4581. "branch-alias": {
  4582. "dev-main": "3.5-dev"
  4583. },
  4584. "thanks": {
  4585. "name": "symfony/contracts",
  4586. "url": "https://github.com/symfony/contracts"
  4587. }
  4588. },
  4589. "autoload": {
  4590. "files": [
  4591. "function.php"
  4592. ]
  4593. },
  4594. "notification-url": "https://packagist.org/downloads/",
  4595. "license": [
  4596. "MIT"
  4597. ],
  4598. "authors": [
  4599. {
  4600. "name": "Nicolas Grekas",
  4601. "email": "p@tchwork.com"
  4602. },
  4603. {
  4604. "name": "Symfony Community",
  4605. "homepage": "https://symfony.com/contributors"
  4606. }
  4607. ],
  4608. "description": "A generic function and convention to trigger deprecation notices",
  4609. "homepage": "https://symfony.com",
  4610. "support": {
  4611. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  4612. },
  4613. "funding": [
  4614. {
  4615. "url": "https://symfony.com/sponsor",
  4616. "type": "custom"
  4617. },
  4618. {
  4619. "url": "https://github.com/fabpot",
  4620. "type": "github"
  4621. },
  4622. {
  4623. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4624. "type": "tidelift"
  4625. }
  4626. ],
  4627. "time": "2024-04-18T09:32:20+00:00"
  4628. },
  4629. {
  4630. "name": "symfony/error-handler",
  4631. "version": "v7.1.3",
  4632. "source": {
  4633. "type": "git",
  4634. "url": "https://github.com/symfony/error-handler.git",
  4635. "reference": "432bb369952795c61ca1def65e078c4a80dad13c"
  4636. },
  4637. "dist": {
  4638. "type": "zip",
  4639. "url": "https://api.github.com/repos/symfony/error-handler/zipball/432bb369952795c61ca1def65e078c4a80dad13c",
  4640. "reference": "432bb369952795c61ca1def65e078c4a80dad13c",
  4641. "shasum": ""
  4642. },
  4643. "require": {
  4644. "php": ">=8.2",
  4645. "psr/log": "^1|^2|^3",
  4646. "symfony/var-dumper": "^6.4|^7.0"
  4647. },
  4648. "conflict": {
  4649. "symfony/deprecation-contracts": "<2.5",
  4650. "symfony/http-kernel": "<6.4"
  4651. },
  4652. "require-dev": {
  4653. "symfony/deprecation-contracts": "^2.5|^3",
  4654. "symfony/http-kernel": "^6.4|^7.0",
  4655. "symfony/serializer": "^6.4|^7.0"
  4656. },
  4657. "bin": [
  4658. "Resources/bin/patch-type-declarations"
  4659. ],
  4660. "type": "library",
  4661. "autoload": {
  4662. "psr-4": {
  4663. "Symfony\\Component\\ErrorHandler\\": ""
  4664. },
  4665. "exclude-from-classmap": [
  4666. "/Tests/"
  4667. ]
  4668. },
  4669. "notification-url": "https://packagist.org/downloads/",
  4670. "license": [
  4671. "MIT"
  4672. ],
  4673. "authors": [
  4674. {
  4675. "name": "Fabien Potencier",
  4676. "email": "fabien@symfony.com"
  4677. },
  4678. {
  4679. "name": "Symfony Community",
  4680. "homepage": "https://symfony.com/contributors"
  4681. }
  4682. ],
  4683. "description": "Provides tools to manage errors and ease debugging PHP code",
  4684. "homepage": "https://symfony.com",
  4685. "support": {
  4686. "source": "https://github.com/symfony/error-handler/tree/v7.1.3"
  4687. },
  4688. "funding": [
  4689. {
  4690. "url": "https://symfony.com/sponsor",
  4691. "type": "custom"
  4692. },
  4693. {
  4694. "url": "https://github.com/fabpot",
  4695. "type": "github"
  4696. },
  4697. {
  4698. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4699. "type": "tidelift"
  4700. }
  4701. ],
  4702. "time": "2024-07-26T13:02:51+00:00"
  4703. },
  4704. {
  4705. "name": "symfony/event-dispatcher",
  4706. "version": "v7.1.1",
  4707. "source": {
  4708. "type": "git",
  4709. "url": "https://github.com/symfony/event-dispatcher.git",
  4710. "reference": "9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7"
  4711. },
  4712. "dist": {
  4713. "type": "zip",
  4714. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7",
  4715. "reference": "9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7",
  4716. "shasum": ""
  4717. },
  4718. "require": {
  4719. "php": ">=8.2",
  4720. "symfony/event-dispatcher-contracts": "^2.5|^3"
  4721. },
  4722. "conflict": {
  4723. "symfony/dependency-injection": "<6.4",
  4724. "symfony/service-contracts": "<2.5"
  4725. },
  4726. "provide": {
  4727. "psr/event-dispatcher-implementation": "1.0",
  4728. "symfony/event-dispatcher-implementation": "2.0|3.0"
  4729. },
  4730. "require-dev": {
  4731. "psr/log": "^1|^2|^3",
  4732. "symfony/config": "^6.4|^7.0",
  4733. "symfony/dependency-injection": "^6.4|^7.0",
  4734. "symfony/error-handler": "^6.4|^7.0",
  4735. "symfony/expression-language": "^6.4|^7.0",
  4736. "symfony/http-foundation": "^6.4|^7.0",
  4737. "symfony/service-contracts": "^2.5|^3",
  4738. "symfony/stopwatch": "^6.4|^7.0"
  4739. },
  4740. "type": "library",
  4741. "autoload": {
  4742. "psr-4": {
  4743. "Symfony\\Component\\EventDispatcher\\": ""
  4744. },
  4745. "exclude-from-classmap": [
  4746. "/Tests/"
  4747. ]
  4748. },
  4749. "notification-url": "https://packagist.org/downloads/",
  4750. "license": [
  4751. "MIT"
  4752. ],
  4753. "authors": [
  4754. {
  4755. "name": "Fabien Potencier",
  4756. "email": "fabien@symfony.com"
  4757. },
  4758. {
  4759. "name": "Symfony Community",
  4760. "homepage": "https://symfony.com/contributors"
  4761. }
  4762. ],
  4763. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  4764. "homepage": "https://symfony.com",
  4765. "support": {
  4766. "source": "https://github.com/symfony/event-dispatcher/tree/v7.1.1"
  4767. },
  4768. "funding": [
  4769. {
  4770. "url": "https://symfony.com/sponsor",
  4771. "type": "custom"
  4772. },
  4773. {
  4774. "url": "https://github.com/fabpot",
  4775. "type": "github"
  4776. },
  4777. {
  4778. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4779. "type": "tidelift"
  4780. }
  4781. ],
  4782. "time": "2024-05-31T14:57:53+00:00"
  4783. },
  4784. {
  4785. "name": "symfony/event-dispatcher-contracts",
  4786. "version": "v3.5.0",
  4787. "source": {
  4788. "type": "git",
  4789. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  4790. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  4791. },
  4792. "dist": {
  4793. "type": "zip",
  4794. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  4795. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  4796. "shasum": ""
  4797. },
  4798. "require": {
  4799. "php": ">=8.1",
  4800. "psr/event-dispatcher": "^1"
  4801. },
  4802. "type": "library",
  4803. "extra": {
  4804. "branch-alias": {
  4805. "dev-main": "3.5-dev"
  4806. },
  4807. "thanks": {
  4808. "name": "symfony/contracts",
  4809. "url": "https://github.com/symfony/contracts"
  4810. }
  4811. },
  4812. "autoload": {
  4813. "psr-4": {
  4814. "Symfony\\Contracts\\EventDispatcher\\": ""
  4815. }
  4816. },
  4817. "notification-url": "https://packagist.org/downloads/",
  4818. "license": [
  4819. "MIT"
  4820. ],
  4821. "authors": [
  4822. {
  4823. "name": "Nicolas Grekas",
  4824. "email": "p@tchwork.com"
  4825. },
  4826. {
  4827. "name": "Symfony Community",
  4828. "homepage": "https://symfony.com/contributors"
  4829. }
  4830. ],
  4831. "description": "Generic abstractions related to dispatching event",
  4832. "homepage": "https://symfony.com",
  4833. "keywords": [
  4834. "abstractions",
  4835. "contracts",
  4836. "decoupling",
  4837. "interfaces",
  4838. "interoperability",
  4839. "standards"
  4840. ],
  4841. "support": {
  4842. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
  4843. },
  4844. "funding": [
  4845. {
  4846. "url": "https://symfony.com/sponsor",
  4847. "type": "custom"
  4848. },
  4849. {
  4850. "url": "https://github.com/fabpot",
  4851. "type": "github"
  4852. },
  4853. {
  4854. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4855. "type": "tidelift"
  4856. }
  4857. ],
  4858. "time": "2024-04-18T09:32:20+00:00"
  4859. },
  4860. {
  4861. "name": "symfony/finder",
  4862. "version": "v7.1.4",
  4863. "source": {
  4864. "type": "git",
  4865. "url": "https://github.com/symfony/finder.git",
  4866. "reference": "d95bbf319f7d052082fb7af147e0f835a695e823"
  4867. },
  4868. "dist": {
  4869. "type": "zip",
  4870. "url": "https://api.github.com/repos/symfony/finder/zipball/d95bbf319f7d052082fb7af147e0f835a695e823",
  4871. "reference": "d95bbf319f7d052082fb7af147e0f835a695e823",
  4872. "shasum": ""
  4873. },
  4874. "require": {
  4875. "php": ">=8.2"
  4876. },
  4877. "require-dev": {
  4878. "symfony/filesystem": "^6.4|^7.0"
  4879. },
  4880. "type": "library",
  4881. "autoload": {
  4882. "psr-4": {
  4883. "Symfony\\Component\\Finder\\": ""
  4884. },
  4885. "exclude-from-classmap": [
  4886. "/Tests/"
  4887. ]
  4888. },
  4889. "notification-url": "https://packagist.org/downloads/",
  4890. "license": [
  4891. "MIT"
  4892. ],
  4893. "authors": [
  4894. {
  4895. "name": "Fabien Potencier",
  4896. "email": "fabien@symfony.com"
  4897. },
  4898. {
  4899. "name": "Symfony Community",
  4900. "homepage": "https://symfony.com/contributors"
  4901. }
  4902. ],
  4903. "description": "Finds files and directories via an intuitive fluent interface",
  4904. "homepage": "https://symfony.com",
  4905. "support": {
  4906. "source": "https://github.com/symfony/finder/tree/v7.1.4"
  4907. },
  4908. "funding": [
  4909. {
  4910. "url": "https://symfony.com/sponsor",
  4911. "type": "custom"
  4912. },
  4913. {
  4914. "url": "https://github.com/fabpot",
  4915. "type": "github"
  4916. },
  4917. {
  4918. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4919. "type": "tidelift"
  4920. }
  4921. ],
  4922. "time": "2024-08-13T14:28:19+00:00"
  4923. },
  4924. {
  4925. "name": "symfony/http-client",
  4926. "version": "v7.1.5",
  4927. "source": {
  4928. "type": "git",
  4929. "url": "https://github.com/symfony/http-client.git",
  4930. "reference": "abca35865118edf35a23f2f24978a1784c831cb4"
  4931. },
  4932. "dist": {
  4933. "type": "zip",
  4934. "url": "https://api.github.com/repos/symfony/http-client/zipball/abca35865118edf35a23f2f24978a1784c831cb4",
  4935. "reference": "abca35865118edf35a23f2f24978a1784c831cb4",
  4936. "shasum": ""
  4937. },
  4938. "require": {
  4939. "php": ">=8.2",
  4940. "psr/log": "^1|^2|^3",
  4941. "symfony/deprecation-contracts": "^2.5|^3",
  4942. "symfony/http-client-contracts": "^3.4.1",
  4943. "symfony/service-contracts": "^2.5|^3"
  4944. },
  4945. "conflict": {
  4946. "php-http/discovery": "<1.15",
  4947. "symfony/http-foundation": "<6.4"
  4948. },
  4949. "provide": {
  4950. "php-http/async-client-implementation": "*",
  4951. "php-http/client-implementation": "*",
  4952. "psr/http-client-implementation": "1.0",
  4953. "symfony/http-client-implementation": "3.0"
  4954. },
  4955. "require-dev": {
  4956. "amphp/amp": "^2.5",
  4957. "amphp/http-client": "^4.2.1",
  4958. "amphp/http-tunnel": "^1.0",
  4959. "amphp/socket": "^1.1",
  4960. "guzzlehttp/promises": "^1.4|^2.0",
  4961. "nyholm/psr7": "^1.0",
  4962. "php-http/httplug": "^1.0|^2.0",
  4963. "psr/http-client": "^1.0",
  4964. "symfony/dependency-injection": "^6.4|^7.0",
  4965. "symfony/http-kernel": "^6.4|^7.0",
  4966. "symfony/messenger": "^6.4|^7.0",
  4967. "symfony/process": "^6.4|^7.0",
  4968. "symfony/rate-limiter": "^6.4|^7.0",
  4969. "symfony/stopwatch": "^6.4|^7.0"
  4970. },
  4971. "type": "library",
  4972. "autoload": {
  4973. "psr-4": {
  4974. "Symfony\\Component\\HttpClient\\": ""
  4975. },
  4976. "exclude-from-classmap": [
  4977. "/Tests/"
  4978. ]
  4979. },
  4980. "notification-url": "https://packagist.org/downloads/",
  4981. "license": [
  4982. "MIT"
  4983. ],
  4984. "authors": [
  4985. {
  4986. "name": "Nicolas Grekas",
  4987. "email": "p@tchwork.com"
  4988. },
  4989. {
  4990. "name": "Symfony Community",
  4991. "homepage": "https://symfony.com/contributors"
  4992. }
  4993. ],
  4994. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  4995. "homepage": "https://symfony.com",
  4996. "keywords": [
  4997. "http"
  4998. ],
  4999. "support": {
  5000. "source": "https://github.com/symfony/http-client/tree/v7.1.5"
  5001. },
  5002. "funding": [
  5003. {
  5004. "url": "https://symfony.com/sponsor",
  5005. "type": "custom"
  5006. },
  5007. {
  5008. "url": "https://github.com/fabpot",
  5009. "type": "github"
  5010. },
  5011. {
  5012. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5013. "type": "tidelift"
  5014. }
  5015. ],
  5016. "time": "2024-09-20T13:35:23+00:00"
  5017. },
  5018. {
  5019. "name": "symfony/http-client-contracts",
  5020. "version": "v3.5.0",
  5021. "source": {
  5022. "type": "git",
  5023. "url": "https://github.com/symfony/http-client-contracts.git",
  5024. "reference": "20414d96f391677bf80078aa55baece78b82647d"
  5025. },
  5026. "dist": {
  5027. "type": "zip",
  5028. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/20414d96f391677bf80078aa55baece78b82647d",
  5029. "reference": "20414d96f391677bf80078aa55baece78b82647d",
  5030. "shasum": ""
  5031. },
  5032. "require": {
  5033. "php": ">=8.1"
  5034. },
  5035. "type": "library",
  5036. "extra": {
  5037. "branch-alias": {
  5038. "dev-main": "3.5-dev"
  5039. },
  5040. "thanks": {
  5041. "name": "symfony/contracts",
  5042. "url": "https://github.com/symfony/contracts"
  5043. }
  5044. },
  5045. "autoload": {
  5046. "psr-4": {
  5047. "Symfony\\Contracts\\HttpClient\\": ""
  5048. },
  5049. "exclude-from-classmap": [
  5050. "/Test/"
  5051. ]
  5052. },
  5053. "notification-url": "https://packagist.org/downloads/",
  5054. "license": [
  5055. "MIT"
  5056. ],
  5057. "authors": [
  5058. {
  5059. "name": "Nicolas Grekas",
  5060. "email": "p@tchwork.com"
  5061. },
  5062. {
  5063. "name": "Symfony Community",
  5064. "homepage": "https://symfony.com/contributors"
  5065. }
  5066. ],
  5067. "description": "Generic abstractions related to HTTP clients",
  5068. "homepage": "https://symfony.com",
  5069. "keywords": [
  5070. "abstractions",
  5071. "contracts",
  5072. "decoupling",
  5073. "interfaces",
  5074. "interoperability",
  5075. "standards"
  5076. ],
  5077. "support": {
  5078. "source": "https://github.com/symfony/http-client-contracts/tree/v3.5.0"
  5079. },
  5080. "funding": [
  5081. {
  5082. "url": "https://symfony.com/sponsor",
  5083. "type": "custom"
  5084. },
  5085. {
  5086. "url": "https://github.com/fabpot",
  5087. "type": "github"
  5088. },
  5089. {
  5090. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5091. "type": "tidelift"
  5092. }
  5093. ],
  5094. "time": "2024-04-18T09:32:20+00:00"
  5095. },
  5096. {
  5097. "name": "symfony/http-foundation",
  5098. "version": "v7.1.5",
  5099. "source": {
  5100. "type": "git",
  5101. "url": "https://github.com/symfony/http-foundation.git",
  5102. "reference": "e30ef73b1e44eea7eb37ba69600a354e553f694b"
  5103. },
  5104. "dist": {
  5105. "type": "zip",
  5106. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e30ef73b1e44eea7eb37ba69600a354e553f694b",
  5107. "reference": "e30ef73b1e44eea7eb37ba69600a354e553f694b",
  5108. "shasum": ""
  5109. },
  5110. "require": {
  5111. "php": ">=8.2",
  5112. "symfony/polyfill-mbstring": "~1.1",
  5113. "symfony/polyfill-php83": "^1.27"
  5114. },
  5115. "conflict": {
  5116. "doctrine/dbal": "<3.6",
  5117. "symfony/cache": "<6.4"
  5118. },
  5119. "require-dev": {
  5120. "doctrine/dbal": "^3.6|^4",
  5121. "predis/predis": "^1.1|^2.0",
  5122. "symfony/cache": "^6.4|^7.0",
  5123. "symfony/dependency-injection": "^6.4|^7.0",
  5124. "symfony/expression-language": "^6.4|^7.0",
  5125. "symfony/http-kernel": "^6.4|^7.0",
  5126. "symfony/mime": "^6.4|^7.0",
  5127. "symfony/rate-limiter": "^6.4|^7.0"
  5128. },
  5129. "type": "library",
  5130. "autoload": {
  5131. "psr-4": {
  5132. "Symfony\\Component\\HttpFoundation\\": ""
  5133. },
  5134. "exclude-from-classmap": [
  5135. "/Tests/"
  5136. ]
  5137. },
  5138. "notification-url": "https://packagist.org/downloads/",
  5139. "license": [
  5140. "MIT"
  5141. ],
  5142. "authors": [
  5143. {
  5144. "name": "Fabien Potencier",
  5145. "email": "fabien@symfony.com"
  5146. },
  5147. {
  5148. "name": "Symfony Community",
  5149. "homepage": "https://symfony.com/contributors"
  5150. }
  5151. ],
  5152. "description": "Defines an object-oriented layer for the HTTP specification",
  5153. "homepage": "https://symfony.com",
  5154. "support": {
  5155. "source": "https://github.com/symfony/http-foundation/tree/v7.1.5"
  5156. },
  5157. "funding": [
  5158. {
  5159. "url": "https://symfony.com/sponsor",
  5160. "type": "custom"
  5161. },
  5162. {
  5163. "url": "https://github.com/fabpot",
  5164. "type": "github"
  5165. },
  5166. {
  5167. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5168. "type": "tidelift"
  5169. }
  5170. ],
  5171. "time": "2024-09-20T08:28:38+00:00"
  5172. },
  5173. {
  5174. "name": "symfony/http-kernel",
  5175. "version": "v7.1.5",
  5176. "source": {
  5177. "type": "git",
  5178. "url": "https://github.com/symfony/http-kernel.git",
  5179. "reference": "44204d96150a9df1fc57601ec933d23fefc2d65b"
  5180. },
  5181. "dist": {
  5182. "type": "zip",
  5183. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/44204d96150a9df1fc57601ec933d23fefc2d65b",
  5184. "reference": "44204d96150a9df1fc57601ec933d23fefc2d65b",
  5185. "shasum": ""
  5186. },
  5187. "require": {
  5188. "php": ">=8.2",
  5189. "psr/log": "^1|^2|^3",
  5190. "symfony/deprecation-contracts": "^2.5|^3",
  5191. "symfony/error-handler": "^6.4|^7.0",
  5192. "symfony/event-dispatcher": "^6.4|^7.0",
  5193. "symfony/http-foundation": "^6.4|^7.0",
  5194. "symfony/polyfill-ctype": "^1.8"
  5195. },
  5196. "conflict": {
  5197. "symfony/browser-kit": "<6.4",
  5198. "symfony/cache": "<6.4",
  5199. "symfony/config": "<6.4",
  5200. "symfony/console": "<6.4",
  5201. "symfony/dependency-injection": "<6.4",
  5202. "symfony/doctrine-bridge": "<6.4",
  5203. "symfony/form": "<6.4",
  5204. "symfony/http-client": "<6.4",
  5205. "symfony/http-client-contracts": "<2.5",
  5206. "symfony/mailer": "<6.4",
  5207. "symfony/messenger": "<6.4",
  5208. "symfony/translation": "<6.4",
  5209. "symfony/translation-contracts": "<2.5",
  5210. "symfony/twig-bridge": "<6.4",
  5211. "symfony/validator": "<6.4",
  5212. "symfony/var-dumper": "<6.4",
  5213. "twig/twig": "<3.0.4"
  5214. },
  5215. "provide": {
  5216. "psr/log-implementation": "1.0|2.0|3.0"
  5217. },
  5218. "require-dev": {
  5219. "psr/cache": "^1.0|^2.0|^3.0",
  5220. "symfony/browser-kit": "^6.4|^7.0",
  5221. "symfony/clock": "^6.4|^7.0",
  5222. "symfony/config": "^6.4|^7.0",
  5223. "symfony/console": "^6.4|^7.0",
  5224. "symfony/css-selector": "^6.4|^7.0",
  5225. "symfony/dependency-injection": "^6.4|^7.0",
  5226. "symfony/dom-crawler": "^6.4|^7.0",
  5227. "symfony/expression-language": "^6.4|^7.0",
  5228. "symfony/finder": "^6.4|^7.0",
  5229. "symfony/http-client-contracts": "^2.5|^3",
  5230. "symfony/process": "^6.4|^7.0",
  5231. "symfony/property-access": "^7.1",
  5232. "symfony/routing": "^6.4|^7.0",
  5233. "symfony/serializer": "^7.1",
  5234. "symfony/stopwatch": "^6.4|^7.0",
  5235. "symfony/translation": "^6.4|^7.0",
  5236. "symfony/translation-contracts": "^2.5|^3",
  5237. "symfony/uid": "^6.4|^7.0",
  5238. "symfony/validator": "^6.4|^7.0",
  5239. "symfony/var-dumper": "^6.4|^7.0",
  5240. "symfony/var-exporter": "^6.4|^7.0",
  5241. "twig/twig": "^3.0.4"
  5242. },
  5243. "type": "library",
  5244. "autoload": {
  5245. "psr-4": {
  5246. "Symfony\\Component\\HttpKernel\\": ""
  5247. },
  5248. "exclude-from-classmap": [
  5249. "/Tests/"
  5250. ]
  5251. },
  5252. "notification-url": "https://packagist.org/downloads/",
  5253. "license": [
  5254. "MIT"
  5255. ],
  5256. "authors": [
  5257. {
  5258. "name": "Fabien Potencier",
  5259. "email": "fabien@symfony.com"
  5260. },
  5261. {
  5262. "name": "Symfony Community",
  5263. "homepage": "https://symfony.com/contributors"
  5264. }
  5265. ],
  5266. "description": "Provides a structured process for converting a Request into a Response",
  5267. "homepage": "https://symfony.com",
  5268. "support": {
  5269. "source": "https://github.com/symfony/http-kernel/tree/v7.1.5"
  5270. },
  5271. "funding": [
  5272. {
  5273. "url": "https://symfony.com/sponsor",
  5274. "type": "custom"
  5275. },
  5276. {
  5277. "url": "https://github.com/fabpot",
  5278. "type": "github"
  5279. },
  5280. {
  5281. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5282. "type": "tidelift"
  5283. }
  5284. ],
  5285. "time": "2024-09-21T06:09:21+00:00"
  5286. },
  5287. {
  5288. "name": "symfony/mailer",
  5289. "version": "v7.1.5",
  5290. "source": {
  5291. "type": "git",
  5292. "url": "https://github.com/symfony/mailer.git",
  5293. "reference": "bbf21460c56f29810da3df3e206e38dfbb01e80b"
  5294. },
  5295. "dist": {
  5296. "type": "zip",
  5297. "url": "https://api.github.com/repos/symfony/mailer/zipball/bbf21460c56f29810da3df3e206e38dfbb01e80b",
  5298. "reference": "bbf21460c56f29810da3df3e206e38dfbb01e80b",
  5299. "shasum": ""
  5300. },
  5301. "require": {
  5302. "egulias/email-validator": "^2.1.10|^3|^4",
  5303. "php": ">=8.2",
  5304. "psr/event-dispatcher": "^1",
  5305. "psr/log": "^1|^2|^3",
  5306. "symfony/event-dispatcher": "^6.4|^7.0",
  5307. "symfony/mime": "^6.4|^7.0",
  5308. "symfony/service-contracts": "^2.5|^3"
  5309. },
  5310. "conflict": {
  5311. "symfony/http-client-contracts": "<2.5",
  5312. "symfony/http-kernel": "<6.4",
  5313. "symfony/messenger": "<6.4",
  5314. "symfony/mime": "<6.4",
  5315. "symfony/twig-bridge": "<6.4"
  5316. },
  5317. "require-dev": {
  5318. "symfony/console": "^6.4|^7.0",
  5319. "symfony/http-client": "^6.4|^7.0",
  5320. "symfony/messenger": "^6.4|^7.0",
  5321. "symfony/twig-bridge": "^6.4|^7.0"
  5322. },
  5323. "type": "library",
  5324. "autoload": {
  5325. "psr-4": {
  5326. "Symfony\\Component\\Mailer\\": ""
  5327. },
  5328. "exclude-from-classmap": [
  5329. "/Tests/"
  5330. ]
  5331. },
  5332. "notification-url": "https://packagist.org/downloads/",
  5333. "license": [
  5334. "MIT"
  5335. ],
  5336. "authors": [
  5337. {
  5338. "name": "Fabien Potencier",
  5339. "email": "fabien@symfony.com"
  5340. },
  5341. {
  5342. "name": "Symfony Community",
  5343. "homepage": "https://symfony.com/contributors"
  5344. }
  5345. ],
  5346. "description": "Helps sending emails",
  5347. "homepage": "https://symfony.com",
  5348. "support": {
  5349. "source": "https://github.com/symfony/mailer/tree/v7.1.5"
  5350. },
  5351. "funding": [
  5352. {
  5353. "url": "https://symfony.com/sponsor",
  5354. "type": "custom"
  5355. },
  5356. {
  5357. "url": "https://github.com/fabpot",
  5358. "type": "github"
  5359. },
  5360. {
  5361. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5362. "type": "tidelift"
  5363. }
  5364. ],
  5365. "time": "2024-09-08T12:32:26+00:00"
  5366. },
  5367. {
  5368. "name": "symfony/mime",
  5369. "version": "v7.1.5",
  5370. "source": {
  5371. "type": "git",
  5372. "url": "https://github.com/symfony/mime.git",
  5373. "reference": "711d2e167e8ce65b05aea6b258c449671cdd38ff"
  5374. },
  5375. "dist": {
  5376. "type": "zip",
  5377. "url": "https://api.github.com/repos/symfony/mime/zipball/711d2e167e8ce65b05aea6b258c449671cdd38ff",
  5378. "reference": "711d2e167e8ce65b05aea6b258c449671cdd38ff",
  5379. "shasum": ""
  5380. },
  5381. "require": {
  5382. "php": ">=8.2",
  5383. "symfony/polyfill-intl-idn": "^1.10",
  5384. "symfony/polyfill-mbstring": "^1.0"
  5385. },
  5386. "conflict": {
  5387. "egulias/email-validator": "~3.0.0",
  5388. "phpdocumentor/reflection-docblock": "<3.2.2",
  5389. "phpdocumentor/type-resolver": "<1.4.0",
  5390. "symfony/mailer": "<6.4",
  5391. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  5392. },
  5393. "require-dev": {
  5394. "egulias/email-validator": "^2.1.10|^3.1|^4",
  5395. "league/html-to-markdown": "^5.0",
  5396. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5397. "symfony/dependency-injection": "^6.4|^7.0",
  5398. "symfony/process": "^6.4|^7.0",
  5399. "symfony/property-access": "^6.4|^7.0",
  5400. "symfony/property-info": "^6.4|^7.0",
  5401. "symfony/serializer": "^6.4.3|^7.0.3"
  5402. },
  5403. "type": "library",
  5404. "autoload": {
  5405. "psr-4": {
  5406. "Symfony\\Component\\Mime\\": ""
  5407. },
  5408. "exclude-from-classmap": [
  5409. "/Tests/"
  5410. ]
  5411. },
  5412. "notification-url": "https://packagist.org/downloads/",
  5413. "license": [
  5414. "MIT"
  5415. ],
  5416. "authors": [
  5417. {
  5418. "name": "Fabien Potencier",
  5419. "email": "fabien@symfony.com"
  5420. },
  5421. {
  5422. "name": "Symfony Community",
  5423. "homepage": "https://symfony.com/contributors"
  5424. }
  5425. ],
  5426. "description": "Allows manipulating MIME messages",
  5427. "homepage": "https://symfony.com",
  5428. "keywords": [
  5429. "mime",
  5430. "mime-type"
  5431. ],
  5432. "support": {
  5433. "source": "https://github.com/symfony/mime/tree/v7.1.5"
  5434. },
  5435. "funding": [
  5436. {
  5437. "url": "https://symfony.com/sponsor",
  5438. "type": "custom"
  5439. },
  5440. {
  5441. "url": "https://github.com/fabpot",
  5442. "type": "github"
  5443. },
  5444. {
  5445. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5446. "type": "tidelift"
  5447. }
  5448. ],
  5449. "time": "2024-09-20T08:28:38+00:00"
  5450. },
  5451. {
  5452. "name": "symfony/polyfill-ctype",
  5453. "version": "v1.31.0",
  5454. "source": {
  5455. "type": "git",
  5456. "url": "https://github.com/symfony/polyfill-ctype.git",
  5457. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  5458. },
  5459. "dist": {
  5460. "type": "zip",
  5461. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  5462. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  5463. "shasum": ""
  5464. },
  5465. "require": {
  5466. "php": ">=7.2"
  5467. },
  5468. "provide": {
  5469. "ext-ctype": "*"
  5470. },
  5471. "suggest": {
  5472. "ext-ctype": "For best performance"
  5473. },
  5474. "type": "library",
  5475. "extra": {
  5476. "thanks": {
  5477. "name": "symfony/polyfill",
  5478. "url": "https://github.com/symfony/polyfill"
  5479. }
  5480. },
  5481. "autoload": {
  5482. "files": [
  5483. "bootstrap.php"
  5484. ],
  5485. "psr-4": {
  5486. "Symfony\\Polyfill\\Ctype\\": ""
  5487. }
  5488. },
  5489. "notification-url": "https://packagist.org/downloads/",
  5490. "license": [
  5491. "MIT"
  5492. ],
  5493. "authors": [
  5494. {
  5495. "name": "Gert de Pagter",
  5496. "email": "BackEndTea@gmail.com"
  5497. },
  5498. {
  5499. "name": "Symfony Community",
  5500. "homepage": "https://symfony.com/contributors"
  5501. }
  5502. ],
  5503. "description": "Symfony polyfill for ctype functions",
  5504. "homepage": "https://symfony.com",
  5505. "keywords": [
  5506. "compatibility",
  5507. "ctype",
  5508. "polyfill",
  5509. "portable"
  5510. ],
  5511. "support": {
  5512. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  5513. },
  5514. "funding": [
  5515. {
  5516. "url": "https://symfony.com/sponsor",
  5517. "type": "custom"
  5518. },
  5519. {
  5520. "url": "https://github.com/fabpot",
  5521. "type": "github"
  5522. },
  5523. {
  5524. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5525. "type": "tidelift"
  5526. }
  5527. ],
  5528. "time": "2024-09-09T11:45:10+00:00"
  5529. },
  5530. {
  5531. "name": "symfony/polyfill-intl-grapheme",
  5532. "version": "v1.31.0",
  5533. "source": {
  5534. "type": "git",
  5535. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5536. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  5537. },
  5538. "dist": {
  5539. "type": "zip",
  5540. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  5541. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  5542. "shasum": ""
  5543. },
  5544. "require": {
  5545. "php": ">=7.2"
  5546. },
  5547. "suggest": {
  5548. "ext-intl": "For best performance"
  5549. },
  5550. "type": "library",
  5551. "extra": {
  5552. "thanks": {
  5553. "name": "symfony/polyfill",
  5554. "url": "https://github.com/symfony/polyfill"
  5555. }
  5556. },
  5557. "autoload": {
  5558. "files": [
  5559. "bootstrap.php"
  5560. ],
  5561. "psr-4": {
  5562. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5563. }
  5564. },
  5565. "notification-url": "https://packagist.org/downloads/",
  5566. "license": [
  5567. "MIT"
  5568. ],
  5569. "authors": [
  5570. {
  5571. "name": "Nicolas Grekas",
  5572. "email": "p@tchwork.com"
  5573. },
  5574. {
  5575. "name": "Symfony Community",
  5576. "homepage": "https://symfony.com/contributors"
  5577. }
  5578. ],
  5579. "description": "Symfony polyfill for intl's grapheme_* functions",
  5580. "homepage": "https://symfony.com",
  5581. "keywords": [
  5582. "compatibility",
  5583. "grapheme",
  5584. "intl",
  5585. "polyfill",
  5586. "portable",
  5587. "shim"
  5588. ],
  5589. "support": {
  5590. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  5591. },
  5592. "funding": [
  5593. {
  5594. "url": "https://symfony.com/sponsor",
  5595. "type": "custom"
  5596. },
  5597. {
  5598. "url": "https://github.com/fabpot",
  5599. "type": "github"
  5600. },
  5601. {
  5602. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5603. "type": "tidelift"
  5604. }
  5605. ],
  5606. "time": "2024-09-09T11:45:10+00:00"
  5607. },
  5608. {
  5609. "name": "symfony/polyfill-intl-idn",
  5610. "version": "v1.31.0",
  5611. "source": {
  5612. "type": "git",
  5613. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5614. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
  5615. },
  5616. "dist": {
  5617. "type": "zip",
  5618. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
  5619. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
  5620. "shasum": ""
  5621. },
  5622. "require": {
  5623. "php": ">=7.2",
  5624. "symfony/polyfill-intl-normalizer": "^1.10"
  5625. },
  5626. "suggest": {
  5627. "ext-intl": "For best performance"
  5628. },
  5629. "type": "library",
  5630. "extra": {
  5631. "thanks": {
  5632. "name": "symfony/polyfill",
  5633. "url": "https://github.com/symfony/polyfill"
  5634. }
  5635. },
  5636. "autoload": {
  5637. "files": [
  5638. "bootstrap.php"
  5639. ],
  5640. "psr-4": {
  5641. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5642. }
  5643. },
  5644. "notification-url": "https://packagist.org/downloads/",
  5645. "license": [
  5646. "MIT"
  5647. ],
  5648. "authors": [
  5649. {
  5650. "name": "Laurent Bassin",
  5651. "email": "laurent@bassin.info"
  5652. },
  5653. {
  5654. "name": "Trevor Rowbotham",
  5655. "email": "trevor.rowbotham@pm.me"
  5656. },
  5657. {
  5658. "name": "Symfony Community",
  5659. "homepage": "https://symfony.com/contributors"
  5660. }
  5661. ],
  5662. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5663. "homepage": "https://symfony.com",
  5664. "keywords": [
  5665. "compatibility",
  5666. "idn",
  5667. "intl",
  5668. "polyfill",
  5669. "portable",
  5670. "shim"
  5671. ],
  5672. "support": {
  5673. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0"
  5674. },
  5675. "funding": [
  5676. {
  5677. "url": "https://symfony.com/sponsor",
  5678. "type": "custom"
  5679. },
  5680. {
  5681. "url": "https://github.com/fabpot",
  5682. "type": "github"
  5683. },
  5684. {
  5685. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5686. "type": "tidelift"
  5687. }
  5688. ],
  5689. "time": "2024-09-09T11:45:10+00:00"
  5690. },
  5691. {
  5692. "name": "symfony/polyfill-intl-normalizer",
  5693. "version": "v1.31.0",
  5694. "source": {
  5695. "type": "git",
  5696. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5697. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  5698. },
  5699. "dist": {
  5700. "type": "zip",
  5701. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  5702. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  5703. "shasum": ""
  5704. },
  5705. "require": {
  5706. "php": ">=7.2"
  5707. },
  5708. "suggest": {
  5709. "ext-intl": "For best performance"
  5710. },
  5711. "type": "library",
  5712. "extra": {
  5713. "thanks": {
  5714. "name": "symfony/polyfill",
  5715. "url": "https://github.com/symfony/polyfill"
  5716. }
  5717. },
  5718. "autoload": {
  5719. "files": [
  5720. "bootstrap.php"
  5721. ],
  5722. "psr-4": {
  5723. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5724. },
  5725. "classmap": [
  5726. "Resources/stubs"
  5727. ]
  5728. },
  5729. "notification-url": "https://packagist.org/downloads/",
  5730. "license": [
  5731. "MIT"
  5732. ],
  5733. "authors": [
  5734. {
  5735. "name": "Nicolas Grekas",
  5736. "email": "p@tchwork.com"
  5737. },
  5738. {
  5739. "name": "Symfony Community",
  5740. "homepage": "https://symfony.com/contributors"
  5741. }
  5742. ],
  5743. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5744. "homepage": "https://symfony.com",
  5745. "keywords": [
  5746. "compatibility",
  5747. "intl",
  5748. "normalizer",
  5749. "polyfill",
  5750. "portable",
  5751. "shim"
  5752. ],
  5753. "support": {
  5754. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  5755. },
  5756. "funding": [
  5757. {
  5758. "url": "https://symfony.com/sponsor",
  5759. "type": "custom"
  5760. },
  5761. {
  5762. "url": "https://github.com/fabpot",
  5763. "type": "github"
  5764. },
  5765. {
  5766. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5767. "type": "tidelift"
  5768. }
  5769. ],
  5770. "time": "2024-09-09T11:45:10+00:00"
  5771. },
  5772. {
  5773. "name": "symfony/polyfill-mbstring",
  5774. "version": "v1.31.0",
  5775. "source": {
  5776. "type": "git",
  5777. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5778. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  5779. },
  5780. "dist": {
  5781. "type": "zip",
  5782. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  5783. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  5784. "shasum": ""
  5785. },
  5786. "require": {
  5787. "php": ">=7.2"
  5788. },
  5789. "provide": {
  5790. "ext-mbstring": "*"
  5791. },
  5792. "suggest": {
  5793. "ext-mbstring": "For best performance"
  5794. },
  5795. "type": "library",
  5796. "extra": {
  5797. "thanks": {
  5798. "name": "symfony/polyfill",
  5799. "url": "https://github.com/symfony/polyfill"
  5800. }
  5801. },
  5802. "autoload": {
  5803. "files": [
  5804. "bootstrap.php"
  5805. ],
  5806. "psr-4": {
  5807. "Symfony\\Polyfill\\Mbstring\\": ""
  5808. }
  5809. },
  5810. "notification-url": "https://packagist.org/downloads/",
  5811. "license": [
  5812. "MIT"
  5813. ],
  5814. "authors": [
  5815. {
  5816. "name": "Nicolas Grekas",
  5817. "email": "p@tchwork.com"
  5818. },
  5819. {
  5820. "name": "Symfony Community",
  5821. "homepage": "https://symfony.com/contributors"
  5822. }
  5823. ],
  5824. "description": "Symfony polyfill for the Mbstring extension",
  5825. "homepage": "https://symfony.com",
  5826. "keywords": [
  5827. "compatibility",
  5828. "mbstring",
  5829. "polyfill",
  5830. "portable",
  5831. "shim"
  5832. ],
  5833. "support": {
  5834. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  5835. },
  5836. "funding": [
  5837. {
  5838. "url": "https://symfony.com/sponsor",
  5839. "type": "custom"
  5840. },
  5841. {
  5842. "url": "https://github.com/fabpot",
  5843. "type": "github"
  5844. },
  5845. {
  5846. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5847. "type": "tidelift"
  5848. }
  5849. ],
  5850. "time": "2024-09-09T11:45:10+00:00"
  5851. },
  5852. {
  5853. "name": "symfony/polyfill-php80",
  5854. "version": "v1.31.0",
  5855. "source": {
  5856. "type": "git",
  5857. "url": "https://github.com/symfony/polyfill-php80.git",
  5858. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  5859. },
  5860. "dist": {
  5861. "type": "zip",
  5862. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  5863. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  5864. "shasum": ""
  5865. },
  5866. "require": {
  5867. "php": ">=7.2"
  5868. },
  5869. "type": "library",
  5870. "extra": {
  5871. "thanks": {
  5872. "name": "symfony/polyfill",
  5873. "url": "https://github.com/symfony/polyfill"
  5874. }
  5875. },
  5876. "autoload": {
  5877. "files": [
  5878. "bootstrap.php"
  5879. ],
  5880. "psr-4": {
  5881. "Symfony\\Polyfill\\Php80\\": ""
  5882. },
  5883. "classmap": [
  5884. "Resources/stubs"
  5885. ]
  5886. },
  5887. "notification-url": "https://packagist.org/downloads/",
  5888. "license": [
  5889. "MIT"
  5890. ],
  5891. "authors": [
  5892. {
  5893. "name": "Ion Bazan",
  5894. "email": "ion.bazan@gmail.com"
  5895. },
  5896. {
  5897. "name": "Nicolas Grekas",
  5898. "email": "p@tchwork.com"
  5899. },
  5900. {
  5901. "name": "Symfony Community",
  5902. "homepage": "https://symfony.com/contributors"
  5903. }
  5904. ],
  5905. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  5906. "homepage": "https://symfony.com",
  5907. "keywords": [
  5908. "compatibility",
  5909. "polyfill",
  5910. "portable",
  5911. "shim"
  5912. ],
  5913. "support": {
  5914. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  5915. },
  5916. "funding": [
  5917. {
  5918. "url": "https://symfony.com/sponsor",
  5919. "type": "custom"
  5920. },
  5921. {
  5922. "url": "https://github.com/fabpot",
  5923. "type": "github"
  5924. },
  5925. {
  5926. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5927. "type": "tidelift"
  5928. }
  5929. ],
  5930. "time": "2024-09-09T11:45:10+00:00"
  5931. },
  5932. {
  5933. "name": "symfony/polyfill-php81",
  5934. "version": "v1.31.0",
  5935. "source": {
  5936. "type": "git",
  5937. "url": "https://github.com/symfony/polyfill-php81.git",
  5938. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  5939. },
  5940. "dist": {
  5941. "type": "zip",
  5942. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  5943. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  5944. "shasum": ""
  5945. },
  5946. "require": {
  5947. "php": ">=7.2"
  5948. },
  5949. "type": "library",
  5950. "extra": {
  5951. "thanks": {
  5952. "name": "symfony/polyfill",
  5953. "url": "https://github.com/symfony/polyfill"
  5954. }
  5955. },
  5956. "autoload": {
  5957. "files": [
  5958. "bootstrap.php"
  5959. ],
  5960. "psr-4": {
  5961. "Symfony\\Polyfill\\Php81\\": ""
  5962. },
  5963. "classmap": [
  5964. "Resources/stubs"
  5965. ]
  5966. },
  5967. "notification-url": "https://packagist.org/downloads/",
  5968. "license": [
  5969. "MIT"
  5970. ],
  5971. "authors": [
  5972. {
  5973. "name": "Nicolas Grekas",
  5974. "email": "p@tchwork.com"
  5975. },
  5976. {
  5977. "name": "Symfony Community",
  5978. "homepage": "https://symfony.com/contributors"
  5979. }
  5980. ],
  5981. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  5982. "homepage": "https://symfony.com",
  5983. "keywords": [
  5984. "compatibility",
  5985. "polyfill",
  5986. "portable",
  5987. "shim"
  5988. ],
  5989. "support": {
  5990. "source": "https://github.com/symfony/polyfill-php81/tree/v1.31.0"
  5991. },
  5992. "funding": [
  5993. {
  5994. "url": "https://symfony.com/sponsor",
  5995. "type": "custom"
  5996. },
  5997. {
  5998. "url": "https://github.com/fabpot",
  5999. "type": "github"
  6000. },
  6001. {
  6002. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6003. "type": "tidelift"
  6004. }
  6005. ],
  6006. "time": "2024-09-09T11:45:10+00:00"
  6007. },
  6008. {
  6009. "name": "symfony/polyfill-php83",
  6010. "version": "v1.31.0",
  6011. "source": {
  6012. "type": "git",
  6013. "url": "https://github.com/symfony/polyfill-php83.git",
  6014. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  6015. },
  6016. "dist": {
  6017. "type": "zip",
  6018. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  6019. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  6020. "shasum": ""
  6021. },
  6022. "require": {
  6023. "php": ">=7.2"
  6024. },
  6025. "type": "library",
  6026. "extra": {
  6027. "thanks": {
  6028. "name": "symfony/polyfill",
  6029. "url": "https://github.com/symfony/polyfill"
  6030. }
  6031. },
  6032. "autoload": {
  6033. "files": [
  6034. "bootstrap.php"
  6035. ],
  6036. "psr-4": {
  6037. "Symfony\\Polyfill\\Php83\\": ""
  6038. },
  6039. "classmap": [
  6040. "Resources/stubs"
  6041. ]
  6042. },
  6043. "notification-url": "https://packagist.org/downloads/",
  6044. "license": [
  6045. "MIT"
  6046. ],
  6047. "authors": [
  6048. {
  6049. "name": "Nicolas Grekas",
  6050. "email": "p@tchwork.com"
  6051. },
  6052. {
  6053. "name": "Symfony Community",
  6054. "homepage": "https://symfony.com/contributors"
  6055. }
  6056. ],
  6057. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  6058. "homepage": "https://symfony.com",
  6059. "keywords": [
  6060. "compatibility",
  6061. "polyfill",
  6062. "portable",
  6063. "shim"
  6064. ],
  6065. "support": {
  6066. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  6067. },
  6068. "funding": [
  6069. {
  6070. "url": "https://symfony.com/sponsor",
  6071. "type": "custom"
  6072. },
  6073. {
  6074. "url": "https://github.com/fabpot",
  6075. "type": "github"
  6076. },
  6077. {
  6078. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6079. "type": "tidelift"
  6080. }
  6081. ],
  6082. "time": "2024-09-09T11:45:10+00:00"
  6083. },
  6084. {
  6085. "name": "symfony/polyfill-uuid",
  6086. "version": "v1.31.0",
  6087. "source": {
  6088. "type": "git",
  6089. "url": "https://github.com/symfony/polyfill-uuid.git",
  6090. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2"
  6091. },
  6092. "dist": {
  6093. "type": "zip",
  6094. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  6095. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  6096. "shasum": ""
  6097. },
  6098. "require": {
  6099. "php": ">=7.2"
  6100. },
  6101. "provide": {
  6102. "ext-uuid": "*"
  6103. },
  6104. "suggest": {
  6105. "ext-uuid": "For best performance"
  6106. },
  6107. "type": "library",
  6108. "extra": {
  6109. "thanks": {
  6110. "name": "symfony/polyfill",
  6111. "url": "https://github.com/symfony/polyfill"
  6112. }
  6113. },
  6114. "autoload": {
  6115. "files": [
  6116. "bootstrap.php"
  6117. ],
  6118. "psr-4": {
  6119. "Symfony\\Polyfill\\Uuid\\": ""
  6120. }
  6121. },
  6122. "notification-url": "https://packagist.org/downloads/",
  6123. "license": [
  6124. "MIT"
  6125. ],
  6126. "authors": [
  6127. {
  6128. "name": "Grégoire Pineau",
  6129. "email": "lyrixx@lyrixx.info"
  6130. },
  6131. {
  6132. "name": "Symfony Community",
  6133. "homepage": "https://symfony.com/contributors"
  6134. }
  6135. ],
  6136. "description": "Symfony polyfill for uuid functions",
  6137. "homepage": "https://symfony.com",
  6138. "keywords": [
  6139. "compatibility",
  6140. "polyfill",
  6141. "portable",
  6142. "uuid"
  6143. ],
  6144. "support": {
  6145. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.31.0"
  6146. },
  6147. "funding": [
  6148. {
  6149. "url": "https://symfony.com/sponsor",
  6150. "type": "custom"
  6151. },
  6152. {
  6153. "url": "https://github.com/fabpot",
  6154. "type": "github"
  6155. },
  6156. {
  6157. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6158. "type": "tidelift"
  6159. }
  6160. ],
  6161. "time": "2024-09-09T11:45:10+00:00"
  6162. },
  6163. {
  6164. "name": "symfony/process",
  6165. "version": "v7.1.5",
  6166. "source": {
  6167. "type": "git",
  6168. "url": "https://github.com/symfony/process.git",
  6169. "reference": "5c03ee6369281177f07f7c68252a280beccba847"
  6170. },
  6171. "dist": {
  6172. "type": "zip",
  6173. "url": "https://api.github.com/repos/symfony/process/zipball/5c03ee6369281177f07f7c68252a280beccba847",
  6174. "reference": "5c03ee6369281177f07f7c68252a280beccba847",
  6175. "shasum": ""
  6176. },
  6177. "require": {
  6178. "php": ">=8.2"
  6179. },
  6180. "type": "library",
  6181. "autoload": {
  6182. "psr-4": {
  6183. "Symfony\\Component\\Process\\": ""
  6184. },
  6185. "exclude-from-classmap": [
  6186. "/Tests/"
  6187. ]
  6188. },
  6189. "notification-url": "https://packagist.org/downloads/",
  6190. "license": [
  6191. "MIT"
  6192. ],
  6193. "authors": [
  6194. {
  6195. "name": "Fabien Potencier",
  6196. "email": "fabien@symfony.com"
  6197. },
  6198. {
  6199. "name": "Symfony Community",
  6200. "homepage": "https://symfony.com/contributors"
  6201. }
  6202. ],
  6203. "description": "Executes commands in sub-processes",
  6204. "homepage": "https://symfony.com",
  6205. "support": {
  6206. "source": "https://github.com/symfony/process/tree/v7.1.5"
  6207. },
  6208. "funding": [
  6209. {
  6210. "url": "https://symfony.com/sponsor",
  6211. "type": "custom"
  6212. },
  6213. {
  6214. "url": "https://github.com/fabpot",
  6215. "type": "github"
  6216. },
  6217. {
  6218. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6219. "type": "tidelift"
  6220. }
  6221. ],
  6222. "time": "2024-09-19T21:48:23+00:00"
  6223. },
  6224. {
  6225. "name": "symfony/psr-http-message-bridge",
  6226. "version": "v7.1.4",
  6227. "source": {
  6228. "type": "git",
  6229. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  6230. "reference": "405a7bcd872f1563966f64be19f1362d94ce71ab"
  6231. },
  6232. "dist": {
  6233. "type": "zip",
  6234. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/405a7bcd872f1563966f64be19f1362d94ce71ab",
  6235. "reference": "405a7bcd872f1563966f64be19f1362d94ce71ab",
  6236. "shasum": ""
  6237. },
  6238. "require": {
  6239. "php": ">=8.2",
  6240. "psr/http-message": "^1.0|^2.0",
  6241. "symfony/http-foundation": "^6.4|^7.0"
  6242. },
  6243. "conflict": {
  6244. "php-http/discovery": "<1.15",
  6245. "symfony/http-kernel": "<6.4"
  6246. },
  6247. "require-dev": {
  6248. "nyholm/psr7": "^1.1",
  6249. "php-http/discovery": "^1.15",
  6250. "psr/log": "^1.1.4|^2|^3",
  6251. "symfony/browser-kit": "^6.4|^7.0",
  6252. "symfony/config": "^6.4|^7.0",
  6253. "symfony/event-dispatcher": "^6.4|^7.0",
  6254. "symfony/framework-bundle": "^6.4|^7.0",
  6255. "symfony/http-kernel": "^6.4|^7.0"
  6256. },
  6257. "type": "symfony-bridge",
  6258. "autoload": {
  6259. "psr-4": {
  6260. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  6261. },
  6262. "exclude-from-classmap": [
  6263. "/Tests/"
  6264. ]
  6265. },
  6266. "notification-url": "https://packagist.org/downloads/",
  6267. "license": [
  6268. "MIT"
  6269. ],
  6270. "authors": [
  6271. {
  6272. "name": "Fabien Potencier",
  6273. "email": "fabien@symfony.com"
  6274. },
  6275. {
  6276. "name": "Symfony Community",
  6277. "homepage": "https://symfony.com/contributors"
  6278. }
  6279. ],
  6280. "description": "PSR HTTP message bridge",
  6281. "homepage": "https://symfony.com",
  6282. "keywords": [
  6283. "http",
  6284. "http-message",
  6285. "psr-17",
  6286. "psr-7"
  6287. ],
  6288. "support": {
  6289. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v7.1.4"
  6290. },
  6291. "funding": [
  6292. {
  6293. "url": "https://symfony.com/sponsor",
  6294. "type": "custom"
  6295. },
  6296. {
  6297. "url": "https://github.com/fabpot",
  6298. "type": "github"
  6299. },
  6300. {
  6301. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6302. "type": "tidelift"
  6303. }
  6304. ],
  6305. "time": "2024-08-15T22:48:53+00:00"
  6306. },
  6307. {
  6308. "name": "symfony/routing",
  6309. "version": "v7.1.4",
  6310. "source": {
  6311. "type": "git",
  6312. "url": "https://github.com/symfony/routing.git",
  6313. "reference": "1500aee0094a3ce1c92626ed8cf3c2037e86f5a7"
  6314. },
  6315. "dist": {
  6316. "type": "zip",
  6317. "url": "https://api.github.com/repos/symfony/routing/zipball/1500aee0094a3ce1c92626ed8cf3c2037e86f5a7",
  6318. "reference": "1500aee0094a3ce1c92626ed8cf3c2037e86f5a7",
  6319. "shasum": ""
  6320. },
  6321. "require": {
  6322. "php": ">=8.2",
  6323. "symfony/deprecation-contracts": "^2.5|^3"
  6324. },
  6325. "conflict": {
  6326. "symfony/config": "<6.4",
  6327. "symfony/dependency-injection": "<6.4",
  6328. "symfony/yaml": "<6.4"
  6329. },
  6330. "require-dev": {
  6331. "psr/log": "^1|^2|^3",
  6332. "symfony/config": "^6.4|^7.0",
  6333. "symfony/dependency-injection": "^6.4|^7.0",
  6334. "symfony/expression-language": "^6.4|^7.0",
  6335. "symfony/http-foundation": "^6.4|^7.0",
  6336. "symfony/yaml": "^6.4|^7.0"
  6337. },
  6338. "type": "library",
  6339. "autoload": {
  6340. "psr-4": {
  6341. "Symfony\\Component\\Routing\\": ""
  6342. },
  6343. "exclude-from-classmap": [
  6344. "/Tests/"
  6345. ]
  6346. },
  6347. "notification-url": "https://packagist.org/downloads/",
  6348. "license": [
  6349. "MIT"
  6350. ],
  6351. "authors": [
  6352. {
  6353. "name": "Fabien Potencier",
  6354. "email": "fabien@symfony.com"
  6355. },
  6356. {
  6357. "name": "Symfony Community",
  6358. "homepage": "https://symfony.com/contributors"
  6359. }
  6360. ],
  6361. "description": "Maps an HTTP request to a set of configuration variables",
  6362. "homepage": "https://symfony.com",
  6363. "keywords": [
  6364. "router",
  6365. "routing",
  6366. "uri",
  6367. "url"
  6368. ],
  6369. "support": {
  6370. "source": "https://github.com/symfony/routing/tree/v7.1.4"
  6371. },
  6372. "funding": [
  6373. {
  6374. "url": "https://symfony.com/sponsor",
  6375. "type": "custom"
  6376. },
  6377. {
  6378. "url": "https://github.com/fabpot",
  6379. "type": "github"
  6380. },
  6381. {
  6382. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6383. "type": "tidelift"
  6384. }
  6385. ],
  6386. "time": "2024-08-29T08:16:25+00:00"
  6387. },
  6388. {
  6389. "name": "symfony/service-contracts",
  6390. "version": "v3.5.0",
  6391. "source": {
  6392. "type": "git",
  6393. "url": "https://github.com/symfony/service-contracts.git",
  6394. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  6395. },
  6396. "dist": {
  6397. "type": "zip",
  6398. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  6399. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  6400. "shasum": ""
  6401. },
  6402. "require": {
  6403. "php": ">=8.1",
  6404. "psr/container": "^1.1|^2.0",
  6405. "symfony/deprecation-contracts": "^2.5|^3"
  6406. },
  6407. "conflict": {
  6408. "ext-psr": "<1.1|>=2"
  6409. },
  6410. "type": "library",
  6411. "extra": {
  6412. "branch-alias": {
  6413. "dev-main": "3.5-dev"
  6414. },
  6415. "thanks": {
  6416. "name": "symfony/contracts",
  6417. "url": "https://github.com/symfony/contracts"
  6418. }
  6419. },
  6420. "autoload": {
  6421. "psr-4": {
  6422. "Symfony\\Contracts\\Service\\": ""
  6423. },
  6424. "exclude-from-classmap": [
  6425. "/Test/"
  6426. ]
  6427. },
  6428. "notification-url": "https://packagist.org/downloads/",
  6429. "license": [
  6430. "MIT"
  6431. ],
  6432. "authors": [
  6433. {
  6434. "name": "Nicolas Grekas",
  6435. "email": "p@tchwork.com"
  6436. },
  6437. {
  6438. "name": "Symfony Community",
  6439. "homepage": "https://symfony.com/contributors"
  6440. }
  6441. ],
  6442. "description": "Generic abstractions related to writing services",
  6443. "homepage": "https://symfony.com",
  6444. "keywords": [
  6445. "abstractions",
  6446. "contracts",
  6447. "decoupling",
  6448. "interfaces",
  6449. "interoperability",
  6450. "standards"
  6451. ],
  6452. "support": {
  6453. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  6454. },
  6455. "funding": [
  6456. {
  6457. "url": "https://symfony.com/sponsor",
  6458. "type": "custom"
  6459. },
  6460. {
  6461. "url": "https://github.com/fabpot",
  6462. "type": "github"
  6463. },
  6464. {
  6465. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6466. "type": "tidelift"
  6467. }
  6468. ],
  6469. "time": "2024-04-18T09:32:20+00:00"
  6470. },
  6471. {
  6472. "name": "symfony/string",
  6473. "version": "v7.1.5",
  6474. "source": {
  6475. "type": "git",
  6476. "url": "https://github.com/symfony/string.git",
  6477. "reference": "d66f9c343fa894ec2037cc928381df90a7ad4306"
  6478. },
  6479. "dist": {
  6480. "type": "zip",
  6481. "url": "https://api.github.com/repos/symfony/string/zipball/d66f9c343fa894ec2037cc928381df90a7ad4306",
  6482. "reference": "d66f9c343fa894ec2037cc928381df90a7ad4306",
  6483. "shasum": ""
  6484. },
  6485. "require": {
  6486. "php": ">=8.2",
  6487. "symfony/polyfill-ctype": "~1.8",
  6488. "symfony/polyfill-intl-grapheme": "~1.0",
  6489. "symfony/polyfill-intl-normalizer": "~1.0",
  6490. "symfony/polyfill-mbstring": "~1.0"
  6491. },
  6492. "conflict": {
  6493. "symfony/translation-contracts": "<2.5"
  6494. },
  6495. "require-dev": {
  6496. "symfony/emoji": "^7.1",
  6497. "symfony/error-handler": "^6.4|^7.0",
  6498. "symfony/http-client": "^6.4|^7.0",
  6499. "symfony/intl": "^6.4|^7.0",
  6500. "symfony/translation-contracts": "^2.5|^3.0",
  6501. "symfony/var-exporter": "^6.4|^7.0"
  6502. },
  6503. "type": "library",
  6504. "autoload": {
  6505. "files": [
  6506. "Resources/functions.php"
  6507. ],
  6508. "psr-4": {
  6509. "Symfony\\Component\\String\\": ""
  6510. },
  6511. "exclude-from-classmap": [
  6512. "/Tests/"
  6513. ]
  6514. },
  6515. "notification-url": "https://packagist.org/downloads/",
  6516. "license": [
  6517. "MIT"
  6518. ],
  6519. "authors": [
  6520. {
  6521. "name": "Nicolas Grekas",
  6522. "email": "p@tchwork.com"
  6523. },
  6524. {
  6525. "name": "Symfony Community",
  6526. "homepage": "https://symfony.com/contributors"
  6527. }
  6528. ],
  6529. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  6530. "homepage": "https://symfony.com",
  6531. "keywords": [
  6532. "grapheme",
  6533. "i18n",
  6534. "string",
  6535. "unicode",
  6536. "utf-8",
  6537. "utf8"
  6538. ],
  6539. "support": {
  6540. "source": "https://github.com/symfony/string/tree/v7.1.5"
  6541. },
  6542. "funding": [
  6543. {
  6544. "url": "https://symfony.com/sponsor",
  6545. "type": "custom"
  6546. },
  6547. {
  6548. "url": "https://github.com/fabpot",
  6549. "type": "github"
  6550. },
  6551. {
  6552. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6553. "type": "tidelift"
  6554. }
  6555. ],
  6556. "time": "2024-09-20T08:28:38+00:00"
  6557. },
  6558. {
  6559. "name": "symfony/translation",
  6560. "version": "v7.1.5",
  6561. "source": {
  6562. "type": "git",
  6563. "url": "https://github.com/symfony/translation.git",
  6564. "reference": "235535e3f84f3dfbdbde0208ede6ca75c3a489ea"
  6565. },
  6566. "dist": {
  6567. "type": "zip",
  6568. "url": "https://api.github.com/repos/symfony/translation/zipball/235535e3f84f3dfbdbde0208ede6ca75c3a489ea",
  6569. "reference": "235535e3f84f3dfbdbde0208ede6ca75c3a489ea",
  6570. "shasum": ""
  6571. },
  6572. "require": {
  6573. "php": ">=8.2",
  6574. "symfony/polyfill-mbstring": "~1.0",
  6575. "symfony/translation-contracts": "^2.5|^3.0"
  6576. },
  6577. "conflict": {
  6578. "symfony/config": "<6.4",
  6579. "symfony/console": "<6.4",
  6580. "symfony/dependency-injection": "<6.4",
  6581. "symfony/http-client-contracts": "<2.5",
  6582. "symfony/http-kernel": "<6.4",
  6583. "symfony/service-contracts": "<2.5",
  6584. "symfony/twig-bundle": "<6.4",
  6585. "symfony/yaml": "<6.4"
  6586. },
  6587. "provide": {
  6588. "symfony/translation-implementation": "2.3|3.0"
  6589. },
  6590. "require-dev": {
  6591. "nikic/php-parser": "^4.18|^5.0",
  6592. "psr/log": "^1|^2|^3",
  6593. "symfony/config": "^6.4|^7.0",
  6594. "symfony/console": "^6.4|^7.0",
  6595. "symfony/dependency-injection": "^6.4|^7.0",
  6596. "symfony/finder": "^6.4|^7.0",
  6597. "symfony/http-client-contracts": "^2.5|^3.0",
  6598. "symfony/http-kernel": "^6.4|^7.0",
  6599. "symfony/intl": "^6.4|^7.0",
  6600. "symfony/polyfill-intl-icu": "^1.21",
  6601. "symfony/routing": "^6.4|^7.0",
  6602. "symfony/service-contracts": "^2.5|^3",
  6603. "symfony/yaml": "^6.4|^7.0"
  6604. },
  6605. "type": "library",
  6606. "autoload": {
  6607. "files": [
  6608. "Resources/functions.php"
  6609. ],
  6610. "psr-4": {
  6611. "Symfony\\Component\\Translation\\": ""
  6612. },
  6613. "exclude-from-classmap": [
  6614. "/Tests/"
  6615. ]
  6616. },
  6617. "notification-url": "https://packagist.org/downloads/",
  6618. "license": [
  6619. "MIT"
  6620. ],
  6621. "authors": [
  6622. {
  6623. "name": "Fabien Potencier",
  6624. "email": "fabien@symfony.com"
  6625. },
  6626. {
  6627. "name": "Symfony Community",
  6628. "homepage": "https://symfony.com/contributors"
  6629. }
  6630. ],
  6631. "description": "Provides tools to internationalize your application",
  6632. "homepage": "https://symfony.com",
  6633. "support": {
  6634. "source": "https://github.com/symfony/translation/tree/v7.1.5"
  6635. },
  6636. "funding": [
  6637. {
  6638. "url": "https://symfony.com/sponsor",
  6639. "type": "custom"
  6640. },
  6641. {
  6642. "url": "https://github.com/fabpot",
  6643. "type": "github"
  6644. },
  6645. {
  6646. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6647. "type": "tidelift"
  6648. }
  6649. ],
  6650. "time": "2024-09-16T06:30:38+00:00"
  6651. },
  6652. {
  6653. "name": "symfony/translation-contracts",
  6654. "version": "v3.5.0",
  6655. "source": {
  6656. "type": "git",
  6657. "url": "https://github.com/symfony/translation-contracts.git",
  6658. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
  6659. },
  6660. "dist": {
  6661. "type": "zip",
  6662. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  6663. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  6664. "shasum": ""
  6665. },
  6666. "require": {
  6667. "php": ">=8.1"
  6668. },
  6669. "type": "library",
  6670. "extra": {
  6671. "branch-alias": {
  6672. "dev-main": "3.5-dev"
  6673. },
  6674. "thanks": {
  6675. "name": "symfony/contracts",
  6676. "url": "https://github.com/symfony/contracts"
  6677. }
  6678. },
  6679. "autoload": {
  6680. "psr-4": {
  6681. "Symfony\\Contracts\\Translation\\": ""
  6682. },
  6683. "exclude-from-classmap": [
  6684. "/Test/"
  6685. ]
  6686. },
  6687. "notification-url": "https://packagist.org/downloads/",
  6688. "license": [
  6689. "MIT"
  6690. ],
  6691. "authors": [
  6692. {
  6693. "name": "Nicolas Grekas",
  6694. "email": "p@tchwork.com"
  6695. },
  6696. {
  6697. "name": "Symfony Community",
  6698. "homepage": "https://symfony.com/contributors"
  6699. }
  6700. ],
  6701. "description": "Generic abstractions related to translation",
  6702. "homepage": "https://symfony.com",
  6703. "keywords": [
  6704. "abstractions",
  6705. "contracts",
  6706. "decoupling",
  6707. "interfaces",
  6708. "interoperability",
  6709. "standards"
  6710. ],
  6711. "support": {
  6712. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
  6713. },
  6714. "funding": [
  6715. {
  6716. "url": "https://symfony.com/sponsor",
  6717. "type": "custom"
  6718. },
  6719. {
  6720. "url": "https://github.com/fabpot",
  6721. "type": "github"
  6722. },
  6723. {
  6724. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6725. "type": "tidelift"
  6726. }
  6727. ],
  6728. "time": "2024-04-18T09:32:20+00:00"
  6729. },
  6730. {
  6731. "name": "symfony/uid",
  6732. "version": "v7.1.5",
  6733. "source": {
  6734. "type": "git",
  6735. "url": "https://github.com/symfony/uid.git",
  6736. "reference": "8c7bb8acb933964055215d89f9a9871df0239317"
  6737. },
  6738. "dist": {
  6739. "type": "zip",
  6740. "url": "https://api.github.com/repos/symfony/uid/zipball/8c7bb8acb933964055215d89f9a9871df0239317",
  6741. "reference": "8c7bb8acb933964055215d89f9a9871df0239317",
  6742. "shasum": ""
  6743. },
  6744. "require": {
  6745. "php": ">=8.2",
  6746. "symfony/polyfill-uuid": "^1.15"
  6747. },
  6748. "require-dev": {
  6749. "symfony/console": "^6.4|^7.0"
  6750. },
  6751. "type": "library",
  6752. "autoload": {
  6753. "psr-4": {
  6754. "Symfony\\Component\\Uid\\": ""
  6755. },
  6756. "exclude-from-classmap": [
  6757. "/Tests/"
  6758. ]
  6759. },
  6760. "notification-url": "https://packagist.org/downloads/",
  6761. "license": [
  6762. "MIT"
  6763. ],
  6764. "authors": [
  6765. {
  6766. "name": "Grégoire Pineau",
  6767. "email": "lyrixx@lyrixx.info"
  6768. },
  6769. {
  6770. "name": "Nicolas Grekas",
  6771. "email": "p@tchwork.com"
  6772. },
  6773. {
  6774. "name": "Symfony Community",
  6775. "homepage": "https://symfony.com/contributors"
  6776. }
  6777. ],
  6778. "description": "Provides an object-oriented API to generate and represent UIDs",
  6779. "homepage": "https://symfony.com",
  6780. "keywords": [
  6781. "UID",
  6782. "ulid",
  6783. "uuid"
  6784. ],
  6785. "support": {
  6786. "source": "https://github.com/symfony/uid/tree/v7.1.5"
  6787. },
  6788. "funding": [
  6789. {
  6790. "url": "https://symfony.com/sponsor",
  6791. "type": "custom"
  6792. },
  6793. {
  6794. "url": "https://github.com/fabpot",
  6795. "type": "github"
  6796. },
  6797. {
  6798. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6799. "type": "tidelift"
  6800. }
  6801. ],
  6802. "time": "2024-09-17T09:16:35+00:00"
  6803. },
  6804. {
  6805. "name": "symfony/var-dumper",
  6806. "version": "v7.1.5",
  6807. "source": {
  6808. "type": "git",
  6809. "url": "https://github.com/symfony/var-dumper.git",
  6810. "reference": "e20e03889539fd4e4211e14d2179226c513c010d"
  6811. },
  6812. "dist": {
  6813. "type": "zip",
  6814. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/e20e03889539fd4e4211e14d2179226c513c010d",
  6815. "reference": "e20e03889539fd4e4211e14d2179226c513c010d",
  6816. "shasum": ""
  6817. },
  6818. "require": {
  6819. "php": ">=8.2",
  6820. "symfony/polyfill-mbstring": "~1.0"
  6821. },
  6822. "conflict": {
  6823. "symfony/console": "<6.4"
  6824. },
  6825. "require-dev": {
  6826. "ext-iconv": "*",
  6827. "symfony/console": "^6.4|^7.0",
  6828. "symfony/http-kernel": "^6.4|^7.0",
  6829. "symfony/process": "^6.4|^7.0",
  6830. "symfony/uid": "^6.4|^7.0",
  6831. "twig/twig": "^3.0.4"
  6832. },
  6833. "bin": [
  6834. "Resources/bin/var-dump-server"
  6835. ],
  6836. "type": "library",
  6837. "autoload": {
  6838. "files": [
  6839. "Resources/functions/dump.php"
  6840. ],
  6841. "psr-4": {
  6842. "Symfony\\Component\\VarDumper\\": ""
  6843. },
  6844. "exclude-from-classmap": [
  6845. "/Tests/"
  6846. ]
  6847. },
  6848. "notification-url": "https://packagist.org/downloads/",
  6849. "license": [
  6850. "MIT"
  6851. ],
  6852. "authors": [
  6853. {
  6854. "name": "Nicolas Grekas",
  6855. "email": "p@tchwork.com"
  6856. },
  6857. {
  6858. "name": "Symfony Community",
  6859. "homepage": "https://symfony.com/contributors"
  6860. }
  6861. ],
  6862. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  6863. "homepage": "https://symfony.com",
  6864. "keywords": [
  6865. "debug",
  6866. "dump"
  6867. ],
  6868. "support": {
  6869. "source": "https://github.com/symfony/var-dumper/tree/v7.1.5"
  6870. },
  6871. "funding": [
  6872. {
  6873. "url": "https://symfony.com/sponsor",
  6874. "type": "custom"
  6875. },
  6876. {
  6877. "url": "https://github.com/fabpot",
  6878. "type": "github"
  6879. },
  6880. {
  6881. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6882. "type": "tidelift"
  6883. }
  6884. ],
  6885. "time": "2024-09-16T10:07:02+00:00"
  6886. },
  6887. {
  6888. "name": "symfony/var-exporter",
  6889. "version": "v7.1.2",
  6890. "source": {
  6891. "type": "git",
  6892. "url": "https://github.com/symfony/var-exporter.git",
  6893. "reference": "b80a669a2264609f07f1667f891dbfca25eba44c"
  6894. },
  6895. "dist": {
  6896. "type": "zip",
  6897. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/b80a669a2264609f07f1667f891dbfca25eba44c",
  6898. "reference": "b80a669a2264609f07f1667f891dbfca25eba44c",
  6899. "shasum": ""
  6900. },
  6901. "require": {
  6902. "php": ">=8.2"
  6903. },
  6904. "require-dev": {
  6905. "symfony/property-access": "^6.4|^7.0",
  6906. "symfony/serializer": "^6.4|^7.0",
  6907. "symfony/var-dumper": "^6.4|^7.0"
  6908. },
  6909. "type": "library",
  6910. "autoload": {
  6911. "psr-4": {
  6912. "Symfony\\Component\\VarExporter\\": ""
  6913. },
  6914. "exclude-from-classmap": [
  6915. "/Tests/"
  6916. ]
  6917. },
  6918. "notification-url": "https://packagist.org/downloads/",
  6919. "license": [
  6920. "MIT"
  6921. ],
  6922. "authors": [
  6923. {
  6924. "name": "Nicolas Grekas",
  6925. "email": "p@tchwork.com"
  6926. },
  6927. {
  6928. "name": "Symfony Community",
  6929. "homepage": "https://symfony.com/contributors"
  6930. }
  6931. ],
  6932. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  6933. "homepage": "https://symfony.com",
  6934. "keywords": [
  6935. "clone",
  6936. "construct",
  6937. "export",
  6938. "hydrate",
  6939. "instantiate",
  6940. "lazy-loading",
  6941. "proxy",
  6942. "serialize"
  6943. ],
  6944. "support": {
  6945. "source": "https://github.com/symfony/var-exporter/tree/v7.1.2"
  6946. },
  6947. "funding": [
  6948. {
  6949. "url": "https://symfony.com/sponsor",
  6950. "type": "custom"
  6951. },
  6952. {
  6953. "url": "https://github.com/fabpot",
  6954. "type": "github"
  6955. },
  6956. {
  6957. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6958. "type": "tidelift"
  6959. }
  6960. ],
  6961. "time": "2024-06-28T08:00:31+00:00"
  6962. },
  6963. {
  6964. "name": "thenorthmemory/xml",
  6965. "version": "1.1.1",
  6966. "source": {
  6967. "type": "git",
  6968. "url": "https://github.com/TheNorthMemory/xml.git",
  6969. "reference": "6f50c63450a0b098772423f8bdc3c4ad2c4c30bb"
  6970. },
  6971. "dist": {
  6972. "type": "zip",
  6973. "url": "https://api.github.com/repos/TheNorthMemory/xml/zipball/6f50c63450a0b098772423f8bdc3c4ad2c4c30bb",
  6974. "reference": "6f50c63450a0b098772423f8bdc3c4ad2c4c30bb",
  6975. "shasum": ""
  6976. },
  6977. "require": {
  6978. "ext-libxml": "*",
  6979. "ext-simplexml": "*",
  6980. "php": ">=7.1.2"
  6981. },
  6982. "require-dev": {
  6983. "phpstan/phpstan": "^0.12.89 || ^1.0",
  6984. "phpunit/phpunit": "^7.5 || ^8.5.16 || ^9.3.5"
  6985. },
  6986. "type": "library",
  6987. "autoload": {
  6988. "psr-4": {
  6989. "TheNorthMemory\\Xml\\": "src/"
  6990. }
  6991. },
  6992. "notification-url": "https://packagist.org/downloads/",
  6993. "license": [
  6994. "Apache-2.0"
  6995. ],
  6996. "authors": [
  6997. {
  6998. "name": "James ZHANG",
  6999. "homepage": "https://github.com/TheNorthMemory"
  7000. }
  7001. ],
  7002. "description": "A wrapper of the XML parser and builder",
  7003. "homepage": "https://github.com/TheNorthMemory/xml",
  7004. "keywords": [
  7005. "xml-builder",
  7006. "xml-parser"
  7007. ],
  7008. "support": {
  7009. "issues": "https://github.com/TheNorthMemory/xml/issues",
  7010. "source": "https://github.com/TheNorthMemory/xml/tree/1.1.1"
  7011. },
  7012. "time": "2023-01-15T06:01:13+00:00"
  7013. },
  7014. {
  7015. "name": "tijsverkoyen/css-to-inline-styles",
  7016. "version": "v2.2.7",
  7017. "source": {
  7018. "type": "git",
  7019. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7020. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb"
  7021. },
  7022. "dist": {
  7023. "type": "zip",
  7024. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/83ee6f38df0a63106a9e4536e3060458b74ccedb",
  7025. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb",
  7026. "shasum": ""
  7027. },
  7028. "require": {
  7029. "ext-dom": "*",
  7030. "ext-libxml": "*",
  7031. "php": "^5.5 || ^7.0 || ^8.0",
  7032. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0"
  7033. },
  7034. "require-dev": {
  7035. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  7036. },
  7037. "type": "library",
  7038. "extra": {
  7039. "branch-alias": {
  7040. "dev-master": "2.2.x-dev"
  7041. }
  7042. },
  7043. "autoload": {
  7044. "psr-4": {
  7045. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7046. }
  7047. },
  7048. "notification-url": "https://packagist.org/downloads/",
  7049. "license": [
  7050. "BSD-3-Clause"
  7051. ],
  7052. "authors": [
  7053. {
  7054. "name": "Tijs Verkoyen",
  7055. "email": "css_to_inline_styles@verkoyen.eu",
  7056. "role": "Developer"
  7057. }
  7058. ],
  7059. "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.",
  7060. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7061. "support": {
  7062. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7063. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.2.7"
  7064. },
  7065. "time": "2023-12-08T13:03:43+00:00"
  7066. },
  7067. {
  7068. "name": "vlucas/phpdotenv",
  7069. "version": "v5.6.1",
  7070. "source": {
  7071. "type": "git",
  7072. "url": "https://github.com/vlucas/phpdotenv.git",
  7073. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  7074. },
  7075. "dist": {
  7076. "type": "zip",
  7077. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7078. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7079. "shasum": ""
  7080. },
  7081. "require": {
  7082. "ext-pcre": "*",
  7083. "graham-campbell/result-type": "^1.1.3",
  7084. "php": "^7.2.5 || ^8.0",
  7085. "phpoption/phpoption": "^1.9.3",
  7086. "symfony/polyfill-ctype": "^1.24",
  7087. "symfony/polyfill-mbstring": "^1.24",
  7088. "symfony/polyfill-php80": "^1.24"
  7089. },
  7090. "require-dev": {
  7091. "bamarni/composer-bin-plugin": "^1.8.2",
  7092. "ext-filter": "*",
  7093. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  7094. },
  7095. "suggest": {
  7096. "ext-filter": "Required to use the boolean validator."
  7097. },
  7098. "type": "library",
  7099. "extra": {
  7100. "bamarni-bin": {
  7101. "bin-links": true,
  7102. "forward-command": false
  7103. },
  7104. "branch-alias": {
  7105. "dev-master": "5.6-dev"
  7106. }
  7107. },
  7108. "autoload": {
  7109. "psr-4": {
  7110. "Dotenv\\": "src/"
  7111. }
  7112. },
  7113. "notification-url": "https://packagist.org/downloads/",
  7114. "license": [
  7115. "BSD-3-Clause"
  7116. ],
  7117. "authors": [
  7118. {
  7119. "name": "Graham Campbell",
  7120. "email": "hello@gjcampbell.co.uk",
  7121. "homepage": "https://github.com/GrahamCampbell"
  7122. },
  7123. {
  7124. "name": "Vance Lucas",
  7125. "email": "vance@vancelucas.com",
  7126. "homepage": "https://github.com/vlucas"
  7127. }
  7128. ],
  7129. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7130. "keywords": [
  7131. "dotenv",
  7132. "env",
  7133. "environment"
  7134. ],
  7135. "support": {
  7136. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7137. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  7138. },
  7139. "funding": [
  7140. {
  7141. "url": "https://github.com/GrahamCampbell",
  7142. "type": "github"
  7143. },
  7144. {
  7145. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7146. "type": "tidelift"
  7147. }
  7148. ],
  7149. "time": "2024-07-20T21:52:34+00:00"
  7150. },
  7151. {
  7152. "name": "voku/portable-ascii",
  7153. "version": "2.0.1",
  7154. "source": {
  7155. "type": "git",
  7156. "url": "https://github.com/voku/portable-ascii.git",
  7157. "reference": "b56450eed252f6801410d810c8e1727224ae0743"
  7158. },
  7159. "dist": {
  7160. "type": "zip",
  7161. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743",
  7162. "reference": "b56450eed252f6801410d810c8e1727224ae0743",
  7163. "shasum": ""
  7164. },
  7165. "require": {
  7166. "php": ">=7.0.0"
  7167. },
  7168. "require-dev": {
  7169. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  7170. },
  7171. "suggest": {
  7172. "ext-intl": "Use Intl for transliterator_transliterate() support"
  7173. },
  7174. "type": "library",
  7175. "autoload": {
  7176. "psr-4": {
  7177. "voku\\": "src/voku/"
  7178. }
  7179. },
  7180. "notification-url": "https://packagist.org/downloads/",
  7181. "license": [
  7182. "MIT"
  7183. ],
  7184. "authors": [
  7185. {
  7186. "name": "Lars Moelleken",
  7187. "homepage": "http://www.moelleken.org/"
  7188. }
  7189. ],
  7190. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  7191. "homepage": "https://github.com/voku/portable-ascii",
  7192. "keywords": [
  7193. "ascii",
  7194. "clean",
  7195. "php"
  7196. ],
  7197. "support": {
  7198. "issues": "https://github.com/voku/portable-ascii/issues",
  7199. "source": "https://github.com/voku/portable-ascii/tree/2.0.1"
  7200. },
  7201. "funding": [
  7202. {
  7203. "url": "https://www.paypal.me/moelleken",
  7204. "type": "custom"
  7205. },
  7206. {
  7207. "url": "https://github.com/voku",
  7208. "type": "github"
  7209. },
  7210. {
  7211. "url": "https://opencollective.com/portable-ascii",
  7212. "type": "open_collective"
  7213. },
  7214. {
  7215. "url": "https://www.patreon.com/voku",
  7216. "type": "patreon"
  7217. },
  7218. {
  7219. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  7220. "type": "tidelift"
  7221. }
  7222. ],
  7223. "time": "2022-03-08T17:03:00+00:00"
  7224. },
  7225. {
  7226. "name": "w7corp/easywechat",
  7227. "version": "6.15.4",
  7228. "source": {
  7229. "type": "git",
  7230. "url": "https://github.com/w7corp/easywechat.git",
  7231. "reference": "3299422c387407b231de4dd293770b917f288c2b"
  7232. },
  7233. "dist": {
  7234. "type": "zip",
  7235. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/3299422c387407b231de4dd293770b917f288c2b",
  7236. "reference": "3299422c387407b231de4dd293770b917f288c2b",
  7237. "shasum": ""
  7238. },
  7239. "require": {
  7240. "ext-curl": "*",
  7241. "ext-fileinfo": "*",
  7242. "ext-libxml": "*",
  7243. "ext-openssl": "*",
  7244. "ext-simplexml": "*",
  7245. "ext-sodium": "*",
  7246. "nyholm/psr7": "^1.5",
  7247. "nyholm/psr7-server": "^1.0",
  7248. "overtrue/socialite": "^3.5.4|^4.0.1",
  7249. "php": ">=8.0.2",
  7250. "psr/http-client": "^1.0",
  7251. "psr/simple-cache": "^1.0|^2.0|^3.0",
  7252. "symfony/cache": "^5.4|^6.0|^7.0",
  7253. "symfony/http-client": "^5.4|^6.0|^7.0",
  7254. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  7255. "symfony/mime": "^5.4|^6.0|^7.0",
  7256. "symfony/polyfill-php81": "^1.25",
  7257. "symfony/psr-http-message-bridge": "^2.1.2|^6.4.0|^7.1",
  7258. "thenorthmemory/xml": "^1.0"
  7259. },
  7260. "require-dev": {
  7261. "jetbrains/phpstorm-attributes": "^1.0",
  7262. "laravel/pint": "^1.2",
  7263. "mikey179/vfsstream": "^1.6",
  7264. "mockery/mockery": "^1.4.4",
  7265. "phpstan/phpstan": "^1.0",
  7266. "phpunit/phpunit": "^9.5",
  7267. "symfony/var-dumper": "^5.2"
  7268. },
  7269. "type": "library",
  7270. "autoload": {
  7271. "psr-4": {
  7272. "EasyWeChat\\": "src/"
  7273. }
  7274. },
  7275. "notification-url": "https://packagist.org/downloads/",
  7276. "license": [
  7277. "MIT"
  7278. ],
  7279. "authors": [
  7280. {
  7281. "name": "overtrue",
  7282. "email": "anzhengchao@gmail.com"
  7283. }
  7284. ],
  7285. "description": "微信SDK",
  7286. "keywords": [
  7287. "easywechat",
  7288. "sdk",
  7289. "wechat",
  7290. "weixin",
  7291. "weixin-sdk"
  7292. ],
  7293. "support": {
  7294. "issues": "https://github.com/w7corp/easywechat/issues",
  7295. "source": "https://github.com/w7corp/easywechat/tree/6.15.4"
  7296. },
  7297. "funding": [
  7298. {
  7299. "url": "https://github.com/overtrue",
  7300. "type": "github"
  7301. }
  7302. ],
  7303. "time": "2024-10-09T07:07:09+00:00"
  7304. },
  7305. {
  7306. "name": "webmozart/assert",
  7307. "version": "1.11.0",
  7308. "source": {
  7309. "type": "git",
  7310. "url": "https://github.com/webmozarts/assert.git",
  7311. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  7312. },
  7313. "dist": {
  7314. "type": "zip",
  7315. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7316. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7317. "shasum": ""
  7318. },
  7319. "require": {
  7320. "ext-ctype": "*",
  7321. "php": "^7.2 || ^8.0"
  7322. },
  7323. "conflict": {
  7324. "phpstan/phpstan": "<0.12.20",
  7325. "vimeo/psalm": "<4.6.1 || 4.6.2"
  7326. },
  7327. "require-dev": {
  7328. "phpunit/phpunit": "^8.5.13"
  7329. },
  7330. "type": "library",
  7331. "extra": {
  7332. "branch-alias": {
  7333. "dev-master": "1.10-dev"
  7334. }
  7335. },
  7336. "autoload": {
  7337. "psr-4": {
  7338. "Webmozart\\Assert\\": "src/"
  7339. }
  7340. },
  7341. "notification-url": "https://packagist.org/downloads/",
  7342. "license": [
  7343. "MIT"
  7344. ],
  7345. "authors": [
  7346. {
  7347. "name": "Bernhard Schussek",
  7348. "email": "bschussek@gmail.com"
  7349. }
  7350. ],
  7351. "description": "Assertions to validate method input/output with nice error messages.",
  7352. "keywords": [
  7353. "assert",
  7354. "check",
  7355. "validate"
  7356. ],
  7357. "support": {
  7358. "issues": "https://github.com/webmozarts/assert/issues",
  7359. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  7360. },
  7361. "time": "2022-06-03T18:03:27+00:00"
  7362. }
  7363. ],
  7364. "packages-dev": [
  7365. {
  7366. "name": "fakerphp/faker",
  7367. "version": "v1.23.1",
  7368. "source": {
  7369. "type": "git",
  7370. "url": "https://github.com/FakerPHP/Faker.git",
  7371. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b"
  7372. },
  7373. "dist": {
  7374. "type": "zip",
  7375. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/bfb4fe148adbf78eff521199619b93a52ae3554b",
  7376. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b",
  7377. "shasum": ""
  7378. },
  7379. "require": {
  7380. "php": "^7.4 || ^8.0",
  7381. "psr/container": "^1.0 || ^2.0",
  7382. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  7383. },
  7384. "conflict": {
  7385. "fzaninotto/faker": "*"
  7386. },
  7387. "require-dev": {
  7388. "bamarni/composer-bin-plugin": "^1.4.1",
  7389. "doctrine/persistence": "^1.3 || ^2.0",
  7390. "ext-intl": "*",
  7391. "phpunit/phpunit": "^9.5.26",
  7392. "symfony/phpunit-bridge": "^5.4.16"
  7393. },
  7394. "suggest": {
  7395. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  7396. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  7397. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  7398. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  7399. "ext-mbstring": "Required for multibyte Unicode string functionality."
  7400. },
  7401. "type": "library",
  7402. "autoload": {
  7403. "psr-4": {
  7404. "Faker\\": "src/Faker/"
  7405. }
  7406. },
  7407. "notification-url": "https://packagist.org/downloads/",
  7408. "license": [
  7409. "MIT"
  7410. ],
  7411. "authors": [
  7412. {
  7413. "name": "François Zaninotto"
  7414. }
  7415. ],
  7416. "description": "Faker is a PHP library that generates fake data for you.",
  7417. "keywords": [
  7418. "data",
  7419. "faker",
  7420. "fixtures"
  7421. ],
  7422. "support": {
  7423. "issues": "https://github.com/FakerPHP/Faker/issues",
  7424. "source": "https://github.com/FakerPHP/Faker/tree/v1.23.1"
  7425. },
  7426. "time": "2024-01-02T13:46:09+00:00"
  7427. },
  7428. {
  7429. "name": "filp/whoops",
  7430. "version": "2.16.0",
  7431. "source": {
  7432. "type": "git",
  7433. "url": "https://github.com/filp/whoops.git",
  7434. "reference": "befcdc0e5dce67252aa6322d82424be928214fa2"
  7435. },
  7436. "dist": {
  7437. "type": "zip",
  7438. "url": "https://api.github.com/repos/filp/whoops/zipball/befcdc0e5dce67252aa6322d82424be928214fa2",
  7439. "reference": "befcdc0e5dce67252aa6322d82424be928214fa2",
  7440. "shasum": ""
  7441. },
  7442. "require": {
  7443. "php": "^7.1 || ^8.0",
  7444. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  7445. },
  7446. "require-dev": {
  7447. "mockery/mockery": "^1.0",
  7448. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.3",
  7449. "symfony/var-dumper": "^4.0 || ^5.0"
  7450. },
  7451. "suggest": {
  7452. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  7453. "whoops/soap": "Formats errors as SOAP responses"
  7454. },
  7455. "type": "library",
  7456. "extra": {
  7457. "branch-alias": {
  7458. "dev-master": "2.7-dev"
  7459. }
  7460. },
  7461. "autoload": {
  7462. "psr-4": {
  7463. "Whoops\\": "src/Whoops/"
  7464. }
  7465. },
  7466. "notification-url": "https://packagist.org/downloads/",
  7467. "license": [
  7468. "MIT"
  7469. ],
  7470. "authors": [
  7471. {
  7472. "name": "Filipe Dobreira",
  7473. "homepage": "https://github.com/filp",
  7474. "role": "Developer"
  7475. }
  7476. ],
  7477. "description": "php error handling for cool kids",
  7478. "homepage": "https://filp.github.io/whoops/",
  7479. "keywords": [
  7480. "error",
  7481. "exception",
  7482. "handling",
  7483. "library",
  7484. "throwable",
  7485. "whoops"
  7486. ],
  7487. "support": {
  7488. "issues": "https://github.com/filp/whoops/issues",
  7489. "source": "https://github.com/filp/whoops/tree/2.16.0"
  7490. },
  7491. "funding": [
  7492. {
  7493. "url": "https://github.com/denis-sokolov",
  7494. "type": "github"
  7495. }
  7496. ],
  7497. "time": "2024-09-25T12:00:00+00:00"
  7498. },
  7499. {
  7500. "name": "hamcrest/hamcrest-php",
  7501. "version": "v2.0.1",
  7502. "source": {
  7503. "type": "git",
  7504. "url": "https://github.com/hamcrest/hamcrest-php.git",
  7505. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  7506. },
  7507. "dist": {
  7508. "type": "zip",
  7509. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7510. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7511. "shasum": ""
  7512. },
  7513. "require": {
  7514. "php": "^5.3|^7.0|^8.0"
  7515. },
  7516. "replace": {
  7517. "cordoval/hamcrest-php": "*",
  7518. "davedevelopment/hamcrest-php": "*",
  7519. "kodova/hamcrest-php": "*"
  7520. },
  7521. "require-dev": {
  7522. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  7523. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  7524. },
  7525. "type": "library",
  7526. "extra": {
  7527. "branch-alias": {
  7528. "dev-master": "2.1-dev"
  7529. }
  7530. },
  7531. "autoload": {
  7532. "classmap": [
  7533. "hamcrest"
  7534. ]
  7535. },
  7536. "notification-url": "https://packagist.org/downloads/",
  7537. "license": [
  7538. "BSD-3-Clause"
  7539. ],
  7540. "description": "This is the PHP port of Hamcrest Matchers",
  7541. "keywords": [
  7542. "test"
  7543. ],
  7544. "support": {
  7545. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  7546. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  7547. },
  7548. "time": "2020-07-09T08:09:16+00:00"
  7549. },
  7550. {
  7551. "name": "laravel/breeze",
  7552. "version": "v2.2.2",
  7553. "source": {
  7554. "type": "git",
  7555. "url": "https://github.com/laravel/breeze.git",
  7556. "reference": "1dd612eb9e1c2632a39e6aa6df4e69cd45129dca"
  7557. },
  7558. "dist": {
  7559. "type": "zip",
  7560. "url": "https://api.github.com/repos/laravel/breeze/zipball/1dd612eb9e1c2632a39e6aa6df4e69cd45129dca",
  7561. "reference": "1dd612eb9e1c2632a39e6aa6df4e69cd45129dca",
  7562. "shasum": ""
  7563. },
  7564. "require": {
  7565. "illuminate/console": "^11.0",
  7566. "illuminate/filesystem": "^11.0",
  7567. "illuminate/support": "^11.0",
  7568. "illuminate/validation": "^11.0",
  7569. "php": "^8.2.0",
  7570. "symfony/console": "^7.0"
  7571. },
  7572. "require-dev": {
  7573. "orchestra/testbench": "^9.0",
  7574. "phpstan/phpstan": "^1.10"
  7575. },
  7576. "type": "library",
  7577. "extra": {
  7578. "laravel": {
  7579. "providers": [
  7580. "Laravel\\Breeze\\BreezeServiceProvider"
  7581. ]
  7582. }
  7583. },
  7584. "autoload": {
  7585. "psr-4": {
  7586. "Laravel\\Breeze\\": "src/"
  7587. }
  7588. },
  7589. "notification-url": "https://packagist.org/downloads/",
  7590. "license": [
  7591. "MIT"
  7592. ],
  7593. "authors": [
  7594. {
  7595. "name": "Taylor Otwell",
  7596. "email": "taylor@laravel.com"
  7597. }
  7598. ],
  7599. "description": "Minimal Laravel authentication scaffolding with Blade and Tailwind.",
  7600. "keywords": [
  7601. "auth",
  7602. "laravel"
  7603. ],
  7604. "support": {
  7605. "issues": "https://github.com/laravel/breeze/issues",
  7606. "source": "https://github.com/laravel/breeze"
  7607. },
  7608. "time": "2024-10-06T21:13:27+00:00"
  7609. },
  7610. {
  7611. "name": "laravel/pint",
  7612. "version": "v1.18.1",
  7613. "source": {
  7614. "type": "git",
  7615. "url": "https://github.com/laravel/pint.git",
  7616. "reference": "35c00c05ec43e6b46d295efc0f4386ceb30d50d9"
  7617. },
  7618. "dist": {
  7619. "type": "zip",
  7620. "url": "https://api.github.com/repos/laravel/pint/zipball/35c00c05ec43e6b46d295efc0f4386ceb30d50d9",
  7621. "reference": "35c00c05ec43e6b46d295efc0f4386ceb30d50d9",
  7622. "shasum": ""
  7623. },
  7624. "require": {
  7625. "ext-json": "*",
  7626. "ext-mbstring": "*",
  7627. "ext-tokenizer": "*",
  7628. "ext-xml": "*",
  7629. "php": "^8.1.0"
  7630. },
  7631. "require-dev": {
  7632. "friendsofphp/php-cs-fixer": "^3.64.0",
  7633. "illuminate/view": "^10.48.20",
  7634. "larastan/larastan": "^2.9.8",
  7635. "laravel-zero/framework": "^10.4.0",
  7636. "mockery/mockery": "^1.6.12",
  7637. "nunomaduro/termwind": "^1.15.1",
  7638. "pestphp/pest": "^2.35.1"
  7639. },
  7640. "bin": [
  7641. "builds/pint"
  7642. ],
  7643. "type": "project",
  7644. "autoload": {
  7645. "psr-4": {
  7646. "App\\": "app/",
  7647. "Database\\Seeders\\": "database/seeders/",
  7648. "Database\\Factories\\": "database/factories/"
  7649. }
  7650. },
  7651. "notification-url": "https://packagist.org/downloads/",
  7652. "license": [
  7653. "MIT"
  7654. ],
  7655. "authors": [
  7656. {
  7657. "name": "Nuno Maduro",
  7658. "email": "enunomaduro@gmail.com"
  7659. }
  7660. ],
  7661. "description": "An opinionated code formatter for PHP.",
  7662. "homepage": "https://laravel.com",
  7663. "keywords": [
  7664. "format",
  7665. "formatter",
  7666. "lint",
  7667. "linter",
  7668. "php"
  7669. ],
  7670. "support": {
  7671. "issues": "https://github.com/laravel/pint/issues",
  7672. "source": "https://github.com/laravel/pint"
  7673. },
  7674. "time": "2024-09-24T17:22:50+00:00"
  7675. },
  7676. {
  7677. "name": "laravel/sail",
  7678. "version": "v1.36.0",
  7679. "source": {
  7680. "type": "git",
  7681. "url": "https://github.com/laravel/sail.git",
  7682. "reference": "f184d3d687155d06bc8cb9ff6dc48596a138460c"
  7683. },
  7684. "dist": {
  7685. "type": "zip",
  7686. "url": "https://api.github.com/repos/laravel/sail/zipball/f184d3d687155d06bc8cb9ff6dc48596a138460c",
  7687. "reference": "f184d3d687155d06bc8cb9ff6dc48596a138460c",
  7688. "shasum": ""
  7689. },
  7690. "require": {
  7691. "illuminate/console": "^9.52.16|^10.0|^11.0",
  7692. "illuminate/contracts": "^9.52.16|^10.0|^11.0",
  7693. "illuminate/support": "^9.52.16|^10.0|^11.0",
  7694. "php": "^8.0",
  7695. "symfony/console": "^6.0|^7.0",
  7696. "symfony/yaml": "^6.0|^7.0"
  7697. },
  7698. "require-dev": {
  7699. "orchestra/testbench": "^7.0|^8.0|^9.0",
  7700. "phpstan/phpstan": "^1.10"
  7701. },
  7702. "bin": [
  7703. "bin/sail"
  7704. ],
  7705. "type": "library",
  7706. "extra": {
  7707. "laravel": {
  7708. "providers": [
  7709. "Laravel\\Sail\\SailServiceProvider"
  7710. ]
  7711. }
  7712. },
  7713. "autoload": {
  7714. "psr-4": {
  7715. "Laravel\\Sail\\": "src/"
  7716. }
  7717. },
  7718. "notification-url": "https://packagist.org/downloads/",
  7719. "license": [
  7720. "MIT"
  7721. ],
  7722. "authors": [
  7723. {
  7724. "name": "Taylor Otwell",
  7725. "email": "taylor@laravel.com"
  7726. }
  7727. ],
  7728. "description": "Docker files for running a basic Laravel application.",
  7729. "keywords": [
  7730. "docker",
  7731. "laravel"
  7732. ],
  7733. "support": {
  7734. "issues": "https://github.com/laravel/sail/issues",
  7735. "source": "https://github.com/laravel/sail"
  7736. },
  7737. "time": "2024-10-10T13:26:02+00:00"
  7738. },
  7739. {
  7740. "name": "mockery/mockery",
  7741. "version": "1.6.12",
  7742. "source": {
  7743. "type": "git",
  7744. "url": "https://github.com/mockery/mockery.git",
  7745. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  7746. },
  7747. "dist": {
  7748. "type": "zip",
  7749. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  7750. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  7751. "shasum": ""
  7752. },
  7753. "require": {
  7754. "hamcrest/hamcrest-php": "^2.0.1",
  7755. "lib-pcre": ">=7.0",
  7756. "php": ">=7.3"
  7757. },
  7758. "conflict": {
  7759. "phpunit/phpunit": "<8.0"
  7760. },
  7761. "require-dev": {
  7762. "phpunit/phpunit": "^8.5 || ^9.6.17",
  7763. "symplify/easy-coding-standard": "^12.1.14"
  7764. },
  7765. "type": "library",
  7766. "autoload": {
  7767. "files": [
  7768. "library/helpers.php",
  7769. "library/Mockery.php"
  7770. ],
  7771. "psr-4": {
  7772. "Mockery\\": "library/Mockery"
  7773. }
  7774. },
  7775. "notification-url": "https://packagist.org/downloads/",
  7776. "license": [
  7777. "BSD-3-Clause"
  7778. ],
  7779. "authors": [
  7780. {
  7781. "name": "Pádraic Brady",
  7782. "email": "padraic.brady@gmail.com",
  7783. "homepage": "https://github.com/padraic",
  7784. "role": "Author"
  7785. },
  7786. {
  7787. "name": "Dave Marshall",
  7788. "email": "dave.marshall@atstsolutions.co.uk",
  7789. "homepage": "https://davedevelopment.co.uk",
  7790. "role": "Developer"
  7791. },
  7792. {
  7793. "name": "Nathanael Esayeas",
  7794. "email": "nathanael.esayeas@protonmail.com",
  7795. "homepage": "https://github.com/ghostwriter",
  7796. "role": "Lead Developer"
  7797. }
  7798. ],
  7799. "description": "Mockery is a simple yet flexible PHP mock object framework",
  7800. "homepage": "https://github.com/mockery/mockery",
  7801. "keywords": [
  7802. "BDD",
  7803. "TDD",
  7804. "library",
  7805. "mock",
  7806. "mock objects",
  7807. "mockery",
  7808. "stub",
  7809. "test",
  7810. "test double",
  7811. "testing"
  7812. ],
  7813. "support": {
  7814. "docs": "https://docs.mockery.io/",
  7815. "issues": "https://github.com/mockery/mockery/issues",
  7816. "rss": "https://github.com/mockery/mockery/releases.atom",
  7817. "security": "https://github.com/mockery/mockery/security/advisories",
  7818. "source": "https://github.com/mockery/mockery"
  7819. },
  7820. "time": "2024-05-16T03:13:13+00:00"
  7821. },
  7822. {
  7823. "name": "myclabs/deep-copy",
  7824. "version": "1.12.0",
  7825. "source": {
  7826. "type": "git",
  7827. "url": "https://github.com/myclabs/DeepCopy.git",
  7828. "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c"
  7829. },
  7830. "dist": {
  7831. "type": "zip",
  7832. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c",
  7833. "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c",
  7834. "shasum": ""
  7835. },
  7836. "require": {
  7837. "php": "^7.1 || ^8.0"
  7838. },
  7839. "conflict": {
  7840. "doctrine/collections": "<1.6.8",
  7841. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  7842. },
  7843. "require-dev": {
  7844. "doctrine/collections": "^1.6.8",
  7845. "doctrine/common": "^2.13.3 || ^3.2.2",
  7846. "phpspec/prophecy": "^1.10",
  7847. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  7848. },
  7849. "type": "library",
  7850. "autoload": {
  7851. "files": [
  7852. "src/DeepCopy/deep_copy.php"
  7853. ],
  7854. "psr-4": {
  7855. "DeepCopy\\": "src/DeepCopy/"
  7856. }
  7857. },
  7858. "notification-url": "https://packagist.org/downloads/",
  7859. "license": [
  7860. "MIT"
  7861. ],
  7862. "description": "Create deep copies (clones) of your objects",
  7863. "keywords": [
  7864. "clone",
  7865. "copy",
  7866. "duplicate",
  7867. "object",
  7868. "object graph"
  7869. ],
  7870. "support": {
  7871. "issues": "https://github.com/myclabs/DeepCopy/issues",
  7872. "source": "https://github.com/myclabs/DeepCopy/tree/1.12.0"
  7873. },
  7874. "funding": [
  7875. {
  7876. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  7877. "type": "tidelift"
  7878. }
  7879. ],
  7880. "time": "2024-06-12T14:39:25+00:00"
  7881. },
  7882. {
  7883. "name": "nunomaduro/collision",
  7884. "version": "v8.5.0",
  7885. "source": {
  7886. "type": "git",
  7887. "url": "https://github.com/nunomaduro/collision.git",
  7888. "reference": "f5c101b929c958e849a633283adff296ed5f38f5"
  7889. },
  7890. "dist": {
  7891. "type": "zip",
  7892. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/f5c101b929c958e849a633283adff296ed5f38f5",
  7893. "reference": "f5c101b929c958e849a633283adff296ed5f38f5",
  7894. "shasum": ""
  7895. },
  7896. "require": {
  7897. "filp/whoops": "^2.16.0",
  7898. "nunomaduro/termwind": "^2.1.0",
  7899. "php": "^8.2.0",
  7900. "symfony/console": "^7.1.5"
  7901. },
  7902. "conflict": {
  7903. "laravel/framework": "<11.0.0 || >=12.0.0",
  7904. "phpunit/phpunit": "<10.5.1 || >=12.0.0"
  7905. },
  7906. "require-dev": {
  7907. "larastan/larastan": "^2.9.8",
  7908. "laravel/framework": "^11.28.0",
  7909. "laravel/pint": "^1.18.1",
  7910. "laravel/sail": "^1.36.0",
  7911. "laravel/sanctum": "^4.0.3",
  7912. "laravel/tinker": "^2.10.0",
  7913. "orchestra/testbench-core": "^9.5.3",
  7914. "pestphp/pest": "^2.36.0 || ^3.4.0",
  7915. "sebastian/environment": "^6.1.0 || ^7.2.0"
  7916. },
  7917. "type": "library",
  7918. "extra": {
  7919. "laravel": {
  7920. "providers": [
  7921. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  7922. ]
  7923. },
  7924. "branch-alias": {
  7925. "dev-8.x": "8.x-dev"
  7926. }
  7927. },
  7928. "autoload": {
  7929. "files": [
  7930. "./src/Adapters/Phpunit/Autoload.php"
  7931. ],
  7932. "psr-4": {
  7933. "NunoMaduro\\Collision\\": "src/"
  7934. }
  7935. },
  7936. "notification-url": "https://packagist.org/downloads/",
  7937. "license": [
  7938. "MIT"
  7939. ],
  7940. "authors": [
  7941. {
  7942. "name": "Nuno Maduro",
  7943. "email": "enunomaduro@gmail.com"
  7944. }
  7945. ],
  7946. "description": "Cli error handling for console/command-line PHP applications.",
  7947. "keywords": [
  7948. "artisan",
  7949. "cli",
  7950. "command-line",
  7951. "console",
  7952. "error",
  7953. "handling",
  7954. "laravel",
  7955. "laravel-zero",
  7956. "php",
  7957. "symfony"
  7958. ],
  7959. "support": {
  7960. "issues": "https://github.com/nunomaduro/collision/issues",
  7961. "source": "https://github.com/nunomaduro/collision"
  7962. },
  7963. "funding": [
  7964. {
  7965. "url": "https://www.paypal.com/paypalme/enunomaduro",
  7966. "type": "custom"
  7967. },
  7968. {
  7969. "url": "https://github.com/nunomaduro",
  7970. "type": "github"
  7971. },
  7972. {
  7973. "url": "https://www.patreon.com/nunomaduro",
  7974. "type": "patreon"
  7975. }
  7976. ],
  7977. "time": "2024-10-15T16:06:32+00:00"
  7978. },
  7979. {
  7980. "name": "phar-io/manifest",
  7981. "version": "2.0.4",
  7982. "source": {
  7983. "type": "git",
  7984. "url": "https://github.com/phar-io/manifest.git",
  7985. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  7986. },
  7987. "dist": {
  7988. "type": "zip",
  7989. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  7990. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  7991. "shasum": ""
  7992. },
  7993. "require": {
  7994. "ext-dom": "*",
  7995. "ext-libxml": "*",
  7996. "ext-phar": "*",
  7997. "ext-xmlwriter": "*",
  7998. "phar-io/version": "^3.0.1",
  7999. "php": "^7.2 || ^8.0"
  8000. },
  8001. "type": "library",
  8002. "extra": {
  8003. "branch-alias": {
  8004. "dev-master": "2.0.x-dev"
  8005. }
  8006. },
  8007. "autoload": {
  8008. "classmap": [
  8009. "src/"
  8010. ]
  8011. },
  8012. "notification-url": "https://packagist.org/downloads/",
  8013. "license": [
  8014. "BSD-3-Clause"
  8015. ],
  8016. "authors": [
  8017. {
  8018. "name": "Arne Blankerts",
  8019. "email": "arne@blankerts.de",
  8020. "role": "Developer"
  8021. },
  8022. {
  8023. "name": "Sebastian Heuer",
  8024. "email": "sebastian@phpeople.de",
  8025. "role": "Developer"
  8026. },
  8027. {
  8028. "name": "Sebastian Bergmann",
  8029. "email": "sebastian@phpunit.de",
  8030. "role": "Developer"
  8031. }
  8032. ],
  8033. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8034. "support": {
  8035. "issues": "https://github.com/phar-io/manifest/issues",
  8036. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  8037. },
  8038. "funding": [
  8039. {
  8040. "url": "https://github.com/theseer",
  8041. "type": "github"
  8042. }
  8043. ],
  8044. "time": "2024-03-03T12:33:53+00:00"
  8045. },
  8046. {
  8047. "name": "phar-io/version",
  8048. "version": "3.2.1",
  8049. "source": {
  8050. "type": "git",
  8051. "url": "https://github.com/phar-io/version.git",
  8052. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8053. },
  8054. "dist": {
  8055. "type": "zip",
  8056. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8057. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8058. "shasum": ""
  8059. },
  8060. "require": {
  8061. "php": "^7.2 || ^8.0"
  8062. },
  8063. "type": "library",
  8064. "autoload": {
  8065. "classmap": [
  8066. "src/"
  8067. ]
  8068. },
  8069. "notification-url": "https://packagist.org/downloads/",
  8070. "license": [
  8071. "BSD-3-Clause"
  8072. ],
  8073. "authors": [
  8074. {
  8075. "name": "Arne Blankerts",
  8076. "email": "arne@blankerts.de",
  8077. "role": "Developer"
  8078. },
  8079. {
  8080. "name": "Sebastian Heuer",
  8081. "email": "sebastian@phpeople.de",
  8082. "role": "Developer"
  8083. },
  8084. {
  8085. "name": "Sebastian Bergmann",
  8086. "email": "sebastian@phpunit.de",
  8087. "role": "Developer"
  8088. }
  8089. ],
  8090. "description": "Library for handling version information and constraints",
  8091. "support": {
  8092. "issues": "https://github.com/phar-io/version/issues",
  8093. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8094. },
  8095. "time": "2022-02-21T01:04:05+00:00"
  8096. },
  8097. {
  8098. "name": "phpunit/php-code-coverage",
  8099. "version": "11.0.7",
  8100. "source": {
  8101. "type": "git",
  8102. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8103. "reference": "f7f08030e8811582cc459871d28d6f5a1a4d35ca"
  8104. },
  8105. "dist": {
  8106. "type": "zip",
  8107. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f7f08030e8811582cc459871d28d6f5a1a4d35ca",
  8108. "reference": "f7f08030e8811582cc459871d28d6f5a1a4d35ca",
  8109. "shasum": ""
  8110. },
  8111. "require": {
  8112. "ext-dom": "*",
  8113. "ext-libxml": "*",
  8114. "ext-xmlwriter": "*",
  8115. "nikic/php-parser": "^5.3.1",
  8116. "php": ">=8.2",
  8117. "phpunit/php-file-iterator": "^5.1.0",
  8118. "phpunit/php-text-template": "^4.0.1",
  8119. "sebastian/code-unit-reverse-lookup": "^4.0.1",
  8120. "sebastian/complexity": "^4.0.1",
  8121. "sebastian/environment": "^7.2.0",
  8122. "sebastian/lines-of-code": "^3.0.1",
  8123. "sebastian/version": "^5.0.2",
  8124. "theseer/tokenizer": "^1.2.3"
  8125. },
  8126. "require-dev": {
  8127. "phpunit/phpunit": "^11.4.1"
  8128. },
  8129. "suggest": {
  8130. "ext-pcov": "PHP extension that provides line coverage",
  8131. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8132. },
  8133. "type": "library",
  8134. "extra": {
  8135. "branch-alias": {
  8136. "dev-main": "11.0.x-dev"
  8137. }
  8138. },
  8139. "autoload": {
  8140. "classmap": [
  8141. "src/"
  8142. ]
  8143. },
  8144. "notification-url": "https://packagist.org/downloads/",
  8145. "license": [
  8146. "BSD-3-Clause"
  8147. ],
  8148. "authors": [
  8149. {
  8150. "name": "Sebastian Bergmann",
  8151. "email": "sebastian@phpunit.de",
  8152. "role": "lead"
  8153. }
  8154. ],
  8155. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8156. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8157. "keywords": [
  8158. "coverage",
  8159. "testing",
  8160. "xunit"
  8161. ],
  8162. "support": {
  8163. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8164. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  8165. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/11.0.7"
  8166. },
  8167. "funding": [
  8168. {
  8169. "url": "https://github.com/sebastianbergmann",
  8170. "type": "github"
  8171. }
  8172. ],
  8173. "time": "2024-10-09T06:21:38+00:00"
  8174. },
  8175. {
  8176. "name": "phpunit/php-file-iterator",
  8177. "version": "5.1.0",
  8178. "source": {
  8179. "type": "git",
  8180. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8181. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6"
  8182. },
  8183. "dist": {
  8184. "type": "zip",
  8185. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/118cfaaa8bc5aef3287bf315b6060b1174754af6",
  8186. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6",
  8187. "shasum": ""
  8188. },
  8189. "require": {
  8190. "php": ">=8.2"
  8191. },
  8192. "require-dev": {
  8193. "phpunit/phpunit": "^11.0"
  8194. },
  8195. "type": "library",
  8196. "extra": {
  8197. "branch-alias": {
  8198. "dev-main": "5.0-dev"
  8199. }
  8200. },
  8201. "autoload": {
  8202. "classmap": [
  8203. "src/"
  8204. ]
  8205. },
  8206. "notification-url": "https://packagist.org/downloads/",
  8207. "license": [
  8208. "BSD-3-Clause"
  8209. ],
  8210. "authors": [
  8211. {
  8212. "name": "Sebastian Bergmann",
  8213. "email": "sebastian@phpunit.de",
  8214. "role": "lead"
  8215. }
  8216. ],
  8217. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8218. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8219. "keywords": [
  8220. "filesystem",
  8221. "iterator"
  8222. ],
  8223. "support": {
  8224. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8225. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  8226. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/5.1.0"
  8227. },
  8228. "funding": [
  8229. {
  8230. "url": "https://github.com/sebastianbergmann",
  8231. "type": "github"
  8232. }
  8233. ],
  8234. "time": "2024-08-27T05:02:59+00:00"
  8235. },
  8236. {
  8237. "name": "phpunit/php-invoker",
  8238. "version": "5.0.1",
  8239. "source": {
  8240. "type": "git",
  8241. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8242. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2"
  8243. },
  8244. "dist": {
  8245. "type": "zip",
  8246. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/c1ca3814734c07492b3d4c5f794f4b0995333da2",
  8247. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2",
  8248. "shasum": ""
  8249. },
  8250. "require": {
  8251. "php": ">=8.2"
  8252. },
  8253. "require-dev": {
  8254. "ext-pcntl": "*",
  8255. "phpunit/phpunit": "^11.0"
  8256. },
  8257. "suggest": {
  8258. "ext-pcntl": "*"
  8259. },
  8260. "type": "library",
  8261. "extra": {
  8262. "branch-alias": {
  8263. "dev-main": "5.0-dev"
  8264. }
  8265. },
  8266. "autoload": {
  8267. "classmap": [
  8268. "src/"
  8269. ]
  8270. },
  8271. "notification-url": "https://packagist.org/downloads/",
  8272. "license": [
  8273. "BSD-3-Clause"
  8274. ],
  8275. "authors": [
  8276. {
  8277. "name": "Sebastian Bergmann",
  8278. "email": "sebastian@phpunit.de",
  8279. "role": "lead"
  8280. }
  8281. ],
  8282. "description": "Invoke callables with a timeout",
  8283. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8284. "keywords": [
  8285. "process"
  8286. ],
  8287. "support": {
  8288. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8289. "security": "https://github.com/sebastianbergmann/php-invoker/security/policy",
  8290. "source": "https://github.com/sebastianbergmann/php-invoker/tree/5.0.1"
  8291. },
  8292. "funding": [
  8293. {
  8294. "url": "https://github.com/sebastianbergmann",
  8295. "type": "github"
  8296. }
  8297. ],
  8298. "time": "2024-07-03T05:07:44+00:00"
  8299. },
  8300. {
  8301. "name": "phpunit/php-text-template",
  8302. "version": "4.0.1",
  8303. "source": {
  8304. "type": "git",
  8305. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8306. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964"
  8307. },
  8308. "dist": {
  8309. "type": "zip",
  8310. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  8311. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  8312. "shasum": ""
  8313. },
  8314. "require": {
  8315. "php": ">=8.2"
  8316. },
  8317. "require-dev": {
  8318. "phpunit/phpunit": "^11.0"
  8319. },
  8320. "type": "library",
  8321. "extra": {
  8322. "branch-alias": {
  8323. "dev-main": "4.0-dev"
  8324. }
  8325. },
  8326. "autoload": {
  8327. "classmap": [
  8328. "src/"
  8329. ]
  8330. },
  8331. "notification-url": "https://packagist.org/downloads/",
  8332. "license": [
  8333. "BSD-3-Clause"
  8334. ],
  8335. "authors": [
  8336. {
  8337. "name": "Sebastian Bergmann",
  8338. "email": "sebastian@phpunit.de",
  8339. "role": "lead"
  8340. }
  8341. ],
  8342. "description": "Simple template engine.",
  8343. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8344. "keywords": [
  8345. "template"
  8346. ],
  8347. "support": {
  8348. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8349. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  8350. "source": "https://github.com/sebastianbergmann/php-text-template/tree/4.0.1"
  8351. },
  8352. "funding": [
  8353. {
  8354. "url": "https://github.com/sebastianbergmann",
  8355. "type": "github"
  8356. }
  8357. ],
  8358. "time": "2024-07-03T05:08:43+00:00"
  8359. },
  8360. {
  8361. "name": "phpunit/php-timer",
  8362. "version": "7.0.1",
  8363. "source": {
  8364. "type": "git",
  8365. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8366. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3"
  8367. },
  8368. "dist": {
  8369. "type": "zip",
  8370. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  8371. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  8372. "shasum": ""
  8373. },
  8374. "require": {
  8375. "php": ">=8.2"
  8376. },
  8377. "require-dev": {
  8378. "phpunit/phpunit": "^11.0"
  8379. },
  8380. "type": "library",
  8381. "extra": {
  8382. "branch-alias": {
  8383. "dev-main": "7.0-dev"
  8384. }
  8385. },
  8386. "autoload": {
  8387. "classmap": [
  8388. "src/"
  8389. ]
  8390. },
  8391. "notification-url": "https://packagist.org/downloads/",
  8392. "license": [
  8393. "BSD-3-Clause"
  8394. ],
  8395. "authors": [
  8396. {
  8397. "name": "Sebastian Bergmann",
  8398. "email": "sebastian@phpunit.de",
  8399. "role": "lead"
  8400. }
  8401. ],
  8402. "description": "Utility class for timing",
  8403. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8404. "keywords": [
  8405. "timer"
  8406. ],
  8407. "support": {
  8408. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8409. "security": "https://github.com/sebastianbergmann/php-timer/security/policy",
  8410. "source": "https://github.com/sebastianbergmann/php-timer/tree/7.0.1"
  8411. },
  8412. "funding": [
  8413. {
  8414. "url": "https://github.com/sebastianbergmann",
  8415. "type": "github"
  8416. }
  8417. ],
  8418. "time": "2024-07-03T05:09:35+00:00"
  8419. },
  8420. {
  8421. "name": "phpunit/phpunit",
  8422. "version": "11.4.1",
  8423. "source": {
  8424. "type": "git",
  8425. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8426. "reference": "7875627f15f4da7e7f0823d1f323f7295a77334e"
  8427. },
  8428. "dist": {
  8429. "type": "zip",
  8430. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/7875627f15f4da7e7f0823d1f323f7295a77334e",
  8431. "reference": "7875627f15f4da7e7f0823d1f323f7295a77334e",
  8432. "shasum": ""
  8433. },
  8434. "require": {
  8435. "ext-dom": "*",
  8436. "ext-json": "*",
  8437. "ext-libxml": "*",
  8438. "ext-mbstring": "*",
  8439. "ext-xml": "*",
  8440. "ext-xmlwriter": "*",
  8441. "myclabs/deep-copy": "^1.12.0",
  8442. "phar-io/manifest": "^2.0.4",
  8443. "phar-io/version": "^3.2.1",
  8444. "php": ">=8.2",
  8445. "phpunit/php-code-coverage": "^11.0.6",
  8446. "phpunit/php-file-iterator": "^5.1.0",
  8447. "phpunit/php-invoker": "^5.0.1",
  8448. "phpunit/php-text-template": "^4.0.1",
  8449. "phpunit/php-timer": "^7.0.1",
  8450. "sebastian/cli-parser": "^3.0.2",
  8451. "sebastian/code-unit": "^3.0.1",
  8452. "sebastian/comparator": "^6.1.0",
  8453. "sebastian/diff": "^6.0.2",
  8454. "sebastian/environment": "^7.2.0",
  8455. "sebastian/exporter": "^6.1.3",
  8456. "sebastian/global-state": "^7.0.2",
  8457. "sebastian/object-enumerator": "^6.0.1",
  8458. "sebastian/type": "^5.1.0",
  8459. "sebastian/version": "^5.0.1"
  8460. },
  8461. "suggest": {
  8462. "ext-soap": "To be able to generate mocks based on WSDL files"
  8463. },
  8464. "bin": [
  8465. "phpunit"
  8466. ],
  8467. "type": "library",
  8468. "extra": {
  8469. "branch-alias": {
  8470. "dev-main": "11.4-dev"
  8471. }
  8472. },
  8473. "autoload": {
  8474. "files": [
  8475. "src/Framework/Assert/Functions.php"
  8476. ],
  8477. "classmap": [
  8478. "src/"
  8479. ]
  8480. },
  8481. "notification-url": "https://packagist.org/downloads/",
  8482. "license": [
  8483. "BSD-3-Clause"
  8484. ],
  8485. "authors": [
  8486. {
  8487. "name": "Sebastian Bergmann",
  8488. "email": "sebastian@phpunit.de",
  8489. "role": "lead"
  8490. }
  8491. ],
  8492. "description": "The PHP Unit Testing framework.",
  8493. "homepage": "https://phpunit.de/",
  8494. "keywords": [
  8495. "phpunit",
  8496. "testing",
  8497. "xunit"
  8498. ],
  8499. "support": {
  8500. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  8501. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  8502. "source": "https://github.com/sebastianbergmann/phpunit/tree/11.4.1"
  8503. },
  8504. "funding": [
  8505. {
  8506. "url": "https://phpunit.de/sponsors.html",
  8507. "type": "custom"
  8508. },
  8509. {
  8510. "url": "https://github.com/sebastianbergmann",
  8511. "type": "github"
  8512. },
  8513. {
  8514. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  8515. "type": "tidelift"
  8516. }
  8517. ],
  8518. "time": "2024-10-08T15:38:37+00:00"
  8519. },
  8520. {
  8521. "name": "sebastian/cli-parser",
  8522. "version": "3.0.2",
  8523. "source": {
  8524. "type": "git",
  8525. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  8526. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180"
  8527. },
  8528. "dist": {
  8529. "type": "zip",
  8530. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/15c5dd40dc4f38794d383bb95465193f5e0ae180",
  8531. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180",
  8532. "shasum": ""
  8533. },
  8534. "require": {
  8535. "php": ">=8.2"
  8536. },
  8537. "require-dev": {
  8538. "phpunit/phpunit": "^11.0"
  8539. },
  8540. "type": "library",
  8541. "extra": {
  8542. "branch-alias": {
  8543. "dev-main": "3.0-dev"
  8544. }
  8545. },
  8546. "autoload": {
  8547. "classmap": [
  8548. "src/"
  8549. ]
  8550. },
  8551. "notification-url": "https://packagist.org/downloads/",
  8552. "license": [
  8553. "BSD-3-Clause"
  8554. ],
  8555. "authors": [
  8556. {
  8557. "name": "Sebastian Bergmann",
  8558. "email": "sebastian@phpunit.de",
  8559. "role": "lead"
  8560. }
  8561. ],
  8562. "description": "Library for parsing CLI options",
  8563. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  8564. "support": {
  8565. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  8566. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  8567. "source": "https://github.com/sebastianbergmann/cli-parser/tree/3.0.2"
  8568. },
  8569. "funding": [
  8570. {
  8571. "url": "https://github.com/sebastianbergmann",
  8572. "type": "github"
  8573. }
  8574. ],
  8575. "time": "2024-07-03T04:41:36+00:00"
  8576. },
  8577. {
  8578. "name": "sebastian/code-unit",
  8579. "version": "3.0.1",
  8580. "source": {
  8581. "type": "git",
  8582. "url": "https://github.com/sebastianbergmann/code-unit.git",
  8583. "reference": "6bb7d09d6623567178cf54126afa9c2310114268"
  8584. },
  8585. "dist": {
  8586. "type": "zip",
  8587. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/6bb7d09d6623567178cf54126afa9c2310114268",
  8588. "reference": "6bb7d09d6623567178cf54126afa9c2310114268",
  8589. "shasum": ""
  8590. },
  8591. "require": {
  8592. "php": ">=8.2"
  8593. },
  8594. "require-dev": {
  8595. "phpunit/phpunit": "^11.0"
  8596. },
  8597. "type": "library",
  8598. "extra": {
  8599. "branch-alias": {
  8600. "dev-main": "3.0-dev"
  8601. }
  8602. },
  8603. "autoload": {
  8604. "classmap": [
  8605. "src/"
  8606. ]
  8607. },
  8608. "notification-url": "https://packagist.org/downloads/",
  8609. "license": [
  8610. "BSD-3-Clause"
  8611. ],
  8612. "authors": [
  8613. {
  8614. "name": "Sebastian Bergmann",
  8615. "email": "sebastian@phpunit.de",
  8616. "role": "lead"
  8617. }
  8618. ],
  8619. "description": "Collection of value objects that represent the PHP code units",
  8620. "homepage": "https://github.com/sebastianbergmann/code-unit",
  8621. "support": {
  8622. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  8623. "security": "https://github.com/sebastianbergmann/code-unit/security/policy",
  8624. "source": "https://github.com/sebastianbergmann/code-unit/tree/3.0.1"
  8625. },
  8626. "funding": [
  8627. {
  8628. "url": "https://github.com/sebastianbergmann",
  8629. "type": "github"
  8630. }
  8631. ],
  8632. "time": "2024-07-03T04:44:28+00:00"
  8633. },
  8634. {
  8635. "name": "sebastian/code-unit-reverse-lookup",
  8636. "version": "4.0.1",
  8637. "source": {
  8638. "type": "git",
  8639. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  8640. "reference": "183a9b2632194febd219bb9246eee421dad8d45e"
  8641. },
  8642. "dist": {
  8643. "type": "zip",
  8644. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/183a9b2632194febd219bb9246eee421dad8d45e",
  8645. "reference": "183a9b2632194febd219bb9246eee421dad8d45e",
  8646. "shasum": ""
  8647. },
  8648. "require": {
  8649. "php": ">=8.2"
  8650. },
  8651. "require-dev": {
  8652. "phpunit/phpunit": "^11.0"
  8653. },
  8654. "type": "library",
  8655. "extra": {
  8656. "branch-alias": {
  8657. "dev-main": "4.0-dev"
  8658. }
  8659. },
  8660. "autoload": {
  8661. "classmap": [
  8662. "src/"
  8663. ]
  8664. },
  8665. "notification-url": "https://packagist.org/downloads/",
  8666. "license": [
  8667. "BSD-3-Clause"
  8668. ],
  8669. "authors": [
  8670. {
  8671. "name": "Sebastian Bergmann",
  8672. "email": "sebastian@phpunit.de"
  8673. }
  8674. ],
  8675. "description": "Looks up which function or method a line of code belongs to",
  8676. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  8677. "support": {
  8678. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  8679. "security": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/security/policy",
  8680. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/4.0.1"
  8681. },
  8682. "funding": [
  8683. {
  8684. "url": "https://github.com/sebastianbergmann",
  8685. "type": "github"
  8686. }
  8687. ],
  8688. "time": "2024-07-03T04:45:54+00:00"
  8689. },
  8690. {
  8691. "name": "sebastian/comparator",
  8692. "version": "6.1.0",
  8693. "source": {
  8694. "type": "git",
  8695. "url": "https://github.com/sebastianbergmann/comparator.git",
  8696. "reference": "fa37b9e2ca618cb051d71b60120952ee8ca8b03d"
  8697. },
  8698. "dist": {
  8699. "type": "zip",
  8700. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa37b9e2ca618cb051d71b60120952ee8ca8b03d",
  8701. "reference": "fa37b9e2ca618cb051d71b60120952ee8ca8b03d",
  8702. "shasum": ""
  8703. },
  8704. "require": {
  8705. "ext-dom": "*",
  8706. "ext-mbstring": "*",
  8707. "php": ">=8.2",
  8708. "sebastian/diff": "^6.0",
  8709. "sebastian/exporter": "^6.0"
  8710. },
  8711. "require-dev": {
  8712. "phpunit/phpunit": "^11.3"
  8713. },
  8714. "type": "library",
  8715. "extra": {
  8716. "branch-alias": {
  8717. "dev-main": "6.1-dev"
  8718. }
  8719. },
  8720. "autoload": {
  8721. "classmap": [
  8722. "src/"
  8723. ]
  8724. },
  8725. "notification-url": "https://packagist.org/downloads/",
  8726. "license": [
  8727. "BSD-3-Clause"
  8728. ],
  8729. "authors": [
  8730. {
  8731. "name": "Sebastian Bergmann",
  8732. "email": "sebastian@phpunit.de"
  8733. },
  8734. {
  8735. "name": "Jeff Welch",
  8736. "email": "whatthejeff@gmail.com"
  8737. },
  8738. {
  8739. "name": "Volker Dusch",
  8740. "email": "github@wallbash.com"
  8741. },
  8742. {
  8743. "name": "Bernhard Schussek",
  8744. "email": "bschussek@2bepublished.at"
  8745. }
  8746. ],
  8747. "description": "Provides the functionality to compare PHP values for equality",
  8748. "homepage": "https://github.com/sebastianbergmann/comparator",
  8749. "keywords": [
  8750. "comparator",
  8751. "compare",
  8752. "equality"
  8753. ],
  8754. "support": {
  8755. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  8756. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  8757. "source": "https://github.com/sebastianbergmann/comparator/tree/6.1.0"
  8758. },
  8759. "funding": [
  8760. {
  8761. "url": "https://github.com/sebastianbergmann",
  8762. "type": "github"
  8763. }
  8764. ],
  8765. "time": "2024-09-11T15:42:56+00:00"
  8766. },
  8767. {
  8768. "name": "sebastian/complexity",
  8769. "version": "4.0.1",
  8770. "source": {
  8771. "type": "git",
  8772. "url": "https://github.com/sebastianbergmann/complexity.git",
  8773. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0"
  8774. },
  8775. "dist": {
  8776. "type": "zip",
  8777. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/ee41d384ab1906c68852636b6de493846e13e5a0",
  8778. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0",
  8779. "shasum": ""
  8780. },
  8781. "require": {
  8782. "nikic/php-parser": "^5.0",
  8783. "php": ">=8.2"
  8784. },
  8785. "require-dev": {
  8786. "phpunit/phpunit": "^11.0"
  8787. },
  8788. "type": "library",
  8789. "extra": {
  8790. "branch-alias": {
  8791. "dev-main": "4.0-dev"
  8792. }
  8793. },
  8794. "autoload": {
  8795. "classmap": [
  8796. "src/"
  8797. ]
  8798. },
  8799. "notification-url": "https://packagist.org/downloads/",
  8800. "license": [
  8801. "BSD-3-Clause"
  8802. ],
  8803. "authors": [
  8804. {
  8805. "name": "Sebastian Bergmann",
  8806. "email": "sebastian@phpunit.de",
  8807. "role": "lead"
  8808. }
  8809. ],
  8810. "description": "Library for calculating the complexity of PHP code units",
  8811. "homepage": "https://github.com/sebastianbergmann/complexity",
  8812. "support": {
  8813. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  8814. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  8815. "source": "https://github.com/sebastianbergmann/complexity/tree/4.0.1"
  8816. },
  8817. "funding": [
  8818. {
  8819. "url": "https://github.com/sebastianbergmann",
  8820. "type": "github"
  8821. }
  8822. ],
  8823. "time": "2024-07-03T04:49:50+00:00"
  8824. },
  8825. {
  8826. "name": "sebastian/diff",
  8827. "version": "6.0.2",
  8828. "source": {
  8829. "type": "git",
  8830. "url": "https://github.com/sebastianbergmann/diff.git",
  8831. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544"
  8832. },
  8833. "dist": {
  8834. "type": "zip",
  8835. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/b4ccd857127db5d41a5b676f24b51371d76d8544",
  8836. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544",
  8837. "shasum": ""
  8838. },
  8839. "require": {
  8840. "php": ">=8.2"
  8841. },
  8842. "require-dev": {
  8843. "phpunit/phpunit": "^11.0",
  8844. "symfony/process": "^4.2 || ^5"
  8845. },
  8846. "type": "library",
  8847. "extra": {
  8848. "branch-alias": {
  8849. "dev-main": "6.0-dev"
  8850. }
  8851. },
  8852. "autoload": {
  8853. "classmap": [
  8854. "src/"
  8855. ]
  8856. },
  8857. "notification-url": "https://packagist.org/downloads/",
  8858. "license": [
  8859. "BSD-3-Clause"
  8860. ],
  8861. "authors": [
  8862. {
  8863. "name": "Sebastian Bergmann",
  8864. "email": "sebastian@phpunit.de"
  8865. },
  8866. {
  8867. "name": "Kore Nordmann",
  8868. "email": "mail@kore-nordmann.de"
  8869. }
  8870. ],
  8871. "description": "Diff implementation",
  8872. "homepage": "https://github.com/sebastianbergmann/diff",
  8873. "keywords": [
  8874. "diff",
  8875. "udiff",
  8876. "unidiff",
  8877. "unified diff"
  8878. ],
  8879. "support": {
  8880. "issues": "https://github.com/sebastianbergmann/diff/issues",
  8881. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  8882. "source": "https://github.com/sebastianbergmann/diff/tree/6.0.2"
  8883. },
  8884. "funding": [
  8885. {
  8886. "url": "https://github.com/sebastianbergmann",
  8887. "type": "github"
  8888. }
  8889. ],
  8890. "time": "2024-07-03T04:53:05+00:00"
  8891. },
  8892. {
  8893. "name": "sebastian/environment",
  8894. "version": "7.2.0",
  8895. "source": {
  8896. "type": "git",
  8897. "url": "https://github.com/sebastianbergmann/environment.git",
  8898. "reference": "855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5"
  8899. },
  8900. "dist": {
  8901. "type": "zip",
  8902. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5",
  8903. "reference": "855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5",
  8904. "shasum": ""
  8905. },
  8906. "require": {
  8907. "php": ">=8.2"
  8908. },
  8909. "require-dev": {
  8910. "phpunit/phpunit": "^11.0"
  8911. },
  8912. "suggest": {
  8913. "ext-posix": "*"
  8914. },
  8915. "type": "library",
  8916. "extra": {
  8917. "branch-alias": {
  8918. "dev-main": "7.2-dev"
  8919. }
  8920. },
  8921. "autoload": {
  8922. "classmap": [
  8923. "src/"
  8924. ]
  8925. },
  8926. "notification-url": "https://packagist.org/downloads/",
  8927. "license": [
  8928. "BSD-3-Clause"
  8929. ],
  8930. "authors": [
  8931. {
  8932. "name": "Sebastian Bergmann",
  8933. "email": "sebastian@phpunit.de"
  8934. }
  8935. ],
  8936. "description": "Provides functionality to handle HHVM/PHP environments",
  8937. "homepage": "https://github.com/sebastianbergmann/environment",
  8938. "keywords": [
  8939. "Xdebug",
  8940. "environment",
  8941. "hhvm"
  8942. ],
  8943. "support": {
  8944. "issues": "https://github.com/sebastianbergmann/environment/issues",
  8945. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  8946. "source": "https://github.com/sebastianbergmann/environment/tree/7.2.0"
  8947. },
  8948. "funding": [
  8949. {
  8950. "url": "https://github.com/sebastianbergmann",
  8951. "type": "github"
  8952. }
  8953. ],
  8954. "time": "2024-07-03T04:54:44+00:00"
  8955. },
  8956. {
  8957. "name": "sebastian/exporter",
  8958. "version": "6.1.3",
  8959. "source": {
  8960. "type": "git",
  8961. "url": "https://github.com/sebastianbergmann/exporter.git",
  8962. "reference": "c414673eee9a8f9d51bbf8d61fc9e3ef1e85b20e"
  8963. },
  8964. "dist": {
  8965. "type": "zip",
  8966. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/c414673eee9a8f9d51bbf8d61fc9e3ef1e85b20e",
  8967. "reference": "c414673eee9a8f9d51bbf8d61fc9e3ef1e85b20e",
  8968. "shasum": ""
  8969. },
  8970. "require": {
  8971. "ext-mbstring": "*",
  8972. "php": ">=8.2",
  8973. "sebastian/recursion-context": "^6.0"
  8974. },
  8975. "require-dev": {
  8976. "phpunit/phpunit": "^11.2"
  8977. },
  8978. "type": "library",
  8979. "extra": {
  8980. "branch-alias": {
  8981. "dev-main": "6.1-dev"
  8982. }
  8983. },
  8984. "autoload": {
  8985. "classmap": [
  8986. "src/"
  8987. ]
  8988. },
  8989. "notification-url": "https://packagist.org/downloads/",
  8990. "license": [
  8991. "BSD-3-Clause"
  8992. ],
  8993. "authors": [
  8994. {
  8995. "name": "Sebastian Bergmann",
  8996. "email": "sebastian@phpunit.de"
  8997. },
  8998. {
  8999. "name": "Jeff Welch",
  9000. "email": "whatthejeff@gmail.com"
  9001. },
  9002. {
  9003. "name": "Volker Dusch",
  9004. "email": "github@wallbash.com"
  9005. },
  9006. {
  9007. "name": "Adam Harvey",
  9008. "email": "aharvey@php.net"
  9009. },
  9010. {
  9011. "name": "Bernhard Schussek",
  9012. "email": "bschussek@gmail.com"
  9013. }
  9014. ],
  9015. "description": "Provides the functionality to export PHP variables for visualization",
  9016. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9017. "keywords": [
  9018. "export",
  9019. "exporter"
  9020. ],
  9021. "support": {
  9022. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9023. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  9024. "source": "https://github.com/sebastianbergmann/exporter/tree/6.1.3"
  9025. },
  9026. "funding": [
  9027. {
  9028. "url": "https://github.com/sebastianbergmann",
  9029. "type": "github"
  9030. }
  9031. ],
  9032. "time": "2024-07-03T04:56:19+00:00"
  9033. },
  9034. {
  9035. "name": "sebastian/global-state",
  9036. "version": "7.0.2",
  9037. "source": {
  9038. "type": "git",
  9039. "url": "https://github.com/sebastianbergmann/global-state.git",
  9040. "reference": "3be331570a721f9a4b5917f4209773de17f747d7"
  9041. },
  9042. "dist": {
  9043. "type": "zip",
  9044. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/3be331570a721f9a4b5917f4209773de17f747d7",
  9045. "reference": "3be331570a721f9a4b5917f4209773de17f747d7",
  9046. "shasum": ""
  9047. },
  9048. "require": {
  9049. "php": ">=8.2",
  9050. "sebastian/object-reflector": "^4.0",
  9051. "sebastian/recursion-context": "^6.0"
  9052. },
  9053. "require-dev": {
  9054. "ext-dom": "*",
  9055. "phpunit/phpunit": "^11.0"
  9056. },
  9057. "type": "library",
  9058. "extra": {
  9059. "branch-alias": {
  9060. "dev-main": "7.0-dev"
  9061. }
  9062. },
  9063. "autoload": {
  9064. "classmap": [
  9065. "src/"
  9066. ]
  9067. },
  9068. "notification-url": "https://packagist.org/downloads/",
  9069. "license": [
  9070. "BSD-3-Clause"
  9071. ],
  9072. "authors": [
  9073. {
  9074. "name": "Sebastian Bergmann",
  9075. "email": "sebastian@phpunit.de"
  9076. }
  9077. ],
  9078. "description": "Snapshotting of global state",
  9079. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  9080. "keywords": [
  9081. "global state"
  9082. ],
  9083. "support": {
  9084. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9085. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  9086. "source": "https://github.com/sebastianbergmann/global-state/tree/7.0.2"
  9087. },
  9088. "funding": [
  9089. {
  9090. "url": "https://github.com/sebastianbergmann",
  9091. "type": "github"
  9092. }
  9093. ],
  9094. "time": "2024-07-03T04:57:36+00:00"
  9095. },
  9096. {
  9097. "name": "sebastian/lines-of-code",
  9098. "version": "3.0.1",
  9099. "source": {
  9100. "type": "git",
  9101. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  9102. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a"
  9103. },
  9104. "dist": {
  9105. "type": "zip",
  9106. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  9107. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  9108. "shasum": ""
  9109. },
  9110. "require": {
  9111. "nikic/php-parser": "^5.0",
  9112. "php": ">=8.2"
  9113. },
  9114. "require-dev": {
  9115. "phpunit/phpunit": "^11.0"
  9116. },
  9117. "type": "library",
  9118. "extra": {
  9119. "branch-alias": {
  9120. "dev-main": "3.0-dev"
  9121. }
  9122. },
  9123. "autoload": {
  9124. "classmap": [
  9125. "src/"
  9126. ]
  9127. },
  9128. "notification-url": "https://packagist.org/downloads/",
  9129. "license": [
  9130. "BSD-3-Clause"
  9131. ],
  9132. "authors": [
  9133. {
  9134. "name": "Sebastian Bergmann",
  9135. "email": "sebastian@phpunit.de",
  9136. "role": "lead"
  9137. }
  9138. ],
  9139. "description": "Library for counting the lines of code in PHP source code",
  9140. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  9141. "support": {
  9142. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  9143. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  9144. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/3.0.1"
  9145. },
  9146. "funding": [
  9147. {
  9148. "url": "https://github.com/sebastianbergmann",
  9149. "type": "github"
  9150. }
  9151. ],
  9152. "time": "2024-07-03T04:58:38+00:00"
  9153. },
  9154. {
  9155. "name": "sebastian/object-enumerator",
  9156. "version": "6.0.1",
  9157. "source": {
  9158. "type": "git",
  9159. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9160. "reference": "f5b498e631a74204185071eb41f33f38d64608aa"
  9161. },
  9162. "dist": {
  9163. "type": "zip",
  9164. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/f5b498e631a74204185071eb41f33f38d64608aa",
  9165. "reference": "f5b498e631a74204185071eb41f33f38d64608aa",
  9166. "shasum": ""
  9167. },
  9168. "require": {
  9169. "php": ">=8.2",
  9170. "sebastian/object-reflector": "^4.0",
  9171. "sebastian/recursion-context": "^6.0"
  9172. },
  9173. "require-dev": {
  9174. "phpunit/phpunit": "^11.0"
  9175. },
  9176. "type": "library",
  9177. "extra": {
  9178. "branch-alias": {
  9179. "dev-main": "6.0-dev"
  9180. }
  9181. },
  9182. "autoload": {
  9183. "classmap": [
  9184. "src/"
  9185. ]
  9186. },
  9187. "notification-url": "https://packagist.org/downloads/",
  9188. "license": [
  9189. "BSD-3-Clause"
  9190. ],
  9191. "authors": [
  9192. {
  9193. "name": "Sebastian Bergmann",
  9194. "email": "sebastian@phpunit.de"
  9195. }
  9196. ],
  9197. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9198. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9199. "support": {
  9200. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9201. "security": "https://github.com/sebastianbergmann/object-enumerator/security/policy",
  9202. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/6.0.1"
  9203. },
  9204. "funding": [
  9205. {
  9206. "url": "https://github.com/sebastianbergmann",
  9207. "type": "github"
  9208. }
  9209. ],
  9210. "time": "2024-07-03T05:00:13+00:00"
  9211. },
  9212. {
  9213. "name": "sebastian/object-reflector",
  9214. "version": "4.0.1",
  9215. "source": {
  9216. "type": "git",
  9217. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9218. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9"
  9219. },
  9220. "dist": {
  9221. "type": "zip",
  9222. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  9223. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  9224. "shasum": ""
  9225. },
  9226. "require": {
  9227. "php": ">=8.2"
  9228. },
  9229. "require-dev": {
  9230. "phpunit/phpunit": "^11.0"
  9231. },
  9232. "type": "library",
  9233. "extra": {
  9234. "branch-alias": {
  9235. "dev-main": "4.0-dev"
  9236. }
  9237. },
  9238. "autoload": {
  9239. "classmap": [
  9240. "src/"
  9241. ]
  9242. },
  9243. "notification-url": "https://packagist.org/downloads/",
  9244. "license": [
  9245. "BSD-3-Clause"
  9246. ],
  9247. "authors": [
  9248. {
  9249. "name": "Sebastian Bergmann",
  9250. "email": "sebastian@phpunit.de"
  9251. }
  9252. ],
  9253. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9254. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9255. "support": {
  9256. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9257. "security": "https://github.com/sebastianbergmann/object-reflector/security/policy",
  9258. "source": "https://github.com/sebastianbergmann/object-reflector/tree/4.0.1"
  9259. },
  9260. "funding": [
  9261. {
  9262. "url": "https://github.com/sebastianbergmann",
  9263. "type": "github"
  9264. }
  9265. ],
  9266. "time": "2024-07-03T05:01:32+00:00"
  9267. },
  9268. {
  9269. "name": "sebastian/recursion-context",
  9270. "version": "6.0.2",
  9271. "source": {
  9272. "type": "git",
  9273. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9274. "reference": "694d156164372abbd149a4b85ccda2e4670c0e16"
  9275. },
  9276. "dist": {
  9277. "type": "zip",
  9278. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/694d156164372abbd149a4b85ccda2e4670c0e16",
  9279. "reference": "694d156164372abbd149a4b85ccda2e4670c0e16",
  9280. "shasum": ""
  9281. },
  9282. "require": {
  9283. "php": ">=8.2"
  9284. },
  9285. "require-dev": {
  9286. "phpunit/phpunit": "^11.0"
  9287. },
  9288. "type": "library",
  9289. "extra": {
  9290. "branch-alias": {
  9291. "dev-main": "6.0-dev"
  9292. }
  9293. },
  9294. "autoload": {
  9295. "classmap": [
  9296. "src/"
  9297. ]
  9298. },
  9299. "notification-url": "https://packagist.org/downloads/",
  9300. "license": [
  9301. "BSD-3-Clause"
  9302. ],
  9303. "authors": [
  9304. {
  9305. "name": "Sebastian Bergmann",
  9306. "email": "sebastian@phpunit.de"
  9307. },
  9308. {
  9309. "name": "Jeff Welch",
  9310. "email": "whatthejeff@gmail.com"
  9311. },
  9312. {
  9313. "name": "Adam Harvey",
  9314. "email": "aharvey@php.net"
  9315. }
  9316. ],
  9317. "description": "Provides functionality to recursively process PHP variables",
  9318. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  9319. "support": {
  9320. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9321. "security": "https://github.com/sebastianbergmann/recursion-context/security/policy",
  9322. "source": "https://github.com/sebastianbergmann/recursion-context/tree/6.0.2"
  9323. },
  9324. "funding": [
  9325. {
  9326. "url": "https://github.com/sebastianbergmann",
  9327. "type": "github"
  9328. }
  9329. ],
  9330. "time": "2024-07-03T05:10:34+00:00"
  9331. },
  9332. {
  9333. "name": "sebastian/type",
  9334. "version": "5.1.0",
  9335. "source": {
  9336. "type": "git",
  9337. "url": "https://github.com/sebastianbergmann/type.git",
  9338. "reference": "461b9c5da241511a2a0e8f240814fb23ce5c0aac"
  9339. },
  9340. "dist": {
  9341. "type": "zip",
  9342. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/461b9c5da241511a2a0e8f240814fb23ce5c0aac",
  9343. "reference": "461b9c5da241511a2a0e8f240814fb23ce5c0aac",
  9344. "shasum": ""
  9345. },
  9346. "require": {
  9347. "php": ">=8.2"
  9348. },
  9349. "require-dev": {
  9350. "phpunit/phpunit": "^11.3"
  9351. },
  9352. "type": "library",
  9353. "extra": {
  9354. "branch-alias": {
  9355. "dev-main": "5.1-dev"
  9356. }
  9357. },
  9358. "autoload": {
  9359. "classmap": [
  9360. "src/"
  9361. ]
  9362. },
  9363. "notification-url": "https://packagist.org/downloads/",
  9364. "license": [
  9365. "BSD-3-Clause"
  9366. ],
  9367. "authors": [
  9368. {
  9369. "name": "Sebastian Bergmann",
  9370. "email": "sebastian@phpunit.de",
  9371. "role": "lead"
  9372. }
  9373. ],
  9374. "description": "Collection of value objects that represent the types of the PHP type system",
  9375. "homepage": "https://github.com/sebastianbergmann/type",
  9376. "support": {
  9377. "issues": "https://github.com/sebastianbergmann/type/issues",
  9378. "security": "https://github.com/sebastianbergmann/type/security/policy",
  9379. "source": "https://github.com/sebastianbergmann/type/tree/5.1.0"
  9380. },
  9381. "funding": [
  9382. {
  9383. "url": "https://github.com/sebastianbergmann",
  9384. "type": "github"
  9385. }
  9386. ],
  9387. "time": "2024-09-17T13:12:04+00:00"
  9388. },
  9389. {
  9390. "name": "sebastian/version",
  9391. "version": "5.0.2",
  9392. "source": {
  9393. "type": "git",
  9394. "url": "https://github.com/sebastianbergmann/version.git",
  9395. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874"
  9396. },
  9397. "dist": {
  9398. "type": "zip",
  9399. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c687e3387b99f5b03b6caa64c74b63e2936ff874",
  9400. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874",
  9401. "shasum": ""
  9402. },
  9403. "require": {
  9404. "php": ">=8.2"
  9405. },
  9406. "type": "library",
  9407. "extra": {
  9408. "branch-alias": {
  9409. "dev-main": "5.0-dev"
  9410. }
  9411. },
  9412. "autoload": {
  9413. "classmap": [
  9414. "src/"
  9415. ]
  9416. },
  9417. "notification-url": "https://packagist.org/downloads/",
  9418. "license": [
  9419. "BSD-3-Clause"
  9420. ],
  9421. "authors": [
  9422. {
  9423. "name": "Sebastian Bergmann",
  9424. "email": "sebastian@phpunit.de",
  9425. "role": "lead"
  9426. }
  9427. ],
  9428. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9429. "homepage": "https://github.com/sebastianbergmann/version",
  9430. "support": {
  9431. "issues": "https://github.com/sebastianbergmann/version/issues",
  9432. "security": "https://github.com/sebastianbergmann/version/security/policy",
  9433. "source": "https://github.com/sebastianbergmann/version/tree/5.0.2"
  9434. },
  9435. "funding": [
  9436. {
  9437. "url": "https://github.com/sebastianbergmann",
  9438. "type": "github"
  9439. }
  9440. ],
  9441. "time": "2024-10-09T05:16:32+00:00"
  9442. },
  9443. {
  9444. "name": "symfony/yaml",
  9445. "version": "v7.1.5",
  9446. "source": {
  9447. "type": "git",
  9448. "url": "https://github.com/symfony/yaml.git",
  9449. "reference": "4e561c316e135e053bd758bf3b3eb291d9919de4"
  9450. },
  9451. "dist": {
  9452. "type": "zip",
  9453. "url": "https://api.github.com/repos/symfony/yaml/zipball/4e561c316e135e053bd758bf3b3eb291d9919de4",
  9454. "reference": "4e561c316e135e053bd758bf3b3eb291d9919de4",
  9455. "shasum": ""
  9456. },
  9457. "require": {
  9458. "php": ">=8.2",
  9459. "symfony/polyfill-ctype": "^1.8"
  9460. },
  9461. "conflict": {
  9462. "symfony/console": "<6.4"
  9463. },
  9464. "require-dev": {
  9465. "symfony/console": "^6.4|^7.0"
  9466. },
  9467. "bin": [
  9468. "Resources/bin/yaml-lint"
  9469. ],
  9470. "type": "library",
  9471. "autoload": {
  9472. "psr-4": {
  9473. "Symfony\\Component\\Yaml\\": ""
  9474. },
  9475. "exclude-from-classmap": [
  9476. "/Tests/"
  9477. ]
  9478. },
  9479. "notification-url": "https://packagist.org/downloads/",
  9480. "license": [
  9481. "MIT"
  9482. ],
  9483. "authors": [
  9484. {
  9485. "name": "Fabien Potencier",
  9486. "email": "fabien@symfony.com"
  9487. },
  9488. {
  9489. "name": "Symfony Community",
  9490. "homepage": "https://symfony.com/contributors"
  9491. }
  9492. ],
  9493. "description": "Loads and dumps YAML files",
  9494. "homepage": "https://symfony.com",
  9495. "support": {
  9496. "source": "https://github.com/symfony/yaml/tree/v7.1.5"
  9497. },
  9498. "funding": [
  9499. {
  9500. "url": "https://symfony.com/sponsor",
  9501. "type": "custom"
  9502. },
  9503. {
  9504. "url": "https://github.com/fabpot",
  9505. "type": "github"
  9506. },
  9507. {
  9508. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9509. "type": "tidelift"
  9510. }
  9511. ],
  9512. "time": "2024-09-17T12:49:58+00:00"
  9513. },
  9514. {
  9515. "name": "theseer/tokenizer",
  9516. "version": "1.2.3",
  9517. "source": {
  9518. "type": "git",
  9519. "url": "https://github.com/theseer/tokenizer.git",
  9520. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  9521. },
  9522. "dist": {
  9523. "type": "zip",
  9524. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  9525. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  9526. "shasum": ""
  9527. },
  9528. "require": {
  9529. "ext-dom": "*",
  9530. "ext-tokenizer": "*",
  9531. "ext-xmlwriter": "*",
  9532. "php": "^7.2 || ^8.0"
  9533. },
  9534. "type": "library",
  9535. "autoload": {
  9536. "classmap": [
  9537. "src/"
  9538. ]
  9539. },
  9540. "notification-url": "https://packagist.org/downloads/",
  9541. "license": [
  9542. "BSD-3-Clause"
  9543. ],
  9544. "authors": [
  9545. {
  9546. "name": "Arne Blankerts",
  9547. "email": "arne@blankerts.de",
  9548. "role": "Developer"
  9549. }
  9550. ],
  9551. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  9552. "support": {
  9553. "issues": "https://github.com/theseer/tokenizer/issues",
  9554. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  9555. },
  9556. "funding": [
  9557. {
  9558. "url": "https://github.com/theseer",
  9559. "type": "github"
  9560. }
  9561. ],
  9562. "time": "2024-03-03T12:36:25+00:00"
  9563. }
  9564. ],
  9565. "aliases": [],
  9566. "minimum-stability": "stable",
  9567. "stability-flags": [],
  9568. "prefer-stable": true,
  9569. "prefer-lowest": false,
  9570. "platform": {
  9571. "php": "^8.2",
  9572. "ext-openssl": "*"
  9573. },
  9574. "platform-dev": [],
  9575. "plugin-api-version": "2.6.0"
  9576. }