Nav apraksta
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

composer.lock 436KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078
  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": "d4c6459f7ac996d75eb45ee96032efb8",
  8. "packages": [
  9. {
  10. "name": "aws/aws-crt-php",
  11. "version": "v1.2.7",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/awslabs/aws-crt-php.git",
  15. "reference": "d71d9906c7bb63a28295447ba12e74723bd3730e"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/d71d9906c7bb63a28295447ba12e74723bd3730e",
  20. "reference": "d71d9906c7bb63a28295447ba12e74723bd3730e",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": ">=5.5"
  25. },
  26. "require-dev": {
  27. "phpunit/phpunit": "^4.8.35||^5.6.3||^9.5",
  28. "yoast/phpunit-polyfills": "^1.0"
  29. },
  30. "suggest": {
  31. "ext-awscrt": "Make sure you install awscrt native extension to use any of the functionality."
  32. },
  33. "type": "library",
  34. "autoload": {
  35. "classmap": [
  36. "src/"
  37. ]
  38. },
  39. "notification-url": "https://packagist.org/downloads/",
  40. "license": [
  41. "Apache-2.0"
  42. ],
  43. "authors": [
  44. {
  45. "name": "AWS SDK Common Runtime Team",
  46. "email": "aws-sdk-common-runtime@amazon.com"
  47. }
  48. ],
  49. "description": "AWS Common Runtime for PHP",
  50. "homepage": "https://github.com/awslabs/aws-crt-php",
  51. "keywords": [
  52. "amazon",
  53. "aws",
  54. "crt",
  55. "sdk"
  56. ],
  57. "support": {
  58. "issues": "https://github.com/awslabs/aws-crt-php/issues",
  59. "source": "https://github.com/awslabs/aws-crt-php/tree/v1.2.7"
  60. },
  61. "time": "2024-10-18T22:15:13+00:00"
  62. },
  63. {
  64. "name": "aws/aws-php-sns-message-validator",
  65. "version": "1.10.2",
  66. "source": {
  67. "type": "git",
  68. "url": "https://github.com/aws/aws-php-sns-message-validator.git",
  69. "reference": "dc6abc2dfe30115f39c5196c7543b9509f511bb8"
  70. },
  71. "dist": {
  72. "type": "zip",
  73. "url": "https://api.github.com/repos/aws/aws-php-sns-message-validator/zipball/dc6abc2dfe30115f39c5196c7543b9509f511bb8",
  74. "reference": "dc6abc2dfe30115f39c5196c7543b9509f511bb8",
  75. "shasum": ""
  76. },
  77. "require": {
  78. "ext-openssl": "*",
  79. "php": ">=8.1",
  80. "psr/http-message": "^2.0"
  81. },
  82. "require-dev": {
  83. "guzzlehttp/psr7": "^2.4.5",
  84. "phpunit/phpunit": "^5.6.3 || ^8.5 || ^9.5",
  85. "squizlabs/php_codesniffer": "^2.8.1 || ^3.13.6",
  86. "yoast/phpunit-polyfills": "^1.0"
  87. },
  88. "type": "library",
  89. "autoload": {
  90. "psr-4": {
  91. "Aws\\Sns\\": "src/"
  92. }
  93. },
  94. "notification-url": "https://packagist.org/downloads/",
  95. "license": [
  96. "Apache-2.0"
  97. ],
  98. "authors": [
  99. {
  100. "name": "Amazon Web Services",
  101. "homepage": "http://aws.amazon.com"
  102. }
  103. ],
  104. "description": "Amazon SNS message validation for PHP",
  105. "homepage": "http://aws.amazon.com/sdkforphp",
  106. "keywords": [
  107. "SNS",
  108. "amazon",
  109. "aws",
  110. "cloud",
  111. "message",
  112. "sdk",
  113. "webhooks"
  114. ],
  115. "support": {
  116. "forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80",
  117. "issues": "https://github.com/aws/aws-sns-message-validator/issues",
  118. "source": "https://github.com/aws/aws-php-sns-message-validator/tree/1.10.2"
  119. },
  120. "time": "2026-09-03T15:26:29+00:00"
  121. },
  122. {
  123. "name": "aws/aws-sdk-php",
  124. "version": "3.394.9",
  125. "source": {
  126. "type": "git",
  127. "url": "https://github.com/aws/aws-sdk-php.git",
  128. "reference": "c5e7a247fa6aeac7355d5be88f38873480789c71"
  129. },
  130. "dist": {
  131. "type": "zip",
  132. "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/c5e7a247fa6aeac7355d5be88f38873480789c71",
  133. "reference": "c5e7a247fa6aeac7355d5be88f38873480789c71",
  134. "shasum": ""
  135. },
  136. "require": {
  137. "aws/aws-crt-php": "^1.2.3",
  138. "ext-json": "*",
  139. "ext-pcre": "*",
  140. "ext-simplexml": "*",
  141. "guzzlehttp/guzzle": "^7.8.2 || ^8.0",
  142. "guzzlehttp/promises": "^2.0.3 || ^3.0",
  143. "guzzlehttp/psr7": "^2.6.3 || ^3.0",
  144. "mtdowling/jmespath.php": "^2.9.1",
  145. "php": ">=8.1",
  146. "psr/http-message": "^1.0 || ^2.0",
  147. "symfony/filesystem": "^v5.4.45 || ^v6.4.3 || ^v7.1.0 || ^v8.0.0"
  148. },
  149. "require-dev": {
  150. "andrewsville/php-token-reflection": "^1.4",
  151. "aws/aws-php-sns-message-validator": "~1.0",
  152. "behat/behat": "~3.0",
  153. "composer/composer": "^2.7.8",
  154. "dms/phpunit-arraysubset-asserts": "^v0.5.0",
  155. "doctrine/cache": "~1.4",
  156. "ext-dom": "*",
  157. "ext-openssl": "*",
  158. "ext-sockets": "*",
  159. "phpunit/phpunit": "^10.0",
  160. "psr/cache": "^2.0 || ^3.0",
  161. "psr/simple-cache": "^2.0 || ^3.0",
  162. "sebastian/comparator": "^1.2.3 || ^4.0 || ^5.0",
  163. "yoast/phpunit-polyfills": "^2.0"
  164. },
  165. "suggest": {
  166. "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications",
  167. "doctrine/cache": "To use the DoctrineCacheAdapter",
  168. "ext-curl": "To send requests using cURL",
  169. "ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages",
  170. "ext-pcntl": "To use client-side monitoring",
  171. "ext-sockets": "To use client-side monitoring"
  172. },
  173. "type": "library",
  174. "extra": {
  175. "branch-alias": {
  176. "dev-master": "3.0-dev"
  177. }
  178. },
  179. "autoload": {
  180. "files": [
  181. "src/functions.php"
  182. ],
  183. "psr-4": {
  184. "Aws\\": "src/"
  185. },
  186. "exclude-from-classmap": [
  187. "src/data/"
  188. ]
  189. },
  190. "notification-url": "https://packagist.org/downloads/",
  191. "license": [
  192. "Apache-2.0"
  193. ],
  194. "authors": [
  195. {
  196. "name": "Amazon Web Services",
  197. "homepage": "https://aws.amazon.com"
  198. }
  199. ],
  200. "description": "AWS SDK for PHP - Use Amazon Web Services in your PHP project",
  201. "homepage": "https://aws.amazon.com/sdk-for-php",
  202. "keywords": [
  203. "amazon",
  204. "aws",
  205. "cloud",
  206. "dynamodb",
  207. "ec2",
  208. "glacier",
  209. "s3",
  210. "sdk"
  211. ],
  212. "support": {
  213. "forum": "https://github.com/aws/aws-sdk-php/discussions",
  214. "issues": "https://github.com/aws/aws-sdk-php/issues",
  215. "source": "https://github.com/aws/aws-sdk-php/tree/3.394.9"
  216. },
  217. "time": "2026-09-04T18:07:00+00:00"
  218. },
  219. {
  220. "name": "bacon/bacon-qr-code",
  221. "version": "v3.0.3",
  222. "source": {
  223. "type": "git",
  224. "url": "https://github.com/Bacon/BaconQrCode.git",
  225. "reference": "36a1cb2b81493fa5b82e50bf8068bf84d1542563"
  226. },
  227. "dist": {
  228. "type": "zip",
  229. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/36a1cb2b81493fa5b82e50bf8068bf84d1542563",
  230. "reference": "36a1cb2b81493fa5b82e50bf8068bf84d1542563",
  231. "shasum": ""
  232. },
  233. "require": {
  234. "dasprid/enum": "^1.0.3",
  235. "ext-iconv": "*",
  236. "php": "^8.1"
  237. },
  238. "require-dev": {
  239. "phly/keep-a-changelog": "^2.12",
  240. "phpunit/phpunit": "^10.5.11 || ^11.0.4",
  241. "spatie/phpunit-snapshot-assertions": "^5.1.5",
  242. "spatie/pixelmatch-php": "^1.2.0",
  243. "squizlabs/php_codesniffer": "^3.9"
  244. },
  245. "suggest": {
  246. "ext-imagick": "to generate QR code images"
  247. },
  248. "type": "library",
  249. "autoload": {
  250. "psr-4": {
  251. "BaconQrCode\\": "src/"
  252. }
  253. },
  254. "notification-url": "https://packagist.org/downloads/",
  255. "license": [
  256. "BSD-2-Clause"
  257. ],
  258. "authors": [
  259. {
  260. "name": "Ben Scholzen 'DASPRiD'",
  261. "email": "mail@dasprids.de",
  262. "homepage": "https://dasprids.de/",
  263. "role": "Developer"
  264. }
  265. ],
  266. "description": "BaconQrCode is a QR code generator for PHP.",
  267. "homepage": "https://github.com/Bacon/BaconQrCode",
  268. "support": {
  269. "issues": "https://github.com/Bacon/BaconQrCode/issues",
  270. "source": "https://github.com/Bacon/BaconQrCode/tree/v3.0.3"
  271. },
  272. "time": "2025-11-19T17:15:36+00:00"
  273. },
  274. {
  275. "name": "barryvdh/laravel-dompdf",
  276. "version": "v3.1.1",
  277. "source": {
  278. "type": "git",
  279. "url": "https://github.com/barryvdh/laravel-dompdf.git",
  280. "reference": "8e71b99fc53bb8eb77f316c3c452dd74ab7cb25d"
  281. },
  282. "dist": {
  283. "type": "zip",
  284. "url": "https://api.github.com/repos/barryvdh/laravel-dompdf/zipball/8e71b99fc53bb8eb77f316c3c452dd74ab7cb25d",
  285. "reference": "8e71b99fc53bb8eb77f316c3c452dd74ab7cb25d",
  286. "shasum": ""
  287. },
  288. "require": {
  289. "dompdf/dompdf": "^3.0",
  290. "illuminate/support": "^9|^10|^11|^12",
  291. "php": "^8.1"
  292. },
  293. "require-dev": {
  294. "larastan/larastan": "^2.7|^3.0",
  295. "orchestra/testbench": "^7|^8|^9|^10",
  296. "phpro/grumphp": "^2.5",
  297. "squizlabs/php_codesniffer": "^3.5"
  298. },
  299. "type": "library",
  300. "extra": {
  301. "laravel": {
  302. "aliases": {
  303. "PDF": "Barryvdh\\DomPDF\\Facade\\Pdf",
  304. "Pdf": "Barryvdh\\DomPDF\\Facade\\Pdf"
  305. },
  306. "providers": [
  307. "Barryvdh\\DomPDF\\ServiceProvider"
  308. ]
  309. },
  310. "branch-alias": {
  311. "dev-master": "3.0-dev"
  312. }
  313. },
  314. "autoload": {
  315. "psr-4": {
  316. "Barryvdh\\DomPDF\\": "src"
  317. }
  318. },
  319. "notification-url": "https://packagist.org/downloads/",
  320. "license": [
  321. "MIT"
  322. ],
  323. "authors": [
  324. {
  325. "name": "Barry vd. Heuvel",
  326. "email": "barryvdh@gmail.com"
  327. }
  328. ],
  329. "description": "A DOMPDF Wrapper for Laravel",
  330. "keywords": [
  331. "dompdf",
  332. "laravel",
  333. "pdf"
  334. ],
  335. "support": {
  336. "issues": "https://github.com/barryvdh/laravel-dompdf/issues",
  337. "source": "https://github.com/barryvdh/laravel-dompdf/tree/v3.1.1"
  338. },
  339. "funding": [
  340. {
  341. "url": "https://fruitcake.nl",
  342. "type": "custom"
  343. },
  344. {
  345. "url": "https://github.com/barryvdh",
  346. "type": "github"
  347. }
  348. ],
  349. "time": "2025-02-13T15:07:54+00:00"
  350. },
  351. {
  352. "name": "brick/math",
  353. "version": "0.14.1",
  354. "source": {
  355. "type": "git",
  356. "url": "https://github.com/brick/math.git",
  357. "reference": "f05858549e5f9d7bb45875a75583240a38a281d0"
  358. },
  359. "dist": {
  360. "type": "zip",
  361. "url": "https://api.github.com/repos/brick/math/zipball/f05858549e5f9d7bb45875a75583240a38a281d0",
  362. "reference": "f05858549e5f9d7bb45875a75583240a38a281d0",
  363. "shasum": ""
  364. },
  365. "require": {
  366. "php": "^8.2"
  367. },
  368. "require-dev": {
  369. "php-coveralls/php-coveralls": "^2.2",
  370. "phpstan/phpstan": "2.1.22",
  371. "phpunit/phpunit": "^11.5"
  372. },
  373. "type": "library",
  374. "autoload": {
  375. "psr-4": {
  376. "Brick\\Math\\": "src/"
  377. }
  378. },
  379. "notification-url": "https://packagist.org/downloads/",
  380. "license": [
  381. "MIT"
  382. ],
  383. "description": "Arbitrary-precision arithmetic library",
  384. "keywords": [
  385. "Arbitrary-precision",
  386. "BigInteger",
  387. "BigRational",
  388. "arithmetic",
  389. "bigdecimal",
  390. "bignum",
  391. "bignumber",
  392. "brick",
  393. "decimal",
  394. "integer",
  395. "math",
  396. "mathematics",
  397. "rational"
  398. ],
  399. "support": {
  400. "issues": "https://github.com/brick/math/issues",
  401. "source": "https://github.com/brick/math/tree/0.14.1"
  402. },
  403. "funding": [
  404. {
  405. "url": "https://github.com/BenMorel",
  406. "type": "github"
  407. }
  408. ],
  409. "time": "2025-11-24T14:40:29+00:00"
  410. },
  411. {
  412. "name": "carbonphp/carbon-doctrine-types",
  413. "version": "3.2.0",
  414. "source": {
  415. "type": "git",
  416. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  417. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  418. },
  419. "dist": {
  420. "type": "zip",
  421. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  422. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  423. "shasum": ""
  424. },
  425. "require": {
  426. "php": "^8.1"
  427. },
  428. "conflict": {
  429. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  430. },
  431. "require-dev": {
  432. "doctrine/dbal": "^4.0.0",
  433. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  434. "phpunit/phpunit": "^10.3"
  435. },
  436. "type": "library",
  437. "autoload": {
  438. "psr-4": {
  439. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  440. }
  441. },
  442. "notification-url": "https://packagist.org/downloads/",
  443. "license": [
  444. "MIT"
  445. ],
  446. "authors": [
  447. {
  448. "name": "KyleKatarn",
  449. "email": "kylekatarnls@gmail.com"
  450. }
  451. ],
  452. "description": "Types to use Carbon in Doctrine",
  453. "keywords": [
  454. "carbon",
  455. "date",
  456. "datetime",
  457. "doctrine",
  458. "time"
  459. ],
  460. "support": {
  461. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  462. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  463. },
  464. "funding": [
  465. {
  466. "url": "https://github.com/kylekatarnls",
  467. "type": "github"
  468. },
  469. {
  470. "url": "https://opencollective.com/Carbon",
  471. "type": "open_collective"
  472. },
  473. {
  474. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  475. "type": "tidelift"
  476. }
  477. ],
  478. "time": "2024-02-09T16:56:22+00:00"
  479. },
  480. {
  481. "name": "composer/pcre",
  482. "version": "3.3.2",
  483. "source": {
  484. "type": "git",
  485. "url": "https://github.com/composer/pcre.git",
  486. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e"
  487. },
  488. "dist": {
  489. "type": "zip",
  490. "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  491. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  492. "shasum": ""
  493. },
  494. "require": {
  495. "php": "^7.4 || ^8.0"
  496. },
  497. "conflict": {
  498. "phpstan/phpstan": "<1.11.10"
  499. },
  500. "require-dev": {
  501. "phpstan/phpstan": "^1.12 || ^2",
  502. "phpstan/phpstan-strict-rules": "^1 || ^2",
  503. "phpunit/phpunit": "^8 || ^9"
  504. },
  505. "type": "library",
  506. "extra": {
  507. "phpstan": {
  508. "includes": [
  509. "extension.neon"
  510. ]
  511. },
  512. "branch-alias": {
  513. "dev-main": "3.x-dev"
  514. }
  515. },
  516. "autoload": {
  517. "psr-4": {
  518. "Composer\\Pcre\\": "src"
  519. }
  520. },
  521. "notification-url": "https://packagist.org/downloads/",
  522. "license": [
  523. "MIT"
  524. ],
  525. "authors": [
  526. {
  527. "name": "Jordi Boggiano",
  528. "email": "j.boggiano@seld.be",
  529. "homepage": "http://seld.be"
  530. }
  531. ],
  532. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  533. "keywords": [
  534. "PCRE",
  535. "preg",
  536. "regex",
  537. "regular expression"
  538. ],
  539. "support": {
  540. "issues": "https://github.com/composer/pcre/issues",
  541. "source": "https://github.com/composer/pcre/tree/3.3.2"
  542. },
  543. "funding": [
  544. {
  545. "url": "https://packagist.com",
  546. "type": "custom"
  547. },
  548. {
  549. "url": "https://github.com/composer",
  550. "type": "github"
  551. },
  552. {
  553. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  554. "type": "tidelift"
  555. }
  556. ],
  557. "time": "2024-11-12T16:29:46+00:00"
  558. },
  559. {
  560. "name": "cweagans/composer-patches",
  561. "version": "1.7.3",
  562. "source": {
  563. "type": "git",
  564. "url": "https://github.com/cweagans/composer-patches.git",
  565. "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db"
  566. },
  567. "dist": {
  568. "type": "zip",
  569. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/e190d4466fe2b103a55467dfa83fc2fecfcaf2db",
  570. "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db",
  571. "shasum": ""
  572. },
  573. "require": {
  574. "composer-plugin-api": "^1.0 || ^2.0",
  575. "php": ">=5.3.0"
  576. },
  577. "require-dev": {
  578. "composer/composer": "~1.0 || ~2.0",
  579. "phpunit/phpunit": "~4.6"
  580. },
  581. "type": "composer-plugin",
  582. "extra": {
  583. "class": "cweagans\\Composer\\Patches"
  584. },
  585. "autoload": {
  586. "psr-4": {
  587. "cweagans\\Composer\\": "src"
  588. }
  589. },
  590. "notification-url": "https://packagist.org/downloads/",
  591. "license": [
  592. "BSD-3-Clause"
  593. ],
  594. "authors": [
  595. {
  596. "name": "Cameron Eagans",
  597. "email": "me@cweagans.net"
  598. }
  599. ],
  600. "description": "Provides a way to patch Composer packages.",
  601. "support": {
  602. "issues": "https://github.com/cweagans/composer-patches/issues",
  603. "source": "https://github.com/cweagans/composer-patches/tree/1.7.3"
  604. },
  605. "time": "2022-12-20T22:53:13+00:00"
  606. },
  607. {
  608. "name": "dasprid/enum",
  609. "version": "1.0.7",
  610. "source": {
  611. "type": "git",
  612. "url": "https://github.com/DASPRiD/Enum.git",
  613. "reference": "b5874fa9ed0043116c72162ec7f4fb50e02e7cce"
  614. },
  615. "dist": {
  616. "type": "zip",
  617. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/b5874fa9ed0043116c72162ec7f4fb50e02e7cce",
  618. "reference": "b5874fa9ed0043116c72162ec7f4fb50e02e7cce",
  619. "shasum": ""
  620. },
  621. "require": {
  622. "php": ">=7.1 <9.0"
  623. },
  624. "require-dev": {
  625. "phpunit/phpunit": "^7 || ^8 || ^9 || ^10 || ^11",
  626. "squizlabs/php_codesniffer": "*"
  627. },
  628. "type": "library",
  629. "autoload": {
  630. "psr-4": {
  631. "DASPRiD\\Enum\\": "src/"
  632. }
  633. },
  634. "notification-url": "https://packagist.org/downloads/",
  635. "license": [
  636. "BSD-2-Clause"
  637. ],
  638. "authors": [
  639. {
  640. "name": "Ben Scholzen 'DASPRiD'",
  641. "email": "mail@dasprids.de",
  642. "homepage": "https://dasprids.de/",
  643. "role": "Developer"
  644. }
  645. ],
  646. "description": "PHP 7.1 enum implementation",
  647. "keywords": [
  648. "enum",
  649. "map"
  650. ],
  651. "support": {
  652. "issues": "https://github.com/DASPRiD/Enum/issues",
  653. "source": "https://github.com/DASPRiD/Enum/tree/1.0.7"
  654. },
  655. "time": "2025-09-16T12:23:56+00:00"
  656. },
  657. {
  658. "name": "dflydev/dot-access-data",
  659. "version": "v3.0.3",
  660. "source": {
  661. "type": "git",
  662. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  663. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  664. },
  665. "dist": {
  666. "type": "zip",
  667. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  668. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  669. "shasum": ""
  670. },
  671. "require": {
  672. "php": "^7.1 || ^8.0"
  673. },
  674. "require-dev": {
  675. "phpstan/phpstan": "^0.12.42",
  676. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  677. "scrutinizer/ocular": "1.6.0",
  678. "squizlabs/php_codesniffer": "^3.5",
  679. "vimeo/psalm": "^4.0.0"
  680. },
  681. "type": "library",
  682. "extra": {
  683. "branch-alias": {
  684. "dev-main": "3.x-dev"
  685. }
  686. },
  687. "autoload": {
  688. "psr-4": {
  689. "Dflydev\\DotAccessData\\": "src/"
  690. }
  691. },
  692. "notification-url": "https://packagist.org/downloads/",
  693. "license": [
  694. "MIT"
  695. ],
  696. "authors": [
  697. {
  698. "name": "Dragonfly Development Inc.",
  699. "email": "info@dflydev.com",
  700. "homepage": "http://dflydev.com"
  701. },
  702. {
  703. "name": "Beau Simensen",
  704. "email": "beau@dflydev.com",
  705. "homepage": "http://beausimensen.com"
  706. },
  707. {
  708. "name": "Carlos Frutos",
  709. "email": "carlos@kiwing.it",
  710. "homepage": "https://github.com/cfrutos"
  711. },
  712. {
  713. "name": "Colin O'Dell",
  714. "email": "colinodell@gmail.com",
  715. "homepage": "https://www.colinodell.com"
  716. }
  717. ],
  718. "description": "Given a deep data structure, access data by dot notation.",
  719. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  720. "keywords": [
  721. "access",
  722. "data",
  723. "dot",
  724. "notation"
  725. ],
  726. "support": {
  727. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  728. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  729. },
  730. "time": "2024-07-08T12:26:09+00:00"
  731. },
  732. {
  733. "name": "doctrine/inflector",
  734. "version": "2.1.0",
  735. "source": {
  736. "type": "git",
  737. "url": "https://github.com/doctrine/inflector.git",
  738. "reference": "6d6c96277ea252fc1304627204c3d5e6e15faa3b"
  739. },
  740. "dist": {
  741. "type": "zip",
  742. "url": "https://api.github.com/repos/doctrine/inflector/zipball/6d6c96277ea252fc1304627204c3d5e6e15faa3b",
  743. "reference": "6d6c96277ea252fc1304627204c3d5e6e15faa3b",
  744. "shasum": ""
  745. },
  746. "require": {
  747. "php": "^7.2 || ^8.0"
  748. },
  749. "require-dev": {
  750. "doctrine/coding-standard": "^12.0 || ^13.0",
  751. "phpstan/phpstan": "^1.12 || ^2.0",
  752. "phpstan/phpstan-phpunit": "^1.4 || ^2.0",
  753. "phpstan/phpstan-strict-rules": "^1.6 || ^2.0",
  754. "phpunit/phpunit": "^8.5 || ^12.2"
  755. },
  756. "type": "library",
  757. "autoload": {
  758. "psr-4": {
  759. "Doctrine\\Inflector\\": "src"
  760. }
  761. },
  762. "notification-url": "https://packagist.org/downloads/",
  763. "license": [
  764. "MIT"
  765. ],
  766. "authors": [
  767. {
  768. "name": "Guilherme Blanco",
  769. "email": "guilhermeblanco@gmail.com"
  770. },
  771. {
  772. "name": "Roman Borschel",
  773. "email": "roman@code-factory.org"
  774. },
  775. {
  776. "name": "Benjamin Eberlei",
  777. "email": "kontakt@beberlei.de"
  778. },
  779. {
  780. "name": "Jonathan Wage",
  781. "email": "jonwage@gmail.com"
  782. },
  783. {
  784. "name": "Johannes Schmitt",
  785. "email": "schmittjoh@gmail.com"
  786. }
  787. ],
  788. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  789. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  790. "keywords": [
  791. "inflection",
  792. "inflector",
  793. "lowercase",
  794. "manipulation",
  795. "php",
  796. "plural",
  797. "singular",
  798. "strings",
  799. "uppercase",
  800. "words"
  801. ],
  802. "support": {
  803. "issues": "https://github.com/doctrine/inflector/issues",
  804. "source": "https://github.com/doctrine/inflector/tree/2.1.0"
  805. },
  806. "funding": [
  807. {
  808. "url": "https://www.doctrine-project.org/sponsorship.html",
  809. "type": "custom"
  810. },
  811. {
  812. "url": "https://www.patreon.com/phpdoctrine",
  813. "type": "patreon"
  814. },
  815. {
  816. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  817. "type": "tidelift"
  818. }
  819. ],
  820. "time": "2025-08-10T19:31:58+00:00"
  821. },
  822. {
  823. "name": "doctrine/lexer",
  824. "version": "3.0.1",
  825. "source": {
  826. "type": "git",
  827. "url": "https://github.com/doctrine/lexer.git",
  828. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  829. },
  830. "dist": {
  831. "type": "zip",
  832. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  833. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  834. "shasum": ""
  835. },
  836. "require": {
  837. "php": "^8.1"
  838. },
  839. "require-dev": {
  840. "doctrine/coding-standard": "^12",
  841. "phpstan/phpstan": "^1.10",
  842. "phpunit/phpunit": "^10.5",
  843. "psalm/plugin-phpunit": "^0.18.3",
  844. "vimeo/psalm": "^5.21"
  845. },
  846. "type": "library",
  847. "autoload": {
  848. "psr-4": {
  849. "Doctrine\\Common\\Lexer\\": "src"
  850. }
  851. },
  852. "notification-url": "https://packagist.org/downloads/",
  853. "license": [
  854. "MIT"
  855. ],
  856. "authors": [
  857. {
  858. "name": "Guilherme Blanco",
  859. "email": "guilhermeblanco@gmail.com"
  860. },
  861. {
  862. "name": "Roman Borschel",
  863. "email": "roman@code-factory.org"
  864. },
  865. {
  866. "name": "Johannes Schmitt",
  867. "email": "schmittjoh@gmail.com"
  868. }
  869. ],
  870. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  871. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  872. "keywords": [
  873. "annotations",
  874. "docblock",
  875. "lexer",
  876. "parser",
  877. "php"
  878. ],
  879. "support": {
  880. "issues": "https://github.com/doctrine/lexer/issues",
  881. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  882. },
  883. "funding": [
  884. {
  885. "url": "https://www.doctrine-project.org/sponsorship.html",
  886. "type": "custom"
  887. },
  888. {
  889. "url": "https://www.patreon.com/phpdoctrine",
  890. "type": "patreon"
  891. },
  892. {
  893. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  894. "type": "tidelift"
  895. }
  896. ],
  897. "time": "2024-02-05T11:56:58+00:00"
  898. },
  899. {
  900. "name": "dompdf/dompdf",
  901. "version": "v3.1.4",
  902. "source": {
  903. "type": "git",
  904. "url": "https://github.com/dompdf/dompdf.git",
  905. "reference": "db712c90c5b9868df3600e64e68da62e78a34623"
  906. },
  907. "dist": {
  908. "type": "zip",
  909. "url": "https://api.github.com/repos/dompdf/dompdf/zipball/db712c90c5b9868df3600e64e68da62e78a34623",
  910. "reference": "db712c90c5b9868df3600e64e68da62e78a34623",
  911. "shasum": ""
  912. },
  913. "require": {
  914. "dompdf/php-font-lib": "^1.0.0",
  915. "dompdf/php-svg-lib": "^1.0.0",
  916. "ext-dom": "*",
  917. "ext-mbstring": "*",
  918. "masterminds/html5": "^2.0",
  919. "php": "^7.1 || ^8.0"
  920. },
  921. "require-dev": {
  922. "ext-gd": "*",
  923. "ext-json": "*",
  924. "ext-zip": "*",
  925. "mockery/mockery": "^1.3",
  926. "phpunit/phpunit": "^7.5 || ^8 || ^9 || ^10 || ^11",
  927. "squizlabs/php_codesniffer": "^3.5",
  928. "symfony/process": "^4.4 || ^5.4 || ^6.2 || ^7.0"
  929. },
  930. "suggest": {
  931. "ext-gd": "Needed to process images",
  932. "ext-gmagick": "Improves image processing performance",
  933. "ext-imagick": "Improves image processing performance",
  934. "ext-zlib": "Needed for pdf stream compression"
  935. },
  936. "type": "library",
  937. "autoload": {
  938. "psr-4": {
  939. "Dompdf\\": "src/"
  940. },
  941. "classmap": [
  942. "lib/"
  943. ]
  944. },
  945. "notification-url": "https://packagist.org/downloads/",
  946. "license": [
  947. "LGPL-2.1"
  948. ],
  949. "authors": [
  950. {
  951. "name": "The Dompdf Community",
  952. "homepage": "https://github.com/dompdf/dompdf/blob/master/AUTHORS.md"
  953. }
  954. ],
  955. "description": "DOMPDF is a CSS 2.1 compliant HTML to PDF converter",
  956. "homepage": "https://github.com/dompdf/dompdf",
  957. "support": {
  958. "issues": "https://github.com/dompdf/dompdf/issues",
  959. "source": "https://github.com/dompdf/dompdf/tree/v3.1.4"
  960. },
  961. "time": "2025-10-29T12:43:30+00:00"
  962. },
  963. {
  964. "name": "dompdf/php-font-lib",
  965. "version": "1.0.1",
  966. "source": {
  967. "type": "git",
  968. "url": "https://github.com/dompdf/php-font-lib.git",
  969. "reference": "6137b7d4232b7f16c882c75e4ca3991dbcf6fe2d"
  970. },
  971. "dist": {
  972. "type": "zip",
  973. "url": "https://api.github.com/repos/dompdf/php-font-lib/zipball/6137b7d4232b7f16c882c75e4ca3991dbcf6fe2d",
  974. "reference": "6137b7d4232b7f16c882c75e4ca3991dbcf6fe2d",
  975. "shasum": ""
  976. },
  977. "require": {
  978. "ext-mbstring": "*",
  979. "php": "^7.1 || ^8.0"
  980. },
  981. "require-dev": {
  982. "symfony/phpunit-bridge": "^3 || ^4 || ^5 || ^6"
  983. },
  984. "type": "library",
  985. "autoload": {
  986. "psr-4": {
  987. "FontLib\\": "src/FontLib"
  988. }
  989. },
  990. "notification-url": "https://packagist.org/downloads/",
  991. "license": [
  992. "LGPL-2.1-or-later"
  993. ],
  994. "authors": [
  995. {
  996. "name": "The FontLib Community",
  997. "homepage": "https://github.com/dompdf/php-font-lib/blob/master/AUTHORS.md"
  998. }
  999. ],
  1000. "description": "A library to read, parse, export and make subsets of different types of font files.",
  1001. "homepage": "https://github.com/dompdf/php-font-lib",
  1002. "support": {
  1003. "issues": "https://github.com/dompdf/php-font-lib/issues",
  1004. "source": "https://github.com/dompdf/php-font-lib/tree/1.0.1"
  1005. },
  1006. "time": "2024-12-02T14:37:59+00:00"
  1007. },
  1008. {
  1009. "name": "dompdf/php-svg-lib",
  1010. "version": "1.0.2",
  1011. "source": {
  1012. "type": "git",
  1013. "url": "https://github.com/dompdf/php-svg-lib.git",
  1014. "reference": "8259ffb930817e72b1ff1caef5d226501f3dfeb1"
  1015. },
  1016. "dist": {
  1017. "type": "zip",
  1018. "url": "https://api.github.com/repos/dompdf/php-svg-lib/zipball/8259ffb930817e72b1ff1caef5d226501f3dfeb1",
  1019. "reference": "8259ffb930817e72b1ff1caef5d226501f3dfeb1",
  1020. "shasum": ""
  1021. },
  1022. "require": {
  1023. "ext-mbstring": "*",
  1024. "php": "^7.1 || ^8.0",
  1025. "sabberworm/php-css-parser": "^8.4 || ^9.0"
  1026. },
  1027. "require-dev": {
  1028. "phpunit/phpunit": "^7.5 || ^8 || ^9 || ^10 || ^11"
  1029. },
  1030. "type": "library",
  1031. "autoload": {
  1032. "psr-4": {
  1033. "Svg\\": "src/Svg"
  1034. }
  1035. },
  1036. "notification-url": "https://packagist.org/downloads/",
  1037. "license": [
  1038. "LGPL-3.0-or-later"
  1039. ],
  1040. "authors": [
  1041. {
  1042. "name": "The SvgLib Community",
  1043. "homepage": "https://github.com/dompdf/php-svg-lib/blob/master/AUTHORS.md"
  1044. }
  1045. ],
  1046. "description": "A library to read, parse and export to PDF SVG files.",
  1047. "homepage": "https://github.com/dompdf/php-svg-lib",
  1048. "support": {
  1049. "issues": "https://github.com/dompdf/php-svg-lib/issues",
  1050. "source": "https://github.com/dompdf/php-svg-lib/tree/1.0.2"
  1051. },
  1052. "time": "2026-01-02T16:01:13+00:00"
  1053. },
  1054. {
  1055. "name": "dragonmantank/cron-expression",
  1056. "version": "v3.6.0",
  1057. "source": {
  1058. "type": "git",
  1059. "url": "https://github.com/dragonmantank/cron-expression.git",
  1060. "reference": "d61a8a9604ec1f8c3d150d09db6ce98b32675013"
  1061. },
  1062. "dist": {
  1063. "type": "zip",
  1064. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/d61a8a9604ec1f8c3d150d09db6ce98b32675013",
  1065. "reference": "d61a8a9604ec1f8c3d150d09db6ce98b32675013",
  1066. "shasum": ""
  1067. },
  1068. "require": {
  1069. "php": "^8.2|^8.3|^8.4|^8.5"
  1070. },
  1071. "replace": {
  1072. "mtdowling/cron-expression": "^1.0"
  1073. },
  1074. "require-dev": {
  1075. "phpstan/extension-installer": "^1.4.3",
  1076. "phpstan/phpstan": "^1.12.32|^2.1.31",
  1077. "phpunit/phpunit": "^8.5.48|^9.0"
  1078. },
  1079. "type": "library",
  1080. "extra": {
  1081. "branch-alias": {
  1082. "dev-master": "3.x-dev"
  1083. }
  1084. },
  1085. "autoload": {
  1086. "psr-4": {
  1087. "Cron\\": "src/Cron/"
  1088. }
  1089. },
  1090. "notification-url": "https://packagist.org/downloads/",
  1091. "license": [
  1092. "MIT"
  1093. ],
  1094. "authors": [
  1095. {
  1096. "name": "Chris Tankersley",
  1097. "email": "chris@ctankersley.com",
  1098. "homepage": "https://github.com/dragonmantank"
  1099. }
  1100. ],
  1101. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1102. "keywords": [
  1103. "cron",
  1104. "schedule"
  1105. ],
  1106. "support": {
  1107. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  1108. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.6.0"
  1109. },
  1110. "funding": [
  1111. {
  1112. "url": "https://github.com/dragonmantank",
  1113. "type": "github"
  1114. }
  1115. ],
  1116. "time": "2025-10-31T18:51:33+00:00"
  1117. },
  1118. {
  1119. "name": "egulias/email-validator",
  1120. "version": "4.0.4",
  1121. "source": {
  1122. "type": "git",
  1123. "url": "https://github.com/egulias/EmailValidator.git",
  1124. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa"
  1125. },
  1126. "dist": {
  1127. "type": "zip",
  1128. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  1129. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  1130. "shasum": ""
  1131. },
  1132. "require": {
  1133. "doctrine/lexer": "^2.0 || ^3.0",
  1134. "php": ">=8.1",
  1135. "symfony/polyfill-intl-idn": "^1.26"
  1136. },
  1137. "require-dev": {
  1138. "phpunit/phpunit": "^10.2",
  1139. "vimeo/psalm": "^5.12"
  1140. },
  1141. "suggest": {
  1142. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1143. },
  1144. "type": "library",
  1145. "extra": {
  1146. "branch-alias": {
  1147. "dev-master": "4.0.x-dev"
  1148. }
  1149. },
  1150. "autoload": {
  1151. "psr-4": {
  1152. "Egulias\\EmailValidator\\": "src"
  1153. }
  1154. },
  1155. "notification-url": "https://packagist.org/downloads/",
  1156. "license": [
  1157. "MIT"
  1158. ],
  1159. "authors": [
  1160. {
  1161. "name": "Eduardo Gulias Davis"
  1162. }
  1163. ],
  1164. "description": "A library for validating emails against several RFCs",
  1165. "homepage": "https://github.com/egulias/EmailValidator",
  1166. "keywords": [
  1167. "email",
  1168. "emailvalidation",
  1169. "emailvalidator",
  1170. "validation",
  1171. "validator"
  1172. ],
  1173. "support": {
  1174. "issues": "https://github.com/egulias/EmailValidator/issues",
  1175. "source": "https://github.com/egulias/EmailValidator/tree/4.0.4"
  1176. },
  1177. "funding": [
  1178. {
  1179. "url": "https://github.com/egulias",
  1180. "type": "github"
  1181. }
  1182. ],
  1183. "time": "2025-03-06T22:45:56+00:00"
  1184. },
  1185. {
  1186. "name": "elibyy/tcpdf-laravel",
  1187. "version": "11.5.0",
  1188. "source": {
  1189. "type": "git",
  1190. "url": "https://github.com/elibyy/tcpdf-laravel.git",
  1191. "reference": "25d076d5f50eef9702dfa1ae889b1a599250f951"
  1192. },
  1193. "dist": {
  1194. "type": "zip",
  1195. "url": "https://api.github.com/repos/elibyy/tcpdf-laravel/zipball/25d076d5f50eef9702dfa1ae889b1a599250f951",
  1196. "reference": "25d076d5f50eef9702dfa1ae889b1a599250f951",
  1197. "shasum": ""
  1198. },
  1199. "require": {
  1200. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  1201. "tecnickcom/tcpdf": "6.2.*|6.3.*|6.4.*|6.5.*|6.6.*|6.7.*|6.8.*|6.9.*|6.10.*|dev-main"
  1202. },
  1203. "type": "library",
  1204. "extra": {
  1205. "laravel": {
  1206. "aliases": {
  1207. "PDF": "Elibyy\\TCPDF\\Facades\\TCPDF"
  1208. },
  1209. "providers": [
  1210. "Elibyy\\TCPDF\\ServiceProvider"
  1211. ]
  1212. }
  1213. },
  1214. "autoload": {
  1215. "psr-4": {
  1216. "Elibyy\\TCPDF\\": "src/"
  1217. }
  1218. },
  1219. "notification-url": "https://packagist.org/downloads/",
  1220. "license": [
  1221. "MIT"
  1222. ],
  1223. "authors": [
  1224. {
  1225. "name": "eli y",
  1226. "email": "elibyy@gmail.com"
  1227. }
  1228. ],
  1229. "description": "tcpdf support for Laravel 6, 7, 8, 9, 10, 11",
  1230. "keywords": [
  1231. "TCPDF",
  1232. "laravel",
  1233. "pdf"
  1234. ],
  1235. "support": {
  1236. "issues": "https://github.com/elibyy/tcpdf-laravel/issues",
  1237. "source": "https://github.com/elibyy/tcpdf-laravel/tree/11.5.0"
  1238. },
  1239. "time": "2025-06-06T08:27:48+00:00"
  1240. },
  1241. {
  1242. "name": "fruitcake/php-cors",
  1243. "version": "v1.4.0",
  1244. "source": {
  1245. "type": "git",
  1246. "url": "https://github.com/fruitcake/php-cors.git",
  1247. "reference": "38aaa6c3fd4c157ffe2a4d10aa8b9b16ba8de379"
  1248. },
  1249. "dist": {
  1250. "type": "zip",
  1251. "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/38aaa6c3fd4c157ffe2a4d10aa8b9b16ba8de379",
  1252. "reference": "38aaa6c3fd4c157ffe2a4d10aa8b9b16ba8de379",
  1253. "shasum": ""
  1254. },
  1255. "require": {
  1256. "php": "^8.1",
  1257. "symfony/http-foundation": "^5.4|^6.4|^7.3|^8"
  1258. },
  1259. "require-dev": {
  1260. "phpstan/phpstan": "^2",
  1261. "phpunit/phpunit": "^9",
  1262. "squizlabs/php_codesniffer": "^4"
  1263. },
  1264. "type": "library",
  1265. "extra": {
  1266. "branch-alias": {
  1267. "dev-master": "1.3-dev"
  1268. }
  1269. },
  1270. "autoload": {
  1271. "psr-4": {
  1272. "Fruitcake\\Cors\\": "src/"
  1273. }
  1274. },
  1275. "notification-url": "https://packagist.org/downloads/",
  1276. "license": [
  1277. "MIT"
  1278. ],
  1279. "authors": [
  1280. {
  1281. "name": "Fruitcake",
  1282. "homepage": "https://fruitcake.nl"
  1283. },
  1284. {
  1285. "name": "Barryvdh",
  1286. "email": "barryvdh@gmail.com"
  1287. }
  1288. ],
  1289. "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
  1290. "homepage": "https://github.com/fruitcake/php-cors",
  1291. "keywords": [
  1292. "cors",
  1293. "laravel",
  1294. "symfony"
  1295. ],
  1296. "support": {
  1297. "issues": "https://github.com/fruitcake/php-cors/issues",
  1298. "source": "https://github.com/fruitcake/php-cors/tree/v1.4.0"
  1299. },
  1300. "funding": [
  1301. {
  1302. "url": "https://fruitcake.nl",
  1303. "type": "custom"
  1304. },
  1305. {
  1306. "url": "https://github.com/barryvdh",
  1307. "type": "github"
  1308. }
  1309. ],
  1310. "time": "2025-12-03T09:33:47+00:00"
  1311. },
  1312. {
  1313. "name": "giggsey/libphonenumber-for-php-lite",
  1314. "version": "9.0.36",
  1315. "source": {
  1316. "type": "git",
  1317. "url": "https://github.com/giggsey/libphonenumber-for-php-lite.git",
  1318. "reference": "f21237b7df458b326cd5b1bac44d64cc7b1dcb2f"
  1319. },
  1320. "dist": {
  1321. "type": "zip",
  1322. "url": "https://api.github.com/repos/giggsey/libphonenumber-for-php-lite/zipball/f21237b7df458b326cd5b1bac44d64cc7b1dcb2f",
  1323. "reference": "f21237b7df458b326cd5b1bac44d64cc7b1dcb2f",
  1324. "shasum": ""
  1325. },
  1326. "require": {
  1327. "php": "^8.1",
  1328. "symfony/polyfill-mbstring": "^1.17"
  1329. },
  1330. "conflict": {
  1331. "giggsey/libphonenumber-for-php": "*"
  1332. },
  1333. "require-dev": {
  1334. "ext-dom": "*",
  1335. "friendsofphp/php-cs-fixer": "^3.71",
  1336. "infection/infection": "^0.29|^0.31.0",
  1337. "nette/php-generator": "^4.1",
  1338. "php-coveralls/php-coveralls": "^2.7",
  1339. "phpstan/extension-installer": "^1.4.3",
  1340. "phpstan/phpstan": "^2.1.7",
  1341. "phpstan/phpstan-deprecation-rules": "^2.0.1",
  1342. "phpstan/phpstan-phpunit": "^2.0.4",
  1343. "phpstan/phpstan-strict-rules": "^2.0.3",
  1344. "phpunit/phpunit": "^10.5.45",
  1345. "symfony/console": "^6.4",
  1346. "symfony/filesystem": "^6.4",
  1347. "symfony/process": "^6.4"
  1348. },
  1349. "suggest": {
  1350. "giggsey/libphonenumber-for-php": "Use libphonenumber-for-php for geocoding, carriers, timezones and matching"
  1351. },
  1352. "type": "library",
  1353. "extra": {
  1354. "branch-alias": {
  1355. "dev-master": "9.x-dev"
  1356. }
  1357. },
  1358. "autoload": {
  1359. "psr-4": {
  1360. "libphonenumber\\": "src/"
  1361. }
  1362. },
  1363. "notification-url": "https://packagist.org/downloads/",
  1364. "license": [
  1365. "Apache-2.0"
  1366. ],
  1367. "authors": [
  1368. {
  1369. "name": "Joshua Gigg",
  1370. "email": "giggsey@gmail.com",
  1371. "homepage": "https://giggsey.com/"
  1372. }
  1373. ],
  1374. "description": "A lite version of giggsey/libphonenumber-for-php, which is a PHP Port of Google's libphonenumber",
  1375. "homepage": "https://github.com/giggsey/libphonenumber-for-php-lite",
  1376. "keywords": [
  1377. "geocoding",
  1378. "geolocation",
  1379. "libphonenumber",
  1380. "mobile",
  1381. "phonenumber",
  1382. "validation"
  1383. ],
  1384. "support": {
  1385. "issues": "https://github.com/giggsey/libphonenumber-for-php-lite/issues",
  1386. "source": "https://github.com/giggsey/libphonenumber-for-php-lite"
  1387. },
  1388. "time": "2026-08-03T07:53:53+00:00"
  1389. },
  1390. {
  1391. "name": "graham-campbell/result-type",
  1392. "version": "v1.1.4",
  1393. "source": {
  1394. "type": "git",
  1395. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  1396. "reference": "e01f4a821471308ba86aa202fed6698b6b695e3b"
  1397. },
  1398. "dist": {
  1399. "type": "zip",
  1400. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/e01f4a821471308ba86aa202fed6698b6b695e3b",
  1401. "reference": "e01f4a821471308ba86aa202fed6698b6b695e3b",
  1402. "shasum": ""
  1403. },
  1404. "require": {
  1405. "php": "^7.2.5 || ^8.0",
  1406. "phpoption/phpoption": "^1.9.5"
  1407. },
  1408. "require-dev": {
  1409. "phpunit/phpunit": "^8.5.41 || ^9.6.22 || ^10.5.45 || ^11.5.7"
  1410. },
  1411. "type": "library",
  1412. "autoload": {
  1413. "psr-4": {
  1414. "GrahamCampbell\\ResultType\\": "src/"
  1415. }
  1416. },
  1417. "notification-url": "https://packagist.org/downloads/",
  1418. "license": [
  1419. "MIT"
  1420. ],
  1421. "authors": [
  1422. {
  1423. "name": "Graham Campbell",
  1424. "email": "hello@gjcampbell.co.uk",
  1425. "homepage": "https://github.com/GrahamCampbell"
  1426. }
  1427. ],
  1428. "description": "An Implementation Of The Result Type",
  1429. "keywords": [
  1430. "Graham Campbell",
  1431. "GrahamCampbell",
  1432. "Result Type",
  1433. "Result-Type",
  1434. "result"
  1435. ],
  1436. "support": {
  1437. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  1438. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.4"
  1439. },
  1440. "funding": [
  1441. {
  1442. "url": "https://github.com/GrahamCampbell",
  1443. "type": "github"
  1444. },
  1445. {
  1446. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  1447. "type": "tidelift"
  1448. }
  1449. ],
  1450. "time": "2025-12-27T19:43:20+00:00"
  1451. },
  1452. {
  1453. "name": "guzzlehttp/guzzle",
  1454. "version": "7.10.0",
  1455. "source": {
  1456. "type": "git",
  1457. "url": "https://github.com/guzzle/guzzle.git",
  1458. "reference": "b51ac707cfa420b7bfd4e4d5e510ba8008e822b4"
  1459. },
  1460. "dist": {
  1461. "type": "zip",
  1462. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/b51ac707cfa420b7bfd4e4d5e510ba8008e822b4",
  1463. "reference": "b51ac707cfa420b7bfd4e4d5e510ba8008e822b4",
  1464. "shasum": ""
  1465. },
  1466. "require": {
  1467. "ext-json": "*",
  1468. "guzzlehttp/promises": "^2.3",
  1469. "guzzlehttp/psr7": "^2.8",
  1470. "php": "^7.2.5 || ^8.0",
  1471. "psr/http-client": "^1.0",
  1472. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1473. },
  1474. "provide": {
  1475. "psr/http-client-implementation": "1.0"
  1476. },
  1477. "require-dev": {
  1478. "bamarni/composer-bin-plugin": "^1.8.2",
  1479. "ext-curl": "*",
  1480. "guzzle/client-integration-tests": "3.0.2",
  1481. "php-http/message-factory": "^1.1",
  1482. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  1483. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1484. },
  1485. "suggest": {
  1486. "ext-curl": "Required for CURL handler support",
  1487. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1488. "psr/log": "Required for using the Log middleware"
  1489. },
  1490. "type": "library",
  1491. "extra": {
  1492. "bamarni-bin": {
  1493. "bin-links": true,
  1494. "forward-command": false
  1495. }
  1496. },
  1497. "autoload": {
  1498. "files": [
  1499. "src/functions_include.php"
  1500. ],
  1501. "psr-4": {
  1502. "GuzzleHttp\\": "src/"
  1503. }
  1504. },
  1505. "notification-url": "https://packagist.org/downloads/",
  1506. "license": [
  1507. "MIT"
  1508. ],
  1509. "authors": [
  1510. {
  1511. "name": "Graham Campbell",
  1512. "email": "hello@gjcampbell.co.uk",
  1513. "homepage": "https://github.com/GrahamCampbell"
  1514. },
  1515. {
  1516. "name": "Michael Dowling",
  1517. "email": "mtdowling@gmail.com",
  1518. "homepage": "https://github.com/mtdowling"
  1519. },
  1520. {
  1521. "name": "Jeremy Lindblom",
  1522. "email": "jeremeamia@gmail.com",
  1523. "homepage": "https://github.com/jeremeamia"
  1524. },
  1525. {
  1526. "name": "George Mponos",
  1527. "email": "gmponos@gmail.com",
  1528. "homepage": "https://github.com/gmponos"
  1529. },
  1530. {
  1531. "name": "Tobias Nyholm",
  1532. "email": "tobias.nyholm@gmail.com",
  1533. "homepage": "https://github.com/Nyholm"
  1534. },
  1535. {
  1536. "name": "Márk Sági-Kazár",
  1537. "email": "mark.sagikazar@gmail.com",
  1538. "homepage": "https://github.com/sagikazarmark"
  1539. },
  1540. {
  1541. "name": "Tobias Schultze",
  1542. "email": "webmaster@tubo-world.de",
  1543. "homepage": "https://github.com/Tobion"
  1544. }
  1545. ],
  1546. "description": "Guzzle is a PHP HTTP client library",
  1547. "keywords": [
  1548. "client",
  1549. "curl",
  1550. "framework",
  1551. "http",
  1552. "http client",
  1553. "psr-18",
  1554. "psr-7",
  1555. "rest",
  1556. "web service"
  1557. ],
  1558. "support": {
  1559. "issues": "https://github.com/guzzle/guzzle/issues",
  1560. "source": "https://github.com/guzzle/guzzle/tree/7.10.0"
  1561. },
  1562. "funding": [
  1563. {
  1564. "url": "https://github.com/GrahamCampbell",
  1565. "type": "github"
  1566. },
  1567. {
  1568. "url": "https://github.com/Nyholm",
  1569. "type": "github"
  1570. },
  1571. {
  1572. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1573. "type": "tidelift"
  1574. }
  1575. ],
  1576. "time": "2025-08-23T22:36:01+00:00"
  1577. },
  1578. {
  1579. "name": "guzzlehttp/promises",
  1580. "version": "2.3.0",
  1581. "source": {
  1582. "type": "git",
  1583. "url": "https://github.com/guzzle/promises.git",
  1584. "reference": "481557b130ef3790cf82b713667b43030dc9c957"
  1585. },
  1586. "dist": {
  1587. "type": "zip",
  1588. "url": "https://api.github.com/repos/guzzle/promises/zipball/481557b130ef3790cf82b713667b43030dc9c957",
  1589. "reference": "481557b130ef3790cf82b713667b43030dc9c957",
  1590. "shasum": ""
  1591. },
  1592. "require": {
  1593. "php": "^7.2.5 || ^8.0"
  1594. },
  1595. "require-dev": {
  1596. "bamarni/composer-bin-plugin": "^1.8.2",
  1597. "phpunit/phpunit": "^8.5.44 || ^9.6.25"
  1598. },
  1599. "type": "library",
  1600. "extra": {
  1601. "bamarni-bin": {
  1602. "bin-links": true,
  1603. "forward-command": false
  1604. }
  1605. },
  1606. "autoload": {
  1607. "psr-4": {
  1608. "GuzzleHttp\\Promise\\": "src/"
  1609. }
  1610. },
  1611. "notification-url": "https://packagist.org/downloads/",
  1612. "license": [
  1613. "MIT"
  1614. ],
  1615. "authors": [
  1616. {
  1617. "name": "Graham Campbell",
  1618. "email": "hello@gjcampbell.co.uk",
  1619. "homepage": "https://github.com/GrahamCampbell"
  1620. },
  1621. {
  1622. "name": "Michael Dowling",
  1623. "email": "mtdowling@gmail.com",
  1624. "homepage": "https://github.com/mtdowling"
  1625. },
  1626. {
  1627. "name": "Tobias Nyholm",
  1628. "email": "tobias.nyholm@gmail.com",
  1629. "homepage": "https://github.com/Nyholm"
  1630. },
  1631. {
  1632. "name": "Tobias Schultze",
  1633. "email": "webmaster@tubo-world.de",
  1634. "homepage": "https://github.com/Tobion"
  1635. }
  1636. ],
  1637. "description": "Guzzle promises library",
  1638. "keywords": [
  1639. "promise"
  1640. ],
  1641. "support": {
  1642. "issues": "https://github.com/guzzle/promises/issues",
  1643. "source": "https://github.com/guzzle/promises/tree/2.3.0"
  1644. },
  1645. "funding": [
  1646. {
  1647. "url": "https://github.com/GrahamCampbell",
  1648. "type": "github"
  1649. },
  1650. {
  1651. "url": "https://github.com/Nyholm",
  1652. "type": "github"
  1653. },
  1654. {
  1655. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1656. "type": "tidelift"
  1657. }
  1658. ],
  1659. "time": "2025-08-22T14:34:08+00:00"
  1660. },
  1661. {
  1662. "name": "guzzlehttp/psr7",
  1663. "version": "2.8.0",
  1664. "source": {
  1665. "type": "git",
  1666. "url": "https://github.com/guzzle/psr7.git",
  1667. "reference": "21dc724a0583619cd1652f673303492272778051"
  1668. },
  1669. "dist": {
  1670. "type": "zip",
  1671. "url": "https://api.github.com/repos/guzzle/psr7/zipball/21dc724a0583619cd1652f673303492272778051",
  1672. "reference": "21dc724a0583619cd1652f673303492272778051",
  1673. "shasum": ""
  1674. },
  1675. "require": {
  1676. "php": "^7.2.5 || ^8.0",
  1677. "psr/http-factory": "^1.0",
  1678. "psr/http-message": "^1.1 || ^2.0",
  1679. "ralouphie/getallheaders": "^3.0"
  1680. },
  1681. "provide": {
  1682. "psr/http-factory-implementation": "1.0",
  1683. "psr/http-message-implementation": "1.0"
  1684. },
  1685. "require-dev": {
  1686. "bamarni/composer-bin-plugin": "^1.8.2",
  1687. "http-interop/http-factory-tests": "0.9.0",
  1688. "phpunit/phpunit": "^8.5.44 || ^9.6.25"
  1689. },
  1690. "suggest": {
  1691. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1692. },
  1693. "type": "library",
  1694. "extra": {
  1695. "bamarni-bin": {
  1696. "bin-links": true,
  1697. "forward-command": false
  1698. }
  1699. },
  1700. "autoload": {
  1701. "psr-4": {
  1702. "GuzzleHttp\\Psr7\\": "src/"
  1703. }
  1704. },
  1705. "notification-url": "https://packagist.org/downloads/",
  1706. "license": [
  1707. "MIT"
  1708. ],
  1709. "authors": [
  1710. {
  1711. "name": "Graham Campbell",
  1712. "email": "hello@gjcampbell.co.uk",
  1713. "homepage": "https://github.com/GrahamCampbell"
  1714. },
  1715. {
  1716. "name": "Michael Dowling",
  1717. "email": "mtdowling@gmail.com",
  1718. "homepage": "https://github.com/mtdowling"
  1719. },
  1720. {
  1721. "name": "George Mponos",
  1722. "email": "gmponos@gmail.com",
  1723. "homepage": "https://github.com/gmponos"
  1724. },
  1725. {
  1726. "name": "Tobias Nyholm",
  1727. "email": "tobias.nyholm@gmail.com",
  1728. "homepage": "https://github.com/Nyholm"
  1729. },
  1730. {
  1731. "name": "Márk Sági-Kazár",
  1732. "email": "mark.sagikazar@gmail.com",
  1733. "homepage": "https://github.com/sagikazarmark"
  1734. },
  1735. {
  1736. "name": "Tobias Schultze",
  1737. "email": "webmaster@tubo-world.de",
  1738. "homepage": "https://github.com/Tobion"
  1739. },
  1740. {
  1741. "name": "Márk Sági-Kazár",
  1742. "email": "mark.sagikazar@gmail.com",
  1743. "homepage": "https://sagikazarmark.hu"
  1744. }
  1745. ],
  1746. "description": "PSR-7 message implementation that also provides common utility methods",
  1747. "keywords": [
  1748. "http",
  1749. "message",
  1750. "psr-7",
  1751. "request",
  1752. "response",
  1753. "stream",
  1754. "uri",
  1755. "url"
  1756. ],
  1757. "support": {
  1758. "issues": "https://github.com/guzzle/psr7/issues",
  1759. "source": "https://github.com/guzzle/psr7/tree/2.8.0"
  1760. },
  1761. "funding": [
  1762. {
  1763. "url": "https://github.com/GrahamCampbell",
  1764. "type": "github"
  1765. },
  1766. {
  1767. "url": "https://github.com/Nyholm",
  1768. "type": "github"
  1769. },
  1770. {
  1771. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1772. "type": "tidelift"
  1773. }
  1774. ],
  1775. "time": "2025-08-23T21:21:41+00:00"
  1776. },
  1777. {
  1778. "name": "guzzlehttp/uri-template",
  1779. "version": "v1.0.5",
  1780. "source": {
  1781. "type": "git",
  1782. "url": "https://github.com/guzzle/uri-template.git",
  1783. "reference": "4f4bbd4e7172148801e76e3decc1e559bdee34e1"
  1784. },
  1785. "dist": {
  1786. "type": "zip",
  1787. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/4f4bbd4e7172148801e76e3decc1e559bdee34e1",
  1788. "reference": "4f4bbd4e7172148801e76e3decc1e559bdee34e1",
  1789. "shasum": ""
  1790. },
  1791. "require": {
  1792. "php": "^7.2.5 || ^8.0",
  1793. "symfony/polyfill-php80": "^1.24"
  1794. },
  1795. "require-dev": {
  1796. "bamarni/composer-bin-plugin": "^1.8.2",
  1797. "phpunit/phpunit": "^8.5.44 || ^9.6.25",
  1798. "uri-template/tests": "1.0.0"
  1799. },
  1800. "type": "library",
  1801. "extra": {
  1802. "bamarni-bin": {
  1803. "bin-links": true,
  1804. "forward-command": false
  1805. }
  1806. },
  1807. "autoload": {
  1808. "psr-4": {
  1809. "GuzzleHttp\\UriTemplate\\": "src"
  1810. }
  1811. },
  1812. "notification-url": "https://packagist.org/downloads/",
  1813. "license": [
  1814. "MIT"
  1815. ],
  1816. "authors": [
  1817. {
  1818. "name": "Graham Campbell",
  1819. "email": "hello@gjcampbell.co.uk",
  1820. "homepage": "https://github.com/GrahamCampbell"
  1821. },
  1822. {
  1823. "name": "Michael Dowling",
  1824. "email": "mtdowling@gmail.com",
  1825. "homepage": "https://github.com/mtdowling"
  1826. },
  1827. {
  1828. "name": "George Mponos",
  1829. "email": "gmponos@gmail.com",
  1830. "homepage": "https://github.com/gmponos"
  1831. },
  1832. {
  1833. "name": "Tobias Nyholm",
  1834. "email": "tobias.nyholm@gmail.com",
  1835. "homepage": "https://github.com/Nyholm"
  1836. }
  1837. ],
  1838. "description": "A polyfill class for uri_template of PHP",
  1839. "keywords": [
  1840. "guzzlehttp",
  1841. "uri-template"
  1842. ],
  1843. "support": {
  1844. "issues": "https://github.com/guzzle/uri-template/issues",
  1845. "source": "https://github.com/guzzle/uri-template/tree/v1.0.5"
  1846. },
  1847. "funding": [
  1848. {
  1849. "url": "https://github.com/GrahamCampbell",
  1850. "type": "github"
  1851. },
  1852. {
  1853. "url": "https://github.com/Nyholm",
  1854. "type": "github"
  1855. },
  1856. {
  1857. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  1858. "type": "tidelift"
  1859. }
  1860. ],
  1861. "time": "2025-08-22T14:27:06+00:00"
  1862. },
  1863. {
  1864. "name": "imtigger/laravel-job-status",
  1865. "version": "1.2.0",
  1866. "source": {
  1867. "type": "git",
  1868. "url": "https://github.com/imTigger/laravel-job-status.git",
  1869. "reference": "8e2660721c2448f6c74082bfeea6e82cd10aa3de"
  1870. },
  1871. "dist": {
  1872. "type": "zip",
  1873. "url": "https://api.github.com/repos/imTigger/laravel-job-status/zipball/8e2660721c2448f6c74082bfeea6e82cd10aa3de",
  1874. "reference": "8e2660721c2448f6c74082bfeea6e82cd10aa3de",
  1875. "shasum": ""
  1876. },
  1877. "require": {
  1878. "ext-json": "*",
  1879. "illuminate/contracts": ">=5.5",
  1880. "illuminate/database": ">=5.5",
  1881. "illuminate/queue": ">=5.5",
  1882. "illuminate/support": ">=5.5",
  1883. "nesbot/carbon": ">=1.21",
  1884. "php": ">=7.1"
  1885. },
  1886. "require-dev": {
  1887. "friendsofphp/php-cs-fixer": "^2.11",
  1888. "orchestra/database": ">=3.5",
  1889. "orchestra/testbench": ">=3.5",
  1890. "phpunit/phpunit": ">=5.7"
  1891. },
  1892. "type": "library",
  1893. "extra": {
  1894. "laravel": {
  1895. "providers": [
  1896. "Imtigger\\LaravelJobStatus\\LaravelJobStatusServiceProvider"
  1897. ]
  1898. }
  1899. },
  1900. "autoload": {
  1901. "psr-4": {
  1902. "Imtigger\\LaravelJobStatus\\": "src"
  1903. }
  1904. },
  1905. "notification-url": "https://packagist.org/downloads/",
  1906. "license": [
  1907. "MIT"
  1908. ],
  1909. "authors": [
  1910. {
  1911. "name": "Tiger Fok",
  1912. "email": "tiger@tiger-workshop.com"
  1913. }
  1914. ],
  1915. "description": "Laravel Job Status",
  1916. "keywords": [
  1917. "job",
  1918. "laravel",
  1919. "lumen",
  1920. "queue"
  1921. ],
  1922. "support": {
  1923. "issues": "https://github.com/imTigger/laravel-job-status/issues",
  1924. "source": "https://github.com/imTigger/laravel-job-status/tree/1.2.0"
  1925. },
  1926. "time": "2020-09-19T16:43:44+00:00"
  1927. },
  1928. {
  1929. "name": "jdavidbakr/mail-tracker",
  1930. "version": "8.3",
  1931. "source": {
  1932. "type": "git",
  1933. "url": "https://github.com/jdavidbakr/mail-tracker.git",
  1934. "reference": "6e72a16d190075117a4be94b5b1f895e3dccb1e0"
  1935. },
  1936. "dist": {
  1937. "type": "zip",
  1938. "url": "https://api.github.com/repos/jdavidbakr/mail-tracker/zipball/6e72a16d190075117a4be94b5b1f895e3dccb1e0",
  1939. "reference": "6e72a16d190075117a4be94b5b1f895e3dccb1e0",
  1940. "shasum": ""
  1941. },
  1942. "require": {
  1943. "aws/aws-php-sns-message-validator": "^1.8",
  1944. "aws/aws-sdk-php": "^3.372",
  1945. "guzzlehttp/guzzle": "^7.2",
  1946. "illuminate/support": "^10.0|^11.0|^12.0|^13.0",
  1947. "php": "^8.2"
  1948. },
  1949. "require-dev": {
  1950. "mockery/mockery": "^1.4.4",
  1951. "orchestra/testbench": "^8.0|^9.0|^10.0|^11.0",
  1952. "phpunit/phpunit": "^9.5.10|^10.5|^11.5.3|^12.5.12"
  1953. },
  1954. "suggest": {
  1955. "fedeisas/laravel-mail-css-inliner": "Automatically inlines CSS into all outgoing mail."
  1956. },
  1957. "type": "library",
  1958. "extra": {
  1959. "laravel": {
  1960. "providers": [
  1961. "jdavidbakr\\MailTracker\\MailTrackerServiceProvider"
  1962. ]
  1963. }
  1964. },
  1965. "autoload": {
  1966. "psr-4": {
  1967. "jdavidbakr\\MailTracker\\": "src"
  1968. }
  1969. },
  1970. "notification-url": "https://packagist.org/downloads/",
  1971. "license": [
  1972. "MIT"
  1973. ],
  1974. "authors": [
  1975. {
  1976. "name": "J David Baker",
  1977. "email": "me@jdavidbaker.com",
  1978. "homepage": "http://www.jdavidbaker.com",
  1979. "role": "Developer"
  1980. }
  1981. ],
  1982. "description": "Logs and tracks all outgoing emails from Laravel",
  1983. "homepage": "https://github.com/jdavidbakr/MailTracker",
  1984. "keywords": [
  1985. "MailTracker",
  1986. "jdavidbakr"
  1987. ],
  1988. "support": {
  1989. "issues": "https://github.com/jdavidbakr/mail-tracker/issues",
  1990. "source": "https://github.com/jdavidbakr/mail-tracker/tree/8.3"
  1991. },
  1992. "time": "2026-06-24T21:40:06+00:00"
  1993. },
  1994. {
  1995. "name": "laravel/fortify",
  1996. "version": "v1.33.0",
  1997. "source": {
  1998. "type": "git",
  1999. "url": "https://github.com/laravel/fortify.git",
  2000. "reference": "e0666dabeec0b6428678af1d51f436dcfb24e3a9"
  2001. },
  2002. "dist": {
  2003. "type": "zip",
  2004. "url": "https://api.github.com/repos/laravel/fortify/zipball/e0666dabeec0b6428678af1d51f436dcfb24e3a9",
  2005. "reference": "e0666dabeec0b6428678af1d51f436dcfb24e3a9",
  2006. "shasum": ""
  2007. },
  2008. "require": {
  2009. "bacon/bacon-qr-code": "^3.0",
  2010. "ext-json": "*",
  2011. "illuminate/support": "^10.0|^11.0|^12.0",
  2012. "php": "^8.1",
  2013. "pragmarx/google2fa": "^9.0",
  2014. "symfony/console": "^6.0|^7.0"
  2015. },
  2016. "require-dev": {
  2017. "orchestra/testbench": "^8.36|^9.15|^10.8",
  2018. "phpstan/phpstan": "^1.10"
  2019. },
  2020. "type": "library",
  2021. "extra": {
  2022. "laravel": {
  2023. "providers": [
  2024. "Laravel\\Fortify\\FortifyServiceProvider"
  2025. ]
  2026. },
  2027. "branch-alias": {
  2028. "dev-master": "1.x-dev"
  2029. }
  2030. },
  2031. "autoload": {
  2032. "psr-4": {
  2033. "Laravel\\Fortify\\": "src/"
  2034. }
  2035. },
  2036. "notification-url": "https://packagist.org/downloads/",
  2037. "license": [
  2038. "MIT"
  2039. ],
  2040. "authors": [
  2041. {
  2042. "name": "Taylor Otwell",
  2043. "email": "taylor@laravel.com"
  2044. }
  2045. ],
  2046. "description": "Backend controllers and scaffolding for Laravel authentication.",
  2047. "keywords": [
  2048. "auth",
  2049. "laravel"
  2050. ],
  2051. "support": {
  2052. "issues": "https://github.com/laravel/fortify/issues",
  2053. "source": "https://github.com/laravel/fortify"
  2054. },
  2055. "time": "2025-12-15T14:48:33+00:00"
  2056. },
  2057. {
  2058. "name": "laravel/framework",
  2059. "version": "v12.47.0",
  2060. "source": {
  2061. "type": "git",
  2062. "url": "https://github.com/laravel/framework.git",
  2063. "reference": "ab8114c2e78f32e64eb238fc4b495bea3f8b80ec"
  2064. },
  2065. "dist": {
  2066. "type": "zip",
  2067. "url": "https://api.github.com/repos/laravel/framework/zipball/ab8114c2e78f32e64eb238fc4b495bea3f8b80ec",
  2068. "reference": "ab8114c2e78f32e64eb238fc4b495bea3f8b80ec",
  2069. "shasum": ""
  2070. },
  2071. "require": {
  2072. "brick/math": "^0.11|^0.12|^0.13|^0.14",
  2073. "composer-runtime-api": "^2.2",
  2074. "doctrine/inflector": "^2.0.5",
  2075. "dragonmantank/cron-expression": "^3.4",
  2076. "egulias/email-validator": "^3.2.1|^4.0",
  2077. "ext-ctype": "*",
  2078. "ext-filter": "*",
  2079. "ext-hash": "*",
  2080. "ext-mbstring": "*",
  2081. "ext-openssl": "*",
  2082. "ext-session": "*",
  2083. "ext-tokenizer": "*",
  2084. "fruitcake/php-cors": "^1.3",
  2085. "guzzlehttp/guzzle": "^7.8.2",
  2086. "guzzlehttp/uri-template": "^1.0",
  2087. "laravel/prompts": "^0.3.0",
  2088. "laravel/serializable-closure": "^1.3|^2.0",
  2089. "league/commonmark": "^2.7",
  2090. "league/flysystem": "^3.25.1",
  2091. "league/flysystem-local": "^3.25.1",
  2092. "league/uri": "^7.5.1",
  2093. "monolog/monolog": "^3.0",
  2094. "nesbot/carbon": "^3.8.4",
  2095. "nunomaduro/termwind": "^2.0",
  2096. "php": "^8.2",
  2097. "psr/container": "^1.1.1|^2.0.1",
  2098. "psr/log": "^1.0|^2.0|^3.0",
  2099. "psr/simple-cache": "^1.0|^2.0|^3.0",
  2100. "ramsey/uuid": "^4.7",
  2101. "symfony/console": "^7.2.0",
  2102. "symfony/error-handler": "^7.2.0",
  2103. "symfony/finder": "^7.2.0",
  2104. "symfony/http-foundation": "^7.2.0",
  2105. "symfony/http-kernel": "^7.2.0",
  2106. "symfony/mailer": "^7.2.0",
  2107. "symfony/mime": "^7.2.0",
  2108. "symfony/polyfill-php83": "^1.33",
  2109. "symfony/polyfill-php84": "^1.33",
  2110. "symfony/polyfill-php85": "^1.33",
  2111. "symfony/process": "^7.2.0",
  2112. "symfony/routing": "^7.2.0",
  2113. "symfony/uid": "^7.2.0",
  2114. "symfony/var-dumper": "^7.2.0",
  2115. "tijsverkoyen/css-to-inline-styles": "^2.2.5",
  2116. "vlucas/phpdotenv": "^5.6.1",
  2117. "voku/portable-ascii": "^2.0.2"
  2118. },
  2119. "conflict": {
  2120. "tightenco/collect": "<5.5.33"
  2121. },
  2122. "provide": {
  2123. "psr/container-implementation": "1.1|2.0",
  2124. "psr/log-implementation": "1.0|2.0|3.0",
  2125. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  2126. },
  2127. "replace": {
  2128. "illuminate/auth": "self.version",
  2129. "illuminate/broadcasting": "self.version",
  2130. "illuminate/bus": "self.version",
  2131. "illuminate/cache": "self.version",
  2132. "illuminate/collections": "self.version",
  2133. "illuminate/concurrency": "self.version",
  2134. "illuminate/conditionable": "self.version",
  2135. "illuminate/config": "self.version",
  2136. "illuminate/console": "self.version",
  2137. "illuminate/container": "self.version",
  2138. "illuminate/contracts": "self.version",
  2139. "illuminate/cookie": "self.version",
  2140. "illuminate/database": "self.version",
  2141. "illuminate/encryption": "self.version",
  2142. "illuminate/events": "self.version",
  2143. "illuminate/filesystem": "self.version",
  2144. "illuminate/hashing": "self.version",
  2145. "illuminate/http": "self.version",
  2146. "illuminate/json-schema": "self.version",
  2147. "illuminate/log": "self.version",
  2148. "illuminate/macroable": "self.version",
  2149. "illuminate/mail": "self.version",
  2150. "illuminate/notifications": "self.version",
  2151. "illuminate/pagination": "self.version",
  2152. "illuminate/pipeline": "self.version",
  2153. "illuminate/process": "self.version",
  2154. "illuminate/queue": "self.version",
  2155. "illuminate/redis": "self.version",
  2156. "illuminate/reflection": "self.version",
  2157. "illuminate/routing": "self.version",
  2158. "illuminate/session": "self.version",
  2159. "illuminate/support": "self.version",
  2160. "illuminate/testing": "self.version",
  2161. "illuminate/translation": "self.version",
  2162. "illuminate/validation": "self.version",
  2163. "illuminate/view": "self.version",
  2164. "spatie/once": "*"
  2165. },
  2166. "require-dev": {
  2167. "ably/ably-php": "^1.0",
  2168. "aws/aws-sdk-php": "^3.322.9",
  2169. "ext-gmp": "*",
  2170. "fakerphp/faker": "^1.24",
  2171. "guzzlehttp/promises": "^2.0.3",
  2172. "guzzlehttp/psr7": "^2.4",
  2173. "laravel/pint": "^1.18",
  2174. "league/flysystem-aws-s3-v3": "^3.25.1",
  2175. "league/flysystem-ftp": "^3.25.1",
  2176. "league/flysystem-path-prefixing": "^3.25.1",
  2177. "league/flysystem-read-only": "^3.25.1",
  2178. "league/flysystem-sftp-v3": "^3.25.1",
  2179. "mockery/mockery": "^1.6.10",
  2180. "opis/json-schema": "^2.4.1",
  2181. "orchestra/testbench-core": "^10.8.1",
  2182. "pda/pheanstalk": "^5.0.6|^7.0.0",
  2183. "php-http/discovery": "^1.15",
  2184. "phpstan/phpstan": "^2.0",
  2185. "phpunit/phpunit": "^10.5.35|^11.5.3|^12.0.1",
  2186. "predis/predis": "^2.3|^3.0",
  2187. "resend/resend-php": "^0.10.0|^1.0",
  2188. "symfony/cache": "^7.2.0",
  2189. "symfony/http-client": "^7.2.0",
  2190. "symfony/psr-http-message-bridge": "^7.2.0",
  2191. "symfony/translation": "^7.2.0"
  2192. },
  2193. "suggest": {
  2194. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  2195. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.322.9).",
  2196. "brianium/paratest": "Required to run tests in parallel (^7.0|^8.0).",
  2197. "ext-apcu": "Required to use the APC cache driver.",
  2198. "ext-fileinfo": "Required to use the Filesystem class.",
  2199. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2200. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  2201. "ext-memcached": "Required to use the memcache cache driver.",
  2202. "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.",
  2203. "ext-pdo": "Required to use all database features.",
  2204. "ext-posix": "Required to use all features of the queue worker.",
  2205. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0|^6.0).",
  2206. "fakerphp/faker": "Required to generate fake data using the fake() helper (^1.23).",
  2207. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  2208. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  2209. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.25.1).",
  2210. "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.25.1).",
  2211. "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.25.1).",
  2212. "league/flysystem-read-only": "Required to use read-only disks (^3.25.1)",
  2213. "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.25.1).",
  2214. "mockery/mockery": "Required to use mocking (^1.6).",
  2215. "pda/pheanstalk": "Required to use the beanstalk queue driver (^5.0).",
  2216. "php-http/discovery": "Required to use PSR-7 bridging features (^1.15).",
  2217. "phpunit/phpunit": "Required to use assertions and run tests (^10.5.35|^11.5.3|^12.0.1).",
  2218. "predis/predis": "Required to use the predis connector (^2.3|^3.0).",
  2219. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  2220. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
  2221. "resend/resend-php": "Required to enable support for the Resend mail transport (^0.10.0|^1.0).",
  2222. "symfony/cache": "Required to PSR-6 cache bridge (^7.2).",
  2223. "symfony/filesystem": "Required to enable support for relative symbolic links (^7.2).",
  2224. "symfony/http-client": "Required to enable support for the Symfony API mail transports (^7.2).",
  2225. "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^7.2).",
  2226. "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^7.2).",
  2227. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^7.2)."
  2228. },
  2229. "type": "library",
  2230. "extra": {
  2231. "branch-alias": {
  2232. "dev-master": "12.x-dev"
  2233. }
  2234. },
  2235. "autoload": {
  2236. "files": [
  2237. "src/Illuminate/Collections/functions.php",
  2238. "src/Illuminate/Collections/helpers.php",
  2239. "src/Illuminate/Events/functions.php",
  2240. "src/Illuminate/Filesystem/functions.php",
  2241. "src/Illuminate/Foundation/helpers.php",
  2242. "src/Illuminate/Log/functions.php",
  2243. "src/Illuminate/Reflection/helpers.php",
  2244. "src/Illuminate/Support/functions.php",
  2245. "src/Illuminate/Support/helpers.php"
  2246. ],
  2247. "psr-4": {
  2248. "Illuminate\\": "src/Illuminate/",
  2249. "Illuminate\\Support\\": [
  2250. "src/Illuminate/Macroable/",
  2251. "src/Illuminate/Collections/",
  2252. "src/Illuminate/Conditionable/",
  2253. "src/Illuminate/Reflection/"
  2254. ]
  2255. }
  2256. },
  2257. "notification-url": "https://packagist.org/downloads/",
  2258. "license": [
  2259. "MIT"
  2260. ],
  2261. "authors": [
  2262. {
  2263. "name": "Taylor Otwell",
  2264. "email": "taylor@laravel.com"
  2265. }
  2266. ],
  2267. "description": "The Laravel Framework.",
  2268. "homepage": "https://laravel.com",
  2269. "keywords": [
  2270. "framework",
  2271. "laravel"
  2272. ],
  2273. "support": {
  2274. "issues": "https://github.com/laravel/framework/issues",
  2275. "source": "https://github.com/laravel/framework"
  2276. },
  2277. "time": "2026-01-13T15:29:06+00:00"
  2278. },
  2279. {
  2280. "name": "laravel/horizon",
  2281. "version": "v5.43.0",
  2282. "source": {
  2283. "type": "git",
  2284. "url": "https://github.com/laravel/horizon.git",
  2285. "reference": "2a04285ba83915511afbe987cbfedafdc27fd2de"
  2286. },
  2287. "dist": {
  2288. "type": "zip",
  2289. "url": "https://api.github.com/repos/laravel/horizon/zipball/2a04285ba83915511afbe987cbfedafdc27fd2de",
  2290. "reference": "2a04285ba83915511afbe987cbfedafdc27fd2de",
  2291. "shasum": ""
  2292. },
  2293. "require": {
  2294. "ext-json": "*",
  2295. "ext-pcntl": "*",
  2296. "ext-posix": "*",
  2297. "illuminate/contracts": "^9.21|^10.0|^11.0|^12.0",
  2298. "illuminate/queue": "^9.21|^10.0|^11.0|^12.0",
  2299. "illuminate/support": "^9.21|^10.0|^11.0|^12.0",
  2300. "nesbot/carbon": "^2.17|^3.0",
  2301. "php": "^8.0",
  2302. "ramsey/uuid": "^4.0",
  2303. "symfony/console": "^6.0|^7.0",
  2304. "symfony/error-handler": "^6.0|^7.0",
  2305. "symfony/polyfill-php83": "^1.28",
  2306. "symfony/process": "^6.0|^7.0"
  2307. },
  2308. "require-dev": {
  2309. "mockery/mockery": "^1.0",
  2310. "orchestra/testbench": "^7.55|^8.36|^9.15|^10.8",
  2311. "phpstan/phpstan": "^1.10|^2.0",
  2312. "predis/predis": "^1.1|^2.0|^3.0"
  2313. },
  2314. "suggest": {
  2315. "ext-redis": "Required to use the Redis PHP driver.",
  2316. "predis/predis": "Required when not using the Redis PHP driver (^1.1|^2.0|^3.0)."
  2317. },
  2318. "type": "library",
  2319. "extra": {
  2320. "laravel": {
  2321. "aliases": {
  2322. "Horizon": "Laravel\\Horizon\\Horizon"
  2323. },
  2324. "providers": [
  2325. "Laravel\\Horizon\\HorizonServiceProvider"
  2326. ]
  2327. },
  2328. "branch-alias": {
  2329. "dev-master": "6.x-dev"
  2330. }
  2331. },
  2332. "autoload": {
  2333. "psr-4": {
  2334. "Laravel\\Horizon\\": "src/"
  2335. }
  2336. },
  2337. "notification-url": "https://packagist.org/downloads/",
  2338. "license": [
  2339. "MIT"
  2340. ],
  2341. "authors": [
  2342. {
  2343. "name": "Taylor Otwell",
  2344. "email": "taylor@laravel.com"
  2345. }
  2346. ],
  2347. "description": "Dashboard and code-driven configuration for Laravel queues.",
  2348. "keywords": [
  2349. "laravel",
  2350. "queue"
  2351. ],
  2352. "support": {
  2353. "issues": "https://github.com/laravel/horizon/issues",
  2354. "source": "https://github.com/laravel/horizon/tree/v5.43.0"
  2355. },
  2356. "time": "2026-01-15T15:10:56+00:00"
  2357. },
  2358. {
  2359. "name": "laravel/jetstream",
  2360. "version": "v5.4.0",
  2361. "source": {
  2362. "type": "git",
  2363. "url": "https://github.com/laravel/jetstream.git",
  2364. "reference": "5a83a20b419c2b2c42a8c2407ca4647d8734456b"
  2365. },
  2366. "dist": {
  2367. "type": "zip",
  2368. "url": "https://api.github.com/repos/laravel/jetstream/zipball/5a83a20b419c2b2c42a8c2407ca4647d8734456b",
  2369. "reference": "5a83a20b419c2b2c42a8c2407ca4647d8734456b",
  2370. "shasum": ""
  2371. },
  2372. "require": {
  2373. "ext-json": "*",
  2374. "illuminate/console": "^11.0|^12.0",
  2375. "illuminate/support": "^11.0|^12.0",
  2376. "laravel/fortify": "^1.20",
  2377. "mobiledetect/mobiledetectlib": "^4.8.08",
  2378. "php": "^8.2.0",
  2379. "symfony/console": "^7.0"
  2380. },
  2381. "require-dev": {
  2382. "inertiajs/inertia-laravel": "^2.0",
  2383. "laravel/sanctum": "^4.0",
  2384. "livewire/livewire": "^3.3",
  2385. "mockery/mockery": "^1.0",
  2386. "orchestra/testbench": "^9.15|^10.8",
  2387. "phpstan/phpstan": "^1.10"
  2388. },
  2389. "type": "library",
  2390. "extra": {
  2391. "laravel": {
  2392. "providers": [
  2393. "Laravel\\Jetstream\\JetstreamServiceProvider"
  2394. ]
  2395. }
  2396. },
  2397. "autoload": {
  2398. "psr-4": {
  2399. "Laravel\\Jetstream\\": "src/"
  2400. }
  2401. },
  2402. "notification-url": "https://packagist.org/downloads/",
  2403. "license": [
  2404. "MIT"
  2405. ],
  2406. "authors": [
  2407. {
  2408. "name": "Taylor Otwell",
  2409. "email": "taylor@laravel.com"
  2410. }
  2411. ],
  2412. "description": "Tailwind scaffolding for the Laravel framework.",
  2413. "keywords": [
  2414. "auth",
  2415. "laravel",
  2416. "tailwind"
  2417. ],
  2418. "support": {
  2419. "issues": "https://github.com/laravel/jetstream/issues",
  2420. "source": "https://github.com/laravel/jetstream"
  2421. },
  2422. "time": "2025-11-25T14:46:14+00:00"
  2423. },
  2424. {
  2425. "name": "laravel/prompts",
  2426. "version": "v0.3.10",
  2427. "source": {
  2428. "type": "git",
  2429. "url": "https://github.com/laravel/prompts.git",
  2430. "reference": "360ba095ef9f51017473505191fbd4ab73e1cab3"
  2431. },
  2432. "dist": {
  2433. "type": "zip",
  2434. "url": "https://api.github.com/repos/laravel/prompts/zipball/360ba095ef9f51017473505191fbd4ab73e1cab3",
  2435. "reference": "360ba095ef9f51017473505191fbd4ab73e1cab3",
  2436. "shasum": ""
  2437. },
  2438. "require": {
  2439. "composer-runtime-api": "^2.2",
  2440. "ext-mbstring": "*",
  2441. "php": "^8.1",
  2442. "symfony/console": "^6.2|^7.0"
  2443. },
  2444. "conflict": {
  2445. "illuminate/console": ">=10.17.0 <10.25.0",
  2446. "laravel/framework": ">=10.17.0 <10.25.0"
  2447. },
  2448. "require-dev": {
  2449. "illuminate/collections": "^10.0|^11.0|^12.0",
  2450. "mockery/mockery": "^1.5",
  2451. "pestphp/pest": "^2.3|^3.4|^4.0",
  2452. "phpstan/phpstan": "^1.12.28",
  2453. "phpstan/phpstan-mockery": "^1.1.3"
  2454. },
  2455. "suggest": {
  2456. "ext-pcntl": "Required for the spinner to be animated."
  2457. },
  2458. "type": "library",
  2459. "extra": {
  2460. "branch-alias": {
  2461. "dev-main": "0.3.x-dev"
  2462. }
  2463. },
  2464. "autoload": {
  2465. "files": [
  2466. "src/helpers.php"
  2467. ],
  2468. "psr-4": {
  2469. "Laravel\\Prompts\\": "src/"
  2470. }
  2471. },
  2472. "notification-url": "https://packagist.org/downloads/",
  2473. "license": [
  2474. "MIT"
  2475. ],
  2476. "description": "Add beautiful and user-friendly forms to your command-line applications.",
  2477. "support": {
  2478. "issues": "https://github.com/laravel/prompts/issues",
  2479. "source": "https://github.com/laravel/prompts/tree/v0.3.10"
  2480. },
  2481. "time": "2026-01-13T20:29:29+00:00"
  2482. },
  2483. {
  2484. "name": "laravel/sanctum",
  2485. "version": "v4.2.3",
  2486. "source": {
  2487. "type": "git",
  2488. "url": "https://github.com/laravel/sanctum.git",
  2489. "reference": "47d26f1d310879ff757b971f5a6fc631d18663fd"
  2490. },
  2491. "dist": {
  2492. "type": "zip",
  2493. "url": "https://api.github.com/repos/laravel/sanctum/zipball/47d26f1d310879ff757b971f5a6fc631d18663fd",
  2494. "reference": "47d26f1d310879ff757b971f5a6fc631d18663fd",
  2495. "shasum": ""
  2496. },
  2497. "require": {
  2498. "ext-json": "*",
  2499. "illuminate/console": "^11.0|^12.0",
  2500. "illuminate/contracts": "^11.0|^12.0",
  2501. "illuminate/database": "^11.0|^12.0",
  2502. "illuminate/support": "^11.0|^12.0",
  2503. "php": "^8.2",
  2504. "symfony/console": "^7.0"
  2505. },
  2506. "require-dev": {
  2507. "mockery/mockery": "^1.6",
  2508. "orchestra/testbench": "^9.15|^10.8",
  2509. "phpstan/phpstan": "^1.10"
  2510. },
  2511. "type": "library",
  2512. "extra": {
  2513. "laravel": {
  2514. "providers": [
  2515. "Laravel\\Sanctum\\SanctumServiceProvider"
  2516. ]
  2517. }
  2518. },
  2519. "autoload": {
  2520. "psr-4": {
  2521. "Laravel\\Sanctum\\": "src/"
  2522. }
  2523. },
  2524. "notification-url": "https://packagist.org/downloads/",
  2525. "license": [
  2526. "MIT"
  2527. ],
  2528. "authors": [
  2529. {
  2530. "name": "Taylor Otwell",
  2531. "email": "taylor@laravel.com"
  2532. }
  2533. ],
  2534. "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.",
  2535. "keywords": [
  2536. "auth",
  2537. "laravel",
  2538. "sanctum"
  2539. ],
  2540. "support": {
  2541. "issues": "https://github.com/laravel/sanctum/issues",
  2542. "source": "https://github.com/laravel/sanctum"
  2543. },
  2544. "time": "2026-01-11T18:20:25+00:00"
  2545. },
  2546. {
  2547. "name": "laravel/serializable-closure",
  2548. "version": "v2.0.8",
  2549. "source": {
  2550. "type": "git",
  2551. "url": "https://github.com/laravel/serializable-closure.git",
  2552. "reference": "7581a4407012f5f53365e11bafc520fd7f36bc9b"
  2553. },
  2554. "dist": {
  2555. "type": "zip",
  2556. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/7581a4407012f5f53365e11bafc520fd7f36bc9b",
  2557. "reference": "7581a4407012f5f53365e11bafc520fd7f36bc9b",
  2558. "shasum": ""
  2559. },
  2560. "require": {
  2561. "php": "^8.1"
  2562. },
  2563. "require-dev": {
  2564. "illuminate/support": "^10.0|^11.0|^12.0",
  2565. "nesbot/carbon": "^2.67|^3.0",
  2566. "pestphp/pest": "^2.36|^3.0|^4.0",
  2567. "phpstan/phpstan": "^2.0",
  2568. "symfony/var-dumper": "^6.2.0|^7.0.0"
  2569. },
  2570. "type": "library",
  2571. "extra": {
  2572. "branch-alias": {
  2573. "dev-master": "2.x-dev"
  2574. }
  2575. },
  2576. "autoload": {
  2577. "psr-4": {
  2578. "Laravel\\SerializableClosure\\": "src/"
  2579. }
  2580. },
  2581. "notification-url": "https://packagist.org/downloads/",
  2582. "license": [
  2583. "MIT"
  2584. ],
  2585. "authors": [
  2586. {
  2587. "name": "Taylor Otwell",
  2588. "email": "taylor@laravel.com"
  2589. },
  2590. {
  2591. "name": "Nuno Maduro",
  2592. "email": "nuno@laravel.com"
  2593. }
  2594. ],
  2595. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  2596. "keywords": [
  2597. "closure",
  2598. "laravel",
  2599. "serializable"
  2600. ],
  2601. "support": {
  2602. "issues": "https://github.com/laravel/serializable-closure/issues",
  2603. "source": "https://github.com/laravel/serializable-closure"
  2604. },
  2605. "time": "2026-01-08T16:22:46+00:00"
  2606. },
  2607. {
  2608. "name": "laravel/tinker",
  2609. "version": "v2.11.0",
  2610. "source": {
  2611. "type": "git",
  2612. "url": "https://github.com/laravel/tinker.git",
  2613. "reference": "3d34b97c9a1747a81a3fde90482c092bd8b66468"
  2614. },
  2615. "dist": {
  2616. "type": "zip",
  2617. "url": "https://api.github.com/repos/laravel/tinker/zipball/3d34b97c9a1747a81a3fde90482c092bd8b66468",
  2618. "reference": "3d34b97c9a1747a81a3fde90482c092bd8b66468",
  2619. "shasum": ""
  2620. },
  2621. "require": {
  2622. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  2623. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  2624. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  2625. "php": "^7.2.5|^8.0",
  2626. "psy/psysh": "^0.11.1|^0.12.0",
  2627. "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0|^8.0"
  2628. },
  2629. "require-dev": {
  2630. "mockery/mockery": "~1.3.3|^1.4.2",
  2631. "phpstan/phpstan": "^1.10",
  2632. "phpunit/phpunit": "^8.5.8|^9.3.3|^10.0"
  2633. },
  2634. "suggest": {
  2635. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0)."
  2636. },
  2637. "type": "library",
  2638. "extra": {
  2639. "laravel": {
  2640. "providers": [
  2641. "Laravel\\Tinker\\TinkerServiceProvider"
  2642. ]
  2643. }
  2644. },
  2645. "autoload": {
  2646. "psr-4": {
  2647. "Laravel\\Tinker\\": "src/"
  2648. }
  2649. },
  2650. "notification-url": "https://packagist.org/downloads/",
  2651. "license": [
  2652. "MIT"
  2653. ],
  2654. "authors": [
  2655. {
  2656. "name": "Taylor Otwell",
  2657. "email": "taylor@laravel.com"
  2658. }
  2659. ],
  2660. "description": "Powerful REPL for the Laravel framework.",
  2661. "keywords": [
  2662. "REPL",
  2663. "Tinker",
  2664. "laravel",
  2665. "psysh"
  2666. ],
  2667. "support": {
  2668. "issues": "https://github.com/laravel/tinker/issues",
  2669. "source": "https://github.com/laravel/tinker/tree/v2.11.0"
  2670. },
  2671. "time": "2025-12-19T19:16:45+00:00"
  2672. },
  2673. {
  2674. "name": "league/commonmark",
  2675. "version": "2.8.0",
  2676. "source": {
  2677. "type": "git",
  2678. "url": "https://github.com/thephpleague/commonmark.git",
  2679. "reference": "4efa10c1e56488e658d10adf7b7b7dcd19940bfb"
  2680. },
  2681. "dist": {
  2682. "type": "zip",
  2683. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/4efa10c1e56488e658d10adf7b7b7dcd19940bfb",
  2684. "reference": "4efa10c1e56488e658d10adf7b7b7dcd19940bfb",
  2685. "shasum": ""
  2686. },
  2687. "require": {
  2688. "ext-mbstring": "*",
  2689. "league/config": "^1.1.1",
  2690. "php": "^7.4 || ^8.0",
  2691. "psr/event-dispatcher": "^1.0",
  2692. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  2693. "symfony/polyfill-php80": "^1.16"
  2694. },
  2695. "require-dev": {
  2696. "cebe/markdown": "^1.0",
  2697. "commonmark/cmark": "0.31.1",
  2698. "commonmark/commonmark.js": "0.31.1",
  2699. "composer/package-versions-deprecated": "^1.8",
  2700. "embed/embed": "^4.4",
  2701. "erusev/parsedown": "^1.0",
  2702. "ext-json": "*",
  2703. "github/gfm": "0.29.0",
  2704. "michelf/php-markdown": "^1.4 || ^2.0",
  2705. "nyholm/psr7": "^1.5",
  2706. "phpstan/phpstan": "^1.8.2",
  2707. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  2708. "scrutinizer/ocular": "^1.8.1",
  2709. "symfony/finder": "^5.3 | ^6.0 | ^7.0",
  2710. "symfony/process": "^5.4 | ^6.0 | ^7.0",
  2711. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 | ^7.0",
  2712. "unleashedtech/php-coding-standard": "^3.1.1",
  2713. "vimeo/psalm": "^4.24.0 || ^5.0.0 || ^6.0.0"
  2714. },
  2715. "suggest": {
  2716. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  2717. },
  2718. "type": "library",
  2719. "extra": {
  2720. "branch-alias": {
  2721. "dev-main": "2.9-dev"
  2722. }
  2723. },
  2724. "autoload": {
  2725. "psr-4": {
  2726. "League\\CommonMark\\": "src"
  2727. }
  2728. },
  2729. "notification-url": "https://packagist.org/downloads/",
  2730. "license": [
  2731. "BSD-3-Clause"
  2732. ],
  2733. "authors": [
  2734. {
  2735. "name": "Colin O'Dell",
  2736. "email": "colinodell@gmail.com",
  2737. "homepage": "https://www.colinodell.com",
  2738. "role": "Lead Developer"
  2739. }
  2740. ],
  2741. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  2742. "homepage": "https://commonmark.thephpleague.com",
  2743. "keywords": [
  2744. "commonmark",
  2745. "flavored",
  2746. "gfm",
  2747. "github",
  2748. "github-flavored",
  2749. "markdown",
  2750. "md",
  2751. "parser"
  2752. ],
  2753. "support": {
  2754. "docs": "https://commonmark.thephpleague.com/",
  2755. "forum": "https://github.com/thephpleague/commonmark/discussions",
  2756. "issues": "https://github.com/thephpleague/commonmark/issues",
  2757. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2758. "source": "https://github.com/thephpleague/commonmark"
  2759. },
  2760. "funding": [
  2761. {
  2762. "url": "https://www.colinodell.com/sponsor",
  2763. "type": "custom"
  2764. },
  2765. {
  2766. "url": "https://www.paypal.me/colinpodell/10.00",
  2767. "type": "custom"
  2768. },
  2769. {
  2770. "url": "https://github.com/colinodell",
  2771. "type": "github"
  2772. },
  2773. {
  2774. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2775. "type": "tidelift"
  2776. }
  2777. ],
  2778. "time": "2025-11-26T21:48:24+00:00"
  2779. },
  2780. {
  2781. "name": "league/config",
  2782. "version": "v1.2.0",
  2783. "source": {
  2784. "type": "git",
  2785. "url": "https://github.com/thephpleague/config.git",
  2786. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  2787. },
  2788. "dist": {
  2789. "type": "zip",
  2790. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2791. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2792. "shasum": ""
  2793. },
  2794. "require": {
  2795. "dflydev/dot-access-data": "^3.0.1",
  2796. "nette/schema": "^1.2",
  2797. "php": "^7.4 || ^8.0"
  2798. },
  2799. "require-dev": {
  2800. "phpstan/phpstan": "^1.8.2",
  2801. "phpunit/phpunit": "^9.5.5",
  2802. "scrutinizer/ocular": "^1.8.1",
  2803. "unleashedtech/php-coding-standard": "^3.1",
  2804. "vimeo/psalm": "^4.7.3"
  2805. },
  2806. "type": "library",
  2807. "extra": {
  2808. "branch-alias": {
  2809. "dev-main": "1.2-dev"
  2810. }
  2811. },
  2812. "autoload": {
  2813. "psr-4": {
  2814. "League\\Config\\": "src"
  2815. }
  2816. },
  2817. "notification-url": "https://packagist.org/downloads/",
  2818. "license": [
  2819. "BSD-3-Clause"
  2820. ],
  2821. "authors": [
  2822. {
  2823. "name": "Colin O'Dell",
  2824. "email": "colinodell@gmail.com",
  2825. "homepage": "https://www.colinodell.com",
  2826. "role": "Lead Developer"
  2827. }
  2828. ],
  2829. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  2830. "homepage": "https://config.thephpleague.com",
  2831. "keywords": [
  2832. "array",
  2833. "config",
  2834. "configuration",
  2835. "dot",
  2836. "dot-access",
  2837. "nested",
  2838. "schema"
  2839. ],
  2840. "support": {
  2841. "docs": "https://config.thephpleague.com/",
  2842. "issues": "https://github.com/thephpleague/config/issues",
  2843. "rss": "https://github.com/thephpleague/config/releases.atom",
  2844. "source": "https://github.com/thephpleague/config"
  2845. },
  2846. "funding": [
  2847. {
  2848. "url": "https://www.colinodell.com/sponsor",
  2849. "type": "custom"
  2850. },
  2851. {
  2852. "url": "https://www.paypal.me/colinpodell/10.00",
  2853. "type": "custom"
  2854. },
  2855. {
  2856. "url": "https://github.com/colinodell",
  2857. "type": "github"
  2858. }
  2859. ],
  2860. "time": "2022-12-11T20:36:23+00:00"
  2861. },
  2862. {
  2863. "name": "league/flysystem",
  2864. "version": "3.30.2",
  2865. "source": {
  2866. "type": "git",
  2867. "url": "https://github.com/thephpleague/flysystem.git",
  2868. "reference": "5966a8ba23e62bdb518dd9e0e665c2dbd4b5b277"
  2869. },
  2870. "dist": {
  2871. "type": "zip",
  2872. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/5966a8ba23e62bdb518dd9e0e665c2dbd4b5b277",
  2873. "reference": "5966a8ba23e62bdb518dd9e0e665c2dbd4b5b277",
  2874. "shasum": ""
  2875. },
  2876. "require": {
  2877. "league/flysystem-local": "^3.0.0",
  2878. "league/mime-type-detection": "^1.0.0",
  2879. "php": "^8.0.2"
  2880. },
  2881. "conflict": {
  2882. "async-aws/core": "<1.19.0",
  2883. "async-aws/s3": "<1.14.0",
  2884. "aws/aws-sdk-php": "3.209.31 || 3.210.0",
  2885. "guzzlehttp/guzzle": "<7.0",
  2886. "guzzlehttp/ringphp": "<1.1.1",
  2887. "phpseclib/phpseclib": "3.0.15",
  2888. "symfony/http-client": "<5.2"
  2889. },
  2890. "require-dev": {
  2891. "async-aws/s3": "^1.5 || ^2.0",
  2892. "async-aws/simple-s3": "^1.1 || ^2.0",
  2893. "aws/aws-sdk-php": "^3.295.10",
  2894. "composer/semver": "^3.0",
  2895. "ext-fileinfo": "*",
  2896. "ext-ftp": "*",
  2897. "ext-mongodb": "^1.3|^2",
  2898. "ext-zip": "*",
  2899. "friendsofphp/php-cs-fixer": "^3.5",
  2900. "google/cloud-storage": "^1.23",
  2901. "guzzlehttp/psr7": "^2.6",
  2902. "microsoft/azure-storage-blob": "^1.1",
  2903. "mongodb/mongodb": "^1.2|^2",
  2904. "phpseclib/phpseclib": "^3.0.36",
  2905. "phpstan/phpstan": "^1.10",
  2906. "phpunit/phpunit": "^9.5.11|^10.0",
  2907. "sabre/dav": "^4.6.0"
  2908. },
  2909. "type": "library",
  2910. "autoload": {
  2911. "psr-4": {
  2912. "League\\Flysystem\\": "src"
  2913. }
  2914. },
  2915. "notification-url": "https://packagist.org/downloads/",
  2916. "license": [
  2917. "MIT"
  2918. ],
  2919. "authors": [
  2920. {
  2921. "name": "Frank de Jonge",
  2922. "email": "info@frankdejonge.nl"
  2923. }
  2924. ],
  2925. "description": "File storage abstraction for PHP",
  2926. "keywords": [
  2927. "WebDAV",
  2928. "aws",
  2929. "cloud",
  2930. "file",
  2931. "files",
  2932. "filesystem",
  2933. "filesystems",
  2934. "ftp",
  2935. "s3",
  2936. "sftp",
  2937. "storage"
  2938. ],
  2939. "support": {
  2940. "issues": "https://github.com/thephpleague/flysystem/issues",
  2941. "source": "https://github.com/thephpleague/flysystem/tree/3.30.2"
  2942. },
  2943. "time": "2025-11-10T17:13:11+00:00"
  2944. },
  2945. {
  2946. "name": "league/flysystem-local",
  2947. "version": "3.30.2",
  2948. "source": {
  2949. "type": "git",
  2950. "url": "https://github.com/thephpleague/flysystem-local.git",
  2951. "reference": "ab4f9d0d672f601b102936aa728801dd1a11968d"
  2952. },
  2953. "dist": {
  2954. "type": "zip",
  2955. "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/ab4f9d0d672f601b102936aa728801dd1a11968d",
  2956. "reference": "ab4f9d0d672f601b102936aa728801dd1a11968d",
  2957. "shasum": ""
  2958. },
  2959. "require": {
  2960. "ext-fileinfo": "*",
  2961. "league/flysystem": "^3.0.0",
  2962. "league/mime-type-detection": "^1.0.0",
  2963. "php": "^8.0.2"
  2964. },
  2965. "type": "library",
  2966. "autoload": {
  2967. "psr-4": {
  2968. "League\\Flysystem\\Local\\": ""
  2969. }
  2970. },
  2971. "notification-url": "https://packagist.org/downloads/",
  2972. "license": [
  2973. "MIT"
  2974. ],
  2975. "authors": [
  2976. {
  2977. "name": "Frank de Jonge",
  2978. "email": "info@frankdejonge.nl"
  2979. }
  2980. ],
  2981. "description": "Local filesystem adapter for Flysystem.",
  2982. "keywords": [
  2983. "Flysystem",
  2984. "file",
  2985. "files",
  2986. "filesystem",
  2987. "local"
  2988. ],
  2989. "support": {
  2990. "source": "https://github.com/thephpleague/flysystem-local/tree/3.30.2"
  2991. },
  2992. "time": "2025-11-10T11:23:37+00:00"
  2993. },
  2994. {
  2995. "name": "league/fractal",
  2996. "version": "0.20.2",
  2997. "source": {
  2998. "type": "git",
  2999. "url": "https://github.com/thephpleague/fractal.git",
  3000. "reference": "573ca2e0e348a7fe573a3e8fbc29a6588ece8c4e"
  3001. },
  3002. "dist": {
  3003. "type": "zip",
  3004. "url": "https://api.github.com/repos/thephpleague/fractal/zipball/573ca2e0e348a7fe573a3e8fbc29a6588ece8c4e",
  3005. "reference": "573ca2e0e348a7fe573a3e8fbc29a6588ece8c4e",
  3006. "shasum": ""
  3007. },
  3008. "require": {
  3009. "php": ">=7.4"
  3010. },
  3011. "require-dev": {
  3012. "doctrine/orm": "^2.5",
  3013. "illuminate/contracts": "~5.0",
  3014. "laminas/laminas-paginator": "~2.12",
  3015. "mockery/mockery": "^1.3",
  3016. "pagerfanta/pagerfanta": "~1.0.0|~4.0.0",
  3017. "phpstan/phpstan": "^1.4",
  3018. "phpunit/phpunit": "^9.5",
  3019. "squizlabs/php_codesniffer": "~3.4",
  3020. "vimeo/psalm": "^4.30"
  3021. },
  3022. "suggest": {
  3023. "illuminate/pagination": "The Illuminate Pagination component.",
  3024. "laminas/laminas-paginator": "Laminas Framework Paginator",
  3025. "pagerfanta/pagerfanta": "Pagerfanta Paginator"
  3026. },
  3027. "type": "library",
  3028. "extra": {
  3029. "branch-alias": {
  3030. "dev-master": "0.20.x-dev"
  3031. }
  3032. },
  3033. "autoload": {
  3034. "psr-4": {
  3035. "League\\Fractal\\": "src"
  3036. }
  3037. },
  3038. "notification-url": "https://packagist.org/downloads/",
  3039. "license": [
  3040. "MIT"
  3041. ],
  3042. "authors": [
  3043. {
  3044. "name": "Phil Sturgeon",
  3045. "email": "me@philsturgeon.uk",
  3046. "homepage": "http://philsturgeon.uk/",
  3047. "role": "Developer"
  3048. }
  3049. ],
  3050. "description": "Handle the output of complex data structures ready for API output.",
  3051. "homepage": "http://fractal.thephpleague.com/",
  3052. "keywords": [
  3053. "api",
  3054. "json",
  3055. "league",
  3056. "rest"
  3057. ],
  3058. "support": {
  3059. "issues": "https://github.com/thephpleague/fractal/issues",
  3060. "source": "https://github.com/thephpleague/fractal/tree/0.20.2"
  3061. },
  3062. "time": "2025-02-14T21:33:14+00:00"
  3063. },
  3064. {
  3065. "name": "league/mime-type-detection",
  3066. "version": "1.16.0",
  3067. "source": {
  3068. "type": "git",
  3069. "url": "https://github.com/thephpleague/mime-type-detection.git",
  3070. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9"
  3071. },
  3072. "dist": {
  3073. "type": "zip",
  3074. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/2d6702ff215bf922936ccc1ad31007edc76451b9",
  3075. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9",
  3076. "shasum": ""
  3077. },
  3078. "require": {
  3079. "ext-fileinfo": "*",
  3080. "php": "^7.4 || ^8.0"
  3081. },
  3082. "require-dev": {
  3083. "friendsofphp/php-cs-fixer": "^3.2",
  3084. "phpstan/phpstan": "^0.12.68",
  3085. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  3086. },
  3087. "type": "library",
  3088. "autoload": {
  3089. "psr-4": {
  3090. "League\\MimeTypeDetection\\": "src"
  3091. }
  3092. },
  3093. "notification-url": "https://packagist.org/downloads/",
  3094. "license": [
  3095. "MIT"
  3096. ],
  3097. "authors": [
  3098. {
  3099. "name": "Frank de Jonge",
  3100. "email": "info@frankdejonge.nl"
  3101. }
  3102. ],
  3103. "description": "Mime-type detection for Flysystem",
  3104. "support": {
  3105. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  3106. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.16.0"
  3107. },
  3108. "funding": [
  3109. {
  3110. "url": "https://github.com/frankdejonge",
  3111. "type": "github"
  3112. },
  3113. {
  3114. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  3115. "type": "tidelift"
  3116. }
  3117. ],
  3118. "time": "2024-09-21T08:32:55+00:00"
  3119. },
  3120. {
  3121. "name": "league/uri",
  3122. "version": "7.8.0",
  3123. "source": {
  3124. "type": "git",
  3125. "url": "https://github.com/thephpleague/uri.git",
  3126. "reference": "4436c6ec8d458e4244448b069cc572d088230b76"
  3127. },
  3128. "dist": {
  3129. "type": "zip",
  3130. "url": "https://api.github.com/repos/thephpleague/uri/zipball/4436c6ec8d458e4244448b069cc572d088230b76",
  3131. "reference": "4436c6ec8d458e4244448b069cc572d088230b76",
  3132. "shasum": ""
  3133. },
  3134. "require": {
  3135. "league/uri-interfaces": "^7.8",
  3136. "php": "^8.1",
  3137. "psr/http-factory": "^1"
  3138. },
  3139. "conflict": {
  3140. "league/uri-schemes": "^1.0"
  3141. },
  3142. "suggest": {
  3143. "ext-bcmath": "to improve IPV4 host parsing",
  3144. "ext-dom": "to convert the URI into an HTML anchor tag",
  3145. "ext-fileinfo": "to create Data URI from file contennts",
  3146. "ext-gmp": "to improve IPV4 host parsing",
  3147. "ext-intl": "to handle IDN host with the best performance",
  3148. "ext-uri": "to use the PHP native URI class",
  3149. "jeremykendall/php-domain-parser": "to further parse the URI host and resolve its Public Suffix and Top Level Domain",
  3150. "league/uri-components": "to provide additional tools to manipulate URI objects components",
  3151. "league/uri-polyfill": "to backport the PHP URI extension for older versions of PHP",
  3152. "php-64bit": "to improve IPV4 host parsing",
  3153. "rowbot/url": "to handle URLs using the WHATWG URL Living Standard specification",
  3154. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  3155. },
  3156. "type": "library",
  3157. "extra": {
  3158. "branch-alias": {
  3159. "dev-master": "7.x-dev"
  3160. }
  3161. },
  3162. "autoload": {
  3163. "psr-4": {
  3164. "League\\Uri\\": ""
  3165. }
  3166. },
  3167. "notification-url": "https://packagist.org/downloads/",
  3168. "license": [
  3169. "MIT"
  3170. ],
  3171. "authors": [
  3172. {
  3173. "name": "Ignace Nyamagana Butera",
  3174. "email": "nyamsprod@gmail.com",
  3175. "homepage": "https://nyamsprod.com"
  3176. }
  3177. ],
  3178. "description": "URI manipulation library",
  3179. "homepage": "https://uri.thephpleague.com",
  3180. "keywords": [
  3181. "URN",
  3182. "data-uri",
  3183. "file-uri",
  3184. "ftp",
  3185. "hostname",
  3186. "http",
  3187. "https",
  3188. "middleware",
  3189. "parse_str",
  3190. "parse_url",
  3191. "psr-7",
  3192. "query-string",
  3193. "querystring",
  3194. "rfc2141",
  3195. "rfc3986",
  3196. "rfc3987",
  3197. "rfc6570",
  3198. "rfc8141",
  3199. "uri",
  3200. "uri-template",
  3201. "url",
  3202. "ws"
  3203. ],
  3204. "support": {
  3205. "docs": "https://uri.thephpleague.com",
  3206. "forum": "https://thephpleague.slack.com",
  3207. "issues": "https://github.com/thephpleague/uri-src/issues",
  3208. "source": "https://github.com/thephpleague/uri/tree/7.8.0"
  3209. },
  3210. "funding": [
  3211. {
  3212. "url": "https://github.com/sponsors/nyamsprod",
  3213. "type": "github"
  3214. }
  3215. ],
  3216. "time": "2026-01-14T17:24:56+00:00"
  3217. },
  3218. {
  3219. "name": "league/uri-interfaces",
  3220. "version": "7.8.0",
  3221. "source": {
  3222. "type": "git",
  3223. "url": "https://github.com/thephpleague/uri-interfaces.git",
  3224. "reference": "c5c5cd056110fc8afaba29fa6b72a43ced42acd4"
  3225. },
  3226. "dist": {
  3227. "type": "zip",
  3228. "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/c5c5cd056110fc8afaba29fa6b72a43ced42acd4",
  3229. "reference": "c5c5cd056110fc8afaba29fa6b72a43ced42acd4",
  3230. "shasum": ""
  3231. },
  3232. "require": {
  3233. "ext-filter": "*",
  3234. "php": "^8.1",
  3235. "psr/http-message": "^1.1 || ^2.0"
  3236. },
  3237. "suggest": {
  3238. "ext-bcmath": "to improve IPV4 host parsing",
  3239. "ext-gmp": "to improve IPV4 host parsing",
  3240. "ext-intl": "to handle IDN host with the best performance",
  3241. "php-64bit": "to improve IPV4 host parsing",
  3242. "rowbot/url": "to handle URLs using the WHATWG URL Living Standard specification",
  3243. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  3244. },
  3245. "type": "library",
  3246. "extra": {
  3247. "branch-alias": {
  3248. "dev-master": "7.x-dev"
  3249. }
  3250. },
  3251. "autoload": {
  3252. "psr-4": {
  3253. "League\\Uri\\": ""
  3254. }
  3255. },
  3256. "notification-url": "https://packagist.org/downloads/",
  3257. "license": [
  3258. "MIT"
  3259. ],
  3260. "authors": [
  3261. {
  3262. "name": "Ignace Nyamagana Butera",
  3263. "email": "nyamsprod@gmail.com",
  3264. "homepage": "https://nyamsprod.com"
  3265. }
  3266. ],
  3267. "description": "Common tools for parsing and resolving RFC3987/RFC3986 URI",
  3268. "homepage": "https://uri.thephpleague.com",
  3269. "keywords": [
  3270. "data-uri",
  3271. "file-uri",
  3272. "ftp",
  3273. "hostname",
  3274. "http",
  3275. "https",
  3276. "parse_str",
  3277. "parse_url",
  3278. "psr-7",
  3279. "query-string",
  3280. "querystring",
  3281. "rfc3986",
  3282. "rfc3987",
  3283. "rfc6570",
  3284. "uri",
  3285. "url",
  3286. "ws"
  3287. ],
  3288. "support": {
  3289. "docs": "https://uri.thephpleague.com",
  3290. "forum": "https://thephpleague.slack.com",
  3291. "issues": "https://github.com/thephpleague/uri-src/issues",
  3292. "source": "https://github.com/thephpleague/uri-interfaces/tree/7.8.0"
  3293. },
  3294. "funding": [
  3295. {
  3296. "url": "https://github.com/sponsors/nyamsprod",
  3297. "type": "github"
  3298. }
  3299. ],
  3300. "time": "2026-01-15T06:54:53+00:00"
  3301. },
  3302. {
  3303. "name": "livewire/livewire",
  3304. "version": "v3.7.4",
  3305. "source": {
  3306. "type": "git",
  3307. "url": "https://github.com/livewire/livewire.git",
  3308. "reference": "5a8dffd4c0ab357ff7ed5b39e7c2453d962a68e0"
  3309. },
  3310. "dist": {
  3311. "type": "zip",
  3312. "url": "https://api.github.com/repos/livewire/livewire/zipball/5a8dffd4c0ab357ff7ed5b39e7c2453d962a68e0",
  3313. "reference": "5a8dffd4c0ab357ff7ed5b39e7c2453d962a68e0",
  3314. "shasum": ""
  3315. },
  3316. "require": {
  3317. "illuminate/database": "^10.0|^11.0|^12.0",
  3318. "illuminate/routing": "^10.0|^11.0|^12.0",
  3319. "illuminate/support": "^10.0|^11.0|^12.0",
  3320. "illuminate/validation": "^10.0|^11.0|^12.0",
  3321. "laravel/prompts": "^0.1.24|^0.2|^0.3",
  3322. "league/mime-type-detection": "^1.9",
  3323. "php": "^8.1",
  3324. "symfony/console": "^6.0|^7.0",
  3325. "symfony/http-kernel": "^6.2|^7.0"
  3326. },
  3327. "require-dev": {
  3328. "calebporzio/sushi": "^2.1",
  3329. "laravel/framework": "^10.15.0|^11.0|^12.0",
  3330. "mockery/mockery": "^1.3.1",
  3331. "orchestra/testbench": "^8.21.0|^9.0|^10.0",
  3332. "orchestra/testbench-dusk": "^8.24|^9.1|^10.0",
  3333. "phpunit/phpunit": "^10.4|^11.5",
  3334. "psy/psysh": "^0.11.22|^0.12"
  3335. },
  3336. "type": "library",
  3337. "extra": {
  3338. "laravel": {
  3339. "aliases": {
  3340. "Livewire": "Livewire\\Livewire"
  3341. },
  3342. "providers": [
  3343. "Livewire\\LivewireServiceProvider"
  3344. ]
  3345. }
  3346. },
  3347. "autoload": {
  3348. "files": [
  3349. "src/helpers.php"
  3350. ],
  3351. "psr-4": {
  3352. "Livewire\\": "src/"
  3353. }
  3354. },
  3355. "notification-url": "https://packagist.org/downloads/",
  3356. "license": [
  3357. "MIT"
  3358. ],
  3359. "authors": [
  3360. {
  3361. "name": "Caleb Porzio",
  3362. "email": "calebporzio@gmail.com"
  3363. }
  3364. ],
  3365. "description": "A front-end framework for Laravel.",
  3366. "support": {
  3367. "issues": "https://github.com/livewire/livewire/issues",
  3368. "source": "https://github.com/livewire/livewire/tree/v3.7.4"
  3369. },
  3370. "funding": [
  3371. {
  3372. "url": "https://github.com/livewire",
  3373. "type": "github"
  3374. }
  3375. ],
  3376. "time": "2026-01-13T09:37:21+00:00"
  3377. },
  3378. {
  3379. "name": "maennchen/zipstream-php",
  3380. "version": "3.1.2",
  3381. "source": {
  3382. "type": "git",
  3383. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  3384. "reference": "aeadcf5c412332eb426c0f9b4485f6accba2a99f"
  3385. },
  3386. "dist": {
  3387. "type": "zip",
  3388. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/aeadcf5c412332eb426c0f9b4485f6accba2a99f",
  3389. "reference": "aeadcf5c412332eb426c0f9b4485f6accba2a99f",
  3390. "shasum": ""
  3391. },
  3392. "require": {
  3393. "ext-mbstring": "*",
  3394. "ext-zlib": "*",
  3395. "php-64bit": "^8.2"
  3396. },
  3397. "require-dev": {
  3398. "brianium/paratest": "^7.7",
  3399. "ext-zip": "*",
  3400. "friendsofphp/php-cs-fixer": "^3.16",
  3401. "guzzlehttp/guzzle": "^7.5",
  3402. "mikey179/vfsstream": "^1.6",
  3403. "php-coveralls/php-coveralls": "^2.5",
  3404. "phpunit/phpunit": "^11.0",
  3405. "vimeo/psalm": "^6.0"
  3406. },
  3407. "suggest": {
  3408. "guzzlehttp/psr7": "^2.4",
  3409. "psr/http-message": "^2.0"
  3410. },
  3411. "type": "library",
  3412. "autoload": {
  3413. "psr-4": {
  3414. "ZipStream\\": "src/"
  3415. }
  3416. },
  3417. "notification-url": "https://packagist.org/downloads/",
  3418. "license": [
  3419. "MIT"
  3420. ],
  3421. "authors": [
  3422. {
  3423. "name": "Paul Duncan",
  3424. "email": "pabs@pablotron.org"
  3425. },
  3426. {
  3427. "name": "Jonatan Männchen",
  3428. "email": "jonatan@maennchen.ch"
  3429. },
  3430. {
  3431. "name": "Jesse Donat",
  3432. "email": "donatj@gmail.com"
  3433. },
  3434. {
  3435. "name": "András Kolesár",
  3436. "email": "kolesar@kolesar.hu"
  3437. }
  3438. ],
  3439. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  3440. "keywords": [
  3441. "stream",
  3442. "zip"
  3443. ],
  3444. "support": {
  3445. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  3446. "source": "https://github.com/maennchen/ZipStream-PHP/tree/3.1.2"
  3447. },
  3448. "funding": [
  3449. {
  3450. "url": "https://github.com/maennchen",
  3451. "type": "github"
  3452. }
  3453. ],
  3454. "time": "2025-01-27T12:07:53+00:00"
  3455. },
  3456. {
  3457. "name": "markbaker/complex",
  3458. "version": "3.0.2",
  3459. "source": {
  3460. "type": "git",
  3461. "url": "https://github.com/MarkBaker/PHPComplex.git",
  3462. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9"
  3463. },
  3464. "dist": {
  3465. "type": "zip",
  3466. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  3467. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  3468. "shasum": ""
  3469. },
  3470. "require": {
  3471. "php": "^7.2 || ^8.0"
  3472. },
  3473. "require-dev": {
  3474. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  3475. "phpcompatibility/php-compatibility": "^9.3",
  3476. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  3477. "squizlabs/php_codesniffer": "^3.7"
  3478. },
  3479. "type": "library",
  3480. "autoload": {
  3481. "psr-4": {
  3482. "Complex\\": "classes/src/"
  3483. }
  3484. },
  3485. "notification-url": "https://packagist.org/downloads/",
  3486. "license": [
  3487. "MIT"
  3488. ],
  3489. "authors": [
  3490. {
  3491. "name": "Mark Baker",
  3492. "email": "mark@lange.demon.co.uk"
  3493. }
  3494. ],
  3495. "description": "PHP Class for working with complex numbers",
  3496. "homepage": "https://github.com/MarkBaker/PHPComplex",
  3497. "keywords": [
  3498. "complex",
  3499. "mathematics"
  3500. ],
  3501. "support": {
  3502. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  3503. "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.2"
  3504. },
  3505. "time": "2022-12-06T16:21:08+00:00"
  3506. },
  3507. {
  3508. "name": "markbaker/matrix",
  3509. "version": "3.0.1",
  3510. "source": {
  3511. "type": "git",
  3512. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  3513. "reference": "728434227fe21be27ff6d86621a1b13107a2562c"
  3514. },
  3515. "dist": {
  3516. "type": "zip",
  3517. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/728434227fe21be27ff6d86621a1b13107a2562c",
  3518. "reference": "728434227fe21be27ff6d86621a1b13107a2562c",
  3519. "shasum": ""
  3520. },
  3521. "require": {
  3522. "php": "^7.1 || ^8.0"
  3523. },
  3524. "require-dev": {
  3525. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  3526. "phpcompatibility/php-compatibility": "^9.3",
  3527. "phpdocumentor/phpdocumentor": "2.*",
  3528. "phploc/phploc": "^4.0",
  3529. "phpmd/phpmd": "2.*",
  3530. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  3531. "sebastian/phpcpd": "^4.0",
  3532. "squizlabs/php_codesniffer": "^3.7"
  3533. },
  3534. "type": "library",
  3535. "autoload": {
  3536. "psr-4": {
  3537. "Matrix\\": "classes/src/"
  3538. }
  3539. },
  3540. "notification-url": "https://packagist.org/downloads/",
  3541. "license": [
  3542. "MIT"
  3543. ],
  3544. "authors": [
  3545. {
  3546. "name": "Mark Baker",
  3547. "email": "mark@demon-angel.eu"
  3548. }
  3549. ],
  3550. "description": "PHP Class for working with matrices",
  3551. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  3552. "keywords": [
  3553. "mathematics",
  3554. "matrix",
  3555. "vector"
  3556. ],
  3557. "support": {
  3558. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  3559. "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.1"
  3560. },
  3561. "time": "2022-12-02T22:17:43+00:00"
  3562. },
  3563. {
  3564. "name": "masterminds/html5",
  3565. "version": "2.10.0",
  3566. "source": {
  3567. "type": "git",
  3568. "url": "https://github.com/Masterminds/html5-php.git",
  3569. "reference": "fcf91eb64359852f00d921887b219479b4f21251"
  3570. },
  3571. "dist": {
  3572. "type": "zip",
  3573. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/fcf91eb64359852f00d921887b219479b4f21251",
  3574. "reference": "fcf91eb64359852f00d921887b219479b4f21251",
  3575. "shasum": ""
  3576. },
  3577. "require": {
  3578. "ext-dom": "*",
  3579. "php": ">=5.3.0"
  3580. },
  3581. "require-dev": {
  3582. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  3583. },
  3584. "type": "library",
  3585. "extra": {
  3586. "branch-alias": {
  3587. "dev-master": "2.7-dev"
  3588. }
  3589. },
  3590. "autoload": {
  3591. "psr-4": {
  3592. "Masterminds\\": "src"
  3593. }
  3594. },
  3595. "notification-url": "https://packagist.org/downloads/",
  3596. "license": [
  3597. "MIT"
  3598. ],
  3599. "authors": [
  3600. {
  3601. "name": "Matt Butcher",
  3602. "email": "technosophos@gmail.com"
  3603. },
  3604. {
  3605. "name": "Matt Farina",
  3606. "email": "matt@mattfarina.com"
  3607. },
  3608. {
  3609. "name": "Asmir Mustafic",
  3610. "email": "goetas@gmail.com"
  3611. }
  3612. ],
  3613. "description": "An HTML5 parser and serializer.",
  3614. "homepage": "http://masterminds.github.io/html5-php",
  3615. "keywords": [
  3616. "HTML5",
  3617. "dom",
  3618. "html",
  3619. "parser",
  3620. "querypath",
  3621. "serializer",
  3622. "xml"
  3623. ],
  3624. "support": {
  3625. "issues": "https://github.com/Masterminds/html5-php/issues",
  3626. "source": "https://github.com/Masterminds/html5-php/tree/2.10.0"
  3627. },
  3628. "time": "2025-07-25T09:04:22+00:00"
  3629. },
  3630. {
  3631. "name": "mobiledetect/mobiledetectlib",
  3632. "version": "4.8.10",
  3633. "source": {
  3634. "type": "git",
  3635. "url": "https://github.com/serbanghita/Mobile-Detect.git",
  3636. "reference": "96b1e1fa9a968de7660a031106ab529f659d0192"
  3637. },
  3638. "dist": {
  3639. "type": "zip",
  3640. "url": "https://api.github.com/repos/serbanghita/Mobile-Detect/zipball/96b1e1fa9a968de7660a031106ab529f659d0192",
  3641. "reference": "96b1e1fa9a968de7660a031106ab529f659d0192",
  3642. "shasum": ""
  3643. },
  3644. "require": {
  3645. "php": ">=8.0",
  3646. "psr/simple-cache": "^3"
  3647. },
  3648. "require-dev": {
  3649. "friendsofphp/php-cs-fixer": "^v3.75.0",
  3650. "phpbench/phpbench": "^1.2",
  3651. "phpstan/phpstan": "^2.1.11",
  3652. "phpunit/phpunit": "^9.6.22",
  3653. "squizlabs/php_codesniffer": "^3.12.1"
  3654. },
  3655. "type": "library",
  3656. "autoload": {
  3657. "psr-4": {
  3658. "Detection\\": "src/"
  3659. }
  3660. },
  3661. "notification-url": "https://packagist.org/downloads/",
  3662. "license": [
  3663. "MIT"
  3664. ],
  3665. "authors": [
  3666. {
  3667. "name": "Serban Ghita",
  3668. "email": "serbanghita@gmail.com",
  3669. "homepage": "http://mobiledetect.net",
  3670. "role": "Developer"
  3671. }
  3672. ],
  3673. "description": "Mobile_Detect is a lightweight PHP class for detecting mobile devices. It uses the User-Agent string combined with specific HTTP headers to detect the mobile environment.",
  3674. "homepage": "https://github.com/serbanghita/Mobile-Detect",
  3675. "keywords": [
  3676. "detect mobile devices",
  3677. "mobile",
  3678. "mobile detect",
  3679. "mobile detector",
  3680. "php mobile detect"
  3681. ],
  3682. "support": {
  3683. "issues": "https://github.com/serbanghita/Mobile-Detect/issues",
  3684. "source": "https://github.com/serbanghita/Mobile-Detect/tree/4.8.10"
  3685. },
  3686. "funding": [
  3687. {
  3688. "url": "https://github.com/serbanghita",
  3689. "type": "github"
  3690. }
  3691. ],
  3692. "time": "2026-01-09T16:21:59+00:00"
  3693. },
  3694. {
  3695. "name": "monolog/monolog",
  3696. "version": "3.10.0",
  3697. "source": {
  3698. "type": "git",
  3699. "url": "https://github.com/Seldaek/monolog.git",
  3700. "reference": "b321dd6749f0bf7189444158a3ce785cc16d69b0"
  3701. },
  3702. "dist": {
  3703. "type": "zip",
  3704. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/b321dd6749f0bf7189444158a3ce785cc16d69b0",
  3705. "reference": "b321dd6749f0bf7189444158a3ce785cc16d69b0",
  3706. "shasum": ""
  3707. },
  3708. "require": {
  3709. "php": ">=8.1",
  3710. "psr/log": "^2.0 || ^3.0"
  3711. },
  3712. "provide": {
  3713. "psr/log-implementation": "3.0.0"
  3714. },
  3715. "require-dev": {
  3716. "aws/aws-sdk-php": "^3.0",
  3717. "doctrine/couchdb": "~1.0@dev",
  3718. "elasticsearch/elasticsearch": "^7 || ^8",
  3719. "ext-json": "*",
  3720. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  3721. "guzzlehttp/guzzle": "^7.4.5",
  3722. "guzzlehttp/psr7": "^2.2",
  3723. "mongodb/mongodb": "^1.8 || ^2.0",
  3724. "php-amqplib/php-amqplib": "~2.4 || ^3",
  3725. "php-console/php-console": "^3.1.8",
  3726. "phpstan/phpstan": "^2",
  3727. "phpstan/phpstan-deprecation-rules": "^2",
  3728. "phpstan/phpstan-strict-rules": "^2",
  3729. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  3730. "predis/predis": "^1.1 || ^2",
  3731. "rollbar/rollbar": "^4.0",
  3732. "ruflin/elastica": "^7 || ^8",
  3733. "symfony/mailer": "^5.4 || ^6",
  3734. "symfony/mime": "^5.4 || ^6"
  3735. },
  3736. "suggest": {
  3737. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  3738. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  3739. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  3740. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  3741. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  3742. "ext-mbstring": "Allow to work properly with unicode symbols",
  3743. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  3744. "ext-openssl": "Required to send log messages using SSL",
  3745. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  3746. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  3747. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  3748. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  3749. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  3750. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  3751. },
  3752. "type": "library",
  3753. "extra": {
  3754. "branch-alias": {
  3755. "dev-main": "3.x-dev"
  3756. }
  3757. },
  3758. "autoload": {
  3759. "psr-4": {
  3760. "Monolog\\": "src/Monolog"
  3761. }
  3762. },
  3763. "notification-url": "https://packagist.org/downloads/",
  3764. "license": [
  3765. "MIT"
  3766. ],
  3767. "authors": [
  3768. {
  3769. "name": "Jordi Boggiano",
  3770. "email": "j.boggiano@seld.be",
  3771. "homepage": "https://seld.be"
  3772. }
  3773. ],
  3774. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  3775. "homepage": "https://github.com/Seldaek/monolog",
  3776. "keywords": [
  3777. "log",
  3778. "logging",
  3779. "psr-3"
  3780. ],
  3781. "support": {
  3782. "issues": "https://github.com/Seldaek/monolog/issues",
  3783. "source": "https://github.com/Seldaek/monolog/tree/3.10.0"
  3784. },
  3785. "funding": [
  3786. {
  3787. "url": "https://github.com/Seldaek",
  3788. "type": "github"
  3789. },
  3790. {
  3791. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  3792. "type": "tidelift"
  3793. }
  3794. ],
  3795. "time": "2026-01-02T08:56:05+00:00"
  3796. },
  3797. {
  3798. "name": "mpdf/mpdf",
  3799. "version": "v8.2.7",
  3800. "source": {
  3801. "type": "git",
  3802. "url": "https://github.com/mpdf/mpdf.git",
  3803. "reference": "b59670a09498689c33ce639bac8f5ba26721dab3"
  3804. },
  3805. "dist": {
  3806. "type": "zip",
  3807. "url": "https://api.github.com/repos/mpdf/mpdf/zipball/b59670a09498689c33ce639bac8f5ba26721dab3",
  3808. "reference": "b59670a09498689c33ce639bac8f5ba26721dab3",
  3809. "shasum": ""
  3810. },
  3811. "require": {
  3812. "ext-gd": "*",
  3813. "ext-mbstring": "*",
  3814. "mpdf/psr-http-message-shim": "^1.0 || ^2.0",
  3815. "mpdf/psr-log-aware-trait": "^2.0 || ^3.0",
  3816. "myclabs/deep-copy": "^1.7",
  3817. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  3818. "php": "^5.6 || ^7.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0",
  3819. "psr/http-message": "^1.0 || ^2.0",
  3820. "psr/log": "^1.0 || ^2.0 || ^3.0",
  3821. "setasign/fpdi": "^2.1"
  3822. },
  3823. "require-dev": {
  3824. "mockery/mockery": "^1.3.0",
  3825. "mpdf/qrcode": "^1.1.0",
  3826. "squizlabs/php_codesniffer": "^3.5.0",
  3827. "tracy/tracy": "~2.5",
  3828. "yoast/phpunit-polyfills": "^1.0"
  3829. },
  3830. "suggest": {
  3831. "ext-bcmath": "Needed for generation of some types of barcodes",
  3832. "ext-xml": "Needed mainly for SVG manipulation",
  3833. "ext-zlib": "Needed for compression of embedded resources, such as fonts"
  3834. },
  3835. "type": "library",
  3836. "autoload": {
  3837. "files": [
  3838. "src/functions.php"
  3839. ],
  3840. "psr-4": {
  3841. "Mpdf\\": "src/"
  3842. }
  3843. },
  3844. "notification-url": "https://packagist.org/downloads/",
  3845. "license": [
  3846. "GPL-2.0-only"
  3847. ],
  3848. "authors": [
  3849. {
  3850. "name": "Matěj Humpál",
  3851. "role": "Developer, maintainer"
  3852. },
  3853. {
  3854. "name": "Ian Back",
  3855. "role": "Developer (retired)"
  3856. }
  3857. ],
  3858. "description": "PHP library generating PDF files from UTF-8 encoded HTML",
  3859. "homepage": "https://mpdf.github.io",
  3860. "keywords": [
  3861. "pdf",
  3862. "php",
  3863. "utf-8"
  3864. ],
  3865. "support": {
  3866. "docs": "https://mpdf.github.io",
  3867. "issues": "https://github.com/mpdf/mpdf/issues",
  3868. "source": "https://github.com/mpdf/mpdf"
  3869. },
  3870. "funding": [
  3871. {
  3872. "url": "https://www.paypal.me/mpdf",
  3873. "type": "custom"
  3874. }
  3875. ],
  3876. "time": "2025-12-01T10:18:02+00:00"
  3877. },
  3878. {
  3879. "name": "mpdf/psr-http-message-shim",
  3880. "version": "v2.0.1",
  3881. "source": {
  3882. "type": "git",
  3883. "url": "https://github.com/mpdf/psr-http-message-shim.git",
  3884. "reference": "f25a0153d645e234f9db42e5433b16d9b113920f"
  3885. },
  3886. "dist": {
  3887. "type": "zip",
  3888. "url": "https://api.github.com/repos/mpdf/psr-http-message-shim/zipball/f25a0153d645e234f9db42e5433b16d9b113920f",
  3889. "reference": "f25a0153d645e234f9db42e5433b16d9b113920f",
  3890. "shasum": ""
  3891. },
  3892. "require": {
  3893. "psr/http-message": "^2.0"
  3894. },
  3895. "type": "library",
  3896. "autoload": {
  3897. "psr-4": {
  3898. "Mpdf\\PsrHttpMessageShim\\": "src/"
  3899. }
  3900. },
  3901. "notification-url": "https://packagist.org/downloads/",
  3902. "license": [
  3903. "MIT"
  3904. ],
  3905. "authors": [
  3906. {
  3907. "name": "Mark Dorison",
  3908. "email": "mark@chromatichq.com"
  3909. },
  3910. {
  3911. "name": "Kristofer Widholm",
  3912. "email": "kristofer@chromatichq.com"
  3913. },
  3914. {
  3915. "name": "Nigel Cunningham",
  3916. "email": "nigel.cunningham@technocrat.com.au"
  3917. }
  3918. ],
  3919. "description": "Shim to allow support of different psr/message versions.",
  3920. "support": {
  3921. "issues": "https://github.com/mpdf/psr-http-message-shim/issues",
  3922. "source": "https://github.com/mpdf/psr-http-message-shim/tree/v2.0.1"
  3923. },
  3924. "time": "2023-10-02T14:34:03+00:00"
  3925. },
  3926. {
  3927. "name": "mpdf/psr-log-aware-trait",
  3928. "version": "v3.0.0",
  3929. "source": {
  3930. "type": "git",
  3931. "url": "https://github.com/mpdf/psr-log-aware-trait.git",
  3932. "reference": "a633da6065e946cc491e1c962850344bb0bf3e78"
  3933. },
  3934. "dist": {
  3935. "type": "zip",
  3936. "url": "https://api.github.com/repos/mpdf/psr-log-aware-trait/zipball/a633da6065e946cc491e1c962850344bb0bf3e78",
  3937. "reference": "a633da6065e946cc491e1c962850344bb0bf3e78",
  3938. "shasum": ""
  3939. },
  3940. "require": {
  3941. "psr/log": "^3.0"
  3942. },
  3943. "type": "library",
  3944. "autoload": {
  3945. "psr-4": {
  3946. "Mpdf\\PsrLogAwareTrait\\": "src/"
  3947. }
  3948. },
  3949. "notification-url": "https://packagist.org/downloads/",
  3950. "license": [
  3951. "MIT"
  3952. ],
  3953. "authors": [
  3954. {
  3955. "name": "Mark Dorison",
  3956. "email": "mark@chromatichq.com"
  3957. },
  3958. {
  3959. "name": "Kristofer Widholm",
  3960. "email": "kristofer@chromatichq.com"
  3961. }
  3962. ],
  3963. "description": "Trait to allow support of different psr/log versions.",
  3964. "support": {
  3965. "issues": "https://github.com/mpdf/psr-log-aware-trait/issues",
  3966. "source": "https://github.com/mpdf/psr-log-aware-trait/tree/v3.0.0"
  3967. },
  3968. "time": "2023-05-03T06:19:36+00:00"
  3969. },
  3970. {
  3971. "name": "mtdowling/jmespath.php",
  3972. "version": "2.9.2",
  3973. "source": {
  3974. "type": "git",
  3975. "url": "https://github.com/jmespath/jmespath.php.git",
  3976. "reference": "2157c5e50e813ec6a96c1eed3be7f64a20fb32a8"
  3977. },
  3978. "dist": {
  3979. "type": "zip",
  3980. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/2157c5e50e813ec6a96c1eed3be7f64a20fb32a8",
  3981. "reference": "2157c5e50e813ec6a96c1eed3be7f64a20fb32a8",
  3982. "shasum": ""
  3983. },
  3984. "require": {
  3985. "php": "^7.2.5 || ^8.0",
  3986. "symfony/polyfill-mbstring": "^1.17"
  3987. },
  3988. "require-dev": {
  3989. "composer/xdebug-handler": "^3.0.3",
  3990. "phpunit/phpunit": "^8.5.52"
  3991. },
  3992. "bin": [
  3993. "bin/jp.php"
  3994. ],
  3995. "type": "library",
  3996. "extra": {
  3997. "branch-alias": {
  3998. "dev-master": "2.9-dev"
  3999. }
  4000. },
  4001. "autoload": {
  4002. "files": [
  4003. "src/JmesPath.php"
  4004. ],
  4005. "psr-4": {
  4006. "JmesPath\\": "src/"
  4007. }
  4008. },
  4009. "notification-url": "https://packagist.org/downloads/",
  4010. "license": [
  4011. "MIT"
  4012. ],
  4013. "authors": [
  4014. {
  4015. "name": "Graham Campbell",
  4016. "email": "hello@gjcampbell.co.uk",
  4017. "homepage": "https://github.com/GrahamCampbell"
  4018. },
  4019. {
  4020. "name": "Michael Dowling",
  4021. "email": "mtdowling@gmail.com",
  4022. "homepage": "https://github.com/mtdowling"
  4023. }
  4024. ],
  4025. "description": "Declaratively specify how to extract elements from a JSON document",
  4026. "keywords": [
  4027. "json",
  4028. "jsonpath"
  4029. ],
  4030. "support": {
  4031. "issues": "https://github.com/jmespath/jmespath.php/issues",
  4032. "source": "https://github.com/jmespath/jmespath.php/tree/2.9.2"
  4033. },
  4034. "time": "2026-07-06T18:56:19+00:00"
  4035. },
  4036. {
  4037. "name": "myclabs/deep-copy",
  4038. "version": "1.13.4",
  4039. "source": {
  4040. "type": "git",
  4041. "url": "https://github.com/myclabs/DeepCopy.git",
  4042. "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a"
  4043. },
  4044. "dist": {
  4045. "type": "zip",
  4046. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/07d290f0c47959fd5eed98c95ee5602db07e0b6a",
  4047. "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a",
  4048. "shasum": ""
  4049. },
  4050. "require": {
  4051. "php": "^7.1 || ^8.0"
  4052. },
  4053. "conflict": {
  4054. "doctrine/collections": "<1.6.8",
  4055. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  4056. },
  4057. "require-dev": {
  4058. "doctrine/collections": "^1.6.8",
  4059. "doctrine/common": "^2.13.3 || ^3.2.2",
  4060. "phpspec/prophecy": "^1.10",
  4061. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  4062. },
  4063. "type": "library",
  4064. "autoload": {
  4065. "files": [
  4066. "src/DeepCopy/deep_copy.php"
  4067. ],
  4068. "psr-4": {
  4069. "DeepCopy\\": "src/DeepCopy/"
  4070. }
  4071. },
  4072. "notification-url": "https://packagist.org/downloads/",
  4073. "license": [
  4074. "MIT"
  4075. ],
  4076. "description": "Create deep copies (clones) of your objects",
  4077. "keywords": [
  4078. "clone",
  4079. "copy",
  4080. "duplicate",
  4081. "object",
  4082. "object graph"
  4083. ],
  4084. "support": {
  4085. "issues": "https://github.com/myclabs/DeepCopy/issues",
  4086. "source": "https://github.com/myclabs/DeepCopy/tree/1.13.4"
  4087. },
  4088. "funding": [
  4089. {
  4090. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  4091. "type": "tidelift"
  4092. }
  4093. ],
  4094. "time": "2025-08-01T08:46:24+00:00"
  4095. },
  4096. {
  4097. "name": "nesbot/carbon",
  4098. "version": "3.11.0",
  4099. "source": {
  4100. "type": "git",
  4101. "url": "https://github.com/CarbonPHP/carbon.git",
  4102. "reference": "bdb375400dcd162624531666db4799b36b64e4a1"
  4103. },
  4104. "dist": {
  4105. "type": "zip",
  4106. "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/bdb375400dcd162624531666db4799b36b64e4a1",
  4107. "reference": "bdb375400dcd162624531666db4799b36b64e4a1",
  4108. "shasum": ""
  4109. },
  4110. "require": {
  4111. "carbonphp/carbon-doctrine-types": "<100.0",
  4112. "ext-json": "*",
  4113. "php": "^8.1",
  4114. "psr/clock": "^1.0",
  4115. "symfony/clock": "^6.3.12 || ^7.0 || ^8.0",
  4116. "symfony/polyfill-mbstring": "^1.0",
  4117. "symfony/translation": "^4.4.18 || ^5.2.1 || ^6.0 || ^7.0 || ^8.0"
  4118. },
  4119. "provide": {
  4120. "psr/clock-implementation": "1.0"
  4121. },
  4122. "require-dev": {
  4123. "doctrine/dbal": "^3.6.3 || ^4.0",
  4124. "doctrine/orm": "^2.15.2 || ^3.0",
  4125. "friendsofphp/php-cs-fixer": "^v3.87.1",
  4126. "kylekatarnls/multi-tester": "^2.5.3",
  4127. "phpmd/phpmd": "^2.15.0",
  4128. "phpstan/extension-installer": "^1.4.3",
  4129. "phpstan/phpstan": "^2.1.22",
  4130. "phpunit/phpunit": "^10.5.53",
  4131. "squizlabs/php_codesniffer": "^3.13.4"
  4132. },
  4133. "bin": [
  4134. "bin/carbon"
  4135. ],
  4136. "type": "library",
  4137. "extra": {
  4138. "laravel": {
  4139. "providers": [
  4140. "Carbon\\Laravel\\ServiceProvider"
  4141. ]
  4142. },
  4143. "phpstan": {
  4144. "includes": [
  4145. "extension.neon"
  4146. ]
  4147. },
  4148. "branch-alias": {
  4149. "dev-2.x": "2.x-dev",
  4150. "dev-master": "3.x-dev"
  4151. }
  4152. },
  4153. "autoload": {
  4154. "psr-4": {
  4155. "Carbon\\": "src/Carbon/"
  4156. }
  4157. },
  4158. "notification-url": "https://packagist.org/downloads/",
  4159. "license": [
  4160. "MIT"
  4161. ],
  4162. "authors": [
  4163. {
  4164. "name": "Brian Nesbitt",
  4165. "email": "brian@nesbot.com",
  4166. "homepage": "https://markido.com"
  4167. },
  4168. {
  4169. "name": "kylekatarnls",
  4170. "homepage": "https://github.com/kylekatarnls"
  4171. }
  4172. ],
  4173. "description": "An API extension for DateTime that supports 281 different languages.",
  4174. "homepage": "https://carbon.nesbot.com",
  4175. "keywords": [
  4176. "date",
  4177. "datetime",
  4178. "time"
  4179. ],
  4180. "support": {
  4181. "docs": "https://carbon.nesbot.com/docs",
  4182. "issues": "https://github.com/CarbonPHP/carbon/issues",
  4183. "source": "https://github.com/CarbonPHP/carbon"
  4184. },
  4185. "funding": [
  4186. {
  4187. "url": "https://github.com/sponsors/kylekatarnls",
  4188. "type": "github"
  4189. },
  4190. {
  4191. "url": "https://opencollective.com/Carbon#sponsor",
  4192. "type": "opencollective"
  4193. },
  4194. {
  4195. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  4196. "type": "tidelift"
  4197. }
  4198. ],
  4199. "time": "2025-12-02T21:04:28+00:00"
  4200. },
  4201. {
  4202. "name": "nette/schema",
  4203. "version": "v1.3.3",
  4204. "source": {
  4205. "type": "git",
  4206. "url": "https://github.com/nette/schema.git",
  4207. "reference": "2befc2f42d7c715fd9d95efc31b1081e5d765004"
  4208. },
  4209. "dist": {
  4210. "type": "zip",
  4211. "url": "https://api.github.com/repos/nette/schema/zipball/2befc2f42d7c715fd9d95efc31b1081e5d765004",
  4212. "reference": "2befc2f42d7c715fd9d95efc31b1081e5d765004",
  4213. "shasum": ""
  4214. },
  4215. "require": {
  4216. "nette/utils": "^4.0",
  4217. "php": "8.1 - 8.5"
  4218. },
  4219. "require-dev": {
  4220. "nette/tester": "^2.5.2",
  4221. "phpstan/phpstan-nette": "^2.0@stable",
  4222. "tracy/tracy": "^2.8"
  4223. },
  4224. "type": "library",
  4225. "extra": {
  4226. "branch-alias": {
  4227. "dev-master": "1.3-dev"
  4228. }
  4229. },
  4230. "autoload": {
  4231. "psr-4": {
  4232. "Nette\\": "src"
  4233. },
  4234. "classmap": [
  4235. "src/"
  4236. ]
  4237. },
  4238. "notification-url": "https://packagist.org/downloads/",
  4239. "license": [
  4240. "BSD-3-Clause",
  4241. "GPL-2.0-only",
  4242. "GPL-3.0-only"
  4243. ],
  4244. "authors": [
  4245. {
  4246. "name": "David Grudl",
  4247. "homepage": "https://davidgrudl.com"
  4248. },
  4249. {
  4250. "name": "Nette Community",
  4251. "homepage": "https://nette.org/contributors"
  4252. }
  4253. ],
  4254. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  4255. "homepage": "https://nette.org",
  4256. "keywords": [
  4257. "config",
  4258. "nette"
  4259. ],
  4260. "support": {
  4261. "issues": "https://github.com/nette/schema/issues",
  4262. "source": "https://github.com/nette/schema/tree/v1.3.3"
  4263. },
  4264. "time": "2025-10-30T22:57:59+00:00"
  4265. },
  4266. {
  4267. "name": "nette/utils",
  4268. "version": "v4.1.1",
  4269. "source": {
  4270. "type": "git",
  4271. "url": "https://github.com/nette/utils.git",
  4272. "reference": "c99059c0315591f1a0db7ad6002000288ab8dc72"
  4273. },
  4274. "dist": {
  4275. "type": "zip",
  4276. "url": "https://api.github.com/repos/nette/utils/zipball/c99059c0315591f1a0db7ad6002000288ab8dc72",
  4277. "reference": "c99059c0315591f1a0db7ad6002000288ab8dc72",
  4278. "shasum": ""
  4279. },
  4280. "require": {
  4281. "php": "8.2 - 8.5"
  4282. },
  4283. "conflict": {
  4284. "nette/finder": "<3",
  4285. "nette/schema": "<1.2.2"
  4286. },
  4287. "require-dev": {
  4288. "jetbrains/phpstorm-attributes": "^1.2",
  4289. "nette/tester": "^2.5",
  4290. "phpstan/phpstan-nette": "^2.0@stable",
  4291. "tracy/tracy": "^2.9"
  4292. },
  4293. "suggest": {
  4294. "ext-gd": "to use Image",
  4295. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  4296. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  4297. "ext-json": "to use Nette\\Utils\\Json",
  4298. "ext-mbstring": "to use Strings::lower() etc...",
  4299. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  4300. },
  4301. "type": "library",
  4302. "extra": {
  4303. "branch-alias": {
  4304. "dev-master": "4.1-dev"
  4305. }
  4306. },
  4307. "autoload": {
  4308. "psr-4": {
  4309. "Nette\\": "src"
  4310. },
  4311. "classmap": [
  4312. "src/"
  4313. ]
  4314. },
  4315. "notification-url": "https://packagist.org/downloads/",
  4316. "license": [
  4317. "BSD-3-Clause",
  4318. "GPL-2.0-only",
  4319. "GPL-3.0-only"
  4320. ],
  4321. "authors": [
  4322. {
  4323. "name": "David Grudl",
  4324. "homepage": "https://davidgrudl.com"
  4325. },
  4326. {
  4327. "name": "Nette Community",
  4328. "homepage": "https://nette.org/contributors"
  4329. }
  4330. ],
  4331. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  4332. "homepage": "https://nette.org",
  4333. "keywords": [
  4334. "array",
  4335. "core",
  4336. "datetime",
  4337. "images",
  4338. "json",
  4339. "nette",
  4340. "paginator",
  4341. "password",
  4342. "slugify",
  4343. "string",
  4344. "unicode",
  4345. "utf-8",
  4346. "utility",
  4347. "validation"
  4348. ],
  4349. "support": {
  4350. "issues": "https://github.com/nette/utils/issues",
  4351. "source": "https://github.com/nette/utils/tree/v4.1.1"
  4352. },
  4353. "time": "2025-12-22T12:14:32+00:00"
  4354. },
  4355. {
  4356. "name": "nikic/php-parser",
  4357. "version": "v5.7.0",
  4358. "source": {
  4359. "type": "git",
  4360. "url": "https://github.com/nikic/PHP-Parser.git",
  4361. "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82"
  4362. },
  4363. "dist": {
  4364. "type": "zip",
  4365. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/dca41cd15c2ac9d055ad70dbfd011130757d1f82",
  4366. "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82",
  4367. "shasum": ""
  4368. },
  4369. "require": {
  4370. "ext-ctype": "*",
  4371. "ext-json": "*",
  4372. "ext-tokenizer": "*",
  4373. "php": ">=7.4"
  4374. },
  4375. "require-dev": {
  4376. "ircmaxell/php-yacc": "^0.0.7",
  4377. "phpunit/phpunit": "^9.0"
  4378. },
  4379. "bin": [
  4380. "bin/php-parse"
  4381. ],
  4382. "type": "library",
  4383. "extra": {
  4384. "branch-alias": {
  4385. "dev-master": "5.x-dev"
  4386. }
  4387. },
  4388. "autoload": {
  4389. "psr-4": {
  4390. "PhpParser\\": "lib/PhpParser"
  4391. }
  4392. },
  4393. "notification-url": "https://packagist.org/downloads/",
  4394. "license": [
  4395. "BSD-3-Clause"
  4396. ],
  4397. "authors": [
  4398. {
  4399. "name": "Nikita Popov"
  4400. }
  4401. ],
  4402. "description": "A PHP parser written in PHP",
  4403. "keywords": [
  4404. "parser",
  4405. "php"
  4406. ],
  4407. "support": {
  4408. "issues": "https://github.com/nikic/PHP-Parser/issues",
  4409. "source": "https://github.com/nikic/PHP-Parser/tree/v5.7.0"
  4410. },
  4411. "time": "2025-12-06T11:56:16+00:00"
  4412. },
  4413. {
  4414. "name": "nunomaduro/termwind",
  4415. "version": "v2.3.3",
  4416. "source": {
  4417. "type": "git",
  4418. "url": "https://github.com/nunomaduro/termwind.git",
  4419. "reference": "6fb2a640ff502caace8e05fd7be3b503a7e1c017"
  4420. },
  4421. "dist": {
  4422. "type": "zip",
  4423. "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/6fb2a640ff502caace8e05fd7be3b503a7e1c017",
  4424. "reference": "6fb2a640ff502caace8e05fd7be3b503a7e1c017",
  4425. "shasum": ""
  4426. },
  4427. "require": {
  4428. "ext-mbstring": "*",
  4429. "php": "^8.2",
  4430. "symfony/console": "^7.3.6"
  4431. },
  4432. "require-dev": {
  4433. "illuminate/console": "^11.46.1",
  4434. "laravel/pint": "^1.25.1",
  4435. "mockery/mockery": "^1.6.12",
  4436. "pestphp/pest": "^2.36.0 || ^3.8.4 || ^4.1.3",
  4437. "phpstan/phpstan": "^1.12.32",
  4438. "phpstan/phpstan-strict-rules": "^1.6.2",
  4439. "symfony/var-dumper": "^7.3.5",
  4440. "thecodingmachine/phpstan-strict-rules": "^1.0.0"
  4441. },
  4442. "type": "library",
  4443. "extra": {
  4444. "laravel": {
  4445. "providers": [
  4446. "Termwind\\Laravel\\TermwindServiceProvider"
  4447. ]
  4448. },
  4449. "branch-alias": {
  4450. "dev-2.x": "2.x-dev"
  4451. }
  4452. },
  4453. "autoload": {
  4454. "files": [
  4455. "src/Functions.php"
  4456. ],
  4457. "psr-4": {
  4458. "Termwind\\": "src/"
  4459. }
  4460. },
  4461. "notification-url": "https://packagist.org/downloads/",
  4462. "license": [
  4463. "MIT"
  4464. ],
  4465. "authors": [
  4466. {
  4467. "name": "Nuno Maduro",
  4468. "email": "enunomaduro@gmail.com"
  4469. }
  4470. ],
  4471. "description": "Its like Tailwind CSS, but for the console.",
  4472. "keywords": [
  4473. "cli",
  4474. "console",
  4475. "css",
  4476. "package",
  4477. "php",
  4478. "style"
  4479. ],
  4480. "support": {
  4481. "issues": "https://github.com/nunomaduro/termwind/issues",
  4482. "source": "https://github.com/nunomaduro/termwind/tree/v2.3.3"
  4483. },
  4484. "funding": [
  4485. {
  4486. "url": "https://www.paypal.com/paypalme/enunomaduro",
  4487. "type": "custom"
  4488. },
  4489. {
  4490. "url": "https://github.com/nunomaduro",
  4491. "type": "github"
  4492. },
  4493. {
  4494. "url": "https://github.com/xiCO2k",
  4495. "type": "github"
  4496. }
  4497. ],
  4498. "time": "2025-11-20T02:34:59+00:00"
  4499. },
  4500. {
  4501. "name": "openspout/openspout",
  4502. "version": "v4.28.5",
  4503. "source": {
  4504. "type": "git",
  4505. "url": "https://github.com/openspout/openspout.git",
  4506. "reference": "ab05a09fe6fce57c90338f83280648a9786ce36b"
  4507. },
  4508. "dist": {
  4509. "type": "zip",
  4510. "url": "https://api.github.com/repos/openspout/openspout/zipball/ab05a09fe6fce57c90338f83280648a9786ce36b",
  4511. "reference": "ab05a09fe6fce57c90338f83280648a9786ce36b",
  4512. "shasum": ""
  4513. },
  4514. "require": {
  4515. "ext-dom": "*",
  4516. "ext-fileinfo": "*",
  4517. "ext-filter": "*",
  4518. "ext-libxml": "*",
  4519. "ext-xmlreader": "*",
  4520. "ext-zip": "*",
  4521. "php": "~8.2.0 || ~8.3.0 || ~8.4.0"
  4522. },
  4523. "require-dev": {
  4524. "ext-zlib": "*",
  4525. "friendsofphp/php-cs-fixer": "^3.68.3",
  4526. "infection/infection": "^0.29.10",
  4527. "phpbench/phpbench": "^1.4.0",
  4528. "phpstan/phpstan": "^2.1.2",
  4529. "phpstan/phpstan-phpunit": "^2.0.4",
  4530. "phpstan/phpstan-strict-rules": "^2",
  4531. "phpunit/phpunit": "^11.5.4"
  4532. },
  4533. "suggest": {
  4534. "ext-iconv": "To handle non UTF-8 CSV files (if \"php-mbstring\" is not already installed or is too limited)",
  4535. "ext-mbstring": "To handle non UTF-8 CSV files (if \"iconv\" is not already installed)"
  4536. },
  4537. "type": "library",
  4538. "extra": {
  4539. "branch-alias": {
  4540. "dev-master": "3.3.x-dev"
  4541. }
  4542. },
  4543. "autoload": {
  4544. "psr-4": {
  4545. "OpenSpout\\": "src/"
  4546. }
  4547. },
  4548. "notification-url": "https://packagist.org/downloads/",
  4549. "license": [
  4550. "MIT"
  4551. ],
  4552. "authors": [
  4553. {
  4554. "name": "Adrien Loison",
  4555. "email": "adrien@box.com"
  4556. }
  4557. ],
  4558. "description": "PHP Library to read and write spreadsheet files (CSV, XLSX and ODS), in a fast and scalable way",
  4559. "homepage": "https://github.com/openspout/openspout",
  4560. "keywords": [
  4561. "OOXML",
  4562. "csv",
  4563. "excel",
  4564. "memory",
  4565. "odf",
  4566. "ods",
  4567. "office",
  4568. "open",
  4569. "php",
  4570. "read",
  4571. "scale",
  4572. "spreadsheet",
  4573. "stream",
  4574. "write",
  4575. "xlsx"
  4576. ],
  4577. "support": {
  4578. "issues": "https://github.com/openspout/openspout/issues",
  4579. "source": "https://github.com/openspout/openspout/tree/v4.28.5"
  4580. },
  4581. "funding": [
  4582. {
  4583. "url": "https://paypal.me/filippotessarotto",
  4584. "type": "custom"
  4585. },
  4586. {
  4587. "url": "https://github.com/Slamdunk",
  4588. "type": "github"
  4589. }
  4590. ],
  4591. "time": "2025-01-30T13:51:11+00:00"
  4592. },
  4593. {
  4594. "name": "owen-it/laravel-auditing",
  4595. "version": "v14.0.0",
  4596. "source": {
  4597. "type": "git",
  4598. "url": "https://github.com/owen-it/laravel-auditing.git",
  4599. "reference": "f92602d1b3f53df29ddd577290e9d735ea707c53"
  4600. },
  4601. "dist": {
  4602. "type": "zip",
  4603. "url": "https://api.github.com/repos/owen-it/laravel-auditing/zipball/f92602d1b3f53df29ddd577290e9d735ea707c53",
  4604. "reference": "f92602d1b3f53df29ddd577290e9d735ea707c53",
  4605. "shasum": ""
  4606. },
  4607. "require": {
  4608. "ext-json": "*",
  4609. "illuminate/console": "^11.0|^12.0",
  4610. "illuminate/database": "^11.0|^12.0",
  4611. "illuminate/filesystem": "^11.0|^12.0",
  4612. "php": "^8.2"
  4613. },
  4614. "require-dev": {
  4615. "mockery/mockery": "^1.5.1",
  4616. "orchestra/testbench": "^9.0|^10.0",
  4617. "phpunit/phpunit": "^11.0"
  4618. },
  4619. "type": "package",
  4620. "extra": {
  4621. "laravel": {
  4622. "providers": [
  4623. "OwenIt\\Auditing\\AuditingServiceProvider"
  4624. ]
  4625. },
  4626. "branch-alias": {
  4627. "dev-master": "v14-dev"
  4628. }
  4629. },
  4630. "autoload": {
  4631. "psr-4": {
  4632. "OwenIt\\Auditing\\": "src/"
  4633. }
  4634. },
  4635. "notification-url": "https://packagist.org/downloads/",
  4636. "license": [
  4637. "MIT"
  4638. ],
  4639. "authors": [
  4640. {
  4641. "name": "Antério Vieira",
  4642. "email": "anteriovieira@gmail.com"
  4643. },
  4644. {
  4645. "name": "Raphael França",
  4646. "email": "raphaelfrancabsb@gmail.com"
  4647. },
  4648. {
  4649. "name": "Morten D. Hansen",
  4650. "email": "morten@visia.dk"
  4651. }
  4652. ],
  4653. "description": "Audit changes of your Eloquent models in Laravel",
  4654. "homepage": "https://laravel-auditing.com",
  4655. "keywords": [
  4656. "Accountability",
  4657. "Audit",
  4658. "auditing",
  4659. "changes",
  4660. "eloquent",
  4661. "history",
  4662. "laravel",
  4663. "log",
  4664. "logging",
  4665. "lumen",
  4666. "observer",
  4667. "record",
  4668. "revision",
  4669. "tracking"
  4670. ],
  4671. "support": {
  4672. "issues": "https://github.com/owen-it/laravel-auditing/issues",
  4673. "source": "https://github.com/owen-it/laravel-auditing"
  4674. },
  4675. "time": "2025-02-26T16:40:54+00:00"
  4676. },
  4677. {
  4678. "name": "paragonie/constant_time_encoding",
  4679. "version": "v3.1.3",
  4680. "source": {
  4681. "type": "git",
  4682. "url": "https://github.com/paragonie/constant_time_encoding.git",
  4683. "reference": "d5b01a39b3415c2cd581d3bd3a3575c1ebbd8e77"
  4684. },
  4685. "dist": {
  4686. "type": "zip",
  4687. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/d5b01a39b3415c2cd581d3bd3a3575c1ebbd8e77",
  4688. "reference": "d5b01a39b3415c2cd581d3bd3a3575c1ebbd8e77",
  4689. "shasum": ""
  4690. },
  4691. "require": {
  4692. "php": "^8"
  4693. },
  4694. "require-dev": {
  4695. "infection/infection": "^0",
  4696. "nikic/php-fuzzer": "^0",
  4697. "phpunit/phpunit": "^9|^10|^11",
  4698. "vimeo/psalm": "^4|^5|^6"
  4699. },
  4700. "type": "library",
  4701. "autoload": {
  4702. "psr-4": {
  4703. "ParagonIE\\ConstantTime\\": "src/"
  4704. }
  4705. },
  4706. "notification-url": "https://packagist.org/downloads/",
  4707. "license": [
  4708. "MIT"
  4709. ],
  4710. "authors": [
  4711. {
  4712. "name": "Paragon Initiative Enterprises",
  4713. "email": "security@paragonie.com",
  4714. "homepage": "https://paragonie.com",
  4715. "role": "Maintainer"
  4716. },
  4717. {
  4718. "name": "Steve 'Sc00bz' Thomas",
  4719. "email": "steve@tobtu.com",
  4720. "homepage": "https://www.tobtu.com",
  4721. "role": "Original Developer"
  4722. }
  4723. ],
  4724. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  4725. "keywords": [
  4726. "base16",
  4727. "base32",
  4728. "base32_decode",
  4729. "base32_encode",
  4730. "base64",
  4731. "base64_decode",
  4732. "base64_encode",
  4733. "bin2hex",
  4734. "encoding",
  4735. "hex",
  4736. "hex2bin",
  4737. "rfc4648"
  4738. ],
  4739. "support": {
  4740. "email": "info@paragonie.com",
  4741. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  4742. "source": "https://github.com/paragonie/constant_time_encoding"
  4743. },
  4744. "time": "2025-09-24T15:06:41+00:00"
  4745. },
  4746. {
  4747. "name": "paragonie/random_compat",
  4748. "version": "v9.99.100",
  4749. "source": {
  4750. "type": "git",
  4751. "url": "https://github.com/paragonie/random_compat.git",
  4752. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  4753. },
  4754. "dist": {
  4755. "type": "zip",
  4756. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  4757. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  4758. "shasum": ""
  4759. },
  4760. "require": {
  4761. "php": ">= 7"
  4762. },
  4763. "require-dev": {
  4764. "phpunit/phpunit": "4.*|5.*",
  4765. "vimeo/psalm": "^1"
  4766. },
  4767. "suggest": {
  4768. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  4769. },
  4770. "type": "library",
  4771. "notification-url": "https://packagist.org/downloads/",
  4772. "license": [
  4773. "MIT"
  4774. ],
  4775. "authors": [
  4776. {
  4777. "name": "Paragon Initiative Enterprises",
  4778. "email": "security@paragonie.com",
  4779. "homepage": "https://paragonie.com"
  4780. }
  4781. ],
  4782. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  4783. "keywords": [
  4784. "csprng",
  4785. "polyfill",
  4786. "pseudorandom",
  4787. "random"
  4788. ],
  4789. "support": {
  4790. "email": "info@paragonie.com",
  4791. "issues": "https://github.com/paragonie/random_compat/issues",
  4792. "source": "https://github.com/paragonie/random_compat"
  4793. },
  4794. "time": "2020-10-15T08:29:30+00:00"
  4795. },
  4796. {
  4797. "name": "phpoffice/phpspreadsheet",
  4798. "version": "5.4.0",
  4799. "source": {
  4800. "type": "git",
  4801. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  4802. "reference": "48f2fe37d64c2dece0ef71fb2ac55497566782af"
  4803. },
  4804. "dist": {
  4805. "type": "zip",
  4806. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/48f2fe37d64c2dece0ef71fb2ac55497566782af",
  4807. "reference": "48f2fe37d64c2dece0ef71fb2ac55497566782af",
  4808. "shasum": ""
  4809. },
  4810. "require": {
  4811. "composer/pcre": "^1||^2||^3",
  4812. "ext-ctype": "*",
  4813. "ext-dom": "*",
  4814. "ext-fileinfo": "*",
  4815. "ext-filter": "*",
  4816. "ext-gd": "*",
  4817. "ext-iconv": "*",
  4818. "ext-libxml": "*",
  4819. "ext-mbstring": "*",
  4820. "ext-simplexml": "*",
  4821. "ext-xml": "*",
  4822. "ext-xmlreader": "*",
  4823. "ext-xmlwriter": "*",
  4824. "ext-zip": "*",
  4825. "ext-zlib": "*",
  4826. "maennchen/zipstream-php": "^2.1 || ^3.0",
  4827. "markbaker/complex": "^3.0",
  4828. "markbaker/matrix": "^3.0",
  4829. "php": "^8.1",
  4830. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  4831. },
  4832. "require-dev": {
  4833. "dealerdirect/phpcodesniffer-composer-installer": "dev-main",
  4834. "dompdf/dompdf": "^2.0 || ^3.0",
  4835. "ext-intl": "*",
  4836. "friendsofphp/php-cs-fixer": "^3.2",
  4837. "mitoteam/jpgraph": "^10.5",
  4838. "mpdf/mpdf": "^8.1.1",
  4839. "phpcompatibility/php-compatibility": "^9.3",
  4840. "phpstan/phpstan": "^1.1 || ^2.0",
  4841. "phpstan/phpstan-deprecation-rules": "^1.0 || ^2.0",
  4842. "phpstan/phpstan-phpunit": "^1.0 || ^2.0",
  4843. "phpunit/phpunit": "^10.5",
  4844. "squizlabs/php_codesniffer": "^3.7",
  4845. "tecnickcom/tcpdf": "^6.5"
  4846. },
  4847. "suggest": {
  4848. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  4849. "ext-intl": "PHP Internationalization Functions, required for NumberFormat Wizard and StringHelper::setLocale()",
  4850. "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  4851. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  4852. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  4853. },
  4854. "type": "library",
  4855. "autoload": {
  4856. "psr-4": {
  4857. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  4858. }
  4859. },
  4860. "notification-url": "https://packagist.org/downloads/",
  4861. "license": [
  4862. "MIT"
  4863. ],
  4864. "authors": [
  4865. {
  4866. "name": "Maarten Balliauw",
  4867. "homepage": "https://blog.maartenballiauw.be"
  4868. },
  4869. {
  4870. "name": "Mark Baker",
  4871. "homepage": "https://markbakeruk.net"
  4872. },
  4873. {
  4874. "name": "Franck Lefevre",
  4875. "homepage": "https://rootslabs.net"
  4876. },
  4877. {
  4878. "name": "Erik Tilt"
  4879. },
  4880. {
  4881. "name": "Adrien Crivelli"
  4882. },
  4883. {
  4884. "name": "Owen Leibman"
  4885. }
  4886. ],
  4887. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  4888. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  4889. "keywords": [
  4890. "OpenXML",
  4891. "excel",
  4892. "gnumeric",
  4893. "ods",
  4894. "php",
  4895. "spreadsheet",
  4896. "xls",
  4897. "xlsx"
  4898. ],
  4899. "support": {
  4900. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  4901. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/5.4.0"
  4902. },
  4903. "time": "2026-01-11T04:52:00+00:00"
  4904. },
  4905. {
  4906. "name": "phpoption/phpoption",
  4907. "version": "1.9.5",
  4908. "source": {
  4909. "type": "git",
  4910. "url": "https://github.com/schmittjoh/php-option.git",
  4911. "reference": "75365b91986c2405cf5e1e012c5595cd487a98be"
  4912. },
  4913. "dist": {
  4914. "type": "zip",
  4915. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/75365b91986c2405cf5e1e012c5595cd487a98be",
  4916. "reference": "75365b91986c2405cf5e1e012c5595cd487a98be",
  4917. "shasum": ""
  4918. },
  4919. "require": {
  4920. "php": "^7.2.5 || ^8.0"
  4921. },
  4922. "require-dev": {
  4923. "bamarni/composer-bin-plugin": "^1.8.2",
  4924. "phpunit/phpunit": "^8.5.44 || ^9.6.25 || ^10.5.53 || ^11.5.34"
  4925. },
  4926. "type": "library",
  4927. "extra": {
  4928. "bamarni-bin": {
  4929. "bin-links": true,
  4930. "forward-command": false
  4931. },
  4932. "branch-alias": {
  4933. "dev-master": "1.9-dev"
  4934. }
  4935. },
  4936. "autoload": {
  4937. "psr-4": {
  4938. "PhpOption\\": "src/PhpOption/"
  4939. }
  4940. },
  4941. "notification-url": "https://packagist.org/downloads/",
  4942. "license": [
  4943. "Apache-2.0"
  4944. ],
  4945. "authors": [
  4946. {
  4947. "name": "Johannes M. Schmitt",
  4948. "email": "schmittjoh@gmail.com",
  4949. "homepage": "https://github.com/schmittjoh"
  4950. },
  4951. {
  4952. "name": "Graham Campbell",
  4953. "email": "hello@gjcampbell.co.uk",
  4954. "homepage": "https://github.com/GrahamCampbell"
  4955. }
  4956. ],
  4957. "description": "Option Type for PHP",
  4958. "keywords": [
  4959. "language",
  4960. "option",
  4961. "php",
  4962. "type"
  4963. ],
  4964. "support": {
  4965. "issues": "https://github.com/schmittjoh/php-option/issues",
  4966. "source": "https://github.com/schmittjoh/php-option/tree/1.9.5"
  4967. },
  4968. "funding": [
  4969. {
  4970. "url": "https://github.com/GrahamCampbell",
  4971. "type": "github"
  4972. },
  4973. {
  4974. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  4975. "type": "tidelift"
  4976. }
  4977. ],
  4978. "time": "2025-12-27T19:41:33+00:00"
  4979. },
  4980. {
  4981. "name": "pragmarx/google2fa",
  4982. "version": "v9.0.0",
  4983. "source": {
  4984. "type": "git",
  4985. "url": "https://github.com/antonioribeiro/google2fa.git",
  4986. "reference": "e6bc62dd6ae83acc475f57912e27466019a1f2cf"
  4987. },
  4988. "dist": {
  4989. "type": "zip",
  4990. "url": "https://api.github.com/repos/antonioribeiro/google2fa/zipball/e6bc62dd6ae83acc475f57912e27466019a1f2cf",
  4991. "reference": "e6bc62dd6ae83acc475f57912e27466019a1f2cf",
  4992. "shasum": ""
  4993. },
  4994. "require": {
  4995. "paragonie/constant_time_encoding": "^1.0|^2.0|^3.0",
  4996. "php": "^7.1|^8.0"
  4997. },
  4998. "require-dev": {
  4999. "phpstan/phpstan": "^1.9",
  5000. "phpunit/phpunit": "^7.5.15|^8.5|^9.0"
  5001. },
  5002. "type": "library",
  5003. "autoload": {
  5004. "psr-4": {
  5005. "PragmaRX\\Google2FA\\": "src/"
  5006. }
  5007. },
  5008. "notification-url": "https://packagist.org/downloads/",
  5009. "license": [
  5010. "MIT"
  5011. ],
  5012. "authors": [
  5013. {
  5014. "name": "Antonio Carlos Ribeiro",
  5015. "email": "acr@antoniocarlosribeiro.com",
  5016. "role": "Creator & Designer"
  5017. }
  5018. ],
  5019. "description": "A One Time Password Authentication package, compatible with Google Authenticator.",
  5020. "keywords": [
  5021. "2fa",
  5022. "Authentication",
  5023. "Two Factor Authentication",
  5024. "google2fa"
  5025. ],
  5026. "support": {
  5027. "issues": "https://github.com/antonioribeiro/google2fa/issues",
  5028. "source": "https://github.com/antonioribeiro/google2fa/tree/v9.0.0"
  5029. },
  5030. "time": "2025-09-19T22:51:08+00:00"
  5031. },
  5032. {
  5033. "name": "predis/predis",
  5034. "version": "v3.3.0",
  5035. "source": {
  5036. "type": "git",
  5037. "url": "https://github.com/predis/predis.git",
  5038. "reference": "153097374b39a2f737fe700ebcd725642526cdec"
  5039. },
  5040. "dist": {
  5041. "type": "zip",
  5042. "url": "https://api.github.com/repos/predis/predis/zipball/153097374b39a2f737fe700ebcd725642526cdec",
  5043. "reference": "153097374b39a2f737fe700ebcd725642526cdec",
  5044. "shasum": ""
  5045. },
  5046. "require": {
  5047. "php": "^7.2 || ^8.0",
  5048. "psr/http-message": "^1.0|^2.0"
  5049. },
  5050. "require-dev": {
  5051. "friendsofphp/php-cs-fixer": "^3.3",
  5052. "phpstan/phpstan": "^1.9",
  5053. "phpunit/phpcov": "^6.0 || ^8.0",
  5054. "phpunit/phpunit": "^8.0 || ~9.4.4"
  5055. },
  5056. "suggest": {
  5057. "ext-relay": "Faster connection with in-memory caching (>=0.6.2)"
  5058. },
  5059. "type": "library",
  5060. "autoload": {
  5061. "psr-4": {
  5062. "Predis\\": "src/"
  5063. }
  5064. },
  5065. "notification-url": "https://packagist.org/downloads/",
  5066. "license": [
  5067. "MIT"
  5068. ],
  5069. "authors": [
  5070. {
  5071. "name": "Till Krüss",
  5072. "homepage": "https://till.im",
  5073. "role": "Maintainer"
  5074. }
  5075. ],
  5076. "description": "A flexible and feature-complete Redis/Valkey client for PHP.",
  5077. "homepage": "http://github.com/predis/predis",
  5078. "keywords": [
  5079. "nosql",
  5080. "predis",
  5081. "redis"
  5082. ],
  5083. "support": {
  5084. "issues": "https://github.com/predis/predis/issues",
  5085. "source": "https://github.com/predis/predis/tree/v3.3.0"
  5086. },
  5087. "funding": [
  5088. {
  5089. "url": "https://github.com/sponsors/tillkruss",
  5090. "type": "github"
  5091. }
  5092. ],
  5093. "time": "2025-11-24T17:48:50+00:00"
  5094. },
  5095. {
  5096. "name": "propaganistas/laravel-phone",
  5097. "version": "6.0.3",
  5098. "source": {
  5099. "type": "git",
  5100. "url": "https://github.com/Propaganistas/Laravel-Phone.git",
  5101. "reference": "b0e2bdb44cfbeaf2466862aaf854815605b5205a"
  5102. },
  5103. "dist": {
  5104. "type": "zip",
  5105. "url": "https://api.github.com/repos/Propaganistas/Laravel-Phone/zipball/b0e2bdb44cfbeaf2466862aaf854815605b5205a",
  5106. "reference": "b0e2bdb44cfbeaf2466862aaf854815605b5205a",
  5107. "shasum": ""
  5108. },
  5109. "require": {
  5110. "ext-mbstring": "*",
  5111. "giggsey/libphonenumber-for-php-lite": "^9.0",
  5112. "illuminate/contracts": "^11.0|^12.0|^13.0",
  5113. "illuminate/support": "^11.0|^12.0|^13.0",
  5114. "illuminate/validation": "^11.0|^12.0|^13.0",
  5115. "php": "^8.2"
  5116. },
  5117. "require-dev": {
  5118. "laravel/pint": "^1.21",
  5119. "orchestra/testbench": "*",
  5120. "phpunit/phpunit": "^11.5.3"
  5121. },
  5122. "type": "library",
  5123. "extra": {
  5124. "laravel": {
  5125. "providers": [
  5126. "Propaganistas\\LaravelPhone\\PhoneServiceProvider"
  5127. ]
  5128. }
  5129. },
  5130. "autoload": {
  5131. "files": [
  5132. "src/helpers.php"
  5133. ],
  5134. "psr-4": {
  5135. "Propaganistas\\LaravelPhone\\": "src/"
  5136. }
  5137. },
  5138. "notification-url": "https://packagist.org/downloads/",
  5139. "license": [
  5140. "MIT"
  5141. ],
  5142. "authors": [
  5143. {
  5144. "name": "Propaganistas",
  5145. "email": "Propaganistas@users.noreply.github.com"
  5146. }
  5147. ],
  5148. "description": "Adds phone number functionality to Laravel based on Google's libphonenumber API.",
  5149. "keywords": [
  5150. "laravel",
  5151. "libphonenumber",
  5152. "phone",
  5153. "validation"
  5154. ],
  5155. "support": {
  5156. "issues": "https://github.com/Propaganistas/Laravel-Phone/issues",
  5157. "source": "https://github.com/Propaganistas/Laravel-Phone/tree/6.0.3"
  5158. },
  5159. "funding": [
  5160. {
  5161. "url": "https://github.com/Propaganistas",
  5162. "type": "github"
  5163. }
  5164. ],
  5165. "time": "2026-03-18T07:05:47+00:00"
  5166. },
  5167. {
  5168. "name": "psr/clock",
  5169. "version": "1.0.0",
  5170. "source": {
  5171. "type": "git",
  5172. "url": "https://github.com/php-fig/clock.git",
  5173. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  5174. },
  5175. "dist": {
  5176. "type": "zip",
  5177. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5178. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5179. "shasum": ""
  5180. },
  5181. "require": {
  5182. "php": "^7.0 || ^8.0"
  5183. },
  5184. "type": "library",
  5185. "autoload": {
  5186. "psr-4": {
  5187. "Psr\\Clock\\": "src/"
  5188. }
  5189. },
  5190. "notification-url": "https://packagist.org/downloads/",
  5191. "license": [
  5192. "MIT"
  5193. ],
  5194. "authors": [
  5195. {
  5196. "name": "PHP-FIG",
  5197. "homepage": "https://www.php-fig.org/"
  5198. }
  5199. ],
  5200. "description": "Common interface for reading the clock.",
  5201. "homepage": "https://github.com/php-fig/clock",
  5202. "keywords": [
  5203. "clock",
  5204. "now",
  5205. "psr",
  5206. "psr-20",
  5207. "time"
  5208. ],
  5209. "support": {
  5210. "issues": "https://github.com/php-fig/clock/issues",
  5211. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  5212. },
  5213. "time": "2022-11-25T14:36:26+00:00"
  5214. },
  5215. {
  5216. "name": "psr/container",
  5217. "version": "2.0.2",
  5218. "source": {
  5219. "type": "git",
  5220. "url": "https://github.com/php-fig/container.git",
  5221. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  5222. },
  5223. "dist": {
  5224. "type": "zip",
  5225. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5226. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5227. "shasum": ""
  5228. },
  5229. "require": {
  5230. "php": ">=7.4.0"
  5231. },
  5232. "type": "library",
  5233. "extra": {
  5234. "branch-alias": {
  5235. "dev-master": "2.0.x-dev"
  5236. }
  5237. },
  5238. "autoload": {
  5239. "psr-4": {
  5240. "Psr\\Container\\": "src/"
  5241. }
  5242. },
  5243. "notification-url": "https://packagist.org/downloads/",
  5244. "license": [
  5245. "MIT"
  5246. ],
  5247. "authors": [
  5248. {
  5249. "name": "PHP-FIG",
  5250. "homepage": "https://www.php-fig.org/"
  5251. }
  5252. ],
  5253. "description": "Common Container Interface (PHP FIG PSR-11)",
  5254. "homepage": "https://github.com/php-fig/container",
  5255. "keywords": [
  5256. "PSR-11",
  5257. "container",
  5258. "container-interface",
  5259. "container-interop",
  5260. "psr"
  5261. ],
  5262. "support": {
  5263. "issues": "https://github.com/php-fig/container/issues",
  5264. "source": "https://github.com/php-fig/container/tree/2.0.2"
  5265. },
  5266. "time": "2021-11-05T16:47:00+00:00"
  5267. },
  5268. {
  5269. "name": "psr/event-dispatcher",
  5270. "version": "1.0.0",
  5271. "source": {
  5272. "type": "git",
  5273. "url": "https://github.com/php-fig/event-dispatcher.git",
  5274. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5275. },
  5276. "dist": {
  5277. "type": "zip",
  5278. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5279. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5280. "shasum": ""
  5281. },
  5282. "require": {
  5283. "php": ">=7.2.0"
  5284. },
  5285. "type": "library",
  5286. "extra": {
  5287. "branch-alias": {
  5288. "dev-master": "1.0.x-dev"
  5289. }
  5290. },
  5291. "autoload": {
  5292. "psr-4": {
  5293. "Psr\\EventDispatcher\\": "src/"
  5294. }
  5295. },
  5296. "notification-url": "https://packagist.org/downloads/",
  5297. "license": [
  5298. "MIT"
  5299. ],
  5300. "authors": [
  5301. {
  5302. "name": "PHP-FIG",
  5303. "homepage": "http://www.php-fig.org/"
  5304. }
  5305. ],
  5306. "description": "Standard interfaces for event handling.",
  5307. "keywords": [
  5308. "events",
  5309. "psr",
  5310. "psr-14"
  5311. ],
  5312. "support": {
  5313. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5314. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5315. },
  5316. "time": "2019-01-08T18:20:26+00:00"
  5317. },
  5318. {
  5319. "name": "psr/http-client",
  5320. "version": "1.0.3",
  5321. "source": {
  5322. "type": "git",
  5323. "url": "https://github.com/php-fig/http-client.git",
  5324. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  5325. },
  5326. "dist": {
  5327. "type": "zip",
  5328. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5329. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5330. "shasum": ""
  5331. },
  5332. "require": {
  5333. "php": "^7.0 || ^8.0",
  5334. "psr/http-message": "^1.0 || ^2.0"
  5335. },
  5336. "type": "library",
  5337. "extra": {
  5338. "branch-alias": {
  5339. "dev-master": "1.0.x-dev"
  5340. }
  5341. },
  5342. "autoload": {
  5343. "psr-4": {
  5344. "Psr\\Http\\Client\\": "src/"
  5345. }
  5346. },
  5347. "notification-url": "https://packagist.org/downloads/",
  5348. "license": [
  5349. "MIT"
  5350. ],
  5351. "authors": [
  5352. {
  5353. "name": "PHP-FIG",
  5354. "homepage": "https://www.php-fig.org/"
  5355. }
  5356. ],
  5357. "description": "Common interface for HTTP clients",
  5358. "homepage": "https://github.com/php-fig/http-client",
  5359. "keywords": [
  5360. "http",
  5361. "http-client",
  5362. "psr",
  5363. "psr-18"
  5364. ],
  5365. "support": {
  5366. "source": "https://github.com/php-fig/http-client"
  5367. },
  5368. "time": "2023-09-23T14:17:50+00:00"
  5369. },
  5370. {
  5371. "name": "psr/http-factory",
  5372. "version": "1.1.0",
  5373. "source": {
  5374. "type": "git",
  5375. "url": "https://github.com/php-fig/http-factory.git",
  5376. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  5377. },
  5378. "dist": {
  5379. "type": "zip",
  5380. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5381. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5382. "shasum": ""
  5383. },
  5384. "require": {
  5385. "php": ">=7.1",
  5386. "psr/http-message": "^1.0 || ^2.0"
  5387. },
  5388. "type": "library",
  5389. "extra": {
  5390. "branch-alias": {
  5391. "dev-master": "1.0.x-dev"
  5392. }
  5393. },
  5394. "autoload": {
  5395. "psr-4": {
  5396. "Psr\\Http\\Message\\": "src/"
  5397. }
  5398. },
  5399. "notification-url": "https://packagist.org/downloads/",
  5400. "license": [
  5401. "MIT"
  5402. ],
  5403. "authors": [
  5404. {
  5405. "name": "PHP-FIG",
  5406. "homepage": "https://www.php-fig.org/"
  5407. }
  5408. ],
  5409. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  5410. "keywords": [
  5411. "factory",
  5412. "http",
  5413. "message",
  5414. "psr",
  5415. "psr-17",
  5416. "psr-7",
  5417. "request",
  5418. "response"
  5419. ],
  5420. "support": {
  5421. "source": "https://github.com/php-fig/http-factory"
  5422. },
  5423. "time": "2024-04-15T12:06:14+00:00"
  5424. },
  5425. {
  5426. "name": "psr/http-message",
  5427. "version": "2.0",
  5428. "source": {
  5429. "type": "git",
  5430. "url": "https://github.com/php-fig/http-message.git",
  5431. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  5432. },
  5433. "dist": {
  5434. "type": "zip",
  5435. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5436. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5437. "shasum": ""
  5438. },
  5439. "require": {
  5440. "php": "^7.2 || ^8.0"
  5441. },
  5442. "type": "library",
  5443. "extra": {
  5444. "branch-alias": {
  5445. "dev-master": "2.0.x-dev"
  5446. }
  5447. },
  5448. "autoload": {
  5449. "psr-4": {
  5450. "Psr\\Http\\Message\\": "src/"
  5451. }
  5452. },
  5453. "notification-url": "https://packagist.org/downloads/",
  5454. "license": [
  5455. "MIT"
  5456. ],
  5457. "authors": [
  5458. {
  5459. "name": "PHP-FIG",
  5460. "homepage": "https://www.php-fig.org/"
  5461. }
  5462. ],
  5463. "description": "Common interface for HTTP messages",
  5464. "homepage": "https://github.com/php-fig/http-message",
  5465. "keywords": [
  5466. "http",
  5467. "http-message",
  5468. "psr",
  5469. "psr-7",
  5470. "request",
  5471. "response"
  5472. ],
  5473. "support": {
  5474. "source": "https://github.com/php-fig/http-message/tree/2.0"
  5475. },
  5476. "time": "2023-04-04T09:54:51+00:00"
  5477. },
  5478. {
  5479. "name": "psr/log",
  5480. "version": "3.0.2",
  5481. "source": {
  5482. "type": "git",
  5483. "url": "https://github.com/php-fig/log.git",
  5484. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  5485. },
  5486. "dist": {
  5487. "type": "zip",
  5488. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  5489. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  5490. "shasum": ""
  5491. },
  5492. "require": {
  5493. "php": ">=8.0.0"
  5494. },
  5495. "type": "library",
  5496. "extra": {
  5497. "branch-alias": {
  5498. "dev-master": "3.x-dev"
  5499. }
  5500. },
  5501. "autoload": {
  5502. "psr-4": {
  5503. "Psr\\Log\\": "src"
  5504. }
  5505. },
  5506. "notification-url": "https://packagist.org/downloads/",
  5507. "license": [
  5508. "MIT"
  5509. ],
  5510. "authors": [
  5511. {
  5512. "name": "PHP-FIG",
  5513. "homepage": "https://www.php-fig.org/"
  5514. }
  5515. ],
  5516. "description": "Common interface for logging libraries",
  5517. "homepage": "https://github.com/php-fig/log",
  5518. "keywords": [
  5519. "log",
  5520. "psr",
  5521. "psr-3"
  5522. ],
  5523. "support": {
  5524. "source": "https://github.com/php-fig/log/tree/3.0.2"
  5525. },
  5526. "time": "2024-09-11T13:17:53+00:00"
  5527. },
  5528. {
  5529. "name": "psr/simple-cache",
  5530. "version": "3.0.0",
  5531. "source": {
  5532. "type": "git",
  5533. "url": "https://github.com/php-fig/simple-cache.git",
  5534. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  5535. },
  5536. "dist": {
  5537. "type": "zip",
  5538. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  5539. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  5540. "shasum": ""
  5541. },
  5542. "require": {
  5543. "php": ">=8.0.0"
  5544. },
  5545. "type": "library",
  5546. "extra": {
  5547. "branch-alias": {
  5548. "dev-master": "3.0.x-dev"
  5549. }
  5550. },
  5551. "autoload": {
  5552. "psr-4": {
  5553. "Psr\\SimpleCache\\": "src/"
  5554. }
  5555. },
  5556. "notification-url": "https://packagist.org/downloads/",
  5557. "license": [
  5558. "MIT"
  5559. ],
  5560. "authors": [
  5561. {
  5562. "name": "PHP-FIG",
  5563. "homepage": "https://www.php-fig.org/"
  5564. }
  5565. ],
  5566. "description": "Common interfaces for simple caching",
  5567. "keywords": [
  5568. "cache",
  5569. "caching",
  5570. "psr",
  5571. "psr-16",
  5572. "simple-cache"
  5573. ],
  5574. "support": {
  5575. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  5576. },
  5577. "time": "2021-10-29T13:26:27+00:00"
  5578. },
  5579. {
  5580. "name": "psy/psysh",
  5581. "version": "v0.12.18",
  5582. "source": {
  5583. "type": "git",
  5584. "url": "https://github.com/bobthecow/psysh.git",
  5585. "reference": "ddff0ac01beddc251786fe70367cd8bbdb258196"
  5586. },
  5587. "dist": {
  5588. "type": "zip",
  5589. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/ddff0ac01beddc251786fe70367cd8bbdb258196",
  5590. "reference": "ddff0ac01beddc251786fe70367cd8bbdb258196",
  5591. "shasum": ""
  5592. },
  5593. "require": {
  5594. "ext-json": "*",
  5595. "ext-tokenizer": "*",
  5596. "nikic/php-parser": "^5.0 || ^4.0",
  5597. "php": "^8.0 || ^7.4",
  5598. "symfony/console": "^8.0 || ^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  5599. "symfony/var-dumper": "^8.0 || ^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  5600. },
  5601. "conflict": {
  5602. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  5603. },
  5604. "require-dev": {
  5605. "bamarni/composer-bin-plugin": "^1.2",
  5606. "composer/class-map-generator": "^1.6"
  5607. },
  5608. "suggest": {
  5609. "composer/class-map-generator": "Improved tab completion performance with better class discovery.",
  5610. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  5611. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  5612. },
  5613. "bin": [
  5614. "bin/psysh"
  5615. ],
  5616. "type": "library",
  5617. "extra": {
  5618. "bamarni-bin": {
  5619. "bin-links": false,
  5620. "forward-command": false
  5621. },
  5622. "branch-alias": {
  5623. "dev-main": "0.12.x-dev"
  5624. }
  5625. },
  5626. "autoload": {
  5627. "files": [
  5628. "src/functions.php"
  5629. ],
  5630. "psr-4": {
  5631. "Psy\\": "src/"
  5632. }
  5633. },
  5634. "notification-url": "https://packagist.org/downloads/",
  5635. "license": [
  5636. "MIT"
  5637. ],
  5638. "authors": [
  5639. {
  5640. "name": "Justin Hileman",
  5641. "email": "justin@justinhileman.info"
  5642. }
  5643. ],
  5644. "description": "An interactive shell for modern PHP.",
  5645. "homepage": "https://psysh.org",
  5646. "keywords": [
  5647. "REPL",
  5648. "console",
  5649. "interactive",
  5650. "shell"
  5651. ],
  5652. "support": {
  5653. "issues": "https://github.com/bobthecow/psysh/issues",
  5654. "source": "https://github.com/bobthecow/psysh/tree/v0.12.18"
  5655. },
  5656. "time": "2025-12-17T14:35:46+00:00"
  5657. },
  5658. {
  5659. "name": "ralouphie/getallheaders",
  5660. "version": "3.0.3",
  5661. "source": {
  5662. "type": "git",
  5663. "url": "https://github.com/ralouphie/getallheaders.git",
  5664. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  5665. },
  5666. "dist": {
  5667. "type": "zip",
  5668. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  5669. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  5670. "shasum": ""
  5671. },
  5672. "require": {
  5673. "php": ">=5.6"
  5674. },
  5675. "require-dev": {
  5676. "php-coveralls/php-coveralls": "^2.1",
  5677. "phpunit/phpunit": "^5 || ^6.5"
  5678. },
  5679. "type": "library",
  5680. "autoload": {
  5681. "files": [
  5682. "src/getallheaders.php"
  5683. ]
  5684. },
  5685. "notification-url": "https://packagist.org/downloads/",
  5686. "license": [
  5687. "MIT"
  5688. ],
  5689. "authors": [
  5690. {
  5691. "name": "Ralph Khattar",
  5692. "email": "ralph.khattar@gmail.com"
  5693. }
  5694. ],
  5695. "description": "A polyfill for getallheaders.",
  5696. "support": {
  5697. "issues": "https://github.com/ralouphie/getallheaders/issues",
  5698. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  5699. },
  5700. "time": "2019-03-08T08:55:37+00:00"
  5701. },
  5702. {
  5703. "name": "ramsey/collection",
  5704. "version": "2.1.1",
  5705. "source": {
  5706. "type": "git",
  5707. "url": "https://github.com/ramsey/collection.git",
  5708. "reference": "344572933ad0181accbf4ba763e85a0306a8c5e2"
  5709. },
  5710. "dist": {
  5711. "type": "zip",
  5712. "url": "https://api.github.com/repos/ramsey/collection/zipball/344572933ad0181accbf4ba763e85a0306a8c5e2",
  5713. "reference": "344572933ad0181accbf4ba763e85a0306a8c5e2",
  5714. "shasum": ""
  5715. },
  5716. "require": {
  5717. "php": "^8.1"
  5718. },
  5719. "require-dev": {
  5720. "captainhook/plugin-composer": "^5.3",
  5721. "ergebnis/composer-normalize": "^2.45",
  5722. "fakerphp/faker": "^1.24",
  5723. "hamcrest/hamcrest-php": "^2.0",
  5724. "jangregor/phpstan-prophecy": "^2.1",
  5725. "mockery/mockery": "^1.6",
  5726. "php-parallel-lint/php-console-highlighter": "^1.0",
  5727. "php-parallel-lint/php-parallel-lint": "^1.4",
  5728. "phpspec/prophecy-phpunit": "^2.3",
  5729. "phpstan/extension-installer": "^1.4",
  5730. "phpstan/phpstan": "^2.1",
  5731. "phpstan/phpstan-mockery": "^2.0",
  5732. "phpstan/phpstan-phpunit": "^2.0",
  5733. "phpunit/phpunit": "^10.5",
  5734. "ramsey/coding-standard": "^2.3",
  5735. "ramsey/conventional-commits": "^1.6",
  5736. "roave/security-advisories": "dev-latest"
  5737. },
  5738. "type": "library",
  5739. "extra": {
  5740. "captainhook": {
  5741. "force-install": true
  5742. },
  5743. "ramsey/conventional-commits": {
  5744. "configFile": "conventional-commits.json"
  5745. }
  5746. },
  5747. "autoload": {
  5748. "psr-4": {
  5749. "Ramsey\\Collection\\": "src/"
  5750. }
  5751. },
  5752. "notification-url": "https://packagist.org/downloads/",
  5753. "license": [
  5754. "MIT"
  5755. ],
  5756. "authors": [
  5757. {
  5758. "name": "Ben Ramsey",
  5759. "email": "ben@benramsey.com",
  5760. "homepage": "https://benramsey.com"
  5761. }
  5762. ],
  5763. "description": "A PHP library for representing and manipulating collections.",
  5764. "keywords": [
  5765. "array",
  5766. "collection",
  5767. "hash",
  5768. "map",
  5769. "queue",
  5770. "set"
  5771. ],
  5772. "support": {
  5773. "issues": "https://github.com/ramsey/collection/issues",
  5774. "source": "https://github.com/ramsey/collection/tree/2.1.1"
  5775. },
  5776. "time": "2025-03-22T05:38:12+00:00"
  5777. },
  5778. {
  5779. "name": "ramsey/uuid",
  5780. "version": "4.9.2",
  5781. "source": {
  5782. "type": "git",
  5783. "url": "https://github.com/ramsey/uuid.git",
  5784. "reference": "8429c78ca35a09f27565311b98101e2826affde0"
  5785. },
  5786. "dist": {
  5787. "type": "zip",
  5788. "url": "https://api.github.com/repos/ramsey/uuid/zipball/8429c78ca35a09f27565311b98101e2826affde0",
  5789. "reference": "8429c78ca35a09f27565311b98101e2826affde0",
  5790. "shasum": ""
  5791. },
  5792. "require": {
  5793. "brick/math": "^0.8.16 || ^0.9 || ^0.10 || ^0.11 || ^0.12 || ^0.13 || ^0.14",
  5794. "php": "^8.0",
  5795. "ramsey/collection": "^1.2 || ^2.0"
  5796. },
  5797. "replace": {
  5798. "rhumsaa/uuid": "self.version"
  5799. },
  5800. "require-dev": {
  5801. "captainhook/captainhook": "^5.25",
  5802. "captainhook/plugin-composer": "^5.3",
  5803. "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
  5804. "ergebnis/composer-normalize": "^2.47",
  5805. "mockery/mockery": "^1.6",
  5806. "paragonie/random-lib": "^2",
  5807. "php-mock/php-mock": "^2.6",
  5808. "php-mock/php-mock-mockery": "^1.5",
  5809. "php-parallel-lint/php-parallel-lint": "^1.4.0",
  5810. "phpbench/phpbench": "^1.2.14",
  5811. "phpstan/extension-installer": "^1.4",
  5812. "phpstan/phpstan": "^2.1",
  5813. "phpstan/phpstan-mockery": "^2.0",
  5814. "phpstan/phpstan-phpunit": "^2.0",
  5815. "phpunit/phpunit": "^9.6",
  5816. "slevomat/coding-standard": "^8.18",
  5817. "squizlabs/php_codesniffer": "^3.13"
  5818. },
  5819. "suggest": {
  5820. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  5821. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  5822. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  5823. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  5824. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  5825. },
  5826. "type": "library",
  5827. "extra": {
  5828. "captainhook": {
  5829. "force-install": true
  5830. }
  5831. },
  5832. "autoload": {
  5833. "files": [
  5834. "src/functions.php"
  5835. ],
  5836. "psr-4": {
  5837. "Ramsey\\Uuid\\": "src/"
  5838. }
  5839. },
  5840. "notification-url": "https://packagist.org/downloads/",
  5841. "license": [
  5842. "MIT"
  5843. ],
  5844. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  5845. "keywords": [
  5846. "guid",
  5847. "identifier",
  5848. "uuid"
  5849. ],
  5850. "support": {
  5851. "issues": "https://github.com/ramsey/uuid/issues",
  5852. "source": "https://github.com/ramsey/uuid/tree/4.9.2"
  5853. },
  5854. "time": "2025-12-14T04:43:48+00:00"
  5855. },
  5856. {
  5857. "name": "sabberworm/php-css-parser",
  5858. "version": "v9.1.0",
  5859. "source": {
  5860. "type": "git",
  5861. "url": "https://github.com/MyIntervals/PHP-CSS-Parser.git",
  5862. "reference": "1b363fdbdc6dd0ca0f4bf98d3a4d7f388133f1fb"
  5863. },
  5864. "dist": {
  5865. "type": "zip",
  5866. "url": "https://api.github.com/repos/MyIntervals/PHP-CSS-Parser/zipball/1b363fdbdc6dd0ca0f4bf98d3a4d7f388133f1fb",
  5867. "reference": "1b363fdbdc6dd0ca0f4bf98d3a4d7f388133f1fb",
  5868. "shasum": ""
  5869. },
  5870. "require": {
  5871. "ext-iconv": "*",
  5872. "php": "^7.2.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0",
  5873. "thecodingmachine/safe": "^1.3 || ^2.5 || ^3.3"
  5874. },
  5875. "require-dev": {
  5876. "php-parallel-lint/php-parallel-lint": "1.4.0",
  5877. "phpstan/extension-installer": "1.4.3",
  5878. "phpstan/phpstan": "1.12.28 || 2.1.25",
  5879. "phpstan/phpstan-phpunit": "1.4.2 || 2.0.7",
  5880. "phpstan/phpstan-strict-rules": "1.6.2 || 2.0.6",
  5881. "phpunit/phpunit": "8.5.46",
  5882. "rawr/phpunit-data-provider": "3.3.1",
  5883. "rector/rector": "1.2.10 || 2.1.7",
  5884. "rector/type-perfect": "1.0.0 || 2.1.0"
  5885. },
  5886. "suggest": {
  5887. "ext-mbstring": "for parsing UTF-8 CSS"
  5888. },
  5889. "type": "library",
  5890. "extra": {
  5891. "branch-alias": {
  5892. "dev-main": "9.2.x-dev"
  5893. }
  5894. },
  5895. "autoload": {
  5896. "psr-4": {
  5897. "Sabberworm\\CSS\\": "src/"
  5898. }
  5899. },
  5900. "notification-url": "https://packagist.org/downloads/",
  5901. "license": [
  5902. "MIT"
  5903. ],
  5904. "authors": [
  5905. {
  5906. "name": "Raphael Schweikert"
  5907. },
  5908. {
  5909. "name": "Oliver Klee",
  5910. "email": "github@oliverklee.de"
  5911. },
  5912. {
  5913. "name": "Jake Hotson",
  5914. "email": "jake.github@qzdesign.co.uk"
  5915. }
  5916. ],
  5917. "description": "Parser for CSS Files written in PHP",
  5918. "homepage": "https://www.sabberworm.com/blog/2010/6/10/php-css-parser",
  5919. "keywords": [
  5920. "css",
  5921. "parser",
  5922. "stylesheet"
  5923. ],
  5924. "support": {
  5925. "issues": "https://github.com/MyIntervals/PHP-CSS-Parser/issues",
  5926. "source": "https://github.com/MyIntervals/PHP-CSS-Parser/tree/v9.1.0"
  5927. },
  5928. "time": "2025-09-14T07:37:21+00:00"
  5929. },
  5930. {
  5931. "name": "setasign/fpdi",
  5932. "version": "v2.6.4",
  5933. "source": {
  5934. "type": "git",
  5935. "url": "https://github.com/Setasign/FPDI.git",
  5936. "reference": "4b53852fde2734ec6a07e458a085db627c60eada"
  5937. },
  5938. "dist": {
  5939. "type": "zip",
  5940. "url": "https://api.github.com/repos/Setasign/FPDI/zipball/4b53852fde2734ec6a07e458a085db627c60eada",
  5941. "reference": "4b53852fde2734ec6a07e458a085db627c60eada",
  5942. "shasum": ""
  5943. },
  5944. "require": {
  5945. "ext-zlib": "*",
  5946. "php": "^7.1 || ^8.0"
  5947. },
  5948. "conflict": {
  5949. "setasign/tfpdf": "<1.31"
  5950. },
  5951. "require-dev": {
  5952. "phpunit/phpunit": "^7",
  5953. "setasign/fpdf": "~1.8.6",
  5954. "setasign/tfpdf": "~1.33",
  5955. "squizlabs/php_codesniffer": "^3.5",
  5956. "tecnickcom/tcpdf": "^6.8"
  5957. },
  5958. "suggest": {
  5959. "setasign/fpdf": "FPDI will extend this class but as it is also possible to use TCPDF or tFPDF as an alternative. There's no fixed dependency configured."
  5960. },
  5961. "type": "library",
  5962. "autoload": {
  5963. "psr-4": {
  5964. "setasign\\Fpdi\\": "src/"
  5965. }
  5966. },
  5967. "notification-url": "https://packagist.org/downloads/",
  5968. "license": [
  5969. "MIT"
  5970. ],
  5971. "authors": [
  5972. {
  5973. "name": "Jan Slabon",
  5974. "email": "jan.slabon@setasign.com",
  5975. "homepage": "https://www.setasign.com"
  5976. },
  5977. {
  5978. "name": "Maximilian Kresse",
  5979. "email": "maximilian.kresse@setasign.com",
  5980. "homepage": "https://www.setasign.com"
  5981. }
  5982. ],
  5983. "description": "FPDI is a collection of PHP classes facilitating developers to read pages from existing PDF documents and use them as templates in FPDF. Because it is also possible to use FPDI with TCPDF, there are no fixed dependencies defined. Please see suggestions for packages which evaluates the dependencies automatically.",
  5984. "homepage": "https://www.setasign.com/fpdi",
  5985. "keywords": [
  5986. "fpdf",
  5987. "fpdi",
  5988. "pdf"
  5989. ],
  5990. "support": {
  5991. "issues": "https://github.com/Setasign/FPDI/issues",
  5992. "source": "https://github.com/Setasign/FPDI/tree/v2.6.4"
  5993. },
  5994. "funding": [
  5995. {
  5996. "url": "https://tidelift.com/funding/github/packagist/setasign/fpdi",
  5997. "type": "tidelift"
  5998. }
  5999. ],
  6000. "time": "2025-08-05T09:57:14+00:00"
  6001. },
  6002. {
  6003. "name": "spatie/laravel-permission",
  6004. "version": "6.24.0",
  6005. "source": {
  6006. "type": "git",
  6007. "url": "https://github.com/spatie/laravel-permission.git",
  6008. "reference": "76adb1fc8d07c16a0721c35c4cc330b7a12598d7"
  6009. },
  6010. "dist": {
  6011. "type": "zip",
  6012. "url": "https://api.github.com/repos/spatie/laravel-permission/zipball/76adb1fc8d07c16a0721c35c4cc330b7a12598d7",
  6013. "reference": "76adb1fc8d07c16a0721c35c4cc330b7a12598d7",
  6014. "shasum": ""
  6015. },
  6016. "require": {
  6017. "illuminate/auth": "^8.12|^9.0|^10.0|^11.0|^12.0",
  6018. "illuminate/container": "^8.12|^9.0|^10.0|^11.0|^12.0",
  6019. "illuminate/contracts": "^8.12|^9.0|^10.0|^11.0|^12.0",
  6020. "illuminate/database": "^8.12|^9.0|^10.0|^11.0|^12.0",
  6021. "php": "^8.0"
  6022. },
  6023. "require-dev": {
  6024. "laravel/passport": "^11.0|^12.0",
  6025. "laravel/pint": "^1.0",
  6026. "orchestra/testbench": "^6.23|^7.0|^8.0|^9.0|^10.0",
  6027. "phpunit/phpunit": "^9.4|^10.1|^11.5"
  6028. },
  6029. "type": "library",
  6030. "extra": {
  6031. "laravel": {
  6032. "providers": [
  6033. "Spatie\\Permission\\PermissionServiceProvider"
  6034. ]
  6035. },
  6036. "branch-alias": {
  6037. "dev-main": "6.x-dev",
  6038. "dev-master": "6.x-dev"
  6039. }
  6040. },
  6041. "autoload": {
  6042. "files": [
  6043. "src/helpers.php"
  6044. ],
  6045. "psr-4": {
  6046. "Spatie\\Permission\\": "src"
  6047. }
  6048. },
  6049. "notification-url": "https://packagist.org/downloads/",
  6050. "license": [
  6051. "MIT"
  6052. ],
  6053. "authors": [
  6054. {
  6055. "name": "Freek Van der Herten",
  6056. "email": "freek@spatie.be",
  6057. "homepage": "https://spatie.be",
  6058. "role": "Developer"
  6059. }
  6060. ],
  6061. "description": "Permission handling for Laravel 8.0 and up",
  6062. "homepage": "https://github.com/spatie/laravel-permission",
  6063. "keywords": [
  6064. "acl",
  6065. "laravel",
  6066. "permission",
  6067. "permissions",
  6068. "rbac",
  6069. "roles",
  6070. "security",
  6071. "spatie"
  6072. ],
  6073. "support": {
  6074. "issues": "https://github.com/spatie/laravel-permission/issues",
  6075. "source": "https://github.com/spatie/laravel-permission/tree/6.24.0"
  6076. },
  6077. "funding": [
  6078. {
  6079. "url": "https://github.com/spatie",
  6080. "type": "github"
  6081. }
  6082. ],
  6083. "time": "2025-12-13T21:45:21+00:00"
  6084. },
  6085. {
  6086. "name": "stripe/stripe-php",
  6087. "version": "v21.1.1",
  6088. "source": {
  6089. "type": "git",
  6090. "url": "https://github.com/stripe/stripe-php.git",
  6091. "reference": "5f68d5a285d206a757ebbd9bf0e037759a61c379"
  6092. },
  6093. "dist": {
  6094. "type": "zip",
  6095. "url": "https://api.github.com/repos/stripe/stripe-php/zipball/5f68d5a285d206a757ebbd9bf0e037759a61c379",
  6096. "reference": "5f68d5a285d206a757ebbd9bf0e037759a61c379",
  6097. "shasum": ""
  6098. },
  6099. "require": {
  6100. "ext-curl": "*",
  6101. "ext-json": "*",
  6102. "ext-mbstring": "*",
  6103. "php": ">=7.2.0"
  6104. },
  6105. "require-dev": {
  6106. "friendsofphp/php-cs-fixer": "3.94.0",
  6107. "phpstan/phpstan": "^1.2",
  6108. "phpunit/phpunit": "^8.0 || ^9.0"
  6109. },
  6110. "type": "library",
  6111. "extra": {
  6112. "branch-alias": {
  6113. "dev-master": "2.0-dev"
  6114. }
  6115. },
  6116. "autoload": {
  6117. "files": [
  6118. "lib/version_check.php"
  6119. ],
  6120. "psr-4": {
  6121. "Stripe\\": "lib/"
  6122. }
  6123. },
  6124. "notification-url": "https://packagist.org/downloads/",
  6125. "license": [
  6126. "MIT"
  6127. ],
  6128. "authors": [
  6129. {
  6130. "name": "Stripe and contributors",
  6131. "homepage": "https://github.com/stripe/stripe-php/contributors"
  6132. }
  6133. ],
  6134. "description": "Stripe PHP Library",
  6135. "homepage": "https://stripe.com/",
  6136. "keywords": [
  6137. "api",
  6138. "payment processing",
  6139. "stripe"
  6140. ],
  6141. "support": {
  6142. "issues": "https://github.com/stripe/stripe-php/issues",
  6143. "source": "https://github.com/stripe/stripe-php/tree/v21.1.1"
  6144. },
  6145. "time": "2026-07-30T18:43:28+00:00"
  6146. },
  6147. {
  6148. "name": "symfony/clock",
  6149. "version": "v7.4.0",
  6150. "source": {
  6151. "type": "git",
  6152. "url": "https://github.com/symfony/clock.git",
  6153. "reference": "9169f24776edde469914c1e7a1442a50f7a4e110"
  6154. },
  6155. "dist": {
  6156. "type": "zip",
  6157. "url": "https://api.github.com/repos/symfony/clock/zipball/9169f24776edde469914c1e7a1442a50f7a4e110",
  6158. "reference": "9169f24776edde469914c1e7a1442a50f7a4e110",
  6159. "shasum": ""
  6160. },
  6161. "require": {
  6162. "php": ">=8.2",
  6163. "psr/clock": "^1.0",
  6164. "symfony/polyfill-php83": "^1.28"
  6165. },
  6166. "provide": {
  6167. "psr/clock-implementation": "1.0"
  6168. },
  6169. "type": "library",
  6170. "autoload": {
  6171. "files": [
  6172. "Resources/now.php"
  6173. ],
  6174. "psr-4": {
  6175. "Symfony\\Component\\Clock\\": ""
  6176. },
  6177. "exclude-from-classmap": [
  6178. "/Tests/"
  6179. ]
  6180. },
  6181. "notification-url": "https://packagist.org/downloads/",
  6182. "license": [
  6183. "MIT"
  6184. ],
  6185. "authors": [
  6186. {
  6187. "name": "Nicolas Grekas",
  6188. "email": "p@tchwork.com"
  6189. },
  6190. {
  6191. "name": "Symfony Community",
  6192. "homepage": "https://symfony.com/contributors"
  6193. }
  6194. ],
  6195. "description": "Decouples applications from the system clock",
  6196. "homepage": "https://symfony.com",
  6197. "keywords": [
  6198. "clock",
  6199. "psr20",
  6200. "time"
  6201. ],
  6202. "support": {
  6203. "source": "https://github.com/symfony/clock/tree/v7.4.0"
  6204. },
  6205. "funding": [
  6206. {
  6207. "url": "https://symfony.com/sponsor",
  6208. "type": "custom"
  6209. },
  6210. {
  6211. "url": "https://github.com/fabpot",
  6212. "type": "github"
  6213. },
  6214. {
  6215. "url": "https://github.com/nicolas-grekas",
  6216. "type": "github"
  6217. },
  6218. {
  6219. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6220. "type": "tidelift"
  6221. }
  6222. ],
  6223. "time": "2025-11-12T15:39:26+00:00"
  6224. },
  6225. {
  6226. "name": "symfony/console",
  6227. "version": "v7.4.3",
  6228. "source": {
  6229. "type": "git",
  6230. "url": "https://github.com/symfony/console.git",
  6231. "reference": "732a9ca6cd9dfd940c639062d5edbde2f6727fb6"
  6232. },
  6233. "dist": {
  6234. "type": "zip",
  6235. "url": "https://api.github.com/repos/symfony/console/zipball/732a9ca6cd9dfd940c639062d5edbde2f6727fb6",
  6236. "reference": "732a9ca6cd9dfd940c639062d5edbde2f6727fb6",
  6237. "shasum": ""
  6238. },
  6239. "require": {
  6240. "php": ">=8.2",
  6241. "symfony/deprecation-contracts": "^2.5|^3",
  6242. "symfony/polyfill-mbstring": "~1.0",
  6243. "symfony/service-contracts": "^2.5|^3",
  6244. "symfony/string": "^7.2|^8.0"
  6245. },
  6246. "conflict": {
  6247. "symfony/dependency-injection": "<6.4",
  6248. "symfony/dotenv": "<6.4",
  6249. "symfony/event-dispatcher": "<6.4",
  6250. "symfony/lock": "<6.4",
  6251. "symfony/process": "<6.4"
  6252. },
  6253. "provide": {
  6254. "psr/log-implementation": "1.0|2.0|3.0"
  6255. },
  6256. "require-dev": {
  6257. "psr/log": "^1|^2|^3",
  6258. "symfony/config": "^6.4|^7.0|^8.0",
  6259. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  6260. "symfony/event-dispatcher": "^6.4|^7.0|^8.0",
  6261. "symfony/http-foundation": "^6.4|^7.0|^8.0",
  6262. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  6263. "symfony/lock": "^6.4|^7.0|^8.0",
  6264. "symfony/messenger": "^6.4|^7.0|^8.0",
  6265. "symfony/process": "^6.4|^7.0|^8.0",
  6266. "symfony/stopwatch": "^6.4|^7.0|^8.0",
  6267. "symfony/var-dumper": "^6.4|^7.0|^8.0"
  6268. },
  6269. "type": "library",
  6270. "autoload": {
  6271. "psr-4": {
  6272. "Symfony\\Component\\Console\\": ""
  6273. },
  6274. "exclude-from-classmap": [
  6275. "/Tests/"
  6276. ]
  6277. },
  6278. "notification-url": "https://packagist.org/downloads/",
  6279. "license": [
  6280. "MIT"
  6281. ],
  6282. "authors": [
  6283. {
  6284. "name": "Fabien Potencier",
  6285. "email": "fabien@symfony.com"
  6286. },
  6287. {
  6288. "name": "Symfony Community",
  6289. "homepage": "https://symfony.com/contributors"
  6290. }
  6291. ],
  6292. "description": "Eases the creation of beautiful and testable command line interfaces",
  6293. "homepage": "https://symfony.com",
  6294. "keywords": [
  6295. "cli",
  6296. "command-line",
  6297. "console",
  6298. "terminal"
  6299. ],
  6300. "support": {
  6301. "source": "https://github.com/symfony/console/tree/v7.4.3"
  6302. },
  6303. "funding": [
  6304. {
  6305. "url": "https://symfony.com/sponsor",
  6306. "type": "custom"
  6307. },
  6308. {
  6309. "url": "https://github.com/fabpot",
  6310. "type": "github"
  6311. },
  6312. {
  6313. "url": "https://github.com/nicolas-grekas",
  6314. "type": "github"
  6315. },
  6316. {
  6317. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6318. "type": "tidelift"
  6319. }
  6320. ],
  6321. "time": "2025-12-23T14:50:43+00:00"
  6322. },
  6323. {
  6324. "name": "symfony/css-selector",
  6325. "version": "v7.4.0",
  6326. "source": {
  6327. "type": "git",
  6328. "url": "https://github.com/symfony/css-selector.git",
  6329. "reference": "ab862f478513e7ca2fe9ec117a6f01a8da6e1135"
  6330. },
  6331. "dist": {
  6332. "type": "zip",
  6333. "url": "https://api.github.com/repos/symfony/css-selector/zipball/ab862f478513e7ca2fe9ec117a6f01a8da6e1135",
  6334. "reference": "ab862f478513e7ca2fe9ec117a6f01a8da6e1135",
  6335. "shasum": ""
  6336. },
  6337. "require": {
  6338. "php": ">=8.2"
  6339. },
  6340. "type": "library",
  6341. "autoload": {
  6342. "psr-4": {
  6343. "Symfony\\Component\\CssSelector\\": ""
  6344. },
  6345. "exclude-from-classmap": [
  6346. "/Tests/"
  6347. ]
  6348. },
  6349. "notification-url": "https://packagist.org/downloads/",
  6350. "license": [
  6351. "MIT"
  6352. ],
  6353. "authors": [
  6354. {
  6355. "name": "Fabien Potencier",
  6356. "email": "fabien@symfony.com"
  6357. },
  6358. {
  6359. "name": "Jean-François Simon",
  6360. "email": "jeanfrancois.simon@sensiolabs.com"
  6361. },
  6362. {
  6363. "name": "Symfony Community",
  6364. "homepage": "https://symfony.com/contributors"
  6365. }
  6366. ],
  6367. "description": "Converts CSS selectors to XPath expressions",
  6368. "homepage": "https://symfony.com",
  6369. "support": {
  6370. "source": "https://github.com/symfony/css-selector/tree/v7.4.0"
  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://github.com/nicolas-grekas",
  6383. "type": "github"
  6384. },
  6385. {
  6386. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6387. "type": "tidelift"
  6388. }
  6389. ],
  6390. "time": "2025-10-30T13:39:42+00:00"
  6391. },
  6392. {
  6393. "name": "symfony/deprecation-contracts",
  6394. "version": "v3.6.0",
  6395. "source": {
  6396. "type": "git",
  6397. "url": "https://github.com/symfony/deprecation-contracts.git",
  6398. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62"
  6399. },
  6400. "dist": {
  6401. "type": "zip",
  6402. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62",
  6403. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62",
  6404. "shasum": ""
  6405. },
  6406. "require": {
  6407. "php": ">=8.1"
  6408. },
  6409. "type": "library",
  6410. "extra": {
  6411. "thanks": {
  6412. "url": "https://github.com/symfony/contracts",
  6413. "name": "symfony/contracts"
  6414. },
  6415. "branch-alias": {
  6416. "dev-main": "3.6-dev"
  6417. }
  6418. },
  6419. "autoload": {
  6420. "files": [
  6421. "function.php"
  6422. ]
  6423. },
  6424. "notification-url": "https://packagist.org/downloads/",
  6425. "license": [
  6426. "MIT"
  6427. ],
  6428. "authors": [
  6429. {
  6430. "name": "Nicolas Grekas",
  6431. "email": "p@tchwork.com"
  6432. },
  6433. {
  6434. "name": "Symfony Community",
  6435. "homepage": "https://symfony.com/contributors"
  6436. }
  6437. ],
  6438. "description": "A generic function and convention to trigger deprecation notices",
  6439. "homepage": "https://symfony.com",
  6440. "support": {
  6441. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0"
  6442. },
  6443. "funding": [
  6444. {
  6445. "url": "https://symfony.com/sponsor",
  6446. "type": "custom"
  6447. },
  6448. {
  6449. "url": "https://github.com/fabpot",
  6450. "type": "github"
  6451. },
  6452. {
  6453. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6454. "type": "tidelift"
  6455. }
  6456. ],
  6457. "time": "2024-09-25T14:21:43+00:00"
  6458. },
  6459. {
  6460. "name": "symfony/error-handler",
  6461. "version": "v7.4.0",
  6462. "source": {
  6463. "type": "git",
  6464. "url": "https://github.com/symfony/error-handler.git",
  6465. "reference": "48be2b0653594eea32dcef130cca1c811dcf25c2"
  6466. },
  6467. "dist": {
  6468. "type": "zip",
  6469. "url": "https://api.github.com/repos/symfony/error-handler/zipball/48be2b0653594eea32dcef130cca1c811dcf25c2",
  6470. "reference": "48be2b0653594eea32dcef130cca1c811dcf25c2",
  6471. "shasum": ""
  6472. },
  6473. "require": {
  6474. "php": ">=8.2",
  6475. "psr/log": "^1|^2|^3",
  6476. "symfony/polyfill-php85": "^1.32",
  6477. "symfony/var-dumper": "^6.4|^7.0|^8.0"
  6478. },
  6479. "conflict": {
  6480. "symfony/deprecation-contracts": "<2.5",
  6481. "symfony/http-kernel": "<6.4"
  6482. },
  6483. "require-dev": {
  6484. "symfony/console": "^6.4|^7.0|^8.0",
  6485. "symfony/deprecation-contracts": "^2.5|^3",
  6486. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  6487. "symfony/serializer": "^6.4|^7.0|^8.0",
  6488. "symfony/webpack-encore-bundle": "^1.0|^2.0"
  6489. },
  6490. "bin": [
  6491. "Resources/bin/patch-type-declarations"
  6492. ],
  6493. "type": "library",
  6494. "autoload": {
  6495. "psr-4": {
  6496. "Symfony\\Component\\ErrorHandler\\": ""
  6497. },
  6498. "exclude-from-classmap": [
  6499. "/Tests/"
  6500. ]
  6501. },
  6502. "notification-url": "https://packagist.org/downloads/",
  6503. "license": [
  6504. "MIT"
  6505. ],
  6506. "authors": [
  6507. {
  6508. "name": "Fabien Potencier",
  6509. "email": "fabien@symfony.com"
  6510. },
  6511. {
  6512. "name": "Symfony Community",
  6513. "homepage": "https://symfony.com/contributors"
  6514. }
  6515. ],
  6516. "description": "Provides tools to manage errors and ease debugging PHP code",
  6517. "homepage": "https://symfony.com",
  6518. "support": {
  6519. "source": "https://github.com/symfony/error-handler/tree/v7.4.0"
  6520. },
  6521. "funding": [
  6522. {
  6523. "url": "https://symfony.com/sponsor",
  6524. "type": "custom"
  6525. },
  6526. {
  6527. "url": "https://github.com/fabpot",
  6528. "type": "github"
  6529. },
  6530. {
  6531. "url": "https://github.com/nicolas-grekas",
  6532. "type": "github"
  6533. },
  6534. {
  6535. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6536. "type": "tidelift"
  6537. }
  6538. ],
  6539. "time": "2025-11-05T14:29:59+00:00"
  6540. },
  6541. {
  6542. "name": "symfony/event-dispatcher",
  6543. "version": "v7.4.0",
  6544. "source": {
  6545. "type": "git",
  6546. "url": "https://github.com/symfony/event-dispatcher.git",
  6547. "reference": "9dddcddff1ef974ad87b3708e4b442dc38b2261d"
  6548. },
  6549. "dist": {
  6550. "type": "zip",
  6551. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/9dddcddff1ef974ad87b3708e4b442dc38b2261d",
  6552. "reference": "9dddcddff1ef974ad87b3708e4b442dc38b2261d",
  6553. "shasum": ""
  6554. },
  6555. "require": {
  6556. "php": ">=8.2",
  6557. "symfony/event-dispatcher-contracts": "^2.5|^3"
  6558. },
  6559. "conflict": {
  6560. "symfony/dependency-injection": "<6.4",
  6561. "symfony/service-contracts": "<2.5"
  6562. },
  6563. "provide": {
  6564. "psr/event-dispatcher-implementation": "1.0",
  6565. "symfony/event-dispatcher-implementation": "2.0|3.0"
  6566. },
  6567. "require-dev": {
  6568. "psr/log": "^1|^2|^3",
  6569. "symfony/config": "^6.4|^7.0|^8.0",
  6570. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  6571. "symfony/error-handler": "^6.4|^7.0|^8.0",
  6572. "symfony/expression-language": "^6.4|^7.0|^8.0",
  6573. "symfony/framework-bundle": "^6.4|^7.0|^8.0",
  6574. "symfony/http-foundation": "^6.4|^7.0|^8.0",
  6575. "symfony/service-contracts": "^2.5|^3",
  6576. "symfony/stopwatch": "^6.4|^7.0|^8.0"
  6577. },
  6578. "type": "library",
  6579. "autoload": {
  6580. "psr-4": {
  6581. "Symfony\\Component\\EventDispatcher\\": ""
  6582. },
  6583. "exclude-from-classmap": [
  6584. "/Tests/"
  6585. ]
  6586. },
  6587. "notification-url": "https://packagist.org/downloads/",
  6588. "license": [
  6589. "MIT"
  6590. ],
  6591. "authors": [
  6592. {
  6593. "name": "Fabien Potencier",
  6594. "email": "fabien@symfony.com"
  6595. },
  6596. {
  6597. "name": "Symfony Community",
  6598. "homepage": "https://symfony.com/contributors"
  6599. }
  6600. ],
  6601. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  6602. "homepage": "https://symfony.com",
  6603. "support": {
  6604. "source": "https://github.com/symfony/event-dispatcher/tree/v7.4.0"
  6605. },
  6606. "funding": [
  6607. {
  6608. "url": "https://symfony.com/sponsor",
  6609. "type": "custom"
  6610. },
  6611. {
  6612. "url": "https://github.com/fabpot",
  6613. "type": "github"
  6614. },
  6615. {
  6616. "url": "https://github.com/nicolas-grekas",
  6617. "type": "github"
  6618. },
  6619. {
  6620. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6621. "type": "tidelift"
  6622. }
  6623. ],
  6624. "time": "2025-10-28T09:38:46+00:00"
  6625. },
  6626. {
  6627. "name": "symfony/event-dispatcher-contracts",
  6628. "version": "v3.6.0",
  6629. "source": {
  6630. "type": "git",
  6631. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  6632. "reference": "59eb412e93815df44f05f342958efa9f46b1e586"
  6633. },
  6634. "dist": {
  6635. "type": "zip",
  6636. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/59eb412e93815df44f05f342958efa9f46b1e586",
  6637. "reference": "59eb412e93815df44f05f342958efa9f46b1e586",
  6638. "shasum": ""
  6639. },
  6640. "require": {
  6641. "php": ">=8.1",
  6642. "psr/event-dispatcher": "^1"
  6643. },
  6644. "type": "library",
  6645. "extra": {
  6646. "thanks": {
  6647. "url": "https://github.com/symfony/contracts",
  6648. "name": "symfony/contracts"
  6649. },
  6650. "branch-alias": {
  6651. "dev-main": "3.6-dev"
  6652. }
  6653. },
  6654. "autoload": {
  6655. "psr-4": {
  6656. "Symfony\\Contracts\\EventDispatcher\\": ""
  6657. }
  6658. },
  6659. "notification-url": "https://packagist.org/downloads/",
  6660. "license": [
  6661. "MIT"
  6662. ],
  6663. "authors": [
  6664. {
  6665. "name": "Nicolas Grekas",
  6666. "email": "p@tchwork.com"
  6667. },
  6668. {
  6669. "name": "Symfony Community",
  6670. "homepage": "https://symfony.com/contributors"
  6671. }
  6672. ],
  6673. "description": "Generic abstractions related to dispatching event",
  6674. "homepage": "https://symfony.com",
  6675. "keywords": [
  6676. "abstractions",
  6677. "contracts",
  6678. "decoupling",
  6679. "interfaces",
  6680. "interoperability",
  6681. "standards"
  6682. ],
  6683. "support": {
  6684. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.6.0"
  6685. },
  6686. "funding": [
  6687. {
  6688. "url": "https://symfony.com/sponsor",
  6689. "type": "custom"
  6690. },
  6691. {
  6692. "url": "https://github.com/fabpot",
  6693. "type": "github"
  6694. },
  6695. {
  6696. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6697. "type": "tidelift"
  6698. }
  6699. ],
  6700. "time": "2024-09-25T14:21:43+00:00"
  6701. },
  6702. {
  6703. "name": "symfony/filesystem",
  6704. "version": "v7.4.18",
  6705. "source": {
  6706. "type": "git",
  6707. "url": "https://github.com/symfony/filesystem.git",
  6708. "reference": "90d412aa5277c6819db39e7605aa46b1019e3232"
  6709. },
  6710. "dist": {
  6711. "type": "zip",
  6712. "url": "https://api.github.com/repos/symfony/filesystem/zipball/90d412aa5277c6819db39e7605aa46b1019e3232",
  6713. "reference": "90d412aa5277c6819db39e7605aa46b1019e3232",
  6714. "shasum": ""
  6715. },
  6716. "require": {
  6717. "php": ">=8.2",
  6718. "symfony/polyfill-ctype": "~1.8",
  6719. "symfony/polyfill-mbstring": "~1.8"
  6720. },
  6721. "require-dev": {
  6722. "symfony/process": "^6.4|^7.0|^8.0"
  6723. },
  6724. "type": "library",
  6725. "autoload": {
  6726. "psr-4": {
  6727. "Symfony\\Component\\Filesystem\\": ""
  6728. },
  6729. "exclude-from-classmap": [
  6730. "/Tests/"
  6731. ]
  6732. },
  6733. "notification-url": "https://packagist.org/downloads/",
  6734. "license": [
  6735. "MIT"
  6736. ],
  6737. "authors": [
  6738. {
  6739. "name": "Fabien Potencier",
  6740. "email": "fabien@symfony.com"
  6741. },
  6742. {
  6743. "name": "Symfony Community",
  6744. "homepage": "https://symfony.com/contributors"
  6745. }
  6746. ],
  6747. "description": "Provides basic utilities for the filesystem",
  6748. "homepage": "https://symfony.com",
  6749. "support": {
  6750. "source": "https://github.com/symfony/filesystem/tree/v7.4.18"
  6751. },
  6752. "funding": [
  6753. {
  6754. "url": "https://symfony.com/sponsor",
  6755. "type": "custom"
  6756. },
  6757. {
  6758. "url": "https://github.com/fabpot",
  6759. "type": "github"
  6760. },
  6761. {
  6762. "url": "https://github.com/nicolas-grekas",
  6763. "type": "github"
  6764. },
  6765. {
  6766. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6767. "type": "tidelift"
  6768. }
  6769. ],
  6770. "time": "2026-08-23T10:03:40+00:00"
  6771. },
  6772. {
  6773. "name": "symfony/finder",
  6774. "version": "v7.4.3",
  6775. "source": {
  6776. "type": "git",
  6777. "url": "https://github.com/symfony/finder.git",
  6778. "reference": "fffe05569336549b20a1be64250b40516d6e8d06"
  6779. },
  6780. "dist": {
  6781. "type": "zip",
  6782. "url": "https://api.github.com/repos/symfony/finder/zipball/fffe05569336549b20a1be64250b40516d6e8d06",
  6783. "reference": "fffe05569336549b20a1be64250b40516d6e8d06",
  6784. "shasum": ""
  6785. },
  6786. "require": {
  6787. "php": ">=8.2"
  6788. },
  6789. "require-dev": {
  6790. "symfony/filesystem": "^6.4|^7.0|^8.0"
  6791. },
  6792. "type": "library",
  6793. "autoload": {
  6794. "psr-4": {
  6795. "Symfony\\Component\\Finder\\": ""
  6796. },
  6797. "exclude-from-classmap": [
  6798. "/Tests/"
  6799. ]
  6800. },
  6801. "notification-url": "https://packagist.org/downloads/",
  6802. "license": [
  6803. "MIT"
  6804. ],
  6805. "authors": [
  6806. {
  6807. "name": "Fabien Potencier",
  6808. "email": "fabien@symfony.com"
  6809. },
  6810. {
  6811. "name": "Symfony Community",
  6812. "homepage": "https://symfony.com/contributors"
  6813. }
  6814. ],
  6815. "description": "Finds files and directories via an intuitive fluent interface",
  6816. "homepage": "https://symfony.com",
  6817. "support": {
  6818. "source": "https://github.com/symfony/finder/tree/v7.4.3"
  6819. },
  6820. "funding": [
  6821. {
  6822. "url": "https://symfony.com/sponsor",
  6823. "type": "custom"
  6824. },
  6825. {
  6826. "url": "https://github.com/fabpot",
  6827. "type": "github"
  6828. },
  6829. {
  6830. "url": "https://github.com/nicolas-grekas",
  6831. "type": "github"
  6832. },
  6833. {
  6834. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6835. "type": "tidelift"
  6836. }
  6837. ],
  6838. "time": "2025-12-23T14:50:43+00:00"
  6839. },
  6840. {
  6841. "name": "symfony/http-foundation",
  6842. "version": "v7.4.3",
  6843. "source": {
  6844. "type": "git",
  6845. "url": "https://github.com/symfony/http-foundation.git",
  6846. "reference": "a70c745d4cea48dbd609f4075e5f5cbce453bd52"
  6847. },
  6848. "dist": {
  6849. "type": "zip",
  6850. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/a70c745d4cea48dbd609f4075e5f5cbce453bd52",
  6851. "reference": "a70c745d4cea48dbd609f4075e5f5cbce453bd52",
  6852. "shasum": ""
  6853. },
  6854. "require": {
  6855. "php": ">=8.2",
  6856. "symfony/deprecation-contracts": "^2.5|^3",
  6857. "symfony/polyfill-mbstring": "^1.1"
  6858. },
  6859. "conflict": {
  6860. "doctrine/dbal": "<3.6",
  6861. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  6862. },
  6863. "require-dev": {
  6864. "doctrine/dbal": "^3.6|^4",
  6865. "predis/predis": "^1.1|^2.0",
  6866. "symfony/cache": "^6.4.12|^7.1.5|^8.0",
  6867. "symfony/clock": "^6.4|^7.0|^8.0",
  6868. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  6869. "symfony/expression-language": "^6.4|^7.0|^8.0",
  6870. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  6871. "symfony/mime": "^6.4|^7.0|^8.0",
  6872. "symfony/rate-limiter": "^6.4|^7.0|^8.0"
  6873. },
  6874. "type": "library",
  6875. "autoload": {
  6876. "psr-4": {
  6877. "Symfony\\Component\\HttpFoundation\\": ""
  6878. },
  6879. "exclude-from-classmap": [
  6880. "/Tests/"
  6881. ]
  6882. },
  6883. "notification-url": "https://packagist.org/downloads/",
  6884. "license": [
  6885. "MIT"
  6886. ],
  6887. "authors": [
  6888. {
  6889. "name": "Fabien Potencier",
  6890. "email": "fabien@symfony.com"
  6891. },
  6892. {
  6893. "name": "Symfony Community",
  6894. "homepage": "https://symfony.com/contributors"
  6895. }
  6896. ],
  6897. "description": "Defines an object-oriented layer for the HTTP specification",
  6898. "homepage": "https://symfony.com",
  6899. "support": {
  6900. "source": "https://github.com/symfony/http-foundation/tree/v7.4.3"
  6901. },
  6902. "funding": [
  6903. {
  6904. "url": "https://symfony.com/sponsor",
  6905. "type": "custom"
  6906. },
  6907. {
  6908. "url": "https://github.com/fabpot",
  6909. "type": "github"
  6910. },
  6911. {
  6912. "url": "https://github.com/nicolas-grekas",
  6913. "type": "github"
  6914. },
  6915. {
  6916. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6917. "type": "tidelift"
  6918. }
  6919. ],
  6920. "time": "2025-12-23T14:23:49+00:00"
  6921. },
  6922. {
  6923. "name": "symfony/http-kernel",
  6924. "version": "v7.4.3",
  6925. "source": {
  6926. "type": "git",
  6927. "url": "https://github.com/symfony/http-kernel.git",
  6928. "reference": "885211d4bed3f857b8c964011923528a55702aa5"
  6929. },
  6930. "dist": {
  6931. "type": "zip",
  6932. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/885211d4bed3f857b8c964011923528a55702aa5",
  6933. "reference": "885211d4bed3f857b8c964011923528a55702aa5",
  6934. "shasum": ""
  6935. },
  6936. "require": {
  6937. "php": ">=8.2",
  6938. "psr/log": "^1|^2|^3",
  6939. "symfony/deprecation-contracts": "^2.5|^3",
  6940. "symfony/error-handler": "^6.4|^7.0|^8.0",
  6941. "symfony/event-dispatcher": "^7.3|^8.0",
  6942. "symfony/http-foundation": "^7.4|^8.0",
  6943. "symfony/polyfill-ctype": "^1.8"
  6944. },
  6945. "conflict": {
  6946. "symfony/browser-kit": "<6.4",
  6947. "symfony/cache": "<6.4",
  6948. "symfony/config": "<6.4",
  6949. "symfony/console": "<6.4",
  6950. "symfony/dependency-injection": "<6.4",
  6951. "symfony/doctrine-bridge": "<6.4",
  6952. "symfony/flex": "<2.10",
  6953. "symfony/form": "<6.4",
  6954. "symfony/http-client": "<6.4",
  6955. "symfony/http-client-contracts": "<2.5",
  6956. "symfony/mailer": "<6.4",
  6957. "symfony/messenger": "<6.4",
  6958. "symfony/translation": "<6.4",
  6959. "symfony/translation-contracts": "<2.5",
  6960. "symfony/twig-bridge": "<6.4",
  6961. "symfony/validator": "<6.4",
  6962. "symfony/var-dumper": "<6.4",
  6963. "twig/twig": "<3.12"
  6964. },
  6965. "provide": {
  6966. "psr/log-implementation": "1.0|2.0|3.0"
  6967. },
  6968. "require-dev": {
  6969. "psr/cache": "^1.0|^2.0|^3.0",
  6970. "symfony/browser-kit": "^6.4|^7.0|^8.0",
  6971. "symfony/clock": "^6.4|^7.0|^8.0",
  6972. "symfony/config": "^6.4|^7.0|^8.0",
  6973. "symfony/console": "^6.4|^7.0|^8.0",
  6974. "symfony/css-selector": "^6.4|^7.0|^8.0",
  6975. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  6976. "symfony/dom-crawler": "^6.4|^7.0|^8.0",
  6977. "symfony/expression-language": "^6.4|^7.0|^8.0",
  6978. "symfony/finder": "^6.4|^7.0|^8.0",
  6979. "symfony/http-client-contracts": "^2.5|^3",
  6980. "symfony/process": "^6.4|^7.0|^8.0",
  6981. "symfony/property-access": "^7.1|^8.0",
  6982. "symfony/routing": "^6.4|^7.0|^8.0",
  6983. "symfony/serializer": "^7.1|^8.0",
  6984. "symfony/stopwatch": "^6.4|^7.0|^8.0",
  6985. "symfony/translation": "^6.4|^7.0|^8.0",
  6986. "symfony/translation-contracts": "^2.5|^3",
  6987. "symfony/uid": "^6.4|^7.0|^8.0",
  6988. "symfony/validator": "^6.4|^7.0|^8.0",
  6989. "symfony/var-dumper": "^6.4|^7.0|^8.0",
  6990. "symfony/var-exporter": "^6.4|^7.0|^8.0",
  6991. "twig/twig": "^3.12"
  6992. },
  6993. "type": "library",
  6994. "autoload": {
  6995. "psr-4": {
  6996. "Symfony\\Component\\HttpKernel\\": ""
  6997. },
  6998. "exclude-from-classmap": [
  6999. "/Tests/"
  7000. ]
  7001. },
  7002. "notification-url": "https://packagist.org/downloads/",
  7003. "license": [
  7004. "MIT"
  7005. ],
  7006. "authors": [
  7007. {
  7008. "name": "Fabien Potencier",
  7009. "email": "fabien@symfony.com"
  7010. },
  7011. {
  7012. "name": "Symfony Community",
  7013. "homepage": "https://symfony.com/contributors"
  7014. }
  7015. ],
  7016. "description": "Provides a structured process for converting a Request into a Response",
  7017. "homepage": "https://symfony.com",
  7018. "support": {
  7019. "source": "https://github.com/symfony/http-kernel/tree/v7.4.3"
  7020. },
  7021. "funding": [
  7022. {
  7023. "url": "https://symfony.com/sponsor",
  7024. "type": "custom"
  7025. },
  7026. {
  7027. "url": "https://github.com/fabpot",
  7028. "type": "github"
  7029. },
  7030. {
  7031. "url": "https://github.com/nicolas-grekas",
  7032. "type": "github"
  7033. },
  7034. {
  7035. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7036. "type": "tidelift"
  7037. }
  7038. ],
  7039. "time": "2025-12-31T08:43:57+00:00"
  7040. },
  7041. {
  7042. "name": "symfony/mailer",
  7043. "version": "v7.4.3",
  7044. "source": {
  7045. "type": "git",
  7046. "url": "https://github.com/symfony/mailer.git",
  7047. "reference": "e472d35e230108231ccb7f51eb6b2100cac02ee4"
  7048. },
  7049. "dist": {
  7050. "type": "zip",
  7051. "url": "https://api.github.com/repos/symfony/mailer/zipball/e472d35e230108231ccb7f51eb6b2100cac02ee4",
  7052. "reference": "e472d35e230108231ccb7f51eb6b2100cac02ee4",
  7053. "shasum": ""
  7054. },
  7055. "require": {
  7056. "egulias/email-validator": "^2.1.10|^3|^4",
  7057. "php": ">=8.2",
  7058. "psr/event-dispatcher": "^1",
  7059. "psr/log": "^1|^2|^3",
  7060. "symfony/event-dispatcher": "^6.4|^7.0|^8.0",
  7061. "symfony/mime": "^7.2|^8.0",
  7062. "symfony/service-contracts": "^2.5|^3"
  7063. },
  7064. "conflict": {
  7065. "symfony/http-client-contracts": "<2.5",
  7066. "symfony/http-kernel": "<6.4",
  7067. "symfony/messenger": "<6.4",
  7068. "symfony/mime": "<6.4",
  7069. "symfony/twig-bridge": "<6.4"
  7070. },
  7071. "require-dev": {
  7072. "symfony/console": "^6.4|^7.0|^8.0",
  7073. "symfony/http-client": "^6.4|^7.0|^8.0",
  7074. "symfony/messenger": "^6.4|^7.0|^8.0",
  7075. "symfony/twig-bridge": "^6.4|^7.0|^8.0"
  7076. },
  7077. "type": "library",
  7078. "autoload": {
  7079. "psr-4": {
  7080. "Symfony\\Component\\Mailer\\": ""
  7081. },
  7082. "exclude-from-classmap": [
  7083. "/Tests/"
  7084. ]
  7085. },
  7086. "notification-url": "https://packagist.org/downloads/",
  7087. "license": [
  7088. "MIT"
  7089. ],
  7090. "authors": [
  7091. {
  7092. "name": "Fabien Potencier",
  7093. "email": "fabien@symfony.com"
  7094. },
  7095. {
  7096. "name": "Symfony Community",
  7097. "homepage": "https://symfony.com/contributors"
  7098. }
  7099. ],
  7100. "description": "Helps sending emails",
  7101. "homepage": "https://symfony.com",
  7102. "support": {
  7103. "source": "https://github.com/symfony/mailer/tree/v7.4.3"
  7104. },
  7105. "funding": [
  7106. {
  7107. "url": "https://symfony.com/sponsor",
  7108. "type": "custom"
  7109. },
  7110. {
  7111. "url": "https://github.com/fabpot",
  7112. "type": "github"
  7113. },
  7114. {
  7115. "url": "https://github.com/nicolas-grekas",
  7116. "type": "github"
  7117. },
  7118. {
  7119. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7120. "type": "tidelift"
  7121. }
  7122. ],
  7123. "time": "2025-12-16T08:02:06+00:00"
  7124. },
  7125. {
  7126. "name": "symfony/mime",
  7127. "version": "v7.4.0",
  7128. "source": {
  7129. "type": "git",
  7130. "url": "https://github.com/symfony/mime.git",
  7131. "reference": "bdb02729471be5d047a3ac4a69068748f1a6be7a"
  7132. },
  7133. "dist": {
  7134. "type": "zip",
  7135. "url": "https://api.github.com/repos/symfony/mime/zipball/bdb02729471be5d047a3ac4a69068748f1a6be7a",
  7136. "reference": "bdb02729471be5d047a3ac4a69068748f1a6be7a",
  7137. "shasum": ""
  7138. },
  7139. "require": {
  7140. "php": ">=8.2",
  7141. "symfony/deprecation-contracts": "^2.5|^3",
  7142. "symfony/polyfill-intl-idn": "^1.10",
  7143. "symfony/polyfill-mbstring": "^1.0"
  7144. },
  7145. "conflict": {
  7146. "egulias/email-validator": "~3.0.0",
  7147. "phpdocumentor/reflection-docblock": "<3.2.2",
  7148. "phpdocumentor/type-resolver": "<1.4.0",
  7149. "symfony/mailer": "<6.4",
  7150. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  7151. },
  7152. "require-dev": {
  7153. "egulias/email-validator": "^2.1.10|^3.1|^4",
  7154. "league/html-to-markdown": "^5.0",
  7155. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7156. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  7157. "symfony/process": "^6.4|^7.0|^8.0",
  7158. "symfony/property-access": "^6.4|^7.0|^8.0",
  7159. "symfony/property-info": "^6.4|^7.0|^8.0",
  7160. "symfony/serializer": "^6.4.3|^7.0.3|^8.0"
  7161. },
  7162. "type": "library",
  7163. "autoload": {
  7164. "psr-4": {
  7165. "Symfony\\Component\\Mime\\": ""
  7166. },
  7167. "exclude-from-classmap": [
  7168. "/Tests/"
  7169. ]
  7170. },
  7171. "notification-url": "https://packagist.org/downloads/",
  7172. "license": [
  7173. "MIT"
  7174. ],
  7175. "authors": [
  7176. {
  7177. "name": "Fabien Potencier",
  7178. "email": "fabien@symfony.com"
  7179. },
  7180. {
  7181. "name": "Symfony Community",
  7182. "homepage": "https://symfony.com/contributors"
  7183. }
  7184. ],
  7185. "description": "Allows manipulating MIME messages",
  7186. "homepage": "https://symfony.com",
  7187. "keywords": [
  7188. "mime",
  7189. "mime-type"
  7190. ],
  7191. "support": {
  7192. "source": "https://github.com/symfony/mime/tree/v7.4.0"
  7193. },
  7194. "funding": [
  7195. {
  7196. "url": "https://symfony.com/sponsor",
  7197. "type": "custom"
  7198. },
  7199. {
  7200. "url": "https://github.com/fabpot",
  7201. "type": "github"
  7202. },
  7203. {
  7204. "url": "https://github.com/nicolas-grekas",
  7205. "type": "github"
  7206. },
  7207. {
  7208. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7209. "type": "tidelift"
  7210. }
  7211. ],
  7212. "time": "2025-11-16T10:14:42+00:00"
  7213. },
  7214. {
  7215. "name": "symfony/polyfill-ctype",
  7216. "version": "v1.33.0",
  7217. "source": {
  7218. "type": "git",
  7219. "url": "https://github.com/symfony/polyfill-ctype.git",
  7220. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  7221. },
  7222. "dist": {
  7223. "type": "zip",
  7224. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  7225. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  7226. "shasum": ""
  7227. },
  7228. "require": {
  7229. "php": ">=7.2"
  7230. },
  7231. "provide": {
  7232. "ext-ctype": "*"
  7233. },
  7234. "suggest": {
  7235. "ext-ctype": "For best performance"
  7236. },
  7237. "type": "library",
  7238. "extra": {
  7239. "thanks": {
  7240. "url": "https://github.com/symfony/polyfill",
  7241. "name": "symfony/polyfill"
  7242. }
  7243. },
  7244. "autoload": {
  7245. "files": [
  7246. "bootstrap.php"
  7247. ],
  7248. "psr-4": {
  7249. "Symfony\\Polyfill\\Ctype\\": ""
  7250. }
  7251. },
  7252. "notification-url": "https://packagist.org/downloads/",
  7253. "license": [
  7254. "MIT"
  7255. ],
  7256. "authors": [
  7257. {
  7258. "name": "Gert de Pagter",
  7259. "email": "BackEndTea@gmail.com"
  7260. },
  7261. {
  7262. "name": "Symfony Community",
  7263. "homepage": "https://symfony.com/contributors"
  7264. }
  7265. ],
  7266. "description": "Symfony polyfill for ctype functions",
  7267. "homepage": "https://symfony.com",
  7268. "keywords": [
  7269. "compatibility",
  7270. "ctype",
  7271. "polyfill",
  7272. "portable"
  7273. ],
  7274. "support": {
  7275. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.33.0"
  7276. },
  7277. "funding": [
  7278. {
  7279. "url": "https://symfony.com/sponsor",
  7280. "type": "custom"
  7281. },
  7282. {
  7283. "url": "https://github.com/fabpot",
  7284. "type": "github"
  7285. },
  7286. {
  7287. "url": "https://github.com/nicolas-grekas",
  7288. "type": "github"
  7289. },
  7290. {
  7291. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7292. "type": "tidelift"
  7293. }
  7294. ],
  7295. "time": "2024-09-09T11:45:10+00:00"
  7296. },
  7297. {
  7298. "name": "symfony/polyfill-intl-grapheme",
  7299. "version": "v1.33.0",
  7300. "source": {
  7301. "type": "git",
  7302. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  7303. "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70"
  7304. },
  7305. "dist": {
  7306. "type": "zip",
  7307. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/380872130d3a5dd3ace2f4010d95125fde5d5c70",
  7308. "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70",
  7309. "shasum": ""
  7310. },
  7311. "require": {
  7312. "php": ">=7.2"
  7313. },
  7314. "suggest": {
  7315. "ext-intl": "For best performance"
  7316. },
  7317. "type": "library",
  7318. "extra": {
  7319. "thanks": {
  7320. "url": "https://github.com/symfony/polyfill",
  7321. "name": "symfony/polyfill"
  7322. }
  7323. },
  7324. "autoload": {
  7325. "files": [
  7326. "bootstrap.php"
  7327. ],
  7328. "psr-4": {
  7329. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  7330. }
  7331. },
  7332. "notification-url": "https://packagist.org/downloads/",
  7333. "license": [
  7334. "MIT"
  7335. ],
  7336. "authors": [
  7337. {
  7338. "name": "Nicolas Grekas",
  7339. "email": "p@tchwork.com"
  7340. },
  7341. {
  7342. "name": "Symfony Community",
  7343. "homepage": "https://symfony.com/contributors"
  7344. }
  7345. ],
  7346. "description": "Symfony polyfill for intl's grapheme_* functions",
  7347. "homepage": "https://symfony.com",
  7348. "keywords": [
  7349. "compatibility",
  7350. "grapheme",
  7351. "intl",
  7352. "polyfill",
  7353. "portable",
  7354. "shim"
  7355. ],
  7356. "support": {
  7357. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.33.0"
  7358. },
  7359. "funding": [
  7360. {
  7361. "url": "https://symfony.com/sponsor",
  7362. "type": "custom"
  7363. },
  7364. {
  7365. "url": "https://github.com/fabpot",
  7366. "type": "github"
  7367. },
  7368. {
  7369. "url": "https://github.com/nicolas-grekas",
  7370. "type": "github"
  7371. },
  7372. {
  7373. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7374. "type": "tidelift"
  7375. }
  7376. ],
  7377. "time": "2025-06-27T09:58:17+00:00"
  7378. },
  7379. {
  7380. "name": "symfony/polyfill-intl-idn",
  7381. "version": "v1.33.0",
  7382. "source": {
  7383. "type": "git",
  7384. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  7385. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3"
  7386. },
  7387. "dist": {
  7388. "type": "zip",
  7389. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  7390. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  7391. "shasum": ""
  7392. },
  7393. "require": {
  7394. "php": ">=7.2",
  7395. "symfony/polyfill-intl-normalizer": "^1.10"
  7396. },
  7397. "suggest": {
  7398. "ext-intl": "For best performance"
  7399. },
  7400. "type": "library",
  7401. "extra": {
  7402. "thanks": {
  7403. "url": "https://github.com/symfony/polyfill",
  7404. "name": "symfony/polyfill"
  7405. }
  7406. },
  7407. "autoload": {
  7408. "files": [
  7409. "bootstrap.php"
  7410. ],
  7411. "psr-4": {
  7412. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  7413. }
  7414. },
  7415. "notification-url": "https://packagist.org/downloads/",
  7416. "license": [
  7417. "MIT"
  7418. ],
  7419. "authors": [
  7420. {
  7421. "name": "Laurent Bassin",
  7422. "email": "laurent@bassin.info"
  7423. },
  7424. {
  7425. "name": "Trevor Rowbotham",
  7426. "email": "trevor.rowbotham@pm.me"
  7427. },
  7428. {
  7429. "name": "Symfony Community",
  7430. "homepage": "https://symfony.com/contributors"
  7431. }
  7432. ],
  7433. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  7434. "homepage": "https://symfony.com",
  7435. "keywords": [
  7436. "compatibility",
  7437. "idn",
  7438. "intl",
  7439. "polyfill",
  7440. "portable",
  7441. "shim"
  7442. ],
  7443. "support": {
  7444. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.33.0"
  7445. },
  7446. "funding": [
  7447. {
  7448. "url": "https://symfony.com/sponsor",
  7449. "type": "custom"
  7450. },
  7451. {
  7452. "url": "https://github.com/fabpot",
  7453. "type": "github"
  7454. },
  7455. {
  7456. "url": "https://github.com/nicolas-grekas",
  7457. "type": "github"
  7458. },
  7459. {
  7460. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7461. "type": "tidelift"
  7462. }
  7463. ],
  7464. "time": "2024-09-10T14:38:51+00:00"
  7465. },
  7466. {
  7467. "name": "symfony/polyfill-intl-normalizer",
  7468. "version": "v1.33.0",
  7469. "source": {
  7470. "type": "git",
  7471. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  7472. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  7473. },
  7474. "dist": {
  7475. "type": "zip",
  7476. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  7477. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  7478. "shasum": ""
  7479. },
  7480. "require": {
  7481. "php": ">=7.2"
  7482. },
  7483. "suggest": {
  7484. "ext-intl": "For best performance"
  7485. },
  7486. "type": "library",
  7487. "extra": {
  7488. "thanks": {
  7489. "url": "https://github.com/symfony/polyfill",
  7490. "name": "symfony/polyfill"
  7491. }
  7492. },
  7493. "autoload": {
  7494. "files": [
  7495. "bootstrap.php"
  7496. ],
  7497. "psr-4": {
  7498. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  7499. },
  7500. "classmap": [
  7501. "Resources/stubs"
  7502. ]
  7503. },
  7504. "notification-url": "https://packagist.org/downloads/",
  7505. "license": [
  7506. "MIT"
  7507. ],
  7508. "authors": [
  7509. {
  7510. "name": "Nicolas Grekas",
  7511. "email": "p@tchwork.com"
  7512. },
  7513. {
  7514. "name": "Symfony Community",
  7515. "homepage": "https://symfony.com/contributors"
  7516. }
  7517. ],
  7518. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  7519. "homepage": "https://symfony.com",
  7520. "keywords": [
  7521. "compatibility",
  7522. "intl",
  7523. "normalizer",
  7524. "polyfill",
  7525. "portable",
  7526. "shim"
  7527. ],
  7528. "support": {
  7529. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.33.0"
  7530. },
  7531. "funding": [
  7532. {
  7533. "url": "https://symfony.com/sponsor",
  7534. "type": "custom"
  7535. },
  7536. {
  7537. "url": "https://github.com/fabpot",
  7538. "type": "github"
  7539. },
  7540. {
  7541. "url": "https://github.com/nicolas-grekas",
  7542. "type": "github"
  7543. },
  7544. {
  7545. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7546. "type": "tidelift"
  7547. }
  7548. ],
  7549. "time": "2024-09-09T11:45:10+00:00"
  7550. },
  7551. {
  7552. "name": "symfony/polyfill-mbstring",
  7553. "version": "v1.33.0",
  7554. "source": {
  7555. "type": "git",
  7556. "url": "https://github.com/symfony/polyfill-mbstring.git",
  7557. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
  7558. },
  7559. "dist": {
  7560. "type": "zip",
  7561. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
  7562. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
  7563. "shasum": ""
  7564. },
  7565. "require": {
  7566. "ext-iconv": "*",
  7567. "php": ">=7.2"
  7568. },
  7569. "provide": {
  7570. "ext-mbstring": "*"
  7571. },
  7572. "suggest": {
  7573. "ext-mbstring": "For best performance"
  7574. },
  7575. "type": "library",
  7576. "extra": {
  7577. "thanks": {
  7578. "url": "https://github.com/symfony/polyfill",
  7579. "name": "symfony/polyfill"
  7580. }
  7581. },
  7582. "autoload": {
  7583. "files": [
  7584. "bootstrap.php"
  7585. ],
  7586. "psr-4": {
  7587. "Symfony\\Polyfill\\Mbstring\\": ""
  7588. }
  7589. },
  7590. "notification-url": "https://packagist.org/downloads/",
  7591. "license": [
  7592. "MIT"
  7593. ],
  7594. "authors": [
  7595. {
  7596. "name": "Nicolas Grekas",
  7597. "email": "p@tchwork.com"
  7598. },
  7599. {
  7600. "name": "Symfony Community",
  7601. "homepage": "https://symfony.com/contributors"
  7602. }
  7603. ],
  7604. "description": "Symfony polyfill for the Mbstring extension",
  7605. "homepage": "https://symfony.com",
  7606. "keywords": [
  7607. "compatibility",
  7608. "mbstring",
  7609. "polyfill",
  7610. "portable",
  7611. "shim"
  7612. ],
  7613. "support": {
  7614. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.33.0"
  7615. },
  7616. "funding": [
  7617. {
  7618. "url": "https://symfony.com/sponsor",
  7619. "type": "custom"
  7620. },
  7621. {
  7622. "url": "https://github.com/fabpot",
  7623. "type": "github"
  7624. },
  7625. {
  7626. "url": "https://github.com/nicolas-grekas",
  7627. "type": "github"
  7628. },
  7629. {
  7630. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7631. "type": "tidelift"
  7632. }
  7633. ],
  7634. "time": "2024-12-23T08:48:59+00:00"
  7635. },
  7636. {
  7637. "name": "symfony/polyfill-php80",
  7638. "version": "v1.33.0",
  7639. "source": {
  7640. "type": "git",
  7641. "url": "https://github.com/symfony/polyfill-php80.git",
  7642. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608"
  7643. },
  7644. "dist": {
  7645. "type": "zip",
  7646. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  7647. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  7648. "shasum": ""
  7649. },
  7650. "require": {
  7651. "php": ">=7.2"
  7652. },
  7653. "type": "library",
  7654. "extra": {
  7655. "thanks": {
  7656. "url": "https://github.com/symfony/polyfill",
  7657. "name": "symfony/polyfill"
  7658. }
  7659. },
  7660. "autoload": {
  7661. "files": [
  7662. "bootstrap.php"
  7663. ],
  7664. "psr-4": {
  7665. "Symfony\\Polyfill\\Php80\\": ""
  7666. },
  7667. "classmap": [
  7668. "Resources/stubs"
  7669. ]
  7670. },
  7671. "notification-url": "https://packagist.org/downloads/",
  7672. "license": [
  7673. "MIT"
  7674. ],
  7675. "authors": [
  7676. {
  7677. "name": "Ion Bazan",
  7678. "email": "ion.bazan@gmail.com"
  7679. },
  7680. {
  7681. "name": "Nicolas Grekas",
  7682. "email": "p@tchwork.com"
  7683. },
  7684. {
  7685. "name": "Symfony Community",
  7686. "homepage": "https://symfony.com/contributors"
  7687. }
  7688. ],
  7689. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  7690. "homepage": "https://symfony.com",
  7691. "keywords": [
  7692. "compatibility",
  7693. "polyfill",
  7694. "portable",
  7695. "shim"
  7696. ],
  7697. "support": {
  7698. "source": "https://github.com/symfony/polyfill-php80/tree/v1.33.0"
  7699. },
  7700. "funding": [
  7701. {
  7702. "url": "https://symfony.com/sponsor",
  7703. "type": "custom"
  7704. },
  7705. {
  7706. "url": "https://github.com/fabpot",
  7707. "type": "github"
  7708. },
  7709. {
  7710. "url": "https://github.com/nicolas-grekas",
  7711. "type": "github"
  7712. },
  7713. {
  7714. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7715. "type": "tidelift"
  7716. }
  7717. ],
  7718. "time": "2025-01-02T08:10:11+00:00"
  7719. },
  7720. {
  7721. "name": "symfony/polyfill-php83",
  7722. "version": "v1.33.0",
  7723. "source": {
  7724. "type": "git",
  7725. "url": "https://github.com/symfony/polyfill-php83.git",
  7726. "reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5"
  7727. },
  7728. "dist": {
  7729. "type": "zip",
  7730. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/17f6f9a6b1735c0f163024d959f700cfbc5155e5",
  7731. "reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5",
  7732. "shasum": ""
  7733. },
  7734. "require": {
  7735. "php": ">=7.2"
  7736. },
  7737. "type": "library",
  7738. "extra": {
  7739. "thanks": {
  7740. "url": "https://github.com/symfony/polyfill",
  7741. "name": "symfony/polyfill"
  7742. }
  7743. },
  7744. "autoload": {
  7745. "files": [
  7746. "bootstrap.php"
  7747. ],
  7748. "psr-4": {
  7749. "Symfony\\Polyfill\\Php83\\": ""
  7750. },
  7751. "classmap": [
  7752. "Resources/stubs"
  7753. ]
  7754. },
  7755. "notification-url": "https://packagist.org/downloads/",
  7756. "license": [
  7757. "MIT"
  7758. ],
  7759. "authors": [
  7760. {
  7761. "name": "Nicolas Grekas",
  7762. "email": "p@tchwork.com"
  7763. },
  7764. {
  7765. "name": "Symfony Community",
  7766. "homepage": "https://symfony.com/contributors"
  7767. }
  7768. ],
  7769. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  7770. "homepage": "https://symfony.com",
  7771. "keywords": [
  7772. "compatibility",
  7773. "polyfill",
  7774. "portable",
  7775. "shim"
  7776. ],
  7777. "support": {
  7778. "source": "https://github.com/symfony/polyfill-php83/tree/v1.33.0"
  7779. },
  7780. "funding": [
  7781. {
  7782. "url": "https://symfony.com/sponsor",
  7783. "type": "custom"
  7784. },
  7785. {
  7786. "url": "https://github.com/fabpot",
  7787. "type": "github"
  7788. },
  7789. {
  7790. "url": "https://github.com/nicolas-grekas",
  7791. "type": "github"
  7792. },
  7793. {
  7794. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7795. "type": "tidelift"
  7796. }
  7797. ],
  7798. "time": "2025-07-08T02:45:35+00:00"
  7799. },
  7800. {
  7801. "name": "symfony/polyfill-php84",
  7802. "version": "v1.33.0",
  7803. "source": {
  7804. "type": "git",
  7805. "url": "https://github.com/symfony/polyfill-php84.git",
  7806. "reference": "d8ced4d875142b6a7426000426b8abc631d6b191"
  7807. },
  7808. "dist": {
  7809. "type": "zip",
  7810. "url": "https://api.github.com/repos/symfony/polyfill-php84/zipball/d8ced4d875142b6a7426000426b8abc631d6b191",
  7811. "reference": "d8ced4d875142b6a7426000426b8abc631d6b191",
  7812. "shasum": ""
  7813. },
  7814. "require": {
  7815. "php": ">=7.2"
  7816. },
  7817. "type": "library",
  7818. "extra": {
  7819. "thanks": {
  7820. "url": "https://github.com/symfony/polyfill",
  7821. "name": "symfony/polyfill"
  7822. }
  7823. },
  7824. "autoload": {
  7825. "files": [
  7826. "bootstrap.php"
  7827. ],
  7828. "psr-4": {
  7829. "Symfony\\Polyfill\\Php84\\": ""
  7830. },
  7831. "classmap": [
  7832. "Resources/stubs"
  7833. ]
  7834. },
  7835. "notification-url": "https://packagist.org/downloads/",
  7836. "license": [
  7837. "MIT"
  7838. ],
  7839. "authors": [
  7840. {
  7841. "name": "Nicolas Grekas",
  7842. "email": "p@tchwork.com"
  7843. },
  7844. {
  7845. "name": "Symfony Community",
  7846. "homepage": "https://symfony.com/contributors"
  7847. }
  7848. ],
  7849. "description": "Symfony polyfill backporting some PHP 8.4+ features to lower PHP versions",
  7850. "homepage": "https://symfony.com",
  7851. "keywords": [
  7852. "compatibility",
  7853. "polyfill",
  7854. "portable",
  7855. "shim"
  7856. ],
  7857. "support": {
  7858. "source": "https://github.com/symfony/polyfill-php84/tree/v1.33.0"
  7859. },
  7860. "funding": [
  7861. {
  7862. "url": "https://symfony.com/sponsor",
  7863. "type": "custom"
  7864. },
  7865. {
  7866. "url": "https://github.com/fabpot",
  7867. "type": "github"
  7868. },
  7869. {
  7870. "url": "https://github.com/nicolas-grekas",
  7871. "type": "github"
  7872. },
  7873. {
  7874. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7875. "type": "tidelift"
  7876. }
  7877. ],
  7878. "time": "2025-06-24T13:30:11+00:00"
  7879. },
  7880. {
  7881. "name": "symfony/polyfill-php85",
  7882. "version": "v1.33.0",
  7883. "source": {
  7884. "type": "git",
  7885. "url": "https://github.com/symfony/polyfill-php85.git",
  7886. "reference": "d4e5fcd4ab3d998ab16c0db48e6cbb9a01993f91"
  7887. },
  7888. "dist": {
  7889. "type": "zip",
  7890. "url": "https://api.github.com/repos/symfony/polyfill-php85/zipball/d4e5fcd4ab3d998ab16c0db48e6cbb9a01993f91",
  7891. "reference": "d4e5fcd4ab3d998ab16c0db48e6cbb9a01993f91",
  7892. "shasum": ""
  7893. },
  7894. "require": {
  7895. "php": ">=7.2"
  7896. },
  7897. "type": "library",
  7898. "extra": {
  7899. "thanks": {
  7900. "url": "https://github.com/symfony/polyfill",
  7901. "name": "symfony/polyfill"
  7902. }
  7903. },
  7904. "autoload": {
  7905. "files": [
  7906. "bootstrap.php"
  7907. ],
  7908. "psr-4": {
  7909. "Symfony\\Polyfill\\Php85\\": ""
  7910. },
  7911. "classmap": [
  7912. "Resources/stubs"
  7913. ]
  7914. },
  7915. "notification-url": "https://packagist.org/downloads/",
  7916. "license": [
  7917. "MIT"
  7918. ],
  7919. "authors": [
  7920. {
  7921. "name": "Nicolas Grekas",
  7922. "email": "p@tchwork.com"
  7923. },
  7924. {
  7925. "name": "Symfony Community",
  7926. "homepage": "https://symfony.com/contributors"
  7927. }
  7928. ],
  7929. "description": "Symfony polyfill backporting some PHP 8.5+ features to lower PHP versions",
  7930. "homepage": "https://symfony.com",
  7931. "keywords": [
  7932. "compatibility",
  7933. "polyfill",
  7934. "portable",
  7935. "shim"
  7936. ],
  7937. "support": {
  7938. "source": "https://github.com/symfony/polyfill-php85/tree/v1.33.0"
  7939. },
  7940. "funding": [
  7941. {
  7942. "url": "https://symfony.com/sponsor",
  7943. "type": "custom"
  7944. },
  7945. {
  7946. "url": "https://github.com/fabpot",
  7947. "type": "github"
  7948. },
  7949. {
  7950. "url": "https://github.com/nicolas-grekas",
  7951. "type": "github"
  7952. },
  7953. {
  7954. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7955. "type": "tidelift"
  7956. }
  7957. ],
  7958. "time": "2025-06-23T16:12:55+00:00"
  7959. },
  7960. {
  7961. "name": "symfony/polyfill-uuid",
  7962. "version": "v1.33.0",
  7963. "source": {
  7964. "type": "git",
  7965. "url": "https://github.com/symfony/polyfill-uuid.git",
  7966. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2"
  7967. },
  7968. "dist": {
  7969. "type": "zip",
  7970. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  7971. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  7972. "shasum": ""
  7973. },
  7974. "require": {
  7975. "php": ">=7.2"
  7976. },
  7977. "provide": {
  7978. "ext-uuid": "*"
  7979. },
  7980. "suggest": {
  7981. "ext-uuid": "For best performance"
  7982. },
  7983. "type": "library",
  7984. "extra": {
  7985. "thanks": {
  7986. "url": "https://github.com/symfony/polyfill",
  7987. "name": "symfony/polyfill"
  7988. }
  7989. },
  7990. "autoload": {
  7991. "files": [
  7992. "bootstrap.php"
  7993. ],
  7994. "psr-4": {
  7995. "Symfony\\Polyfill\\Uuid\\": ""
  7996. }
  7997. },
  7998. "notification-url": "https://packagist.org/downloads/",
  7999. "license": [
  8000. "MIT"
  8001. ],
  8002. "authors": [
  8003. {
  8004. "name": "Grégoire Pineau",
  8005. "email": "lyrixx@lyrixx.info"
  8006. },
  8007. {
  8008. "name": "Symfony Community",
  8009. "homepage": "https://symfony.com/contributors"
  8010. }
  8011. ],
  8012. "description": "Symfony polyfill for uuid functions",
  8013. "homepage": "https://symfony.com",
  8014. "keywords": [
  8015. "compatibility",
  8016. "polyfill",
  8017. "portable",
  8018. "uuid"
  8019. ],
  8020. "support": {
  8021. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.33.0"
  8022. },
  8023. "funding": [
  8024. {
  8025. "url": "https://symfony.com/sponsor",
  8026. "type": "custom"
  8027. },
  8028. {
  8029. "url": "https://github.com/fabpot",
  8030. "type": "github"
  8031. },
  8032. {
  8033. "url": "https://github.com/nicolas-grekas",
  8034. "type": "github"
  8035. },
  8036. {
  8037. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8038. "type": "tidelift"
  8039. }
  8040. ],
  8041. "time": "2024-09-09T11:45:10+00:00"
  8042. },
  8043. {
  8044. "name": "symfony/process",
  8045. "version": "v7.4.3",
  8046. "source": {
  8047. "type": "git",
  8048. "url": "https://github.com/symfony/process.git",
  8049. "reference": "2f8e1a6cdf590ca63715da4d3a7a3327404a523f"
  8050. },
  8051. "dist": {
  8052. "type": "zip",
  8053. "url": "https://api.github.com/repos/symfony/process/zipball/2f8e1a6cdf590ca63715da4d3a7a3327404a523f",
  8054. "reference": "2f8e1a6cdf590ca63715da4d3a7a3327404a523f",
  8055. "shasum": ""
  8056. },
  8057. "require": {
  8058. "php": ">=8.2"
  8059. },
  8060. "type": "library",
  8061. "autoload": {
  8062. "psr-4": {
  8063. "Symfony\\Component\\Process\\": ""
  8064. },
  8065. "exclude-from-classmap": [
  8066. "/Tests/"
  8067. ]
  8068. },
  8069. "notification-url": "https://packagist.org/downloads/",
  8070. "license": [
  8071. "MIT"
  8072. ],
  8073. "authors": [
  8074. {
  8075. "name": "Fabien Potencier",
  8076. "email": "fabien@symfony.com"
  8077. },
  8078. {
  8079. "name": "Symfony Community",
  8080. "homepage": "https://symfony.com/contributors"
  8081. }
  8082. ],
  8083. "description": "Executes commands in sub-processes",
  8084. "homepage": "https://symfony.com",
  8085. "support": {
  8086. "source": "https://github.com/symfony/process/tree/v7.4.3"
  8087. },
  8088. "funding": [
  8089. {
  8090. "url": "https://symfony.com/sponsor",
  8091. "type": "custom"
  8092. },
  8093. {
  8094. "url": "https://github.com/fabpot",
  8095. "type": "github"
  8096. },
  8097. {
  8098. "url": "https://github.com/nicolas-grekas",
  8099. "type": "github"
  8100. },
  8101. {
  8102. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8103. "type": "tidelift"
  8104. }
  8105. ],
  8106. "time": "2025-12-19T10:00:43+00:00"
  8107. },
  8108. {
  8109. "name": "symfony/routing",
  8110. "version": "v7.4.3",
  8111. "source": {
  8112. "type": "git",
  8113. "url": "https://github.com/symfony/routing.git",
  8114. "reference": "5d3fd7adf8896c2fdb54e2f0f35b1bcbd9e45090"
  8115. },
  8116. "dist": {
  8117. "type": "zip",
  8118. "url": "https://api.github.com/repos/symfony/routing/zipball/5d3fd7adf8896c2fdb54e2f0f35b1bcbd9e45090",
  8119. "reference": "5d3fd7adf8896c2fdb54e2f0f35b1bcbd9e45090",
  8120. "shasum": ""
  8121. },
  8122. "require": {
  8123. "php": ">=8.2",
  8124. "symfony/deprecation-contracts": "^2.5|^3"
  8125. },
  8126. "conflict": {
  8127. "symfony/config": "<6.4",
  8128. "symfony/dependency-injection": "<6.4",
  8129. "symfony/yaml": "<6.4"
  8130. },
  8131. "require-dev": {
  8132. "psr/log": "^1|^2|^3",
  8133. "symfony/config": "^6.4|^7.0|^8.0",
  8134. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  8135. "symfony/expression-language": "^6.4|^7.0|^8.0",
  8136. "symfony/http-foundation": "^6.4|^7.0|^8.0",
  8137. "symfony/yaml": "^6.4|^7.0|^8.0"
  8138. },
  8139. "type": "library",
  8140. "autoload": {
  8141. "psr-4": {
  8142. "Symfony\\Component\\Routing\\": ""
  8143. },
  8144. "exclude-from-classmap": [
  8145. "/Tests/"
  8146. ]
  8147. },
  8148. "notification-url": "https://packagist.org/downloads/",
  8149. "license": [
  8150. "MIT"
  8151. ],
  8152. "authors": [
  8153. {
  8154. "name": "Fabien Potencier",
  8155. "email": "fabien@symfony.com"
  8156. },
  8157. {
  8158. "name": "Symfony Community",
  8159. "homepage": "https://symfony.com/contributors"
  8160. }
  8161. ],
  8162. "description": "Maps an HTTP request to a set of configuration variables",
  8163. "homepage": "https://symfony.com",
  8164. "keywords": [
  8165. "router",
  8166. "routing",
  8167. "uri",
  8168. "url"
  8169. ],
  8170. "support": {
  8171. "source": "https://github.com/symfony/routing/tree/v7.4.3"
  8172. },
  8173. "funding": [
  8174. {
  8175. "url": "https://symfony.com/sponsor",
  8176. "type": "custom"
  8177. },
  8178. {
  8179. "url": "https://github.com/fabpot",
  8180. "type": "github"
  8181. },
  8182. {
  8183. "url": "https://github.com/nicolas-grekas",
  8184. "type": "github"
  8185. },
  8186. {
  8187. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8188. "type": "tidelift"
  8189. }
  8190. ],
  8191. "time": "2025-12-19T10:00:43+00:00"
  8192. },
  8193. {
  8194. "name": "symfony/service-contracts",
  8195. "version": "v3.6.1",
  8196. "source": {
  8197. "type": "git",
  8198. "url": "https://github.com/symfony/service-contracts.git",
  8199. "reference": "45112560a3ba2d715666a509a0bc9521d10b6c43"
  8200. },
  8201. "dist": {
  8202. "type": "zip",
  8203. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/45112560a3ba2d715666a509a0bc9521d10b6c43",
  8204. "reference": "45112560a3ba2d715666a509a0bc9521d10b6c43",
  8205. "shasum": ""
  8206. },
  8207. "require": {
  8208. "php": ">=8.1",
  8209. "psr/container": "^1.1|^2.0",
  8210. "symfony/deprecation-contracts": "^2.5|^3"
  8211. },
  8212. "conflict": {
  8213. "ext-psr": "<1.1|>=2"
  8214. },
  8215. "type": "library",
  8216. "extra": {
  8217. "thanks": {
  8218. "url": "https://github.com/symfony/contracts",
  8219. "name": "symfony/contracts"
  8220. },
  8221. "branch-alias": {
  8222. "dev-main": "3.6-dev"
  8223. }
  8224. },
  8225. "autoload": {
  8226. "psr-4": {
  8227. "Symfony\\Contracts\\Service\\": ""
  8228. },
  8229. "exclude-from-classmap": [
  8230. "/Test/"
  8231. ]
  8232. },
  8233. "notification-url": "https://packagist.org/downloads/",
  8234. "license": [
  8235. "MIT"
  8236. ],
  8237. "authors": [
  8238. {
  8239. "name": "Nicolas Grekas",
  8240. "email": "p@tchwork.com"
  8241. },
  8242. {
  8243. "name": "Symfony Community",
  8244. "homepage": "https://symfony.com/contributors"
  8245. }
  8246. ],
  8247. "description": "Generic abstractions related to writing services",
  8248. "homepage": "https://symfony.com",
  8249. "keywords": [
  8250. "abstractions",
  8251. "contracts",
  8252. "decoupling",
  8253. "interfaces",
  8254. "interoperability",
  8255. "standards"
  8256. ],
  8257. "support": {
  8258. "source": "https://github.com/symfony/service-contracts/tree/v3.6.1"
  8259. },
  8260. "funding": [
  8261. {
  8262. "url": "https://symfony.com/sponsor",
  8263. "type": "custom"
  8264. },
  8265. {
  8266. "url": "https://github.com/fabpot",
  8267. "type": "github"
  8268. },
  8269. {
  8270. "url": "https://github.com/nicolas-grekas",
  8271. "type": "github"
  8272. },
  8273. {
  8274. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8275. "type": "tidelift"
  8276. }
  8277. ],
  8278. "time": "2025-07-15T11:30:57+00:00"
  8279. },
  8280. {
  8281. "name": "symfony/string",
  8282. "version": "v7.4.0",
  8283. "source": {
  8284. "type": "git",
  8285. "url": "https://github.com/symfony/string.git",
  8286. "reference": "d50e862cb0a0e0886f73ca1f31b865efbb795003"
  8287. },
  8288. "dist": {
  8289. "type": "zip",
  8290. "url": "https://api.github.com/repos/symfony/string/zipball/d50e862cb0a0e0886f73ca1f31b865efbb795003",
  8291. "reference": "d50e862cb0a0e0886f73ca1f31b865efbb795003",
  8292. "shasum": ""
  8293. },
  8294. "require": {
  8295. "php": ">=8.2",
  8296. "symfony/deprecation-contracts": "^2.5|^3.0",
  8297. "symfony/polyfill-ctype": "~1.8",
  8298. "symfony/polyfill-intl-grapheme": "~1.33",
  8299. "symfony/polyfill-intl-normalizer": "~1.0",
  8300. "symfony/polyfill-mbstring": "~1.0"
  8301. },
  8302. "conflict": {
  8303. "symfony/translation-contracts": "<2.5"
  8304. },
  8305. "require-dev": {
  8306. "symfony/emoji": "^7.1|^8.0",
  8307. "symfony/http-client": "^6.4|^7.0|^8.0",
  8308. "symfony/intl": "^6.4|^7.0|^8.0",
  8309. "symfony/translation-contracts": "^2.5|^3.0",
  8310. "symfony/var-exporter": "^6.4|^7.0|^8.0"
  8311. },
  8312. "type": "library",
  8313. "autoload": {
  8314. "files": [
  8315. "Resources/functions.php"
  8316. ],
  8317. "psr-4": {
  8318. "Symfony\\Component\\String\\": ""
  8319. },
  8320. "exclude-from-classmap": [
  8321. "/Tests/"
  8322. ]
  8323. },
  8324. "notification-url": "https://packagist.org/downloads/",
  8325. "license": [
  8326. "MIT"
  8327. ],
  8328. "authors": [
  8329. {
  8330. "name": "Nicolas Grekas",
  8331. "email": "p@tchwork.com"
  8332. },
  8333. {
  8334. "name": "Symfony Community",
  8335. "homepage": "https://symfony.com/contributors"
  8336. }
  8337. ],
  8338. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  8339. "homepage": "https://symfony.com",
  8340. "keywords": [
  8341. "grapheme",
  8342. "i18n",
  8343. "string",
  8344. "unicode",
  8345. "utf-8",
  8346. "utf8"
  8347. ],
  8348. "support": {
  8349. "source": "https://github.com/symfony/string/tree/v7.4.0"
  8350. },
  8351. "funding": [
  8352. {
  8353. "url": "https://symfony.com/sponsor",
  8354. "type": "custom"
  8355. },
  8356. {
  8357. "url": "https://github.com/fabpot",
  8358. "type": "github"
  8359. },
  8360. {
  8361. "url": "https://github.com/nicolas-grekas",
  8362. "type": "github"
  8363. },
  8364. {
  8365. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8366. "type": "tidelift"
  8367. }
  8368. ],
  8369. "time": "2025-11-27T13:27:24+00:00"
  8370. },
  8371. {
  8372. "name": "symfony/translation",
  8373. "version": "v7.4.3",
  8374. "source": {
  8375. "type": "git",
  8376. "url": "https://github.com/symfony/translation.git",
  8377. "reference": "7ef27c65d78886f7599fdd5c93d12c9243ecf44d"
  8378. },
  8379. "dist": {
  8380. "type": "zip",
  8381. "url": "https://api.github.com/repos/symfony/translation/zipball/7ef27c65d78886f7599fdd5c93d12c9243ecf44d",
  8382. "reference": "7ef27c65d78886f7599fdd5c93d12c9243ecf44d",
  8383. "shasum": ""
  8384. },
  8385. "require": {
  8386. "php": ">=8.2",
  8387. "symfony/deprecation-contracts": "^2.5|^3",
  8388. "symfony/polyfill-mbstring": "~1.0",
  8389. "symfony/translation-contracts": "^2.5.3|^3.3"
  8390. },
  8391. "conflict": {
  8392. "nikic/php-parser": "<5.0",
  8393. "symfony/config": "<6.4",
  8394. "symfony/console": "<6.4",
  8395. "symfony/dependency-injection": "<6.4",
  8396. "symfony/http-client-contracts": "<2.5",
  8397. "symfony/http-kernel": "<6.4",
  8398. "symfony/service-contracts": "<2.5",
  8399. "symfony/twig-bundle": "<6.4",
  8400. "symfony/yaml": "<6.4"
  8401. },
  8402. "provide": {
  8403. "symfony/translation-implementation": "2.3|3.0"
  8404. },
  8405. "require-dev": {
  8406. "nikic/php-parser": "^5.0",
  8407. "psr/log": "^1|^2|^3",
  8408. "symfony/config": "^6.4|^7.0|^8.0",
  8409. "symfony/console": "^6.4|^7.0|^8.0",
  8410. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  8411. "symfony/finder": "^6.4|^7.0|^8.0",
  8412. "symfony/http-client-contracts": "^2.5|^3.0",
  8413. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  8414. "symfony/intl": "^6.4|^7.0|^8.0",
  8415. "symfony/polyfill-intl-icu": "^1.21",
  8416. "symfony/routing": "^6.4|^7.0|^8.0",
  8417. "symfony/service-contracts": "^2.5|^3",
  8418. "symfony/yaml": "^6.4|^7.0|^8.0"
  8419. },
  8420. "type": "library",
  8421. "autoload": {
  8422. "files": [
  8423. "Resources/functions.php"
  8424. ],
  8425. "psr-4": {
  8426. "Symfony\\Component\\Translation\\": ""
  8427. },
  8428. "exclude-from-classmap": [
  8429. "/Tests/"
  8430. ]
  8431. },
  8432. "notification-url": "https://packagist.org/downloads/",
  8433. "license": [
  8434. "MIT"
  8435. ],
  8436. "authors": [
  8437. {
  8438. "name": "Fabien Potencier",
  8439. "email": "fabien@symfony.com"
  8440. },
  8441. {
  8442. "name": "Symfony Community",
  8443. "homepage": "https://symfony.com/contributors"
  8444. }
  8445. ],
  8446. "description": "Provides tools to internationalize your application",
  8447. "homepage": "https://symfony.com",
  8448. "support": {
  8449. "source": "https://github.com/symfony/translation/tree/v7.4.3"
  8450. },
  8451. "funding": [
  8452. {
  8453. "url": "https://symfony.com/sponsor",
  8454. "type": "custom"
  8455. },
  8456. {
  8457. "url": "https://github.com/fabpot",
  8458. "type": "github"
  8459. },
  8460. {
  8461. "url": "https://github.com/nicolas-grekas",
  8462. "type": "github"
  8463. },
  8464. {
  8465. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8466. "type": "tidelift"
  8467. }
  8468. ],
  8469. "time": "2025-12-29T09:31:36+00:00"
  8470. },
  8471. {
  8472. "name": "symfony/translation-contracts",
  8473. "version": "v3.6.1",
  8474. "source": {
  8475. "type": "git",
  8476. "url": "https://github.com/symfony/translation-contracts.git",
  8477. "reference": "65a8bc82080447fae78373aa10f8d13b38338977"
  8478. },
  8479. "dist": {
  8480. "type": "zip",
  8481. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/65a8bc82080447fae78373aa10f8d13b38338977",
  8482. "reference": "65a8bc82080447fae78373aa10f8d13b38338977",
  8483. "shasum": ""
  8484. },
  8485. "require": {
  8486. "php": ">=8.1"
  8487. },
  8488. "type": "library",
  8489. "extra": {
  8490. "thanks": {
  8491. "url": "https://github.com/symfony/contracts",
  8492. "name": "symfony/contracts"
  8493. },
  8494. "branch-alias": {
  8495. "dev-main": "3.6-dev"
  8496. }
  8497. },
  8498. "autoload": {
  8499. "psr-4": {
  8500. "Symfony\\Contracts\\Translation\\": ""
  8501. },
  8502. "exclude-from-classmap": [
  8503. "/Test/"
  8504. ]
  8505. },
  8506. "notification-url": "https://packagist.org/downloads/",
  8507. "license": [
  8508. "MIT"
  8509. ],
  8510. "authors": [
  8511. {
  8512. "name": "Nicolas Grekas",
  8513. "email": "p@tchwork.com"
  8514. },
  8515. {
  8516. "name": "Symfony Community",
  8517. "homepage": "https://symfony.com/contributors"
  8518. }
  8519. ],
  8520. "description": "Generic abstractions related to translation",
  8521. "homepage": "https://symfony.com",
  8522. "keywords": [
  8523. "abstractions",
  8524. "contracts",
  8525. "decoupling",
  8526. "interfaces",
  8527. "interoperability",
  8528. "standards"
  8529. ],
  8530. "support": {
  8531. "source": "https://github.com/symfony/translation-contracts/tree/v3.6.1"
  8532. },
  8533. "funding": [
  8534. {
  8535. "url": "https://symfony.com/sponsor",
  8536. "type": "custom"
  8537. },
  8538. {
  8539. "url": "https://github.com/fabpot",
  8540. "type": "github"
  8541. },
  8542. {
  8543. "url": "https://github.com/nicolas-grekas",
  8544. "type": "github"
  8545. },
  8546. {
  8547. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8548. "type": "tidelift"
  8549. }
  8550. ],
  8551. "time": "2025-07-15T13:41:35+00:00"
  8552. },
  8553. {
  8554. "name": "symfony/uid",
  8555. "version": "v7.4.0",
  8556. "source": {
  8557. "type": "git",
  8558. "url": "https://github.com/symfony/uid.git",
  8559. "reference": "2498e9f81b7baa206f44de583f2f48350b90142c"
  8560. },
  8561. "dist": {
  8562. "type": "zip",
  8563. "url": "https://api.github.com/repos/symfony/uid/zipball/2498e9f81b7baa206f44de583f2f48350b90142c",
  8564. "reference": "2498e9f81b7baa206f44de583f2f48350b90142c",
  8565. "shasum": ""
  8566. },
  8567. "require": {
  8568. "php": ">=8.2",
  8569. "symfony/polyfill-uuid": "^1.15"
  8570. },
  8571. "require-dev": {
  8572. "symfony/console": "^6.4|^7.0|^8.0"
  8573. },
  8574. "type": "library",
  8575. "autoload": {
  8576. "psr-4": {
  8577. "Symfony\\Component\\Uid\\": ""
  8578. },
  8579. "exclude-from-classmap": [
  8580. "/Tests/"
  8581. ]
  8582. },
  8583. "notification-url": "https://packagist.org/downloads/",
  8584. "license": [
  8585. "MIT"
  8586. ],
  8587. "authors": [
  8588. {
  8589. "name": "Grégoire Pineau",
  8590. "email": "lyrixx@lyrixx.info"
  8591. },
  8592. {
  8593. "name": "Nicolas Grekas",
  8594. "email": "p@tchwork.com"
  8595. },
  8596. {
  8597. "name": "Symfony Community",
  8598. "homepage": "https://symfony.com/contributors"
  8599. }
  8600. ],
  8601. "description": "Provides an object-oriented API to generate and represent UIDs",
  8602. "homepage": "https://symfony.com",
  8603. "keywords": [
  8604. "UID",
  8605. "ulid",
  8606. "uuid"
  8607. ],
  8608. "support": {
  8609. "source": "https://github.com/symfony/uid/tree/v7.4.0"
  8610. },
  8611. "funding": [
  8612. {
  8613. "url": "https://symfony.com/sponsor",
  8614. "type": "custom"
  8615. },
  8616. {
  8617. "url": "https://github.com/fabpot",
  8618. "type": "github"
  8619. },
  8620. {
  8621. "url": "https://github.com/nicolas-grekas",
  8622. "type": "github"
  8623. },
  8624. {
  8625. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8626. "type": "tidelift"
  8627. }
  8628. ],
  8629. "time": "2025-09-25T11:02:55+00:00"
  8630. },
  8631. {
  8632. "name": "symfony/var-dumper",
  8633. "version": "v7.4.3",
  8634. "source": {
  8635. "type": "git",
  8636. "url": "https://github.com/symfony/var-dumper.git",
  8637. "reference": "7e99bebcb3f90d8721890f2963463280848cba92"
  8638. },
  8639. "dist": {
  8640. "type": "zip",
  8641. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/7e99bebcb3f90d8721890f2963463280848cba92",
  8642. "reference": "7e99bebcb3f90d8721890f2963463280848cba92",
  8643. "shasum": ""
  8644. },
  8645. "require": {
  8646. "php": ">=8.2",
  8647. "symfony/deprecation-contracts": "^2.5|^3",
  8648. "symfony/polyfill-mbstring": "~1.0"
  8649. },
  8650. "conflict": {
  8651. "symfony/console": "<6.4"
  8652. },
  8653. "require-dev": {
  8654. "symfony/console": "^6.4|^7.0|^8.0",
  8655. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  8656. "symfony/process": "^6.4|^7.0|^8.0",
  8657. "symfony/uid": "^6.4|^7.0|^8.0",
  8658. "twig/twig": "^3.12"
  8659. },
  8660. "bin": [
  8661. "Resources/bin/var-dump-server"
  8662. ],
  8663. "type": "library",
  8664. "autoload": {
  8665. "files": [
  8666. "Resources/functions/dump.php"
  8667. ],
  8668. "psr-4": {
  8669. "Symfony\\Component\\VarDumper\\": ""
  8670. },
  8671. "exclude-from-classmap": [
  8672. "/Tests/"
  8673. ]
  8674. },
  8675. "notification-url": "https://packagist.org/downloads/",
  8676. "license": [
  8677. "MIT"
  8678. ],
  8679. "authors": [
  8680. {
  8681. "name": "Nicolas Grekas",
  8682. "email": "p@tchwork.com"
  8683. },
  8684. {
  8685. "name": "Symfony Community",
  8686. "homepage": "https://symfony.com/contributors"
  8687. }
  8688. ],
  8689. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  8690. "homepage": "https://symfony.com",
  8691. "keywords": [
  8692. "debug",
  8693. "dump"
  8694. ],
  8695. "support": {
  8696. "source": "https://github.com/symfony/var-dumper/tree/v7.4.3"
  8697. },
  8698. "funding": [
  8699. {
  8700. "url": "https://symfony.com/sponsor",
  8701. "type": "custom"
  8702. },
  8703. {
  8704. "url": "https://github.com/fabpot",
  8705. "type": "github"
  8706. },
  8707. {
  8708. "url": "https://github.com/nicolas-grekas",
  8709. "type": "github"
  8710. },
  8711. {
  8712. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8713. "type": "tidelift"
  8714. }
  8715. ],
  8716. "time": "2025-12-18T07:04:31+00:00"
  8717. },
  8718. {
  8719. "name": "tecnickcom/tcpdf",
  8720. "version": "6.10.1",
  8721. "source": {
  8722. "type": "git",
  8723. "url": "https://github.com/tecnickcom/TCPDF.git",
  8724. "reference": "7a2701251e5d52fc3d508fd71704683eb54f5939"
  8725. },
  8726. "dist": {
  8727. "type": "zip",
  8728. "url": "https://api.github.com/repos/tecnickcom/TCPDF/zipball/7a2701251e5d52fc3d508fd71704683eb54f5939",
  8729. "reference": "7a2701251e5d52fc3d508fd71704683eb54f5939",
  8730. "shasum": ""
  8731. },
  8732. "require": {
  8733. "ext-curl": "*",
  8734. "php": ">=7.1.0"
  8735. },
  8736. "type": "library",
  8737. "autoload": {
  8738. "classmap": [
  8739. "config",
  8740. "include",
  8741. "tcpdf.php",
  8742. "tcpdf_barcodes_1d.php",
  8743. "tcpdf_barcodes_2d.php",
  8744. "include/tcpdf_colors.php",
  8745. "include/tcpdf_filters.php",
  8746. "include/tcpdf_font_data.php",
  8747. "include/tcpdf_fonts.php",
  8748. "include/tcpdf_images.php",
  8749. "include/tcpdf_static.php",
  8750. "include/barcodes/datamatrix.php",
  8751. "include/barcodes/pdf417.php",
  8752. "include/barcodes/qrcode.php"
  8753. ]
  8754. },
  8755. "notification-url": "https://packagist.org/downloads/",
  8756. "license": [
  8757. "LGPL-3.0-or-later"
  8758. ],
  8759. "authors": [
  8760. {
  8761. "name": "Nicola Asuni",
  8762. "email": "info@tecnick.com",
  8763. "role": "lead"
  8764. }
  8765. ],
  8766. "description": "TCPDF is a PHP class for generating PDF documents and barcodes.",
  8767. "homepage": "http://www.tcpdf.org/",
  8768. "keywords": [
  8769. "PDFD32000-2008",
  8770. "TCPDF",
  8771. "barcodes",
  8772. "datamatrix",
  8773. "pdf",
  8774. "pdf417",
  8775. "qrcode"
  8776. ],
  8777. "support": {
  8778. "issues": "https://github.com/tecnickcom/TCPDF/issues",
  8779. "source": "https://github.com/tecnickcom/TCPDF/tree/6.10.1"
  8780. },
  8781. "funding": [
  8782. {
  8783. "url": "https://www.paypal.com/donate/?hosted_button_id=NZUEC5XS8MFBJ",
  8784. "type": "custom"
  8785. }
  8786. ],
  8787. "time": "2025-11-21T10:58:21+00:00"
  8788. },
  8789. {
  8790. "name": "thecodingmachine/safe",
  8791. "version": "v3.3.0",
  8792. "source": {
  8793. "type": "git",
  8794. "url": "https://github.com/thecodingmachine/safe.git",
  8795. "reference": "2cdd579eeaa2e78e51c7509b50cc9fb89a956236"
  8796. },
  8797. "dist": {
  8798. "type": "zip",
  8799. "url": "https://api.github.com/repos/thecodingmachine/safe/zipball/2cdd579eeaa2e78e51c7509b50cc9fb89a956236",
  8800. "reference": "2cdd579eeaa2e78e51c7509b50cc9fb89a956236",
  8801. "shasum": ""
  8802. },
  8803. "require": {
  8804. "php": "^8.1"
  8805. },
  8806. "require-dev": {
  8807. "php-parallel-lint/php-parallel-lint": "^1.4",
  8808. "phpstan/phpstan": "^2",
  8809. "phpunit/phpunit": "^10",
  8810. "squizlabs/php_codesniffer": "^3.2"
  8811. },
  8812. "type": "library",
  8813. "autoload": {
  8814. "files": [
  8815. "lib/special_cases.php",
  8816. "generated/apache.php",
  8817. "generated/apcu.php",
  8818. "generated/array.php",
  8819. "generated/bzip2.php",
  8820. "generated/calendar.php",
  8821. "generated/classobj.php",
  8822. "generated/com.php",
  8823. "generated/cubrid.php",
  8824. "generated/curl.php",
  8825. "generated/datetime.php",
  8826. "generated/dir.php",
  8827. "generated/eio.php",
  8828. "generated/errorfunc.php",
  8829. "generated/exec.php",
  8830. "generated/fileinfo.php",
  8831. "generated/filesystem.php",
  8832. "generated/filter.php",
  8833. "generated/fpm.php",
  8834. "generated/ftp.php",
  8835. "generated/funchand.php",
  8836. "generated/gettext.php",
  8837. "generated/gmp.php",
  8838. "generated/gnupg.php",
  8839. "generated/hash.php",
  8840. "generated/ibase.php",
  8841. "generated/ibmDb2.php",
  8842. "generated/iconv.php",
  8843. "generated/image.php",
  8844. "generated/imap.php",
  8845. "generated/info.php",
  8846. "generated/inotify.php",
  8847. "generated/json.php",
  8848. "generated/ldap.php",
  8849. "generated/libxml.php",
  8850. "generated/lzf.php",
  8851. "generated/mailparse.php",
  8852. "generated/mbstring.php",
  8853. "generated/misc.php",
  8854. "generated/mysql.php",
  8855. "generated/mysqli.php",
  8856. "generated/network.php",
  8857. "generated/oci8.php",
  8858. "generated/opcache.php",
  8859. "generated/openssl.php",
  8860. "generated/outcontrol.php",
  8861. "generated/pcntl.php",
  8862. "generated/pcre.php",
  8863. "generated/pgsql.php",
  8864. "generated/posix.php",
  8865. "generated/ps.php",
  8866. "generated/pspell.php",
  8867. "generated/readline.php",
  8868. "generated/rnp.php",
  8869. "generated/rpminfo.php",
  8870. "generated/rrd.php",
  8871. "generated/sem.php",
  8872. "generated/session.php",
  8873. "generated/shmop.php",
  8874. "generated/sockets.php",
  8875. "generated/sodium.php",
  8876. "generated/solr.php",
  8877. "generated/spl.php",
  8878. "generated/sqlsrv.php",
  8879. "generated/ssdeep.php",
  8880. "generated/ssh2.php",
  8881. "generated/stream.php",
  8882. "generated/strings.php",
  8883. "generated/swoole.php",
  8884. "generated/uodbc.php",
  8885. "generated/uopz.php",
  8886. "generated/url.php",
  8887. "generated/var.php",
  8888. "generated/xdiff.php",
  8889. "generated/xml.php",
  8890. "generated/xmlrpc.php",
  8891. "generated/yaml.php",
  8892. "generated/yaz.php",
  8893. "generated/zip.php",
  8894. "generated/zlib.php"
  8895. ],
  8896. "classmap": [
  8897. "lib/DateTime.php",
  8898. "lib/DateTimeImmutable.php",
  8899. "lib/Exceptions/",
  8900. "generated/Exceptions/"
  8901. ]
  8902. },
  8903. "notification-url": "https://packagist.org/downloads/",
  8904. "license": [
  8905. "MIT"
  8906. ],
  8907. "description": "PHP core functions that throw exceptions instead of returning FALSE on error",
  8908. "support": {
  8909. "issues": "https://github.com/thecodingmachine/safe/issues",
  8910. "source": "https://github.com/thecodingmachine/safe/tree/v3.3.0"
  8911. },
  8912. "funding": [
  8913. {
  8914. "url": "https://github.com/OskarStark",
  8915. "type": "github"
  8916. },
  8917. {
  8918. "url": "https://github.com/shish",
  8919. "type": "github"
  8920. },
  8921. {
  8922. "url": "https://github.com/staabm",
  8923. "type": "github"
  8924. }
  8925. ],
  8926. "time": "2025-05-14T06:15:44+00:00"
  8927. },
  8928. {
  8929. "name": "tijsverkoyen/css-to-inline-styles",
  8930. "version": "v2.4.0",
  8931. "source": {
  8932. "type": "git",
  8933. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  8934. "reference": "f0292ccf0ec75843d65027214426b6b163b48b41"
  8935. },
  8936. "dist": {
  8937. "type": "zip",
  8938. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/f0292ccf0ec75843d65027214426b6b163b48b41",
  8939. "reference": "f0292ccf0ec75843d65027214426b6b163b48b41",
  8940. "shasum": ""
  8941. },
  8942. "require": {
  8943. "ext-dom": "*",
  8944. "ext-libxml": "*",
  8945. "php": "^7.4 || ^8.0",
  8946. "symfony/css-selector": "^5.4 || ^6.0 || ^7.0 || ^8.0"
  8947. },
  8948. "require-dev": {
  8949. "phpstan/phpstan": "^2.0",
  8950. "phpstan/phpstan-phpunit": "^2.0",
  8951. "phpunit/phpunit": "^8.5.21 || ^9.5.10"
  8952. },
  8953. "type": "library",
  8954. "extra": {
  8955. "branch-alias": {
  8956. "dev-master": "2.x-dev"
  8957. }
  8958. },
  8959. "autoload": {
  8960. "psr-4": {
  8961. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  8962. }
  8963. },
  8964. "notification-url": "https://packagist.org/downloads/",
  8965. "license": [
  8966. "BSD-3-Clause"
  8967. ],
  8968. "authors": [
  8969. {
  8970. "name": "Tijs Verkoyen",
  8971. "email": "css_to_inline_styles@verkoyen.eu",
  8972. "role": "Developer"
  8973. }
  8974. ],
  8975. "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.",
  8976. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  8977. "support": {
  8978. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  8979. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.4.0"
  8980. },
  8981. "time": "2025-12-02T11:56:42+00:00"
  8982. },
  8983. {
  8984. "name": "vlucas/phpdotenv",
  8985. "version": "v5.6.3",
  8986. "source": {
  8987. "type": "git",
  8988. "url": "https://github.com/vlucas/phpdotenv.git",
  8989. "reference": "955e7815d677a3eaa7075231212f2110983adecc"
  8990. },
  8991. "dist": {
  8992. "type": "zip",
  8993. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/955e7815d677a3eaa7075231212f2110983adecc",
  8994. "reference": "955e7815d677a3eaa7075231212f2110983adecc",
  8995. "shasum": ""
  8996. },
  8997. "require": {
  8998. "ext-pcre": "*",
  8999. "graham-campbell/result-type": "^1.1.4",
  9000. "php": "^7.2.5 || ^8.0",
  9001. "phpoption/phpoption": "^1.9.5",
  9002. "symfony/polyfill-ctype": "^1.26",
  9003. "symfony/polyfill-mbstring": "^1.26",
  9004. "symfony/polyfill-php80": "^1.26"
  9005. },
  9006. "require-dev": {
  9007. "bamarni/composer-bin-plugin": "^1.8.2",
  9008. "ext-filter": "*",
  9009. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  9010. },
  9011. "suggest": {
  9012. "ext-filter": "Required to use the boolean validator."
  9013. },
  9014. "type": "library",
  9015. "extra": {
  9016. "bamarni-bin": {
  9017. "bin-links": true,
  9018. "forward-command": false
  9019. },
  9020. "branch-alias": {
  9021. "dev-master": "5.6-dev"
  9022. }
  9023. },
  9024. "autoload": {
  9025. "psr-4": {
  9026. "Dotenv\\": "src/"
  9027. }
  9028. },
  9029. "notification-url": "https://packagist.org/downloads/",
  9030. "license": [
  9031. "BSD-3-Clause"
  9032. ],
  9033. "authors": [
  9034. {
  9035. "name": "Graham Campbell",
  9036. "email": "hello@gjcampbell.co.uk",
  9037. "homepage": "https://github.com/GrahamCampbell"
  9038. },
  9039. {
  9040. "name": "Vance Lucas",
  9041. "email": "vance@vancelucas.com",
  9042. "homepage": "https://github.com/vlucas"
  9043. }
  9044. ],
  9045. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  9046. "keywords": [
  9047. "dotenv",
  9048. "env",
  9049. "environment"
  9050. ],
  9051. "support": {
  9052. "issues": "https://github.com/vlucas/phpdotenv/issues",
  9053. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.3"
  9054. },
  9055. "funding": [
  9056. {
  9057. "url": "https://github.com/GrahamCampbell",
  9058. "type": "github"
  9059. },
  9060. {
  9061. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  9062. "type": "tidelift"
  9063. }
  9064. ],
  9065. "time": "2025-12-27T19:49:13+00:00"
  9066. },
  9067. {
  9068. "name": "voku/portable-ascii",
  9069. "version": "2.0.3",
  9070. "source": {
  9071. "type": "git",
  9072. "url": "https://github.com/voku/portable-ascii.git",
  9073. "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d"
  9074. },
  9075. "dist": {
  9076. "type": "zip",
  9077. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
  9078. "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
  9079. "shasum": ""
  9080. },
  9081. "require": {
  9082. "php": ">=7.0.0"
  9083. },
  9084. "require-dev": {
  9085. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  9086. },
  9087. "suggest": {
  9088. "ext-intl": "Use Intl for transliterator_transliterate() support"
  9089. },
  9090. "type": "library",
  9091. "autoload": {
  9092. "psr-4": {
  9093. "voku\\": "src/voku/"
  9094. }
  9095. },
  9096. "notification-url": "https://packagist.org/downloads/",
  9097. "license": [
  9098. "MIT"
  9099. ],
  9100. "authors": [
  9101. {
  9102. "name": "Lars Moelleken",
  9103. "homepage": "https://www.moelleken.org/"
  9104. }
  9105. ],
  9106. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  9107. "homepage": "https://github.com/voku/portable-ascii",
  9108. "keywords": [
  9109. "ascii",
  9110. "clean",
  9111. "php"
  9112. ],
  9113. "support": {
  9114. "issues": "https://github.com/voku/portable-ascii/issues",
  9115. "source": "https://github.com/voku/portable-ascii/tree/2.0.3"
  9116. },
  9117. "funding": [
  9118. {
  9119. "url": "https://www.paypal.me/moelleken",
  9120. "type": "custom"
  9121. },
  9122. {
  9123. "url": "https://github.com/voku",
  9124. "type": "github"
  9125. },
  9126. {
  9127. "url": "https://opencollective.com/portable-ascii",
  9128. "type": "open_collective"
  9129. },
  9130. {
  9131. "url": "https://www.patreon.com/voku",
  9132. "type": "patreon"
  9133. },
  9134. {
  9135. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  9136. "type": "tidelift"
  9137. }
  9138. ],
  9139. "time": "2024-11-21T01:49:47+00:00"
  9140. },
  9141. {
  9142. "name": "webklex/php-imap",
  9143. "version": "6.2.0",
  9144. "source": {
  9145. "type": "git",
  9146. "url": "https://github.com/Webklex/php-imap.git",
  9147. "reference": "6b8ef85d621bbbaf52741b00cca8e9237e2b2e05"
  9148. },
  9149. "dist": {
  9150. "type": "zip",
  9151. "url": "https://api.github.com/repos/Webklex/php-imap/zipball/6b8ef85d621bbbaf52741b00cca8e9237e2b2e05",
  9152. "reference": "6b8ef85d621bbbaf52741b00cca8e9237e2b2e05",
  9153. "shasum": ""
  9154. },
  9155. "require": {
  9156. "ext-fileinfo": "*",
  9157. "ext-iconv": "*",
  9158. "ext-json": "*",
  9159. "ext-libxml": "*",
  9160. "ext-mbstring": "*",
  9161. "ext-openssl": "*",
  9162. "ext-zip": "*",
  9163. "illuminate/pagination": ">=5.0.0",
  9164. "nesbot/carbon": "^2.62.1|^3.2.4",
  9165. "php": "^8.0.2",
  9166. "symfony/http-foundation": ">=2.8.0"
  9167. },
  9168. "require-dev": {
  9169. "phpunit/phpunit": "^9.5.10"
  9170. },
  9171. "suggest": {
  9172. "symfony/mime": "Recomended for better extension support",
  9173. "symfony/var-dumper": "Usefull tool for debugging"
  9174. },
  9175. "type": "library",
  9176. "extra": {
  9177. "branch-alias": {
  9178. "dev-master": "6.0-dev"
  9179. }
  9180. },
  9181. "autoload": {
  9182. "psr-4": {
  9183. "Webklex\\PHPIMAP\\": "src"
  9184. }
  9185. },
  9186. "notification-url": "https://packagist.org/downloads/",
  9187. "license": [
  9188. "MIT"
  9189. ],
  9190. "authors": [
  9191. {
  9192. "name": "Malte Goldenbaum",
  9193. "email": "github@webklex.com",
  9194. "role": "Developer"
  9195. }
  9196. ],
  9197. "description": "PHP IMAP client",
  9198. "homepage": "https://github.com/webklex/php-imap",
  9199. "keywords": [
  9200. "imap",
  9201. "mail",
  9202. "php-imap",
  9203. "pop3",
  9204. "webklex"
  9205. ],
  9206. "support": {
  9207. "issues": "https://github.com/Webklex/php-imap/issues",
  9208. "source": "https://github.com/Webklex/php-imap/tree/6.2.0"
  9209. },
  9210. "funding": [
  9211. {
  9212. "url": "https://www.buymeacoffee.com/webklex",
  9213. "type": "custom"
  9214. },
  9215. {
  9216. "url": "https://ko-fi.com/webklex",
  9217. "type": "ko_fi"
  9218. }
  9219. ],
  9220. "time": "2025-04-25T06:02:37+00:00"
  9221. },
  9222. {
  9223. "name": "yajra/laravel-datatables",
  9224. "version": "v12.0.0",
  9225. "source": {
  9226. "type": "git",
  9227. "url": "https://github.com/yajra/datatables.git",
  9228. "reference": "ac036600203f31847e617dea73186670d2edbf8d"
  9229. },
  9230. "dist": {
  9231. "type": "zip",
  9232. "url": "https://api.github.com/repos/yajra/datatables/zipball/ac036600203f31847e617dea73186670d2edbf8d",
  9233. "reference": "ac036600203f31847e617dea73186670d2edbf8d",
  9234. "shasum": ""
  9235. },
  9236. "require": {
  9237. "php": "^8.2",
  9238. "yajra/laravel-datatables-buttons": "^12.1",
  9239. "yajra/laravel-datatables-editor": "^12",
  9240. "yajra/laravel-datatables-export": "^12",
  9241. "yajra/laravel-datatables-fractal": "^12",
  9242. "yajra/laravel-datatables-html": "^12",
  9243. "yajra/laravel-datatables-oracle": "^12"
  9244. },
  9245. "require-dev": {
  9246. "larastan/larastan": "^3.1",
  9247. "laravel/pint": "^1.21",
  9248. "orchestra/testbench": "^10",
  9249. "pestphp/pest": "^3.7",
  9250. "pestphp/pest-plugin-laravel": "^3.1",
  9251. "rector/rector": "^2.0.9"
  9252. },
  9253. "type": "library",
  9254. "extra": {
  9255. "branch-alias": {
  9256. "dev-master": "12.x-dev"
  9257. }
  9258. },
  9259. "notification-url": "https://packagist.org/downloads/",
  9260. "license": [
  9261. "MIT"
  9262. ],
  9263. "authors": [
  9264. {
  9265. "name": "Arjay Angeles",
  9266. "email": "aqangeles@gmail.com"
  9267. }
  9268. ],
  9269. "description": "Laravel DataTables Complete Package.",
  9270. "keywords": [
  9271. "datatables",
  9272. "jquery",
  9273. "laravel"
  9274. ],
  9275. "support": {
  9276. "issues": "https://github.com/yajra/datatables/issues",
  9277. "source": "https://github.com/yajra/datatables/tree/v12.0.0"
  9278. },
  9279. "funding": [
  9280. {
  9281. "url": "https://github.com/sponsors/yajra",
  9282. "type": "github"
  9283. }
  9284. ],
  9285. "time": "2025-02-26T13:04:07+00:00"
  9286. },
  9287. {
  9288. "name": "yajra/laravel-datatables-buttons",
  9289. "version": "v12.3.1",
  9290. "source": {
  9291. "type": "git",
  9292. "url": "https://github.com/yajra/laravel-datatables-buttons.git",
  9293. "reference": "8c6763404c24402817e3c3ea10e70ad5a27dc67b"
  9294. },
  9295. "dist": {
  9296. "type": "zip",
  9297. "url": "https://api.github.com/repos/yajra/laravel-datatables-buttons/zipball/8c6763404c24402817e3c3ea10e70ad5a27dc67b",
  9298. "reference": "8c6763404c24402817e3c3ea10e70ad5a27dc67b",
  9299. "shasum": ""
  9300. },
  9301. "require": {
  9302. "illuminate/console": "^12",
  9303. "php": "^8.2",
  9304. "yajra/laravel-datatables-html": "^12",
  9305. "yajra/laravel-datatables-oracle": "^12"
  9306. },
  9307. "require-dev": {
  9308. "larastan/larastan": "^3.1",
  9309. "laravel/pint": "^1.21",
  9310. "maatwebsite/excel": "^3.1.64",
  9311. "orchestra/testbench": "^10",
  9312. "rap2hpoutre/fast-excel": "^5.6",
  9313. "rector/rector": "^2.0"
  9314. },
  9315. "suggest": {
  9316. "barryvdh/laravel-snappy": "Allows exporting of dataTable to PDF using the print view.",
  9317. "dompdf/dompdf": "Allows exporting of dataTable to PDF using the DomPDF.",
  9318. "maatwebsite/excel": "Exporting of dataTables (excel, csv and PDF) using maatwebsite package.",
  9319. "rap2hpoutre/fast-excel": "Faster exporting of dataTables using fast-excel package.",
  9320. "yajra/laravel-datatables-export": "Exporting of dataTables (excel, csv and PDF) via livewire and queue worker."
  9321. },
  9322. "type": "library",
  9323. "extra": {
  9324. "laravel": {
  9325. "providers": [
  9326. "Yajra\\DataTables\\ButtonsServiceProvider"
  9327. ]
  9328. },
  9329. "branch-alias": {
  9330. "dev-master": "12.x-dev"
  9331. }
  9332. },
  9333. "autoload": {
  9334. "psr-4": {
  9335. "Yajra\\DataTables\\": "src/"
  9336. }
  9337. },
  9338. "notification-url": "https://packagist.org/downloads/",
  9339. "license": [
  9340. "MIT"
  9341. ],
  9342. "authors": [
  9343. {
  9344. "name": "Arjay Angeles",
  9345. "email": "aqangeles@gmail.com"
  9346. }
  9347. ],
  9348. "description": "Laravel DataTables Buttons Plugin.",
  9349. "keywords": [
  9350. "buttons",
  9351. "datatables",
  9352. "jquery",
  9353. "laravel"
  9354. ],
  9355. "support": {
  9356. "issues": "https://github.com/yajra/laravel-datatables-buttons/issues",
  9357. "source": "https://github.com/yajra/laravel-datatables-buttons/tree/v12.3.1"
  9358. },
  9359. "funding": [
  9360. {
  9361. "url": "https://github.com/sponsors/yajra",
  9362. "type": "github"
  9363. }
  9364. ],
  9365. "time": "2025-12-02T08:51:24+00:00"
  9366. },
  9367. {
  9368. "name": "yajra/laravel-datatables-editor",
  9369. "version": "v12.3.0",
  9370. "source": {
  9371. "type": "git",
  9372. "url": "https://github.com/yajra/laravel-datatables-editor.git",
  9373. "reference": "8cde2263c4efb074920dbb99475bb1c0f77bed8d"
  9374. },
  9375. "dist": {
  9376. "type": "zip",
  9377. "url": "https://api.github.com/repos/yajra/laravel-datatables-editor/zipball/8cde2263c4efb074920dbb99475bb1c0f77bed8d",
  9378. "reference": "8cde2263c4efb074920dbb99475bb1c0f77bed8d",
  9379. "shasum": ""
  9380. },
  9381. "require": {
  9382. "illuminate/console": "^12",
  9383. "illuminate/database": "^12",
  9384. "illuminate/http": "^12",
  9385. "illuminate/validation": "^12",
  9386. "php": "^8.2"
  9387. },
  9388. "require-dev": {
  9389. "larastan/larastan": "^3.1",
  9390. "laravel/pint": "^1.21.2",
  9391. "orchestra/testbench": "^10.1",
  9392. "rector/rector": "^2.0.10"
  9393. },
  9394. "type": "library",
  9395. "extra": {
  9396. "laravel": {
  9397. "providers": [
  9398. "Yajra\\DataTables\\EditorServiceProvider"
  9399. ]
  9400. },
  9401. "branch-alias": {
  9402. "dev-master": "12.x-dev"
  9403. }
  9404. },
  9405. "autoload": {
  9406. "psr-4": {
  9407. "Yajra\\DataTables\\": "src/"
  9408. }
  9409. },
  9410. "notification-url": "https://packagist.org/downloads/",
  9411. "license": [
  9412. "MIT"
  9413. ],
  9414. "authors": [
  9415. {
  9416. "name": "Arjay Angeles",
  9417. "email": "aqangeles@gmail.com"
  9418. }
  9419. ],
  9420. "description": "Laravel DataTables Editor plugin for Laravel 5.5+.",
  9421. "keywords": [
  9422. "JS",
  9423. "datatables",
  9424. "editor",
  9425. "html",
  9426. "jquery",
  9427. "laravel"
  9428. ],
  9429. "support": {
  9430. "issues": "https://github.com/yajra/laravel-datatables-editor/issues",
  9431. "source": "https://github.com/yajra/laravel-datatables-editor/tree/v12.3.0"
  9432. },
  9433. "funding": [
  9434. {
  9435. "url": "https://www.paypal.me/yajra",
  9436. "type": "custom"
  9437. },
  9438. {
  9439. "url": "https://github.com/yajra",
  9440. "type": "github"
  9441. },
  9442. {
  9443. "url": "https://www.patreon.com/yajra",
  9444. "type": "patreon"
  9445. }
  9446. ],
  9447. "time": "2025-10-03T09:00:17+00:00"
  9448. },
  9449. {
  9450. "name": "yajra/laravel-datatables-export",
  9451. "version": "v12.2.0",
  9452. "source": {
  9453. "type": "git",
  9454. "url": "https://github.com/yajra/laravel-datatables-export.git",
  9455. "reference": "10b0929840ffb9b16f1c8a45e70f6df1491d89e8"
  9456. },
  9457. "dist": {
  9458. "type": "zip",
  9459. "url": "https://api.github.com/repos/yajra/laravel-datatables-export/zipball/10b0929840ffb9b16f1c8a45e70f6df1491d89e8",
  9460. "reference": "10b0929840ffb9b16f1c8a45e70f6df1491d89e8",
  9461. "shasum": ""
  9462. },
  9463. "require": {
  9464. "ext-json": "*",
  9465. "livewire/livewire": "^2.12.8|^3.5.6",
  9466. "openspout/openspout": "^4.24.5",
  9467. "php": "^8.2",
  9468. "phpoffice/phpspreadsheet": "^1.29.9|^2.3.7|^3.9.1|^4.0.0|^5.0.0",
  9469. "yajra/laravel-datatables-buttons": "^12.0"
  9470. },
  9471. "require-dev": {
  9472. "larastan/larastan": "^3.1",
  9473. "laravel/pint": "^1.17.2",
  9474. "orchestra/testbench": "^10.0",
  9475. "pestphp/pest": "^3.7",
  9476. "pestphp/pest-plugin-laravel": "^3.1",
  9477. "rector/rector": "^2.0.9"
  9478. },
  9479. "type": "library",
  9480. "extra": {
  9481. "laravel": {
  9482. "providers": [
  9483. "Yajra\\DataTables\\ExportServiceProvider"
  9484. ]
  9485. },
  9486. "branch-alias": {
  9487. "dev-master": "12.x-dev"
  9488. }
  9489. },
  9490. "autoload": {
  9491. "psr-4": {
  9492. "Yajra\\DataTables\\": "src/"
  9493. }
  9494. },
  9495. "notification-url": "https://packagist.org/downloads/",
  9496. "license": [
  9497. "MIT"
  9498. ],
  9499. "authors": [
  9500. {
  9501. "name": "Arjay Angeles",
  9502. "email": "aqangeles@gmail.com"
  9503. }
  9504. ],
  9505. "description": "Laravel DataTables Queued Export Plugin.",
  9506. "keywords": [
  9507. "datatables",
  9508. "excel",
  9509. "export",
  9510. "laravel",
  9511. "livewire",
  9512. "queue"
  9513. ],
  9514. "support": {
  9515. "issues": "https://github.com/yajra/laravel-datatables-export/issues",
  9516. "source": "https://github.com/yajra/laravel-datatables-export/tree/v12.2.0"
  9517. },
  9518. "funding": [
  9519. {
  9520. "url": "https://github.com/sponsors/yajra",
  9521. "type": "github"
  9522. }
  9523. ],
  9524. "time": "2026-01-13T03:16:20+00:00"
  9525. },
  9526. {
  9527. "name": "yajra/laravel-datatables-fractal",
  9528. "version": "v12.0.1",
  9529. "source": {
  9530. "type": "git",
  9531. "url": "https://github.com/yajra/laravel-datatables-fractal.git",
  9532. "reference": "c193c77a42820dbe7a59aec9a61fed2a93fb6031"
  9533. },
  9534. "dist": {
  9535. "type": "zip",
  9536. "url": "https://api.github.com/repos/yajra/laravel-datatables-fractal/zipball/c193c77a42820dbe7a59aec9a61fed2a93fb6031",
  9537. "reference": "c193c77a42820dbe7a59aec9a61fed2a93fb6031",
  9538. "shasum": ""
  9539. },
  9540. "require": {
  9541. "league/fractal": "^0.20.1",
  9542. "php": "^8.2",
  9543. "yajra/laravel-datatables-oracle": "^12"
  9544. },
  9545. "require-dev": {
  9546. "larastan/larastan": "^3.1",
  9547. "laravel/pint": "^1.21",
  9548. "orchestra/testbench": "^10",
  9549. "rector/rector": "^2.0"
  9550. },
  9551. "type": "library",
  9552. "extra": {
  9553. "laravel": {
  9554. "providers": [
  9555. "Yajra\\DataTables\\FractalServiceProvider"
  9556. ]
  9557. },
  9558. "branch-alias": {
  9559. "dev-master": "12.x-dev"
  9560. }
  9561. },
  9562. "autoload": {
  9563. "psr-4": {
  9564. "Yajra\\DataTables\\": "src/"
  9565. }
  9566. },
  9567. "notification-url": "https://packagist.org/downloads/",
  9568. "license": [
  9569. "MIT"
  9570. ],
  9571. "authors": [
  9572. {
  9573. "name": "Arjay Angeles",
  9574. "email": "aqangeles@gmail.com"
  9575. }
  9576. ],
  9577. "description": "Laravel DataTables Fractal Plugin.",
  9578. "keywords": [
  9579. "api",
  9580. "datatables",
  9581. "fractal",
  9582. "laravel"
  9583. ],
  9584. "support": {
  9585. "issues": "https://github.com/yajra/laravel-datatables-fractal/issues",
  9586. "source": "https://github.com/yajra/laravel-datatables-fractal/tree/v12.0.1"
  9587. },
  9588. "time": "2025-12-30T15:22:09+00:00"
  9589. },
  9590. {
  9591. "name": "yajra/laravel-datatables-html",
  9592. "version": "v12.6.0",
  9593. "source": {
  9594. "type": "git",
  9595. "url": "https://github.com/yajra/laravel-datatables-html.git",
  9596. "reference": "2edae2c3cb240927d1c46e105f2d92cb74c58ac7"
  9597. },
  9598. "dist": {
  9599. "type": "zip",
  9600. "url": "https://api.github.com/repos/yajra/laravel-datatables-html/zipball/2edae2c3cb240927d1c46e105f2d92cb74c58ac7",
  9601. "reference": "2edae2c3cb240927d1c46e105f2d92cb74c58ac7",
  9602. "shasum": ""
  9603. },
  9604. "require": {
  9605. "ext-json": "*",
  9606. "php": "^8.2",
  9607. "yajra/laravel-datatables-oracle": "^12.0"
  9608. },
  9609. "require-dev": {
  9610. "larastan/larastan": "^3.1",
  9611. "laravel/pint": "^1.21",
  9612. "livewire/livewire": "^3.4",
  9613. "orchestra/testbench": "^10",
  9614. "rector/rector": "^2.0"
  9615. },
  9616. "suggest": {
  9617. "laravel/livewire": "Required for Livewire layout support."
  9618. },
  9619. "type": "library",
  9620. "extra": {
  9621. "laravel": {
  9622. "providers": [
  9623. "Yajra\\DataTables\\HtmlServiceProvider"
  9624. ]
  9625. },
  9626. "branch-alias": {
  9627. "dev-master": "12.x-dev"
  9628. }
  9629. },
  9630. "autoload": {
  9631. "psr-4": {
  9632. "Yajra\\DataTables\\": "src/"
  9633. }
  9634. },
  9635. "notification-url": "https://packagist.org/downloads/",
  9636. "license": [
  9637. "MIT"
  9638. ],
  9639. "authors": [
  9640. {
  9641. "name": "Arjay Angeles",
  9642. "email": "aqangeles@gmail.com"
  9643. }
  9644. ],
  9645. "description": "Laravel DataTables HTML builder plugin",
  9646. "keywords": [
  9647. "JS",
  9648. "datatables",
  9649. "html",
  9650. "jquery",
  9651. "laravel",
  9652. "yajra"
  9653. ],
  9654. "support": {
  9655. "issues": "https://github.com/yajra/laravel-datatables-html/issues",
  9656. "source": "https://github.com/yajra/laravel-datatables-html/tree/v12.6.0"
  9657. },
  9658. "funding": [
  9659. {
  9660. "url": "https://www.paypal.me/yajra",
  9661. "type": "custom"
  9662. },
  9663. {
  9664. "url": "https://github.com/yajra",
  9665. "type": "github"
  9666. },
  9667. {
  9668. "url": "https://www.patreon.com/yajra",
  9669. "type": "patreon"
  9670. }
  9671. ],
  9672. "time": "2025-10-21T02:10:53+00:00"
  9673. },
  9674. {
  9675. "name": "yajra/laravel-datatables-oracle",
  9676. "version": "v12.6.3",
  9677. "source": {
  9678. "type": "git",
  9679. "url": "https://github.com/yajra/laravel-datatables.git",
  9680. "reference": "4f308d0fbb57673226cf42d296ca9f3befe86cdb"
  9681. },
  9682. "dist": {
  9683. "type": "zip",
  9684. "url": "https://api.github.com/repos/yajra/laravel-datatables/zipball/4f308d0fbb57673226cf42d296ca9f3befe86cdb",
  9685. "reference": "4f308d0fbb57673226cf42d296ca9f3befe86cdb",
  9686. "shasum": ""
  9687. },
  9688. "require": {
  9689. "illuminate/database": "^12",
  9690. "illuminate/filesystem": "^12",
  9691. "illuminate/http": "^12",
  9692. "illuminate/support": "^12",
  9693. "illuminate/view": "^12",
  9694. "php": "^8.2"
  9695. },
  9696. "require-dev": {
  9697. "algolia/algoliasearch-client-php": "^3.4.1",
  9698. "larastan/larastan": "^3.1.0",
  9699. "laravel/pint": "^1.14",
  9700. "laravel/scout": "^10.8.3",
  9701. "meilisearch/meilisearch-php": "^1.6.1",
  9702. "orchestra/testbench": "^10",
  9703. "rector/rector": "^2.0"
  9704. },
  9705. "suggest": {
  9706. "yajra/laravel-datatables-buttons": "Plugin for server-side exporting of dataTables.",
  9707. "yajra/laravel-datatables-editor": "Plugin to use DataTables Editor (requires a license).",
  9708. "yajra/laravel-datatables-export": "Plugin for server-side exporting using livewire and queue worker.",
  9709. "yajra/laravel-datatables-fractal": "Plugin for server-side response using Fractal.",
  9710. "yajra/laravel-datatables-html": "Plugin for server-side HTML builder of dataTables."
  9711. },
  9712. "type": "library",
  9713. "extra": {
  9714. "laravel": {
  9715. "aliases": {
  9716. "DataTables": "Yajra\\DataTables\\Facades\\DataTables"
  9717. },
  9718. "providers": [
  9719. "Yajra\\DataTables\\DataTablesServiceProvider"
  9720. ]
  9721. },
  9722. "branch-alias": {
  9723. "dev-master": "12.x-dev"
  9724. }
  9725. },
  9726. "autoload": {
  9727. "files": [
  9728. "src/helper.php"
  9729. ],
  9730. "psr-4": {
  9731. "Yajra\\DataTables\\": "src/"
  9732. }
  9733. },
  9734. "notification-url": "https://packagist.org/downloads/",
  9735. "license": [
  9736. "MIT"
  9737. ],
  9738. "authors": [
  9739. {
  9740. "name": "Arjay Angeles",
  9741. "email": "aqangeles@gmail.com"
  9742. }
  9743. ],
  9744. "description": "jQuery DataTables API for Laravel",
  9745. "keywords": [
  9746. "datatables",
  9747. "jquery",
  9748. "laravel",
  9749. "yajra"
  9750. ],
  9751. "support": {
  9752. "issues": "https://github.com/yajra/laravel-datatables/issues",
  9753. "source": "https://github.com/yajra/laravel-datatables/tree/v12.6.3"
  9754. },
  9755. "funding": [
  9756. {
  9757. "url": "https://github.com/sponsors/yajra",
  9758. "type": "github"
  9759. }
  9760. ],
  9761. "time": "2025-12-09T05:57:29+00:00"
  9762. }
  9763. ],
  9764. "packages-dev": [
  9765. {
  9766. "name": "fakerphp/faker",
  9767. "version": "v1.24.1",
  9768. "source": {
  9769. "type": "git",
  9770. "url": "https://github.com/FakerPHP/Faker.git",
  9771. "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5"
  9772. },
  9773. "dist": {
  9774. "type": "zip",
  9775. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
  9776. "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
  9777. "shasum": ""
  9778. },
  9779. "require": {
  9780. "php": "^7.4 || ^8.0",
  9781. "psr/container": "^1.0 || ^2.0",
  9782. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  9783. },
  9784. "conflict": {
  9785. "fzaninotto/faker": "*"
  9786. },
  9787. "require-dev": {
  9788. "bamarni/composer-bin-plugin": "^1.4.1",
  9789. "doctrine/persistence": "^1.3 || ^2.0",
  9790. "ext-intl": "*",
  9791. "phpunit/phpunit": "^9.5.26",
  9792. "symfony/phpunit-bridge": "^5.4.16"
  9793. },
  9794. "suggest": {
  9795. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  9796. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  9797. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  9798. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  9799. "ext-mbstring": "Required for multibyte Unicode string functionality."
  9800. },
  9801. "type": "library",
  9802. "autoload": {
  9803. "psr-4": {
  9804. "Faker\\": "src/Faker/"
  9805. }
  9806. },
  9807. "notification-url": "https://packagist.org/downloads/",
  9808. "license": [
  9809. "MIT"
  9810. ],
  9811. "authors": [
  9812. {
  9813. "name": "François Zaninotto"
  9814. }
  9815. ],
  9816. "description": "Faker is a PHP library that generates fake data for you.",
  9817. "keywords": [
  9818. "data",
  9819. "faker",
  9820. "fixtures"
  9821. ],
  9822. "support": {
  9823. "issues": "https://github.com/FakerPHP/Faker/issues",
  9824. "source": "https://github.com/FakerPHP/Faker/tree/v1.24.1"
  9825. },
  9826. "time": "2024-11-21T13:46:39+00:00"
  9827. },
  9828. {
  9829. "name": "filp/whoops",
  9830. "version": "2.18.4",
  9831. "source": {
  9832. "type": "git",
  9833. "url": "https://github.com/filp/whoops.git",
  9834. "reference": "d2102955e48b9fd9ab24280a7ad12ed552752c4d"
  9835. },
  9836. "dist": {
  9837. "type": "zip",
  9838. "url": "https://api.github.com/repos/filp/whoops/zipball/d2102955e48b9fd9ab24280a7ad12ed552752c4d",
  9839. "reference": "d2102955e48b9fd9ab24280a7ad12ed552752c4d",
  9840. "shasum": ""
  9841. },
  9842. "require": {
  9843. "php": "^7.1 || ^8.0",
  9844. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  9845. },
  9846. "require-dev": {
  9847. "mockery/mockery": "^1.0",
  9848. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.3",
  9849. "symfony/var-dumper": "^4.0 || ^5.0"
  9850. },
  9851. "suggest": {
  9852. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  9853. "whoops/soap": "Formats errors as SOAP responses"
  9854. },
  9855. "type": "library",
  9856. "extra": {
  9857. "branch-alias": {
  9858. "dev-master": "2.7-dev"
  9859. }
  9860. },
  9861. "autoload": {
  9862. "psr-4": {
  9863. "Whoops\\": "src/Whoops/"
  9864. }
  9865. },
  9866. "notification-url": "https://packagist.org/downloads/",
  9867. "license": [
  9868. "MIT"
  9869. ],
  9870. "authors": [
  9871. {
  9872. "name": "Filipe Dobreira",
  9873. "homepage": "https://github.com/filp",
  9874. "role": "Developer"
  9875. }
  9876. ],
  9877. "description": "php error handling for cool kids",
  9878. "homepage": "https://filp.github.io/whoops/",
  9879. "keywords": [
  9880. "error",
  9881. "exception",
  9882. "handling",
  9883. "library",
  9884. "throwable",
  9885. "whoops"
  9886. ],
  9887. "support": {
  9888. "issues": "https://github.com/filp/whoops/issues",
  9889. "source": "https://github.com/filp/whoops/tree/2.18.4"
  9890. },
  9891. "funding": [
  9892. {
  9893. "url": "https://github.com/denis-sokolov",
  9894. "type": "github"
  9895. }
  9896. ],
  9897. "time": "2025-08-08T12:00:00+00:00"
  9898. },
  9899. {
  9900. "name": "hamcrest/hamcrest-php",
  9901. "version": "v2.1.1",
  9902. "source": {
  9903. "type": "git",
  9904. "url": "https://github.com/hamcrest/hamcrest-php.git",
  9905. "reference": "f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487"
  9906. },
  9907. "dist": {
  9908. "type": "zip",
  9909. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487",
  9910. "reference": "f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487",
  9911. "shasum": ""
  9912. },
  9913. "require": {
  9914. "php": "^7.4|^8.0"
  9915. },
  9916. "replace": {
  9917. "cordoval/hamcrest-php": "*",
  9918. "davedevelopment/hamcrest-php": "*",
  9919. "kodova/hamcrest-php": "*"
  9920. },
  9921. "require-dev": {
  9922. "phpunit/php-file-iterator": "^1.4 || ^2.0 || ^3.0",
  9923. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0 || ^8.0 || ^9.0"
  9924. },
  9925. "type": "library",
  9926. "extra": {
  9927. "branch-alias": {
  9928. "dev-master": "2.1-dev"
  9929. }
  9930. },
  9931. "autoload": {
  9932. "classmap": [
  9933. "hamcrest"
  9934. ]
  9935. },
  9936. "notification-url": "https://packagist.org/downloads/",
  9937. "license": [
  9938. "BSD-3-Clause"
  9939. ],
  9940. "description": "This is the PHP port of Hamcrest Matchers",
  9941. "keywords": [
  9942. "test"
  9943. ],
  9944. "support": {
  9945. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  9946. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.1.1"
  9947. },
  9948. "time": "2025-04-30T06:54:44+00:00"
  9949. },
  9950. {
  9951. "name": "laravel/pail",
  9952. "version": "v1.2.4",
  9953. "source": {
  9954. "type": "git",
  9955. "url": "https://github.com/laravel/pail.git",
  9956. "reference": "49f92285ff5d6fc09816e976a004f8dec6a0ea30"
  9957. },
  9958. "dist": {
  9959. "type": "zip",
  9960. "url": "https://api.github.com/repos/laravel/pail/zipball/49f92285ff5d6fc09816e976a004f8dec6a0ea30",
  9961. "reference": "49f92285ff5d6fc09816e976a004f8dec6a0ea30",
  9962. "shasum": ""
  9963. },
  9964. "require": {
  9965. "ext-mbstring": "*",
  9966. "illuminate/console": "^10.24|^11.0|^12.0",
  9967. "illuminate/contracts": "^10.24|^11.0|^12.0",
  9968. "illuminate/log": "^10.24|^11.0|^12.0",
  9969. "illuminate/process": "^10.24|^11.0|^12.0",
  9970. "illuminate/support": "^10.24|^11.0|^12.0",
  9971. "nunomaduro/termwind": "^1.15|^2.0",
  9972. "php": "^8.2",
  9973. "symfony/console": "^6.0|^7.0"
  9974. },
  9975. "require-dev": {
  9976. "laravel/framework": "^10.24|^11.0|^12.0",
  9977. "laravel/pint": "^1.13",
  9978. "orchestra/testbench-core": "^8.13|^9.17|^10.8",
  9979. "pestphp/pest": "^2.20|^3.0|^4.0",
  9980. "pestphp/pest-plugin-type-coverage": "^2.3|^3.0|^4.0",
  9981. "phpstan/phpstan": "^1.12.27",
  9982. "symfony/var-dumper": "^6.3|^7.0"
  9983. },
  9984. "type": "library",
  9985. "extra": {
  9986. "laravel": {
  9987. "providers": [
  9988. "Laravel\\Pail\\PailServiceProvider"
  9989. ]
  9990. },
  9991. "branch-alias": {
  9992. "dev-main": "1.x-dev"
  9993. }
  9994. },
  9995. "autoload": {
  9996. "psr-4": {
  9997. "Laravel\\Pail\\": "src/"
  9998. }
  9999. },
  10000. "notification-url": "https://packagist.org/downloads/",
  10001. "license": [
  10002. "MIT"
  10003. ],
  10004. "authors": [
  10005. {
  10006. "name": "Taylor Otwell",
  10007. "email": "taylor@laravel.com"
  10008. },
  10009. {
  10010. "name": "Nuno Maduro",
  10011. "email": "enunomaduro@gmail.com"
  10012. }
  10013. ],
  10014. "description": "Easily delve into your Laravel application's log files directly from the command line.",
  10015. "homepage": "https://github.com/laravel/pail",
  10016. "keywords": [
  10017. "dev",
  10018. "laravel",
  10019. "logs",
  10020. "php",
  10021. "tail"
  10022. ],
  10023. "support": {
  10024. "issues": "https://github.com/laravel/pail/issues",
  10025. "source": "https://github.com/laravel/pail"
  10026. },
  10027. "time": "2025-11-20T16:29:35+00:00"
  10028. },
  10029. {
  10030. "name": "laravel/pint",
  10031. "version": "v1.27.0",
  10032. "source": {
  10033. "type": "git",
  10034. "url": "https://github.com/laravel/pint.git",
  10035. "reference": "c67b4195b75491e4dfc6b00b1c78b68d86f54c90"
  10036. },
  10037. "dist": {
  10038. "type": "zip",
  10039. "url": "https://api.github.com/repos/laravel/pint/zipball/c67b4195b75491e4dfc6b00b1c78b68d86f54c90",
  10040. "reference": "c67b4195b75491e4dfc6b00b1c78b68d86f54c90",
  10041. "shasum": ""
  10042. },
  10043. "require": {
  10044. "ext-json": "*",
  10045. "ext-mbstring": "*",
  10046. "ext-tokenizer": "*",
  10047. "ext-xml": "*",
  10048. "php": "^8.2.0"
  10049. },
  10050. "require-dev": {
  10051. "friendsofphp/php-cs-fixer": "^3.92.4",
  10052. "illuminate/view": "^12.44.0",
  10053. "larastan/larastan": "^3.8.1",
  10054. "laravel-zero/framework": "^12.0.4",
  10055. "mockery/mockery": "^1.6.12",
  10056. "nunomaduro/termwind": "^2.3.3",
  10057. "pestphp/pest": "^3.8.4"
  10058. },
  10059. "bin": [
  10060. "builds/pint"
  10061. ],
  10062. "type": "project",
  10063. "autoload": {
  10064. "psr-4": {
  10065. "App\\": "app/",
  10066. "Database\\Seeders\\": "database/seeders/",
  10067. "Database\\Factories\\": "database/factories/"
  10068. }
  10069. },
  10070. "notification-url": "https://packagist.org/downloads/",
  10071. "license": [
  10072. "MIT"
  10073. ],
  10074. "authors": [
  10075. {
  10076. "name": "Nuno Maduro",
  10077. "email": "enunomaduro@gmail.com"
  10078. }
  10079. ],
  10080. "description": "An opinionated code formatter for PHP.",
  10081. "homepage": "https://laravel.com",
  10082. "keywords": [
  10083. "dev",
  10084. "format",
  10085. "formatter",
  10086. "lint",
  10087. "linter",
  10088. "php"
  10089. ],
  10090. "support": {
  10091. "issues": "https://github.com/laravel/pint/issues",
  10092. "source": "https://github.com/laravel/pint"
  10093. },
  10094. "time": "2026-01-05T16:49:17+00:00"
  10095. },
  10096. {
  10097. "name": "laravel/sail",
  10098. "version": "v1.52.0",
  10099. "source": {
  10100. "type": "git",
  10101. "url": "https://github.com/laravel/sail.git",
  10102. "reference": "64ac7d8abb2dbcf2b76e61289451bae79066b0b3"
  10103. },
  10104. "dist": {
  10105. "type": "zip",
  10106. "url": "https://api.github.com/repos/laravel/sail/zipball/64ac7d8abb2dbcf2b76e61289451bae79066b0b3",
  10107. "reference": "64ac7d8abb2dbcf2b76e61289451bae79066b0b3",
  10108. "shasum": ""
  10109. },
  10110. "require": {
  10111. "illuminate/console": "^9.52.16|^10.0|^11.0|^12.0",
  10112. "illuminate/contracts": "^9.52.16|^10.0|^11.0|^12.0",
  10113. "illuminate/support": "^9.52.16|^10.0|^11.0|^12.0",
  10114. "php": "^8.0",
  10115. "symfony/console": "^6.0|^7.0",
  10116. "symfony/yaml": "^6.0|^7.0"
  10117. },
  10118. "require-dev": {
  10119. "orchestra/testbench": "^7.0|^8.0|^9.0|^10.0",
  10120. "phpstan/phpstan": "^2.0"
  10121. },
  10122. "bin": [
  10123. "bin/sail"
  10124. ],
  10125. "type": "library",
  10126. "extra": {
  10127. "laravel": {
  10128. "providers": [
  10129. "Laravel\\Sail\\SailServiceProvider"
  10130. ]
  10131. }
  10132. },
  10133. "autoload": {
  10134. "psr-4": {
  10135. "Laravel\\Sail\\": "src/"
  10136. }
  10137. },
  10138. "notification-url": "https://packagist.org/downloads/",
  10139. "license": [
  10140. "MIT"
  10141. ],
  10142. "authors": [
  10143. {
  10144. "name": "Taylor Otwell",
  10145. "email": "taylor@laravel.com"
  10146. }
  10147. ],
  10148. "description": "Docker files for running a basic Laravel application.",
  10149. "keywords": [
  10150. "docker",
  10151. "laravel"
  10152. ],
  10153. "support": {
  10154. "issues": "https://github.com/laravel/sail/issues",
  10155. "source": "https://github.com/laravel/sail"
  10156. },
  10157. "time": "2026-01-01T02:46:03+00:00"
  10158. },
  10159. {
  10160. "name": "mockery/mockery",
  10161. "version": "1.6.12",
  10162. "source": {
  10163. "type": "git",
  10164. "url": "https://github.com/mockery/mockery.git",
  10165. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  10166. },
  10167. "dist": {
  10168. "type": "zip",
  10169. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  10170. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  10171. "shasum": ""
  10172. },
  10173. "require": {
  10174. "hamcrest/hamcrest-php": "^2.0.1",
  10175. "lib-pcre": ">=7.0",
  10176. "php": ">=7.3"
  10177. },
  10178. "conflict": {
  10179. "phpunit/phpunit": "<8.0"
  10180. },
  10181. "require-dev": {
  10182. "phpunit/phpunit": "^8.5 || ^9.6.17",
  10183. "symplify/easy-coding-standard": "^12.1.14"
  10184. },
  10185. "type": "library",
  10186. "autoload": {
  10187. "files": [
  10188. "library/helpers.php",
  10189. "library/Mockery.php"
  10190. ],
  10191. "psr-4": {
  10192. "Mockery\\": "library/Mockery"
  10193. }
  10194. },
  10195. "notification-url": "https://packagist.org/downloads/",
  10196. "license": [
  10197. "BSD-3-Clause"
  10198. ],
  10199. "authors": [
  10200. {
  10201. "name": "Pádraic Brady",
  10202. "email": "padraic.brady@gmail.com",
  10203. "homepage": "https://github.com/padraic",
  10204. "role": "Author"
  10205. },
  10206. {
  10207. "name": "Dave Marshall",
  10208. "email": "dave.marshall@atstsolutions.co.uk",
  10209. "homepage": "https://davedevelopment.co.uk",
  10210. "role": "Developer"
  10211. },
  10212. {
  10213. "name": "Nathanael Esayeas",
  10214. "email": "nathanael.esayeas@protonmail.com",
  10215. "homepage": "https://github.com/ghostwriter",
  10216. "role": "Lead Developer"
  10217. }
  10218. ],
  10219. "description": "Mockery is a simple yet flexible PHP mock object framework",
  10220. "homepage": "https://github.com/mockery/mockery",
  10221. "keywords": [
  10222. "BDD",
  10223. "TDD",
  10224. "library",
  10225. "mock",
  10226. "mock objects",
  10227. "mockery",
  10228. "stub",
  10229. "test",
  10230. "test double",
  10231. "testing"
  10232. ],
  10233. "support": {
  10234. "docs": "https://docs.mockery.io/",
  10235. "issues": "https://github.com/mockery/mockery/issues",
  10236. "rss": "https://github.com/mockery/mockery/releases.atom",
  10237. "security": "https://github.com/mockery/mockery/security/advisories",
  10238. "source": "https://github.com/mockery/mockery"
  10239. },
  10240. "time": "2024-05-16T03:13:13+00:00"
  10241. },
  10242. {
  10243. "name": "nunomaduro/collision",
  10244. "version": "v8.8.3",
  10245. "source": {
  10246. "type": "git",
  10247. "url": "https://github.com/nunomaduro/collision.git",
  10248. "reference": "1dc9e88d105699d0fee8bb18890f41b274f6b4c4"
  10249. },
  10250. "dist": {
  10251. "type": "zip",
  10252. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/1dc9e88d105699d0fee8bb18890f41b274f6b4c4",
  10253. "reference": "1dc9e88d105699d0fee8bb18890f41b274f6b4c4",
  10254. "shasum": ""
  10255. },
  10256. "require": {
  10257. "filp/whoops": "^2.18.1",
  10258. "nunomaduro/termwind": "^2.3.1",
  10259. "php": "^8.2.0",
  10260. "symfony/console": "^7.3.0"
  10261. },
  10262. "conflict": {
  10263. "laravel/framework": "<11.44.2 || >=13.0.0",
  10264. "phpunit/phpunit": "<11.5.15 || >=13.0.0"
  10265. },
  10266. "require-dev": {
  10267. "brianium/paratest": "^7.8.3",
  10268. "larastan/larastan": "^3.4.2",
  10269. "laravel/framework": "^11.44.2 || ^12.18",
  10270. "laravel/pint": "^1.22.1",
  10271. "laravel/sail": "^1.43.1",
  10272. "laravel/sanctum": "^4.1.1",
  10273. "laravel/tinker": "^2.10.1",
  10274. "orchestra/testbench-core": "^9.12.0 || ^10.4",
  10275. "pestphp/pest": "^3.8.2 || ^4.0.0",
  10276. "sebastian/environment": "^7.2.1 || ^8.0"
  10277. },
  10278. "type": "library",
  10279. "extra": {
  10280. "laravel": {
  10281. "providers": [
  10282. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  10283. ]
  10284. },
  10285. "branch-alias": {
  10286. "dev-8.x": "8.x-dev"
  10287. }
  10288. },
  10289. "autoload": {
  10290. "files": [
  10291. "./src/Adapters/Phpunit/Autoload.php"
  10292. ],
  10293. "psr-4": {
  10294. "NunoMaduro\\Collision\\": "src/"
  10295. }
  10296. },
  10297. "notification-url": "https://packagist.org/downloads/",
  10298. "license": [
  10299. "MIT"
  10300. ],
  10301. "authors": [
  10302. {
  10303. "name": "Nuno Maduro",
  10304. "email": "enunomaduro@gmail.com"
  10305. }
  10306. ],
  10307. "description": "Cli error handling for console/command-line PHP applications.",
  10308. "keywords": [
  10309. "artisan",
  10310. "cli",
  10311. "command-line",
  10312. "console",
  10313. "dev",
  10314. "error",
  10315. "handling",
  10316. "laravel",
  10317. "laravel-zero",
  10318. "php",
  10319. "symfony"
  10320. ],
  10321. "support": {
  10322. "issues": "https://github.com/nunomaduro/collision/issues",
  10323. "source": "https://github.com/nunomaduro/collision"
  10324. },
  10325. "funding": [
  10326. {
  10327. "url": "https://www.paypal.com/paypalme/enunomaduro",
  10328. "type": "custom"
  10329. },
  10330. {
  10331. "url": "https://github.com/nunomaduro",
  10332. "type": "github"
  10333. },
  10334. {
  10335. "url": "https://www.patreon.com/nunomaduro",
  10336. "type": "patreon"
  10337. }
  10338. ],
  10339. "time": "2025-11-20T02:55:25+00:00"
  10340. },
  10341. {
  10342. "name": "phar-io/manifest",
  10343. "version": "2.0.4",
  10344. "source": {
  10345. "type": "git",
  10346. "url": "https://github.com/phar-io/manifest.git",
  10347. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  10348. },
  10349. "dist": {
  10350. "type": "zip",
  10351. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  10352. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  10353. "shasum": ""
  10354. },
  10355. "require": {
  10356. "ext-dom": "*",
  10357. "ext-libxml": "*",
  10358. "ext-phar": "*",
  10359. "ext-xmlwriter": "*",
  10360. "phar-io/version": "^3.0.1",
  10361. "php": "^7.2 || ^8.0"
  10362. },
  10363. "type": "library",
  10364. "extra": {
  10365. "branch-alias": {
  10366. "dev-master": "2.0.x-dev"
  10367. }
  10368. },
  10369. "autoload": {
  10370. "classmap": [
  10371. "src/"
  10372. ]
  10373. },
  10374. "notification-url": "https://packagist.org/downloads/",
  10375. "license": [
  10376. "BSD-3-Clause"
  10377. ],
  10378. "authors": [
  10379. {
  10380. "name": "Arne Blankerts",
  10381. "email": "arne@blankerts.de",
  10382. "role": "Developer"
  10383. },
  10384. {
  10385. "name": "Sebastian Heuer",
  10386. "email": "sebastian@phpeople.de",
  10387. "role": "Developer"
  10388. },
  10389. {
  10390. "name": "Sebastian Bergmann",
  10391. "email": "sebastian@phpunit.de",
  10392. "role": "Developer"
  10393. }
  10394. ],
  10395. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  10396. "support": {
  10397. "issues": "https://github.com/phar-io/manifest/issues",
  10398. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  10399. },
  10400. "funding": [
  10401. {
  10402. "url": "https://github.com/theseer",
  10403. "type": "github"
  10404. }
  10405. ],
  10406. "time": "2024-03-03T12:33:53+00:00"
  10407. },
  10408. {
  10409. "name": "phar-io/version",
  10410. "version": "3.2.1",
  10411. "source": {
  10412. "type": "git",
  10413. "url": "https://github.com/phar-io/version.git",
  10414. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  10415. },
  10416. "dist": {
  10417. "type": "zip",
  10418. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  10419. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  10420. "shasum": ""
  10421. },
  10422. "require": {
  10423. "php": "^7.2 || ^8.0"
  10424. },
  10425. "type": "library",
  10426. "autoload": {
  10427. "classmap": [
  10428. "src/"
  10429. ]
  10430. },
  10431. "notification-url": "https://packagist.org/downloads/",
  10432. "license": [
  10433. "BSD-3-Clause"
  10434. ],
  10435. "authors": [
  10436. {
  10437. "name": "Arne Blankerts",
  10438. "email": "arne@blankerts.de",
  10439. "role": "Developer"
  10440. },
  10441. {
  10442. "name": "Sebastian Heuer",
  10443. "email": "sebastian@phpeople.de",
  10444. "role": "Developer"
  10445. },
  10446. {
  10447. "name": "Sebastian Bergmann",
  10448. "email": "sebastian@phpunit.de",
  10449. "role": "Developer"
  10450. }
  10451. ],
  10452. "description": "Library for handling version information and constraints",
  10453. "support": {
  10454. "issues": "https://github.com/phar-io/version/issues",
  10455. "source": "https://github.com/phar-io/version/tree/3.2.1"
  10456. },
  10457. "time": "2022-02-21T01:04:05+00:00"
  10458. },
  10459. {
  10460. "name": "phpunit/php-code-coverage",
  10461. "version": "11.0.12",
  10462. "source": {
  10463. "type": "git",
  10464. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  10465. "reference": "2c1ed04922802c15e1de5d7447b4856de949cf56"
  10466. },
  10467. "dist": {
  10468. "type": "zip",
  10469. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/2c1ed04922802c15e1de5d7447b4856de949cf56",
  10470. "reference": "2c1ed04922802c15e1de5d7447b4856de949cf56",
  10471. "shasum": ""
  10472. },
  10473. "require": {
  10474. "ext-dom": "*",
  10475. "ext-libxml": "*",
  10476. "ext-xmlwriter": "*",
  10477. "nikic/php-parser": "^5.7.0",
  10478. "php": ">=8.2",
  10479. "phpunit/php-file-iterator": "^5.1.0",
  10480. "phpunit/php-text-template": "^4.0.1",
  10481. "sebastian/code-unit-reverse-lookup": "^4.0.1",
  10482. "sebastian/complexity": "^4.0.1",
  10483. "sebastian/environment": "^7.2.1",
  10484. "sebastian/lines-of-code": "^3.0.1",
  10485. "sebastian/version": "^5.0.2",
  10486. "theseer/tokenizer": "^1.3.1"
  10487. },
  10488. "require-dev": {
  10489. "phpunit/phpunit": "^11.5.46"
  10490. },
  10491. "suggest": {
  10492. "ext-pcov": "PHP extension that provides line coverage",
  10493. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  10494. },
  10495. "type": "library",
  10496. "extra": {
  10497. "branch-alias": {
  10498. "dev-main": "11.0.x-dev"
  10499. }
  10500. },
  10501. "autoload": {
  10502. "classmap": [
  10503. "src/"
  10504. ]
  10505. },
  10506. "notification-url": "https://packagist.org/downloads/",
  10507. "license": [
  10508. "BSD-3-Clause"
  10509. ],
  10510. "authors": [
  10511. {
  10512. "name": "Sebastian Bergmann",
  10513. "email": "sebastian@phpunit.de",
  10514. "role": "lead"
  10515. }
  10516. ],
  10517. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  10518. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  10519. "keywords": [
  10520. "coverage",
  10521. "testing",
  10522. "xunit"
  10523. ],
  10524. "support": {
  10525. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  10526. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  10527. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/11.0.12"
  10528. },
  10529. "funding": [
  10530. {
  10531. "url": "https://github.com/sebastianbergmann",
  10532. "type": "github"
  10533. },
  10534. {
  10535. "url": "https://liberapay.com/sebastianbergmann",
  10536. "type": "liberapay"
  10537. },
  10538. {
  10539. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  10540. "type": "thanks_dev"
  10541. },
  10542. {
  10543. "url": "https://tidelift.com/funding/github/packagist/phpunit/php-code-coverage",
  10544. "type": "tidelift"
  10545. }
  10546. ],
  10547. "time": "2025-12-24T07:01:01+00:00"
  10548. },
  10549. {
  10550. "name": "phpunit/php-file-iterator",
  10551. "version": "5.1.0",
  10552. "source": {
  10553. "type": "git",
  10554. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  10555. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6"
  10556. },
  10557. "dist": {
  10558. "type": "zip",
  10559. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/118cfaaa8bc5aef3287bf315b6060b1174754af6",
  10560. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6",
  10561. "shasum": ""
  10562. },
  10563. "require": {
  10564. "php": ">=8.2"
  10565. },
  10566. "require-dev": {
  10567. "phpunit/phpunit": "^11.0"
  10568. },
  10569. "type": "library",
  10570. "extra": {
  10571. "branch-alias": {
  10572. "dev-main": "5.0-dev"
  10573. }
  10574. },
  10575. "autoload": {
  10576. "classmap": [
  10577. "src/"
  10578. ]
  10579. },
  10580. "notification-url": "https://packagist.org/downloads/",
  10581. "license": [
  10582. "BSD-3-Clause"
  10583. ],
  10584. "authors": [
  10585. {
  10586. "name": "Sebastian Bergmann",
  10587. "email": "sebastian@phpunit.de",
  10588. "role": "lead"
  10589. }
  10590. ],
  10591. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  10592. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  10593. "keywords": [
  10594. "filesystem",
  10595. "iterator"
  10596. ],
  10597. "support": {
  10598. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  10599. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  10600. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/5.1.0"
  10601. },
  10602. "funding": [
  10603. {
  10604. "url": "https://github.com/sebastianbergmann",
  10605. "type": "github"
  10606. }
  10607. ],
  10608. "time": "2024-08-27T05:02:59+00:00"
  10609. },
  10610. {
  10611. "name": "phpunit/php-invoker",
  10612. "version": "5.0.1",
  10613. "source": {
  10614. "type": "git",
  10615. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  10616. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2"
  10617. },
  10618. "dist": {
  10619. "type": "zip",
  10620. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/c1ca3814734c07492b3d4c5f794f4b0995333da2",
  10621. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2",
  10622. "shasum": ""
  10623. },
  10624. "require": {
  10625. "php": ">=8.2"
  10626. },
  10627. "require-dev": {
  10628. "ext-pcntl": "*",
  10629. "phpunit/phpunit": "^11.0"
  10630. },
  10631. "suggest": {
  10632. "ext-pcntl": "*"
  10633. },
  10634. "type": "library",
  10635. "extra": {
  10636. "branch-alias": {
  10637. "dev-main": "5.0-dev"
  10638. }
  10639. },
  10640. "autoload": {
  10641. "classmap": [
  10642. "src/"
  10643. ]
  10644. },
  10645. "notification-url": "https://packagist.org/downloads/",
  10646. "license": [
  10647. "BSD-3-Clause"
  10648. ],
  10649. "authors": [
  10650. {
  10651. "name": "Sebastian Bergmann",
  10652. "email": "sebastian@phpunit.de",
  10653. "role": "lead"
  10654. }
  10655. ],
  10656. "description": "Invoke callables with a timeout",
  10657. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  10658. "keywords": [
  10659. "process"
  10660. ],
  10661. "support": {
  10662. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  10663. "security": "https://github.com/sebastianbergmann/php-invoker/security/policy",
  10664. "source": "https://github.com/sebastianbergmann/php-invoker/tree/5.0.1"
  10665. },
  10666. "funding": [
  10667. {
  10668. "url": "https://github.com/sebastianbergmann",
  10669. "type": "github"
  10670. }
  10671. ],
  10672. "time": "2024-07-03T05:07:44+00:00"
  10673. },
  10674. {
  10675. "name": "phpunit/php-text-template",
  10676. "version": "4.0.1",
  10677. "source": {
  10678. "type": "git",
  10679. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  10680. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964"
  10681. },
  10682. "dist": {
  10683. "type": "zip",
  10684. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  10685. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  10686. "shasum": ""
  10687. },
  10688. "require": {
  10689. "php": ">=8.2"
  10690. },
  10691. "require-dev": {
  10692. "phpunit/phpunit": "^11.0"
  10693. },
  10694. "type": "library",
  10695. "extra": {
  10696. "branch-alias": {
  10697. "dev-main": "4.0-dev"
  10698. }
  10699. },
  10700. "autoload": {
  10701. "classmap": [
  10702. "src/"
  10703. ]
  10704. },
  10705. "notification-url": "https://packagist.org/downloads/",
  10706. "license": [
  10707. "BSD-3-Clause"
  10708. ],
  10709. "authors": [
  10710. {
  10711. "name": "Sebastian Bergmann",
  10712. "email": "sebastian@phpunit.de",
  10713. "role": "lead"
  10714. }
  10715. ],
  10716. "description": "Simple template engine.",
  10717. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  10718. "keywords": [
  10719. "template"
  10720. ],
  10721. "support": {
  10722. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  10723. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  10724. "source": "https://github.com/sebastianbergmann/php-text-template/tree/4.0.1"
  10725. },
  10726. "funding": [
  10727. {
  10728. "url": "https://github.com/sebastianbergmann",
  10729. "type": "github"
  10730. }
  10731. ],
  10732. "time": "2024-07-03T05:08:43+00:00"
  10733. },
  10734. {
  10735. "name": "phpunit/php-timer",
  10736. "version": "7.0.1",
  10737. "source": {
  10738. "type": "git",
  10739. "url": "https://github.com/sebastianbergmann/php-timer.git",
  10740. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3"
  10741. },
  10742. "dist": {
  10743. "type": "zip",
  10744. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  10745. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  10746. "shasum": ""
  10747. },
  10748. "require": {
  10749. "php": ">=8.2"
  10750. },
  10751. "require-dev": {
  10752. "phpunit/phpunit": "^11.0"
  10753. },
  10754. "type": "library",
  10755. "extra": {
  10756. "branch-alias": {
  10757. "dev-main": "7.0-dev"
  10758. }
  10759. },
  10760. "autoload": {
  10761. "classmap": [
  10762. "src/"
  10763. ]
  10764. },
  10765. "notification-url": "https://packagist.org/downloads/",
  10766. "license": [
  10767. "BSD-3-Clause"
  10768. ],
  10769. "authors": [
  10770. {
  10771. "name": "Sebastian Bergmann",
  10772. "email": "sebastian@phpunit.de",
  10773. "role": "lead"
  10774. }
  10775. ],
  10776. "description": "Utility class for timing",
  10777. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  10778. "keywords": [
  10779. "timer"
  10780. ],
  10781. "support": {
  10782. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  10783. "security": "https://github.com/sebastianbergmann/php-timer/security/policy",
  10784. "source": "https://github.com/sebastianbergmann/php-timer/tree/7.0.1"
  10785. },
  10786. "funding": [
  10787. {
  10788. "url": "https://github.com/sebastianbergmann",
  10789. "type": "github"
  10790. }
  10791. ],
  10792. "time": "2024-07-03T05:09:35+00:00"
  10793. },
  10794. {
  10795. "name": "phpunit/phpunit",
  10796. "version": "11.5.48",
  10797. "source": {
  10798. "type": "git",
  10799. "url": "https://github.com/sebastianbergmann/phpunit.git",
  10800. "reference": "fe3665c15e37140f55aaf658c81a2eb9030b6d89"
  10801. },
  10802. "dist": {
  10803. "type": "zip",
  10804. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/fe3665c15e37140f55aaf658c81a2eb9030b6d89",
  10805. "reference": "fe3665c15e37140f55aaf658c81a2eb9030b6d89",
  10806. "shasum": ""
  10807. },
  10808. "require": {
  10809. "ext-dom": "*",
  10810. "ext-json": "*",
  10811. "ext-libxml": "*",
  10812. "ext-mbstring": "*",
  10813. "ext-xml": "*",
  10814. "ext-xmlwriter": "*",
  10815. "myclabs/deep-copy": "^1.13.4",
  10816. "phar-io/manifest": "^2.0.4",
  10817. "phar-io/version": "^3.2.1",
  10818. "php": ">=8.2",
  10819. "phpunit/php-code-coverage": "^11.0.12",
  10820. "phpunit/php-file-iterator": "^5.1.0",
  10821. "phpunit/php-invoker": "^5.0.1",
  10822. "phpunit/php-text-template": "^4.0.1",
  10823. "phpunit/php-timer": "^7.0.1",
  10824. "sebastian/cli-parser": "^3.0.2",
  10825. "sebastian/code-unit": "^3.0.3",
  10826. "sebastian/comparator": "^6.3.2",
  10827. "sebastian/diff": "^6.0.2",
  10828. "sebastian/environment": "^7.2.1",
  10829. "sebastian/exporter": "^6.3.2",
  10830. "sebastian/global-state": "^7.0.2",
  10831. "sebastian/object-enumerator": "^6.0.1",
  10832. "sebastian/type": "^5.1.3",
  10833. "sebastian/version": "^5.0.2",
  10834. "staabm/side-effects-detector": "^1.0.5"
  10835. },
  10836. "suggest": {
  10837. "ext-soap": "To be able to generate mocks based on WSDL files"
  10838. },
  10839. "bin": [
  10840. "phpunit"
  10841. ],
  10842. "type": "library",
  10843. "extra": {
  10844. "branch-alias": {
  10845. "dev-main": "11.5-dev"
  10846. }
  10847. },
  10848. "autoload": {
  10849. "files": [
  10850. "src/Framework/Assert/Functions.php"
  10851. ],
  10852. "classmap": [
  10853. "src/"
  10854. ]
  10855. },
  10856. "notification-url": "https://packagist.org/downloads/",
  10857. "license": [
  10858. "BSD-3-Clause"
  10859. ],
  10860. "authors": [
  10861. {
  10862. "name": "Sebastian Bergmann",
  10863. "email": "sebastian@phpunit.de",
  10864. "role": "lead"
  10865. }
  10866. ],
  10867. "description": "The PHP Unit Testing framework.",
  10868. "homepage": "https://phpunit.de/",
  10869. "keywords": [
  10870. "phpunit",
  10871. "testing",
  10872. "xunit"
  10873. ],
  10874. "support": {
  10875. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  10876. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  10877. "source": "https://github.com/sebastianbergmann/phpunit/tree/11.5.48"
  10878. },
  10879. "funding": [
  10880. {
  10881. "url": "https://phpunit.de/sponsors.html",
  10882. "type": "custom"
  10883. },
  10884. {
  10885. "url": "https://github.com/sebastianbergmann",
  10886. "type": "github"
  10887. },
  10888. {
  10889. "url": "https://liberapay.com/sebastianbergmann",
  10890. "type": "liberapay"
  10891. },
  10892. {
  10893. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  10894. "type": "thanks_dev"
  10895. },
  10896. {
  10897. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  10898. "type": "tidelift"
  10899. }
  10900. ],
  10901. "time": "2026-01-16T16:26:27+00:00"
  10902. },
  10903. {
  10904. "name": "sebastian/cli-parser",
  10905. "version": "3.0.2",
  10906. "source": {
  10907. "type": "git",
  10908. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  10909. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180"
  10910. },
  10911. "dist": {
  10912. "type": "zip",
  10913. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/15c5dd40dc4f38794d383bb95465193f5e0ae180",
  10914. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180",
  10915. "shasum": ""
  10916. },
  10917. "require": {
  10918. "php": ">=8.2"
  10919. },
  10920. "require-dev": {
  10921. "phpunit/phpunit": "^11.0"
  10922. },
  10923. "type": "library",
  10924. "extra": {
  10925. "branch-alias": {
  10926. "dev-main": "3.0-dev"
  10927. }
  10928. },
  10929. "autoload": {
  10930. "classmap": [
  10931. "src/"
  10932. ]
  10933. },
  10934. "notification-url": "https://packagist.org/downloads/",
  10935. "license": [
  10936. "BSD-3-Clause"
  10937. ],
  10938. "authors": [
  10939. {
  10940. "name": "Sebastian Bergmann",
  10941. "email": "sebastian@phpunit.de",
  10942. "role": "lead"
  10943. }
  10944. ],
  10945. "description": "Library for parsing CLI options",
  10946. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  10947. "support": {
  10948. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  10949. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  10950. "source": "https://github.com/sebastianbergmann/cli-parser/tree/3.0.2"
  10951. },
  10952. "funding": [
  10953. {
  10954. "url": "https://github.com/sebastianbergmann",
  10955. "type": "github"
  10956. }
  10957. ],
  10958. "time": "2024-07-03T04:41:36+00:00"
  10959. },
  10960. {
  10961. "name": "sebastian/code-unit",
  10962. "version": "3.0.3",
  10963. "source": {
  10964. "type": "git",
  10965. "url": "https://github.com/sebastianbergmann/code-unit.git",
  10966. "reference": "54391c61e4af8078e5b276ab082b6d3c54c9ad64"
  10967. },
  10968. "dist": {
  10969. "type": "zip",
  10970. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/54391c61e4af8078e5b276ab082b6d3c54c9ad64",
  10971. "reference": "54391c61e4af8078e5b276ab082b6d3c54c9ad64",
  10972. "shasum": ""
  10973. },
  10974. "require": {
  10975. "php": ">=8.2"
  10976. },
  10977. "require-dev": {
  10978. "phpunit/phpunit": "^11.5"
  10979. },
  10980. "type": "library",
  10981. "extra": {
  10982. "branch-alias": {
  10983. "dev-main": "3.0-dev"
  10984. }
  10985. },
  10986. "autoload": {
  10987. "classmap": [
  10988. "src/"
  10989. ]
  10990. },
  10991. "notification-url": "https://packagist.org/downloads/",
  10992. "license": [
  10993. "BSD-3-Clause"
  10994. ],
  10995. "authors": [
  10996. {
  10997. "name": "Sebastian Bergmann",
  10998. "email": "sebastian@phpunit.de",
  10999. "role": "lead"
  11000. }
  11001. ],
  11002. "description": "Collection of value objects that represent the PHP code units",
  11003. "homepage": "https://github.com/sebastianbergmann/code-unit",
  11004. "support": {
  11005. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  11006. "security": "https://github.com/sebastianbergmann/code-unit/security/policy",
  11007. "source": "https://github.com/sebastianbergmann/code-unit/tree/3.0.3"
  11008. },
  11009. "funding": [
  11010. {
  11011. "url": "https://github.com/sebastianbergmann",
  11012. "type": "github"
  11013. }
  11014. ],
  11015. "time": "2025-03-19T07:56:08+00:00"
  11016. },
  11017. {
  11018. "name": "sebastian/code-unit-reverse-lookup",
  11019. "version": "4.0.1",
  11020. "source": {
  11021. "type": "git",
  11022. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  11023. "reference": "183a9b2632194febd219bb9246eee421dad8d45e"
  11024. },
  11025. "dist": {
  11026. "type": "zip",
  11027. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/183a9b2632194febd219bb9246eee421dad8d45e",
  11028. "reference": "183a9b2632194febd219bb9246eee421dad8d45e",
  11029. "shasum": ""
  11030. },
  11031. "require": {
  11032. "php": ">=8.2"
  11033. },
  11034. "require-dev": {
  11035. "phpunit/phpunit": "^11.0"
  11036. },
  11037. "type": "library",
  11038. "extra": {
  11039. "branch-alias": {
  11040. "dev-main": "4.0-dev"
  11041. }
  11042. },
  11043. "autoload": {
  11044. "classmap": [
  11045. "src/"
  11046. ]
  11047. },
  11048. "notification-url": "https://packagist.org/downloads/",
  11049. "license": [
  11050. "BSD-3-Clause"
  11051. ],
  11052. "authors": [
  11053. {
  11054. "name": "Sebastian Bergmann",
  11055. "email": "sebastian@phpunit.de"
  11056. }
  11057. ],
  11058. "description": "Looks up which function or method a line of code belongs to",
  11059. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  11060. "support": {
  11061. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  11062. "security": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/security/policy",
  11063. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/4.0.1"
  11064. },
  11065. "funding": [
  11066. {
  11067. "url": "https://github.com/sebastianbergmann",
  11068. "type": "github"
  11069. }
  11070. ],
  11071. "time": "2024-07-03T04:45:54+00:00"
  11072. },
  11073. {
  11074. "name": "sebastian/comparator",
  11075. "version": "6.3.2",
  11076. "source": {
  11077. "type": "git",
  11078. "url": "https://github.com/sebastianbergmann/comparator.git",
  11079. "reference": "85c77556683e6eee4323e4c5468641ca0237e2e8"
  11080. },
  11081. "dist": {
  11082. "type": "zip",
  11083. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/85c77556683e6eee4323e4c5468641ca0237e2e8",
  11084. "reference": "85c77556683e6eee4323e4c5468641ca0237e2e8",
  11085. "shasum": ""
  11086. },
  11087. "require": {
  11088. "ext-dom": "*",
  11089. "ext-mbstring": "*",
  11090. "php": ">=8.2",
  11091. "sebastian/diff": "^6.0",
  11092. "sebastian/exporter": "^6.0"
  11093. },
  11094. "require-dev": {
  11095. "phpunit/phpunit": "^11.4"
  11096. },
  11097. "suggest": {
  11098. "ext-bcmath": "For comparing BcMath\\Number objects"
  11099. },
  11100. "type": "library",
  11101. "extra": {
  11102. "branch-alias": {
  11103. "dev-main": "6.3-dev"
  11104. }
  11105. },
  11106. "autoload": {
  11107. "classmap": [
  11108. "src/"
  11109. ]
  11110. },
  11111. "notification-url": "https://packagist.org/downloads/",
  11112. "license": [
  11113. "BSD-3-Clause"
  11114. ],
  11115. "authors": [
  11116. {
  11117. "name": "Sebastian Bergmann",
  11118. "email": "sebastian@phpunit.de"
  11119. },
  11120. {
  11121. "name": "Jeff Welch",
  11122. "email": "whatthejeff@gmail.com"
  11123. },
  11124. {
  11125. "name": "Volker Dusch",
  11126. "email": "github@wallbash.com"
  11127. },
  11128. {
  11129. "name": "Bernhard Schussek",
  11130. "email": "bschussek@2bepublished.at"
  11131. }
  11132. ],
  11133. "description": "Provides the functionality to compare PHP values for equality",
  11134. "homepage": "https://github.com/sebastianbergmann/comparator",
  11135. "keywords": [
  11136. "comparator",
  11137. "compare",
  11138. "equality"
  11139. ],
  11140. "support": {
  11141. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  11142. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  11143. "source": "https://github.com/sebastianbergmann/comparator/tree/6.3.2"
  11144. },
  11145. "funding": [
  11146. {
  11147. "url": "https://github.com/sebastianbergmann",
  11148. "type": "github"
  11149. },
  11150. {
  11151. "url": "https://liberapay.com/sebastianbergmann",
  11152. "type": "liberapay"
  11153. },
  11154. {
  11155. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  11156. "type": "thanks_dev"
  11157. },
  11158. {
  11159. "url": "https://tidelift.com/funding/github/packagist/sebastian/comparator",
  11160. "type": "tidelift"
  11161. }
  11162. ],
  11163. "time": "2025-08-10T08:07:46+00:00"
  11164. },
  11165. {
  11166. "name": "sebastian/complexity",
  11167. "version": "4.0.1",
  11168. "source": {
  11169. "type": "git",
  11170. "url": "https://github.com/sebastianbergmann/complexity.git",
  11171. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0"
  11172. },
  11173. "dist": {
  11174. "type": "zip",
  11175. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/ee41d384ab1906c68852636b6de493846e13e5a0",
  11176. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0",
  11177. "shasum": ""
  11178. },
  11179. "require": {
  11180. "nikic/php-parser": "^5.0",
  11181. "php": ">=8.2"
  11182. },
  11183. "require-dev": {
  11184. "phpunit/phpunit": "^11.0"
  11185. },
  11186. "type": "library",
  11187. "extra": {
  11188. "branch-alias": {
  11189. "dev-main": "4.0-dev"
  11190. }
  11191. },
  11192. "autoload": {
  11193. "classmap": [
  11194. "src/"
  11195. ]
  11196. },
  11197. "notification-url": "https://packagist.org/downloads/",
  11198. "license": [
  11199. "BSD-3-Clause"
  11200. ],
  11201. "authors": [
  11202. {
  11203. "name": "Sebastian Bergmann",
  11204. "email": "sebastian@phpunit.de",
  11205. "role": "lead"
  11206. }
  11207. ],
  11208. "description": "Library for calculating the complexity of PHP code units",
  11209. "homepage": "https://github.com/sebastianbergmann/complexity",
  11210. "support": {
  11211. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  11212. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  11213. "source": "https://github.com/sebastianbergmann/complexity/tree/4.0.1"
  11214. },
  11215. "funding": [
  11216. {
  11217. "url": "https://github.com/sebastianbergmann",
  11218. "type": "github"
  11219. }
  11220. ],
  11221. "time": "2024-07-03T04:49:50+00:00"
  11222. },
  11223. {
  11224. "name": "sebastian/diff",
  11225. "version": "6.0.2",
  11226. "source": {
  11227. "type": "git",
  11228. "url": "https://github.com/sebastianbergmann/diff.git",
  11229. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544"
  11230. },
  11231. "dist": {
  11232. "type": "zip",
  11233. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/b4ccd857127db5d41a5b676f24b51371d76d8544",
  11234. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544",
  11235. "shasum": ""
  11236. },
  11237. "require": {
  11238. "php": ">=8.2"
  11239. },
  11240. "require-dev": {
  11241. "phpunit/phpunit": "^11.0",
  11242. "symfony/process": "^4.2 || ^5"
  11243. },
  11244. "type": "library",
  11245. "extra": {
  11246. "branch-alias": {
  11247. "dev-main": "6.0-dev"
  11248. }
  11249. },
  11250. "autoload": {
  11251. "classmap": [
  11252. "src/"
  11253. ]
  11254. },
  11255. "notification-url": "https://packagist.org/downloads/",
  11256. "license": [
  11257. "BSD-3-Clause"
  11258. ],
  11259. "authors": [
  11260. {
  11261. "name": "Sebastian Bergmann",
  11262. "email": "sebastian@phpunit.de"
  11263. },
  11264. {
  11265. "name": "Kore Nordmann",
  11266. "email": "mail@kore-nordmann.de"
  11267. }
  11268. ],
  11269. "description": "Diff implementation",
  11270. "homepage": "https://github.com/sebastianbergmann/diff",
  11271. "keywords": [
  11272. "diff",
  11273. "udiff",
  11274. "unidiff",
  11275. "unified diff"
  11276. ],
  11277. "support": {
  11278. "issues": "https://github.com/sebastianbergmann/diff/issues",
  11279. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  11280. "source": "https://github.com/sebastianbergmann/diff/tree/6.0.2"
  11281. },
  11282. "funding": [
  11283. {
  11284. "url": "https://github.com/sebastianbergmann",
  11285. "type": "github"
  11286. }
  11287. ],
  11288. "time": "2024-07-03T04:53:05+00:00"
  11289. },
  11290. {
  11291. "name": "sebastian/environment",
  11292. "version": "7.2.1",
  11293. "source": {
  11294. "type": "git",
  11295. "url": "https://github.com/sebastianbergmann/environment.git",
  11296. "reference": "a5c75038693ad2e8d4b6c15ba2403532647830c4"
  11297. },
  11298. "dist": {
  11299. "type": "zip",
  11300. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/a5c75038693ad2e8d4b6c15ba2403532647830c4",
  11301. "reference": "a5c75038693ad2e8d4b6c15ba2403532647830c4",
  11302. "shasum": ""
  11303. },
  11304. "require": {
  11305. "php": ">=8.2"
  11306. },
  11307. "require-dev": {
  11308. "phpunit/phpunit": "^11.3"
  11309. },
  11310. "suggest": {
  11311. "ext-posix": "*"
  11312. },
  11313. "type": "library",
  11314. "extra": {
  11315. "branch-alias": {
  11316. "dev-main": "7.2-dev"
  11317. }
  11318. },
  11319. "autoload": {
  11320. "classmap": [
  11321. "src/"
  11322. ]
  11323. },
  11324. "notification-url": "https://packagist.org/downloads/",
  11325. "license": [
  11326. "BSD-3-Clause"
  11327. ],
  11328. "authors": [
  11329. {
  11330. "name": "Sebastian Bergmann",
  11331. "email": "sebastian@phpunit.de"
  11332. }
  11333. ],
  11334. "description": "Provides functionality to handle HHVM/PHP environments",
  11335. "homepage": "https://github.com/sebastianbergmann/environment",
  11336. "keywords": [
  11337. "Xdebug",
  11338. "environment",
  11339. "hhvm"
  11340. ],
  11341. "support": {
  11342. "issues": "https://github.com/sebastianbergmann/environment/issues",
  11343. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  11344. "source": "https://github.com/sebastianbergmann/environment/tree/7.2.1"
  11345. },
  11346. "funding": [
  11347. {
  11348. "url": "https://github.com/sebastianbergmann",
  11349. "type": "github"
  11350. },
  11351. {
  11352. "url": "https://liberapay.com/sebastianbergmann",
  11353. "type": "liberapay"
  11354. },
  11355. {
  11356. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  11357. "type": "thanks_dev"
  11358. },
  11359. {
  11360. "url": "https://tidelift.com/funding/github/packagist/sebastian/environment",
  11361. "type": "tidelift"
  11362. }
  11363. ],
  11364. "time": "2025-05-21T11:55:47+00:00"
  11365. },
  11366. {
  11367. "name": "sebastian/exporter",
  11368. "version": "6.3.2",
  11369. "source": {
  11370. "type": "git",
  11371. "url": "https://github.com/sebastianbergmann/exporter.git",
  11372. "reference": "70a298763b40b213ec087c51c739efcaa90bcd74"
  11373. },
  11374. "dist": {
  11375. "type": "zip",
  11376. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/70a298763b40b213ec087c51c739efcaa90bcd74",
  11377. "reference": "70a298763b40b213ec087c51c739efcaa90bcd74",
  11378. "shasum": ""
  11379. },
  11380. "require": {
  11381. "ext-mbstring": "*",
  11382. "php": ">=8.2",
  11383. "sebastian/recursion-context": "^6.0"
  11384. },
  11385. "require-dev": {
  11386. "phpunit/phpunit": "^11.3"
  11387. },
  11388. "type": "library",
  11389. "extra": {
  11390. "branch-alias": {
  11391. "dev-main": "6.3-dev"
  11392. }
  11393. },
  11394. "autoload": {
  11395. "classmap": [
  11396. "src/"
  11397. ]
  11398. },
  11399. "notification-url": "https://packagist.org/downloads/",
  11400. "license": [
  11401. "BSD-3-Clause"
  11402. ],
  11403. "authors": [
  11404. {
  11405. "name": "Sebastian Bergmann",
  11406. "email": "sebastian@phpunit.de"
  11407. },
  11408. {
  11409. "name": "Jeff Welch",
  11410. "email": "whatthejeff@gmail.com"
  11411. },
  11412. {
  11413. "name": "Volker Dusch",
  11414. "email": "github@wallbash.com"
  11415. },
  11416. {
  11417. "name": "Adam Harvey",
  11418. "email": "aharvey@php.net"
  11419. },
  11420. {
  11421. "name": "Bernhard Schussek",
  11422. "email": "bschussek@gmail.com"
  11423. }
  11424. ],
  11425. "description": "Provides the functionality to export PHP variables for visualization",
  11426. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  11427. "keywords": [
  11428. "export",
  11429. "exporter"
  11430. ],
  11431. "support": {
  11432. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  11433. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  11434. "source": "https://github.com/sebastianbergmann/exporter/tree/6.3.2"
  11435. },
  11436. "funding": [
  11437. {
  11438. "url": "https://github.com/sebastianbergmann",
  11439. "type": "github"
  11440. },
  11441. {
  11442. "url": "https://liberapay.com/sebastianbergmann",
  11443. "type": "liberapay"
  11444. },
  11445. {
  11446. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  11447. "type": "thanks_dev"
  11448. },
  11449. {
  11450. "url": "https://tidelift.com/funding/github/packagist/sebastian/exporter",
  11451. "type": "tidelift"
  11452. }
  11453. ],
  11454. "time": "2025-09-24T06:12:51+00:00"
  11455. },
  11456. {
  11457. "name": "sebastian/global-state",
  11458. "version": "7.0.2",
  11459. "source": {
  11460. "type": "git",
  11461. "url": "https://github.com/sebastianbergmann/global-state.git",
  11462. "reference": "3be331570a721f9a4b5917f4209773de17f747d7"
  11463. },
  11464. "dist": {
  11465. "type": "zip",
  11466. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/3be331570a721f9a4b5917f4209773de17f747d7",
  11467. "reference": "3be331570a721f9a4b5917f4209773de17f747d7",
  11468. "shasum": ""
  11469. },
  11470. "require": {
  11471. "php": ">=8.2",
  11472. "sebastian/object-reflector": "^4.0",
  11473. "sebastian/recursion-context": "^6.0"
  11474. },
  11475. "require-dev": {
  11476. "ext-dom": "*",
  11477. "phpunit/phpunit": "^11.0"
  11478. },
  11479. "type": "library",
  11480. "extra": {
  11481. "branch-alias": {
  11482. "dev-main": "7.0-dev"
  11483. }
  11484. },
  11485. "autoload": {
  11486. "classmap": [
  11487. "src/"
  11488. ]
  11489. },
  11490. "notification-url": "https://packagist.org/downloads/",
  11491. "license": [
  11492. "BSD-3-Clause"
  11493. ],
  11494. "authors": [
  11495. {
  11496. "name": "Sebastian Bergmann",
  11497. "email": "sebastian@phpunit.de"
  11498. }
  11499. ],
  11500. "description": "Snapshotting of global state",
  11501. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  11502. "keywords": [
  11503. "global state"
  11504. ],
  11505. "support": {
  11506. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  11507. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  11508. "source": "https://github.com/sebastianbergmann/global-state/tree/7.0.2"
  11509. },
  11510. "funding": [
  11511. {
  11512. "url": "https://github.com/sebastianbergmann",
  11513. "type": "github"
  11514. }
  11515. ],
  11516. "time": "2024-07-03T04:57:36+00:00"
  11517. },
  11518. {
  11519. "name": "sebastian/lines-of-code",
  11520. "version": "3.0.1",
  11521. "source": {
  11522. "type": "git",
  11523. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  11524. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a"
  11525. },
  11526. "dist": {
  11527. "type": "zip",
  11528. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  11529. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  11530. "shasum": ""
  11531. },
  11532. "require": {
  11533. "nikic/php-parser": "^5.0",
  11534. "php": ">=8.2"
  11535. },
  11536. "require-dev": {
  11537. "phpunit/phpunit": "^11.0"
  11538. },
  11539. "type": "library",
  11540. "extra": {
  11541. "branch-alias": {
  11542. "dev-main": "3.0-dev"
  11543. }
  11544. },
  11545. "autoload": {
  11546. "classmap": [
  11547. "src/"
  11548. ]
  11549. },
  11550. "notification-url": "https://packagist.org/downloads/",
  11551. "license": [
  11552. "BSD-3-Clause"
  11553. ],
  11554. "authors": [
  11555. {
  11556. "name": "Sebastian Bergmann",
  11557. "email": "sebastian@phpunit.de",
  11558. "role": "lead"
  11559. }
  11560. ],
  11561. "description": "Library for counting the lines of code in PHP source code",
  11562. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  11563. "support": {
  11564. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  11565. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  11566. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/3.0.1"
  11567. },
  11568. "funding": [
  11569. {
  11570. "url": "https://github.com/sebastianbergmann",
  11571. "type": "github"
  11572. }
  11573. ],
  11574. "time": "2024-07-03T04:58:38+00:00"
  11575. },
  11576. {
  11577. "name": "sebastian/object-enumerator",
  11578. "version": "6.0.1",
  11579. "source": {
  11580. "type": "git",
  11581. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  11582. "reference": "f5b498e631a74204185071eb41f33f38d64608aa"
  11583. },
  11584. "dist": {
  11585. "type": "zip",
  11586. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/f5b498e631a74204185071eb41f33f38d64608aa",
  11587. "reference": "f5b498e631a74204185071eb41f33f38d64608aa",
  11588. "shasum": ""
  11589. },
  11590. "require": {
  11591. "php": ">=8.2",
  11592. "sebastian/object-reflector": "^4.0",
  11593. "sebastian/recursion-context": "^6.0"
  11594. },
  11595. "require-dev": {
  11596. "phpunit/phpunit": "^11.0"
  11597. },
  11598. "type": "library",
  11599. "extra": {
  11600. "branch-alias": {
  11601. "dev-main": "6.0-dev"
  11602. }
  11603. },
  11604. "autoload": {
  11605. "classmap": [
  11606. "src/"
  11607. ]
  11608. },
  11609. "notification-url": "https://packagist.org/downloads/",
  11610. "license": [
  11611. "BSD-3-Clause"
  11612. ],
  11613. "authors": [
  11614. {
  11615. "name": "Sebastian Bergmann",
  11616. "email": "sebastian@phpunit.de"
  11617. }
  11618. ],
  11619. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  11620. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  11621. "support": {
  11622. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  11623. "security": "https://github.com/sebastianbergmann/object-enumerator/security/policy",
  11624. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/6.0.1"
  11625. },
  11626. "funding": [
  11627. {
  11628. "url": "https://github.com/sebastianbergmann",
  11629. "type": "github"
  11630. }
  11631. ],
  11632. "time": "2024-07-03T05:00:13+00:00"
  11633. },
  11634. {
  11635. "name": "sebastian/object-reflector",
  11636. "version": "4.0.1",
  11637. "source": {
  11638. "type": "git",
  11639. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  11640. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9"
  11641. },
  11642. "dist": {
  11643. "type": "zip",
  11644. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  11645. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  11646. "shasum": ""
  11647. },
  11648. "require": {
  11649. "php": ">=8.2"
  11650. },
  11651. "require-dev": {
  11652. "phpunit/phpunit": "^11.0"
  11653. },
  11654. "type": "library",
  11655. "extra": {
  11656. "branch-alias": {
  11657. "dev-main": "4.0-dev"
  11658. }
  11659. },
  11660. "autoload": {
  11661. "classmap": [
  11662. "src/"
  11663. ]
  11664. },
  11665. "notification-url": "https://packagist.org/downloads/",
  11666. "license": [
  11667. "BSD-3-Clause"
  11668. ],
  11669. "authors": [
  11670. {
  11671. "name": "Sebastian Bergmann",
  11672. "email": "sebastian@phpunit.de"
  11673. }
  11674. ],
  11675. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  11676. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  11677. "support": {
  11678. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  11679. "security": "https://github.com/sebastianbergmann/object-reflector/security/policy",
  11680. "source": "https://github.com/sebastianbergmann/object-reflector/tree/4.0.1"
  11681. },
  11682. "funding": [
  11683. {
  11684. "url": "https://github.com/sebastianbergmann",
  11685. "type": "github"
  11686. }
  11687. ],
  11688. "time": "2024-07-03T05:01:32+00:00"
  11689. },
  11690. {
  11691. "name": "sebastian/recursion-context",
  11692. "version": "6.0.3",
  11693. "source": {
  11694. "type": "git",
  11695. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  11696. "reference": "f6458abbf32a6c8174f8f26261475dc133b3d9dc"
  11697. },
  11698. "dist": {
  11699. "type": "zip",
  11700. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/f6458abbf32a6c8174f8f26261475dc133b3d9dc",
  11701. "reference": "f6458abbf32a6c8174f8f26261475dc133b3d9dc",
  11702. "shasum": ""
  11703. },
  11704. "require": {
  11705. "php": ">=8.2"
  11706. },
  11707. "require-dev": {
  11708. "phpunit/phpunit": "^11.3"
  11709. },
  11710. "type": "library",
  11711. "extra": {
  11712. "branch-alias": {
  11713. "dev-main": "6.0-dev"
  11714. }
  11715. },
  11716. "autoload": {
  11717. "classmap": [
  11718. "src/"
  11719. ]
  11720. },
  11721. "notification-url": "https://packagist.org/downloads/",
  11722. "license": [
  11723. "BSD-3-Clause"
  11724. ],
  11725. "authors": [
  11726. {
  11727. "name": "Sebastian Bergmann",
  11728. "email": "sebastian@phpunit.de"
  11729. },
  11730. {
  11731. "name": "Jeff Welch",
  11732. "email": "whatthejeff@gmail.com"
  11733. },
  11734. {
  11735. "name": "Adam Harvey",
  11736. "email": "aharvey@php.net"
  11737. }
  11738. ],
  11739. "description": "Provides functionality to recursively process PHP variables",
  11740. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  11741. "support": {
  11742. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  11743. "security": "https://github.com/sebastianbergmann/recursion-context/security/policy",
  11744. "source": "https://github.com/sebastianbergmann/recursion-context/tree/6.0.3"
  11745. },
  11746. "funding": [
  11747. {
  11748. "url": "https://github.com/sebastianbergmann",
  11749. "type": "github"
  11750. },
  11751. {
  11752. "url": "https://liberapay.com/sebastianbergmann",
  11753. "type": "liberapay"
  11754. },
  11755. {
  11756. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  11757. "type": "thanks_dev"
  11758. },
  11759. {
  11760. "url": "https://tidelift.com/funding/github/packagist/sebastian/recursion-context",
  11761. "type": "tidelift"
  11762. }
  11763. ],
  11764. "time": "2025-08-13T04:42:22+00:00"
  11765. },
  11766. {
  11767. "name": "sebastian/type",
  11768. "version": "5.1.3",
  11769. "source": {
  11770. "type": "git",
  11771. "url": "https://github.com/sebastianbergmann/type.git",
  11772. "reference": "f77d2d4e78738c98d9a68d2596fe5e8fa380f449"
  11773. },
  11774. "dist": {
  11775. "type": "zip",
  11776. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/f77d2d4e78738c98d9a68d2596fe5e8fa380f449",
  11777. "reference": "f77d2d4e78738c98d9a68d2596fe5e8fa380f449",
  11778. "shasum": ""
  11779. },
  11780. "require": {
  11781. "php": ">=8.2"
  11782. },
  11783. "require-dev": {
  11784. "phpunit/phpunit": "^11.3"
  11785. },
  11786. "type": "library",
  11787. "extra": {
  11788. "branch-alias": {
  11789. "dev-main": "5.1-dev"
  11790. }
  11791. },
  11792. "autoload": {
  11793. "classmap": [
  11794. "src/"
  11795. ]
  11796. },
  11797. "notification-url": "https://packagist.org/downloads/",
  11798. "license": [
  11799. "BSD-3-Clause"
  11800. ],
  11801. "authors": [
  11802. {
  11803. "name": "Sebastian Bergmann",
  11804. "email": "sebastian@phpunit.de",
  11805. "role": "lead"
  11806. }
  11807. ],
  11808. "description": "Collection of value objects that represent the types of the PHP type system",
  11809. "homepage": "https://github.com/sebastianbergmann/type",
  11810. "support": {
  11811. "issues": "https://github.com/sebastianbergmann/type/issues",
  11812. "security": "https://github.com/sebastianbergmann/type/security/policy",
  11813. "source": "https://github.com/sebastianbergmann/type/tree/5.1.3"
  11814. },
  11815. "funding": [
  11816. {
  11817. "url": "https://github.com/sebastianbergmann",
  11818. "type": "github"
  11819. },
  11820. {
  11821. "url": "https://liberapay.com/sebastianbergmann",
  11822. "type": "liberapay"
  11823. },
  11824. {
  11825. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  11826. "type": "thanks_dev"
  11827. },
  11828. {
  11829. "url": "https://tidelift.com/funding/github/packagist/sebastian/type",
  11830. "type": "tidelift"
  11831. }
  11832. ],
  11833. "time": "2025-08-09T06:55:48+00:00"
  11834. },
  11835. {
  11836. "name": "sebastian/version",
  11837. "version": "5.0.2",
  11838. "source": {
  11839. "type": "git",
  11840. "url": "https://github.com/sebastianbergmann/version.git",
  11841. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874"
  11842. },
  11843. "dist": {
  11844. "type": "zip",
  11845. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c687e3387b99f5b03b6caa64c74b63e2936ff874",
  11846. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874",
  11847. "shasum": ""
  11848. },
  11849. "require": {
  11850. "php": ">=8.2"
  11851. },
  11852. "type": "library",
  11853. "extra": {
  11854. "branch-alias": {
  11855. "dev-main": "5.0-dev"
  11856. }
  11857. },
  11858. "autoload": {
  11859. "classmap": [
  11860. "src/"
  11861. ]
  11862. },
  11863. "notification-url": "https://packagist.org/downloads/",
  11864. "license": [
  11865. "BSD-3-Clause"
  11866. ],
  11867. "authors": [
  11868. {
  11869. "name": "Sebastian Bergmann",
  11870. "email": "sebastian@phpunit.de",
  11871. "role": "lead"
  11872. }
  11873. ],
  11874. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  11875. "homepage": "https://github.com/sebastianbergmann/version",
  11876. "support": {
  11877. "issues": "https://github.com/sebastianbergmann/version/issues",
  11878. "security": "https://github.com/sebastianbergmann/version/security/policy",
  11879. "source": "https://github.com/sebastianbergmann/version/tree/5.0.2"
  11880. },
  11881. "funding": [
  11882. {
  11883. "url": "https://github.com/sebastianbergmann",
  11884. "type": "github"
  11885. }
  11886. ],
  11887. "time": "2024-10-09T05:16:32+00:00"
  11888. },
  11889. {
  11890. "name": "staabm/side-effects-detector",
  11891. "version": "1.0.5",
  11892. "source": {
  11893. "type": "git",
  11894. "url": "https://github.com/staabm/side-effects-detector.git",
  11895. "reference": "d8334211a140ce329c13726d4a715adbddd0a163"
  11896. },
  11897. "dist": {
  11898. "type": "zip",
  11899. "url": "https://api.github.com/repos/staabm/side-effects-detector/zipball/d8334211a140ce329c13726d4a715adbddd0a163",
  11900. "reference": "d8334211a140ce329c13726d4a715adbddd0a163",
  11901. "shasum": ""
  11902. },
  11903. "require": {
  11904. "ext-tokenizer": "*",
  11905. "php": "^7.4 || ^8.0"
  11906. },
  11907. "require-dev": {
  11908. "phpstan/extension-installer": "^1.4.3",
  11909. "phpstan/phpstan": "^1.12.6",
  11910. "phpunit/phpunit": "^9.6.21",
  11911. "symfony/var-dumper": "^5.4.43",
  11912. "tomasvotruba/type-coverage": "1.0.0",
  11913. "tomasvotruba/unused-public": "1.0.0"
  11914. },
  11915. "type": "library",
  11916. "autoload": {
  11917. "classmap": [
  11918. "lib/"
  11919. ]
  11920. },
  11921. "notification-url": "https://packagist.org/downloads/",
  11922. "license": [
  11923. "MIT"
  11924. ],
  11925. "description": "A static analysis tool to detect side effects in PHP code",
  11926. "keywords": [
  11927. "static analysis"
  11928. ],
  11929. "support": {
  11930. "issues": "https://github.com/staabm/side-effects-detector/issues",
  11931. "source": "https://github.com/staabm/side-effects-detector/tree/1.0.5"
  11932. },
  11933. "funding": [
  11934. {
  11935. "url": "https://github.com/staabm",
  11936. "type": "github"
  11937. }
  11938. ],
  11939. "time": "2024-10-20T05:08:20+00:00"
  11940. },
  11941. {
  11942. "name": "symfony/yaml",
  11943. "version": "v7.4.1",
  11944. "source": {
  11945. "type": "git",
  11946. "url": "https://github.com/symfony/yaml.git",
  11947. "reference": "24dd4de28d2e3988b311751ac49e684d783e2345"
  11948. },
  11949. "dist": {
  11950. "type": "zip",
  11951. "url": "https://api.github.com/repos/symfony/yaml/zipball/24dd4de28d2e3988b311751ac49e684d783e2345",
  11952. "reference": "24dd4de28d2e3988b311751ac49e684d783e2345",
  11953. "shasum": ""
  11954. },
  11955. "require": {
  11956. "php": ">=8.2",
  11957. "symfony/deprecation-contracts": "^2.5|^3",
  11958. "symfony/polyfill-ctype": "^1.8"
  11959. },
  11960. "conflict": {
  11961. "symfony/console": "<6.4"
  11962. },
  11963. "require-dev": {
  11964. "symfony/console": "^6.4|^7.0|^8.0"
  11965. },
  11966. "bin": [
  11967. "Resources/bin/yaml-lint"
  11968. ],
  11969. "type": "library",
  11970. "autoload": {
  11971. "psr-4": {
  11972. "Symfony\\Component\\Yaml\\": ""
  11973. },
  11974. "exclude-from-classmap": [
  11975. "/Tests/"
  11976. ]
  11977. },
  11978. "notification-url": "https://packagist.org/downloads/",
  11979. "license": [
  11980. "MIT"
  11981. ],
  11982. "authors": [
  11983. {
  11984. "name": "Fabien Potencier",
  11985. "email": "fabien@symfony.com"
  11986. },
  11987. {
  11988. "name": "Symfony Community",
  11989. "homepage": "https://symfony.com/contributors"
  11990. }
  11991. ],
  11992. "description": "Loads and dumps YAML files",
  11993. "homepage": "https://symfony.com",
  11994. "support": {
  11995. "source": "https://github.com/symfony/yaml/tree/v7.4.1"
  11996. },
  11997. "funding": [
  11998. {
  11999. "url": "https://symfony.com/sponsor",
  12000. "type": "custom"
  12001. },
  12002. {
  12003. "url": "https://github.com/fabpot",
  12004. "type": "github"
  12005. },
  12006. {
  12007. "url": "https://github.com/nicolas-grekas",
  12008. "type": "github"
  12009. },
  12010. {
  12011. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12012. "type": "tidelift"
  12013. }
  12014. ],
  12015. "time": "2025-12-04T18:11:45+00:00"
  12016. },
  12017. {
  12018. "name": "theseer/tokenizer",
  12019. "version": "1.3.1",
  12020. "source": {
  12021. "type": "git",
  12022. "url": "https://github.com/theseer/tokenizer.git",
  12023. "reference": "b7489ce515e168639d17feec34b8847c326b0b3c"
  12024. },
  12025. "dist": {
  12026. "type": "zip",
  12027. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/b7489ce515e168639d17feec34b8847c326b0b3c",
  12028. "reference": "b7489ce515e168639d17feec34b8847c326b0b3c",
  12029. "shasum": ""
  12030. },
  12031. "require": {
  12032. "ext-dom": "*",
  12033. "ext-tokenizer": "*",
  12034. "ext-xmlwriter": "*",
  12035. "php": "^7.2 || ^8.0"
  12036. },
  12037. "type": "library",
  12038. "autoload": {
  12039. "classmap": [
  12040. "src/"
  12041. ]
  12042. },
  12043. "notification-url": "https://packagist.org/downloads/",
  12044. "license": [
  12045. "BSD-3-Clause"
  12046. ],
  12047. "authors": [
  12048. {
  12049. "name": "Arne Blankerts",
  12050. "email": "arne@blankerts.de",
  12051. "role": "Developer"
  12052. }
  12053. ],
  12054. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  12055. "support": {
  12056. "issues": "https://github.com/theseer/tokenizer/issues",
  12057. "source": "https://github.com/theseer/tokenizer/tree/1.3.1"
  12058. },
  12059. "funding": [
  12060. {
  12061. "url": "https://github.com/theseer",
  12062. "type": "github"
  12063. }
  12064. ],
  12065. "time": "2025-11-17T20:03:58+00:00"
  12066. }
  12067. ],
  12068. "aliases": [],
  12069. "minimum-stability": "stable",
  12070. "stability-flags": [],
  12071. "prefer-stable": true,
  12072. "prefer-lowest": false,
  12073. "platform": {
  12074. "php": "^8.2"
  12075. },
  12076. "platform-dev": [],
  12077. "plugin-api-version": "2.6.0"
  12078. }