選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

composer.lock 504KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179131801318113182131831318413185131861318713188131891319013191131921319313194131951319613197131981319913200132011320213203132041320513206132071320813209132101321113212132131321413215132161321713218132191322013221132221322313224132251322613227132281322913230132311323213233132341323513236132371323813239132401324113242132431324413245132461324713248132491325013251132521325313254132551325613257132581325913260132611326213263132641326513266132671326813269132701327113272132731327413275132761327713278132791328013281132821328313284132851328613287132881328913290132911329213293132941329513296132971329813299133001330113302133031330413305133061330713308133091331013311133121331313314133151331613317133181331913320133211332213323133241332513326133271332813329133301333113332133331333413335133361333713338133391334013341133421334313344133451334613347133481334913350133511335213353133541335513356133571335813359133601336113362133631336413365133661336713368133691337013371133721337313374133751337613377133781337913380133811338213383133841338513386133871338813389133901339113392133931339413395133961339713398133991340013401134021340313404134051340613407134081340913410134111341213413134141341513416134171341813419134201342113422134231342413425134261342713428134291343013431134321343313434134351343613437134381343913440134411344213443134441344513446134471344813449134501345113452134531345413455134561345713458134591346013461134621346313464134651346613467134681346913470134711347213473134741347513476134771347813479134801348113482134831348413485134861348713488134891349013491134921349313494134951349613497134981349913500135011350213503135041350513506135071350813509135101351113512135131351413515135161351713518135191352013521135221352313524135251352613527135281352913530135311353213533135341353513536135371353813539135401354113542135431354413545135461354713548135491355013551135521355313554135551355613557135581355913560135611356213563135641356513566135671356813569135701357113572135731357413575135761357713578135791358013581135821358313584135851358613587135881358913590135911359213593135941359513596135971359813599136001360113602136031360413605136061360713608136091361013611136121361313614136151361613617136181361913620136211362213623136241362513626136271362813629136301363113632136331363413635136361363713638136391364013641136421364313644136451364613647136481364913650136511365213653136541365513656136571365813659136601366113662136631366413665136661366713668136691367013671136721367313674136751367613677136781367913680136811368213683136841368513686136871368813689136901369113692136931369413695136961369713698136991370013701137021370313704137051370613707137081370913710137111371213713137141371513716137171371813719137201372113722137231372413725137261372713728137291373013731137321373313734137351373613737137381373913740137411374213743137441374513746137471374813749137501375113752137531375413755137561375713758137591376013761137621376313764137651376613767137681376913770137711377213773137741377513776137771377813779137801378113782137831378413785137861378713788137891379013791137921379313794137951379613797137981379913800138011380213803138041380513806138071380813809138101381113812138131381413815138161381713818138191382013821138221382313824138251382613827138281382913830138311383213833138341383513836138371383813839138401384113842138431384413845138461384713848138491385013851138521385313854138551385613857138581385913860138611386213863138641386513866138671386813869138701387113872138731387413875138761387713878138791388013881138821388313884138851388613887138881388913890138911389213893138941389513896138971389813899139001390113902139031390413905139061390713908139091391013911139121391313914139151391613917139181391913920139211392213923139241392513926139271392813929139301393113932139331393413935139361393713938139391394013941139421394313944139451394613947139481394913950139511395213953139541395513956139571395813959139601396113962
  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": "8b09e01ce94a0c72bed8eb6957290af5",
  8. "packages": [
  9. {
  10. "name": "akaunting/laravel-money",
  11. "version": "6.0.2",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/akaunting/laravel-money.git",
  15. "reference": "5dca81f4297b99f8dbf0f4a6bb4d45c56acbd76a"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/akaunting/laravel-money/zipball/5dca81f4297b99f8dbf0f4a6bb4d45c56acbd76a",
  20. "reference": "5dca81f4297b99f8dbf0f4a6bb4d45c56acbd76a",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "illuminate/contracts": "^10.0|^11.0|^12",
  25. "illuminate/support": "^10.0|^11.0|^12",
  26. "illuminate/validation": "^10.0|^11.0|^12",
  27. "illuminate/view": "^10.0|^11.0|^12",
  28. "php": "^8.2",
  29. "vlucas/phpdotenv": "^5.4.1"
  30. },
  31. "require-dev": {
  32. "orchestra/testbench": "^8.0|^9.0|^10",
  33. "phpunit/phpunit": "^10.5|^11.0",
  34. "vimeo/psalm": "^6.0"
  35. },
  36. "type": "library",
  37. "extra": {
  38. "laravel": {
  39. "providers": [
  40. "Akaunting\\Money\\Provider"
  41. ]
  42. }
  43. },
  44. "autoload": {
  45. "files": [
  46. "src/helpers.php"
  47. ],
  48. "psr-4": {
  49. "Akaunting\\Money\\": "src"
  50. }
  51. },
  52. "notification-url": "https://packagist.org/downloads/",
  53. "license": [
  54. "MIT"
  55. ],
  56. "authors": [
  57. {
  58. "name": "Denis Duliçi",
  59. "email": "info@akaunting.com",
  60. "homepage": "https://akaunting.com",
  61. "role": "Developer"
  62. }
  63. ],
  64. "description": "Currency formatting and conversion package for Laravel",
  65. "keywords": [
  66. "convert",
  67. "currency",
  68. "format",
  69. "laravel",
  70. "money"
  71. ],
  72. "support": {
  73. "source": "https://github.com/akaunting/laravel-money/tree/6.0.2"
  74. },
  75. "time": "2025-02-22T11:28:38+00:00"
  76. },
  77. {
  78. "name": "andrewdwallo/filament-companies",
  79. "version": "v4.2.2",
  80. "source": {
  81. "type": "git",
  82. "url": "https://github.com/andrewdwallo/filament-companies.git",
  83. "reference": "52cbc988e28d1d78db9e374f3f47e91f3bfd5252"
  84. },
  85. "dist": {
  86. "type": "zip",
  87. "url": "https://api.github.com/repos/andrewdwallo/filament-companies/zipball/52cbc988e28d1d78db9e374f3f47e91f3bfd5252",
  88. "reference": "52cbc988e28d1d78db9e374f3f47e91f3bfd5252",
  89. "shasum": ""
  90. },
  91. "require": {
  92. "ext-json": "*",
  93. "filament/filament": "^3.2.29",
  94. "illuminate/console": "^11.0|^12.0",
  95. "illuminate/contracts": "^11.0|^12.0",
  96. "illuminate/support": "^11.0|^12.0",
  97. "laravel/socialite": "^5.12",
  98. "matomo/device-detector": "^6.1",
  99. "php": "^8.2"
  100. },
  101. "require-dev": {
  102. "laravel/pint": "^1.14",
  103. "laravel/sanctum": "^4.0",
  104. "livewire/livewire": "^3.4.9",
  105. "mockery/mockery": "^1.6",
  106. "orchestra/testbench": "^9.0|^10.0",
  107. "phpunit/phpunit": "^10.5|^11.5.3"
  108. },
  109. "type": "library",
  110. "extra": {
  111. "laravel": {
  112. "providers": [
  113. "Wallo\\FilamentCompanies\\FilamentCompaniesServiceProvider"
  114. ]
  115. }
  116. },
  117. "autoload": {
  118. "psr-4": {
  119. "Wallo\\FilamentCompanies\\": "src/"
  120. }
  121. },
  122. "notification-url": "https://packagist.org/downloads/",
  123. "license": [
  124. "MIT"
  125. ],
  126. "authors": [
  127. {
  128. "name": "Andrew Wallo",
  129. "email": "andrewdwallo@gmail.com",
  130. "role": "Developer"
  131. }
  132. ],
  133. "description": "A comprehensive Laravel authentication and authorization system designed for Filament, focusing on multi-tenant company management.",
  134. "homepage": "https://github.com/andrewdwallo/filament-companies",
  135. "keywords": [
  136. "Authentication",
  137. "ERP",
  138. "andrewdwallo",
  139. "business management",
  140. "company management",
  141. "crm",
  142. "filament",
  143. "filament companies",
  144. "filament-companies",
  145. "laravel",
  146. "multi-tenant",
  147. "saas",
  148. "socialite"
  149. ],
  150. "support": {
  151. "issues": "https://github.com/andrewdwallo/filament-companies/issues",
  152. "source": "https://github.com/andrewdwallo/filament-companies/tree/v4.2.2"
  153. },
  154. "time": "2025-05-08T03:02:08+00:00"
  155. },
  156. {
  157. "name": "andrewdwallo/filament-selectify",
  158. "version": "v2.0.9",
  159. "source": {
  160. "type": "git",
  161. "url": "https://github.com/andrewdwallo/filament-selectify.git",
  162. "reference": "2c01aae4f9ef9910b8746805ebd3ee6801aad57d"
  163. },
  164. "dist": {
  165. "type": "zip",
  166. "url": "https://api.github.com/repos/andrewdwallo/filament-selectify/zipball/2c01aae4f9ef9910b8746805ebd3ee6801aad57d",
  167. "reference": "2c01aae4f9ef9910b8746805ebd3ee6801aad57d",
  168. "shasum": ""
  169. },
  170. "require": {
  171. "filament/forms": "^3.0",
  172. "php": "^8.1",
  173. "spatie/laravel-package-tools": "^1.15.0"
  174. },
  175. "require-dev": {
  176. "laravel/pint": "^1.0",
  177. "nunomaduro/collision": "^7.9",
  178. "orchestra/testbench": "^8.0",
  179. "pestphp/pest": "^2.0",
  180. "pestphp/pest-plugin-arch": "^2.0",
  181. "pestphp/pest-plugin-laravel": "^2.0"
  182. },
  183. "type": "library",
  184. "extra": {
  185. "laravel": {
  186. "providers": [
  187. "Wallo\\FilamentSelectify\\FilamentSelectifyServiceProvider"
  188. ]
  189. }
  190. },
  191. "autoload": {
  192. "psr-4": {
  193. "Wallo\\FilamentSelectify\\": "src/"
  194. }
  195. },
  196. "notification-url": "https://packagist.org/downloads/",
  197. "license": [
  198. "MIT"
  199. ],
  200. "authors": [
  201. {
  202. "name": "Andrew Wallo",
  203. "email": "andrewdwallo@gmail.com",
  204. "role": "Developer"
  205. }
  206. ],
  207. "description": "This is my package filament-selectify",
  208. "homepage": "https://github.com/andrewdwallo/filament-selectify",
  209. "keywords": [
  210. "andrewdwallo",
  211. "filament-selectify",
  212. "laravel"
  213. ],
  214. "support": {
  215. "issues": "https://github.com/andrewdwallo/filament-selectify/issues",
  216. "source": "https://github.com/andrewdwallo/filament-selectify/tree/v2.0.9"
  217. },
  218. "time": "2024-09-10T00:21:38+00:00"
  219. },
  220. {
  221. "name": "andrewdwallo/transmatic",
  222. "version": "v1.2.0",
  223. "source": {
  224. "type": "git",
  225. "url": "https://github.com/andrewdwallo/transmatic.git",
  226. "reference": "b70c5a5ed58e6ed951651cb4ea00357e53c1748d"
  227. },
  228. "dist": {
  229. "type": "zip",
  230. "url": "https://api.github.com/repos/andrewdwallo/transmatic/zipball/b70c5a5ed58e6ed951651cb4ea00357e53c1748d",
  231. "reference": "b70c5a5ed58e6ed951651cb4ea00357e53c1748d",
  232. "shasum": ""
  233. },
  234. "require": {
  235. "aws/aws-sdk-php-laravel": "^3.8",
  236. "ext-intl": "*",
  237. "ext-json": "*",
  238. "illuminate/contracts": "^10.0|^11.0|^12.0",
  239. "php": "^8.1",
  240. "spatie/laravel-package-tools": "^1.14.0"
  241. },
  242. "require-dev": {
  243. "larastan/larastan": "^2.9",
  244. "laravel/pint": "^1.0",
  245. "nunomaduro/collision": "^7.8|^8.0",
  246. "orchestra/testbench": "^8.8|^9.0|^10.0",
  247. "pestphp/pest": "^2.20|^3.0",
  248. "pestphp/pest-plugin-arch": "^2.0|^3.0",
  249. "pestphp/pest-plugin-laravel": "^2.0|^3.0",
  250. "phpstan/extension-installer": "^1.1",
  251. "phpstan/phpstan-deprecation-rules": "^1.0",
  252. "phpstan/phpstan-phpunit": "^1.0",
  253. "spatie/laravel-ray": "^1.26"
  254. },
  255. "type": "library",
  256. "extra": {
  257. "laravel": {
  258. "aliases": {
  259. "Transmatic": "Wallo\\Transmatic\\Facades\\Transmatic"
  260. },
  261. "providers": [
  262. "Wallo\\Transmatic\\TransmaticServiceProvider"
  263. ]
  264. }
  265. },
  266. "autoload": {
  267. "files": [
  268. "src/helpers.php"
  269. ],
  270. "psr-4": {
  271. "Wallo\\Transmatic\\": "src/"
  272. }
  273. },
  274. "notification-url": "https://packagist.org/downloads/",
  275. "license": [
  276. "MIT"
  277. ],
  278. "authors": [
  279. {
  280. "name": "Andrew Wallo",
  281. "email": "andrewdwallo@gmail.com",
  282. "role": "Developer"
  283. }
  284. ],
  285. "description": "Automate and streamline real-time text translations in your Laravel applications",
  286. "homepage": "https://github.com/andrewdwallo/transmatic",
  287. "keywords": [
  288. "andrewdwallo",
  289. "aws",
  290. "laravel",
  291. "localization",
  292. "translation",
  293. "translations",
  294. "transmatic"
  295. ],
  296. "support": {
  297. "issues": "https://github.com/andrewdwallo/transmatic/issues",
  298. "source": "https://github.com/andrewdwallo/transmatic/tree/v1.2.0"
  299. },
  300. "time": "2025-03-02T00:21:46+00:00"
  301. },
  302. {
  303. "name": "anourvalar/eloquent-serialize",
  304. "version": "1.3.4",
  305. "source": {
  306. "type": "git",
  307. "url": "https://github.com/AnourValar/eloquent-serialize.git",
  308. "reference": "0934a98866e02b73e38696961a9d7984b834c9d9"
  309. },
  310. "dist": {
  311. "type": "zip",
  312. "url": "https://api.github.com/repos/AnourValar/eloquent-serialize/zipball/0934a98866e02b73e38696961a9d7984b834c9d9",
  313. "reference": "0934a98866e02b73e38696961a9d7984b834c9d9",
  314. "shasum": ""
  315. },
  316. "require": {
  317. "laravel/framework": "^8.0|^9.0|^10.0|^11.0|^12.0",
  318. "php": "^7.4|^8.0"
  319. },
  320. "require-dev": {
  321. "friendsofphp/php-cs-fixer": "^3.26",
  322. "laravel/legacy-factories": "^1.1",
  323. "orchestra/testbench": "^6.0|^7.0|^8.0|^9.0|^10.0",
  324. "phpstan/phpstan": "^2.0",
  325. "phpunit/phpunit": "^9.5|^10.5|^11.0",
  326. "psalm/plugin-laravel": "^2.8|^3.0",
  327. "squizlabs/php_codesniffer": "^3.7"
  328. },
  329. "type": "library",
  330. "extra": {
  331. "laravel": {
  332. "aliases": {
  333. "EloquentSerialize": "AnourValar\\EloquentSerialize\\Facades\\EloquentSerializeFacade"
  334. }
  335. }
  336. },
  337. "autoload": {
  338. "psr-4": {
  339. "AnourValar\\EloquentSerialize\\": "src/"
  340. }
  341. },
  342. "notification-url": "https://packagist.org/downloads/",
  343. "license": [
  344. "MIT"
  345. ],
  346. "description": "Laravel Query Builder (Eloquent) serialization",
  347. "homepage": "https://github.com/AnourValar/eloquent-serialize",
  348. "keywords": [
  349. "anourvalar",
  350. "builder",
  351. "copy",
  352. "eloquent",
  353. "job",
  354. "laravel",
  355. "query",
  356. "querybuilder",
  357. "queue",
  358. "serializable",
  359. "serialization",
  360. "serialize"
  361. ],
  362. "support": {
  363. "issues": "https://github.com/AnourValar/eloquent-serialize/issues",
  364. "source": "https://github.com/AnourValar/eloquent-serialize/tree/1.3.4"
  365. },
  366. "time": "2025-07-30T15:45:57+00:00"
  367. },
  368. {
  369. "name": "awcodes/filament-table-repeater",
  370. "version": "v3.1.4",
  371. "source": {
  372. "type": "git",
  373. "url": "https://github.com/awcodes/filament-table-repeater.git",
  374. "reference": "275de32e2123a2f7e586404352ee4c794f019a09"
  375. },
  376. "dist": {
  377. "type": "zip",
  378. "url": "https://api.github.com/repos/awcodes/filament-table-repeater/zipball/275de32e2123a2f7e586404352ee4c794f019a09",
  379. "reference": "275de32e2123a2f7e586404352ee4c794f019a09",
  380. "shasum": ""
  381. },
  382. "require": {
  383. "filament/forms": "^3.2.116",
  384. "php": "^8.1",
  385. "spatie/laravel-package-tools": "^1.13.5"
  386. },
  387. "require-dev": {
  388. "laravel/pint": "^1.0",
  389. "nunomaduro/collision": "^7.0",
  390. "orchestra/testbench": "^8.0",
  391. "pestphp/pest": "^2.0",
  392. "pestphp/pest-plugin-faker": "^2.0",
  393. "pestphp/pest-plugin-laravel": "^2.0",
  394. "pestphp/pest-plugin-livewire": "^2.0",
  395. "phpunit/phpunit": "^10.0",
  396. "spatie/laravel-ray": "^1.26"
  397. },
  398. "type": "library",
  399. "extra": {
  400. "laravel": {
  401. "providers": [
  402. "Awcodes\\TableRepeater\\TableRepeaterServiceProvider"
  403. ]
  404. }
  405. },
  406. "autoload": {
  407. "psr-4": {
  408. "Awcodes\\TableRepeater\\": "src"
  409. }
  410. },
  411. "notification-url": "https://packagist.org/downloads/",
  412. "license": [
  413. "MIT"
  414. ],
  415. "authors": [
  416. {
  417. "name": "Adam Weston",
  418. "email": "awcodes1@gmail.com",
  419. "role": "Developer"
  420. }
  421. ],
  422. "description": "A modified version of the Filament Forms Repeater to display it as a table.",
  423. "homepage": "https://github.com/awcodes/filament-table-repeater",
  424. "keywords": [
  425. "awcodes",
  426. "filament",
  427. "laravel",
  428. "plugin",
  429. "table repeater"
  430. ],
  431. "support": {
  432. "issues": "https://github.com/awcodes/filament-table-repeater/issues",
  433. "source": "https://github.com/awcodes/filament-table-repeater/tree/v3.1.4"
  434. },
  435. "funding": [
  436. {
  437. "url": "https://github.com/awcodes",
  438. "type": "github"
  439. }
  440. ],
  441. "time": "2025-05-15T15:46:52+00:00"
  442. },
  443. {
  444. "name": "aws/aws-crt-php",
  445. "version": "v1.2.7",
  446. "source": {
  447. "type": "git",
  448. "url": "https://github.com/awslabs/aws-crt-php.git",
  449. "reference": "d71d9906c7bb63a28295447ba12e74723bd3730e"
  450. },
  451. "dist": {
  452. "type": "zip",
  453. "url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/d71d9906c7bb63a28295447ba12e74723bd3730e",
  454. "reference": "d71d9906c7bb63a28295447ba12e74723bd3730e",
  455. "shasum": ""
  456. },
  457. "require": {
  458. "php": ">=5.5"
  459. },
  460. "require-dev": {
  461. "phpunit/phpunit": "^4.8.35||^5.6.3||^9.5",
  462. "yoast/phpunit-polyfills": "^1.0"
  463. },
  464. "suggest": {
  465. "ext-awscrt": "Make sure you install awscrt native extension to use any of the functionality."
  466. },
  467. "type": "library",
  468. "autoload": {
  469. "classmap": [
  470. "src/"
  471. ]
  472. },
  473. "notification-url": "https://packagist.org/downloads/",
  474. "license": [
  475. "Apache-2.0"
  476. ],
  477. "authors": [
  478. {
  479. "name": "AWS SDK Common Runtime Team",
  480. "email": "aws-sdk-common-runtime@amazon.com"
  481. }
  482. ],
  483. "description": "AWS Common Runtime for PHP",
  484. "homepage": "https://github.com/awslabs/aws-crt-php",
  485. "keywords": [
  486. "amazon",
  487. "aws",
  488. "crt",
  489. "sdk"
  490. ],
  491. "support": {
  492. "issues": "https://github.com/awslabs/aws-crt-php/issues",
  493. "source": "https://github.com/awslabs/aws-crt-php/tree/v1.2.7"
  494. },
  495. "time": "2024-10-18T22:15:13+00:00"
  496. },
  497. {
  498. "name": "aws/aws-sdk-php",
  499. "version": "3.356.3",
  500. "source": {
  501. "type": "git",
  502. "url": "https://github.com/aws/aws-sdk-php.git",
  503. "reference": "9c61b26408664c76d51101381bb64feda9bcfe2e"
  504. },
  505. "dist": {
  506. "type": "zip",
  507. "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/9c61b26408664c76d51101381bb64feda9bcfe2e",
  508. "reference": "9c61b26408664c76d51101381bb64feda9bcfe2e",
  509. "shasum": ""
  510. },
  511. "require": {
  512. "aws/aws-crt-php": "^1.2.3",
  513. "ext-json": "*",
  514. "ext-pcre": "*",
  515. "ext-simplexml": "*",
  516. "guzzlehttp/guzzle": "^7.4.5",
  517. "guzzlehttp/promises": "^2.0",
  518. "guzzlehttp/psr7": "^2.4.5",
  519. "mtdowling/jmespath.php": "^2.8.0",
  520. "php": ">=8.1",
  521. "psr/http-message": "^2.0"
  522. },
  523. "require-dev": {
  524. "andrewsville/php-token-reflection": "^1.4",
  525. "aws/aws-php-sns-message-validator": "~1.0",
  526. "behat/behat": "~3.0",
  527. "composer/composer": "^2.7.8",
  528. "dms/phpunit-arraysubset-asserts": "^0.4.0",
  529. "doctrine/cache": "~1.4",
  530. "ext-dom": "*",
  531. "ext-openssl": "*",
  532. "ext-pcntl": "*",
  533. "ext-sockets": "*",
  534. "phpunit/phpunit": "^5.6.3 || ^8.5 || ^9.5",
  535. "psr/cache": "^2.0 || ^3.0",
  536. "psr/simple-cache": "^2.0 || ^3.0",
  537. "sebastian/comparator": "^1.2.3 || ^4.0 || ^5.0",
  538. "symfony/filesystem": "^v6.4.0 || ^v7.1.0",
  539. "yoast/phpunit-polyfills": "^2.0"
  540. },
  541. "suggest": {
  542. "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications",
  543. "doctrine/cache": "To use the DoctrineCacheAdapter",
  544. "ext-curl": "To send requests using cURL",
  545. "ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages",
  546. "ext-sockets": "To use client-side monitoring"
  547. },
  548. "type": "library",
  549. "extra": {
  550. "branch-alias": {
  551. "dev-master": "3.0-dev"
  552. }
  553. },
  554. "autoload": {
  555. "files": [
  556. "src/functions.php"
  557. ],
  558. "psr-4": {
  559. "Aws\\": "src/"
  560. },
  561. "exclude-from-classmap": [
  562. "src/data/"
  563. ]
  564. },
  565. "notification-url": "https://packagist.org/downloads/",
  566. "license": [
  567. "Apache-2.0"
  568. ],
  569. "authors": [
  570. {
  571. "name": "Amazon Web Services",
  572. "homepage": "http://aws.amazon.com"
  573. }
  574. ],
  575. "description": "AWS SDK for PHP - Use Amazon Web Services in your PHP project",
  576. "homepage": "http://aws.amazon.com/sdkforphp",
  577. "keywords": [
  578. "amazon",
  579. "aws",
  580. "cloud",
  581. "dynamodb",
  582. "ec2",
  583. "glacier",
  584. "s3",
  585. "sdk"
  586. ],
  587. "support": {
  588. "forum": "https://github.com/aws/aws-sdk-php/discussions",
  589. "issues": "https://github.com/aws/aws-sdk-php/issues",
  590. "source": "https://github.com/aws/aws-sdk-php/tree/3.356.3"
  591. },
  592. "time": "2025-08-22T18:13:45+00:00"
  593. },
  594. {
  595. "name": "aws/aws-sdk-php-laravel",
  596. "version": "3.10.0",
  597. "source": {
  598. "type": "git",
  599. "url": "https://github.com/aws/aws-sdk-php-laravel.git",
  600. "reference": "c1477b1efd43a61238090c0e8f1ede979573dd4b"
  601. },
  602. "dist": {
  603. "type": "zip",
  604. "url": "https://api.github.com/repos/aws/aws-sdk-php-laravel/zipball/c1477b1efd43a61238090c0e8f1ede979573dd4b",
  605. "reference": "c1477b1efd43a61238090c0e8f1ede979573dd4b",
  606. "shasum": ""
  607. },
  608. "require": {
  609. "aws/aws-sdk-php": "^3.338.0",
  610. "illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
  611. "php": ">=8.1"
  612. },
  613. "require-dev": {
  614. "phpunit/phpunit": "^8.0 || ^9.0",
  615. "vlucas/phpdotenv": "^1.0 || ^2.0 || ^3.0 || ^4.0 || ^5.0",
  616. "yoast/phpunit-polyfills": "^1.0"
  617. },
  618. "suggest": {
  619. "laravel/framework": "To test the Laravel bindings",
  620. "laravel/lumen-framework": "To test the Lumen bindings"
  621. },
  622. "type": "library",
  623. "extra": {
  624. "laravel": {
  625. "aliases": {
  626. "AWS": "Aws\\Laravel\\AwsFacade"
  627. },
  628. "providers": [
  629. "Aws\\Laravel\\AwsServiceProvider"
  630. ]
  631. }
  632. },
  633. "autoload": {
  634. "psr-4": {
  635. "Aws\\Laravel\\": "src/"
  636. }
  637. },
  638. "notification-url": "https://packagist.org/downloads/",
  639. "license": [
  640. "Apache-2.0"
  641. ],
  642. "authors": [
  643. {
  644. "name": "Amazon Web Services",
  645. "homepage": "http://aws.amazon.com"
  646. }
  647. ],
  648. "description": "A simple Laravel 6/7/8/9/10/11/12 service provider for including the AWS SDK for PHP.",
  649. "homepage": "https://aws.amazon.com/sdk-for-php/",
  650. "keywords": [
  651. "amazon",
  652. "aws",
  653. "dynamodb",
  654. "ec2",
  655. "laravel",
  656. "laravel 10",
  657. "laravel 11",
  658. "laravel 12",
  659. "laravel 6",
  660. "laravel 7",
  661. "laravel 8",
  662. "laravel 9",
  663. "s3",
  664. "sdk"
  665. ],
  666. "support": {
  667. "issues": "https://github.com/aws/aws-sdk-php-laravel/issues",
  668. "source": "https://github.com/aws/aws-sdk-php-laravel/tree/3.10.0"
  669. },
  670. "time": "2025-02-26T22:25:56+00:00"
  671. },
  672. {
  673. "name": "barryvdh/laravel-snappy",
  674. "version": "v1.0.4",
  675. "source": {
  676. "type": "git",
  677. "url": "https://github.com/barryvdh/laravel-snappy.git",
  678. "reference": "5b8668e4a54be630973fd309b4cb1abe75a8afbb"
  679. },
  680. "dist": {
  681. "type": "zip",
  682. "url": "https://api.github.com/repos/barryvdh/laravel-snappy/zipball/5b8668e4a54be630973fd309b4cb1abe75a8afbb",
  683. "reference": "5b8668e4a54be630973fd309b4cb1abe75a8afbb",
  684. "shasum": ""
  685. },
  686. "require": {
  687. "illuminate/filesystem": "^9|^10|^11|^12",
  688. "illuminate/support": "^9|^10|^11|^12",
  689. "knplabs/knp-snappy": "^1.4.4",
  690. "php": "^8.1"
  691. },
  692. "require-dev": {
  693. "orchestra/testbench": "^7|^8|^9|^10"
  694. },
  695. "type": "library",
  696. "extra": {
  697. "laravel": {
  698. "aliases": {
  699. "PDF": "Barryvdh\\Snappy\\Facades\\SnappyPdf",
  700. "SnappyImage": "Barryvdh\\Snappy\\Facades\\SnappyImage"
  701. },
  702. "providers": [
  703. "Barryvdh\\Snappy\\ServiceProvider"
  704. ]
  705. },
  706. "branch-alias": {
  707. "dev-master": "1.0-dev"
  708. }
  709. },
  710. "autoload": {
  711. "psr-4": {
  712. "Barryvdh\\Snappy\\": "src/"
  713. }
  714. },
  715. "notification-url": "https://packagist.org/downloads/",
  716. "license": [
  717. "MIT"
  718. ],
  719. "authors": [
  720. {
  721. "name": "Barry vd. Heuvel",
  722. "email": "barryvdh@gmail.com"
  723. }
  724. ],
  725. "description": "Snappy PDF/Image for Laravel",
  726. "keywords": [
  727. "image",
  728. "laravel",
  729. "pdf",
  730. "snappy",
  731. "wkhtmltoimage",
  732. "wkhtmltopdf"
  733. ],
  734. "support": {
  735. "issues": "https://github.com/barryvdh/laravel-snappy/issues",
  736. "source": "https://github.com/barryvdh/laravel-snappy/tree/v1.0.4"
  737. },
  738. "funding": [
  739. {
  740. "url": "https://fruitcake.nl",
  741. "type": "custom"
  742. },
  743. {
  744. "url": "https://github.com/barryvdh",
  745. "type": "github"
  746. }
  747. ],
  748. "time": "2025-02-24T15:20:06+00:00"
  749. },
  750. {
  751. "name": "blade-ui-kit/blade-heroicons",
  752. "version": "2.6.0",
  753. "source": {
  754. "type": "git",
  755. "url": "https://github.com/driesvints/blade-heroicons.git",
  756. "reference": "4553b2a1f6c76f0ac7f3bc0de4c0cfa06a097d19"
  757. },
  758. "dist": {
  759. "type": "zip",
  760. "url": "https://api.github.com/repos/driesvints/blade-heroicons/zipball/4553b2a1f6c76f0ac7f3bc0de4c0cfa06a097d19",
  761. "reference": "4553b2a1f6c76f0ac7f3bc0de4c0cfa06a097d19",
  762. "shasum": ""
  763. },
  764. "require": {
  765. "blade-ui-kit/blade-icons": "^1.6",
  766. "illuminate/support": "^9.0|^10.0|^11.0|^12.0",
  767. "php": "^8.0"
  768. },
  769. "require-dev": {
  770. "orchestra/testbench": "^7.0|^8.0|^9.0|^10.0",
  771. "phpunit/phpunit": "^9.0|^10.5|^11.0"
  772. },
  773. "type": "library",
  774. "extra": {
  775. "laravel": {
  776. "providers": [
  777. "BladeUI\\Heroicons\\BladeHeroiconsServiceProvider"
  778. ]
  779. }
  780. },
  781. "autoload": {
  782. "psr-4": {
  783. "BladeUI\\Heroicons\\": "src"
  784. }
  785. },
  786. "notification-url": "https://packagist.org/downloads/",
  787. "license": [
  788. "MIT"
  789. ],
  790. "authors": [
  791. {
  792. "name": "Dries Vints",
  793. "homepage": "https://driesvints.com"
  794. }
  795. ],
  796. "description": "A package to easily make use of Heroicons in your Laravel Blade views.",
  797. "homepage": "https://github.com/blade-ui-kit/blade-heroicons",
  798. "keywords": [
  799. "Heroicons",
  800. "blade",
  801. "laravel"
  802. ],
  803. "support": {
  804. "issues": "https://github.com/driesvints/blade-heroicons/issues",
  805. "source": "https://github.com/driesvints/blade-heroicons/tree/2.6.0"
  806. },
  807. "funding": [
  808. {
  809. "url": "https://github.com/sponsors/driesvints",
  810. "type": "github"
  811. },
  812. {
  813. "url": "https://www.paypal.com/paypalme/driesvints",
  814. "type": "paypal"
  815. }
  816. ],
  817. "time": "2025-02-13T20:53:33+00:00"
  818. },
  819. {
  820. "name": "blade-ui-kit/blade-icons",
  821. "version": "1.8.0",
  822. "source": {
  823. "type": "git",
  824. "url": "https://github.com/driesvints/blade-icons.git",
  825. "reference": "7b743f27476acb2ed04cb518213d78abe096e814"
  826. },
  827. "dist": {
  828. "type": "zip",
  829. "url": "https://api.github.com/repos/driesvints/blade-icons/zipball/7b743f27476acb2ed04cb518213d78abe096e814",
  830. "reference": "7b743f27476acb2ed04cb518213d78abe096e814",
  831. "shasum": ""
  832. },
  833. "require": {
  834. "illuminate/contracts": "^8.0|^9.0|^10.0|^11.0|^12.0",
  835. "illuminate/filesystem": "^8.0|^9.0|^10.0|^11.0|^12.0",
  836. "illuminate/support": "^8.0|^9.0|^10.0|^11.0|^12.0",
  837. "illuminate/view": "^8.0|^9.0|^10.0|^11.0|^12.0",
  838. "php": "^7.4|^8.0",
  839. "symfony/console": "^5.3|^6.0|^7.0",
  840. "symfony/finder": "^5.3|^6.0|^7.0"
  841. },
  842. "require-dev": {
  843. "mockery/mockery": "^1.5.1",
  844. "orchestra/testbench": "^6.0|^7.0|^8.0|^9.0|^10.0",
  845. "phpunit/phpunit": "^9.0|^10.5|^11.0"
  846. },
  847. "bin": [
  848. "bin/blade-icons-generate"
  849. ],
  850. "type": "library",
  851. "extra": {
  852. "laravel": {
  853. "providers": [
  854. "BladeUI\\Icons\\BladeIconsServiceProvider"
  855. ]
  856. }
  857. },
  858. "autoload": {
  859. "files": [
  860. "src/helpers.php"
  861. ],
  862. "psr-4": {
  863. "BladeUI\\Icons\\": "src"
  864. }
  865. },
  866. "notification-url": "https://packagist.org/downloads/",
  867. "license": [
  868. "MIT"
  869. ],
  870. "authors": [
  871. {
  872. "name": "Dries Vints",
  873. "homepage": "https://driesvints.com"
  874. }
  875. ],
  876. "description": "A package to easily make use of icons in your Laravel Blade views.",
  877. "homepage": "https://github.com/blade-ui-kit/blade-icons",
  878. "keywords": [
  879. "blade",
  880. "icons",
  881. "laravel",
  882. "svg"
  883. ],
  884. "support": {
  885. "issues": "https://github.com/blade-ui-kit/blade-icons/issues",
  886. "source": "https://github.com/blade-ui-kit/blade-icons"
  887. },
  888. "funding": [
  889. {
  890. "url": "https://github.com/sponsors/driesvints",
  891. "type": "github"
  892. },
  893. {
  894. "url": "https://www.paypal.com/paypalme/driesvints",
  895. "type": "paypal"
  896. }
  897. ],
  898. "time": "2025-02-13T20:35:06+00:00"
  899. },
  900. {
  901. "name": "brick/math",
  902. "version": "0.13.1",
  903. "source": {
  904. "type": "git",
  905. "url": "https://github.com/brick/math.git",
  906. "reference": "fc7ed316430118cc7836bf45faff18d5dfc8de04"
  907. },
  908. "dist": {
  909. "type": "zip",
  910. "url": "https://api.github.com/repos/brick/math/zipball/fc7ed316430118cc7836bf45faff18d5dfc8de04",
  911. "reference": "fc7ed316430118cc7836bf45faff18d5dfc8de04",
  912. "shasum": ""
  913. },
  914. "require": {
  915. "php": "^8.1"
  916. },
  917. "require-dev": {
  918. "php-coveralls/php-coveralls": "^2.2",
  919. "phpunit/phpunit": "^10.1",
  920. "vimeo/psalm": "6.8.8"
  921. },
  922. "type": "library",
  923. "autoload": {
  924. "psr-4": {
  925. "Brick\\Math\\": "src/"
  926. }
  927. },
  928. "notification-url": "https://packagist.org/downloads/",
  929. "license": [
  930. "MIT"
  931. ],
  932. "description": "Arbitrary-precision arithmetic library",
  933. "keywords": [
  934. "Arbitrary-precision",
  935. "BigInteger",
  936. "BigRational",
  937. "arithmetic",
  938. "bigdecimal",
  939. "bignum",
  940. "bignumber",
  941. "brick",
  942. "decimal",
  943. "integer",
  944. "math",
  945. "mathematics",
  946. "rational"
  947. ],
  948. "support": {
  949. "issues": "https://github.com/brick/math/issues",
  950. "source": "https://github.com/brick/math/tree/0.13.1"
  951. },
  952. "funding": [
  953. {
  954. "url": "https://github.com/BenMorel",
  955. "type": "github"
  956. }
  957. ],
  958. "time": "2025-03-29T13:50:30+00:00"
  959. },
  960. {
  961. "name": "carbonphp/carbon-doctrine-types",
  962. "version": "3.2.0",
  963. "source": {
  964. "type": "git",
  965. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  966. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  967. },
  968. "dist": {
  969. "type": "zip",
  970. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  971. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  972. "shasum": ""
  973. },
  974. "require": {
  975. "php": "^8.1"
  976. },
  977. "conflict": {
  978. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  979. },
  980. "require-dev": {
  981. "doctrine/dbal": "^4.0.0",
  982. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  983. "phpunit/phpunit": "^10.3"
  984. },
  985. "type": "library",
  986. "autoload": {
  987. "psr-4": {
  988. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  989. }
  990. },
  991. "notification-url": "https://packagist.org/downloads/",
  992. "license": [
  993. "MIT"
  994. ],
  995. "authors": [
  996. {
  997. "name": "KyleKatarn",
  998. "email": "kylekatarnls@gmail.com"
  999. }
  1000. ],
  1001. "description": "Types to use Carbon in Doctrine",
  1002. "keywords": [
  1003. "carbon",
  1004. "date",
  1005. "datetime",
  1006. "doctrine",
  1007. "time"
  1008. ],
  1009. "support": {
  1010. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  1011. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  1012. },
  1013. "funding": [
  1014. {
  1015. "url": "https://github.com/kylekatarnls",
  1016. "type": "github"
  1017. },
  1018. {
  1019. "url": "https://opencollective.com/Carbon",
  1020. "type": "open_collective"
  1021. },
  1022. {
  1023. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  1024. "type": "tidelift"
  1025. }
  1026. ],
  1027. "time": "2024-02-09T16:56:22+00:00"
  1028. },
  1029. {
  1030. "name": "codewithdennis/filament-simple-alert",
  1031. "version": "v3.0.20",
  1032. "source": {
  1033. "type": "git",
  1034. "url": "https://github.com/CodeWithDennis/filament-simple-alert.git",
  1035. "reference": "ed02e5718dfbc217be8b7d38462ca2e39b135ac8"
  1036. },
  1037. "dist": {
  1038. "type": "zip",
  1039. "url": "https://api.github.com/repos/CodeWithDennis/filament-simple-alert/zipball/ed02e5718dfbc217be8b7d38462ca2e39b135ac8",
  1040. "reference": "ed02e5718dfbc217be8b7d38462ca2e39b135ac8",
  1041. "shasum": ""
  1042. },
  1043. "require": {
  1044. "filament/filament": "^3.0",
  1045. "php": "^8.1",
  1046. "spatie/laravel-package-tools": "^1.15.0"
  1047. },
  1048. "require-dev": {
  1049. "laravel/pint": "^1.16",
  1050. "nunomaduro/collision": "^7.9",
  1051. "orchestra/testbench": "^8.0",
  1052. "pestphp/pest": "^2.1",
  1053. "pestphp/pest-plugin-arch": "^2.0",
  1054. "pestphp/pest-plugin-laravel": "^2.0"
  1055. },
  1056. "type": "library",
  1057. "extra": {
  1058. "laravel": {
  1059. "aliases": {
  1060. "SimpleAlert": "CodeWithDennis\\SimpleAlert\\Facades\\SimpleAlert"
  1061. },
  1062. "providers": [
  1063. "CodeWithDennis\\SimpleAlert\\SimpleAlertServiceProvider"
  1064. ]
  1065. }
  1066. },
  1067. "autoload": {
  1068. "psr-4": {
  1069. "CodeWithDennis\\SimpleAlert\\": "src/",
  1070. "CodeWithDennis\\SimpleAlert\\Database\\Factories\\": "database/factories/"
  1071. }
  1072. },
  1073. "notification-url": "https://packagist.org/downloads/",
  1074. "license": [
  1075. "MIT"
  1076. ],
  1077. "authors": [
  1078. {
  1079. "name": "CodeWithDennis",
  1080. "role": "Developer"
  1081. }
  1082. ],
  1083. "description": "A plugin for adding straightforward alerts to your filament pages",
  1084. "homepage": "https://github.com/codewithdennis/filament-simple-alert",
  1085. "keywords": [
  1086. "CodeWithDennis",
  1087. "filament-simple-alert",
  1088. "laravel"
  1089. ],
  1090. "support": {
  1091. "issues": "https://github.com/codewithdennis/filament-simple-alert/issues",
  1092. "source": "https://github.com/codewithdennis/filament-simple-alert"
  1093. },
  1094. "funding": [
  1095. {
  1096. "url": "https://github.com/CodeWithDennis",
  1097. "type": "github"
  1098. }
  1099. ],
  1100. "time": "2025-06-19T17:07:23+00:00"
  1101. },
  1102. {
  1103. "name": "danharrin/date-format-converter",
  1104. "version": "v0.3.1",
  1105. "source": {
  1106. "type": "git",
  1107. "url": "https://github.com/danharrin/date-format-converter.git",
  1108. "reference": "7c31171bc981e48726729a5f3a05a2d2b63f0b1e"
  1109. },
  1110. "dist": {
  1111. "type": "zip",
  1112. "url": "https://api.github.com/repos/danharrin/date-format-converter/zipball/7c31171bc981e48726729a5f3a05a2d2b63f0b1e",
  1113. "reference": "7c31171bc981e48726729a5f3a05a2d2b63f0b1e",
  1114. "shasum": ""
  1115. },
  1116. "require": {
  1117. "php": "^7.2|^8.0"
  1118. },
  1119. "type": "library",
  1120. "autoload": {
  1121. "files": [
  1122. "src/helpers.php",
  1123. "src/standards.php"
  1124. ],
  1125. "psr-4": {
  1126. "DanHarrin\\DateFormatConverter\\": "src/"
  1127. }
  1128. },
  1129. "notification-url": "https://packagist.org/downloads/",
  1130. "license": [
  1131. "MIT"
  1132. ],
  1133. "authors": [
  1134. {
  1135. "name": "Dan Harrin",
  1136. "email": "dan@danharrin.com"
  1137. }
  1138. ],
  1139. "description": "Convert token-based date formats between standards.",
  1140. "homepage": "https://github.com/danharrin/date-format-converter",
  1141. "support": {
  1142. "issues": "https://github.com/danharrin/date-format-converter/issues",
  1143. "source": "https://github.com/danharrin/date-format-converter"
  1144. },
  1145. "funding": [
  1146. {
  1147. "url": "https://github.com/danharrin",
  1148. "type": "github"
  1149. }
  1150. ],
  1151. "time": "2024-06-13T09:38:44+00:00"
  1152. },
  1153. {
  1154. "name": "danharrin/livewire-rate-limiting",
  1155. "version": "v2.1.0",
  1156. "source": {
  1157. "type": "git",
  1158. "url": "https://github.com/danharrin/livewire-rate-limiting.git",
  1159. "reference": "14dde653a9ae8f38af07a0ba4921dc046235e1a0"
  1160. },
  1161. "dist": {
  1162. "type": "zip",
  1163. "url": "https://api.github.com/repos/danharrin/livewire-rate-limiting/zipball/14dde653a9ae8f38af07a0ba4921dc046235e1a0",
  1164. "reference": "14dde653a9ae8f38af07a0ba4921dc046235e1a0",
  1165. "shasum": ""
  1166. },
  1167. "require": {
  1168. "illuminate/support": "^9.0|^10.0|^11.0|^12.0",
  1169. "php": "^8.0"
  1170. },
  1171. "require-dev": {
  1172. "livewire/livewire": "^3.0",
  1173. "livewire/volt": "^1.3",
  1174. "orchestra/testbench": "^7.0|^8.0|^9.0|^10.0",
  1175. "phpunit/phpunit": "^9.0|^10.0|^11.5.3"
  1176. },
  1177. "type": "library",
  1178. "autoload": {
  1179. "psr-4": {
  1180. "DanHarrin\\LivewireRateLimiting\\": "src"
  1181. }
  1182. },
  1183. "notification-url": "https://packagist.org/downloads/",
  1184. "license": [
  1185. "MIT"
  1186. ],
  1187. "authors": [
  1188. {
  1189. "name": "Dan Harrin",
  1190. "email": "dan@danharrin.com"
  1191. }
  1192. ],
  1193. "description": "Apply rate limiters to Laravel Livewire actions.",
  1194. "homepage": "https://github.com/danharrin/livewire-rate-limiting",
  1195. "support": {
  1196. "issues": "https://github.com/danharrin/livewire-rate-limiting/issues",
  1197. "source": "https://github.com/danharrin/livewire-rate-limiting"
  1198. },
  1199. "funding": [
  1200. {
  1201. "url": "https://github.com/danharrin",
  1202. "type": "github"
  1203. }
  1204. ],
  1205. "time": "2025-02-21T08:52:11+00:00"
  1206. },
  1207. {
  1208. "name": "dflydev/dot-access-data",
  1209. "version": "v3.0.3",
  1210. "source": {
  1211. "type": "git",
  1212. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1213. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  1214. },
  1215. "dist": {
  1216. "type": "zip",
  1217. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  1218. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  1219. "shasum": ""
  1220. },
  1221. "require": {
  1222. "php": "^7.1 || ^8.0"
  1223. },
  1224. "require-dev": {
  1225. "phpstan/phpstan": "^0.12.42",
  1226. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  1227. "scrutinizer/ocular": "1.6.0",
  1228. "squizlabs/php_codesniffer": "^3.5",
  1229. "vimeo/psalm": "^4.0.0"
  1230. },
  1231. "type": "library",
  1232. "extra": {
  1233. "branch-alias": {
  1234. "dev-main": "3.x-dev"
  1235. }
  1236. },
  1237. "autoload": {
  1238. "psr-4": {
  1239. "Dflydev\\DotAccessData\\": "src/"
  1240. }
  1241. },
  1242. "notification-url": "https://packagist.org/downloads/",
  1243. "license": [
  1244. "MIT"
  1245. ],
  1246. "authors": [
  1247. {
  1248. "name": "Dragonfly Development Inc.",
  1249. "email": "info@dflydev.com",
  1250. "homepage": "http://dflydev.com"
  1251. },
  1252. {
  1253. "name": "Beau Simensen",
  1254. "email": "beau@dflydev.com",
  1255. "homepage": "http://beausimensen.com"
  1256. },
  1257. {
  1258. "name": "Carlos Frutos",
  1259. "email": "carlos@kiwing.it",
  1260. "homepage": "https://github.com/cfrutos"
  1261. },
  1262. {
  1263. "name": "Colin O'Dell",
  1264. "email": "colinodell@gmail.com",
  1265. "homepage": "https://www.colinodell.com"
  1266. }
  1267. ],
  1268. "description": "Given a deep data structure, access data by dot notation.",
  1269. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1270. "keywords": [
  1271. "access",
  1272. "data",
  1273. "dot",
  1274. "notation"
  1275. ],
  1276. "support": {
  1277. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  1278. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  1279. },
  1280. "time": "2024-07-08T12:26:09+00:00"
  1281. },
  1282. {
  1283. "name": "doctrine/dbal",
  1284. "version": "4.3.2",
  1285. "source": {
  1286. "type": "git",
  1287. "url": "https://github.com/doctrine/dbal.git",
  1288. "reference": "7669f131d43b880de168b2d2df9687d152d6c762"
  1289. },
  1290. "dist": {
  1291. "type": "zip",
  1292. "url": "https://api.github.com/repos/doctrine/dbal/zipball/7669f131d43b880de168b2d2df9687d152d6c762",
  1293. "reference": "7669f131d43b880de168b2d2df9687d152d6c762",
  1294. "shasum": ""
  1295. },
  1296. "require": {
  1297. "doctrine/deprecations": "^1.1.5",
  1298. "php": "^8.2",
  1299. "psr/cache": "^1|^2|^3",
  1300. "psr/log": "^1|^2|^3"
  1301. },
  1302. "require-dev": {
  1303. "doctrine/coding-standard": "13.0.0",
  1304. "fig/log-test": "^1",
  1305. "jetbrains/phpstorm-stubs": "2023.2",
  1306. "phpstan/phpstan": "2.1.17",
  1307. "phpstan/phpstan-phpunit": "2.0.6",
  1308. "phpstan/phpstan-strict-rules": "^2",
  1309. "phpunit/phpunit": "11.5.23",
  1310. "slevomat/coding-standard": "8.16.2",
  1311. "squizlabs/php_codesniffer": "3.13.1",
  1312. "symfony/cache": "^6.3.8|^7.0",
  1313. "symfony/console": "^5.4|^6.3|^7.0"
  1314. },
  1315. "suggest": {
  1316. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  1317. },
  1318. "type": "library",
  1319. "autoload": {
  1320. "psr-4": {
  1321. "Doctrine\\DBAL\\": "src"
  1322. }
  1323. },
  1324. "notification-url": "https://packagist.org/downloads/",
  1325. "license": [
  1326. "MIT"
  1327. ],
  1328. "authors": [
  1329. {
  1330. "name": "Guilherme Blanco",
  1331. "email": "guilhermeblanco@gmail.com"
  1332. },
  1333. {
  1334. "name": "Roman Borschel",
  1335. "email": "roman@code-factory.org"
  1336. },
  1337. {
  1338. "name": "Benjamin Eberlei",
  1339. "email": "kontakt@beberlei.de"
  1340. },
  1341. {
  1342. "name": "Jonathan Wage",
  1343. "email": "jonwage@gmail.com"
  1344. }
  1345. ],
  1346. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  1347. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  1348. "keywords": [
  1349. "abstraction",
  1350. "database",
  1351. "db2",
  1352. "dbal",
  1353. "mariadb",
  1354. "mssql",
  1355. "mysql",
  1356. "oci8",
  1357. "oracle",
  1358. "pdo",
  1359. "pgsql",
  1360. "postgresql",
  1361. "queryobject",
  1362. "sasql",
  1363. "sql",
  1364. "sqlite",
  1365. "sqlserver",
  1366. "sqlsrv"
  1367. ],
  1368. "support": {
  1369. "issues": "https://github.com/doctrine/dbal/issues",
  1370. "source": "https://github.com/doctrine/dbal/tree/4.3.2"
  1371. },
  1372. "funding": [
  1373. {
  1374. "url": "https://www.doctrine-project.org/sponsorship.html",
  1375. "type": "custom"
  1376. },
  1377. {
  1378. "url": "https://www.patreon.com/phpdoctrine",
  1379. "type": "patreon"
  1380. },
  1381. {
  1382. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  1383. "type": "tidelift"
  1384. }
  1385. ],
  1386. "time": "2025-08-05T13:30:38+00:00"
  1387. },
  1388. {
  1389. "name": "doctrine/deprecations",
  1390. "version": "1.1.5",
  1391. "source": {
  1392. "type": "git",
  1393. "url": "https://github.com/doctrine/deprecations.git",
  1394. "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38"
  1395. },
  1396. "dist": {
  1397. "type": "zip",
  1398. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38",
  1399. "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38",
  1400. "shasum": ""
  1401. },
  1402. "require": {
  1403. "php": "^7.1 || ^8.0"
  1404. },
  1405. "conflict": {
  1406. "phpunit/phpunit": "<=7.5 || >=13"
  1407. },
  1408. "require-dev": {
  1409. "doctrine/coding-standard": "^9 || ^12 || ^13",
  1410. "phpstan/phpstan": "1.4.10 || 2.1.11",
  1411. "phpstan/phpstan-phpunit": "^1.0 || ^2",
  1412. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6 || ^10.5 || ^11.5 || ^12",
  1413. "psr/log": "^1 || ^2 || ^3"
  1414. },
  1415. "suggest": {
  1416. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  1417. },
  1418. "type": "library",
  1419. "autoload": {
  1420. "psr-4": {
  1421. "Doctrine\\Deprecations\\": "src"
  1422. }
  1423. },
  1424. "notification-url": "https://packagist.org/downloads/",
  1425. "license": [
  1426. "MIT"
  1427. ],
  1428. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  1429. "homepage": "https://www.doctrine-project.org/",
  1430. "support": {
  1431. "issues": "https://github.com/doctrine/deprecations/issues",
  1432. "source": "https://github.com/doctrine/deprecations/tree/1.1.5"
  1433. },
  1434. "time": "2025-04-07T20:06:18+00:00"
  1435. },
  1436. {
  1437. "name": "doctrine/inflector",
  1438. "version": "2.1.0",
  1439. "source": {
  1440. "type": "git",
  1441. "url": "https://github.com/doctrine/inflector.git",
  1442. "reference": "6d6c96277ea252fc1304627204c3d5e6e15faa3b"
  1443. },
  1444. "dist": {
  1445. "type": "zip",
  1446. "url": "https://api.github.com/repos/doctrine/inflector/zipball/6d6c96277ea252fc1304627204c3d5e6e15faa3b",
  1447. "reference": "6d6c96277ea252fc1304627204c3d5e6e15faa3b",
  1448. "shasum": ""
  1449. },
  1450. "require": {
  1451. "php": "^7.2 || ^8.0"
  1452. },
  1453. "require-dev": {
  1454. "doctrine/coding-standard": "^12.0 || ^13.0",
  1455. "phpstan/phpstan": "^1.12 || ^2.0",
  1456. "phpstan/phpstan-phpunit": "^1.4 || ^2.0",
  1457. "phpstan/phpstan-strict-rules": "^1.6 || ^2.0",
  1458. "phpunit/phpunit": "^8.5 || ^12.2"
  1459. },
  1460. "type": "library",
  1461. "autoload": {
  1462. "psr-4": {
  1463. "Doctrine\\Inflector\\": "src"
  1464. }
  1465. },
  1466. "notification-url": "https://packagist.org/downloads/",
  1467. "license": [
  1468. "MIT"
  1469. ],
  1470. "authors": [
  1471. {
  1472. "name": "Guilherme Blanco",
  1473. "email": "guilhermeblanco@gmail.com"
  1474. },
  1475. {
  1476. "name": "Roman Borschel",
  1477. "email": "roman@code-factory.org"
  1478. },
  1479. {
  1480. "name": "Benjamin Eberlei",
  1481. "email": "kontakt@beberlei.de"
  1482. },
  1483. {
  1484. "name": "Jonathan Wage",
  1485. "email": "jonwage@gmail.com"
  1486. },
  1487. {
  1488. "name": "Johannes Schmitt",
  1489. "email": "schmittjoh@gmail.com"
  1490. }
  1491. ],
  1492. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1493. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1494. "keywords": [
  1495. "inflection",
  1496. "inflector",
  1497. "lowercase",
  1498. "manipulation",
  1499. "php",
  1500. "plural",
  1501. "singular",
  1502. "strings",
  1503. "uppercase",
  1504. "words"
  1505. ],
  1506. "support": {
  1507. "issues": "https://github.com/doctrine/inflector/issues",
  1508. "source": "https://github.com/doctrine/inflector/tree/2.1.0"
  1509. },
  1510. "funding": [
  1511. {
  1512. "url": "https://www.doctrine-project.org/sponsorship.html",
  1513. "type": "custom"
  1514. },
  1515. {
  1516. "url": "https://www.patreon.com/phpdoctrine",
  1517. "type": "patreon"
  1518. },
  1519. {
  1520. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1521. "type": "tidelift"
  1522. }
  1523. ],
  1524. "time": "2025-08-10T19:31:58+00:00"
  1525. },
  1526. {
  1527. "name": "doctrine/lexer",
  1528. "version": "3.0.1",
  1529. "source": {
  1530. "type": "git",
  1531. "url": "https://github.com/doctrine/lexer.git",
  1532. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  1533. },
  1534. "dist": {
  1535. "type": "zip",
  1536. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  1537. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  1538. "shasum": ""
  1539. },
  1540. "require": {
  1541. "php": "^8.1"
  1542. },
  1543. "require-dev": {
  1544. "doctrine/coding-standard": "^12",
  1545. "phpstan/phpstan": "^1.10",
  1546. "phpunit/phpunit": "^10.5",
  1547. "psalm/plugin-phpunit": "^0.18.3",
  1548. "vimeo/psalm": "^5.21"
  1549. },
  1550. "type": "library",
  1551. "autoload": {
  1552. "psr-4": {
  1553. "Doctrine\\Common\\Lexer\\": "src"
  1554. }
  1555. },
  1556. "notification-url": "https://packagist.org/downloads/",
  1557. "license": [
  1558. "MIT"
  1559. ],
  1560. "authors": [
  1561. {
  1562. "name": "Guilherme Blanco",
  1563. "email": "guilhermeblanco@gmail.com"
  1564. },
  1565. {
  1566. "name": "Roman Borschel",
  1567. "email": "roman@code-factory.org"
  1568. },
  1569. {
  1570. "name": "Johannes Schmitt",
  1571. "email": "schmittjoh@gmail.com"
  1572. }
  1573. ],
  1574. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1575. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1576. "keywords": [
  1577. "annotations",
  1578. "docblock",
  1579. "lexer",
  1580. "parser",
  1581. "php"
  1582. ],
  1583. "support": {
  1584. "issues": "https://github.com/doctrine/lexer/issues",
  1585. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  1586. },
  1587. "funding": [
  1588. {
  1589. "url": "https://www.doctrine-project.org/sponsorship.html",
  1590. "type": "custom"
  1591. },
  1592. {
  1593. "url": "https://www.patreon.com/phpdoctrine",
  1594. "type": "patreon"
  1595. },
  1596. {
  1597. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1598. "type": "tidelift"
  1599. }
  1600. ],
  1601. "time": "2024-02-05T11:56:58+00:00"
  1602. },
  1603. {
  1604. "name": "dragonmantank/cron-expression",
  1605. "version": "v3.4.0",
  1606. "source": {
  1607. "type": "git",
  1608. "url": "https://github.com/dragonmantank/cron-expression.git",
  1609. "reference": "8c784d071debd117328803d86b2097615b457500"
  1610. },
  1611. "dist": {
  1612. "type": "zip",
  1613. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/8c784d071debd117328803d86b2097615b457500",
  1614. "reference": "8c784d071debd117328803d86b2097615b457500",
  1615. "shasum": ""
  1616. },
  1617. "require": {
  1618. "php": "^7.2|^8.0",
  1619. "webmozart/assert": "^1.0"
  1620. },
  1621. "replace": {
  1622. "mtdowling/cron-expression": "^1.0"
  1623. },
  1624. "require-dev": {
  1625. "phpstan/extension-installer": "^1.0",
  1626. "phpstan/phpstan": "^1.0",
  1627. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  1628. },
  1629. "type": "library",
  1630. "extra": {
  1631. "branch-alias": {
  1632. "dev-master": "3.x-dev"
  1633. }
  1634. },
  1635. "autoload": {
  1636. "psr-4": {
  1637. "Cron\\": "src/Cron/"
  1638. }
  1639. },
  1640. "notification-url": "https://packagist.org/downloads/",
  1641. "license": [
  1642. "MIT"
  1643. ],
  1644. "authors": [
  1645. {
  1646. "name": "Chris Tankersley",
  1647. "email": "chris@ctankersley.com",
  1648. "homepage": "https://github.com/dragonmantank"
  1649. }
  1650. ],
  1651. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1652. "keywords": [
  1653. "cron",
  1654. "schedule"
  1655. ],
  1656. "support": {
  1657. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  1658. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.4.0"
  1659. },
  1660. "funding": [
  1661. {
  1662. "url": "https://github.com/dragonmantank",
  1663. "type": "github"
  1664. }
  1665. ],
  1666. "time": "2024-10-09T13:47:03+00:00"
  1667. },
  1668. {
  1669. "name": "egulias/email-validator",
  1670. "version": "4.0.4",
  1671. "source": {
  1672. "type": "git",
  1673. "url": "https://github.com/egulias/EmailValidator.git",
  1674. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa"
  1675. },
  1676. "dist": {
  1677. "type": "zip",
  1678. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  1679. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  1680. "shasum": ""
  1681. },
  1682. "require": {
  1683. "doctrine/lexer": "^2.0 || ^3.0",
  1684. "php": ">=8.1",
  1685. "symfony/polyfill-intl-idn": "^1.26"
  1686. },
  1687. "require-dev": {
  1688. "phpunit/phpunit": "^10.2",
  1689. "vimeo/psalm": "^5.12"
  1690. },
  1691. "suggest": {
  1692. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1693. },
  1694. "type": "library",
  1695. "extra": {
  1696. "branch-alias": {
  1697. "dev-master": "4.0.x-dev"
  1698. }
  1699. },
  1700. "autoload": {
  1701. "psr-4": {
  1702. "Egulias\\EmailValidator\\": "src"
  1703. }
  1704. },
  1705. "notification-url": "https://packagist.org/downloads/",
  1706. "license": [
  1707. "MIT"
  1708. ],
  1709. "authors": [
  1710. {
  1711. "name": "Eduardo Gulias Davis"
  1712. }
  1713. ],
  1714. "description": "A library for validating emails against several RFCs",
  1715. "homepage": "https://github.com/egulias/EmailValidator",
  1716. "keywords": [
  1717. "email",
  1718. "emailvalidation",
  1719. "emailvalidator",
  1720. "validation",
  1721. "validator"
  1722. ],
  1723. "support": {
  1724. "issues": "https://github.com/egulias/EmailValidator/issues",
  1725. "source": "https://github.com/egulias/EmailValidator/tree/4.0.4"
  1726. },
  1727. "funding": [
  1728. {
  1729. "url": "https://github.com/egulias",
  1730. "type": "github"
  1731. }
  1732. ],
  1733. "time": "2025-03-06T22:45:56+00:00"
  1734. },
  1735. {
  1736. "name": "fakerphp/faker",
  1737. "version": "v1.24.1",
  1738. "source": {
  1739. "type": "git",
  1740. "url": "https://github.com/FakerPHP/Faker.git",
  1741. "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5"
  1742. },
  1743. "dist": {
  1744. "type": "zip",
  1745. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
  1746. "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
  1747. "shasum": ""
  1748. },
  1749. "require": {
  1750. "php": "^7.4 || ^8.0",
  1751. "psr/container": "^1.0 || ^2.0",
  1752. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1753. },
  1754. "conflict": {
  1755. "fzaninotto/faker": "*"
  1756. },
  1757. "require-dev": {
  1758. "bamarni/composer-bin-plugin": "^1.4.1",
  1759. "doctrine/persistence": "^1.3 || ^2.0",
  1760. "ext-intl": "*",
  1761. "phpunit/phpunit": "^9.5.26",
  1762. "symfony/phpunit-bridge": "^5.4.16"
  1763. },
  1764. "suggest": {
  1765. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  1766. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  1767. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  1768. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  1769. "ext-mbstring": "Required for multibyte Unicode string functionality."
  1770. },
  1771. "type": "library",
  1772. "autoload": {
  1773. "psr-4": {
  1774. "Faker\\": "src/Faker/"
  1775. }
  1776. },
  1777. "notification-url": "https://packagist.org/downloads/",
  1778. "license": [
  1779. "MIT"
  1780. ],
  1781. "authors": [
  1782. {
  1783. "name": "François Zaninotto"
  1784. }
  1785. ],
  1786. "description": "Faker is a PHP library that generates fake data for you.",
  1787. "keywords": [
  1788. "data",
  1789. "faker",
  1790. "fixtures"
  1791. ],
  1792. "support": {
  1793. "issues": "https://github.com/FakerPHP/Faker/issues",
  1794. "source": "https://github.com/FakerPHP/Faker/tree/v1.24.1"
  1795. },
  1796. "time": "2024-11-21T13:46:39+00:00"
  1797. },
  1798. {
  1799. "name": "filament/actions",
  1800. "version": "v3.3.37",
  1801. "source": {
  1802. "type": "git",
  1803. "url": "https://github.com/filamentphp/actions.git",
  1804. "reference": "9eaddc610d9adc00d738b8b116cea1be35a88f85"
  1805. },
  1806. "dist": {
  1807. "type": "zip",
  1808. "url": "https://api.github.com/repos/filamentphp/actions/zipball/9eaddc610d9adc00d738b8b116cea1be35a88f85",
  1809. "reference": "9eaddc610d9adc00d738b8b116cea1be35a88f85",
  1810. "shasum": ""
  1811. },
  1812. "require": {
  1813. "anourvalar/eloquent-serialize": "^1.2",
  1814. "filament/forms": "self.version",
  1815. "filament/infolists": "self.version",
  1816. "filament/notifications": "self.version",
  1817. "filament/support": "self.version",
  1818. "illuminate/contracts": "^10.45|^11.0|^12.0",
  1819. "illuminate/database": "^10.45|^11.0|^12.0",
  1820. "illuminate/support": "^10.45|^11.0|^12.0",
  1821. "league/csv": "^9.16",
  1822. "openspout/openspout": "^4.23",
  1823. "php": "^8.1",
  1824. "spatie/laravel-package-tools": "^1.9"
  1825. },
  1826. "type": "library",
  1827. "extra": {
  1828. "laravel": {
  1829. "providers": [
  1830. "Filament\\Actions\\ActionsServiceProvider"
  1831. ]
  1832. }
  1833. },
  1834. "autoload": {
  1835. "psr-4": {
  1836. "Filament\\Actions\\": "src"
  1837. }
  1838. },
  1839. "notification-url": "https://packagist.org/downloads/",
  1840. "license": [
  1841. "MIT"
  1842. ],
  1843. "description": "Easily add beautiful action modals to any Livewire component.",
  1844. "homepage": "https://github.com/filamentphp/filament",
  1845. "support": {
  1846. "issues": "https://github.com/filamentphp/filament/issues",
  1847. "source": "https://github.com/filamentphp/filament"
  1848. },
  1849. "time": "2025-07-16T08:51:11+00:00"
  1850. },
  1851. {
  1852. "name": "filament/filament",
  1853. "version": "v3.3.37",
  1854. "source": {
  1855. "type": "git",
  1856. "url": "https://github.com/filamentphp/panels.git",
  1857. "reference": "6f460f7f5146217b71fc242b288f908fa58c9131"
  1858. },
  1859. "dist": {
  1860. "type": "zip",
  1861. "url": "https://api.github.com/repos/filamentphp/panels/zipball/6f460f7f5146217b71fc242b288f908fa58c9131",
  1862. "reference": "6f460f7f5146217b71fc242b288f908fa58c9131",
  1863. "shasum": ""
  1864. },
  1865. "require": {
  1866. "danharrin/livewire-rate-limiting": "^0.3|^1.0|^2.0",
  1867. "filament/actions": "self.version",
  1868. "filament/forms": "self.version",
  1869. "filament/infolists": "self.version",
  1870. "filament/notifications": "self.version",
  1871. "filament/support": "self.version",
  1872. "filament/tables": "self.version",
  1873. "filament/widgets": "self.version",
  1874. "illuminate/auth": "^10.45|^11.0|^12.0",
  1875. "illuminate/console": "^10.45|^11.0|^12.0",
  1876. "illuminate/contracts": "^10.45|^11.0|^12.0",
  1877. "illuminate/cookie": "^10.45|^11.0|^12.0",
  1878. "illuminate/database": "^10.45|^11.0|^12.0",
  1879. "illuminate/http": "^10.45|^11.0|^12.0",
  1880. "illuminate/routing": "^10.45|^11.0|^12.0",
  1881. "illuminate/session": "^10.45|^11.0|^12.0",
  1882. "illuminate/support": "^10.45|^11.0|^12.0",
  1883. "illuminate/view": "^10.45|^11.0|^12.0",
  1884. "php": "^8.1",
  1885. "spatie/laravel-package-tools": "^1.9"
  1886. },
  1887. "type": "library",
  1888. "extra": {
  1889. "laravel": {
  1890. "providers": [
  1891. "Filament\\FilamentServiceProvider"
  1892. ]
  1893. }
  1894. },
  1895. "autoload": {
  1896. "files": [
  1897. "src/global_helpers.php",
  1898. "src/helpers.php"
  1899. ],
  1900. "psr-4": {
  1901. "Filament\\": "src"
  1902. }
  1903. },
  1904. "notification-url": "https://packagist.org/downloads/",
  1905. "license": [
  1906. "MIT"
  1907. ],
  1908. "description": "A collection of full-stack components for accelerated Laravel app development.",
  1909. "homepage": "https://github.com/filamentphp/filament",
  1910. "support": {
  1911. "issues": "https://github.com/filamentphp/filament/issues",
  1912. "source": "https://github.com/filamentphp/filament"
  1913. },
  1914. "time": "2025-08-12T13:15:51+00:00"
  1915. },
  1916. {
  1917. "name": "filament/forms",
  1918. "version": "v3.3.37",
  1919. "source": {
  1920. "type": "git",
  1921. "url": "https://github.com/filamentphp/forms.git",
  1922. "reference": "5cb8623735691d65b9a08c43be9b4431b017c51a"
  1923. },
  1924. "dist": {
  1925. "type": "zip",
  1926. "url": "https://api.github.com/repos/filamentphp/forms/zipball/5cb8623735691d65b9a08c43be9b4431b017c51a",
  1927. "reference": "5cb8623735691d65b9a08c43be9b4431b017c51a",
  1928. "shasum": ""
  1929. },
  1930. "require": {
  1931. "danharrin/date-format-converter": "^0.3",
  1932. "filament/actions": "self.version",
  1933. "filament/support": "self.version",
  1934. "illuminate/console": "^10.45|^11.0|^12.0",
  1935. "illuminate/contracts": "^10.45|^11.0|^12.0",
  1936. "illuminate/database": "^10.45|^11.0|^12.0",
  1937. "illuminate/filesystem": "^10.45|^11.0|^12.0",
  1938. "illuminate/support": "^10.45|^11.0|^12.0",
  1939. "illuminate/validation": "^10.45|^11.0|^12.0",
  1940. "illuminate/view": "^10.45|^11.0|^12.0",
  1941. "php": "^8.1",
  1942. "spatie/laravel-package-tools": "^1.9"
  1943. },
  1944. "type": "library",
  1945. "extra": {
  1946. "laravel": {
  1947. "providers": [
  1948. "Filament\\Forms\\FormsServiceProvider"
  1949. ]
  1950. }
  1951. },
  1952. "autoload": {
  1953. "files": [
  1954. "src/helpers.php"
  1955. ],
  1956. "psr-4": {
  1957. "Filament\\Forms\\": "src"
  1958. }
  1959. },
  1960. "notification-url": "https://packagist.org/downloads/",
  1961. "license": [
  1962. "MIT"
  1963. ],
  1964. "description": "Easily add beautiful forms to any Livewire component.",
  1965. "homepage": "https://github.com/filamentphp/filament",
  1966. "support": {
  1967. "issues": "https://github.com/filamentphp/filament/issues",
  1968. "source": "https://github.com/filamentphp/filament"
  1969. },
  1970. "time": "2025-08-18T11:12:37+00:00"
  1971. },
  1972. {
  1973. "name": "filament/infolists",
  1974. "version": "v3.3.37",
  1975. "source": {
  1976. "type": "git",
  1977. "url": "https://github.com/filamentphp/infolists.git",
  1978. "reference": "4533c2ccb6ef06ab7f27d81e27be0cdd4f5e72de"
  1979. },
  1980. "dist": {
  1981. "type": "zip",
  1982. "url": "https://api.github.com/repos/filamentphp/infolists/zipball/4533c2ccb6ef06ab7f27d81e27be0cdd4f5e72de",
  1983. "reference": "4533c2ccb6ef06ab7f27d81e27be0cdd4f5e72de",
  1984. "shasum": ""
  1985. },
  1986. "require": {
  1987. "filament/actions": "self.version",
  1988. "filament/support": "self.version",
  1989. "illuminate/console": "^10.45|^11.0|^12.0",
  1990. "illuminate/contracts": "^10.45|^11.0|^12.0",
  1991. "illuminate/database": "^10.45|^11.0|^12.0",
  1992. "illuminate/filesystem": "^10.45|^11.0|^12.0",
  1993. "illuminate/support": "^10.45|^11.0|^12.0",
  1994. "illuminate/view": "^10.45|^11.0|^12.0",
  1995. "php": "^8.1",
  1996. "spatie/laravel-package-tools": "^1.9"
  1997. },
  1998. "type": "library",
  1999. "extra": {
  2000. "laravel": {
  2001. "providers": [
  2002. "Filament\\Infolists\\InfolistsServiceProvider"
  2003. ]
  2004. }
  2005. },
  2006. "autoload": {
  2007. "psr-4": {
  2008. "Filament\\Infolists\\": "src"
  2009. }
  2010. },
  2011. "notification-url": "https://packagist.org/downloads/",
  2012. "license": [
  2013. "MIT"
  2014. ],
  2015. "description": "Easily add beautiful read-only infolists to any Livewire component.",
  2016. "homepage": "https://github.com/filamentphp/filament",
  2017. "support": {
  2018. "issues": "https://github.com/filamentphp/filament/issues",
  2019. "source": "https://github.com/filamentphp/filament"
  2020. },
  2021. "time": "2025-08-12T13:15:27+00:00"
  2022. },
  2023. {
  2024. "name": "filament/notifications",
  2025. "version": "v3.3.37",
  2026. "source": {
  2027. "type": "git",
  2028. "url": "https://github.com/filamentphp/notifications.git",
  2029. "reference": "adc118c7fc34a423f3c01d6936ad0316f489949c"
  2030. },
  2031. "dist": {
  2032. "type": "zip",
  2033. "url": "https://api.github.com/repos/filamentphp/notifications/zipball/adc118c7fc34a423f3c01d6936ad0316f489949c",
  2034. "reference": "adc118c7fc34a423f3c01d6936ad0316f489949c",
  2035. "shasum": ""
  2036. },
  2037. "require": {
  2038. "filament/actions": "self.version",
  2039. "filament/support": "self.version",
  2040. "illuminate/contracts": "^10.45|^11.0|^12.0",
  2041. "illuminate/filesystem": "^10.45|^11.0|^12.0",
  2042. "illuminate/notifications": "^10.45|^11.0|^12.0",
  2043. "illuminate/support": "^10.45|^11.0|^12.0",
  2044. "php": "^8.1",
  2045. "spatie/laravel-package-tools": "^1.9"
  2046. },
  2047. "type": "library",
  2048. "extra": {
  2049. "laravel": {
  2050. "providers": [
  2051. "Filament\\Notifications\\NotificationsServiceProvider"
  2052. ]
  2053. }
  2054. },
  2055. "autoload": {
  2056. "files": [
  2057. "src/Testing/Autoload.php"
  2058. ],
  2059. "psr-4": {
  2060. "Filament\\Notifications\\": "src"
  2061. }
  2062. },
  2063. "notification-url": "https://packagist.org/downloads/",
  2064. "license": [
  2065. "MIT"
  2066. ],
  2067. "description": "Easily add beautiful notifications to any Livewire app.",
  2068. "homepage": "https://github.com/filamentphp/filament",
  2069. "support": {
  2070. "issues": "https://github.com/filamentphp/filament/issues",
  2071. "source": "https://github.com/filamentphp/filament"
  2072. },
  2073. "time": "2025-07-08T20:42:18+00:00"
  2074. },
  2075. {
  2076. "name": "filament/support",
  2077. "version": "v3.3.37",
  2078. "source": {
  2079. "type": "git",
  2080. "url": "https://github.com/filamentphp/support.git",
  2081. "reference": "afafd5e7a2f8cf052f70f989b52d82d0a1df5c78"
  2082. },
  2083. "dist": {
  2084. "type": "zip",
  2085. "url": "https://api.github.com/repos/filamentphp/support/zipball/afafd5e7a2f8cf052f70f989b52d82d0a1df5c78",
  2086. "reference": "afafd5e7a2f8cf052f70f989b52d82d0a1df5c78",
  2087. "shasum": ""
  2088. },
  2089. "require": {
  2090. "blade-ui-kit/blade-heroicons": "^2.5",
  2091. "doctrine/dbal": "^3.2|^4.0",
  2092. "ext-intl": "*",
  2093. "illuminate/contracts": "^10.45|^11.0|^12.0",
  2094. "illuminate/support": "^10.45|^11.0|^12.0",
  2095. "illuminate/view": "^10.45|^11.0|^12.0",
  2096. "kirschbaum-development/eloquent-power-joins": "^3.0|^4.0",
  2097. "livewire/livewire": "^3.5",
  2098. "php": "^8.1",
  2099. "ryangjchandler/blade-capture-directive": "^0.2|^0.3|^1.0",
  2100. "spatie/color": "^1.5",
  2101. "spatie/invade": "^1.0|^2.0",
  2102. "spatie/laravel-package-tools": "^1.9",
  2103. "symfony/console": "^6.0|^7.0",
  2104. "symfony/html-sanitizer": "^6.1|^7.0"
  2105. },
  2106. "type": "library",
  2107. "extra": {
  2108. "laravel": {
  2109. "providers": [
  2110. "Filament\\Support\\SupportServiceProvider"
  2111. ]
  2112. }
  2113. },
  2114. "autoload": {
  2115. "files": [
  2116. "src/helpers.php"
  2117. ],
  2118. "psr-4": {
  2119. "Filament\\Support\\": "src"
  2120. }
  2121. },
  2122. "notification-url": "https://packagist.org/downloads/",
  2123. "license": [
  2124. "MIT"
  2125. ],
  2126. "description": "Core helper methods and foundation code for all Filament packages.",
  2127. "homepage": "https://github.com/filamentphp/filament",
  2128. "support": {
  2129. "issues": "https://github.com/filamentphp/filament/issues",
  2130. "source": "https://github.com/filamentphp/filament"
  2131. },
  2132. "time": "2025-08-12T13:15:44+00:00"
  2133. },
  2134. {
  2135. "name": "filament/tables",
  2136. "version": "v3.3.37",
  2137. "source": {
  2138. "type": "git",
  2139. "url": "https://github.com/filamentphp/tables.git",
  2140. "reference": "20ce6217382785df7b39b8473644c1bfe967963c"
  2141. },
  2142. "dist": {
  2143. "type": "zip",
  2144. "url": "https://api.github.com/repos/filamentphp/tables/zipball/20ce6217382785df7b39b8473644c1bfe967963c",
  2145. "reference": "20ce6217382785df7b39b8473644c1bfe967963c",
  2146. "shasum": ""
  2147. },
  2148. "require": {
  2149. "filament/actions": "self.version",
  2150. "filament/forms": "self.version",
  2151. "filament/support": "self.version",
  2152. "illuminate/console": "^10.45|^11.0|^12.0",
  2153. "illuminate/contracts": "^10.45|^11.0|^12.0",
  2154. "illuminate/database": "^10.45|^11.0|^12.0",
  2155. "illuminate/filesystem": "^10.45|^11.0|^12.0",
  2156. "illuminate/support": "^10.45|^11.0|^12.0",
  2157. "illuminate/view": "^10.45|^11.0|^12.0",
  2158. "php": "^8.1",
  2159. "spatie/laravel-package-tools": "^1.9"
  2160. },
  2161. "type": "library",
  2162. "extra": {
  2163. "laravel": {
  2164. "providers": [
  2165. "Filament\\Tables\\TablesServiceProvider"
  2166. ]
  2167. }
  2168. },
  2169. "autoload": {
  2170. "psr-4": {
  2171. "Filament\\Tables\\": "src"
  2172. }
  2173. },
  2174. "notification-url": "https://packagist.org/downloads/",
  2175. "license": [
  2176. "MIT"
  2177. ],
  2178. "description": "Easily add beautiful tables to any Livewire component.",
  2179. "homepage": "https://github.com/filamentphp/filament",
  2180. "support": {
  2181. "issues": "https://github.com/filamentphp/filament/issues",
  2182. "source": "https://github.com/filamentphp/filament"
  2183. },
  2184. "time": "2025-08-12T13:15:31+00:00"
  2185. },
  2186. {
  2187. "name": "filament/widgets",
  2188. "version": "v3.3.37",
  2189. "source": {
  2190. "type": "git",
  2191. "url": "https://github.com/filamentphp/widgets.git",
  2192. "reference": "5b956f884aaef479f6091463cb829e7c9f2afc2c"
  2193. },
  2194. "dist": {
  2195. "type": "zip",
  2196. "url": "https://api.github.com/repos/filamentphp/widgets/zipball/5b956f884aaef479f6091463cb829e7c9f2afc2c",
  2197. "reference": "5b956f884aaef479f6091463cb829e7c9f2afc2c",
  2198. "shasum": ""
  2199. },
  2200. "require": {
  2201. "filament/support": "self.version",
  2202. "php": "^8.1",
  2203. "spatie/laravel-package-tools": "^1.9"
  2204. },
  2205. "type": "library",
  2206. "extra": {
  2207. "laravel": {
  2208. "providers": [
  2209. "Filament\\Widgets\\WidgetsServiceProvider"
  2210. ]
  2211. }
  2212. },
  2213. "autoload": {
  2214. "psr-4": {
  2215. "Filament\\Widgets\\": "src"
  2216. }
  2217. },
  2218. "notification-url": "https://packagist.org/downloads/",
  2219. "license": [
  2220. "MIT"
  2221. ],
  2222. "description": "Easily add beautiful dashboard widgets to any Livewire component.",
  2223. "homepage": "https://github.com/filamentphp/filament",
  2224. "support": {
  2225. "issues": "https://github.com/filamentphp/filament/issues",
  2226. "source": "https://github.com/filamentphp/filament"
  2227. },
  2228. "time": "2025-06-12T15:11:14+00:00"
  2229. },
  2230. {
  2231. "name": "firebase/php-jwt",
  2232. "version": "v6.11.1",
  2233. "source": {
  2234. "type": "git",
  2235. "url": "https://github.com/firebase/php-jwt.git",
  2236. "reference": "d1e91ecf8c598d073d0995afa8cd5c75c6e19e66"
  2237. },
  2238. "dist": {
  2239. "type": "zip",
  2240. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/d1e91ecf8c598d073d0995afa8cd5c75c6e19e66",
  2241. "reference": "d1e91ecf8c598d073d0995afa8cd5c75c6e19e66",
  2242. "shasum": ""
  2243. },
  2244. "require": {
  2245. "php": "^8.0"
  2246. },
  2247. "require-dev": {
  2248. "guzzlehttp/guzzle": "^7.4",
  2249. "phpspec/prophecy-phpunit": "^2.0",
  2250. "phpunit/phpunit": "^9.5",
  2251. "psr/cache": "^2.0||^3.0",
  2252. "psr/http-client": "^1.0",
  2253. "psr/http-factory": "^1.0"
  2254. },
  2255. "suggest": {
  2256. "ext-sodium": "Support EdDSA (Ed25519) signatures",
  2257. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  2258. },
  2259. "type": "library",
  2260. "autoload": {
  2261. "psr-4": {
  2262. "Firebase\\JWT\\": "src"
  2263. }
  2264. },
  2265. "notification-url": "https://packagist.org/downloads/",
  2266. "license": [
  2267. "BSD-3-Clause"
  2268. ],
  2269. "authors": [
  2270. {
  2271. "name": "Neuman Vong",
  2272. "email": "neuman+pear@twilio.com",
  2273. "role": "Developer"
  2274. },
  2275. {
  2276. "name": "Anant Narayanan",
  2277. "email": "anant@php.net",
  2278. "role": "Developer"
  2279. }
  2280. ],
  2281. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  2282. "homepage": "https://github.com/firebase/php-jwt",
  2283. "keywords": [
  2284. "jwt",
  2285. "php"
  2286. ],
  2287. "support": {
  2288. "issues": "https://github.com/firebase/php-jwt/issues",
  2289. "source": "https://github.com/firebase/php-jwt/tree/v6.11.1"
  2290. },
  2291. "time": "2025-04-09T20:32:01+00:00"
  2292. },
  2293. {
  2294. "name": "fruitcake/php-cors",
  2295. "version": "v1.3.0",
  2296. "source": {
  2297. "type": "git",
  2298. "url": "https://github.com/fruitcake/php-cors.git",
  2299. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b"
  2300. },
  2301. "dist": {
  2302. "type": "zip",
  2303. "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/3d158f36e7875e2f040f37bc0573956240a5a38b",
  2304. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b",
  2305. "shasum": ""
  2306. },
  2307. "require": {
  2308. "php": "^7.4|^8.0",
  2309. "symfony/http-foundation": "^4.4|^5.4|^6|^7"
  2310. },
  2311. "require-dev": {
  2312. "phpstan/phpstan": "^1.4",
  2313. "phpunit/phpunit": "^9",
  2314. "squizlabs/php_codesniffer": "^3.5"
  2315. },
  2316. "type": "library",
  2317. "extra": {
  2318. "branch-alias": {
  2319. "dev-master": "1.2-dev"
  2320. }
  2321. },
  2322. "autoload": {
  2323. "psr-4": {
  2324. "Fruitcake\\Cors\\": "src/"
  2325. }
  2326. },
  2327. "notification-url": "https://packagist.org/downloads/",
  2328. "license": [
  2329. "MIT"
  2330. ],
  2331. "authors": [
  2332. {
  2333. "name": "Fruitcake",
  2334. "homepage": "https://fruitcake.nl"
  2335. },
  2336. {
  2337. "name": "Barryvdh",
  2338. "email": "barryvdh@gmail.com"
  2339. }
  2340. ],
  2341. "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
  2342. "homepage": "https://github.com/fruitcake/php-cors",
  2343. "keywords": [
  2344. "cors",
  2345. "laravel",
  2346. "symfony"
  2347. ],
  2348. "support": {
  2349. "issues": "https://github.com/fruitcake/php-cors/issues",
  2350. "source": "https://github.com/fruitcake/php-cors/tree/v1.3.0"
  2351. },
  2352. "funding": [
  2353. {
  2354. "url": "https://fruitcake.nl",
  2355. "type": "custom"
  2356. },
  2357. {
  2358. "url": "https://github.com/barryvdh",
  2359. "type": "github"
  2360. }
  2361. ],
  2362. "time": "2023-10-12T05:21:21+00:00"
  2363. },
  2364. {
  2365. "name": "graham-campbell/result-type",
  2366. "version": "v1.1.3",
  2367. "source": {
  2368. "type": "git",
  2369. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  2370. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945"
  2371. },
  2372. "dist": {
  2373. "type": "zip",
  2374. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945",
  2375. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945",
  2376. "shasum": ""
  2377. },
  2378. "require": {
  2379. "php": "^7.2.5 || ^8.0",
  2380. "phpoption/phpoption": "^1.9.3"
  2381. },
  2382. "require-dev": {
  2383. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  2384. },
  2385. "type": "library",
  2386. "autoload": {
  2387. "psr-4": {
  2388. "GrahamCampbell\\ResultType\\": "src/"
  2389. }
  2390. },
  2391. "notification-url": "https://packagist.org/downloads/",
  2392. "license": [
  2393. "MIT"
  2394. ],
  2395. "authors": [
  2396. {
  2397. "name": "Graham Campbell",
  2398. "email": "hello@gjcampbell.co.uk",
  2399. "homepage": "https://github.com/GrahamCampbell"
  2400. }
  2401. ],
  2402. "description": "An Implementation Of The Result Type",
  2403. "keywords": [
  2404. "Graham Campbell",
  2405. "GrahamCampbell",
  2406. "Result Type",
  2407. "Result-Type",
  2408. "result"
  2409. ],
  2410. "support": {
  2411. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  2412. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3"
  2413. },
  2414. "funding": [
  2415. {
  2416. "url": "https://github.com/GrahamCampbell",
  2417. "type": "github"
  2418. },
  2419. {
  2420. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  2421. "type": "tidelift"
  2422. }
  2423. ],
  2424. "time": "2024-07-20T21:45:45+00:00"
  2425. },
  2426. {
  2427. "name": "guava/filament-clusters",
  2428. "version": "1.5.0",
  2429. "source": {
  2430. "type": "git",
  2431. "url": "https://github.com/GuavaCZ/filament-clusters.git",
  2432. "reference": "fda54d83b2141813e79578fdd6ac56e8b3ea6884"
  2433. },
  2434. "dist": {
  2435. "type": "zip",
  2436. "url": "https://api.github.com/repos/GuavaCZ/filament-clusters/zipball/fda54d83b2141813e79578fdd6ac56e8b3ea6884",
  2437. "reference": "fda54d83b2141813e79578fdd6ac56e8b3ea6884",
  2438. "shasum": ""
  2439. },
  2440. "require": {
  2441. "filament/filament": "^3.0",
  2442. "illuminate/contracts": "^10.0 | ^11.0 | ^12.0",
  2443. "php": "^8.1",
  2444. "spatie/laravel-package-tools": "^1.14.0"
  2445. },
  2446. "require-dev": {
  2447. "laravel/pint": "^1.0",
  2448. "nunomaduro/collision": "^7.8",
  2449. "nunomaduro/larastan": "^2.0.1",
  2450. "orchestra/testbench": "^8.8 | ^10.0",
  2451. "pestphp/pest": "^2.0 | ^3.7",
  2452. "pestphp/pest-plugin-arch": "^2.0 | ^3.0",
  2453. "pestphp/pest-plugin-laravel": "^2.0 | ^3.1",
  2454. "phpstan/extension-installer": "^1.1",
  2455. "phpstan/phpstan-deprecation-rules": "^1.0 | ^2.0",
  2456. "phpstan/phpstan-phpunit": "^1.0 | ^2.0"
  2457. },
  2458. "type": "library",
  2459. "extra": {
  2460. "laravel": {
  2461. "providers": [
  2462. "Guava\\FilamentClusters\\FilamentClustersServiceProvider"
  2463. ]
  2464. }
  2465. },
  2466. "autoload": {
  2467. "psr-4": {
  2468. "Guava\\FilamentClusters\\": "src/"
  2469. }
  2470. },
  2471. "notification-url": "https://packagist.org/downloads/",
  2472. "license": [
  2473. "MIT"
  2474. ],
  2475. "authors": [
  2476. {
  2477. "name": "Lukas Frey",
  2478. "email": "lukas.frey@guava.cz",
  2479. "role": "Developer"
  2480. }
  2481. ],
  2482. "description": "Filament clusters allow you to cluster multiple fields into one visually.",
  2483. "homepage": "https://github.com/GuavaCZ/filament-clusters",
  2484. "keywords": [
  2485. "Guava",
  2486. "filament-clusters",
  2487. "laravel"
  2488. ],
  2489. "support": {
  2490. "issues": "https://github.com/GuavaCZ/filament-clusters/issues",
  2491. "source": "https://github.com/GuavaCZ/filament-clusters/tree/1.5.0"
  2492. },
  2493. "funding": [
  2494. {
  2495. "url": "https://github.com/GuavaCZ",
  2496. "type": "github"
  2497. }
  2498. ],
  2499. "time": "2025-02-25T13:48:00+00:00"
  2500. },
  2501. {
  2502. "name": "guzzlehttp/guzzle",
  2503. "version": "7.9.3",
  2504. "source": {
  2505. "type": "git",
  2506. "url": "https://github.com/guzzle/guzzle.git",
  2507. "reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77"
  2508. },
  2509. "dist": {
  2510. "type": "zip",
  2511. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/7b2f29fe81dc4da0ca0ea7d42107a0845946ea77",
  2512. "reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77",
  2513. "shasum": ""
  2514. },
  2515. "require": {
  2516. "ext-json": "*",
  2517. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  2518. "guzzlehttp/psr7": "^2.7.0",
  2519. "php": "^7.2.5 || ^8.0",
  2520. "psr/http-client": "^1.0",
  2521. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  2522. },
  2523. "provide": {
  2524. "psr/http-client-implementation": "1.0"
  2525. },
  2526. "require-dev": {
  2527. "bamarni/composer-bin-plugin": "^1.8.2",
  2528. "ext-curl": "*",
  2529. "guzzle/client-integration-tests": "3.0.2",
  2530. "php-http/message-factory": "^1.1",
  2531. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  2532. "psr/log": "^1.1 || ^2.0 || ^3.0"
  2533. },
  2534. "suggest": {
  2535. "ext-curl": "Required for CURL handler support",
  2536. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  2537. "psr/log": "Required for using the Log middleware"
  2538. },
  2539. "type": "library",
  2540. "extra": {
  2541. "bamarni-bin": {
  2542. "bin-links": true,
  2543. "forward-command": false
  2544. }
  2545. },
  2546. "autoload": {
  2547. "files": [
  2548. "src/functions_include.php"
  2549. ],
  2550. "psr-4": {
  2551. "GuzzleHttp\\": "src/"
  2552. }
  2553. },
  2554. "notification-url": "https://packagist.org/downloads/",
  2555. "license": [
  2556. "MIT"
  2557. ],
  2558. "authors": [
  2559. {
  2560. "name": "Graham Campbell",
  2561. "email": "hello@gjcampbell.co.uk",
  2562. "homepage": "https://github.com/GrahamCampbell"
  2563. },
  2564. {
  2565. "name": "Michael Dowling",
  2566. "email": "mtdowling@gmail.com",
  2567. "homepage": "https://github.com/mtdowling"
  2568. },
  2569. {
  2570. "name": "Jeremy Lindblom",
  2571. "email": "jeremeamia@gmail.com",
  2572. "homepage": "https://github.com/jeremeamia"
  2573. },
  2574. {
  2575. "name": "George Mponos",
  2576. "email": "gmponos@gmail.com",
  2577. "homepage": "https://github.com/gmponos"
  2578. },
  2579. {
  2580. "name": "Tobias Nyholm",
  2581. "email": "tobias.nyholm@gmail.com",
  2582. "homepage": "https://github.com/Nyholm"
  2583. },
  2584. {
  2585. "name": "Márk Sági-Kazár",
  2586. "email": "mark.sagikazar@gmail.com",
  2587. "homepage": "https://github.com/sagikazarmark"
  2588. },
  2589. {
  2590. "name": "Tobias Schultze",
  2591. "email": "webmaster@tubo-world.de",
  2592. "homepage": "https://github.com/Tobion"
  2593. }
  2594. ],
  2595. "description": "Guzzle is a PHP HTTP client library",
  2596. "keywords": [
  2597. "client",
  2598. "curl",
  2599. "framework",
  2600. "http",
  2601. "http client",
  2602. "psr-18",
  2603. "psr-7",
  2604. "rest",
  2605. "web service"
  2606. ],
  2607. "support": {
  2608. "issues": "https://github.com/guzzle/guzzle/issues",
  2609. "source": "https://github.com/guzzle/guzzle/tree/7.9.3"
  2610. },
  2611. "funding": [
  2612. {
  2613. "url": "https://github.com/GrahamCampbell",
  2614. "type": "github"
  2615. },
  2616. {
  2617. "url": "https://github.com/Nyholm",
  2618. "type": "github"
  2619. },
  2620. {
  2621. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  2622. "type": "tidelift"
  2623. }
  2624. ],
  2625. "time": "2025-03-27T13:37:11+00:00"
  2626. },
  2627. {
  2628. "name": "guzzlehttp/promises",
  2629. "version": "2.3.0",
  2630. "source": {
  2631. "type": "git",
  2632. "url": "https://github.com/guzzle/promises.git",
  2633. "reference": "481557b130ef3790cf82b713667b43030dc9c957"
  2634. },
  2635. "dist": {
  2636. "type": "zip",
  2637. "url": "https://api.github.com/repos/guzzle/promises/zipball/481557b130ef3790cf82b713667b43030dc9c957",
  2638. "reference": "481557b130ef3790cf82b713667b43030dc9c957",
  2639. "shasum": ""
  2640. },
  2641. "require": {
  2642. "php": "^7.2.5 || ^8.0"
  2643. },
  2644. "require-dev": {
  2645. "bamarni/composer-bin-plugin": "^1.8.2",
  2646. "phpunit/phpunit": "^8.5.44 || ^9.6.25"
  2647. },
  2648. "type": "library",
  2649. "extra": {
  2650. "bamarni-bin": {
  2651. "bin-links": true,
  2652. "forward-command": false
  2653. }
  2654. },
  2655. "autoload": {
  2656. "psr-4": {
  2657. "GuzzleHttp\\Promise\\": "src/"
  2658. }
  2659. },
  2660. "notification-url": "https://packagist.org/downloads/",
  2661. "license": [
  2662. "MIT"
  2663. ],
  2664. "authors": [
  2665. {
  2666. "name": "Graham Campbell",
  2667. "email": "hello@gjcampbell.co.uk",
  2668. "homepage": "https://github.com/GrahamCampbell"
  2669. },
  2670. {
  2671. "name": "Michael Dowling",
  2672. "email": "mtdowling@gmail.com",
  2673. "homepage": "https://github.com/mtdowling"
  2674. },
  2675. {
  2676. "name": "Tobias Nyholm",
  2677. "email": "tobias.nyholm@gmail.com",
  2678. "homepage": "https://github.com/Nyholm"
  2679. },
  2680. {
  2681. "name": "Tobias Schultze",
  2682. "email": "webmaster@tubo-world.de",
  2683. "homepage": "https://github.com/Tobion"
  2684. }
  2685. ],
  2686. "description": "Guzzle promises library",
  2687. "keywords": [
  2688. "promise"
  2689. ],
  2690. "support": {
  2691. "issues": "https://github.com/guzzle/promises/issues",
  2692. "source": "https://github.com/guzzle/promises/tree/2.3.0"
  2693. },
  2694. "funding": [
  2695. {
  2696. "url": "https://github.com/GrahamCampbell",
  2697. "type": "github"
  2698. },
  2699. {
  2700. "url": "https://github.com/Nyholm",
  2701. "type": "github"
  2702. },
  2703. {
  2704. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  2705. "type": "tidelift"
  2706. }
  2707. ],
  2708. "time": "2025-08-22T14:34:08+00:00"
  2709. },
  2710. {
  2711. "name": "guzzlehttp/psr7",
  2712. "version": "2.8.0",
  2713. "source": {
  2714. "type": "git",
  2715. "url": "https://github.com/guzzle/psr7.git",
  2716. "reference": "21dc724a0583619cd1652f673303492272778051"
  2717. },
  2718. "dist": {
  2719. "type": "zip",
  2720. "url": "https://api.github.com/repos/guzzle/psr7/zipball/21dc724a0583619cd1652f673303492272778051",
  2721. "reference": "21dc724a0583619cd1652f673303492272778051",
  2722. "shasum": ""
  2723. },
  2724. "require": {
  2725. "php": "^7.2.5 || ^8.0",
  2726. "psr/http-factory": "^1.0",
  2727. "psr/http-message": "^1.1 || ^2.0",
  2728. "ralouphie/getallheaders": "^3.0"
  2729. },
  2730. "provide": {
  2731. "psr/http-factory-implementation": "1.0",
  2732. "psr/http-message-implementation": "1.0"
  2733. },
  2734. "require-dev": {
  2735. "bamarni/composer-bin-plugin": "^1.8.2",
  2736. "http-interop/http-factory-tests": "0.9.0",
  2737. "phpunit/phpunit": "^8.5.44 || ^9.6.25"
  2738. },
  2739. "suggest": {
  2740. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  2741. },
  2742. "type": "library",
  2743. "extra": {
  2744. "bamarni-bin": {
  2745. "bin-links": true,
  2746. "forward-command": false
  2747. }
  2748. },
  2749. "autoload": {
  2750. "psr-4": {
  2751. "GuzzleHttp\\Psr7\\": "src/"
  2752. }
  2753. },
  2754. "notification-url": "https://packagist.org/downloads/",
  2755. "license": [
  2756. "MIT"
  2757. ],
  2758. "authors": [
  2759. {
  2760. "name": "Graham Campbell",
  2761. "email": "hello@gjcampbell.co.uk",
  2762. "homepage": "https://github.com/GrahamCampbell"
  2763. },
  2764. {
  2765. "name": "Michael Dowling",
  2766. "email": "mtdowling@gmail.com",
  2767. "homepage": "https://github.com/mtdowling"
  2768. },
  2769. {
  2770. "name": "George Mponos",
  2771. "email": "gmponos@gmail.com",
  2772. "homepage": "https://github.com/gmponos"
  2773. },
  2774. {
  2775. "name": "Tobias Nyholm",
  2776. "email": "tobias.nyholm@gmail.com",
  2777. "homepage": "https://github.com/Nyholm"
  2778. },
  2779. {
  2780. "name": "Márk Sági-Kazár",
  2781. "email": "mark.sagikazar@gmail.com",
  2782. "homepage": "https://github.com/sagikazarmark"
  2783. },
  2784. {
  2785. "name": "Tobias Schultze",
  2786. "email": "webmaster@tubo-world.de",
  2787. "homepage": "https://github.com/Tobion"
  2788. },
  2789. {
  2790. "name": "Márk Sági-Kazár",
  2791. "email": "mark.sagikazar@gmail.com",
  2792. "homepage": "https://sagikazarmark.hu"
  2793. }
  2794. ],
  2795. "description": "PSR-7 message implementation that also provides common utility methods",
  2796. "keywords": [
  2797. "http",
  2798. "message",
  2799. "psr-7",
  2800. "request",
  2801. "response",
  2802. "stream",
  2803. "uri",
  2804. "url"
  2805. ],
  2806. "support": {
  2807. "issues": "https://github.com/guzzle/psr7/issues",
  2808. "source": "https://github.com/guzzle/psr7/tree/2.8.0"
  2809. },
  2810. "funding": [
  2811. {
  2812. "url": "https://github.com/GrahamCampbell",
  2813. "type": "github"
  2814. },
  2815. {
  2816. "url": "https://github.com/Nyholm",
  2817. "type": "github"
  2818. },
  2819. {
  2820. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  2821. "type": "tidelift"
  2822. }
  2823. ],
  2824. "time": "2025-08-23T21:21:41+00:00"
  2825. },
  2826. {
  2827. "name": "guzzlehttp/uri-template",
  2828. "version": "v1.0.5",
  2829. "source": {
  2830. "type": "git",
  2831. "url": "https://github.com/guzzle/uri-template.git",
  2832. "reference": "4f4bbd4e7172148801e76e3decc1e559bdee34e1"
  2833. },
  2834. "dist": {
  2835. "type": "zip",
  2836. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/4f4bbd4e7172148801e76e3decc1e559bdee34e1",
  2837. "reference": "4f4bbd4e7172148801e76e3decc1e559bdee34e1",
  2838. "shasum": ""
  2839. },
  2840. "require": {
  2841. "php": "^7.2.5 || ^8.0",
  2842. "symfony/polyfill-php80": "^1.24"
  2843. },
  2844. "require-dev": {
  2845. "bamarni/composer-bin-plugin": "^1.8.2",
  2846. "phpunit/phpunit": "^8.5.44 || ^9.6.25",
  2847. "uri-template/tests": "1.0.0"
  2848. },
  2849. "type": "library",
  2850. "extra": {
  2851. "bamarni-bin": {
  2852. "bin-links": true,
  2853. "forward-command": false
  2854. }
  2855. },
  2856. "autoload": {
  2857. "psr-4": {
  2858. "GuzzleHttp\\UriTemplate\\": "src"
  2859. }
  2860. },
  2861. "notification-url": "https://packagist.org/downloads/",
  2862. "license": [
  2863. "MIT"
  2864. ],
  2865. "authors": [
  2866. {
  2867. "name": "Graham Campbell",
  2868. "email": "hello@gjcampbell.co.uk",
  2869. "homepage": "https://github.com/GrahamCampbell"
  2870. },
  2871. {
  2872. "name": "Michael Dowling",
  2873. "email": "mtdowling@gmail.com",
  2874. "homepage": "https://github.com/mtdowling"
  2875. },
  2876. {
  2877. "name": "George Mponos",
  2878. "email": "gmponos@gmail.com",
  2879. "homepage": "https://github.com/gmponos"
  2880. },
  2881. {
  2882. "name": "Tobias Nyholm",
  2883. "email": "tobias.nyholm@gmail.com",
  2884. "homepage": "https://github.com/Nyholm"
  2885. }
  2886. ],
  2887. "description": "A polyfill class for uri_template of PHP",
  2888. "keywords": [
  2889. "guzzlehttp",
  2890. "uri-template"
  2891. ],
  2892. "support": {
  2893. "issues": "https://github.com/guzzle/uri-template/issues",
  2894. "source": "https://github.com/guzzle/uri-template/tree/v1.0.5"
  2895. },
  2896. "funding": [
  2897. {
  2898. "url": "https://github.com/GrahamCampbell",
  2899. "type": "github"
  2900. },
  2901. {
  2902. "url": "https://github.com/Nyholm",
  2903. "type": "github"
  2904. },
  2905. {
  2906. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  2907. "type": "tidelift"
  2908. }
  2909. ],
  2910. "time": "2025-08-22T14:27:06+00:00"
  2911. },
  2912. {
  2913. "name": "jaocero/radio-deck",
  2914. "version": "v1.3",
  2915. "source": {
  2916. "type": "git",
  2917. "url": "https://github.com/199ocero/radio-deck.git",
  2918. "reference": "453d25f14a2666dddfa025ab0ada7edf0d47ee25"
  2919. },
  2920. "dist": {
  2921. "type": "zip",
  2922. "url": "https://api.github.com/repos/199ocero/radio-deck/zipball/453d25f14a2666dddfa025ab0ada7edf0d47ee25",
  2923. "reference": "453d25f14a2666dddfa025ab0ada7edf0d47ee25",
  2924. "shasum": ""
  2925. },
  2926. "require": {
  2927. "filament/forms": "^3.0 | ^4.0",
  2928. "illuminate/contracts": "^10.0 | ^11.0 | ^12.0",
  2929. "php": "^8.1",
  2930. "spatie/laravel-package-tools": "^1.15.0"
  2931. },
  2932. "require-dev": {
  2933. "nunomaduro/collision": "^7.9",
  2934. "orchestra/testbench": "^8.0 | ^9.0",
  2935. "pestphp/pest": "^2.0",
  2936. "pestphp/pest-plugin-arch": "^2.0",
  2937. "pestphp/pest-plugin-laravel": "^2.0"
  2938. },
  2939. "type": "library",
  2940. "extra": {
  2941. "laravel": {
  2942. "providers": [
  2943. "JaOcero\\RadioDeck\\RadioDeckServiceProvider"
  2944. ]
  2945. }
  2946. },
  2947. "autoload": {
  2948. "psr-4": {
  2949. "JaOcero\\RadioDeck\\": "src/",
  2950. "JaOcero\\RadioDeck\\Database\\Factories\\": "database/factories/"
  2951. }
  2952. },
  2953. "notification-url": "https://packagist.org/downloads/",
  2954. "license": [
  2955. "MIT"
  2956. ],
  2957. "authors": [
  2958. {
  2959. "name": "Jay-Are Ocero",
  2960. "email": "199ocero@gmail.com",
  2961. "role": "Developer"
  2962. }
  2963. ],
  2964. "description": "Turn filament default radio button into a selectable card with icons, title and description.",
  2965. "homepage": "https://github.com/jaocero/radio-deck",
  2966. "keywords": [
  2967. "filament-form",
  2968. "filament-plugin",
  2969. "filamentphp",
  2970. "jaocero",
  2971. "laravel",
  2972. "radio-deck"
  2973. ],
  2974. "support": {
  2975. "issues": "https://github.com/jaocero/radio-deck/issues",
  2976. "source": "https://github.com/jaocero/radio-deck"
  2977. },
  2978. "funding": [
  2979. {
  2980. "url": "https://github.com/jaocero",
  2981. "type": "github"
  2982. }
  2983. ],
  2984. "time": "2025-08-22T00:45:45+00:00"
  2985. },
  2986. {
  2987. "name": "kirschbaum-development/eloquent-power-joins",
  2988. "version": "4.2.8",
  2989. "source": {
  2990. "type": "git",
  2991. "url": "https://github.com/kirschbaum-development/eloquent-power-joins.git",
  2992. "reference": "d67c7e2efa886d2ef8bb29e86c3ddb9438ac6390"
  2993. },
  2994. "dist": {
  2995. "type": "zip",
  2996. "url": "https://api.github.com/repos/kirschbaum-development/eloquent-power-joins/zipball/d67c7e2efa886d2ef8bb29e86c3ddb9438ac6390",
  2997. "reference": "d67c7e2efa886d2ef8bb29e86c3ddb9438ac6390",
  2998. "shasum": ""
  2999. },
  3000. "require": {
  3001. "illuminate/database": "^11.42|^12.0",
  3002. "illuminate/support": "^11.42|^12.0",
  3003. "php": "^8.2"
  3004. },
  3005. "require-dev": {
  3006. "friendsofphp/php-cs-fixer": "dev-master",
  3007. "laravel/legacy-factories": "^1.0@dev",
  3008. "orchestra/testbench": "^9.0|^10.0",
  3009. "phpunit/phpunit": "^10.0|^11.0"
  3010. },
  3011. "type": "library",
  3012. "extra": {
  3013. "laravel": {
  3014. "providers": [
  3015. "Kirschbaum\\PowerJoins\\PowerJoinsServiceProvider"
  3016. ]
  3017. }
  3018. },
  3019. "autoload": {
  3020. "psr-4": {
  3021. "Kirschbaum\\PowerJoins\\": "src"
  3022. }
  3023. },
  3024. "notification-url": "https://packagist.org/downloads/",
  3025. "license": [
  3026. "MIT"
  3027. ],
  3028. "authors": [
  3029. {
  3030. "name": "Luis Dalmolin",
  3031. "email": "luis.nh@gmail.com",
  3032. "role": "Developer"
  3033. }
  3034. ],
  3035. "description": "The Laravel magic applied to joins.",
  3036. "homepage": "https://github.com/kirschbaum-development/eloquent-power-joins",
  3037. "keywords": [
  3038. "eloquent",
  3039. "join",
  3040. "laravel",
  3041. "mysql"
  3042. ],
  3043. "support": {
  3044. "issues": "https://github.com/kirschbaum-development/eloquent-power-joins/issues",
  3045. "source": "https://github.com/kirschbaum-development/eloquent-power-joins/tree/4.2.8"
  3046. },
  3047. "time": "2025-08-14T18:43:05+00:00"
  3048. },
  3049. {
  3050. "name": "knplabs/knp-snappy",
  3051. "version": "v1.5.1",
  3052. "source": {
  3053. "type": "git",
  3054. "url": "https://github.com/KnpLabs/snappy.git",
  3055. "reference": "3dd138e9e47de91cd2e056c5e6e1a0dd72547ee7"
  3056. },
  3057. "dist": {
  3058. "type": "zip",
  3059. "url": "https://api.github.com/repos/KnpLabs/snappy/zipball/3dd138e9e47de91cd2e056c5e6e1a0dd72547ee7",
  3060. "reference": "3dd138e9e47de91cd2e056c5e6e1a0dd72547ee7",
  3061. "shasum": ""
  3062. },
  3063. "require": {
  3064. "php": ">=8.1",
  3065. "psr/log": "^2.0||^3.0",
  3066. "symfony/process": "^5.0||^6.0||^7.0"
  3067. },
  3068. "require-dev": {
  3069. "friendsofphp/php-cs-fixer": "^3.0",
  3070. "pedrotroller/php-cs-custom-fixer": "^2.19",
  3071. "phpstan/phpstan": "^1.0.0",
  3072. "phpstan/phpstan-phpunit": "^1.0.0",
  3073. "phpunit/phpunit": "^8.5"
  3074. },
  3075. "type": "library",
  3076. "extra": {
  3077. "branch-alias": {
  3078. "dev-master": "1.x-dev"
  3079. }
  3080. },
  3081. "autoload": {
  3082. "psr-4": {
  3083. "Knp\\Snappy\\": "src/Knp/Snappy"
  3084. }
  3085. },
  3086. "notification-url": "https://packagist.org/downloads/",
  3087. "license": [
  3088. "MIT"
  3089. ],
  3090. "authors": [
  3091. {
  3092. "name": "KNP Labs Team",
  3093. "homepage": "http://knplabs.com"
  3094. },
  3095. {
  3096. "name": "Symfony Community",
  3097. "homepage": "http://github.com/KnpLabs/snappy/contributors"
  3098. }
  3099. ],
  3100. "description": "PHP library allowing thumbnail, snapshot or PDF generation from a url or a html page. Wrapper for wkhtmltopdf/wkhtmltoimage.",
  3101. "homepage": "http://github.com/KnpLabs/snappy",
  3102. "keywords": [
  3103. "knp",
  3104. "knplabs",
  3105. "pdf",
  3106. "snapshot",
  3107. "thumbnail",
  3108. "wkhtmltopdf"
  3109. ],
  3110. "support": {
  3111. "issues": "https://github.com/KnpLabs/snappy/issues",
  3112. "source": "https://github.com/KnpLabs/snappy/tree/v1.5.1"
  3113. },
  3114. "time": "2025-01-06T16:53:26+00:00"
  3115. },
  3116. {
  3117. "name": "laravel/framework",
  3118. "version": "v12.25.0",
  3119. "source": {
  3120. "type": "git",
  3121. "url": "https://github.com/laravel/framework.git",
  3122. "reference": "2ee2ba94ae60efd24c7a787cbb1a2f82f714bb20"
  3123. },
  3124. "dist": {
  3125. "type": "zip",
  3126. "url": "https://api.github.com/repos/laravel/framework/zipball/2ee2ba94ae60efd24c7a787cbb1a2f82f714bb20",
  3127. "reference": "2ee2ba94ae60efd24c7a787cbb1a2f82f714bb20",
  3128. "shasum": ""
  3129. },
  3130. "require": {
  3131. "brick/math": "^0.11|^0.12|^0.13",
  3132. "composer-runtime-api": "^2.2",
  3133. "doctrine/inflector": "^2.0.5",
  3134. "dragonmantank/cron-expression": "^3.4",
  3135. "egulias/email-validator": "^3.2.1|^4.0",
  3136. "ext-ctype": "*",
  3137. "ext-filter": "*",
  3138. "ext-hash": "*",
  3139. "ext-mbstring": "*",
  3140. "ext-openssl": "*",
  3141. "ext-session": "*",
  3142. "ext-tokenizer": "*",
  3143. "fruitcake/php-cors": "^1.3",
  3144. "guzzlehttp/guzzle": "^7.8.2",
  3145. "guzzlehttp/uri-template": "^1.0",
  3146. "laravel/prompts": "^0.3.0",
  3147. "laravel/serializable-closure": "^1.3|^2.0",
  3148. "league/commonmark": "^2.7",
  3149. "league/flysystem": "^3.25.1",
  3150. "league/flysystem-local": "^3.25.1",
  3151. "league/uri": "^7.5.1",
  3152. "monolog/monolog": "^3.0",
  3153. "nesbot/carbon": "^3.8.4",
  3154. "nunomaduro/termwind": "^2.0",
  3155. "php": "^8.2",
  3156. "psr/container": "^1.1.1|^2.0.1",
  3157. "psr/log": "^1.0|^2.0|^3.0",
  3158. "psr/simple-cache": "^1.0|^2.0|^3.0",
  3159. "ramsey/uuid": "^4.7",
  3160. "symfony/console": "^7.2.0",
  3161. "symfony/error-handler": "^7.2.0",
  3162. "symfony/finder": "^7.2.0",
  3163. "symfony/http-foundation": "^7.2.0",
  3164. "symfony/http-kernel": "^7.2.0",
  3165. "symfony/mailer": "^7.2.0",
  3166. "symfony/mime": "^7.2.0",
  3167. "symfony/polyfill-php83": "^1.31",
  3168. "symfony/polyfill-php84": "^1.31",
  3169. "symfony/polyfill-php85": "^1.31",
  3170. "symfony/process": "^7.2.0",
  3171. "symfony/routing": "^7.2.0",
  3172. "symfony/uid": "^7.2.0",
  3173. "symfony/var-dumper": "^7.2.0",
  3174. "tijsverkoyen/css-to-inline-styles": "^2.2.5",
  3175. "vlucas/phpdotenv": "^5.6.1",
  3176. "voku/portable-ascii": "^2.0.2"
  3177. },
  3178. "conflict": {
  3179. "tightenco/collect": "<5.5.33"
  3180. },
  3181. "provide": {
  3182. "psr/container-implementation": "1.1|2.0",
  3183. "psr/log-implementation": "1.0|2.0|3.0",
  3184. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  3185. },
  3186. "replace": {
  3187. "illuminate/auth": "self.version",
  3188. "illuminate/broadcasting": "self.version",
  3189. "illuminate/bus": "self.version",
  3190. "illuminate/cache": "self.version",
  3191. "illuminate/collections": "self.version",
  3192. "illuminate/concurrency": "self.version",
  3193. "illuminate/conditionable": "self.version",
  3194. "illuminate/config": "self.version",
  3195. "illuminate/console": "self.version",
  3196. "illuminate/container": "self.version",
  3197. "illuminate/contracts": "self.version",
  3198. "illuminate/cookie": "self.version",
  3199. "illuminate/database": "self.version",
  3200. "illuminate/encryption": "self.version",
  3201. "illuminate/events": "self.version",
  3202. "illuminate/filesystem": "self.version",
  3203. "illuminate/hashing": "self.version",
  3204. "illuminate/http": "self.version",
  3205. "illuminate/log": "self.version",
  3206. "illuminate/macroable": "self.version",
  3207. "illuminate/mail": "self.version",
  3208. "illuminate/notifications": "self.version",
  3209. "illuminate/pagination": "self.version",
  3210. "illuminate/pipeline": "self.version",
  3211. "illuminate/process": "self.version",
  3212. "illuminate/queue": "self.version",
  3213. "illuminate/redis": "self.version",
  3214. "illuminate/routing": "self.version",
  3215. "illuminate/session": "self.version",
  3216. "illuminate/support": "self.version",
  3217. "illuminate/testing": "self.version",
  3218. "illuminate/translation": "self.version",
  3219. "illuminate/validation": "self.version",
  3220. "illuminate/view": "self.version",
  3221. "spatie/once": "*"
  3222. },
  3223. "require-dev": {
  3224. "ably/ably-php": "^1.0",
  3225. "aws/aws-sdk-php": "^3.322.9",
  3226. "ext-gmp": "*",
  3227. "fakerphp/faker": "^1.24",
  3228. "guzzlehttp/promises": "^2.0.3",
  3229. "guzzlehttp/psr7": "^2.4",
  3230. "laravel/pint": "^1.18",
  3231. "league/flysystem-aws-s3-v3": "^3.25.1",
  3232. "league/flysystem-ftp": "^3.25.1",
  3233. "league/flysystem-path-prefixing": "^3.25.1",
  3234. "league/flysystem-read-only": "^3.25.1",
  3235. "league/flysystem-sftp-v3": "^3.25.1",
  3236. "mockery/mockery": "^1.6.10",
  3237. "orchestra/testbench-core": "^10.6.0",
  3238. "pda/pheanstalk": "^5.0.6|^7.0.0",
  3239. "php-http/discovery": "^1.15",
  3240. "phpstan/phpstan": "^2.0",
  3241. "phpunit/phpunit": "^10.5.35|^11.5.3|^12.0.1",
  3242. "predis/predis": "^2.3|^3.0",
  3243. "resend/resend-php": "^0.10.0",
  3244. "symfony/cache": "^7.2.0",
  3245. "symfony/http-client": "^7.2.0",
  3246. "symfony/psr-http-message-bridge": "^7.2.0",
  3247. "symfony/translation": "^7.2.0"
  3248. },
  3249. "suggest": {
  3250. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  3251. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.322.9).",
  3252. "brianium/paratest": "Required to run tests in parallel (^7.0|^8.0).",
  3253. "ext-apcu": "Required to use the APC cache driver.",
  3254. "ext-fileinfo": "Required to use the Filesystem class.",
  3255. "ext-ftp": "Required to use the Flysystem FTP driver.",
  3256. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  3257. "ext-memcached": "Required to use the memcache cache driver.",
  3258. "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.",
  3259. "ext-pdo": "Required to use all database features.",
  3260. "ext-posix": "Required to use all features of the queue worker.",
  3261. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0|^6.0).",
  3262. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  3263. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  3264. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  3265. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.25.1).",
  3266. "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.25.1).",
  3267. "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.25.1).",
  3268. "league/flysystem-read-only": "Required to use read-only disks (^3.25.1)",
  3269. "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.25.1).",
  3270. "mockery/mockery": "Required to use mocking (^1.6).",
  3271. "pda/pheanstalk": "Required to use the beanstalk queue driver (^5.0).",
  3272. "php-http/discovery": "Required to use PSR-7 bridging features (^1.15).",
  3273. "phpunit/phpunit": "Required to use assertions and run tests (^10.5.35|^11.5.3|^12.0.1).",
  3274. "predis/predis": "Required to use the predis connector (^2.3|^3.0).",
  3275. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  3276. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
  3277. "resend/resend-php": "Required to enable support for the Resend mail transport (^0.10.0).",
  3278. "symfony/cache": "Required to PSR-6 cache bridge (^7.2).",
  3279. "symfony/filesystem": "Required to enable support for relative symbolic links (^7.2).",
  3280. "symfony/http-client": "Required to enable support for the Symfony API mail transports (^7.2).",
  3281. "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^7.2).",
  3282. "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^7.2).",
  3283. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^7.2)."
  3284. },
  3285. "type": "library",
  3286. "extra": {
  3287. "branch-alias": {
  3288. "dev-master": "12.x-dev"
  3289. }
  3290. },
  3291. "autoload": {
  3292. "files": [
  3293. "src/Illuminate/Collections/functions.php",
  3294. "src/Illuminate/Collections/helpers.php",
  3295. "src/Illuminate/Events/functions.php",
  3296. "src/Illuminate/Filesystem/functions.php",
  3297. "src/Illuminate/Foundation/helpers.php",
  3298. "src/Illuminate/Log/functions.php",
  3299. "src/Illuminate/Support/functions.php",
  3300. "src/Illuminate/Support/helpers.php"
  3301. ],
  3302. "psr-4": {
  3303. "Illuminate\\": "src/Illuminate/",
  3304. "Illuminate\\Support\\": [
  3305. "src/Illuminate/Macroable/",
  3306. "src/Illuminate/Collections/",
  3307. "src/Illuminate/Conditionable/"
  3308. ]
  3309. }
  3310. },
  3311. "notification-url": "https://packagist.org/downloads/",
  3312. "license": [
  3313. "MIT"
  3314. ],
  3315. "authors": [
  3316. {
  3317. "name": "Taylor Otwell",
  3318. "email": "taylor@laravel.com"
  3319. }
  3320. ],
  3321. "description": "The Laravel Framework.",
  3322. "homepage": "https://laravel.com",
  3323. "keywords": [
  3324. "framework",
  3325. "laravel"
  3326. ],
  3327. "support": {
  3328. "issues": "https://github.com/laravel/framework/issues",
  3329. "source": "https://github.com/laravel/framework"
  3330. },
  3331. "time": "2025-08-18T22:20:52+00:00"
  3332. },
  3333. {
  3334. "name": "laravel/prompts",
  3335. "version": "v0.3.6",
  3336. "source": {
  3337. "type": "git",
  3338. "url": "https://github.com/laravel/prompts.git",
  3339. "reference": "86a8b692e8661d0fb308cec64f3d176821323077"
  3340. },
  3341. "dist": {
  3342. "type": "zip",
  3343. "url": "https://api.github.com/repos/laravel/prompts/zipball/86a8b692e8661d0fb308cec64f3d176821323077",
  3344. "reference": "86a8b692e8661d0fb308cec64f3d176821323077",
  3345. "shasum": ""
  3346. },
  3347. "require": {
  3348. "composer-runtime-api": "^2.2",
  3349. "ext-mbstring": "*",
  3350. "php": "^8.1",
  3351. "symfony/console": "^6.2|^7.0"
  3352. },
  3353. "conflict": {
  3354. "illuminate/console": ">=10.17.0 <10.25.0",
  3355. "laravel/framework": ">=10.17.0 <10.25.0"
  3356. },
  3357. "require-dev": {
  3358. "illuminate/collections": "^10.0|^11.0|^12.0",
  3359. "mockery/mockery": "^1.5",
  3360. "pestphp/pest": "^2.3|^3.4",
  3361. "phpstan/phpstan": "^1.11",
  3362. "phpstan/phpstan-mockery": "^1.1"
  3363. },
  3364. "suggest": {
  3365. "ext-pcntl": "Required for the spinner to be animated."
  3366. },
  3367. "type": "library",
  3368. "extra": {
  3369. "branch-alias": {
  3370. "dev-main": "0.3.x-dev"
  3371. }
  3372. },
  3373. "autoload": {
  3374. "files": [
  3375. "src/helpers.php"
  3376. ],
  3377. "psr-4": {
  3378. "Laravel\\Prompts\\": "src/"
  3379. }
  3380. },
  3381. "notification-url": "https://packagist.org/downloads/",
  3382. "license": [
  3383. "MIT"
  3384. ],
  3385. "description": "Add beautiful and user-friendly forms to your command-line applications.",
  3386. "support": {
  3387. "issues": "https://github.com/laravel/prompts/issues",
  3388. "source": "https://github.com/laravel/prompts/tree/v0.3.6"
  3389. },
  3390. "time": "2025-07-07T14:17:42+00:00"
  3391. },
  3392. {
  3393. "name": "laravel/sanctum",
  3394. "version": "v4.2.0",
  3395. "source": {
  3396. "type": "git",
  3397. "url": "https://github.com/laravel/sanctum.git",
  3398. "reference": "fd6df4f79f48a72992e8d29a9c0ee25422a0d677"
  3399. },
  3400. "dist": {
  3401. "type": "zip",
  3402. "url": "https://api.github.com/repos/laravel/sanctum/zipball/fd6df4f79f48a72992e8d29a9c0ee25422a0d677",
  3403. "reference": "fd6df4f79f48a72992e8d29a9c0ee25422a0d677",
  3404. "shasum": ""
  3405. },
  3406. "require": {
  3407. "ext-json": "*",
  3408. "illuminate/console": "^11.0|^12.0",
  3409. "illuminate/contracts": "^11.0|^12.0",
  3410. "illuminate/database": "^11.0|^12.0",
  3411. "illuminate/support": "^11.0|^12.0",
  3412. "php": "^8.2",
  3413. "symfony/console": "^7.0"
  3414. },
  3415. "require-dev": {
  3416. "mockery/mockery": "^1.6",
  3417. "orchestra/testbench": "^9.0|^10.0",
  3418. "phpstan/phpstan": "^1.10",
  3419. "phpunit/phpunit": "^11.3"
  3420. },
  3421. "type": "library",
  3422. "extra": {
  3423. "laravel": {
  3424. "providers": [
  3425. "Laravel\\Sanctum\\SanctumServiceProvider"
  3426. ]
  3427. }
  3428. },
  3429. "autoload": {
  3430. "psr-4": {
  3431. "Laravel\\Sanctum\\": "src/"
  3432. }
  3433. },
  3434. "notification-url": "https://packagist.org/downloads/",
  3435. "license": [
  3436. "MIT"
  3437. ],
  3438. "authors": [
  3439. {
  3440. "name": "Taylor Otwell",
  3441. "email": "taylor@laravel.com"
  3442. }
  3443. ],
  3444. "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.",
  3445. "keywords": [
  3446. "auth",
  3447. "laravel",
  3448. "sanctum"
  3449. ],
  3450. "support": {
  3451. "issues": "https://github.com/laravel/sanctum/issues",
  3452. "source": "https://github.com/laravel/sanctum"
  3453. },
  3454. "time": "2025-07-09T19:45:24+00:00"
  3455. },
  3456. {
  3457. "name": "laravel/serializable-closure",
  3458. "version": "v2.0.4",
  3459. "source": {
  3460. "type": "git",
  3461. "url": "https://github.com/laravel/serializable-closure.git",
  3462. "reference": "b352cf0534aa1ae6b4d825d1e762e35d43f8a841"
  3463. },
  3464. "dist": {
  3465. "type": "zip",
  3466. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/b352cf0534aa1ae6b4d825d1e762e35d43f8a841",
  3467. "reference": "b352cf0534aa1ae6b4d825d1e762e35d43f8a841",
  3468. "shasum": ""
  3469. },
  3470. "require": {
  3471. "php": "^8.1"
  3472. },
  3473. "require-dev": {
  3474. "illuminate/support": "^10.0|^11.0|^12.0",
  3475. "nesbot/carbon": "^2.67|^3.0",
  3476. "pestphp/pest": "^2.36|^3.0",
  3477. "phpstan/phpstan": "^2.0",
  3478. "symfony/var-dumper": "^6.2.0|^7.0.0"
  3479. },
  3480. "type": "library",
  3481. "extra": {
  3482. "branch-alias": {
  3483. "dev-master": "2.x-dev"
  3484. }
  3485. },
  3486. "autoload": {
  3487. "psr-4": {
  3488. "Laravel\\SerializableClosure\\": "src/"
  3489. }
  3490. },
  3491. "notification-url": "https://packagist.org/downloads/",
  3492. "license": [
  3493. "MIT"
  3494. ],
  3495. "authors": [
  3496. {
  3497. "name": "Taylor Otwell",
  3498. "email": "taylor@laravel.com"
  3499. },
  3500. {
  3501. "name": "Nuno Maduro",
  3502. "email": "nuno@laravel.com"
  3503. }
  3504. ],
  3505. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  3506. "keywords": [
  3507. "closure",
  3508. "laravel",
  3509. "serializable"
  3510. ],
  3511. "support": {
  3512. "issues": "https://github.com/laravel/serializable-closure/issues",
  3513. "source": "https://github.com/laravel/serializable-closure"
  3514. },
  3515. "time": "2025-03-19T13:51:03+00:00"
  3516. },
  3517. {
  3518. "name": "laravel/socialite",
  3519. "version": "v5.23.0",
  3520. "source": {
  3521. "type": "git",
  3522. "url": "https://github.com/laravel/socialite.git",
  3523. "reference": "e9e0fc83b9d8d71c8385a5da20e5b95ca6234cf5"
  3524. },
  3525. "dist": {
  3526. "type": "zip",
  3527. "url": "https://api.github.com/repos/laravel/socialite/zipball/e9e0fc83b9d8d71c8385a5da20e5b95ca6234cf5",
  3528. "reference": "e9e0fc83b9d8d71c8385a5da20e5b95ca6234cf5",
  3529. "shasum": ""
  3530. },
  3531. "require": {
  3532. "ext-json": "*",
  3533. "firebase/php-jwt": "^6.4",
  3534. "guzzlehttp/guzzle": "^6.0|^7.0",
  3535. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  3536. "illuminate/http": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  3537. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  3538. "league/oauth1-client": "^1.11",
  3539. "php": "^7.2|^8.0",
  3540. "phpseclib/phpseclib": "^3.0"
  3541. },
  3542. "require-dev": {
  3543. "mockery/mockery": "^1.0",
  3544. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0|^10.0",
  3545. "phpstan/phpstan": "^1.12.23",
  3546. "phpunit/phpunit": "^8.0|^9.3|^10.4|^11.5"
  3547. },
  3548. "type": "library",
  3549. "extra": {
  3550. "laravel": {
  3551. "aliases": {
  3552. "Socialite": "Laravel\\Socialite\\Facades\\Socialite"
  3553. },
  3554. "providers": [
  3555. "Laravel\\Socialite\\SocialiteServiceProvider"
  3556. ]
  3557. },
  3558. "branch-alias": {
  3559. "dev-master": "5.x-dev"
  3560. }
  3561. },
  3562. "autoload": {
  3563. "psr-4": {
  3564. "Laravel\\Socialite\\": "src/"
  3565. }
  3566. },
  3567. "notification-url": "https://packagist.org/downloads/",
  3568. "license": [
  3569. "MIT"
  3570. ],
  3571. "authors": [
  3572. {
  3573. "name": "Taylor Otwell",
  3574. "email": "taylor@laravel.com"
  3575. }
  3576. ],
  3577. "description": "Laravel wrapper around OAuth 1 & OAuth 2 libraries.",
  3578. "homepage": "https://laravel.com",
  3579. "keywords": [
  3580. "laravel",
  3581. "oauth"
  3582. ],
  3583. "support": {
  3584. "issues": "https://github.com/laravel/socialite/issues",
  3585. "source": "https://github.com/laravel/socialite"
  3586. },
  3587. "time": "2025-07-23T14:16:08+00:00"
  3588. },
  3589. {
  3590. "name": "laravel/tinker",
  3591. "version": "v2.10.1",
  3592. "source": {
  3593. "type": "git",
  3594. "url": "https://github.com/laravel/tinker.git",
  3595. "reference": "22177cc71807d38f2810c6204d8f7183d88a57d3"
  3596. },
  3597. "dist": {
  3598. "type": "zip",
  3599. "url": "https://api.github.com/repos/laravel/tinker/zipball/22177cc71807d38f2810c6204d8f7183d88a57d3",
  3600. "reference": "22177cc71807d38f2810c6204d8f7183d88a57d3",
  3601. "shasum": ""
  3602. },
  3603. "require": {
  3604. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  3605. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  3606. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  3607. "php": "^7.2.5|^8.0",
  3608. "psy/psysh": "^0.11.1|^0.12.0",
  3609. "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0"
  3610. },
  3611. "require-dev": {
  3612. "mockery/mockery": "~1.3.3|^1.4.2",
  3613. "phpstan/phpstan": "^1.10",
  3614. "phpunit/phpunit": "^8.5.8|^9.3.3|^10.0"
  3615. },
  3616. "suggest": {
  3617. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0)."
  3618. },
  3619. "type": "library",
  3620. "extra": {
  3621. "laravel": {
  3622. "providers": [
  3623. "Laravel\\Tinker\\TinkerServiceProvider"
  3624. ]
  3625. }
  3626. },
  3627. "autoload": {
  3628. "psr-4": {
  3629. "Laravel\\Tinker\\": "src/"
  3630. }
  3631. },
  3632. "notification-url": "https://packagist.org/downloads/",
  3633. "license": [
  3634. "MIT"
  3635. ],
  3636. "authors": [
  3637. {
  3638. "name": "Taylor Otwell",
  3639. "email": "taylor@laravel.com"
  3640. }
  3641. ],
  3642. "description": "Powerful REPL for the Laravel framework.",
  3643. "keywords": [
  3644. "REPL",
  3645. "Tinker",
  3646. "laravel",
  3647. "psysh"
  3648. ],
  3649. "support": {
  3650. "issues": "https://github.com/laravel/tinker/issues",
  3651. "source": "https://github.com/laravel/tinker/tree/v2.10.1"
  3652. },
  3653. "time": "2025-01-27T14:24:01+00:00"
  3654. },
  3655. {
  3656. "name": "league/commonmark",
  3657. "version": "2.7.1",
  3658. "source": {
  3659. "type": "git",
  3660. "url": "https://github.com/thephpleague/commonmark.git",
  3661. "reference": "10732241927d3971d28e7ea7b5712721fa2296ca"
  3662. },
  3663. "dist": {
  3664. "type": "zip",
  3665. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/10732241927d3971d28e7ea7b5712721fa2296ca",
  3666. "reference": "10732241927d3971d28e7ea7b5712721fa2296ca",
  3667. "shasum": ""
  3668. },
  3669. "require": {
  3670. "ext-mbstring": "*",
  3671. "league/config": "^1.1.1",
  3672. "php": "^7.4 || ^8.0",
  3673. "psr/event-dispatcher": "^1.0",
  3674. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  3675. "symfony/polyfill-php80": "^1.16"
  3676. },
  3677. "require-dev": {
  3678. "cebe/markdown": "^1.0",
  3679. "commonmark/cmark": "0.31.1",
  3680. "commonmark/commonmark.js": "0.31.1",
  3681. "composer/package-versions-deprecated": "^1.8",
  3682. "embed/embed": "^4.4",
  3683. "erusev/parsedown": "^1.0",
  3684. "ext-json": "*",
  3685. "github/gfm": "0.29.0",
  3686. "michelf/php-markdown": "^1.4 || ^2.0",
  3687. "nyholm/psr7": "^1.5",
  3688. "phpstan/phpstan": "^1.8.2",
  3689. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  3690. "scrutinizer/ocular": "^1.8.1",
  3691. "symfony/finder": "^5.3 | ^6.0 | ^7.0",
  3692. "symfony/process": "^5.4 | ^6.0 | ^7.0",
  3693. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 | ^7.0",
  3694. "unleashedtech/php-coding-standard": "^3.1.1",
  3695. "vimeo/psalm": "^4.24.0 || ^5.0.0 || ^6.0.0"
  3696. },
  3697. "suggest": {
  3698. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  3699. },
  3700. "type": "library",
  3701. "extra": {
  3702. "branch-alias": {
  3703. "dev-main": "2.8-dev"
  3704. }
  3705. },
  3706. "autoload": {
  3707. "psr-4": {
  3708. "League\\CommonMark\\": "src"
  3709. }
  3710. },
  3711. "notification-url": "https://packagist.org/downloads/",
  3712. "license": [
  3713. "BSD-3-Clause"
  3714. ],
  3715. "authors": [
  3716. {
  3717. "name": "Colin O'Dell",
  3718. "email": "colinodell@gmail.com",
  3719. "homepage": "https://www.colinodell.com",
  3720. "role": "Lead Developer"
  3721. }
  3722. ],
  3723. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  3724. "homepage": "https://commonmark.thephpleague.com",
  3725. "keywords": [
  3726. "commonmark",
  3727. "flavored",
  3728. "gfm",
  3729. "github",
  3730. "github-flavored",
  3731. "markdown",
  3732. "md",
  3733. "parser"
  3734. ],
  3735. "support": {
  3736. "docs": "https://commonmark.thephpleague.com/",
  3737. "forum": "https://github.com/thephpleague/commonmark/discussions",
  3738. "issues": "https://github.com/thephpleague/commonmark/issues",
  3739. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  3740. "source": "https://github.com/thephpleague/commonmark"
  3741. },
  3742. "funding": [
  3743. {
  3744. "url": "https://www.colinodell.com/sponsor",
  3745. "type": "custom"
  3746. },
  3747. {
  3748. "url": "https://www.paypal.me/colinpodell/10.00",
  3749. "type": "custom"
  3750. },
  3751. {
  3752. "url": "https://github.com/colinodell",
  3753. "type": "github"
  3754. },
  3755. {
  3756. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  3757. "type": "tidelift"
  3758. }
  3759. ],
  3760. "time": "2025-07-20T12:47:49+00:00"
  3761. },
  3762. {
  3763. "name": "league/config",
  3764. "version": "v1.2.0",
  3765. "source": {
  3766. "type": "git",
  3767. "url": "https://github.com/thephpleague/config.git",
  3768. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  3769. },
  3770. "dist": {
  3771. "type": "zip",
  3772. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  3773. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  3774. "shasum": ""
  3775. },
  3776. "require": {
  3777. "dflydev/dot-access-data": "^3.0.1",
  3778. "nette/schema": "^1.2",
  3779. "php": "^7.4 || ^8.0"
  3780. },
  3781. "require-dev": {
  3782. "phpstan/phpstan": "^1.8.2",
  3783. "phpunit/phpunit": "^9.5.5",
  3784. "scrutinizer/ocular": "^1.8.1",
  3785. "unleashedtech/php-coding-standard": "^3.1",
  3786. "vimeo/psalm": "^4.7.3"
  3787. },
  3788. "type": "library",
  3789. "extra": {
  3790. "branch-alias": {
  3791. "dev-main": "1.2-dev"
  3792. }
  3793. },
  3794. "autoload": {
  3795. "psr-4": {
  3796. "League\\Config\\": "src"
  3797. }
  3798. },
  3799. "notification-url": "https://packagist.org/downloads/",
  3800. "license": [
  3801. "BSD-3-Clause"
  3802. ],
  3803. "authors": [
  3804. {
  3805. "name": "Colin O'Dell",
  3806. "email": "colinodell@gmail.com",
  3807. "homepage": "https://www.colinodell.com",
  3808. "role": "Lead Developer"
  3809. }
  3810. ],
  3811. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  3812. "homepage": "https://config.thephpleague.com",
  3813. "keywords": [
  3814. "array",
  3815. "config",
  3816. "configuration",
  3817. "dot",
  3818. "dot-access",
  3819. "nested",
  3820. "schema"
  3821. ],
  3822. "support": {
  3823. "docs": "https://config.thephpleague.com/",
  3824. "issues": "https://github.com/thephpleague/config/issues",
  3825. "rss": "https://github.com/thephpleague/config/releases.atom",
  3826. "source": "https://github.com/thephpleague/config"
  3827. },
  3828. "funding": [
  3829. {
  3830. "url": "https://www.colinodell.com/sponsor",
  3831. "type": "custom"
  3832. },
  3833. {
  3834. "url": "https://www.paypal.me/colinpodell/10.00",
  3835. "type": "custom"
  3836. },
  3837. {
  3838. "url": "https://github.com/colinodell",
  3839. "type": "github"
  3840. }
  3841. ],
  3842. "time": "2022-12-11T20:36:23+00:00"
  3843. },
  3844. {
  3845. "name": "league/csv",
  3846. "version": "9.24.1",
  3847. "source": {
  3848. "type": "git",
  3849. "url": "https://github.com/thephpleague/csv.git",
  3850. "reference": "e0221a3f16aa2a823047d59fab5809d552e29bc8"
  3851. },
  3852. "dist": {
  3853. "type": "zip",
  3854. "url": "https://api.github.com/repos/thephpleague/csv/zipball/e0221a3f16aa2a823047d59fab5809d552e29bc8",
  3855. "reference": "e0221a3f16aa2a823047d59fab5809d552e29bc8",
  3856. "shasum": ""
  3857. },
  3858. "require": {
  3859. "ext-filter": "*",
  3860. "php": "^8.1.2"
  3861. },
  3862. "require-dev": {
  3863. "ext-dom": "*",
  3864. "ext-xdebug": "*",
  3865. "friendsofphp/php-cs-fixer": "^3.75.0",
  3866. "phpbench/phpbench": "^1.4.1",
  3867. "phpstan/phpstan": "^1.12.27",
  3868. "phpstan/phpstan-deprecation-rules": "^1.2.1",
  3869. "phpstan/phpstan-phpunit": "^1.4.2",
  3870. "phpstan/phpstan-strict-rules": "^1.6.2",
  3871. "phpunit/phpunit": "^10.5.16 || ^11.5.22",
  3872. "symfony/var-dumper": "^6.4.8 || ^7.3.0"
  3873. },
  3874. "suggest": {
  3875. "ext-dom": "Required to use the XMLConverter and the HTMLConverter classes",
  3876. "ext-iconv": "Needed to ease transcoding CSV using iconv stream filters",
  3877. "ext-mbstring": "Needed to ease transcoding CSV using mb stream filters",
  3878. "ext-mysqli": "Requiered to use the package with the MySQLi extension",
  3879. "ext-pdo": "Required to use the package with the PDO extension",
  3880. "ext-pgsql": "Requiered to use the package with the PgSQL extension",
  3881. "ext-sqlite3": "Required to use the package with the SQLite3 extension"
  3882. },
  3883. "type": "library",
  3884. "extra": {
  3885. "branch-alias": {
  3886. "dev-master": "9.x-dev"
  3887. }
  3888. },
  3889. "autoload": {
  3890. "files": [
  3891. "src/functions_include.php"
  3892. ],
  3893. "psr-4": {
  3894. "League\\Csv\\": "src"
  3895. }
  3896. },
  3897. "notification-url": "https://packagist.org/downloads/",
  3898. "license": [
  3899. "MIT"
  3900. ],
  3901. "authors": [
  3902. {
  3903. "name": "Ignace Nyamagana Butera",
  3904. "email": "nyamsprod@gmail.com",
  3905. "homepage": "https://github.com/nyamsprod/",
  3906. "role": "Developer"
  3907. }
  3908. ],
  3909. "description": "CSV data manipulation made easy in PHP",
  3910. "homepage": "https://csv.thephpleague.com",
  3911. "keywords": [
  3912. "convert",
  3913. "csv",
  3914. "export",
  3915. "filter",
  3916. "import",
  3917. "read",
  3918. "transform",
  3919. "write"
  3920. ],
  3921. "support": {
  3922. "docs": "https://csv.thephpleague.com",
  3923. "issues": "https://github.com/thephpleague/csv/issues",
  3924. "rss": "https://github.com/thephpleague/csv/releases.atom",
  3925. "source": "https://github.com/thephpleague/csv"
  3926. },
  3927. "funding": [
  3928. {
  3929. "url": "https://github.com/sponsors/nyamsprod",
  3930. "type": "github"
  3931. }
  3932. ],
  3933. "time": "2025-06-25T14:53:51+00:00"
  3934. },
  3935. {
  3936. "name": "league/flysystem",
  3937. "version": "3.30.0",
  3938. "source": {
  3939. "type": "git",
  3940. "url": "https://github.com/thephpleague/flysystem.git",
  3941. "reference": "2203e3151755d874bb2943649dae1eb8533ac93e"
  3942. },
  3943. "dist": {
  3944. "type": "zip",
  3945. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/2203e3151755d874bb2943649dae1eb8533ac93e",
  3946. "reference": "2203e3151755d874bb2943649dae1eb8533ac93e",
  3947. "shasum": ""
  3948. },
  3949. "require": {
  3950. "league/flysystem-local": "^3.0.0",
  3951. "league/mime-type-detection": "^1.0.0",
  3952. "php": "^8.0.2"
  3953. },
  3954. "conflict": {
  3955. "async-aws/core": "<1.19.0",
  3956. "async-aws/s3": "<1.14.0",
  3957. "aws/aws-sdk-php": "3.209.31 || 3.210.0",
  3958. "guzzlehttp/guzzle": "<7.0",
  3959. "guzzlehttp/ringphp": "<1.1.1",
  3960. "phpseclib/phpseclib": "3.0.15",
  3961. "symfony/http-client": "<5.2"
  3962. },
  3963. "require-dev": {
  3964. "async-aws/s3": "^1.5 || ^2.0",
  3965. "async-aws/simple-s3": "^1.1 || ^2.0",
  3966. "aws/aws-sdk-php": "^3.295.10",
  3967. "composer/semver": "^3.0",
  3968. "ext-fileinfo": "*",
  3969. "ext-ftp": "*",
  3970. "ext-mongodb": "^1.3|^2",
  3971. "ext-zip": "*",
  3972. "friendsofphp/php-cs-fixer": "^3.5",
  3973. "google/cloud-storage": "^1.23",
  3974. "guzzlehttp/psr7": "^2.6",
  3975. "microsoft/azure-storage-blob": "^1.1",
  3976. "mongodb/mongodb": "^1.2|^2",
  3977. "phpseclib/phpseclib": "^3.0.36",
  3978. "phpstan/phpstan": "^1.10",
  3979. "phpunit/phpunit": "^9.5.11|^10.0",
  3980. "sabre/dav": "^4.6.0"
  3981. },
  3982. "type": "library",
  3983. "autoload": {
  3984. "psr-4": {
  3985. "League\\Flysystem\\": "src"
  3986. }
  3987. },
  3988. "notification-url": "https://packagist.org/downloads/",
  3989. "license": [
  3990. "MIT"
  3991. ],
  3992. "authors": [
  3993. {
  3994. "name": "Frank de Jonge",
  3995. "email": "info@frankdejonge.nl"
  3996. }
  3997. ],
  3998. "description": "File storage abstraction for PHP",
  3999. "keywords": [
  4000. "WebDAV",
  4001. "aws",
  4002. "cloud",
  4003. "file",
  4004. "files",
  4005. "filesystem",
  4006. "filesystems",
  4007. "ftp",
  4008. "s3",
  4009. "sftp",
  4010. "storage"
  4011. ],
  4012. "support": {
  4013. "issues": "https://github.com/thephpleague/flysystem/issues",
  4014. "source": "https://github.com/thephpleague/flysystem/tree/3.30.0"
  4015. },
  4016. "time": "2025-06-25T13:29:59+00:00"
  4017. },
  4018. {
  4019. "name": "league/flysystem-local",
  4020. "version": "3.30.0",
  4021. "source": {
  4022. "type": "git",
  4023. "url": "https://github.com/thephpleague/flysystem-local.git",
  4024. "reference": "6691915f77c7fb69adfb87dcd550052dc184ee10"
  4025. },
  4026. "dist": {
  4027. "type": "zip",
  4028. "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/6691915f77c7fb69adfb87dcd550052dc184ee10",
  4029. "reference": "6691915f77c7fb69adfb87dcd550052dc184ee10",
  4030. "shasum": ""
  4031. },
  4032. "require": {
  4033. "ext-fileinfo": "*",
  4034. "league/flysystem": "^3.0.0",
  4035. "league/mime-type-detection": "^1.0.0",
  4036. "php": "^8.0.2"
  4037. },
  4038. "type": "library",
  4039. "autoload": {
  4040. "psr-4": {
  4041. "League\\Flysystem\\Local\\": ""
  4042. }
  4043. },
  4044. "notification-url": "https://packagist.org/downloads/",
  4045. "license": [
  4046. "MIT"
  4047. ],
  4048. "authors": [
  4049. {
  4050. "name": "Frank de Jonge",
  4051. "email": "info@frankdejonge.nl"
  4052. }
  4053. ],
  4054. "description": "Local filesystem adapter for Flysystem.",
  4055. "keywords": [
  4056. "Flysystem",
  4057. "file",
  4058. "files",
  4059. "filesystem",
  4060. "local"
  4061. ],
  4062. "support": {
  4063. "source": "https://github.com/thephpleague/flysystem-local/tree/3.30.0"
  4064. },
  4065. "time": "2025-05-21T10:34:19+00:00"
  4066. },
  4067. {
  4068. "name": "league/mime-type-detection",
  4069. "version": "1.16.0",
  4070. "source": {
  4071. "type": "git",
  4072. "url": "https://github.com/thephpleague/mime-type-detection.git",
  4073. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9"
  4074. },
  4075. "dist": {
  4076. "type": "zip",
  4077. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/2d6702ff215bf922936ccc1ad31007edc76451b9",
  4078. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9",
  4079. "shasum": ""
  4080. },
  4081. "require": {
  4082. "ext-fileinfo": "*",
  4083. "php": "^7.4 || ^8.0"
  4084. },
  4085. "require-dev": {
  4086. "friendsofphp/php-cs-fixer": "^3.2",
  4087. "phpstan/phpstan": "^0.12.68",
  4088. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  4089. },
  4090. "type": "library",
  4091. "autoload": {
  4092. "psr-4": {
  4093. "League\\MimeTypeDetection\\": "src"
  4094. }
  4095. },
  4096. "notification-url": "https://packagist.org/downloads/",
  4097. "license": [
  4098. "MIT"
  4099. ],
  4100. "authors": [
  4101. {
  4102. "name": "Frank de Jonge",
  4103. "email": "info@frankdejonge.nl"
  4104. }
  4105. ],
  4106. "description": "Mime-type detection for Flysystem",
  4107. "support": {
  4108. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  4109. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.16.0"
  4110. },
  4111. "funding": [
  4112. {
  4113. "url": "https://github.com/frankdejonge",
  4114. "type": "github"
  4115. },
  4116. {
  4117. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  4118. "type": "tidelift"
  4119. }
  4120. ],
  4121. "time": "2024-09-21T08:32:55+00:00"
  4122. },
  4123. {
  4124. "name": "league/oauth1-client",
  4125. "version": "v1.11.0",
  4126. "source": {
  4127. "type": "git",
  4128. "url": "https://github.com/thephpleague/oauth1-client.git",
  4129. "reference": "f9c94b088837eb1aae1ad7c4f23eb65cc6993055"
  4130. },
  4131. "dist": {
  4132. "type": "zip",
  4133. "url": "https://api.github.com/repos/thephpleague/oauth1-client/zipball/f9c94b088837eb1aae1ad7c4f23eb65cc6993055",
  4134. "reference": "f9c94b088837eb1aae1ad7c4f23eb65cc6993055",
  4135. "shasum": ""
  4136. },
  4137. "require": {
  4138. "ext-json": "*",
  4139. "ext-openssl": "*",
  4140. "guzzlehttp/guzzle": "^6.0|^7.0",
  4141. "guzzlehttp/psr7": "^1.7|^2.0",
  4142. "php": ">=7.1||>=8.0"
  4143. },
  4144. "require-dev": {
  4145. "ext-simplexml": "*",
  4146. "friendsofphp/php-cs-fixer": "^2.17",
  4147. "mockery/mockery": "^1.3.3",
  4148. "phpstan/phpstan": "^0.12.42",
  4149. "phpunit/phpunit": "^7.5||9.5"
  4150. },
  4151. "suggest": {
  4152. "ext-simplexml": "For decoding XML-based responses."
  4153. },
  4154. "type": "library",
  4155. "extra": {
  4156. "branch-alias": {
  4157. "dev-master": "1.0-dev",
  4158. "dev-develop": "2.0-dev"
  4159. }
  4160. },
  4161. "autoload": {
  4162. "psr-4": {
  4163. "League\\OAuth1\\Client\\": "src/"
  4164. }
  4165. },
  4166. "notification-url": "https://packagist.org/downloads/",
  4167. "license": [
  4168. "MIT"
  4169. ],
  4170. "authors": [
  4171. {
  4172. "name": "Ben Corlett",
  4173. "email": "bencorlett@me.com",
  4174. "homepage": "http://www.webcomm.com.au",
  4175. "role": "Developer"
  4176. }
  4177. ],
  4178. "description": "OAuth 1.0 Client Library",
  4179. "keywords": [
  4180. "Authentication",
  4181. "SSO",
  4182. "authorization",
  4183. "bitbucket",
  4184. "identity",
  4185. "idp",
  4186. "oauth",
  4187. "oauth1",
  4188. "single sign on",
  4189. "trello",
  4190. "tumblr",
  4191. "twitter"
  4192. ],
  4193. "support": {
  4194. "issues": "https://github.com/thephpleague/oauth1-client/issues",
  4195. "source": "https://github.com/thephpleague/oauth1-client/tree/v1.11.0"
  4196. },
  4197. "time": "2024-12-10T19:59:05+00:00"
  4198. },
  4199. {
  4200. "name": "league/uri",
  4201. "version": "7.5.1",
  4202. "source": {
  4203. "type": "git",
  4204. "url": "https://github.com/thephpleague/uri.git",
  4205. "reference": "81fb5145d2644324614cc532b28efd0215bda430"
  4206. },
  4207. "dist": {
  4208. "type": "zip",
  4209. "url": "https://api.github.com/repos/thephpleague/uri/zipball/81fb5145d2644324614cc532b28efd0215bda430",
  4210. "reference": "81fb5145d2644324614cc532b28efd0215bda430",
  4211. "shasum": ""
  4212. },
  4213. "require": {
  4214. "league/uri-interfaces": "^7.5",
  4215. "php": "^8.1"
  4216. },
  4217. "conflict": {
  4218. "league/uri-schemes": "^1.0"
  4219. },
  4220. "suggest": {
  4221. "ext-bcmath": "to improve IPV4 host parsing",
  4222. "ext-fileinfo": "to create Data URI from file contennts",
  4223. "ext-gmp": "to improve IPV4 host parsing",
  4224. "ext-intl": "to handle IDN host with the best performance",
  4225. "jeremykendall/php-domain-parser": "to resolve Public Suffix and Top Level Domain",
  4226. "league/uri-components": "Needed to easily manipulate URI objects components",
  4227. "php-64bit": "to improve IPV4 host parsing",
  4228. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  4229. },
  4230. "type": "library",
  4231. "extra": {
  4232. "branch-alias": {
  4233. "dev-master": "7.x-dev"
  4234. }
  4235. },
  4236. "autoload": {
  4237. "psr-4": {
  4238. "League\\Uri\\": ""
  4239. }
  4240. },
  4241. "notification-url": "https://packagist.org/downloads/",
  4242. "license": [
  4243. "MIT"
  4244. ],
  4245. "authors": [
  4246. {
  4247. "name": "Ignace Nyamagana Butera",
  4248. "email": "nyamsprod@gmail.com",
  4249. "homepage": "https://nyamsprod.com"
  4250. }
  4251. ],
  4252. "description": "URI manipulation library",
  4253. "homepage": "https://uri.thephpleague.com",
  4254. "keywords": [
  4255. "data-uri",
  4256. "file-uri",
  4257. "ftp",
  4258. "hostname",
  4259. "http",
  4260. "https",
  4261. "middleware",
  4262. "parse_str",
  4263. "parse_url",
  4264. "psr-7",
  4265. "query-string",
  4266. "querystring",
  4267. "rfc3986",
  4268. "rfc3987",
  4269. "rfc6570",
  4270. "uri",
  4271. "uri-template",
  4272. "url",
  4273. "ws"
  4274. ],
  4275. "support": {
  4276. "docs": "https://uri.thephpleague.com",
  4277. "forum": "https://thephpleague.slack.com",
  4278. "issues": "https://github.com/thephpleague/uri-src/issues",
  4279. "source": "https://github.com/thephpleague/uri/tree/7.5.1"
  4280. },
  4281. "funding": [
  4282. {
  4283. "url": "https://github.com/sponsors/nyamsprod",
  4284. "type": "github"
  4285. }
  4286. ],
  4287. "time": "2024-12-08T08:40:02+00:00"
  4288. },
  4289. {
  4290. "name": "league/uri-interfaces",
  4291. "version": "7.5.0",
  4292. "source": {
  4293. "type": "git",
  4294. "url": "https://github.com/thephpleague/uri-interfaces.git",
  4295. "reference": "08cfc6c4f3d811584fb09c37e2849e6a7f9b0742"
  4296. },
  4297. "dist": {
  4298. "type": "zip",
  4299. "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/08cfc6c4f3d811584fb09c37e2849e6a7f9b0742",
  4300. "reference": "08cfc6c4f3d811584fb09c37e2849e6a7f9b0742",
  4301. "shasum": ""
  4302. },
  4303. "require": {
  4304. "ext-filter": "*",
  4305. "php": "^8.1",
  4306. "psr/http-factory": "^1",
  4307. "psr/http-message": "^1.1 || ^2.0"
  4308. },
  4309. "suggest": {
  4310. "ext-bcmath": "to improve IPV4 host parsing",
  4311. "ext-gmp": "to improve IPV4 host parsing",
  4312. "ext-intl": "to handle IDN host with the best performance",
  4313. "php-64bit": "to improve IPV4 host parsing",
  4314. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  4315. },
  4316. "type": "library",
  4317. "extra": {
  4318. "branch-alias": {
  4319. "dev-master": "7.x-dev"
  4320. }
  4321. },
  4322. "autoload": {
  4323. "psr-4": {
  4324. "League\\Uri\\": ""
  4325. }
  4326. },
  4327. "notification-url": "https://packagist.org/downloads/",
  4328. "license": [
  4329. "MIT"
  4330. ],
  4331. "authors": [
  4332. {
  4333. "name": "Ignace Nyamagana Butera",
  4334. "email": "nyamsprod@gmail.com",
  4335. "homepage": "https://nyamsprod.com"
  4336. }
  4337. ],
  4338. "description": "Common interfaces and classes for URI representation and interaction",
  4339. "homepage": "https://uri.thephpleague.com",
  4340. "keywords": [
  4341. "data-uri",
  4342. "file-uri",
  4343. "ftp",
  4344. "hostname",
  4345. "http",
  4346. "https",
  4347. "parse_str",
  4348. "parse_url",
  4349. "psr-7",
  4350. "query-string",
  4351. "querystring",
  4352. "rfc3986",
  4353. "rfc3987",
  4354. "rfc6570",
  4355. "uri",
  4356. "url",
  4357. "ws"
  4358. ],
  4359. "support": {
  4360. "docs": "https://uri.thephpleague.com",
  4361. "forum": "https://thephpleague.slack.com",
  4362. "issues": "https://github.com/thephpleague/uri-src/issues",
  4363. "source": "https://github.com/thephpleague/uri-interfaces/tree/7.5.0"
  4364. },
  4365. "funding": [
  4366. {
  4367. "url": "https://github.com/sponsors/nyamsprod",
  4368. "type": "github"
  4369. }
  4370. ],
  4371. "time": "2024-12-08T08:18:47+00:00"
  4372. },
  4373. {
  4374. "name": "livewire/livewire",
  4375. "version": "v3.6.4",
  4376. "source": {
  4377. "type": "git",
  4378. "url": "https://github.com/livewire/livewire.git",
  4379. "reference": "ef04be759da41b14d2d129e670533180a44987dc"
  4380. },
  4381. "dist": {
  4382. "type": "zip",
  4383. "url": "https://api.github.com/repos/livewire/livewire/zipball/ef04be759da41b14d2d129e670533180a44987dc",
  4384. "reference": "ef04be759da41b14d2d129e670533180a44987dc",
  4385. "shasum": ""
  4386. },
  4387. "require": {
  4388. "illuminate/database": "^10.0|^11.0|^12.0",
  4389. "illuminate/routing": "^10.0|^11.0|^12.0",
  4390. "illuminate/support": "^10.0|^11.0|^12.0",
  4391. "illuminate/validation": "^10.0|^11.0|^12.0",
  4392. "laravel/prompts": "^0.1.24|^0.2|^0.3",
  4393. "league/mime-type-detection": "^1.9",
  4394. "php": "^8.1",
  4395. "symfony/console": "^6.0|^7.0",
  4396. "symfony/http-kernel": "^6.2|^7.0"
  4397. },
  4398. "require-dev": {
  4399. "calebporzio/sushi": "^2.1",
  4400. "laravel/framework": "^10.15.0|^11.0|^12.0",
  4401. "mockery/mockery": "^1.3.1",
  4402. "orchestra/testbench": "^8.21.0|^9.0|^10.0",
  4403. "orchestra/testbench-dusk": "^8.24|^9.1|^10.0",
  4404. "phpunit/phpunit": "^10.4|^11.5",
  4405. "psy/psysh": "^0.11.22|^0.12"
  4406. },
  4407. "type": "library",
  4408. "extra": {
  4409. "laravel": {
  4410. "aliases": {
  4411. "Livewire": "Livewire\\Livewire"
  4412. },
  4413. "providers": [
  4414. "Livewire\\LivewireServiceProvider"
  4415. ]
  4416. }
  4417. },
  4418. "autoload": {
  4419. "files": [
  4420. "src/helpers.php"
  4421. ],
  4422. "psr-4": {
  4423. "Livewire\\": "src/"
  4424. }
  4425. },
  4426. "notification-url": "https://packagist.org/downloads/",
  4427. "license": [
  4428. "MIT"
  4429. ],
  4430. "authors": [
  4431. {
  4432. "name": "Caleb Porzio",
  4433. "email": "calebporzio@gmail.com"
  4434. }
  4435. ],
  4436. "description": "A front-end framework for Laravel.",
  4437. "support": {
  4438. "issues": "https://github.com/livewire/livewire/issues",
  4439. "source": "https://github.com/livewire/livewire/tree/v3.6.4"
  4440. },
  4441. "funding": [
  4442. {
  4443. "url": "https://github.com/livewire",
  4444. "type": "github"
  4445. }
  4446. ],
  4447. "time": "2025-07-17T05:12:15+00:00"
  4448. },
  4449. {
  4450. "name": "masterminds/html5",
  4451. "version": "2.10.0",
  4452. "source": {
  4453. "type": "git",
  4454. "url": "https://github.com/Masterminds/html5-php.git",
  4455. "reference": "fcf91eb64359852f00d921887b219479b4f21251"
  4456. },
  4457. "dist": {
  4458. "type": "zip",
  4459. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/fcf91eb64359852f00d921887b219479b4f21251",
  4460. "reference": "fcf91eb64359852f00d921887b219479b4f21251",
  4461. "shasum": ""
  4462. },
  4463. "require": {
  4464. "ext-dom": "*",
  4465. "php": ">=5.3.0"
  4466. },
  4467. "require-dev": {
  4468. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  4469. },
  4470. "type": "library",
  4471. "extra": {
  4472. "branch-alias": {
  4473. "dev-master": "2.7-dev"
  4474. }
  4475. },
  4476. "autoload": {
  4477. "psr-4": {
  4478. "Masterminds\\": "src"
  4479. }
  4480. },
  4481. "notification-url": "https://packagist.org/downloads/",
  4482. "license": [
  4483. "MIT"
  4484. ],
  4485. "authors": [
  4486. {
  4487. "name": "Matt Butcher",
  4488. "email": "technosophos@gmail.com"
  4489. },
  4490. {
  4491. "name": "Matt Farina",
  4492. "email": "matt@mattfarina.com"
  4493. },
  4494. {
  4495. "name": "Asmir Mustafic",
  4496. "email": "goetas@gmail.com"
  4497. }
  4498. ],
  4499. "description": "An HTML5 parser and serializer.",
  4500. "homepage": "http://masterminds.github.io/html5-php",
  4501. "keywords": [
  4502. "HTML5",
  4503. "dom",
  4504. "html",
  4505. "parser",
  4506. "querypath",
  4507. "serializer",
  4508. "xml"
  4509. ],
  4510. "support": {
  4511. "issues": "https://github.com/Masterminds/html5-php/issues",
  4512. "source": "https://github.com/Masterminds/html5-php/tree/2.10.0"
  4513. },
  4514. "time": "2025-07-25T09:04:22+00:00"
  4515. },
  4516. {
  4517. "name": "matomo/device-detector",
  4518. "version": "6.4.7",
  4519. "source": {
  4520. "type": "git",
  4521. "url": "https://github.com/matomo-org/device-detector.git",
  4522. "reference": "e53eed31bb1530851feebe52bd64c3451da19e77"
  4523. },
  4524. "dist": {
  4525. "type": "zip",
  4526. "url": "https://api.github.com/repos/matomo-org/device-detector/zipball/e53eed31bb1530851feebe52bd64c3451da19e77",
  4527. "reference": "e53eed31bb1530851feebe52bd64c3451da19e77",
  4528. "shasum": ""
  4529. },
  4530. "require": {
  4531. "mustangostang/spyc": "*",
  4532. "php": "^7.2|^8.0"
  4533. },
  4534. "replace": {
  4535. "piwik/device-detector": "self.version"
  4536. },
  4537. "require-dev": {
  4538. "matthiasmullie/scrapbook": "^1.4.7",
  4539. "mayflower/mo4-coding-standard": "^v9.0.0",
  4540. "phpstan/phpstan": "^1.10.44",
  4541. "phpunit/phpunit": "^8.5.8",
  4542. "psr/cache": "^1.0.1",
  4543. "psr/simple-cache": "^1.0.1",
  4544. "slevomat/coding-standard": "<8.16.0",
  4545. "symfony/yaml": "^5.1.7"
  4546. },
  4547. "suggest": {
  4548. "doctrine/cache": "Can directly be used for caching purpose",
  4549. "ext-yaml": "Necessary for using the Pecl YAML parser"
  4550. },
  4551. "type": "library",
  4552. "autoload": {
  4553. "psr-4": {
  4554. "DeviceDetector\\": ""
  4555. },
  4556. "exclude-from-classmap": [
  4557. "Tests/"
  4558. ]
  4559. },
  4560. "notification-url": "https://packagist.org/downloads/",
  4561. "license": [
  4562. "LGPL-3.0-or-later"
  4563. ],
  4564. "authors": [
  4565. {
  4566. "name": "The Matomo Team",
  4567. "email": "hello@matomo.org",
  4568. "homepage": "https://matomo.org/team/"
  4569. }
  4570. ],
  4571. "description": "The Universal Device Detection library, that parses User Agents and detects devices (desktop, tablet, mobile, tv, cars, console, etc.), clients (browsers, media players, mobile apps, feed readers, libraries, etc), operating systems, devices, brands and models.",
  4572. "homepage": "https://matomo.org",
  4573. "keywords": [
  4574. "devicedetection",
  4575. "parser",
  4576. "useragent"
  4577. ],
  4578. "support": {
  4579. "forum": "https://forum.matomo.org/",
  4580. "issues": "https://github.com/matomo-org/device-detector/issues",
  4581. "source": "https://github.com/matomo-org/matomo",
  4582. "wiki": "https://dev.matomo.org/"
  4583. },
  4584. "time": "2025-08-20T17:20:16+00:00"
  4585. },
  4586. {
  4587. "name": "monolog/monolog",
  4588. "version": "3.9.0",
  4589. "source": {
  4590. "type": "git",
  4591. "url": "https://github.com/Seldaek/monolog.git",
  4592. "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6"
  4593. },
  4594. "dist": {
  4595. "type": "zip",
  4596. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/10d85740180ecba7896c87e06a166e0c95a0e3b6",
  4597. "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6",
  4598. "shasum": ""
  4599. },
  4600. "require": {
  4601. "php": ">=8.1",
  4602. "psr/log": "^2.0 || ^3.0"
  4603. },
  4604. "provide": {
  4605. "psr/log-implementation": "3.0.0"
  4606. },
  4607. "require-dev": {
  4608. "aws/aws-sdk-php": "^3.0",
  4609. "doctrine/couchdb": "~1.0@dev",
  4610. "elasticsearch/elasticsearch": "^7 || ^8",
  4611. "ext-json": "*",
  4612. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  4613. "guzzlehttp/guzzle": "^7.4.5",
  4614. "guzzlehttp/psr7": "^2.2",
  4615. "mongodb/mongodb": "^1.8",
  4616. "php-amqplib/php-amqplib": "~2.4 || ^3",
  4617. "php-console/php-console": "^3.1.8",
  4618. "phpstan/phpstan": "^2",
  4619. "phpstan/phpstan-deprecation-rules": "^2",
  4620. "phpstan/phpstan-strict-rules": "^2",
  4621. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  4622. "predis/predis": "^1.1 || ^2",
  4623. "rollbar/rollbar": "^4.0",
  4624. "ruflin/elastica": "^7 || ^8",
  4625. "symfony/mailer": "^5.4 || ^6",
  4626. "symfony/mime": "^5.4 || ^6"
  4627. },
  4628. "suggest": {
  4629. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  4630. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  4631. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  4632. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  4633. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  4634. "ext-mbstring": "Allow to work properly with unicode symbols",
  4635. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  4636. "ext-openssl": "Required to send log messages using SSL",
  4637. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  4638. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  4639. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  4640. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  4641. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  4642. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  4643. },
  4644. "type": "library",
  4645. "extra": {
  4646. "branch-alias": {
  4647. "dev-main": "3.x-dev"
  4648. }
  4649. },
  4650. "autoload": {
  4651. "psr-4": {
  4652. "Monolog\\": "src/Monolog"
  4653. }
  4654. },
  4655. "notification-url": "https://packagist.org/downloads/",
  4656. "license": [
  4657. "MIT"
  4658. ],
  4659. "authors": [
  4660. {
  4661. "name": "Jordi Boggiano",
  4662. "email": "j.boggiano@seld.be",
  4663. "homepage": "https://seld.be"
  4664. }
  4665. ],
  4666. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  4667. "homepage": "https://github.com/Seldaek/monolog",
  4668. "keywords": [
  4669. "log",
  4670. "logging",
  4671. "psr-3"
  4672. ],
  4673. "support": {
  4674. "issues": "https://github.com/Seldaek/monolog/issues",
  4675. "source": "https://github.com/Seldaek/monolog/tree/3.9.0"
  4676. },
  4677. "funding": [
  4678. {
  4679. "url": "https://github.com/Seldaek",
  4680. "type": "github"
  4681. },
  4682. {
  4683. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  4684. "type": "tidelift"
  4685. }
  4686. ],
  4687. "time": "2025-03-24T10:02:05+00:00"
  4688. },
  4689. {
  4690. "name": "mtdowling/jmespath.php",
  4691. "version": "2.8.0",
  4692. "source": {
  4693. "type": "git",
  4694. "url": "https://github.com/jmespath/jmespath.php.git",
  4695. "reference": "a2a865e05d5f420b50cc2f85bb78d565db12a6bc"
  4696. },
  4697. "dist": {
  4698. "type": "zip",
  4699. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/a2a865e05d5f420b50cc2f85bb78d565db12a6bc",
  4700. "reference": "a2a865e05d5f420b50cc2f85bb78d565db12a6bc",
  4701. "shasum": ""
  4702. },
  4703. "require": {
  4704. "php": "^7.2.5 || ^8.0",
  4705. "symfony/polyfill-mbstring": "^1.17"
  4706. },
  4707. "require-dev": {
  4708. "composer/xdebug-handler": "^3.0.3",
  4709. "phpunit/phpunit": "^8.5.33"
  4710. },
  4711. "bin": [
  4712. "bin/jp.php"
  4713. ],
  4714. "type": "library",
  4715. "extra": {
  4716. "branch-alias": {
  4717. "dev-master": "2.8-dev"
  4718. }
  4719. },
  4720. "autoload": {
  4721. "files": [
  4722. "src/JmesPath.php"
  4723. ],
  4724. "psr-4": {
  4725. "JmesPath\\": "src/"
  4726. }
  4727. },
  4728. "notification-url": "https://packagist.org/downloads/",
  4729. "license": [
  4730. "MIT"
  4731. ],
  4732. "authors": [
  4733. {
  4734. "name": "Graham Campbell",
  4735. "email": "hello@gjcampbell.co.uk",
  4736. "homepage": "https://github.com/GrahamCampbell"
  4737. },
  4738. {
  4739. "name": "Michael Dowling",
  4740. "email": "mtdowling@gmail.com",
  4741. "homepage": "https://github.com/mtdowling"
  4742. }
  4743. ],
  4744. "description": "Declaratively specify how to extract elements from a JSON document",
  4745. "keywords": [
  4746. "json",
  4747. "jsonpath"
  4748. ],
  4749. "support": {
  4750. "issues": "https://github.com/jmespath/jmespath.php/issues",
  4751. "source": "https://github.com/jmespath/jmespath.php/tree/2.8.0"
  4752. },
  4753. "time": "2024-09-04T18:46:31+00:00"
  4754. },
  4755. {
  4756. "name": "mustangostang/spyc",
  4757. "version": "0.6.3",
  4758. "source": {
  4759. "type": "git",
  4760. "url": "https://github.com/mustangostang/spyc.git",
  4761. "reference": "4627c838b16550b666d15aeae1e5289dd5b77da0"
  4762. },
  4763. "dist": {
  4764. "type": "zip",
  4765. "url": "https://api.github.com/repos/mustangostang/spyc/zipball/4627c838b16550b666d15aeae1e5289dd5b77da0",
  4766. "reference": "4627c838b16550b666d15aeae1e5289dd5b77da0",
  4767. "shasum": ""
  4768. },
  4769. "require": {
  4770. "php": ">=5.3.1"
  4771. },
  4772. "require-dev": {
  4773. "phpunit/phpunit": "4.3.*@dev"
  4774. },
  4775. "type": "library",
  4776. "extra": {
  4777. "branch-alias": {
  4778. "dev-master": "0.5.x-dev"
  4779. }
  4780. },
  4781. "autoload": {
  4782. "files": [
  4783. "Spyc.php"
  4784. ]
  4785. },
  4786. "notification-url": "https://packagist.org/downloads/",
  4787. "license": [
  4788. "MIT"
  4789. ],
  4790. "authors": [
  4791. {
  4792. "name": "mustangostang",
  4793. "email": "vlad.andersen@gmail.com"
  4794. }
  4795. ],
  4796. "description": "A simple YAML loader/dumper class for PHP",
  4797. "homepage": "https://github.com/mustangostang/spyc/",
  4798. "keywords": [
  4799. "spyc",
  4800. "yaml",
  4801. "yml"
  4802. ],
  4803. "support": {
  4804. "issues": "https://github.com/mustangostang/spyc/issues",
  4805. "source": "https://github.com/mustangostang/spyc/tree/0.6.3"
  4806. },
  4807. "time": "2019-09-10T13:16:29+00:00"
  4808. },
  4809. {
  4810. "name": "nesbot/carbon",
  4811. "version": "3.10.2",
  4812. "source": {
  4813. "type": "git",
  4814. "url": "https://github.com/CarbonPHP/carbon.git",
  4815. "reference": "76b5c07b8a9d2025ed1610e14cef1f3fd6ad2c24"
  4816. },
  4817. "dist": {
  4818. "type": "zip",
  4819. "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/76b5c07b8a9d2025ed1610e14cef1f3fd6ad2c24",
  4820. "reference": "76b5c07b8a9d2025ed1610e14cef1f3fd6ad2c24",
  4821. "shasum": ""
  4822. },
  4823. "require": {
  4824. "carbonphp/carbon-doctrine-types": "<100.0",
  4825. "ext-json": "*",
  4826. "php": "^8.1",
  4827. "psr/clock": "^1.0",
  4828. "symfony/clock": "^6.3.12 || ^7.0",
  4829. "symfony/polyfill-mbstring": "^1.0",
  4830. "symfony/translation": "^4.4.18 || ^5.2.1 || ^6.0 || ^7.0"
  4831. },
  4832. "provide": {
  4833. "psr/clock-implementation": "1.0"
  4834. },
  4835. "require-dev": {
  4836. "doctrine/dbal": "^3.6.3 || ^4.0",
  4837. "doctrine/orm": "^2.15.2 || ^3.0",
  4838. "friendsofphp/php-cs-fixer": "^3.75.0",
  4839. "kylekatarnls/multi-tester": "^2.5.3",
  4840. "phpmd/phpmd": "^2.15.0",
  4841. "phpstan/extension-installer": "^1.4.3",
  4842. "phpstan/phpstan": "^2.1.17",
  4843. "phpunit/phpunit": "^10.5.46",
  4844. "squizlabs/php_codesniffer": "^3.13.0"
  4845. },
  4846. "bin": [
  4847. "bin/carbon"
  4848. ],
  4849. "type": "library",
  4850. "extra": {
  4851. "laravel": {
  4852. "providers": [
  4853. "Carbon\\Laravel\\ServiceProvider"
  4854. ]
  4855. },
  4856. "phpstan": {
  4857. "includes": [
  4858. "extension.neon"
  4859. ]
  4860. },
  4861. "branch-alias": {
  4862. "dev-2.x": "2.x-dev",
  4863. "dev-master": "3.x-dev"
  4864. }
  4865. },
  4866. "autoload": {
  4867. "psr-4": {
  4868. "Carbon\\": "src/Carbon/"
  4869. }
  4870. },
  4871. "notification-url": "https://packagist.org/downloads/",
  4872. "license": [
  4873. "MIT"
  4874. ],
  4875. "authors": [
  4876. {
  4877. "name": "Brian Nesbitt",
  4878. "email": "brian@nesbot.com",
  4879. "homepage": "https://markido.com"
  4880. },
  4881. {
  4882. "name": "kylekatarnls",
  4883. "homepage": "https://github.com/kylekatarnls"
  4884. }
  4885. ],
  4886. "description": "An API extension for DateTime that supports 281 different languages.",
  4887. "homepage": "https://carbon.nesbot.com",
  4888. "keywords": [
  4889. "date",
  4890. "datetime",
  4891. "time"
  4892. ],
  4893. "support": {
  4894. "docs": "https://carbon.nesbot.com/docs",
  4895. "issues": "https://github.com/CarbonPHP/carbon/issues",
  4896. "source": "https://github.com/CarbonPHP/carbon"
  4897. },
  4898. "funding": [
  4899. {
  4900. "url": "https://github.com/sponsors/kylekatarnls",
  4901. "type": "github"
  4902. },
  4903. {
  4904. "url": "https://opencollective.com/Carbon#sponsor",
  4905. "type": "opencollective"
  4906. },
  4907. {
  4908. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  4909. "type": "tidelift"
  4910. }
  4911. ],
  4912. "time": "2025-08-02T09:36:06+00:00"
  4913. },
  4914. {
  4915. "name": "nette/schema",
  4916. "version": "v1.3.2",
  4917. "source": {
  4918. "type": "git",
  4919. "url": "https://github.com/nette/schema.git",
  4920. "reference": "da801d52f0354f70a638673c4a0f04e16529431d"
  4921. },
  4922. "dist": {
  4923. "type": "zip",
  4924. "url": "https://api.github.com/repos/nette/schema/zipball/da801d52f0354f70a638673c4a0f04e16529431d",
  4925. "reference": "da801d52f0354f70a638673c4a0f04e16529431d",
  4926. "shasum": ""
  4927. },
  4928. "require": {
  4929. "nette/utils": "^4.0",
  4930. "php": "8.1 - 8.4"
  4931. },
  4932. "require-dev": {
  4933. "nette/tester": "^2.5.2",
  4934. "phpstan/phpstan-nette": "^1.0",
  4935. "tracy/tracy": "^2.8"
  4936. },
  4937. "type": "library",
  4938. "extra": {
  4939. "branch-alias": {
  4940. "dev-master": "1.3-dev"
  4941. }
  4942. },
  4943. "autoload": {
  4944. "classmap": [
  4945. "src/"
  4946. ]
  4947. },
  4948. "notification-url": "https://packagist.org/downloads/",
  4949. "license": [
  4950. "BSD-3-Clause",
  4951. "GPL-2.0-only",
  4952. "GPL-3.0-only"
  4953. ],
  4954. "authors": [
  4955. {
  4956. "name": "David Grudl",
  4957. "homepage": "https://davidgrudl.com"
  4958. },
  4959. {
  4960. "name": "Nette Community",
  4961. "homepage": "https://nette.org/contributors"
  4962. }
  4963. ],
  4964. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  4965. "homepage": "https://nette.org",
  4966. "keywords": [
  4967. "config",
  4968. "nette"
  4969. ],
  4970. "support": {
  4971. "issues": "https://github.com/nette/schema/issues",
  4972. "source": "https://github.com/nette/schema/tree/v1.3.2"
  4973. },
  4974. "time": "2024-10-06T23:10:23+00:00"
  4975. },
  4976. {
  4977. "name": "nette/utils",
  4978. "version": "v4.0.8",
  4979. "source": {
  4980. "type": "git",
  4981. "url": "https://github.com/nette/utils.git",
  4982. "reference": "c930ca4e3cf4f17dcfb03037703679d2396d2ede"
  4983. },
  4984. "dist": {
  4985. "type": "zip",
  4986. "url": "https://api.github.com/repos/nette/utils/zipball/c930ca4e3cf4f17dcfb03037703679d2396d2ede",
  4987. "reference": "c930ca4e3cf4f17dcfb03037703679d2396d2ede",
  4988. "shasum": ""
  4989. },
  4990. "require": {
  4991. "php": "8.0 - 8.5"
  4992. },
  4993. "conflict": {
  4994. "nette/finder": "<3",
  4995. "nette/schema": "<1.2.2"
  4996. },
  4997. "require-dev": {
  4998. "jetbrains/phpstorm-attributes": "^1.2",
  4999. "nette/tester": "^2.5",
  5000. "phpstan/phpstan-nette": "^2.0@stable",
  5001. "tracy/tracy": "^2.9"
  5002. },
  5003. "suggest": {
  5004. "ext-gd": "to use Image",
  5005. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  5006. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  5007. "ext-json": "to use Nette\\Utils\\Json",
  5008. "ext-mbstring": "to use Strings::lower() etc...",
  5009. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  5010. },
  5011. "type": "library",
  5012. "extra": {
  5013. "branch-alias": {
  5014. "dev-master": "4.0-dev"
  5015. }
  5016. },
  5017. "autoload": {
  5018. "psr-4": {
  5019. "Nette\\": "src"
  5020. },
  5021. "classmap": [
  5022. "src/"
  5023. ]
  5024. },
  5025. "notification-url": "https://packagist.org/downloads/",
  5026. "license": [
  5027. "BSD-3-Clause",
  5028. "GPL-2.0-only",
  5029. "GPL-3.0-only"
  5030. ],
  5031. "authors": [
  5032. {
  5033. "name": "David Grudl",
  5034. "homepage": "https://davidgrudl.com"
  5035. },
  5036. {
  5037. "name": "Nette Community",
  5038. "homepage": "https://nette.org/contributors"
  5039. }
  5040. ],
  5041. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  5042. "homepage": "https://nette.org",
  5043. "keywords": [
  5044. "array",
  5045. "core",
  5046. "datetime",
  5047. "images",
  5048. "json",
  5049. "nette",
  5050. "paginator",
  5051. "password",
  5052. "slugify",
  5053. "string",
  5054. "unicode",
  5055. "utf-8",
  5056. "utility",
  5057. "validation"
  5058. ],
  5059. "support": {
  5060. "issues": "https://github.com/nette/utils/issues",
  5061. "source": "https://github.com/nette/utils/tree/v4.0.8"
  5062. },
  5063. "time": "2025-08-06T21:43:34+00:00"
  5064. },
  5065. {
  5066. "name": "nikic/php-parser",
  5067. "version": "v5.6.1",
  5068. "source": {
  5069. "type": "git",
  5070. "url": "https://github.com/nikic/PHP-Parser.git",
  5071. "reference": "f103601b29efebd7ff4a1ca7b3eeea9e3336a2a2"
  5072. },
  5073. "dist": {
  5074. "type": "zip",
  5075. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/f103601b29efebd7ff4a1ca7b3eeea9e3336a2a2",
  5076. "reference": "f103601b29efebd7ff4a1ca7b3eeea9e3336a2a2",
  5077. "shasum": ""
  5078. },
  5079. "require": {
  5080. "ext-ctype": "*",
  5081. "ext-json": "*",
  5082. "ext-tokenizer": "*",
  5083. "php": ">=7.4"
  5084. },
  5085. "require-dev": {
  5086. "ircmaxell/php-yacc": "^0.0.7",
  5087. "phpunit/phpunit": "^9.0"
  5088. },
  5089. "bin": [
  5090. "bin/php-parse"
  5091. ],
  5092. "type": "library",
  5093. "extra": {
  5094. "branch-alias": {
  5095. "dev-master": "5.x-dev"
  5096. }
  5097. },
  5098. "autoload": {
  5099. "psr-4": {
  5100. "PhpParser\\": "lib/PhpParser"
  5101. }
  5102. },
  5103. "notification-url": "https://packagist.org/downloads/",
  5104. "license": [
  5105. "BSD-3-Clause"
  5106. ],
  5107. "authors": [
  5108. {
  5109. "name": "Nikita Popov"
  5110. }
  5111. ],
  5112. "description": "A PHP parser written in PHP",
  5113. "keywords": [
  5114. "parser",
  5115. "php"
  5116. ],
  5117. "support": {
  5118. "issues": "https://github.com/nikic/PHP-Parser/issues",
  5119. "source": "https://github.com/nikic/PHP-Parser/tree/v5.6.1"
  5120. },
  5121. "time": "2025-08-13T20:13:15+00:00"
  5122. },
  5123. {
  5124. "name": "nunomaduro/termwind",
  5125. "version": "v2.3.1",
  5126. "source": {
  5127. "type": "git",
  5128. "url": "https://github.com/nunomaduro/termwind.git",
  5129. "reference": "dfa08f390e509967a15c22493dc0bac5733d9123"
  5130. },
  5131. "dist": {
  5132. "type": "zip",
  5133. "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/dfa08f390e509967a15c22493dc0bac5733d9123",
  5134. "reference": "dfa08f390e509967a15c22493dc0bac5733d9123",
  5135. "shasum": ""
  5136. },
  5137. "require": {
  5138. "ext-mbstring": "*",
  5139. "php": "^8.2",
  5140. "symfony/console": "^7.2.6"
  5141. },
  5142. "require-dev": {
  5143. "illuminate/console": "^11.44.7",
  5144. "laravel/pint": "^1.22.0",
  5145. "mockery/mockery": "^1.6.12",
  5146. "pestphp/pest": "^2.36.0 || ^3.8.2",
  5147. "phpstan/phpstan": "^1.12.25",
  5148. "phpstan/phpstan-strict-rules": "^1.6.2",
  5149. "symfony/var-dumper": "^7.2.6",
  5150. "thecodingmachine/phpstan-strict-rules": "^1.0.0"
  5151. },
  5152. "type": "library",
  5153. "extra": {
  5154. "laravel": {
  5155. "providers": [
  5156. "Termwind\\Laravel\\TermwindServiceProvider"
  5157. ]
  5158. },
  5159. "branch-alias": {
  5160. "dev-2.x": "2.x-dev"
  5161. }
  5162. },
  5163. "autoload": {
  5164. "files": [
  5165. "src/Functions.php"
  5166. ],
  5167. "psr-4": {
  5168. "Termwind\\": "src/"
  5169. }
  5170. },
  5171. "notification-url": "https://packagist.org/downloads/",
  5172. "license": [
  5173. "MIT"
  5174. ],
  5175. "authors": [
  5176. {
  5177. "name": "Nuno Maduro",
  5178. "email": "enunomaduro@gmail.com"
  5179. }
  5180. ],
  5181. "description": "Its like Tailwind CSS, but for the console.",
  5182. "keywords": [
  5183. "cli",
  5184. "console",
  5185. "css",
  5186. "package",
  5187. "php",
  5188. "style"
  5189. ],
  5190. "support": {
  5191. "issues": "https://github.com/nunomaduro/termwind/issues",
  5192. "source": "https://github.com/nunomaduro/termwind/tree/v2.3.1"
  5193. },
  5194. "funding": [
  5195. {
  5196. "url": "https://www.paypal.com/paypalme/enunomaduro",
  5197. "type": "custom"
  5198. },
  5199. {
  5200. "url": "https://github.com/nunomaduro",
  5201. "type": "github"
  5202. },
  5203. {
  5204. "url": "https://github.com/xiCO2k",
  5205. "type": "github"
  5206. }
  5207. ],
  5208. "time": "2025-05-08T08:14:37+00:00"
  5209. },
  5210. {
  5211. "name": "openspout/openspout",
  5212. "version": "v4.30.1",
  5213. "source": {
  5214. "type": "git",
  5215. "url": "https://github.com/openspout/openspout.git",
  5216. "reference": "4550fc0dbf01aff86d12691f8a7f6ce22d2b2edc"
  5217. },
  5218. "dist": {
  5219. "type": "zip",
  5220. "url": "https://api.github.com/repos/openspout/openspout/zipball/4550fc0dbf01aff86d12691f8a7f6ce22d2b2edc",
  5221. "reference": "4550fc0dbf01aff86d12691f8a7f6ce22d2b2edc",
  5222. "shasum": ""
  5223. },
  5224. "require": {
  5225. "ext-dom": "*",
  5226. "ext-fileinfo": "*",
  5227. "ext-filter": "*",
  5228. "ext-libxml": "*",
  5229. "ext-xmlreader": "*",
  5230. "ext-zip": "*",
  5231. "php": "~8.3.0 || ~8.4.0"
  5232. },
  5233. "require-dev": {
  5234. "ext-zlib": "*",
  5235. "friendsofphp/php-cs-fixer": "^3.80.0",
  5236. "infection/infection": "^0.30.1",
  5237. "phpbench/phpbench": "^1.4.1",
  5238. "phpstan/phpstan": "^2.1.17",
  5239. "phpstan/phpstan-phpunit": "^2.0.6",
  5240. "phpstan/phpstan-strict-rules": "^2.0.4",
  5241. "phpunit/phpunit": "^12.2.6"
  5242. },
  5243. "suggest": {
  5244. "ext-iconv": "To handle non UTF-8 CSV files (if \"php-mbstring\" is not already installed or is too limited)",
  5245. "ext-mbstring": "To handle non UTF-8 CSV files (if \"iconv\" is not already installed)"
  5246. },
  5247. "type": "library",
  5248. "extra": {
  5249. "branch-alias": {
  5250. "dev-master": "3.3.x-dev"
  5251. }
  5252. },
  5253. "autoload": {
  5254. "psr-4": {
  5255. "OpenSpout\\": "src/"
  5256. }
  5257. },
  5258. "notification-url": "https://packagist.org/downloads/",
  5259. "license": [
  5260. "MIT"
  5261. ],
  5262. "authors": [
  5263. {
  5264. "name": "Adrien Loison",
  5265. "email": "adrien@box.com"
  5266. }
  5267. ],
  5268. "description": "PHP Library to read and write spreadsheet files (CSV, XLSX and ODS), in a fast and scalable way",
  5269. "homepage": "https://github.com/openspout/openspout",
  5270. "keywords": [
  5271. "OOXML",
  5272. "csv",
  5273. "excel",
  5274. "memory",
  5275. "odf",
  5276. "ods",
  5277. "office",
  5278. "open",
  5279. "php",
  5280. "read",
  5281. "scale",
  5282. "spreadsheet",
  5283. "stream",
  5284. "write",
  5285. "xlsx"
  5286. ],
  5287. "support": {
  5288. "issues": "https://github.com/openspout/openspout/issues",
  5289. "source": "https://github.com/openspout/openspout/tree/v4.30.1"
  5290. },
  5291. "funding": [
  5292. {
  5293. "url": "https://paypal.me/filippotessarotto",
  5294. "type": "custom"
  5295. },
  5296. {
  5297. "url": "https://github.com/Slamdunk",
  5298. "type": "github"
  5299. }
  5300. ],
  5301. "time": "2025-07-07T06:15:55+00:00"
  5302. },
  5303. {
  5304. "name": "paragonie/constant_time_encoding",
  5305. "version": "v3.0.0",
  5306. "source": {
  5307. "type": "git",
  5308. "url": "https://github.com/paragonie/constant_time_encoding.git",
  5309. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512"
  5310. },
  5311. "dist": {
  5312. "type": "zip",
  5313. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/df1e7fde177501eee2037dd159cf04f5f301a512",
  5314. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512",
  5315. "shasum": ""
  5316. },
  5317. "require": {
  5318. "php": "^8"
  5319. },
  5320. "require-dev": {
  5321. "phpunit/phpunit": "^9",
  5322. "vimeo/psalm": "^4|^5"
  5323. },
  5324. "type": "library",
  5325. "autoload": {
  5326. "psr-4": {
  5327. "ParagonIE\\ConstantTime\\": "src/"
  5328. }
  5329. },
  5330. "notification-url": "https://packagist.org/downloads/",
  5331. "license": [
  5332. "MIT"
  5333. ],
  5334. "authors": [
  5335. {
  5336. "name": "Paragon Initiative Enterprises",
  5337. "email": "security@paragonie.com",
  5338. "homepage": "https://paragonie.com",
  5339. "role": "Maintainer"
  5340. },
  5341. {
  5342. "name": "Steve 'Sc00bz' Thomas",
  5343. "email": "steve@tobtu.com",
  5344. "homepage": "https://www.tobtu.com",
  5345. "role": "Original Developer"
  5346. }
  5347. ],
  5348. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  5349. "keywords": [
  5350. "base16",
  5351. "base32",
  5352. "base32_decode",
  5353. "base32_encode",
  5354. "base64",
  5355. "base64_decode",
  5356. "base64_encode",
  5357. "bin2hex",
  5358. "encoding",
  5359. "hex",
  5360. "hex2bin",
  5361. "rfc4648"
  5362. ],
  5363. "support": {
  5364. "email": "info@paragonie.com",
  5365. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  5366. "source": "https://github.com/paragonie/constant_time_encoding"
  5367. },
  5368. "time": "2024-05-08T12:36:18+00:00"
  5369. },
  5370. {
  5371. "name": "paragonie/random_compat",
  5372. "version": "v9.99.100",
  5373. "source": {
  5374. "type": "git",
  5375. "url": "https://github.com/paragonie/random_compat.git",
  5376. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  5377. },
  5378. "dist": {
  5379. "type": "zip",
  5380. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5381. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5382. "shasum": ""
  5383. },
  5384. "require": {
  5385. "php": ">= 7"
  5386. },
  5387. "require-dev": {
  5388. "phpunit/phpunit": "4.*|5.*",
  5389. "vimeo/psalm": "^1"
  5390. },
  5391. "suggest": {
  5392. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  5393. },
  5394. "type": "library",
  5395. "notification-url": "https://packagist.org/downloads/",
  5396. "license": [
  5397. "MIT"
  5398. ],
  5399. "authors": [
  5400. {
  5401. "name": "Paragon Initiative Enterprises",
  5402. "email": "security@paragonie.com",
  5403. "homepage": "https://paragonie.com"
  5404. }
  5405. ],
  5406. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  5407. "keywords": [
  5408. "csprng",
  5409. "polyfill",
  5410. "pseudorandom",
  5411. "random"
  5412. ],
  5413. "support": {
  5414. "email": "info@paragonie.com",
  5415. "issues": "https://github.com/paragonie/random_compat/issues",
  5416. "source": "https://github.com/paragonie/random_compat"
  5417. },
  5418. "time": "2020-10-15T08:29:30+00:00"
  5419. },
  5420. {
  5421. "name": "phpoption/phpoption",
  5422. "version": "1.9.4",
  5423. "source": {
  5424. "type": "git",
  5425. "url": "https://github.com/schmittjoh/php-option.git",
  5426. "reference": "638a154f8d4ee6a5cfa96d6a34dfbe0cffa9566d"
  5427. },
  5428. "dist": {
  5429. "type": "zip",
  5430. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/638a154f8d4ee6a5cfa96d6a34dfbe0cffa9566d",
  5431. "reference": "638a154f8d4ee6a5cfa96d6a34dfbe0cffa9566d",
  5432. "shasum": ""
  5433. },
  5434. "require": {
  5435. "php": "^7.2.5 || ^8.0"
  5436. },
  5437. "require-dev": {
  5438. "bamarni/composer-bin-plugin": "^1.8.2",
  5439. "phpunit/phpunit": "^8.5.44 || ^9.6.25 || ^10.5.53 || ^11.5.34"
  5440. },
  5441. "type": "library",
  5442. "extra": {
  5443. "bamarni-bin": {
  5444. "bin-links": true,
  5445. "forward-command": false
  5446. },
  5447. "branch-alias": {
  5448. "dev-master": "1.9-dev"
  5449. }
  5450. },
  5451. "autoload": {
  5452. "psr-4": {
  5453. "PhpOption\\": "src/PhpOption/"
  5454. }
  5455. },
  5456. "notification-url": "https://packagist.org/downloads/",
  5457. "license": [
  5458. "Apache-2.0"
  5459. ],
  5460. "authors": [
  5461. {
  5462. "name": "Johannes M. Schmitt",
  5463. "email": "schmittjoh@gmail.com",
  5464. "homepage": "https://github.com/schmittjoh"
  5465. },
  5466. {
  5467. "name": "Graham Campbell",
  5468. "email": "hello@gjcampbell.co.uk",
  5469. "homepage": "https://github.com/GrahamCampbell"
  5470. }
  5471. ],
  5472. "description": "Option Type for PHP",
  5473. "keywords": [
  5474. "language",
  5475. "option",
  5476. "php",
  5477. "type"
  5478. ],
  5479. "support": {
  5480. "issues": "https://github.com/schmittjoh/php-option/issues",
  5481. "source": "https://github.com/schmittjoh/php-option/tree/1.9.4"
  5482. },
  5483. "funding": [
  5484. {
  5485. "url": "https://github.com/GrahamCampbell",
  5486. "type": "github"
  5487. },
  5488. {
  5489. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  5490. "type": "tidelift"
  5491. }
  5492. ],
  5493. "time": "2025-08-21T11:53:16+00:00"
  5494. },
  5495. {
  5496. "name": "phpseclib/phpseclib",
  5497. "version": "3.0.46",
  5498. "source": {
  5499. "type": "git",
  5500. "url": "https://github.com/phpseclib/phpseclib.git",
  5501. "reference": "56483a7de62a6c2a6635e42e93b8a9e25d4f0ec6"
  5502. },
  5503. "dist": {
  5504. "type": "zip",
  5505. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/56483a7de62a6c2a6635e42e93b8a9e25d4f0ec6",
  5506. "reference": "56483a7de62a6c2a6635e42e93b8a9e25d4f0ec6",
  5507. "shasum": ""
  5508. },
  5509. "require": {
  5510. "paragonie/constant_time_encoding": "^1|^2|^3",
  5511. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  5512. "php": ">=5.6.1"
  5513. },
  5514. "require-dev": {
  5515. "phpunit/phpunit": "*"
  5516. },
  5517. "suggest": {
  5518. "ext-dom": "Install the DOM extension to load XML formatted public keys.",
  5519. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  5520. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  5521. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  5522. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  5523. },
  5524. "type": "library",
  5525. "autoload": {
  5526. "files": [
  5527. "phpseclib/bootstrap.php"
  5528. ],
  5529. "psr-4": {
  5530. "phpseclib3\\": "phpseclib/"
  5531. }
  5532. },
  5533. "notification-url": "https://packagist.org/downloads/",
  5534. "license": [
  5535. "MIT"
  5536. ],
  5537. "authors": [
  5538. {
  5539. "name": "Jim Wigginton",
  5540. "email": "terrafrost@php.net",
  5541. "role": "Lead Developer"
  5542. },
  5543. {
  5544. "name": "Patrick Monnerat",
  5545. "email": "pm@datasphere.ch",
  5546. "role": "Developer"
  5547. },
  5548. {
  5549. "name": "Andreas Fischer",
  5550. "email": "bantu@phpbb.com",
  5551. "role": "Developer"
  5552. },
  5553. {
  5554. "name": "Hans-Jürgen Petrich",
  5555. "email": "petrich@tronic-media.com",
  5556. "role": "Developer"
  5557. },
  5558. {
  5559. "name": "Graham Campbell",
  5560. "email": "graham@alt-three.com",
  5561. "role": "Developer"
  5562. }
  5563. ],
  5564. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  5565. "homepage": "http://phpseclib.sourceforge.net",
  5566. "keywords": [
  5567. "BigInteger",
  5568. "aes",
  5569. "asn.1",
  5570. "asn1",
  5571. "blowfish",
  5572. "crypto",
  5573. "cryptography",
  5574. "encryption",
  5575. "rsa",
  5576. "security",
  5577. "sftp",
  5578. "signature",
  5579. "signing",
  5580. "ssh",
  5581. "twofish",
  5582. "x.509",
  5583. "x509"
  5584. ],
  5585. "support": {
  5586. "issues": "https://github.com/phpseclib/phpseclib/issues",
  5587. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.46"
  5588. },
  5589. "funding": [
  5590. {
  5591. "url": "https://github.com/terrafrost",
  5592. "type": "github"
  5593. },
  5594. {
  5595. "url": "https://www.patreon.com/phpseclib",
  5596. "type": "patreon"
  5597. },
  5598. {
  5599. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  5600. "type": "tidelift"
  5601. }
  5602. ],
  5603. "time": "2025-06-26T16:29:55+00:00"
  5604. },
  5605. {
  5606. "name": "psr/cache",
  5607. "version": "3.0.0",
  5608. "source": {
  5609. "type": "git",
  5610. "url": "https://github.com/php-fig/cache.git",
  5611. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  5612. },
  5613. "dist": {
  5614. "type": "zip",
  5615. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5616. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5617. "shasum": ""
  5618. },
  5619. "require": {
  5620. "php": ">=8.0.0"
  5621. },
  5622. "type": "library",
  5623. "extra": {
  5624. "branch-alias": {
  5625. "dev-master": "1.0.x-dev"
  5626. }
  5627. },
  5628. "autoload": {
  5629. "psr-4": {
  5630. "Psr\\Cache\\": "src/"
  5631. }
  5632. },
  5633. "notification-url": "https://packagist.org/downloads/",
  5634. "license": [
  5635. "MIT"
  5636. ],
  5637. "authors": [
  5638. {
  5639. "name": "PHP-FIG",
  5640. "homepage": "https://www.php-fig.org/"
  5641. }
  5642. ],
  5643. "description": "Common interface for caching libraries",
  5644. "keywords": [
  5645. "cache",
  5646. "psr",
  5647. "psr-6"
  5648. ],
  5649. "support": {
  5650. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  5651. },
  5652. "time": "2021-02-03T23:26:27+00:00"
  5653. },
  5654. {
  5655. "name": "psr/clock",
  5656. "version": "1.0.0",
  5657. "source": {
  5658. "type": "git",
  5659. "url": "https://github.com/php-fig/clock.git",
  5660. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  5661. },
  5662. "dist": {
  5663. "type": "zip",
  5664. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5665. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5666. "shasum": ""
  5667. },
  5668. "require": {
  5669. "php": "^7.0 || ^8.0"
  5670. },
  5671. "type": "library",
  5672. "autoload": {
  5673. "psr-4": {
  5674. "Psr\\Clock\\": "src/"
  5675. }
  5676. },
  5677. "notification-url": "https://packagist.org/downloads/",
  5678. "license": [
  5679. "MIT"
  5680. ],
  5681. "authors": [
  5682. {
  5683. "name": "PHP-FIG",
  5684. "homepage": "https://www.php-fig.org/"
  5685. }
  5686. ],
  5687. "description": "Common interface for reading the clock.",
  5688. "homepage": "https://github.com/php-fig/clock",
  5689. "keywords": [
  5690. "clock",
  5691. "now",
  5692. "psr",
  5693. "psr-20",
  5694. "time"
  5695. ],
  5696. "support": {
  5697. "issues": "https://github.com/php-fig/clock/issues",
  5698. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  5699. },
  5700. "time": "2022-11-25T14:36:26+00:00"
  5701. },
  5702. {
  5703. "name": "psr/container",
  5704. "version": "2.0.2",
  5705. "source": {
  5706. "type": "git",
  5707. "url": "https://github.com/php-fig/container.git",
  5708. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  5709. },
  5710. "dist": {
  5711. "type": "zip",
  5712. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5713. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5714. "shasum": ""
  5715. },
  5716. "require": {
  5717. "php": ">=7.4.0"
  5718. },
  5719. "type": "library",
  5720. "extra": {
  5721. "branch-alias": {
  5722. "dev-master": "2.0.x-dev"
  5723. }
  5724. },
  5725. "autoload": {
  5726. "psr-4": {
  5727. "Psr\\Container\\": "src/"
  5728. }
  5729. },
  5730. "notification-url": "https://packagist.org/downloads/",
  5731. "license": [
  5732. "MIT"
  5733. ],
  5734. "authors": [
  5735. {
  5736. "name": "PHP-FIG",
  5737. "homepage": "https://www.php-fig.org/"
  5738. }
  5739. ],
  5740. "description": "Common Container Interface (PHP FIG PSR-11)",
  5741. "homepage": "https://github.com/php-fig/container",
  5742. "keywords": [
  5743. "PSR-11",
  5744. "container",
  5745. "container-interface",
  5746. "container-interop",
  5747. "psr"
  5748. ],
  5749. "support": {
  5750. "issues": "https://github.com/php-fig/container/issues",
  5751. "source": "https://github.com/php-fig/container/tree/2.0.2"
  5752. },
  5753. "time": "2021-11-05T16:47:00+00:00"
  5754. },
  5755. {
  5756. "name": "psr/event-dispatcher",
  5757. "version": "1.0.0",
  5758. "source": {
  5759. "type": "git",
  5760. "url": "https://github.com/php-fig/event-dispatcher.git",
  5761. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5762. },
  5763. "dist": {
  5764. "type": "zip",
  5765. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5766. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5767. "shasum": ""
  5768. },
  5769. "require": {
  5770. "php": ">=7.2.0"
  5771. },
  5772. "type": "library",
  5773. "extra": {
  5774. "branch-alias": {
  5775. "dev-master": "1.0.x-dev"
  5776. }
  5777. },
  5778. "autoload": {
  5779. "psr-4": {
  5780. "Psr\\EventDispatcher\\": "src/"
  5781. }
  5782. },
  5783. "notification-url": "https://packagist.org/downloads/",
  5784. "license": [
  5785. "MIT"
  5786. ],
  5787. "authors": [
  5788. {
  5789. "name": "PHP-FIG",
  5790. "homepage": "http://www.php-fig.org/"
  5791. }
  5792. ],
  5793. "description": "Standard interfaces for event handling.",
  5794. "keywords": [
  5795. "events",
  5796. "psr",
  5797. "psr-14"
  5798. ],
  5799. "support": {
  5800. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5801. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5802. },
  5803. "time": "2019-01-08T18:20:26+00:00"
  5804. },
  5805. {
  5806. "name": "psr/http-client",
  5807. "version": "1.0.3",
  5808. "source": {
  5809. "type": "git",
  5810. "url": "https://github.com/php-fig/http-client.git",
  5811. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  5812. },
  5813. "dist": {
  5814. "type": "zip",
  5815. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5816. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5817. "shasum": ""
  5818. },
  5819. "require": {
  5820. "php": "^7.0 || ^8.0",
  5821. "psr/http-message": "^1.0 || ^2.0"
  5822. },
  5823. "type": "library",
  5824. "extra": {
  5825. "branch-alias": {
  5826. "dev-master": "1.0.x-dev"
  5827. }
  5828. },
  5829. "autoload": {
  5830. "psr-4": {
  5831. "Psr\\Http\\Client\\": "src/"
  5832. }
  5833. },
  5834. "notification-url": "https://packagist.org/downloads/",
  5835. "license": [
  5836. "MIT"
  5837. ],
  5838. "authors": [
  5839. {
  5840. "name": "PHP-FIG",
  5841. "homepage": "https://www.php-fig.org/"
  5842. }
  5843. ],
  5844. "description": "Common interface for HTTP clients",
  5845. "homepage": "https://github.com/php-fig/http-client",
  5846. "keywords": [
  5847. "http",
  5848. "http-client",
  5849. "psr",
  5850. "psr-18"
  5851. ],
  5852. "support": {
  5853. "source": "https://github.com/php-fig/http-client"
  5854. },
  5855. "time": "2023-09-23T14:17:50+00:00"
  5856. },
  5857. {
  5858. "name": "psr/http-factory",
  5859. "version": "1.1.0",
  5860. "source": {
  5861. "type": "git",
  5862. "url": "https://github.com/php-fig/http-factory.git",
  5863. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  5864. },
  5865. "dist": {
  5866. "type": "zip",
  5867. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5868. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5869. "shasum": ""
  5870. },
  5871. "require": {
  5872. "php": ">=7.1",
  5873. "psr/http-message": "^1.0 || ^2.0"
  5874. },
  5875. "type": "library",
  5876. "extra": {
  5877. "branch-alias": {
  5878. "dev-master": "1.0.x-dev"
  5879. }
  5880. },
  5881. "autoload": {
  5882. "psr-4": {
  5883. "Psr\\Http\\Message\\": "src/"
  5884. }
  5885. },
  5886. "notification-url": "https://packagist.org/downloads/",
  5887. "license": [
  5888. "MIT"
  5889. ],
  5890. "authors": [
  5891. {
  5892. "name": "PHP-FIG",
  5893. "homepage": "https://www.php-fig.org/"
  5894. }
  5895. ],
  5896. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  5897. "keywords": [
  5898. "factory",
  5899. "http",
  5900. "message",
  5901. "psr",
  5902. "psr-17",
  5903. "psr-7",
  5904. "request",
  5905. "response"
  5906. ],
  5907. "support": {
  5908. "source": "https://github.com/php-fig/http-factory"
  5909. },
  5910. "time": "2024-04-15T12:06:14+00:00"
  5911. },
  5912. {
  5913. "name": "psr/http-message",
  5914. "version": "2.0",
  5915. "source": {
  5916. "type": "git",
  5917. "url": "https://github.com/php-fig/http-message.git",
  5918. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  5919. },
  5920. "dist": {
  5921. "type": "zip",
  5922. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5923. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5924. "shasum": ""
  5925. },
  5926. "require": {
  5927. "php": "^7.2 || ^8.0"
  5928. },
  5929. "type": "library",
  5930. "extra": {
  5931. "branch-alias": {
  5932. "dev-master": "2.0.x-dev"
  5933. }
  5934. },
  5935. "autoload": {
  5936. "psr-4": {
  5937. "Psr\\Http\\Message\\": "src/"
  5938. }
  5939. },
  5940. "notification-url": "https://packagist.org/downloads/",
  5941. "license": [
  5942. "MIT"
  5943. ],
  5944. "authors": [
  5945. {
  5946. "name": "PHP-FIG",
  5947. "homepage": "https://www.php-fig.org/"
  5948. }
  5949. ],
  5950. "description": "Common interface for HTTP messages",
  5951. "homepage": "https://github.com/php-fig/http-message",
  5952. "keywords": [
  5953. "http",
  5954. "http-message",
  5955. "psr",
  5956. "psr-7",
  5957. "request",
  5958. "response"
  5959. ],
  5960. "support": {
  5961. "source": "https://github.com/php-fig/http-message/tree/2.0"
  5962. },
  5963. "time": "2023-04-04T09:54:51+00:00"
  5964. },
  5965. {
  5966. "name": "psr/log",
  5967. "version": "3.0.2",
  5968. "source": {
  5969. "type": "git",
  5970. "url": "https://github.com/php-fig/log.git",
  5971. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  5972. },
  5973. "dist": {
  5974. "type": "zip",
  5975. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  5976. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  5977. "shasum": ""
  5978. },
  5979. "require": {
  5980. "php": ">=8.0.0"
  5981. },
  5982. "type": "library",
  5983. "extra": {
  5984. "branch-alias": {
  5985. "dev-master": "3.x-dev"
  5986. }
  5987. },
  5988. "autoload": {
  5989. "psr-4": {
  5990. "Psr\\Log\\": "src"
  5991. }
  5992. },
  5993. "notification-url": "https://packagist.org/downloads/",
  5994. "license": [
  5995. "MIT"
  5996. ],
  5997. "authors": [
  5998. {
  5999. "name": "PHP-FIG",
  6000. "homepage": "https://www.php-fig.org/"
  6001. }
  6002. ],
  6003. "description": "Common interface for logging libraries",
  6004. "homepage": "https://github.com/php-fig/log",
  6005. "keywords": [
  6006. "log",
  6007. "psr",
  6008. "psr-3"
  6009. ],
  6010. "support": {
  6011. "source": "https://github.com/php-fig/log/tree/3.0.2"
  6012. },
  6013. "time": "2024-09-11T13:17:53+00:00"
  6014. },
  6015. {
  6016. "name": "psr/simple-cache",
  6017. "version": "3.0.0",
  6018. "source": {
  6019. "type": "git",
  6020. "url": "https://github.com/php-fig/simple-cache.git",
  6021. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  6022. },
  6023. "dist": {
  6024. "type": "zip",
  6025. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6026. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6027. "shasum": ""
  6028. },
  6029. "require": {
  6030. "php": ">=8.0.0"
  6031. },
  6032. "type": "library",
  6033. "extra": {
  6034. "branch-alias": {
  6035. "dev-master": "3.0.x-dev"
  6036. }
  6037. },
  6038. "autoload": {
  6039. "psr-4": {
  6040. "Psr\\SimpleCache\\": "src/"
  6041. }
  6042. },
  6043. "notification-url": "https://packagist.org/downloads/",
  6044. "license": [
  6045. "MIT"
  6046. ],
  6047. "authors": [
  6048. {
  6049. "name": "PHP-FIG",
  6050. "homepage": "https://www.php-fig.org/"
  6051. }
  6052. ],
  6053. "description": "Common interfaces for simple caching",
  6054. "keywords": [
  6055. "cache",
  6056. "caching",
  6057. "psr",
  6058. "psr-16",
  6059. "simple-cache"
  6060. ],
  6061. "support": {
  6062. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  6063. },
  6064. "time": "2021-10-29T13:26:27+00:00"
  6065. },
  6066. {
  6067. "name": "psy/psysh",
  6068. "version": "v0.12.10",
  6069. "source": {
  6070. "type": "git",
  6071. "url": "https://github.com/bobthecow/psysh.git",
  6072. "reference": "6e80abe6f2257121f1eb9a4c55bf29d921025b22"
  6073. },
  6074. "dist": {
  6075. "type": "zip",
  6076. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/6e80abe6f2257121f1eb9a4c55bf29d921025b22",
  6077. "reference": "6e80abe6f2257121f1eb9a4c55bf29d921025b22",
  6078. "shasum": ""
  6079. },
  6080. "require": {
  6081. "ext-json": "*",
  6082. "ext-tokenizer": "*",
  6083. "nikic/php-parser": "^5.0 || ^4.0",
  6084. "php": "^8.0 || ^7.4",
  6085. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  6086. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  6087. },
  6088. "conflict": {
  6089. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  6090. },
  6091. "require-dev": {
  6092. "bamarni/composer-bin-plugin": "^1.2"
  6093. },
  6094. "suggest": {
  6095. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  6096. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  6097. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  6098. },
  6099. "bin": [
  6100. "bin/psysh"
  6101. ],
  6102. "type": "library",
  6103. "extra": {
  6104. "bamarni-bin": {
  6105. "bin-links": false,
  6106. "forward-command": false
  6107. },
  6108. "branch-alias": {
  6109. "dev-main": "0.12.x-dev"
  6110. }
  6111. },
  6112. "autoload": {
  6113. "files": [
  6114. "src/functions.php"
  6115. ],
  6116. "psr-4": {
  6117. "Psy\\": "src/"
  6118. }
  6119. },
  6120. "notification-url": "https://packagist.org/downloads/",
  6121. "license": [
  6122. "MIT"
  6123. ],
  6124. "authors": [
  6125. {
  6126. "name": "Justin Hileman",
  6127. "email": "justin@justinhileman.info"
  6128. }
  6129. ],
  6130. "description": "An interactive shell for modern PHP.",
  6131. "homepage": "https://psysh.org",
  6132. "keywords": [
  6133. "REPL",
  6134. "console",
  6135. "interactive",
  6136. "shell"
  6137. ],
  6138. "support": {
  6139. "issues": "https://github.com/bobthecow/psysh/issues",
  6140. "source": "https://github.com/bobthecow/psysh/tree/v0.12.10"
  6141. },
  6142. "time": "2025-08-04T12:39:37+00:00"
  6143. },
  6144. {
  6145. "name": "ralouphie/getallheaders",
  6146. "version": "3.0.3",
  6147. "source": {
  6148. "type": "git",
  6149. "url": "https://github.com/ralouphie/getallheaders.git",
  6150. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  6151. },
  6152. "dist": {
  6153. "type": "zip",
  6154. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  6155. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  6156. "shasum": ""
  6157. },
  6158. "require": {
  6159. "php": ">=5.6"
  6160. },
  6161. "require-dev": {
  6162. "php-coveralls/php-coveralls": "^2.1",
  6163. "phpunit/phpunit": "^5 || ^6.5"
  6164. },
  6165. "type": "library",
  6166. "autoload": {
  6167. "files": [
  6168. "src/getallheaders.php"
  6169. ]
  6170. },
  6171. "notification-url": "https://packagist.org/downloads/",
  6172. "license": [
  6173. "MIT"
  6174. ],
  6175. "authors": [
  6176. {
  6177. "name": "Ralph Khattar",
  6178. "email": "ralph.khattar@gmail.com"
  6179. }
  6180. ],
  6181. "description": "A polyfill for getallheaders.",
  6182. "support": {
  6183. "issues": "https://github.com/ralouphie/getallheaders/issues",
  6184. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  6185. },
  6186. "time": "2019-03-08T08:55:37+00:00"
  6187. },
  6188. {
  6189. "name": "ramsey/collection",
  6190. "version": "2.1.1",
  6191. "source": {
  6192. "type": "git",
  6193. "url": "https://github.com/ramsey/collection.git",
  6194. "reference": "344572933ad0181accbf4ba763e85a0306a8c5e2"
  6195. },
  6196. "dist": {
  6197. "type": "zip",
  6198. "url": "https://api.github.com/repos/ramsey/collection/zipball/344572933ad0181accbf4ba763e85a0306a8c5e2",
  6199. "reference": "344572933ad0181accbf4ba763e85a0306a8c5e2",
  6200. "shasum": ""
  6201. },
  6202. "require": {
  6203. "php": "^8.1"
  6204. },
  6205. "require-dev": {
  6206. "captainhook/plugin-composer": "^5.3",
  6207. "ergebnis/composer-normalize": "^2.45",
  6208. "fakerphp/faker": "^1.24",
  6209. "hamcrest/hamcrest-php": "^2.0",
  6210. "jangregor/phpstan-prophecy": "^2.1",
  6211. "mockery/mockery": "^1.6",
  6212. "php-parallel-lint/php-console-highlighter": "^1.0",
  6213. "php-parallel-lint/php-parallel-lint": "^1.4",
  6214. "phpspec/prophecy-phpunit": "^2.3",
  6215. "phpstan/extension-installer": "^1.4",
  6216. "phpstan/phpstan": "^2.1",
  6217. "phpstan/phpstan-mockery": "^2.0",
  6218. "phpstan/phpstan-phpunit": "^2.0",
  6219. "phpunit/phpunit": "^10.5",
  6220. "ramsey/coding-standard": "^2.3",
  6221. "ramsey/conventional-commits": "^1.6",
  6222. "roave/security-advisories": "dev-latest"
  6223. },
  6224. "type": "library",
  6225. "extra": {
  6226. "captainhook": {
  6227. "force-install": true
  6228. },
  6229. "ramsey/conventional-commits": {
  6230. "configFile": "conventional-commits.json"
  6231. }
  6232. },
  6233. "autoload": {
  6234. "psr-4": {
  6235. "Ramsey\\Collection\\": "src/"
  6236. }
  6237. },
  6238. "notification-url": "https://packagist.org/downloads/",
  6239. "license": [
  6240. "MIT"
  6241. ],
  6242. "authors": [
  6243. {
  6244. "name": "Ben Ramsey",
  6245. "email": "ben@benramsey.com",
  6246. "homepage": "https://benramsey.com"
  6247. }
  6248. ],
  6249. "description": "A PHP library for representing and manipulating collections.",
  6250. "keywords": [
  6251. "array",
  6252. "collection",
  6253. "hash",
  6254. "map",
  6255. "queue",
  6256. "set"
  6257. ],
  6258. "support": {
  6259. "issues": "https://github.com/ramsey/collection/issues",
  6260. "source": "https://github.com/ramsey/collection/tree/2.1.1"
  6261. },
  6262. "time": "2025-03-22T05:38:12+00:00"
  6263. },
  6264. {
  6265. "name": "ramsey/uuid",
  6266. "version": "4.9.0",
  6267. "source": {
  6268. "type": "git",
  6269. "url": "https://github.com/ramsey/uuid.git",
  6270. "reference": "4e0e23cc785f0724a0e838279a9eb03f28b092a0"
  6271. },
  6272. "dist": {
  6273. "type": "zip",
  6274. "url": "https://api.github.com/repos/ramsey/uuid/zipball/4e0e23cc785f0724a0e838279a9eb03f28b092a0",
  6275. "reference": "4e0e23cc785f0724a0e838279a9eb03f28b092a0",
  6276. "shasum": ""
  6277. },
  6278. "require": {
  6279. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12 || ^0.13",
  6280. "php": "^8.0",
  6281. "ramsey/collection": "^1.2 || ^2.0"
  6282. },
  6283. "replace": {
  6284. "rhumsaa/uuid": "self.version"
  6285. },
  6286. "require-dev": {
  6287. "captainhook/captainhook": "^5.25",
  6288. "captainhook/plugin-composer": "^5.3",
  6289. "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
  6290. "ergebnis/composer-normalize": "^2.47",
  6291. "mockery/mockery": "^1.6",
  6292. "paragonie/random-lib": "^2",
  6293. "php-mock/php-mock": "^2.6",
  6294. "php-mock/php-mock-mockery": "^1.5",
  6295. "php-parallel-lint/php-parallel-lint": "^1.4.0",
  6296. "phpbench/phpbench": "^1.2.14",
  6297. "phpstan/extension-installer": "^1.4",
  6298. "phpstan/phpstan": "^2.1",
  6299. "phpstan/phpstan-mockery": "^2.0",
  6300. "phpstan/phpstan-phpunit": "^2.0",
  6301. "phpunit/phpunit": "^9.6",
  6302. "slevomat/coding-standard": "^8.18",
  6303. "squizlabs/php_codesniffer": "^3.13"
  6304. },
  6305. "suggest": {
  6306. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  6307. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  6308. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  6309. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  6310. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  6311. },
  6312. "type": "library",
  6313. "extra": {
  6314. "captainhook": {
  6315. "force-install": true
  6316. }
  6317. },
  6318. "autoload": {
  6319. "files": [
  6320. "src/functions.php"
  6321. ],
  6322. "psr-4": {
  6323. "Ramsey\\Uuid\\": "src/"
  6324. }
  6325. },
  6326. "notification-url": "https://packagist.org/downloads/",
  6327. "license": [
  6328. "MIT"
  6329. ],
  6330. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  6331. "keywords": [
  6332. "guid",
  6333. "identifier",
  6334. "uuid"
  6335. ],
  6336. "support": {
  6337. "issues": "https://github.com/ramsey/uuid/issues",
  6338. "source": "https://github.com/ramsey/uuid/tree/4.9.0"
  6339. },
  6340. "time": "2025-06-25T14:20:11+00:00"
  6341. },
  6342. {
  6343. "name": "ryangjchandler/blade-capture-directive",
  6344. "version": "v1.1.0",
  6345. "source": {
  6346. "type": "git",
  6347. "url": "https://github.com/ryangjchandler/blade-capture-directive.git",
  6348. "reference": "bbb1513dfd89eaec87a47fe0c449a7e3d4a1976d"
  6349. },
  6350. "dist": {
  6351. "type": "zip",
  6352. "url": "https://api.github.com/repos/ryangjchandler/blade-capture-directive/zipball/bbb1513dfd89eaec87a47fe0c449a7e3d4a1976d",
  6353. "reference": "bbb1513dfd89eaec87a47fe0c449a7e3d4a1976d",
  6354. "shasum": ""
  6355. },
  6356. "require": {
  6357. "illuminate/contracts": "^10.0|^11.0|^12.0",
  6358. "php": "^8.1",
  6359. "spatie/laravel-package-tools": "^1.9.2"
  6360. },
  6361. "require-dev": {
  6362. "nunomaduro/collision": "^7.0|^8.0",
  6363. "nunomaduro/larastan": "^2.0|^3.0",
  6364. "orchestra/testbench": "^8.0|^9.0|^10.0",
  6365. "pestphp/pest": "^2.0|^3.7",
  6366. "pestphp/pest-plugin-laravel": "^2.0|^3.1",
  6367. "phpstan/extension-installer": "^1.1",
  6368. "phpstan/phpstan-deprecation-rules": "^1.0|^2.0",
  6369. "phpstan/phpstan-phpunit": "^1.0|^2.0",
  6370. "phpunit/phpunit": "^10.0|^11.5.3",
  6371. "spatie/laravel-ray": "^1.26"
  6372. },
  6373. "type": "library",
  6374. "extra": {
  6375. "laravel": {
  6376. "aliases": {
  6377. "BladeCaptureDirective": "RyanChandler\\BladeCaptureDirective\\Facades\\BladeCaptureDirective"
  6378. },
  6379. "providers": [
  6380. "RyanChandler\\BladeCaptureDirective\\BladeCaptureDirectiveServiceProvider"
  6381. ]
  6382. }
  6383. },
  6384. "autoload": {
  6385. "psr-4": {
  6386. "RyanChandler\\BladeCaptureDirective\\": "src",
  6387. "RyanChandler\\BladeCaptureDirective\\Database\\Factories\\": "database/factories"
  6388. }
  6389. },
  6390. "notification-url": "https://packagist.org/downloads/",
  6391. "license": [
  6392. "MIT"
  6393. ],
  6394. "authors": [
  6395. {
  6396. "name": "Ryan Chandler",
  6397. "email": "support@ryangjchandler.co.uk",
  6398. "role": "Developer"
  6399. }
  6400. ],
  6401. "description": "Create inline partials in your Blade templates with ease.",
  6402. "homepage": "https://github.com/ryangjchandler/blade-capture-directive",
  6403. "keywords": [
  6404. "blade-capture-directive",
  6405. "laravel",
  6406. "ryangjchandler"
  6407. ],
  6408. "support": {
  6409. "issues": "https://github.com/ryangjchandler/blade-capture-directive/issues",
  6410. "source": "https://github.com/ryangjchandler/blade-capture-directive/tree/v1.1.0"
  6411. },
  6412. "funding": [
  6413. {
  6414. "url": "https://github.com/ryangjchandler",
  6415. "type": "github"
  6416. }
  6417. ],
  6418. "time": "2025-02-25T09:09:36+00:00"
  6419. },
  6420. {
  6421. "name": "spatie/color",
  6422. "version": "1.8.0",
  6423. "source": {
  6424. "type": "git",
  6425. "url": "https://github.com/spatie/color.git",
  6426. "reference": "142af7fec069a420babea80a5412eb2f646dcd8c"
  6427. },
  6428. "dist": {
  6429. "type": "zip",
  6430. "url": "https://api.github.com/repos/spatie/color/zipball/142af7fec069a420babea80a5412eb2f646dcd8c",
  6431. "reference": "142af7fec069a420babea80a5412eb2f646dcd8c",
  6432. "shasum": ""
  6433. },
  6434. "require": {
  6435. "php": "^7.3|^8.0"
  6436. },
  6437. "require-dev": {
  6438. "pestphp/pest": "^1.22",
  6439. "phpunit/phpunit": "^6.5||^9.0"
  6440. },
  6441. "type": "library",
  6442. "autoload": {
  6443. "psr-4": {
  6444. "Spatie\\Color\\": "src"
  6445. }
  6446. },
  6447. "notification-url": "https://packagist.org/downloads/",
  6448. "license": [
  6449. "MIT"
  6450. ],
  6451. "authors": [
  6452. {
  6453. "name": "Sebastian De Deyne",
  6454. "email": "sebastian@spatie.be",
  6455. "homepage": "https://spatie.be",
  6456. "role": "Developer"
  6457. }
  6458. ],
  6459. "description": "A little library to handle color conversions",
  6460. "homepage": "https://github.com/spatie/color",
  6461. "keywords": [
  6462. "color",
  6463. "conversion",
  6464. "rgb",
  6465. "spatie"
  6466. ],
  6467. "support": {
  6468. "issues": "https://github.com/spatie/color/issues",
  6469. "source": "https://github.com/spatie/color/tree/1.8.0"
  6470. },
  6471. "funding": [
  6472. {
  6473. "url": "https://github.com/spatie",
  6474. "type": "github"
  6475. }
  6476. ],
  6477. "time": "2025-02-10T09:22:41+00:00"
  6478. },
  6479. {
  6480. "name": "spatie/invade",
  6481. "version": "2.1.0",
  6482. "source": {
  6483. "type": "git",
  6484. "url": "https://github.com/spatie/invade.git",
  6485. "reference": "b920f6411d21df4e8610a138e2e87ae4957d7f63"
  6486. },
  6487. "dist": {
  6488. "type": "zip",
  6489. "url": "https://api.github.com/repos/spatie/invade/zipball/b920f6411d21df4e8610a138e2e87ae4957d7f63",
  6490. "reference": "b920f6411d21df4e8610a138e2e87ae4957d7f63",
  6491. "shasum": ""
  6492. },
  6493. "require": {
  6494. "php": "^8.0"
  6495. },
  6496. "require-dev": {
  6497. "pestphp/pest": "^1.20",
  6498. "phpstan/phpstan": "^1.4",
  6499. "spatie/ray": "^1.28"
  6500. },
  6501. "type": "library",
  6502. "autoload": {
  6503. "files": [
  6504. "src/functions.php"
  6505. ],
  6506. "psr-4": {
  6507. "Spatie\\Invade\\": "src"
  6508. }
  6509. },
  6510. "notification-url": "https://packagist.org/downloads/",
  6511. "license": [
  6512. "MIT"
  6513. ],
  6514. "authors": [
  6515. {
  6516. "name": "Freek Van der Herten",
  6517. "email": "freek@spatie.be",
  6518. "role": "Developer"
  6519. }
  6520. ],
  6521. "description": "A PHP function to work with private properties and methods",
  6522. "homepage": "https://github.com/spatie/invade",
  6523. "keywords": [
  6524. "invade",
  6525. "spatie"
  6526. ],
  6527. "support": {
  6528. "source": "https://github.com/spatie/invade/tree/2.1.0"
  6529. },
  6530. "funding": [
  6531. {
  6532. "url": "https://github.com/spatie",
  6533. "type": "github"
  6534. }
  6535. ],
  6536. "time": "2024-05-17T09:06:10+00:00"
  6537. },
  6538. {
  6539. "name": "spatie/laravel-package-tools",
  6540. "version": "1.92.7",
  6541. "source": {
  6542. "type": "git",
  6543. "url": "https://github.com/spatie/laravel-package-tools.git",
  6544. "reference": "f09a799850b1ed765103a4f0b4355006360c49a5"
  6545. },
  6546. "dist": {
  6547. "type": "zip",
  6548. "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/f09a799850b1ed765103a4f0b4355006360c49a5",
  6549. "reference": "f09a799850b1ed765103a4f0b4355006360c49a5",
  6550. "shasum": ""
  6551. },
  6552. "require": {
  6553. "illuminate/contracts": "^9.28|^10.0|^11.0|^12.0",
  6554. "php": "^8.0"
  6555. },
  6556. "require-dev": {
  6557. "mockery/mockery": "^1.5",
  6558. "orchestra/testbench": "^7.7|^8.0|^9.0|^10.0",
  6559. "pestphp/pest": "^1.23|^2.1|^3.1",
  6560. "phpunit/php-code-coverage": "^9.0|^10.0|^11.0",
  6561. "phpunit/phpunit": "^9.5.24|^10.5|^11.5",
  6562. "spatie/pest-plugin-test-time": "^1.1|^2.2"
  6563. },
  6564. "type": "library",
  6565. "autoload": {
  6566. "psr-4": {
  6567. "Spatie\\LaravelPackageTools\\": "src"
  6568. }
  6569. },
  6570. "notification-url": "https://packagist.org/downloads/",
  6571. "license": [
  6572. "MIT"
  6573. ],
  6574. "authors": [
  6575. {
  6576. "name": "Freek Van der Herten",
  6577. "email": "freek@spatie.be",
  6578. "role": "Developer"
  6579. }
  6580. ],
  6581. "description": "Tools for creating Laravel packages",
  6582. "homepage": "https://github.com/spatie/laravel-package-tools",
  6583. "keywords": [
  6584. "laravel-package-tools",
  6585. "spatie"
  6586. ],
  6587. "support": {
  6588. "issues": "https://github.com/spatie/laravel-package-tools/issues",
  6589. "source": "https://github.com/spatie/laravel-package-tools/tree/1.92.7"
  6590. },
  6591. "funding": [
  6592. {
  6593. "url": "https://github.com/spatie",
  6594. "type": "github"
  6595. }
  6596. ],
  6597. "time": "2025-07-17T15:46:43+00:00"
  6598. },
  6599. {
  6600. "name": "squirephp/model",
  6601. "version": "v3.10.1",
  6602. "source": {
  6603. "type": "git",
  6604. "url": "https://github.com/squirephp/model.git",
  6605. "reference": "cdfb6eafff8ed8d7810aff7826623a9a0196a680"
  6606. },
  6607. "dist": {
  6608. "type": "zip",
  6609. "url": "https://api.github.com/repos/squirephp/model/zipball/cdfb6eafff8ed8d7810aff7826623a9a0196a680",
  6610. "reference": "cdfb6eafff8ed8d7810aff7826623a9a0196a680",
  6611. "shasum": ""
  6612. },
  6613. "require": {
  6614. "ext-pdo_sqlite": "*",
  6615. "illuminate/database": "^8.40|^9.0|^10.0|^11.0|^12.0",
  6616. "illuminate/support": "^8.0|^9.0|^10.0|^11.0|^12.0",
  6617. "php": "^8.0"
  6618. },
  6619. "type": "library",
  6620. "extra": {
  6621. "laravel": {
  6622. "providers": [
  6623. "Squire\\ModelServiceProvider"
  6624. ]
  6625. }
  6626. },
  6627. "autoload": {
  6628. "psr-4": {
  6629. "Squire\\": "src"
  6630. }
  6631. },
  6632. "notification-url": "https://packagist.org/downloads/",
  6633. "license": [
  6634. "MIT"
  6635. ],
  6636. "authors": [
  6637. {
  6638. "name": "Dan Harrin",
  6639. "email": "dan@danharrin.com"
  6640. }
  6641. ],
  6642. "description": "A library containing the base Squire model class.",
  6643. "homepage": "https://github.com/squirephp",
  6644. "keywords": [
  6645. "squire"
  6646. ],
  6647. "support": {
  6648. "issues": "https://github.com/squirephp/squire/issues",
  6649. "source": "https://github.com/squirephp/squire"
  6650. },
  6651. "time": "2025-02-25T08:15:59+00:00"
  6652. },
  6653. {
  6654. "name": "squirephp/repository",
  6655. "version": "v3.10.1",
  6656. "source": {
  6657. "type": "git",
  6658. "url": "https://github.com/squirephp/repository.git",
  6659. "reference": "6bbd33c1148949c2bb2f6499ce9897c874d0860c"
  6660. },
  6661. "dist": {
  6662. "type": "zip",
  6663. "url": "https://api.github.com/repos/squirephp/repository/zipball/6bbd33c1148949c2bb2f6499ce9897c874d0860c",
  6664. "reference": "6bbd33c1148949c2bb2f6499ce9897c874d0860c",
  6665. "shasum": ""
  6666. },
  6667. "require": {
  6668. "illuminate/support": "^8.0|^9.0|^10.0|^11.0|^12.0",
  6669. "php": "^8.0"
  6670. },
  6671. "type": "library",
  6672. "extra": {
  6673. "laravel": {
  6674. "aliases": {
  6675. "RepositoryManager": "Squire\\Repository\\Facades\\Repository"
  6676. },
  6677. "providers": [
  6678. "Squire\\RepositoryServiceProvider"
  6679. ]
  6680. }
  6681. },
  6682. "autoload": {
  6683. "psr-4": {
  6684. "Squire\\": "src"
  6685. }
  6686. },
  6687. "notification-url": "https://packagist.org/downloads/",
  6688. "license": [
  6689. "MIT"
  6690. ],
  6691. "authors": [
  6692. {
  6693. "name": "Dan Harrin",
  6694. "email": "dan@danharrin.com"
  6695. }
  6696. ],
  6697. "description": "A library containing the Squire repository.",
  6698. "homepage": "https://github.com/squirephp",
  6699. "keywords": [
  6700. "squire"
  6701. ],
  6702. "support": {
  6703. "issues": "https://github.com/squirephp/squire/issues",
  6704. "source": "https://github.com/squirephp/squire"
  6705. },
  6706. "time": "2025-02-25T08:16:09+00:00"
  6707. },
  6708. {
  6709. "name": "symfony/clock",
  6710. "version": "v7.3.0",
  6711. "source": {
  6712. "type": "git",
  6713. "url": "https://github.com/symfony/clock.git",
  6714. "reference": "b81435fbd6648ea425d1ee96a2d8e68f4ceacd24"
  6715. },
  6716. "dist": {
  6717. "type": "zip",
  6718. "url": "https://api.github.com/repos/symfony/clock/zipball/b81435fbd6648ea425d1ee96a2d8e68f4ceacd24",
  6719. "reference": "b81435fbd6648ea425d1ee96a2d8e68f4ceacd24",
  6720. "shasum": ""
  6721. },
  6722. "require": {
  6723. "php": ">=8.2",
  6724. "psr/clock": "^1.0",
  6725. "symfony/polyfill-php83": "^1.28"
  6726. },
  6727. "provide": {
  6728. "psr/clock-implementation": "1.0"
  6729. },
  6730. "type": "library",
  6731. "autoload": {
  6732. "files": [
  6733. "Resources/now.php"
  6734. ],
  6735. "psr-4": {
  6736. "Symfony\\Component\\Clock\\": ""
  6737. },
  6738. "exclude-from-classmap": [
  6739. "/Tests/"
  6740. ]
  6741. },
  6742. "notification-url": "https://packagist.org/downloads/",
  6743. "license": [
  6744. "MIT"
  6745. ],
  6746. "authors": [
  6747. {
  6748. "name": "Nicolas Grekas",
  6749. "email": "p@tchwork.com"
  6750. },
  6751. {
  6752. "name": "Symfony Community",
  6753. "homepage": "https://symfony.com/contributors"
  6754. }
  6755. ],
  6756. "description": "Decouples applications from the system clock",
  6757. "homepage": "https://symfony.com",
  6758. "keywords": [
  6759. "clock",
  6760. "psr20",
  6761. "time"
  6762. ],
  6763. "support": {
  6764. "source": "https://github.com/symfony/clock/tree/v7.3.0"
  6765. },
  6766. "funding": [
  6767. {
  6768. "url": "https://symfony.com/sponsor",
  6769. "type": "custom"
  6770. },
  6771. {
  6772. "url": "https://github.com/fabpot",
  6773. "type": "github"
  6774. },
  6775. {
  6776. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6777. "type": "tidelift"
  6778. }
  6779. ],
  6780. "time": "2024-09-25T14:21:43+00:00"
  6781. },
  6782. {
  6783. "name": "symfony/console",
  6784. "version": "v7.3.2",
  6785. "source": {
  6786. "type": "git",
  6787. "url": "https://github.com/symfony/console.git",
  6788. "reference": "5f360ebc65c55265a74d23d7fe27f957870158a1"
  6789. },
  6790. "dist": {
  6791. "type": "zip",
  6792. "url": "https://api.github.com/repos/symfony/console/zipball/5f360ebc65c55265a74d23d7fe27f957870158a1",
  6793. "reference": "5f360ebc65c55265a74d23d7fe27f957870158a1",
  6794. "shasum": ""
  6795. },
  6796. "require": {
  6797. "php": ">=8.2",
  6798. "symfony/deprecation-contracts": "^2.5|^3",
  6799. "symfony/polyfill-mbstring": "~1.0",
  6800. "symfony/service-contracts": "^2.5|^3",
  6801. "symfony/string": "^7.2"
  6802. },
  6803. "conflict": {
  6804. "symfony/dependency-injection": "<6.4",
  6805. "symfony/dotenv": "<6.4",
  6806. "symfony/event-dispatcher": "<6.4",
  6807. "symfony/lock": "<6.4",
  6808. "symfony/process": "<6.4"
  6809. },
  6810. "provide": {
  6811. "psr/log-implementation": "1.0|2.0|3.0"
  6812. },
  6813. "require-dev": {
  6814. "psr/log": "^1|^2|^3",
  6815. "symfony/config": "^6.4|^7.0",
  6816. "symfony/dependency-injection": "^6.4|^7.0",
  6817. "symfony/event-dispatcher": "^6.4|^7.0",
  6818. "symfony/http-foundation": "^6.4|^7.0",
  6819. "symfony/http-kernel": "^6.4|^7.0",
  6820. "symfony/lock": "^6.4|^7.0",
  6821. "symfony/messenger": "^6.4|^7.0",
  6822. "symfony/process": "^6.4|^7.0",
  6823. "symfony/stopwatch": "^6.4|^7.0",
  6824. "symfony/var-dumper": "^6.4|^7.0"
  6825. },
  6826. "type": "library",
  6827. "autoload": {
  6828. "psr-4": {
  6829. "Symfony\\Component\\Console\\": ""
  6830. },
  6831. "exclude-from-classmap": [
  6832. "/Tests/"
  6833. ]
  6834. },
  6835. "notification-url": "https://packagist.org/downloads/",
  6836. "license": [
  6837. "MIT"
  6838. ],
  6839. "authors": [
  6840. {
  6841. "name": "Fabien Potencier",
  6842. "email": "fabien@symfony.com"
  6843. },
  6844. {
  6845. "name": "Symfony Community",
  6846. "homepage": "https://symfony.com/contributors"
  6847. }
  6848. ],
  6849. "description": "Eases the creation of beautiful and testable command line interfaces",
  6850. "homepage": "https://symfony.com",
  6851. "keywords": [
  6852. "cli",
  6853. "command-line",
  6854. "console",
  6855. "terminal"
  6856. ],
  6857. "support": {
  6858. "source": "https://github.com/symfony/console/tree/v7.3.2"
  6859. },
  6860. "funding": [
  6861. {
  6862. "url": "https://symfony.com/sponsor",
  6863. "type": "custom"
  6864. },
  6865. {
  6866. "url": "https://github.com/fabpot",
  6867. "type": "github"
  6868. },
  6869. {
  6870. "url": "https://github.com/nicolas-grekas",
  6871. "type": "github"
  6872. },
  6873. {
  6874. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6875. "type": "tidelift"
  6876. }
  6877. ],
  6878. "time": "2025-07-30T17:13:41+00:00"
  6879. },
  6880. {
  6881. "name": "symfony/css-selector",
  6882. "version": "v7.3.0",
  6883. "source": {
  6884. "type": "git",
  6885. "url": "https://github.com/symfony/css-selector.git",
  6886. "reference": "601a5ce9aaad7bf10797e3663faefce9e26c24e2"
  6887. },
  6888. "dist": {
  6889. "type": "zip",
  6890. "url": "https://api.github.com/repos/symfony/css-selector/zipball/601a5ce9aaad7bf10797e3663faefce9e26c24e2",
  6891. "reference": "601a5ce9aaad7bf10797e3663faefce9e26c24e2",
  6892. "shasum": ""
  6893. },
  6894. "require": {
  6895. "php": ">=8.2"
  6896. },
  6897. "type": "library",
  6898. "autoload": {
  6899. "psr-4": {
  6900. "Symfony\\Component\\CssSelector\\": ""
  6901. },
  6902. "exclude-from-classmap": [
  6903. "/Tests/"
  6904. ]
  6905. },
  6906. "notification-url": "https://packagist.org/downloads/",
  6907. "license": [
  6908. "MIT"
  6909. ],
  6910. "authors": [
  6911. {
  6912. "name": "Fabien Potencier",
  6913. "email": "fabien@symfony.com"
  6914. },
  6915. {
  6916. "name": "Jean-François Simon",
  6917. "email": "jeanfrancois.simon@sensiolabs.com"
  6918. },
  6919. {
  6920. "name": "Symfony Community",
  6921. "homepage": "https://symfony.com/contributors"
  6922. }
  6923. ],
  6924. "description": "Converts CSS selectors to XPath expressions",
  6925. "homepage": "https://symfony.com",
  6926. "support": {
  6927. "source": "https://github.com/symfony/css-selector/tree/v7.3.0"
  6928. },
  6929. "funding": [
  6930. {
  6931. "url": "https://symfony.com/sponsor",
  6932. "type": "custom"
  6933. },
  6934. {
  6935. "url": "https://github.com/fabpot",
  6936. "type": "github"
  6937. },
  6938. {
  6939. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6940. "type": "tidelift"
  6941. }
  6942. ],
  6943. "time": "2024-09-25T14:21:43+00:00"
  6944. },
  6945. {
  6946. "name": "symfony/deprecation-contracts",
  6947. "version": "v3.6.0",
  6948. "source": {
  6949. "type": "git",
  6950. "url": "https://github.com/symfony/deprecation-contracts.git",
  6951. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62"
  6952. },
  6953. "dist": {
  6954. "type": "zip",
  6955. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62",
  6956. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62",
  6957. "shasum": ""
  6958. },
  6959. "require": {
  6960. "php": ">=8.1"
  6961. },
  6962. "type": "library",
  6963. "extra": {
  6964. "thanks": {
  6965. "url": "https://github.com/symfony/contracts",
  6966. "name": "symfony/contracts"
  6967. },
  6968. "branch-alias": {
  6969. "dev-main": "3.6-dev"
  6970. }
  6971. },
  6972. "autoload": {
  6973. "files": [
  6974. "function.php"
  6975. ]
  6976. },
  6977. "notification-url": "https://packagist.org/downloads/",
  6978. "license": [
  6979. "MIT"
  6980. ],
  6981. "authors": [
  6982. {
  6983. "name": "Nicolas Grekas",
  6984. "email": "p@tchwork.com"
  6985. },
  6986. {
  6987. "name": "Symfony Community",
  6988. "homepage": "https://symfony.com/contributors"
  6989. }
  6990. ],
  6991. "description": "A generic function and convention to trigger deprecation notices",
  6992. "homepage": "https://symfony.com",
  6993. "support": {
  6994. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0"
  6995. },
  6996. "funding": [
  6997. {
  6998. "url": "https://symfony.com/sponsor",
  6999. "type": "custom"
  7000. },
  7001. {
  7002. "url": "https://github.com/fabpot",
  7003. "type": "github"
  7004. },
  7005. {
  7006. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7007. "type": "tidelift"
  7008. }
  7009. ],
  7010. "time": "2024-09-25T14:21:43+00:00"
  7011. },
  7012. {
  7013. "name": "symfony/error-handler",
  7014. "version": "v7.3.2",
  7015. "source": {
  7016. "type": "git",
  7017. "url": "https://github.com/symfony/error-handler.git",
  7018. "reference": "0b31a944fcd8759ae294da4d2808cbc53aebd0c3"
  7019. },
  7020. "dist": {
  7021. "type": "zip",
  7022. "url": "https://api.github.com/repos/symfony/error-handler/zipball/0b31a944fcd8759ae294da4d2808cbc53aebd0c3",
  7023. "reference": "0b31a944fcd8759ae294da4d2808cbc53aebd0c3",
  7024. "shasum": ""
  7025. },
  7026. "require": {
  7027. "php": ">=8.2",
  7028. "psr/log": "^1|^2|^3",
  7029. "symfony/var-dumper": "^6.4|^7.0"
  7030. },
  7031. "conflict": {
  7032. "symfony/deprecation-contracts": "<2.5",
  7033. "symfony/http-kernel": "<6.4"
  7034. },
  7035. "require-dev": {
  7036. "symfony/console": "^6.4|^7.0",
  7037. "symfony/deprecation-contracts": "^2.5|^3",
  7038. "symfony/http-kernel": "^6.4|^7.0",
  7039. "symfony/serializer": "^6.4|^7.0",
  7040. "symfony/webpack-encore-bundle": "^1.0|^2.0"
  7041. },
  7042. "bin": [
  7043. "Resources/bin/patch-type-declarations"
  7044. ],
  7045. "type": "library",
  7046. "autoload": {
  7047. "psr-4": {
  7048. "Symfony\\Component\\ErrorHandler\\": ""
  7049. },
  7050. "exclude-from-classmap": [
  7051. "/Tests/"
  7052. ]
  7053. },
  7054. "notification-url": "https://packagist.org/downloads/",
  7055. "license": [
  7056. "MIT"
  7057. ],
  7058. "authors": [
  7059. {
  7060. "name": "Fabien Potencier",
  7061. "email": "fabien@symfony.com"
  7062. },
  7063. {
  7064. "name": "Symfony Community",
  7065. "homepage": "https://symfony.com/contributors"
  7066. }
  7067. ],
  7068. "description": "Provides tools to manage errors and ease debugging PHP code",
  7069. "homepage": "https://symfony.com",
  7070. "support": {
  7071. "source": "https://github.com/symfony/error-handler/tree/v7.3.2"
  7072. },
  7073. "funding": [
  7074. {
  7075. "url": "https://symfony.com/sponsor",
  7076. "type": "custom"
  7077. },
  7078. {
  7079. "url": "https://github.com/fabpot",
  7080. "type": "github"
  7081. },
  7082. {
  7083. "url": "https://github.com/nicolas-grekas",
  7084. "type": "github"
  7085. },
  7086. {
  7087. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7088. "type": "tidelift"
  7089. }
  7090. ],
  7091. "time": "2025-07-07T08:17:57+00:00"
  7092. },
  7093. {
  7094. "name": "symfony/event-dispatcher",
  7095. "version": "v7.3.0",
  7096. "source": {
  7097. "type": "git",
  7098. "url": "https://github.com/symfony/event-dispatcher.git",
  7099. "reference": "497f73ac996a598c92409b44ac43b6690c4f666d"
  7100. },
  7101. "dist": {
  7102. "type": "zip",
  7103. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/497f73ac996a598c92409b44ac43b6690c4f666d",
  7104. "reference": "497f73ac996a598c92409b44ac43b6690c4f666d",
  7105. "shasum": ""
  7106. },
  7107. "require": {
  7108. "php": ">=8.2",
  7109. "symfony/event-dispatcher-contracts": "^2.5|^3"
  7110. },
  7111. "conflict": {
  7112. "symfony/dependency-injection": "<6.4",
  7113. "symfony/service-contracts": "<2.5"
  7114. },
  7115. "provide": {
  7116. "psr/event-dispatcher-implementation": "1.0",
  7117. "symfony/event-dispatcher-implementation": "2.0|3.0"
  7118. },
  7119. "require-dev": {
  7120. "psr/log": "^1|^2|^3",
  7121. "symfony/config": "^6.4|^7.0",
  7122. "symfony/dependency-injection": "^6.4|^7.0",
  7123. "symfony/error-handler": "^6.4|^7.0",
  7124. "symfony/expression-language": "^6.4|^7.0",
  7125. "symfony/http-foundation": "^6.4|^7.0",
  7126. "symfony/service-contracts": "^2.5|^3",
  7127. "symfony/stopwatch": "^6.4|^7.0"
  7128. },
  7129. "type": "library",
  7130. "autoload": {
  7131. "psr-4": {
  7132. "Symfony\\Component\\EventDispatcher\\": ""
  7133. },
  7134. "exclude-from-classmap": [
  7135. "/Tests/"
  7136. ]
  7137. },
  7138. "notification-url": "https://packagist.org/downloads/",
  7139. "license": [
  7140. "MIT"
  7141. ],
  7142. "authors": [
  7143. {
  7144. "name": "Fabien Potencier",
  7145. "email": "fabien@symfony.com"
  7146. },
  7147. {
  7148. "name": "Symfony Community",
  7149. "homepage": "https://symfony.com/contributors"
  7150. }
  7151. ],
  7152. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  7153. "homepage": "https://symfony.com",
  7154. "support": {
  7155. "source": "https://github.com/symfony/event-dispatcher/tree/v7.3.0"
  7156. },
  7157. "funding": [
  7158. {
  7159. "url": "https://symfony.com/sponsor",
  7160. "type": "custom"
  7161. },
  7162. {
  7163. "url": "https://github.com/fabpot",
  7164. "type": "github"
  7165. },
  7166. {
  7167. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7168. "type": "tidelift"
  7169. }
  7170. ],
  7171. "time": "2025-04-22T09:11:45+00:00"
  7172. },
  7173. {
  7174. "name": "symfony/event-dispatcher-contracts",
  7175. "version": "v3.6.0",
  7176. "source": {
  7177. "type": "git",
  7178. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  7179. "reference": "59eb412e93815df44f05f342958efa9f46b1e586"
  7180. },
  7181. "dist": {
  7182. "type": "zip",
  7183. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/59eb412e93815df44f05f342958efa9f46b1e586",
  7184. "reference": "59eb412e93815df44f05f342958efa9f46b1e586",
  7185. "shasum": ""
  7186. },
  7187. "require": {
  7188. "php": ">=8.1",
  7189. "psr/event-dispatcher": "^1"
  7190. },
  7191. "type": "library",
  7192. "extra": {
  7193. "thanks": {
  7194. "url": "https://github.com/symfony/contracts",
  7195. "name": "symfony/contracts"
  7196. },
  7197. "branch-alias": {
  7198. "dev-main": "3.6-dev"
  7199. }
  7200. },
  7201. "autoload": {
  7202. "psr-4": {
  7203. "Symfony\\Contracts\\EventDispatcher\\": ""
  7204. }
  7205. },
  7206. "notification-url": "https://packagist.org/downloads/",
  7207. "license": [
  7208. "MIT"
  7209. ],
  7210. "authors": [
  7211. {
  7212. "name": "Nicolas Grekas",
  7213. "email": "p@tchwork.com"
  7214. },
  7215. {
  7216. "name": "Symfony Community",
  7217. "homepage": "https://symfony.com/contributors"
  7218. }
  7219. ],
  7220. "description": "Generic abstractions related to dispatching event",
  7221. "homepage": "https://symfony.com",
  7222. "keywords": [
  7223. "abstractions",
  7224. "contracts",
  7225. "decoupling",
  7226. "interfaces",
  7227. "interoperability",
  7228. "standards"
  7229. ],
  7230. "support": {
  7231. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.6.0"
  7232. },
  7233. "funding": [
  7234. {
  7235. "url": "https://symfony.com/sponsor",
  7236. "type": "custom"
  7237. },
  7238. {
  7239. "url": "https://github.com/fabpot",
  7240. "type": "github"
  7241. },
  7242. {
  7243. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7244. "type": "tidelift"
  7245. }
  7246. ],
  7247. "time": "2024-09-25T14:21:43+00:00"
  7248. },
  7249. {
  7250. "name": "symfony/finder",
  7251. "version": "v7.3.2",
  7252. "source": {
  7253. "type": "git",
  7254. "url": "https://github.com/symfony/finder.git",
  7255. "reference": "2a6614966ba1074fa93dae0bc804227422df4dfe"
  7256. },
  7257. "dist": {
  7258. "type": "zip",
  7259. "url": "https://api.github.com/repos/symfony/finder/zipball/2a6614966ba1074fa93dae0bc804227422df4dfe",
  7260. "reference": "2a6614966ba1074fa93dae0bc804227422df4dfe",
  7261. "shasum": ""
  7262. },
  7263. "require": {
  7264. "php": ">=8.2"
  7265. },
  7266. "require-dev": {
  7267. "symfony/filesystem": "^6.4|^7.0"
  7268. },
  7269. "type": "library",
  7270. "autoload": {
  7271. "psr-4": {
  7272. "Symfony\\Component\\Finder\\": ""
  7273. },
  7274. "exclude-from-classmap": [
  7275. "/Tests/"
  7276. ]
  7277. },
  7278. "notification-url": "https://packagist.org/downloads/",
  7279. "license": [
  7280. "MIT"
  7281. ],
  7282. "authors": [
  7283. {
  7284. "name": "Fabien Potencier",
  7285. "email": "fabien@symfony.com"
  7286. },
  7287. {
  7288. "name": "Symfony Community",
  7289. "homepage": "https://symfony.com/contributors"
  7290. }
  7291. ],
  7292. "description": "Finds files and directories via an intuitive fluent interface",
  7293. "homepage": "https://symfony.com",
  7294. "support": {
  7295. "source": "https://github.com/symfony/finder/tree/v7.3.2"
  7296. },
  7297. "funding": [
  7298. {
  7299. "url": "https://symfony.com/sponsor",
  7300. "type": "custom"
  7301. },
  7302. {
  7303. "url": "https://github.com/fabpot",
  7304. "type": "github"
  7305. },
  7306. {
  7307. "url": "https://github.com/nicolas-grekas",
  7308. "type": "github"
  7309. },
  7310. {
  7311. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7312. "type": "tidelift"
  7313. }
  7314. ],
  7315. "time": "2025-07-15T13:41:35+00:00"
  7316. },
  7317. {
  7318. "name": "symfony/html-sanitizer",
  7319. "version": "v7.3.2",
  7320. "source": {
  7321. "type": "git",
  7322. "url": "https://github.com/symfony/html-sanitizer.git",
  7323. "reference": "3388e208450fcac57d24aef4d5ae41037b663630"
  7324. },
  7325. "dist": {
  7326. "type": "zip",
  7327. "url": "https://api.github.com/repos/symfony/html-sanitizer/zipball/3388e208450fcac57d24aef4d5ae41037b663630",
  7328. "reference": "3388e208450fcac57d24aef4d5ae41037b663630",
  7329. "shasum": ""
  7330. },
  7331. "require": {
  7332. "ext-dom": "*",
  7333. "league/uri": "^6.5|^7.0",
  7334. "masterminds/html5": "^2.7.2",
  7335. "php": ">=8.2"
  7336. },
  7337. "type": "library",
  7338. "autoload": {
  7339. "psr-4": {
  7340. "Symfony\\Component\\HtmlSanitizer\\": ""
  7341. },
  7342. "exclude-from-classmap": [
  7343. "/Tests/"
  7344. ]
  7345. },
  7346. "notification-url": "https://packagist.org/downloads/",
  7347. "license": [
  7348. "MIT"
  7349. ],
  7350. "authors": [
  7351. {
  7352. "name": "Titouan Galopin",
  7353. "email": "galopintitouan@gmail.com"
  7354. },
  7355. {
  7356. "name": "Symfony Community",
  7357. "homepage": "https://symfony.com/contributors"
  7358. }
  7359. ],
  7360. "description": "Provides an object-oriented API to sanitize untrusted HTML input for safe insertion into a document's DOM.",
  7361. "homepage": "https://symfony.com",
  7362. "keywords": [
  7363. "Purifier",
  7364. "html",
  7365. "sanitizer"
  7366. ],
  7367. "support": {
  7368. "source": "https://github.com/symfony/html-sanitizer/tree/v7.3.2"
  7369. },
  7370. "funding": [
  7371. {
  7372. "url": "https://symfony.com/sponsor",
  7373. "type": "custom"
  7374. },
  7375. {
  7376. "url": "https://github.com/fabpot",
  7377. "type": "github"
  7378. },
  7379. {
  7380. "url": "https://github.com/nicolas-grekas",
  7381. "type": "github"
  7382. },
  7383. {
  7384. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7385. "type": "tidelift"
  7386. }
  7387. ],
  7388. "time": "2025-07-10T08:29:33+00:00"
  7389. },
  7390. {
  7391. "name": "symfony/http-foundation",
  7392. "version": "v7.3.2",
  7393. "source": {
  7394. "type": "git",
  7395. "url": "https://github.com/symfony/http-foundation.git",
  7396. "reference": "6877c122b3a6cc3695849622720054f6e6fa5fa6"
  7397. },
  7398. "dist": {
  7399. "type": "zip",
  7400. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/6877c122b3a6cc3695849622720054f6e6fa5fa6",
  7401. "reference": "6877c122b3a6cc3695849622720054f6e6fa5fa6",
  7402. "shasum": ""
  7403. },
  7404. "require": {
  7405. "php": ">=8.2",
  7406. "symfony/deprecation-contracts": "^2.5|^3.0",
  7407. "symfony/polyfill-mbstring": "~1.1",
  7408. "symfony/polyfill-php83": "^1.27"
  7409. },
  7410. "conflict": {
  7411. "doctrine/dbal": "<3.6",
  7412. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  7413. },
  7414. "require-dev": {
  7415. "doctrine/dbal": "^3.6|^4",
  7416. "predis/predis": "^1.1|^2.0",
  7417. "symfony/cache": "^6.4.12|^7.1.5",
  7418. "symfony/clock": "^6.4|^7.0",
  7419. "symfony/dependency-injection": "^6.4|^7.0",
  7420. "symfony/expression-language": "^6.4|^7.0",
  7421. "symfony/http-kernel": "^6.4|^7.0",
  7422. "symfony/mime": "^6.4|^7.0",
  7423. "symfony/rate-limiter": "^6.4|^7.0"
  7424. },
  7425. "type": "library",
  7426. "autoload": {
  7427. "psr-4": {
  7428. "Symfony\\Component\\HttpFoundation\\": ""
  7429. },
  7430. "exclude-from-classmap": [
  7431. "/Tests/"
  7432. ]
  7433. },
  7434. "notification-url": "https://packagist.org/downloads/",
  7435. "license": [
  7436. "MIT"
  7437. ],
  7438. "authors": [
  7439. {
  7440. "name": "Fabien Potencier",
  7441. "email": "fabien@symfony.com"
  7442. },
  7443. {
  7444. "name": "Symfony Community",
  7445. "homepage": "https://symfony.com/contributors"
  7446. }
  7447. ],
  7448. "description": "Defines an object-oriented layer for the HTTP specification",
  7449. "homepage": "https://symfony.com",
  7450. "support": {
  7451. "source": "https://github.com/symfony/http-foundation/tree/v7.3.2"
  7452. },
  7453. "funding": [
  7454. {
  7455. "url": "https://symfony.com/sponsor",
  7456. "type": "custom"
  7457. },
  7458. {
  7459. "url": "https://github.com/fabpot",
  7460. "type": "github"
  7461. },
  7462. {
  7463. "url": "https://github.com/nicolas-grekas",
  7464. "type": "github"
  7465. },
  7466. {
  7467. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7468. "type": "tidelift"
  7469. }
  7470. ],
  7471. "time": "2025-07-10T08:47:49+00:00"
  7472. },
  7473. {
  7474. "name": "symfony/http-kernel",
  7475. "version": "v7.3.2",
  7476. "source": {
  7477. "type": "git",
  7478. "url": "https://github.com/symfony/http-kernel.git",
  7479. "reference": "6ecc895559ec0097e221ed2fd5eb44d5fede083c"
  7480. },
  7481. "dist": {
  7482. "type": "zip",
  7483. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/6ecc895559ec0097e221ed2fd5eb44d5fede083c",
  7484. "reference": "6ecc895559ec0097e221ed2fd5eb44d5fede083c",
  7485. "shasum": ""
  7486. },
  7487. "require": {
  7488. "php": ">=8.2",
  7489. "psr/log": "^1|^2|^3",
  7490. "symfony/deprecation-contracts": "^2.5|^3",
  7491. "symfony/error-handler": "^6.4|^7.0",
  7492. "symfony/event-dispatcher": "^7.3",
  7493. "symfony/http-foundation": "^7.3",
  7494. "symfony/polyfill-ctype": "^1.8"
  7495. },
  7496. "conflict": {
  7497. "symfony/browser-kit": "<6.4",
  7498. "symfony/cache": "<6.4",
  7499. "symfony/config": "<6.4",
  7500. "symfony/console": "<6.4",
  7501. "symfony/dependency-injection": "<6.4",
  7502. "symfony/doctrine-bridge": "<6.4",
  7503. "symfony/form": "<6.4",
  7504. "symfony/http-client": "<6.4",
  7505. "symfony/http-client-contracts": "<2.5",
  7506. "symfony/mailer": "<6.4",
  7507. "symfony/messenger": "<6.4",
  7508. "symfony/translation": "<6.4",
  7509. "symfony/translation-contracts": "<2.5",
  7510. "symfony/twig-bridge": "<6.4",
  7511. "symfony/validator": "<6.4",
  7512. "symfony/var-dumper": "<6.4",
  7513. "twig/twig": "<3.12"
  7514. },
  7515. "provide": {
  7516. "psr/log-implementation": "1.0|2.0|3.0"
  7517. },
  7518. "require-dev": {
  7519. "psr/cache": "^1.0|^2.0|^3.0",
  7520. "symfony/browser-kit": "^6.4|^7.0",
  7521. "symfony/clock": "^6.4|^7.0",
  7522. "symfony/config": "^6.4|^7.0",
  7523. "symfony/console": "^6.4|^7.0",
  7524. "symfony/css-selector": "^6.4|^7.0",
  7525. "symfony/dependency-injection": "^6.4|^7.0",
  7526. "symfony/dom-crawler": "^6.4|^7.0",
  7527. "symfony/expression-language": "^6.4|^7.0",
  7528. "symfony/finder": "^6.4|^7.0",
  7529. "symfony/http-client-contracts": "^2.5|^3",
  7530. "symfony/process": "^6.4|^7.0",
  7531. "symfony/property-access": "^7.1",
  7532. "symfony/routing": "^6.4|^7.0",
  7533. "symfony/serializer": "^7.1",
  7534. "symfony/stopwatch": "^6.4|^7.0",
  7535. "symfony/translation": "^6.4|^7.0",
  7536. "symfony/translation-contracts": "^2.5|^3",
  7537. "symfony/uid": "^6.4|^7.0",
  7538. "symfony/validator": "^6.4|^7.0",
  7539. "symfony/var-dumper": "^6.4|^7.0",
  7540. "symfony/var-exporter": "^6.4|^7.0",
  7541. "twig/twig": "^3.12"
  7542. },
  7543. "type": "library",
  7544. "autoload": {
  7545. "psr-4": {
  7546. "Symfony\\Component\\HttpKernel\\": ""
  7547. },
  7548. "exclude-from-classmap": [
  7549. "/Tests/"
  7550. ]
  7551. },
  7552. "notification-url": "https://packagist.org/downloads/",
  7553. "license": [
  7554. "MIT"
  7555. ],
  7556. "authors": [
  7557. {
  7558. "name": "Fabien Potencier",
  7559. "email": "fabien@symfony.com"
  7560. },
  7561. {
  7562. "name": "Symfony Community",
  7563. "homepage": "https://symfony.com/contributors"
  7564. }
  7565. ],
  7566. "description": "Provides a structured process for converting a Request into a Response",
  7567. "homepage": "https://symfony.com",
  7568. "support": {
  7569. "source": "https://github.com/symfony/http-kernel/tree/v7.3.2"
  7570. },
  7571. "funding": [
  7572. {
  7573. "url": "https://symfony.com/sponsor",
  7574. "type": "custom"
  7575. },
  7576. {
  7577. "url": "https://github.com/fabpot",
  7578. "type": "github"
  7579. },
  7580. {
  7581. "url": "https://github.com/nicolas-grekas",
  7582. "type": "github"
  7583. },
  7584. {
  7585. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7586. "type": "tidelift"
  7587. }
  7588. ],
  7589. "time": "2025-07-31T10:45:04+00:00"
  7590. },
  7591. {
  7592. "name": "symfony/intl",
  7593. "version": "v6.4.24",
  7594. "source": {
  7595. "type": "git",
  7596. "url": "https://github.com/symfony/intl.git",
  7597. "reference": "c0938cd29804e65308051a42d1387f0dd57e1eaf"
  7598. },
  7599. "dist": {
  7600. "type": "zip",
  7601. "url": "https://api.github.com/repos/symfony/intl/zipball/c0938cd29804e65308051a42d1387f0dd57e1eaf",
  7602. "reference": "c0938cd29804e65308051a42d1387f0dd57e1eaf",
  7603. "shasum": ""
  7604. },
  7605. "require": {
  7606. "php": ">=8.1"
  7607. },
  7608. "require-dev": {
  7609. "symfony/filesystem": "^5.4|^6.0|^7.0",
  7610. "symfony/finder": "^5.4|^6.0|^7.0",
  7611. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  7612. },
  7613. "type": "library",
  7614. "autoload": {
  7615. "psr-4": {
  7616. "Symfony\\Component\\Intl\\": ""
  7617. },
  7618. "exclude-from-classmap": [
  7619. "/Tests/",
  7620. "/Resources/data/"
  7621. ]
  7622. },
  7623. "notification-url": "https://packagist.org/downloads/",
  7624. "license": [
  7625. "MIT"
  7626. ],
  7627. "authors": [
  7628. {
  7629. "name": "Bernhard Schussek",
  7630. "email": "bschussek@gmail.com"
  7631. },
  7632. {
  7633. "name": "Eriksen Costa",
  7634. "email": "eriksen.costa@infranology.com.br"
  7635. },
  7636. {
  7637. "name": "Igor Wiedler",
  7638. "email": "igor@wiedler.ch"
  7639. },
  7640. {
  7641. "name": "Symfony Community",
  7642. "homepage": "https://symfony.com/contributors"
  7643. }
  7644. ],
  7645. "description": "Provides access to the localization data of the ICU library",
  7646. "homepage": "https://symfony.com",
  7647. "keywords": [
  7648. "i18n",
  7649. "icu",
  7650. "internationalization",
  7651. "intl",
  7652. "l10n",
  7653. "localization"
  7654. ],
  7655. "support": {
  7656. "source": "https://github.com/symfony/intl/tree/v6.4.24"
  7657. },
  7658. "funding": [
  7659. {
  7660. "url": "https://symfony.com/sponsor",
  7661. "type": "custom"
  7662. },
  7663. {
  7664. "url": "https://github.com/fabpot",
  7665. "type": "github"
  7666. },
  7667. {
  7668. "url": "https://github.com/nicolas-grekas",
  7669. "type": "github"
  7670. },
  7671. {
  7672. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7673. "type": "tidelift"
  7674. }
  7675. ],
  7676. "time": "2025-07-10T08:14:14+00:00"
  7677. },
  7678. {
  7679. "name": "symfony/mailer",
  7680. "version": "v7.3.2",
  7681. "source": {
  7682. "type": "git",
  7683. "url": "https://github.com/symfony/mailer.git",
  7684. "reference": "d43e84d9522345f96ad6283d5dfccc8c1cfc299b"
  7685. },
  7686. "dist": {
  7687. "type": "zip",
  7688. "url": "https://api.github.com/repos/symfony/mailer/zipball/d43e84d9522345f96ad6283d5dfccc8c1cfc299b",
  7689. "reference": "d43e84d9522345f96ad6283d5dfccc8c1cfc299b",
  7690. "shasum": ""
  7691. },
  7692. "require": {
  7693. "egulias/email-validator": "^2.1.10|^3|^4",
  7694. "php": ">=8.2",
  7695. "psr/event-dispatcher": "^1",
  7696. "psr/log": "^1|^2|^3",
  7697. "symfony/event-dispatcher": "^6.4|^7.0",
  7698. "symfony/mime": "^7.2",
  7699. "symfony/service-contracts": "^2.5|^3"
  7700. },
  7701. "conflict": {
  7702. "symfony/http-client-contracts": "<2.5",
  7703. "symfony/http-kernel": "<6.4",
  7704. "symfony/messenger": "<6.4",
  7705. "symfony/mime": "<6.4",
  7706. "symfony/twig-bridge": "<6.4"
  7707. },
  7708. "require-dev": {
  7709. "symfony/console": "^6.4|^7.0",
  7710. "symfony/http-client": "^6.4|^7.0",
  7711. "symfony/messenger": "^6.4|^7.0",
  7712. "symfony/twig-bridge": "^6.4|^7.0"
  7713. },
  7714. "type": "library",
  7715. "autoload": {
  7716. "psr-4": {
  7717. "Symfony\\Component\\Mailer\\": ""
  7718. },
  7719. "exclude-from-classmap": [
  7720. "/Tests/"
  7721. ]
  7722. },
  7723. "notification-url": "https://packagist.org/downloads/",
  7724. "license": [
  7725. "MIT"
  7726. ],
  7727. "authors": [
  7728. {
  7729. "name": "Fabien Potencier",
  7730. "email": "fabien@symfony.com"
  7731. },
  7732. {
  7733. "name": "Symfony Community",
  7734. "homepage": "https://symfony.com/contributors"
  7735. }
  7736. ],
  7737. "description": "Helps sending emails",
  7738. "homepage": "https://symfony.com",
  7739. "support": {
  7740. "source": "https://github.com/symfony/mailer/tree/v7.3.2"
  7741. },
  7742. "funding": [
  7743. {
  7744. "url": "https://symfony.com/sponsor",
  7745. "type": "custom"
  7746. },
  7747. {
  7748. "url": "https://github.com/fabpot",
  7749. "type": "github"
  7750. },
  7751. {
  7752. "url": "https://github.com/nicolas-grekas",
  7753. "type": "github"
  7754. },
  7755. {
  7756. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7757. "type": "tidelift"
  7758. }
  7759. ],
  7760. "time": "2025-07-15T11:36:08+00:00"
  7761. },
  7762. {
  7763. "name": "symfony/mime",
  7764. "version": "v7.3.2",
  7765. "source": {
  7766. "type": "git",
  7767. "url": "https://github.com/symfony/mime.git",
  7768. "reference": "e0a0f859148daf1edf6c60b398eb40bfc96697d1"
  7769. },
  7770. "dist": {
  7771. "type": "zip",
  7772. "url": "https://api.github.com/repos/symfony/mime/zipball/e0a0f859148daf1edf6c60b398eb40bfc96697d1",
  7773. "reference": "e0a0f859148daf1edf6c60b398eb40bfc96697d1",
  7774. "shasum": ""
  7775. },
  7776. "require": {
  7777. "php": ">=8.2",
  7778. "symfony/polyfill-intl-idn": "^1.10",
  7779. "symfony/polyfill-mbstring": "^1.0"
  7780. },
  7781. "conflict": {
  7782. "egulias/email-validator": "~3.0.0",
  7783. "phpdocumentor/reflection-docblock": "<3.2.2",
  7784. "phpdocumentor/type-resolver": "<1.4.0",
  7785. "symfony/mailer": "<6.4",
  7786. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  7787. },
  7788. "require-dev": {
  7789. "egulias/email-validator": "^2.1.10|^3.1|^4",
  7790. "league/html-to-markdown": "^5.0",
  7791. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7792. "symfony/dependency-injection": "^6.4|^7.0",
  7793. "symfony/process": "^6.4|^7.0",
  7794. "symfony/property-access": "^6.4|^7.0",
  7795. "symfony/property-info": "^6.4|^7.0",
  7796. "symfony/serializer": "^6.4.3|^7.0.3"
  7797. },
  7798. "type": "library",
  7799. "autoload": {
  7800. "psr-4": {
  7801. "Symfony\\Component\\Mime\\": ""
  7802. },
  7803. "exclude-from-classmap": [
  7804. "/Tests/"
  7805. ]
  7806. },
  7807. "notification-url": "https://packagist.org/downloads/",
  7808. "license": [
  7809. "MIT"
  7810. ],
  7811. "authors": [
  7812. {
  7813. "name": "Fabien Potencier",
  7814. "email": "fabien@symfony.com"
  7815. },
  7816. {
  7817. "name": "Symfony Community",
  7818. "homepage": "https://symfony.com/contributors"
  7819. }
  7820. ],
  7821. "description": "Allows manipulating MIME messages",
  7822. "homepage": "https://symfony.com",
  7823. "keywords": [
  7824. "mime",
  7825. "mime-type"
  7826. ],
  7827. "support": {
  7828. "source": "https://github.com/symfony/mime/tree/v7.3.2"
  7829. },
  7830. "funding": [
  7831. {
  7832. "url": "https://symfony.com/sponsor",
  7833. "type": "custom"
  7834. },
  7835. {
  7836. "url": "https://github.com/fabpot",
  7837. "type": "github"
  7838. },
  7839. {
  7840. "url": "https://github.com/nicolas-grekas",
  7841. "type": "github"
  7842. },
  7843. {
  7844. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7845. "type": "tidelift"
  7846. }
  7847. ],
  7848. "time": "2025-07-15T13:41:35+00:00"
  7849. },
  7850. {
  7851. "name": "symfony/polyfill-ctype",
  7852. "version": "v1.33.0",
  7853. "source": {
  7854. "type": "git",
  7855. "url": "https://github.com/symfony/polyfill-ctype.git",
  7856. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  7857. },
  7858. "dist": {
  7859. "type": "zip",
  7860. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  7861. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  7862. "shasum": ""
  7863. },
  7864. "require": {
  7865. "php": ">=7.2"
  7866. },
  7867. "provide": {
  7868. "ext-ctype": "*"
  7869. },
  7870. "suggest": {
  7871. "ext-ctype": "For best performance"
  7872. },
  7873. "type": "library",
  7874. "extra": {
  7875. "thanks": {
  7876. "url": "https://github.com/symfony/polyfill",
  7877. "name": "symfony/polyfill"
  7878. }
  7879. },
  7880. "autoload": {
  7881. "files": [
  7882. "bootstrap.php"
  7883. ],
  7884. "psr-4": {
  7885. "Symfony\\Polyfill\\Ctype\\": ""
  7886. }
  7887. },
  7888. "notification-url": "https://packagist.org/downloads/",
  7889. "license": [
  7890. "MIT"
  7891. ],
  7892. "authors": [
  7893. {
  7894. "name": "Gert de Pagter",
  7895. "email": "BackEndTea@gmail.com"
  7896. },
  7897. {
  7898. "name": "Symfony Community",
  7899. "homepage": "https://symfony.com/contributors"
  7900. }
  7901. ],
  7902. "description": "Symfony polyfill for ctype functions",
  7903. "homepage": "https://symfony.com",
  7904. "keywords": [
  7905. "compatibility",
  7906. "ctype",
  7907. "polyfill",
  7908. "portable"
  7909. ],
  7910. "support": {
  7911. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.33.0"
  7912. },
  7913. "funding": [
  7914. {
  7915. "url": "https://symfony.com/sponsor",
  7916. "type": "custom"
  7917. },
  7918. {
  7919. "url": "https://github.com/fabpot",
  7920. "type": "github"
  7921. },
  7922. {
  7923. "url": "https://github.com/nicolas-grekas",
  7924. "type": "github"
  7925. },
  7926. {
  7927. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7928. "type": "tidelift"
  7929. }
  7930. ],
  7931. "time": "2024-09-09T11:45:10+00:00"
  7932. },
  7933. {
  7934. "name": "symfony/polyfill-intl-grapheme",
  7935. "version": "v1.33.0",
  7936. "source": {
  7937. "type": "git",
  7938. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  7939. "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70"
  7940. },
  7941. "dist": {
  7942. "type": "zip",
  7943. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/380872130d3a5dd3ace2f4010d95125fde5d5c70",
  7944. "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70",
  7945. "shasum": ""
  7946. },
  7947. "require": {
  7948. "php": ">=7.2"
  7949. },
  7950. "suggest": {
  7951. "ext-intl": "For best performance"
  7952. },
  7953. "type": "library",
  7954. "extra": {
  7955. "thanks": {
  7956. "url": "https://github.com/symfony/polyfill",
  7957. "name": "symfony/polyfill"
  7958. }
  7959. },
  7960. "autoload": {
  7961. "files": [
  7962. "bootstrap.php"
  7963. ],
  7964. "psr-4": {
  7965. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  7966. }
  7967. },
  7968. "notification-url": "https://packagist.org/downloads/",
  7969. "license": [
  7970. "MIT"
  7971. ],
  7972. "authors": [
  7973. {
  7974. "name": "Nicolas Grekas",
  7975. "email": "p@tchwork.com"
  7976. },
  7977. {
  7978. "name": "Symfony Community",
  7979. "homepage": "https://symfony.com/contributors"
  7980. }
  7981. ],
  7982. "description": "Symfony polyfill for intl's grapheme_* functions",
  7983. "homepage": "https://symfony.com",
  7984. "keywords": [
  7985. "compatibility",
  7986. "grapheme",
  7987. "intl",
  7988. "polyfill",
  7989. "portable",
  7990. "shim"
  7991. ],
  7992. "support": {
  7993. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.33.0"
  7994. },
  7995. "funding": [
  7996. {
  7997. "url": "https://symfony.com/sponsor",
  7998. "type": "custom"
  7999. },
  8000. {
  8001. "url": "https://github.com/fabpot",
  8002. "type": "github"
  8003. },
  8004. {
  8005. "url": "https://github.com/nicolas-grekas",
  8006. "type": "github"
  8007. },
  8008. {
  8009. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8010. "type": "tidelift"
  8011. }
  8012. ],
  8013. "time": "2025-06-27T09:58:17+00:00"
  8014. },
  8015. {
  8016. "name": "symfony/polyfill-intl-idn",
  8017. "version": "v1.33.0",
  8018. "source": {
  8019. "type": "git",
  8020. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  8021. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3"
  8022. },
  8023. "dist": {
  8024. "type": "zip",
  8025. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  8026. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  8027. "shasum": ""
  8028. },
  8029. "require": {
  8030. "php": ">=7.2",
  8031. "symfony/polyfill-intl-normalizer": "^1.10"
  8032. },
  8033. "suggest": {
  8034. "ext-intl": "For best performance"
  8035. },
  8036. "type": "library",
  8037. "extra": {
  8038. "thanks": {
  8039. "url": "https://github.com/symfony/polyfill",
  8040. "name": "symfony/polyfill"
  8041. }
  8042. },
  8043. "autoload": {
  8044. "files": [
  8045. "bootstrap.php"
  8046. ],
  8047. "psr-4": {
  8048. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  8049. }
  8050. },
  8051. "notification-url": "https://packagist.org/downloads/",
  8052. "license": [
  8053. "MIT"
  8054. ],
  8055. "authors": [
  8056. {
  8057. "name": "Laurent Bassin",
  8058. "email": "laurent@bassin.info"
  8059. },
  8060. {
  8061. "name": "Trevor Rowbotham",
  8062. "email": "trevor.rowbotham@pm.me"
  8063. },
  8064. {
  8065. "name": "Symfony Community",
  8066. "homepage": "https://symfony.com/contributors"
  8067. }
  8068. ],
  8069. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  8070. "homepage": "https://symfony.com",
  8071. "keywords": [
  8072. "compatibility",
  8073. "idn",
  8074. "intl",
  8075. "polyfill",
  8076. "portable",
  8077. "shim"
  8078. ],
  8079. "support": {
  8080. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.33.0"
  8081. },
  8082. "funding": [
  8083. {
  8084. "url": "https://symfony.com/sponsor",
  8085. "type": "custom"
  8086. },
  8087. {
  8088. "url": "https://github.com/fabpot",
  8089. "type": "github"
  8090. },
  8091. {
  8092. "url": "https://github.com/nicolas-grekas",
  8093. "type": "github"
  8094. },
  8095. {
  8096. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8097. "type": "tidelift"
  8098. }
  8099. ],
  8100. "time": "2024-09-10T14:38:51+00:00"
  8101. },
  8102. {
  8103. "name": "symfony/polyfill-intl-normalizer",
  8104. "version": "v1.33.0",
  8105. "source": {
  8106. "type": "git",
  8107. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  8108. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  8109. },
  8110. "dist": {
  8111. "type": "zip",
  8112. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  8113. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  8114. "shasum": ""
  8115. },
  8116. "require": {
  8117. "php": ">=7.2"
  8118. },
  8119. "suggest": {
  8120. "ext-intl": "For best performance"
  8121. },
  8122. "type": "library",
  8123. "extra": {
  8124. "thanks": {
  8125. "url": "https://github.com/symfony/polyfill",
  8126. "name": "symfony/polyfill"
  8127. }
  8128. },
  8129. "autoload": {
  8130. "files": [
  8131. "bootstrap.php"
  8132. ],
  8133. "psr-4": {
  8134. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  8135. },
  8136. "classmap": [
  8137. "Resources/stubs"
  8138. ]
  8139. },
  8140. "notification-url": "https://packagist.org/downloads/",
  8141. "license": [
  8142. "MIT"
  8143. ],
  8144. "authors": [
  8145. {
  8146. "name": "Nicolas Grekas",
  8147. "email": "p@tchwork.com"
  8148. },
  8149. {
  8150. "name": "Symfony Community",
  8151. "homepage": "https://symfony.com/contributors"
  8152. }
  8153. ],
  8154. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  8155. "homepage": "https://symfony.com",
  8156. "keywords": [
  8157. "compatibility",
  8158. "intl",
  8159. "normalizer",
  8160. "polyfill",
  8161. "portable",
  8162. "shim"
  8163. ],
  8164. "support": {
  8165. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.33.0"
  8166. },
  8167. "funding": [
  8168. {
  8169. "url": "https://symfony.com/sponsor",
  8170. "type": "custom"
  8171. },
  8172. {
  8173. "url": "https://github.com/fabpot",
  8174. "type": "github"
  8175. },
  8176. {
  8177. "url": "https://github.com/nicolas-grekas",
  8178. "type": "github"
  8179. },
  8180. {
  8181. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8182. "type": "tidelift"
  8183. }
  8184. ],
  8185. "time": "2024-09-09T11:45:10+00:00"
  8186. },
  8187. {
  8188. "name": "symfony/polyfill-mbstring",
  8189. "version": "v1.33.0",
  8190. "source": {
  8191. "type": "git",
  8192. "url": "https://github.com/symfony/polyfill-mbstring.git",
  8193. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
  8194. },
  8195. "dist": {
  8196. "type": "zip",
  8197. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
  8198. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
  8199. "shasum": ""
  8200. },
  8201. "require": {
  8202. "ext-iconv": "*",
  8203. "php": ">=7.2"
  8204. },
  8205. "provide": {
  8206. "ext-mbstring": "*"
  8207. },
  8208. "suggest": {
  8209. "ext-mbstring": "For best performance"
  8210. },
  8211. "type": "library",
  8212. "extra": {
  8213. "thanks": {
  8214. "url": "https://github.com/symfony/polyfill",
  8215. "name": "symfony/polyfill"
  8216. }
  8217. },
  8218. "autoload": {
  8219. "files": [
  8220. "bootstrap.php"
  8221. ],
  8222. "psr-4": {
  8223. "Symfony\\Polyfill\\Mbstring\\": ""
  8224. }
  8225. },
  8226. "notification-url": "https://packagist.org/downloads/",
  8227. "license": [
  8228. "MIT"
  8229. ],
  8230. "authors": [
  8231. {
  8232. "name": "Nicolas Grekas",
  8233. "email": "p@tchwork.com"
  8234. },
  8235. {
  8236. "name": "Symfony Community",
  8237. "homepage": "https://symfony.com/contributors"
  8238. }
  8239. ],
  8240. "description": "Symfony polyfill for the Mbstring extension",
  8241. "homepage": "https://symfony.com",
  8242. "keywords": [
  8243. "compatibility",
  8244. "mbstring",
  8245. "polyfill",
  8246. "portable",
  8247. "shim"
  8248. ],
  8249. "support": {
  8250. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.33.0"
  8251. },
  8252. "funding": [
  8253. {
  8254. "url": "https://symfony.com/sponsor",
  8255. "type": "custom"
  8256. },
  8257. {
  8258. "url": "https://github.com/fabpot",
  8259. "type": "github"
  8260. },
  8261. {
  8262. "url": "https://github.com/nicolas-grekas",
  8263. "type": "github"
  8264. },
  8265. {
  8266. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8267. "type": "tidelift"
  8268. }
  8269. ],
  8270. "time": "2024-12-23T08:48:59+00:00"
  8271. },
  8272. {
  8273. "name": "symfony/polyfill-php80",
  8274. "version": "v1.33.0",
  8275. "source": {
  8276. "type": "git",
  8277. "url": "https://github.com/symfony/polyfill-php80.git",
  8278. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608"
  8279. },
  8280. "dist": {
  8281. "type": "zip",
  8282. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  8283. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  8284. "shasum": ""
  8285. },
  8286. "require": {
  8287. "php": ">=7.2"
  8288. },
  8289. "type": "library",
  8290. "extra": {
  8291. "thanks": {
  8292. "url": "https://github.com/symfony/polyfill",
  8293. "name": "symfony/polyfill"
  8294. }
  8295. },
  8296. "autoload": {
  8297. "files": [
  8298. "bootstrap.php"
  8299. ],
  8300. "psr-4": {
  8301. "Symfony\\Polyfill\\Php80\\": ""
  8302. },
  8303. "classmap": [
  8304. "Resources/stubs"
  8305. ]
  8306. },
  8307. "notification-url": "https://packagist.org/downloads/",
  8308. "license": [
  8309. "MIT"
  8310. ],
  8311. "authors": [
  8312. {
  8313. "name": "Ion Bazan",
  8314. "email": "ion.bazan@gmail.com"
  8315. },
  8316. {
  8317. "name": "Nicolas Grekas",
  8318. "email": "p@tchwork.com"
  8319. },
  8320. {
  8321. "name": "Symfony Community",
  8322. "homepage": "https://symfony.com/contributors"
  8323. }
  8324. ],
  8325. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  8326. "homepage": "https://symfony.com",
  8327. "keywords": [
  8328. "compatibility",
  8329. "polyfill",
  8330. "portable",
  8331. "shim"
  8332. ],
  8333. "support": {
  8334. "source": "https://github.com/symfony/polyfill-php80/tree/v1.33.0"
  8335. },
  8336. "funding": [
  8337. {
  8338. "url": "https://symfony.com/sponsor",
  8339. "type": "custom"
  8340. },
  8341. {
  8342. "url": "https://github.com/fabpot",
  8343. "type": "github"
  8344. },
  8345. {
  8346. "url": "https://github.com/nicolas-grekas",
  8347. "type": "github"
  8348. },
  8349. {
  8350. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8351. "type": "tidelift"
  8352. }
  8353. ],
  8354. "time": "2025-01-02T08:10:11+00:00"
  8355. },
  8356. {
  8357. "name": "symfony/polyfill-php83",
  8358. "version": "v1.33.0",
  8359. "source": {
  8360. "type": "git",
  8361. "url": "https://github.com/symfony/polyfill-php83.git",
  8362. "reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5"
  8363. },
  8364. "dist": {
  8365. "type": "zip",
  8366. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/17f6f9a6b1735c0f163024d959f700cfbc5155e5",
  8367. "reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5",
  8368. "shasum": ""
  8369. },
  8370. "require": {
  8371. "php": ">=7.2"
  8372. },
  8373. "type": "library",
  8374. "extra": {
  8375. "thanks": {
  8376. "url": "https://github.com/symfony/polyfill",
  8377. "name": "symfony/polyfill"
  8378. }
  8379. },
  8380. "autoload": {
  8381. "files": [
  8382. "bootstrap.php"
  8383. ],
  8384. "psr-4": {
  8385. "Symfony\\Polyfill\\Php83\\": ""
  8386. },
  8387. "classmap": [
  8388. "Resources/stubs"
  8389. ]
  8390. },
  8391. "notification-url": "https://packagist.org/downloads/",
  8392. "license": [
  8393. "MIT"
  8394. ],
  8395. "authors": [
  8396. {
  8397. "name": "Nicolas Grekas",
  8398. "email": "p@tchwork.com"
  8399. },
  8400. {
  8401. "name": "Symfony Community",
  8402. "homepage": "https://symfony.com/contributors"
  8403. }
  8404. ],
  8405. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  8406. "homepage": "https://symfony.com",
  8407. "keywords": [
  8408. "compatibility",
  8409. "polyfill",
  8410. "portable",
  8411. "shim"
  8412. ],
  8413. "support": {
  8414. "source": "https://github.com/symfony/polyfill-php83/tree/v1.33.0"
  8415. },
  8416. "funding": [
  8417. {
  8418. "url": "https://symfony.com/sponsor",
  8419. "type": "custom"
  8420. },
  8421. {
  8422. "url": "https://github.com/fabpot",
  8423. "type": "github"
  8424. },
  8425. {
  8426. "url": "https://github.com/nicolas-grekas",
  8427. "type": "github"
  8428. },
  8429. {
  8430. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8431. "type": "tidelift"
  8432. }
  8433. ],
  8434. "time": "2025-07-08T02:45:35+00:00"
  8435. },
  8436. {
  8437. "name": "symfony/polyfill-php84",
  8438. "version": "v1.33.0",
  8439. "source": {
  8440. "type": "git",
  8441. "url": "https://github.com/symfony/polyfill-php84.git",
  8442. "reference": "d8ced4d875142b6a7426000426b8abc631d6b191"
  8443. },
  8444. "dist": {
  8445. "type": "zip",
  8446. "url": "https://api.github.com/repos/symfony/polyfill-php84/zipball/d8ced4d875142b6a7426000426b8abc631d6b191",
  8447. "reference": "d8ced4d875142b6a7426000426b8abc631d6b191",
  8448. "shasum": ""
  8449. },
  8450. "require": {
  8451. "php": ">=7.2"
  8452. },
  8453. "type": "library",
  8454. "extra": {
  8455. "thanks": {
  8456. "url": "https://github.com/symfony/polyfill",
  8457. "name": "symfony/polyfill"
  8458. }
  8459. },
  8460. "autoload": {
  8461. "files": [
  8462. "bootstrap.php"
  8463. ],
  8464. "psr-4": {
  8465. "Symfony\\Polyfill\\Php84\\": ""
  8466. },
  8467. "classmap": [
  8468. "Resources/stubs"
  8469. ]
  8470. },
  8471. "notification-url": "https://packagist.org/downloads/",
  8472. "license": [
  8473. "MIT"
  8474. ],
  8475. "authors": [
  8476. {
  8477. "name": "Nicolas Grekas",
  8478. "email": "p@tchwork.com"
  8479. },
  8480. {
  8481. "name": "Symfony Community",
  8482. "homepage": "https://symfony.com/contributors"
  8483. }
  8484. ],
  8485. "description": "Symfony polyfill backporting some PHP 8.4+ features to lower PHP versions",
  8486. "homepage": "https://symfony.com",
  8487. "keywords": [
  8488. "compatibility",
  8489. "polyfill",
  8490. "portable",
  8491. "shim"
  8492. ],
  8493. "support": {
  8494. "source": "https://github.com/symfony/polyfill-php84/tree/v1.33.0"
  8495. },
  8496. "funding": [
  8497. {
  8498. "url": "https://symfony.com/sponsor",
  8499. "type": "custom"
  8500. },
  8501. {
  8502. "url": "https://github.com/fabpot",
  8503. "type": "github"
  8504. },
  8505. {
  8506. "url": "https://github.com/nicolas-grekas",
  8507. "type": "github"
  8508. },
  8509. {
  8510. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8511. "type": "tidelift"
  8512. }
  8513. ],
  8514. "time": "2025-06-24T13:30:11+00:00"
  8515. },
  8516. {
  8517. "name": "symfony/polyfill-php85",
  8518. "version": "v1.33.0",
  8519. "source": {
  8520. "type": "git",
  8521. "url": "https://github.com/symfony/polyfill-php85.git",
  8522. "reference": "d4e5fcd4ab3d998ab16c0db48e6cbb9a01993f91"
  8523. },
  8524. "dist": {
  8525. "type": "zip",
  8526. "url": "https://api.github.com/repos/symfony/polyfill-php85/zipball/d4e5fcd4ab3d998ab16c0db48e6cbb9a01993f91",
  8527. "reference": "d4e5fcd4ab3d998ab16c0db48e6cbb9a01993f91",
  8528. "shasum": ""
  8529. },
  8530. "require": {
  8531. "php": ">=7.2"
  8532. },
  8533. "type": "library",
  8534. "extra": {
  8535. "thanks": {
  8536. "url": "https://github.com/symfony/polyfill",
  8537. "name": "symfony/polyfill"
  8538. }
  8539. },
  8540. "autoload": {
  8541. "files": [
  8542. "bootstrap.php"
  8543. ],
  8544. "psr-4": {
  8545. "Symfony\\Polyfill\\Php85\\": ""
  8546. },
  8547. "classmap": [
  8548. "Resources/stubs"
  8549. ]
  8550. },
  8551. "notification-url": "https://packagist.org/downloads/",
  8552. "license": [
  8553. "MIT"
  8554. ],
  8555. "authors": [
  8556. {
  8557. "name": "Nicolas Grekas",
  8558. "email": "p@tchwork.com"
  8559. },
  8560. {
  8561. "name": "Symfony Community",
  8562. "homepage": "https://symfony.com/contributors"
  8563. }
  8564. ],
  8565. "description": "Symfony polyfill backporting some PHP 8.5+ features to lower PHP versions",
  8566. "homepage": "https://symfony.com",
  8567. "keywords": [
  8568. "compatibility",
  8569. "polyfill",
  8570. "portable",
  8571. "shim"
  8572. ],
  8573. "support": {
  8574. "source": "https://github.com/symfony/polyfill-php85/tree/v1.33.0"
  8575. },
  8576. "funding": [
  8577. {
  8578. "url": "https://symfony.com/sponsor",
  8579. "type": "custom"
  8580. },
  8581. {
  8582. "url": "https://github.com/fabpot",
  8583. "type": "github"
  8584. },
  8585. {
  8586. "url": "https://github.com/nicolas-grekas",
  8587. "type": "github"
  8588. },
  8589. {
  8590. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8591. "type": "tidelift"
  8592. }
  8593. ],
  8594. "time": "2025-06-23T16:12:55+00:00"
  8595. },
  8596. {
  8597. "name": "symfony/polyfill-uuid",
  8598. "version": "v1.33.0",
  8599. "source": {
  8600. "type": "git",
  8601. "url": "https://github.com/symfony/polyfill-uuid.git",
  8602. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2"
  8603. },
  8604. "dist": {
  8605. "type": "zip",
  8606. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  8607. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  8608. "shasum": ""
  8609. },
  8610. "require": {
  8611. "php": ">=7.2"
  8612. },
  8613. "provide": {
  8614. "ext-uuid": "*"
  8615. },
  8616. "suggest": {
  8617. "ext-uuid": "For best performance"
  8618. },
  8619. "type": "library",
  8620. "extra": {
  8621. "thanks": {
  8622. "url": "https://github.com/symfony/polyfill",
  8623. "name": "symfony/polyfill"
  8624. }
  8625. },
  8626. "autoload": {
  8627. "files": [
  8628. "bootstrap.php"
  8629. ],
  8630. "psr-4": {
  8631. "Symfony\\Polyfill\\Uuid\\": ""
  8632. }
  8633. },
  8634. "notification-url": "https://packagist.org/downloads/",
  8635. "license": [
  8636. "MIT"
  8637. ],
  8638. "authors": [
  8639. {
  8640. "name": "Grégoire Pineau",
  8641. "email": "lyrixx@lyrixx.info"
  8642. },
  8643. {
  8644. "name": "Symfony Community",
  8645. "homepage": "https://symfony.com/contributors"
  8646. }
  8647. ],
  8648. "description": "Symfony polyfill for uuid functions",
  8649. "homepage": "https://symfony.com",
  8650. "keywords": [
  8651. "compatibility",
  8652. "polyfill",
  8653. "portable",
  8654. "uuid"
  8655. ],
  8656. "support": {
  8657. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.33.0"
  8658. },
  8659. "funding": [
  8660. {
  8661. "url": "https://symfony.com/sponsor",
  8662. "type": "custom"
  8663. },
  8664. {
  8665. "url": "https://github.com/fabpot",
  8666. "type": "github"
  8667. },
  8668. {
  8669. "url": "https://github.com/nicolas-grekas",
  8670. "type": "github"
  8671. },
  8672. {
  8673. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8674. "type": "tidelift"
  8675. }
  8676. ],
  8677. "time": "2024-09-09T11:45:10+00:00"
  8678. },
  8679. {
  8680. "name": "symfony/process",
  8681. "version": "v7.3.0",
  8682. "source": {
  8683. "type": "git",
  8684. "url": "https://github.com/symfony/process.git",
  8685. "reference": "40c295f2deb408d5e9d2d32b8ba1dd61e36f05af"
  8686. },
  8687. "dist": {
  8688. "type": "zip",
  8689. "url": "https://api.github.com/repos/symfony/process/zipball/40c295f2deb408d5e9d2d32b8ba1dd61e36f05af",
  8690. "reference": "40c295f2deb408d5e9d2d32b8ba1dd61e36f05af",
  8691. "shasum": ""
  8692. },
  8693. "require": {
  8694. "php": ">=8.2"
  8695. },
  8696. "type": "library",
  8697. "autoload": {
  8698. "psr-4": {
  8699. "Symfony\\Component\\Process\\": ""
  8700. },
  8701. "exclude-from-classmap": [
  8702. "/Tests/"
  8703. ]
  8704. },
  8705. "notification-url": "https://packagist.org/downloads/",
  8706. "license": [
  8707. "MIT"
  8708. ],
  8709. "authors": [
  8710. {
  8711. "name": "Fabien Potencier",
  8712. "email": "fabien@symfony.com"
  8713. },
  8714. {
  8715. "name": "Symfony Community",
  8716. "homepage": "https://symfony.com/contributors"
  8717. }
  8718. ],
  8719. "description": "Executes commands in sub-processes",
  8720. "homepage": "https://symfony.com",
  8721. "support": {
  8722. "source": "https://github.com/symfony/process/tree/v7.3.0"
  8723. },
  8724. "funding": [
  8725. {
  8726. "url": "https://symfony.com/sponsor",
  8727. "type": "custom"
  8728. },
  8729. {
  8730. "url": "https://github.com/fabpot",
  8731. "type": "github"
  8732. },
  8733. {
  8734. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8735. "type": "tidelift"
  8736. }
  8737. ],
  8738. "time": "2025-04-17T09:11:12+00:00"
  8739. },
  8740. {
  8741. "name": "symfony/routing",
  8742. "version": "v7.3.2",
  8743. "source": {
  8744. "type": "git",
  8745. "url": "https://github.com/symfony/routing.git",
  8746. "reference": "7614b8ca5fa89b9cd233e21b627bfc5774f586e4"
  8747. },
  8748. "dist": {
  8749. "type": "zip",
  8750. "url": "https://api.github.com/repos/symfony/routing/zipball/7614b8ca5fa89b9cd233e21b627bfc5774f586e4",
  8751. "reference": "7614b8ca5fa89b9cd233e21b627bfc5774f586e4",
  8752. "shasum": ""
  8753. },
  8754. "require": {
  8755. "php": ">=8.2",
  8756. "symfony/deprecation-contracts": "^2.5|^3"
  8757. },
  8758. "conflict": {
  8759. "symfony/config": "<6.4",
  8760. "symfony/dependency-injection": "<6.4",
  8761. "symfony/yaml": "<6.4"
  8762. },
  8763. "require-dev": {
  8764. "psr/log": "^1|^2|^3",
  8765. "symfony/config": "^6.4|^7.0",
  8766. "symfony/dependency-injection": "^6.4|^7.0",
  8767. "symfony/expression-language": "^6.4|^7.0",
  8768. "symfony/http-foundation": "^6.4|^7.0",
  8769. "symfony/yaml": "^6.4|^7.0"
  8770. },
  8771. "type": "library",
  8772. "autoload": {
  8773. "psr-4": {
  8774. "Symfony\\Component\\Routing\\": ""
  8775. },
  8776. "exclude-from-classmap": [
  8777. "/Tests/"
  8778. ]
  8779. },
  8780. "notification-url": "https://packagist.org/downloads/",
  8781. "license": [
  8782. "MIT"
  8783. ],
  8784. "authors": [
  8785. {
  8786. "name": "Fabien Potencier",
  8787. "email": "fabien@symfony.com"
  8788. },
  8789. {
  8790. "name": "Symfony Community",
  8791. "homepage": "https://symfony.com/contributors"
  8792. }
  8793. ],
  8794. "description": "Maps an HTTP request to a set of configuration variables",
  8795. "homepage": "https://symfony.com",
  8796. "keywords": [
  8797. "router",
  8798. "routing",
  8799. "uri",
  8800. "url"
  8801. ],
  8802. "support": {
  8803. "source": "https://github.com/symfony/routing/tree/v7.3.2"
  8804. },
  8805. "funding": [
  8806. {
  8807. "url": "https://symfony.com/sponsor",
  8808. "type": "custom"
  8809. },
  8810. {
  8811. "url": "https://github.com/fabpot",
  8812. "type": "github"
  8813. },
  8814. {
  8815. "url": "https://github.com/nicolas-grekas",
  8816. "type": "github"
  8817. },
  8818. {
  8819. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8820. "type": "tidelift"
  8821. }
  8822. ],
  8823. "time": "2025-07-15T11:36:08+00:00"
  8824. },
  8825. {
  8826. "name": "symfony/service-contracts",
  8827. "version": "v3.6.0",
  8828. "source": {
  8829. "type": "git",
  8830. "url": "https://github.com/symfony/service-contracts.git",
  8831. "reference": "f021b05a130d35510bd6b25fe9053c2a8a15d5d4"
  8832. },
  8833. "dist": {
  8834. "type": "zip",
  8835. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f021b05a130d35510bd6b25fe9053c2a8a15d5d4",
  8836. "reference": "f021b05a130d35510bd6b25fe9053c2a8a15d5d4",
  8837. "shasum": ""
  8838. },
  8839. "require": {
  8840. "php": ">=8.1",
  8841. "psr/container": "^1.1|^2.0",
  8842. "symfony/deprecation-contracts": "^2.5|^3"
  8843. },
  8844. "conflict": {
  8845. "ext-psr": "<1.1|>=2"
  8846. },
  8847. "type": "library",
  8848. "extra": {
  8849. "thanks": {
  8850. "url": "https://github.com/symfony/contracts",
  8851. "name": "symfony/contracts"
  8852. },
  8853. "branch-alias": {
  8854. "dev-main": "3.6-dev"
  8855. }
  8856. },
  8857. "autoload": {
  8858. "psr-4": {
  8859. "Symfony\\Contracts\\Service\\": ""
  8860. },
  8861. "exclude-from-classmap": [
  8862. "/Test/"
  8863. ]
  8864. },
  8865. "notification-url": "https://packagist.org/downloads/",
  8866. "license": [
  8867. "MIT"
  8868. ],
  8869. "authors": [
  8870. {
  8871. "name": "Nicolas Grekas",
  8872. "email": "p@tchwork.com"
  8873. },
  8874. {
  8875. "name": "Symfony Community",
  8876. "homepage": "https://symfony.com/contributors"
  8877. }
  8878. ],
  8879. "description": "Generic abstractions related to writing services",
  8880. "homepage": "https://symfony.com",
  8881. "keywords": [
  8882. "abstractions",
  8883. "contracts",
  8884. "decoupling",
  8885. "interfaces",
  8886. "interoperability",
  8887. "standards"
  8888. ],
  8889. "support": {
  8890. "source": "https://github.com/symfony/service-contracts/tree/v3.6.0"
  8891. },
  8892. "funding": [
  8893. {
  8894. "url": "https://symfony.com/sponsor",
  8895. "type": "custom"
  8896. },
  8897. {
  8898. "url": "https://github.com/fabpot",
  8899. "type": "github"
  8900. },
  8901. {
  8902. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8903. "type": "tidelift"
  8904. }
  8905. ],
  8906. "time": "2025-04-25T09:37:31+00:00"
  8907. },
  8908. {
  8909. "name": "symfony/string",
  8910. "version": "v7.3.2",
  8911. "source": {
  8912. "type": "git",
  8913. "url": "https://github.com/symfony/string.git",
  8914. "reference": "42f505aff654e62ac7ac2ce21033818297ca89ca"
  8915. },
  8916. "dist": {
  8917. "type": "zip",
  8918. "url": "https://api.github.com/repos/symfony/string/zipball/42f505aff654e62ac7ac2ce21033818297ca89ca",
  8919. "reference": "42f505aff654e62ac7ac2ce21033818297ca89ca",
  8920. "shasum": ""
  8921. },
  8922. "require": {
  8923. "php": ">=8.2",
  8924. "symfony/polyfill-ctype": "~1.8",
  8925. "symfony/polyfill-intl-grapheme": "~1.0",
  8926. "symfony/polyfill-intl-normalizer": "~1.0",
  8927. "symfony/polyfill-mbstring": "~1.0"
  8928. },
  8929. "conflict": {
  8930. "symfony/translation-contracts": "<2.5"
  8931. },
  8932. "require-dev": {
  8933. "symfony/emoji": "^7.1",
  8934. "symfony/error-handler": "^6.4|^7.0",
  8935. "symfony/http-client": "^6.4|^7.0",
  8936. "symfony/intl": "^6.4|^7.0",
  8937. "symfony/translation-contracts": "^2.5|^3.0",
  8938. "symfony/var-exporter": "^6.4|^7.0"
  8939. },
  8940. "type": "library",
  8941. "autoload": {
  8942. "files": [
  8943. "Resources/functions.php"
  8944. ],
  8945. "psr-4": {
  8946. "Symfony\\Component\\String\\": ""
  8947. },
  8948. "exclude-from-classmap": [
  8949. "/Tests/"
  8950. ]
  8951. },
  8952. "notification-url": "https://packagist.org/downloads/",
  8953. "license": [
  8954. "MIT"
  8955. ],
  8956. "authors": [
  8957. {
  8958. "name": "Nicolas Grekas",
  8959. "email": "p@tchwork.com"
  8960. },
  8961. {
  8962. "name": "Symfony Community",
  8963. "homepage": "https://symfony.com/contributors"
  8964. }
  8965. ],
  8966. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  8967. "homepage": "https://symfony.com",
  8968. "keywords": [
  8969. "grapheme",
  8970. "i18n",
  8971. "string",
  8972. "unicode",
  8973. "utf-8",
  8974. "utf8"
  8975. ],
  8976. "support": {
  8977. "source": "https://github.com/symfony/string/tree/v7.3.2"
  8978. },
  8979. "funding": [
  8980. {
  8981. "url": "https://symfony.com/sponsor",
  8982. "type": "custom"
  8983. },
  8984. {
  8985. "url": "https://github.com/fabpot",
  8986. "type": "github"
  8987. },
  8988. {
  8989. "url": "https://github.com/nicolas-grekas",
  8990. "type": "github"
  8991. },
  8992. {
  8993. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8994. "type": "tidelift"
  8995. }
  8996. ],
  8997. "time": "2025-07-10T08:47:49+00:00"
  8998. },
  8999. {
  9000. "name": "symfony/translation",
  9001. "version": "v7.3.2",
  9002. "source": {
  9003. "type": "git",
  9004. "url": "https://github.com/symfony/translation.git",
  9005. "reference": "81b48f4daa96272efcce9c7a6c4b58e629df3c90"
  9006. },
  9007. "dist": {
  9008. "type": "zip",
  9009. "url": "https://api.github.com/repos/symfony/translation/zipball/81b48f4daa96272efcce9c7a6c4b58e629df3c90",
  9010. "reference": "81b48f4daa96272efcce9c7a6c4b58e629df3c90",
  9011. "shasum": ""
  9012. },
  9013. "require": {
  9014. "php": ">=8.2",
  9015. "symfony/deprecation-contracts": "^2.5|^3",
  9016. "symfony/polyfill-mbstring": "~1.0",
  9017. "symfony/translation-contracts": "^2.5|^3.0"
  9018. },
  9019. "conflict": {
  9020. "nikic/php-parser": "<5.0",
  9021. "symfony/config": "<6.4",
  9022. "symfony/console": "<6.4",
  9023. "symfony/dependency-injection": "<6.4",
  9024. "symfony/http-client-contracts": "<2.5",
  9025. "symfony/http-kernel": "<6.4",
  9026. "symfony/service-contracts": "<2.5",
  9027. "symfony/twig-bundle": "<6.4",
  9028. "symfony/yaml": "<6.4"
  9029. },
  9030. "provide": {
  9031. "symfony/translation-implementation": "2.3|3.0"
  9032. },
  9033. "require-dev": {
  9034. "nikic/php-parser": "^5.0",
  9035. "psr/log": "^1|^2|^3",
  9036. "symfony/config": "^6.4|^7.0",
  9037. "symfony/console": "^6.4|^7.0",
  9038. "symfony/dependency-injection": "^6.4|^7.0",
  9039. "symfony/finder": "^6.4|^7.0",
  9040. "symfony/http-client-contracts": "^2.5|^3.0",
  9041. "symfony/http-kernel": "^6.4|^7.0",
  9042. "symfony/intl": "^6.4|^7.0",
  9043. "symfony/polyfill-intl-icu": "^1.21",
  9044. "symfony/routing": "^6.4|^7.0",
  9045. "symfony/service-contracts": "^2.5|^3",
  9046. "symfony/yaml": "^6.4|^7.0"
  9047. },
  9048. "type": "library",
  9049. "autoload": {
  9050. "files": [
  9051. "Resources/functions.php"
  9052. ],
  9053. "psr-4": {
  9054. "Symfony\\Component\\Translation\\": ""
  9055. },
  9056. "exclude-from-classmap": [
  9057. "/Tests/"
  9058. ]
  9059. },
  9060. "notification-url": "https://packagist.org/downloads/",
  9061. "license": [
  9062. "MIT"
  9063. ],
  9064. "authors": [
  9065. {
  9066. "name": "Fabien Potencier",
  9067. "email": "fabien@symfony.com"
  9068. },
  9069. {
  9070. "name": "Symfony Community",
  9071. "homepage": "https://symfony.com/contributors"
  9072. }
  9073. ],
  9074. "description": "Provides tools to internationalize your application",
  9075. "homepage": "https://symfony.com",
  9076. "support": {
  9077. "source": "https://github.com/symfony/translation/tree/v7.3.2"
  9078. },
  9079. "funding": [
  9080. {
  9081. "url": "https://symfony.com/sponsor",
  9082. "type": "custom"
  9083. },
  9084. {
  9085. "url": "https://github.com/fabpot",
  9086. "type": "github"
  9087. },
  9088. {
  9089. "url": "https://github.com/nicolas-grekas",
  9090. "type": "github"
  9091. },
  9092. {
  9093. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9094. "type": "tidelift"
  9095. }
  9096. ],
  9097. "time": "2025-07-30T17:31:46+00:00"
  9098. },
  9099. {
  9100. "name": "symfony/translation-contracts",
  9101. "version": "v3.6.0",
  9102. "source": {
  9103. "type": "git",
  9104. "url": "https://github.com/symfony/translation-contracts.git",
  9105. "reference": "df210c7a2573f1913b2d17cc95f90f53a73d8f7d"
  9106. },
  9107. "dist": {
  9108. "type": "zip",
  9109. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/df210c7a2573f1913b2d17cc95f90f53a73d8f7d",
  9110. "reference": "df210c7a2573f1913b2d17cc95f90f53a73d8f7d",
  9111. "shasum": ""
  9112. },
  9113. "require": {
  9114. "php": ">=8.1"
  9115. },
  9116. "type": "library",
  9117. "extra": {
  9118. "thanks": {
  9119. "url": "https://github.com/symfony/contracts",
  9120. "name": "symfony/contracts"
  9121. },
  9122. "branch-alias": {
  9123. "dev-main": "3.6-dev"
  9124. }
  9125. },
  9126. "autoload": {
  9127. "psr-4": {
  9128. "Symfony\\Contracts\\Translation\\": ""
  9129. },
  9130. "exclude-from-classmap": [
  9131. "/Test/"
  9132. ]
  9133. },
  9134. "notification-url": "https://packagist.org/downloads/",
  9135. "license": [
  9136. "MIT"
  9137. ],
  9138. "authors": [
  9139. {
  9140. "name": "Nicolas Grekas",
  9141. "email": "p@tchwork.com"
  9142. },
  9143. {
  9144. "name": "Symfony Community",
  9145. "homepage": "https://symfony.com/contributors"
  9146. }
  9147. ],
  9148. "description": "Generic abstractions related to translation",
  9149. "homepage": "https://symfony.com",
  9150. "keywords": [
  9151. "abstractions",
  9152. "contracts",
  9153. "decoupling",
  9154. "interfaces",
  9155. "interoperability",
  9156. "standards"
  9157. ],
  9158. "support": {
  9159. "source": "https://github.com/symfony/translation-contracts/tree/v3.6.0"
  9160. },
  9161. "funding": [
  9162. {
  9163. "url": "https://symfony.com/sponsor",
  9164. "type": "custom"
  9165. },
  9166. {
  9167. "url": "https://github.com/fabpot",
  9168. "type": "github"
  9169. },
  9170. {
  9171. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9172. "type": "tidelift"
  9173. }
  9174. ],
  9175. "time": "2024-09-27T08:32:26+00:00"
  9176. },
  9177. {
  9178. "name": "symfony/uid",
  9179. "version": "v7.3.1",
  9180. "source": {
  9181. "type": "git",
  9182. "url": "https://github.com/symfony/uid.git",
  9183. "reference": "a69f69f3159b852651a6bf45a9fdd149520525bb"
  9184. },
  9185. "dist": {
  9186. "type": "zip",
  9187. "url": "https://api.github.com/repos/symfony/uid/zipball/a69f69f3159b852651a6bf45a9fdd149520525bb",
  9188. "reference": "a69f69f3159b852651a6bf45a9fdd149520525bb",
  9189. "shasum": ""
  9190. },
  9191. "require": {
  9192. "php": ">=8.2",
  9193. "symfony/polyfill-uuid": "^1.15"
  9194. },
  9195. "require-dev": {
  9196. "symfony/console": "^6.4|^7.0"
  9197. },
  9198. "type": "library",
  9199. "autoload": {
  9200. "psr-4": {
  9201. "Symfony\\Component\\Uid\\": ""
  9202. },
  9203. "exclude-from-classmap": [
  9204. "/Tests/"
  9205. ]
  9206. },
  9207. "notification-url": "https://packagist.org/downloads/",
  9208. "license": [
  9209. "MIT"
  9210. ],
  9211. "authors": [
  9212. {
  9213. "name": "Grégoire Pineau",
  9214. "email": "lyrixx@lyrixx.info"
  9215. },
  9216. {
  9217. "name": "Nicolas Grekas",
  9218. "email": "p@tchwork.com"
  9219. },
  9220. {
  9221. "name": "Symfony Community",
  9222. "homepage": "https://symfony.com/contributors"
  9223. }
  9224. ],
  9225. "description": "Provides an object-oriented API to generate and represent UIDs",
  9226. "homepage": "https://symfony.com",
  9227. "keywords": [
  9228. "UID",
  9229. "ulid",
  9230. "uuid"
  9231. ],
  9232. "support": {
  9233. "source": "https://github.com/symfony/uid/tree/v7.3.1"
  9234. },
  9235. "funding": [
  9236. {
  9237. "url": "https://symfony.com/sponsor",
  9238. "type": "custom"
  9239. },
  9240. {
  9241. "url": "https://github.com/fabpot",
  9242. "type": "github"
  9243. },
  9244. {
  9245. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9246. "type": "tidelift"
  9247. }
  9248. ],
  9249. "time": "2025-06-27T19:55:54+00:00"
  9250. },
  9251. {
  9252. "name": "symfony/var-dumper",
  9253. "version": "v7.3.2",
  9254. "source": {
  9255. "type": "git",
  9256. "url": "https://github.com/symfony/var-dumper.git",
  9257. "reference": "53205bea27450dc5c65377518b3275e126d45e75"
  9258. },
  9259. "dist": {
  9260. "type": "zip",
  9261. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/53205bea27450dc5c65377518b3275e126d45e75",
  9262. "reference": "53205bea27450dc5c65377518b3275e126d45e75",
  9263. "shasum": ""
  9264. },
  9265. "require": {
  9266. "php": ">=8.2",
  9267. "symfony/deprecation-contracts": "^2.5|^3",
  9268. "symfony/polyfill-mbstring": "~1.0"
  9269. },
  9270. "conflict": {
  9271. "symfony/console": "<6.4"
  9272. },
  9273. "require-dev": {
  9274. "symfony/console": "^6.4|^7.0",
  9275. "symfony/http-kernel": "^6.4|^7.0",
  9276. "symfony/process": "^6.4|^7.0",
  9277. "symfony/uid": "^6.4|^7.0",
  9278. "twig/twig": "^3.12"
  9279. },
  9280. "bin": [
  9281. "Resources/bin/var-dump-server"
  9282. ],
  9283. "type": "library",
  9284. "autoload": {
  9285. "files": [
  9286. "Resources/functions/dump.php"
  9287. ],
  9288. "psr-4": {
  9289. "Symfony\\Component\\VarDumper\\": ""
  9290. },
  9291. "exclude-from-classmap": [
  9292. "/Tests/"
  9293. ]
  9294. },
  9295. "notification-url": "https://packagist.org/downloads/",
  9296. "license": [
  9297. "MIT"
  9298. ],
  9299. "authors": [
  9300. {
  9301. "name": "Nicolas Grekas",
  9302. "email": "p@tchwork.com"
  9303. },
  9304. {
  9305. "name": "Symfony Community",
  9306. "homepage": "https://symfony.com/contributors"
  9307. }
  9308. ],
  9309. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  9310. "homepage": "https://symfony.com",
  9311. "keywords": [
  9312. "debug",
  9313. "dump"
  9314. ],
  9315. "support": {
  9316. "source": "https://github.com/symfony/var-dumper/tree/v7.3.2"
  9317. },
  9318. "funding": [
  9319. {
  9320. "url": "https://symfony.com/sponsor",
  9321. "type": "custom"
  9322. },
  9323. {
  9324. "url": "https://github.com/fabpot",
  9325. "type": "github"
  9326. },
  9327. {
  9328. "url": "https://github.com/nicolas-grekas",
  9329. "type": "github"
  9330. },
  9331. {
  9332. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9333. "type": "tidelift"
  9334. }
  9335. ],
  9336. "time": "2025-07-29T20:02:46+00:00"
  9337. },
  9338. {
  9339. "name": "tijsverkoyen/css-to-inline-styles",
  9340. "version": "v2.3.0",
  9341. "source": {
  9342. "type": "git",
  9343. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  9344. "reference": "0d72ac1c00084279c1816675284073c5a337c20d"
  9345. },
  9346. "dist": {
  9347. "type": "zip",
  9348. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/0d72ac1c00084279c1816675284073c5a337c20d",
  9349. "reference": "0d72ac1c00084279c1816675284073c5a337c20d",
  9350. "shasum": ""
  9351. },
  9352. "require": {
  9353. "ext-dom": "*",
  9354. "ext-libxml": "*",
  9355. "php": "^7.4 || ^8.0",
  9356. "symfony/css-selector": "^5.4 || ^6.0 || ^7.0"
  9357. },
  9358. "require-dev": {
  9359. "phpstan/phpstan": "^2.0",
  9360. "phpstan/phpstan-phpunit": "^2.0",
  9361. "phpunit/phpunit": "^8.5.21 || ^9.5.10"
  9362. },
  9363. "type": "library",
  9364. "extra": {
  9365. "branch-alias": {
  9366. "dev-master": "2.x-dev"
  9367. }
  9368. },
  9369. "autoload": {
  9370. "psr-4": {
  9371. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  9372. }
  9373. },
  9374. "notification-url": "https://packagist.org/downloads/",
  9375. "license": [
  9376. "BSD-3-Clause"
  9377. ],
  9378. "authors": [
  9379. {
  9380. "name": "Tijs Verkoyen",
  9381. "email": "css_to_inline_styles@verkoyen.eu",
  9382. "role": "Developer"
  9383. }
  9384. ],
  9385. "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.",
  9386. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  9387. "support": {
  9388. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  9389. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.3.0"
  9390. },
  9391. "time": "2024-12-21T16:25:41+00:00"
  9392. },
  9393. {
  9394. "name": "vlucas/phpdotenv",
  9395. "version": "v5.6.2",
  9396. "source": {
  9397. "type": "git",
  9398. "url": "https://github.com/vlucas/phpdotenv.git",
  9399. "reference": "24ac4c74f91ee2c193fa1aaa5c249cb0822809af"
  9400. },
  9401. "dist": {
  9402. "type": "zip",
  9403. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/24ac4c74f91ee2c193fa1aaa5c249cb0822809af",
  9404. "reference": "24ac4c74f91ee2c193fa1aaa5c249cb0822809af",
  9405. "shasum": ""
  9406. },
  9407. "require": {
  9408. "ext-pcre": "*",
  9409. "graham-campbell/result-type": "^1.1.3",
  9410. "php": "^7.2.5 || ^8.0",
  9411. "phpoption/phpoption": "^1.9.3",
  9412. "symfony/polyfill-ctype": "^1.24",
  9413. "symfony/polyfill-mbstring": "^1.24",
  9414. "symfony/polyfill-php80": "^1.24"
  9415. },
  9416. "require-dev": {
  9417. "bamarni/composer-bin-plugin": "^1.8.2",
  9418. "ext-filter": "*",
  9419. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  9420. },
  9421. "suggest": {
  9422. "ext-filter": "Required to use the boolean validator."
  9423. },
  9424. "type": "library",
  9425. "extra": {
  9426. "bamarni-bin": {
  9427. "bin-links": true,
  9428. "forward-command": false
  9429. },
  9430. "branch-alias": {
  9431. "dev-master": "5.6-dev"
  9432. }
  9433. },
  9434. "autoload": {
  9435. "psr-4": {
  9436. "Dotenv\\": "src/"
  9437. }
  9438. },
  9439. "notification-url": "https://packagist.org/downloads/",
  9440. "license": [
  9441. "BSD-3-Clause"
  9442. ],
  9443. "authors": [
  9444. {
  9445. "name": "Graham Campbell",
  9446. "email": "hello@gjcampbell.co.uk",
  9447. "homepage": "https://github.com/GrahamCampbell"
  9448. },
  9449. {
  9450. "name": "Vance Lucas",
  9451. "email": "vance@vancelucas.com",
  9452. "homepage": "https://github.com/vlucas"
  9453. }
  9454. ],
  9455. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  9456. "keywords": [
  9457. "dotenv",
  9458. "env",
  9459. "environment"
  9460. ],
  9461. "support": {
  9462. "issues": "https://github.com/vlucas/phpdotenv/issues",
  9463. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.2"
  9464. },
  9465. "funding": [
  9466. {
  9467. "url": "https://github.com/GrahamCampbell",
  9468. "type": "github"
  9469. },
  9470. {
  9471. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  9472. "type": "tidelift"
  9473. }
  9474. ],
  9475. "time": "2025-04-30T23:37:27+00:00"
  9476. },
  9477. {
  9478. "name": "voku/portable-ascii",
  9479. "version": "2.0.3",
  9480. "source": {
  9481. "type": "git",
  9482. "url": "https://github.com/voku/portable-ascii.git",
  9483. "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d"
  9484. },
  9485. "dist": {
  9486. "type": "zip",
  9487. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
  9488. "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
  9489. "shasum": ""
  9490. },
  9491. "require": {
  9492. "php": ">=7.0.0"
  9493. },
  9494. "require-dev": {
  9495. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  9496. },
  9497. "suggest": {
  9498. "ext-intl": "Use Intl for transliterator_transliterate() support"
  9499. },
  9500. "type": "library",
  9501. "autoload": {
  9502. "psr-4": {
  9503. "voku\\": "src/voku/"
  9504. }
  9505. },
  9506. "notification-url": "https://packagist.org/downloads/",
  9507. "license": [
  9508. "MIT"
  9509. ],
  9510. "authors": [
  9511. {
  9512. "name": "Lars Moelleken",
  9513. "homepage": "https://www.moelleken.org/"
  9514. }
  9515. ],
  9516. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  9517. "homepage": "https://github.com/voku/portable-ascii",
  9518. "keywords": [
  9519. "ascii",
  9520. "clean",
  9521. "php"
  9522. ],
  9523. "support": {
  9524. "issues": "https://github.com/voku/portable-ascii/issues",
  9525. "source": "https://github.com/voku/portable-ascii/tree/2.0.3"
  9526. },
  9527. "funding": [
  9528. {
  9529. "url": "https://www.paypal.me/moelleken",
  9530. "type": "custom"
  9531. },
  9532. {
  9533. "url": "https://github.com/voku",
  9534. "type": "github"
  9535. },
  9536. {
  9537. "url": "https://opencollective.com/portable-ascii",
  9538. "type": "open_collective"
  9539. },
  9540. {
  9541. "url": "https://www.patreon.com/voku",
  9542. "type": "patreon"
  9543. },
  9544. {
  9545. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  9546. "type": "tidelift"
  9547. }
  9548. ],
  9549. "time": "2024-11-21T01:49:47+00:00"
  9550. },
  9551. {
  9552. "name": "webmozart/assert",
  9553. "version": "1.11.0",
  9554. "source": {
  9555. "type": "git",
  9556. "url": "https://github.com/webmozarts/assert.git",
  9557. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  9558. },
  9559. "dist": {
  9560. "type": "zip",
  9561. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  9562. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  9563. "shasum": ""
  9564. },
  9565. "require": {
  9566. "ext-ctype": "*",
  9567. "php": "^7.2 || ^8.0"
  9568. },
  9569. "conflict": {
  9570. "phpstan/phpstan": "<0.12.20",
  9571. "vimeo/psalm": "<4.6.1 || 4.6.2"
  9572. },
  9573. "require-dev": {
  9574. "phpunit/phpunit": "^8.5.13"
  9575. },
  9576. "type": "library",
  9577. "extra": {
  9578. "branch-alias": {
  9579. "dev-master": "1.10-dev"
  9580. }
  9581. },
  9582. "autoload": {
  9583. "psr-4": {
  9584. "Webmozart\\Assert\\": "src/"
  9585. }
  9586. },
  9587. "notification-url": "https://packagist.org/downloads/",
  9588. "license": [
  9589. "MIT"
  9590. ],
  9591. "authors": [
  9592. {
  9593. "name": "Bernhard Schussek",
  9594. "email": "bschussek@gmail.com"
  9595. }
  9596. ],
  9597. "description": "Assertions to validate method input/output with nice error messages.",
  9598. "keywords": [
  9599. "assert",
  9600. "check",
  9601. "validate"
  9602. ],
  9603. "support": {
  9604. "issues": "https://github.com/webmozarts/assert/issues",
  9605. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  9606. },
  9607. "time": "2022-06-03T18:03:27+00:00"
  9608. }
  9609. ],
  9610. "packages-dev": [
  9611. {
  9612. "name": "barryvdh/laravel-debugbar",
  9613. "version": "v3.16.0",
  9614. "source": {
  9615. "type": "git",
  9616. "url": "https://github.com/barryvdh/laravel-debugbar.git",
  9617. "reference": "f265cf5e38577d42311f1a90d619bcd3740bea23"
  9618. },
  9619. "dist": {
  9620. "type": "zip",
  9621. "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/f265cf5e38577d42311f1a90d619bcd3740bea23",
  9622. "reference": "f265cf5e38577d42311f1a90d619bcd3740bea23",
  9623. "shasum": ""
  9624. },
  9625. "require": {
  9626. "illuminate/routing": "^9|^10|^11|^12",
  9627. "illuminate/session": "^9|^10|^11|^12",
  9628. "illuminate/support": "^9|^10|^11|^12",
  9629. "php": "^8.1",
  9630. "php-debugbar/php-debugbar": "~2.2.0",
  9631. "symfony/finder": "^6|^7"
  9632. },
  9633. "require-dev": {
  9634. "mockery/mockery": "^1.3.3",
  9635. "orchestra/testbench-dusk": "^7|^8|^9|^10",
  9636. "phpunit/phpunit": "^9.5.10|^10|^11",
  9637. "squizlabs/php_codesniffer": "^3.5"
  9638. },
  9639. "type": "library",
  9640. "extra": {
  9641. "laravel": {
  9642. "aliases": {
  9643. "Debugbar": "Barryvdh\\Debugbar\\Facades\\Debugbar"
  9644. },
  9645. "providers": [
  9646. "Barryvdh\\Debugbar\\ServiceProvider"
  9647. ]
  9648. },
  9649. "branch-alias": {
  9650. "dev-master": "3.16-dev"
  9651. }
  9652. },
  9653. "autoload": {
  9654. "files": [
  9655. "src/helpers.php"
  9656. ],
  9657. "psr-4": {
  9658. "Barryvdh\\Debugbar\\": "src/"
  9659. }
  9660. },
  9661. "notification-url": "https://packagist.org/downloads/",
  9662. "license": [
  9663. "MIT"
  9664. ],
  9665. "authors": [
  9666. {
  9667. "name": "Barry vd. Heuvel",
  9668. "email": "barryvdh@gmail.com"
  9669. }
  9670. ],
  9671. "description": "PHP Debugbar integration for Laravel",
  9672. "keywords": [
  9673. "debug",
  9674. "debugbar",
  9675. "dev",
  9676. "laravel",
  9677. "profiler",
  9678. "webprofiler"
  9679. ],
  9680. "support": {
  9681. "issues": "https://github.com/barryvdh/laravel-debugbar/issues",
  9682. "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.16.0"
  9683. },
  9684. "funding": [
  9685. {
  9686. "url": "https://fruitcake.nl",
  9687. "type": "custom"
  9688. },
  9689. {
  9690. "url": "https://github.com/barryvdh",
  9691. "type": "github"
  9692. }
  9693. ],
  9694. "time": "2025-07-14T11:56:43+00:00"
  9695. },
  9696. {
  9697. "name": "brianium/paratest",
  9698. "version": "v7.8.4",
  9699. "source": {
  9700. "type": "git",
  9701. "url": "https://github.com/paratestphp/paratest.git",
  9702. "reference": "130a9bf0e269ee5f5b320108f794ad03e275cad4"
  9703. },
  9704. "dist": {
  9705. "type": "zip",
  9706. "url": "https://api.github.com/repos/paratestphp/paratest/zipball/130a9bf0e269ee5f5b320108f794ad03e275cad4",
  9707. "reference": "130a9bf0e269ee5f5b320108f794ad03e275cad4",
  9708. "shasum": ""
  9709. },
  9710. "require": {
  9711. "ext-dom": "*",
  9712. "ext-pcre": "*",
  9713. "ext-reflection": "*",
  9714. "ext-simplexml": "*",
  9715. "fidry/cpu-core-counter": "^1.2.0",
  9716. "jean85/pretty-package-versions": "^2.1.1",
  9717. "php": "~8.2.0 || ~8.3.0 || ~8.4.0",
  9718. "phpunit/php-code-coverage": "^11.0.10",
  9719. "phpunit/php-file-iterator": "^5.1.0",
  9720. "phpunit/php-timer": "^7.0.1",
  9721. "phpunit/phpunit": "^11.5.24",
  9722. "sebastian/environment": "^7.2.1",
  9723. "symfony/console": "^6.4.22 || ^7.3.0",
  9724. "symfony/process": "^6.4.20 || ^7.3.0"
  9725. },
  9726. "require-dev": {
  9727. "doctrine/coding-standard": "^12.0.0",
  9728. "ext-pcov": "*",
  9729. "ext-posix": "*",
  9730. "phpstan/phpstan": "^2.1.17",
  9731. "phpstan/phpstan-deprecation-rules": "^2.0.3",
  9732. "phpstan/phpstan-phpunit": "^2.0.6",
  9733. "phpstan/phpstan-strict-rules": "^2.0.4",
  9734. "squizlabs/php_codesniffer": "^3.13.2",
  9735. "symfony/filesystem": "^6.4.13 || ^7.3.0"
  9736. },
  9737. "bin": [
  9738. "bin/paratest",
  9739. "bin/paratest_for_phpstorm"
  9740. ],
  9741. "type": "library",
  9742. "autoload": {
  9743. "psr-4": {
  9744. "ParaTest\\": [
  9745. "src/"
  9746. ]
  9747. }
  9748. },
  9749. "notification-url": "https://packagist.org/downloads/",
  9750. "license": [
  9751. "MIT"
  9752. ],
  9753. "authors": [
  9754. {
  9755. "name": "Brian Scaturro",
  9756. "email": "scaturrob@gmail.com",
  9757. "role": "Developer"
  9758. },
  9759. {
  9760. "name": "Filippo Tessarotto",
  9761. "email": "zoeslam@gmail.com",
  9762. "role": "Developer"
  9763. }
  9764. ],
  9765. "description": "Parallel testing for PHP",
  9766. "homepage": "https://github.com/paratestphp/paratest",
  9767. "keywords": [
  9768. "concurrent",
  9769. "parallel",
  9770. "phpunit",
  9771. "testing"
  9772. ],
  9773. "support": {
  9774. "issues": "https://github.com/paratestphp/paratest/issues",
  9775. "source": "https://github.com/paratestphp/paratest/tree/v7.8.4"
  9776. },
  9777. "funding": [
  9778. {
  9779. "url": "https://github.com/sponsors/Slamdunk",
  9780. "type": "github"
  9781. },
  9782. {
  9783. "url": "https://paypal.me/filippotessarotto",
  9784. "type": "paypal"
  9785. }
  9786. ],
  9787. "time": "2025-06-23T06:07:21+00:00"
  9788. },
  9789. {
  9790. "name": "fidry/cpu-core-counter",
  9791. "version": "1.3.0",
  9792. "source": {
  9793. "type": "git",
  9794. "url": "https://github.com/theofidry/cpu-core-counter.git",
  9795. "reference": "db9508f7b1474469d9d3c53b86f817e344732678"
  9796. },
  9797. "dist": {
  9798. "type": "zip",
  9799. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/db9508f7b1474469d9d3c53b86f817e344732678",
  9800. "reference": "db9508f7b1474469d9d3c53b86f817e344732678",
  9801. "shasum": ""
  9802. },
  9803. "require": {
  9804. "php": "^7.2 || ^8.0"
  9805. },
  9806. "require-dev": {
  9807. "fidry/makefile": "^0.2.0",
  9808. "fidry/php-cs-fixer-config": "^1.1.2",
  9809. "phpstan/extension-installer": "^1.2.0",
  9810. "phpstan/phpstan": "^2.0",
  9811. "phpstan/phpstan-deprecation-rules": "^2.0.0",
  9812. "phpstan/phpstan-phpunit": "^2.0",
  9813. "phpstan/phpstan-strict-rules": "^2.0",
  9814. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  9815. "webmozarts/strict-phpunit": "^7.5"
  9816. },
  9817. "type": "library",
  9818. "autoload": {
  9819. "psr-4": {
  9820. "Fidry\\CpuCoreCounter\\": "src/"
  9821. }
  9822. },
  9823. "notification-url": "https://packagist.org/downloads/",
  9824. "license": [
  9825. "MIT"
  9826. ],
  9827. "authors": [
  9828. {
  9829. "name": "Théo FIDRY",
  9830. "email": "theo.fidry@gmail.com"
  9831. }
  9832. ],
  9833. "description": "Tiny utility to get the number of CPU cores.",
  9834. "keywords": [
  9835. "CPU",
  9836. "core"
  9837. ],
  9838. "support": {
  9839. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  9840. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.3.0"
  9841. },
  9842. "funding": [
  9843. {
  9844. "url": "https://github.com/theofidry",
  9845. "type": "github"
  9846. }
  9847. ],
  9848. "time": "2025-08-14T07:29:31+00:00"
  9849. },
  9850. {
  9851. "name": "filp/whoops",
  9852. "version": "2.18.4",
  9853. "source": {
  9854. "type": "git",
  9855. "url": "https://github.com/filp/whoops.git",
  9856. "reference": "d2102955e48b9fd9ab24280a7ad12ed552752c4d"
  9857. },
  9858. "dist": {
  9859. "type": "zip",
  9860. "url": "https://api.github.com/repos/filp/whoops/zipball/d2102955e48b9fd9ab24280a7ad12ed552752c4d",
  9861. "reference": "d2102955e48b9fd9ab24280a7ad12ed552752c4d",
  9862. "shasum": ""
  9863. },
  9864. "require": {
  9865. "php": "^7.1 || ^8.0",
  9866. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  9867. },
  9868. "require-dev": {
  9869. "mockery/mockery": "^1.0",
  9870. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.3",
  9871. "symfony/var-dumper": "^4.0 || ^5.0"
  9872. },
  9873. "suggest": {
  9874. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  9875. "whoops/soap": "Formats errors as SOAP responses"
  9876. },
  9877. "type": "library",
  9878. "extra": {
  9879. "branch-alias": {
  9880. "dev-master": "2.7-dev"
  9881. }
  9882. },
  9883. "autoload": {
  9884. "psr-4": {
  9885. "Whoops\\": "src/Whoops/"
  9886. }
  9887. },
  9888. "notification-url": "https://packagist.org/downloads/",
  9889. "license": [
  9890. "MIT"
  9891. ],
  9892. "authors": [
  9893. {
  9894. "name": "Filipe Dobreira",
  9895. "homepage": "https://github.com/filp",
  9896. "role": "Developer"
  9897. }
  9898. ],
  9899. "description": "php error handling for cool kids",
  9900. "homepage": "https://filp.github.io/whoops/",
  9901. "keywords": [
  9902. "error",
  9903. "exception",
  9904. "handling",
  9905. "library",
  9906. "throwable",
  9907. "whoops"
  9908. ],
  9909. "support": {
  9910. "issues": "https://github.com/filp/whoops/issues",
  9911. "source": "https://github.com/filp/whoops/tree/2.18.4"
  9912. },
  9913. "funding": [
  9914. {
  9915. "url": "https://github.com/denis-sokolov",
  9916. "type": "github"
  9917. }
  9918. ],
  9919. "time": "2025-08-08T12:00:00+00:00"
  9920. },
  9921. {
  9922. "name": "hamcrest/hamcrest-php",
  9923. "version": "v2.1.1",
  9924. "source": {
  9925. "type": "git",
  9926. "url": "https://github.com/hamcrest/hamcrest-php.git",
  9927. "reference": "f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487"
  9928. },
  9929. "dist": {
  9930. "type": "zip",
  9931. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487",
  9932. "reference": "f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487",
  9933. "shasum": ""
  9934. },
  9935. "require": {
  9936. "php": "^7.4|^8.0"
  9937. },
  9938. "replace": {
  9939. "cordoval/hamcrest-php": "*",
  9940. "davedevelopment/hamcrest-php": "*",
  9941. "kodova/hamcrest-php": "*"
  9942. },
  9943. "require-dev": {
  9944. "phpunit/php-file-iterator": "^1.4 || ^2.0 || ^3.0",
  9945. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0 || ^8.0 || ^9.0"
  9946. },
  9947. "type": "library",
  9948. "extra": {
  9949. "branch-alias": {
  9950. "dev-master": "2.1-dev"
  9951. }
  9952. },
  9953. "autoload": {
  9954. "classmap": [
  9955. "hamcrest"
  9956. ]
  9957. },
  9958. "notification-url": "https://packagist.org/downloads/",
  9959. "license": [
  9960. "BSD-3-Clause"
  9961. ],
  9962. "description": "This is the PHP port of Hamcrest Matchers",
  9963. "keywords": [
  9964. "test"
  9965. ],
  9966. "support": {
  9967. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  9968. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.1.1"
  9969. },
  9970. "time": "2025-04-30T06:54:44+00:00"
  9971. },
  9972. {
  9973. "name": "jean85/pretty-package-versions",
  9974. "version": "2.1.1",
  9975. "source": {
  9976. "type": "git",
  9977. "url": "https://github.com/Jean85/pretty-package-versions.git",
  9978. "reference": "4d7aa5dab42e2a76d99559706022885de0e18e1a"
  9979. },
  9980. "dist": {
  9981. "type": "zip",
  9982. "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/4d7aa5dab42e2a76d99559706022885de0e18e1a",
  9983. "reference": "4d7aa5dab42e2a76d99559706022885de0e18e1a",
  9984. "shasum": ""
  9985. },
  9986. "require": {
  9987. "composer-runtime-api": "^2.1.0",
  9988. "php": "^7.4|^8.0"
  9989. },
  9990. "require-dev": {
  9991. "friendsofphp/php-cs-fixer": "^3.2",
  9992. "jean85/composer-provided-replaced-stub-package": "^1.0",
  9993. "phpstan/phpstan": "^2.0",
  9994. "phpunit/phpunit": "^7.5|^8.5|^9.6",
  9995. "rector/rector": "^2.0",
  9996. "vimeo/psalm": "^4.3 || ^5.0"
  9997. },
  9998. "type": "library",
  9999. "extra": {
  10000. "branch-alias": {
  10001. "dev-master": "1.x-dev"
  10002. }
  10003. },
  10004. "autoload": {
  10005. "psr-4": {
  10006. "Jean85\\": "src/"
  10007. }
  10008. },
  10009. "notification-url": "https://packagist.org/downloads/",
  10010. "license": [
  10011. "MIT"
  10012. ],
  10013. "authors": [
  10014. {
  10015. "name": "Alessandro Lai",
  10016. "email": "alessandro.lai85@gmail.com"
  10017. }
  10018. ],
  10019. "description": "A library to get pretty versions strings of installed dependencies",
  10020. "keywords": [
  10021. "composer",
  10022. "package",
  10023. "release",
  10024. "versions"
  10025. ],
  10026. "support": {
  10027. "issues": "https://github.com/Jean85/pretty-package-versions/issues",
  10028. "source": "https://github.com/Jean85/pretty-package-versions/tree/2.1.1"
  10029. },
  10030. "time": "2025-03-19T14:43:43+00:00"
  10031. },
  10032. {
  10033. "name": "laravel/pint",
  10034. "version": "v1.24.0",
  10035. "source": {
  10036. "type": "git",
  10037. "url": "https://github.com/laravel/pint.git",
  10038. "reference": "0345f3b05f136801af8c339f9d16ef29e6b4df8a"
  10039. },
  10040. "dist": {
  10041. "type": "zip",
  10042. "url": "https://api.github.com/repos/laravel/pint/zipball/0345f3b05f136801af8c339f9d16ef29e6b4df8a",
  10043. "reference": "0345f3b05f136801af8c339f9d16ef29e6b4df8a",
  10044. "shasum": ""
  10045. },
  10046. "require": {
  10047. "ext-json": "*",
  10048. "ext-mbstring": "*",
  10049. "ext-tokenizer": "*",
  10050. "ext-xml": "*",
  10051. "php": "^8.2.0"
  10052. },
  10053. "require-dev": {
  10054. "friendsofphp/php-cs-fixer": "^3.82.2",
  10055. "illuminate/view": "^11.45.1",
  10056. "larastan/larastan": "^3.5.0",
  10057. "laravel-zero/framework": "^11.45.0",
  10058. "mockery/mockery": "^1.6.12",
  10059. "nunomaduro/termwind": "^2.3.1",
  10060. "pestphp/pest": "^2.36.0"
  10061. },
  10062. "bin": [
  10063. "builds/pint"
  10064. ],
  10065. "type": "project",
  10066. "autoload": {
  10067. "files": [
  10068. "overrides/Runner/Parallel/ProcessFactory.php"
  10069. ],
  10070. "psr-4": {
  10071. "App\\": "app/",
  10072. "Database\\Seeders\\": "database/seeders/",
  10073. "Database\\Factories\\": "database/factories/"
  10074. }
  10075. },
  10076. "notification-url": "https://packagist.org/downloads/",
  10077. "license": [
  10078. "MIT"
  10079. ],
  10080. "authors": [
  10081. {
  10082. "name": "Nuno Maduro",
  10083. "email": "enunomaduro@gmail.com"
  10084. }
  10085. ],
  10086. "description": "An opinionated code formatter for PHP.",
  10087. "homepage": "https://laravel.com",
  10088. "keywords": [
  10089. "format",
  10090. "formatter",
  10091. "lint",
  10092. "linter",
  10093. "php"
  10094. ],
  10095. "support": {
  10096. "issues": "https://github.com/laravel/pint/issues",
  10097. "source": "https://github.com/laravel/pint"
  10098. },
  10099. "time": "2025-07-10T18:09:32+00:00"
  10100. },
  10101. {
  10102. "name": "laravel/sail",
  10103. "version": "v1.44.0",
  10104. "source": {
  10105. "type": "git",
  10106. "url": "https://github.com/laravel/sail.git",
  10107. "reference": "a09097bd2a8a38e23ac472fa6a6cf5b0d1c1d3fe"
  10108. },
  10109. "dist": {
  10110. "type": "zip",
  10111. "url": "https://api.github.com/repos/laravel/sail/zipball/a09097bd2a8a38e23ac472fa6a6cf5b0d1c1d3fe",
  10112. "reference": "a09097bd2a8a38e23ac472fa6a6cf5b0d1c1d3fe",
  10113. "shasum": ""
  10114. },
  10115. "require": {
  10116. "illuminate/console": "^9.52.16|^10.0|^11.0|^12.0",
  10117. "illuminate/contracts": "^9.52.16|^10.0|^11.0|^12.0",
  10118. "illuminate/support": "^9.52.16|^10.0|^11.0|^12.0",
  10119. "php": "^8.0",
  10120. "symfony/console": "^6.0|^7.0",
  10121. "symfony/yaml": "^6.0|^7.0"
  10122. },
  10123. "require-dev": {
  10124. "orchestra/testbench": "^7.0|^8.0|^9.0|^10.0",
  10125. "phpstan/phpstan": "^1.10"
  10126. },
  10127. "bin": [
  10128. "bin/sail"
  10129. ],
  10130. "type": "library",
  10131. "extra": {
  10132. "laravel": {
  10133. "providers": [
  10134. "Laravel\\Sail\\SailServiceProvider"
  10135. ]
  10136. }
  10137. },
  10138. "autoload": {
  10139. "psr-4": {
  10140. "Laravel\\Sail\\": "src/"
  10141. }
  10142. },
  10143. "notification-url": "https://packagist.org/downloads/",
  10144. "license": [
  10145. "MIT"
  10146. ],
  10147. "authors": [
  10148. {
  10149. "name": "Taylor Otwell",
  10150. "email": "taylor@laravel.com"
  10151. }
  10152. ],
  10153. "description": "Docker files for running a basic Laravel application.",
  10154. "keywords": [
  10155. "docker",
  10156. "laravel"
  10157. ],
  10158. "support": {
  10159. "issues": "https://github.com/laravel/sail/issues",
  10160. "source": "https://github.com/laravel/sail"
  10161. },
  10162. "time": "2025-07-04T16:17:06+00:00"
  10163. },
  10164. {
  10165. "name": "mockery/mockery",
  10166. "version": "1.6.12",
  10167. "source": {
  10168. "type": "git",
  10169. "url": "https://github.com/mockery/mockery.git",
  10170. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  10171. },
  10172. "dist": {
  10173. "type": "zip",
  10174. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  10175. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  10176. "shasum": ""
  10177. },
  10178. "require": {
  10179. "hamcrest/hamcrest-php": "^2.0.1",
  10180. "lib-pcre": ">=7.0",
  10181. "php": ">=7.3"
  10182. },
  10183. "conflict": {
  10184. "phpunit/phpunit": "<8.0"
  10185. },
  10186. "require-dev": {
  10187. "phpunit/phpunit": "^8.5 || ^9.6.17",
  10188. "symplify/easy-coding-standard": "^12.1.14"
  10189. },
  10190. "type": "library",
  10191. "autoload": {
  10192. "files": [
  10193. "library/helpers.php",
  10194. "library/Mockery.php"
  10195. ],
  10196. "psr-4": {
  10197. "Mockery\\": "library/Mockery"
  10198. }
  10199. },
  10200. "notification-url": "https://packagist.org/downloads/",
  10201. "license": [
  10202. "BSD-3-Clause"
  10203. ],
  10204. "authors": [
  10205. {
  10206. "name": "Pádraic Brady",
  10207. "email": "padraic.brady@gmail.com",
  10208. "homepage": "https://github.com/padraic",
  10209. "role": "Author"
  10210. },
  10211. {
  10212. "name": "Dave Marshall",
  10213. "email": "dave.marshall@atstsolutions.co.uk",
  10214. "homepage": "https://davedevelopment.co.uk",
  10215. "role": "Developer"
  10216. },
  10217. {
  10218. "name": "Nathanael Esayeas",
  10219. "email": "nathanael.esayeas@protonmail.com",
  10220. "homepage": "https://github.com/ghostwriter",
  10221. "role": "Lead Developer"
  10222. }
  10223. ],
  10224. "description": "Mockery is a simple yet flexible PHP mock object framework",
  10225. "homepage": "https://github.com/mockery/mockery",
  10226. "keywords": [
  10227. "BDD",
  10228. "TDD",
  10229. "library",
  10230. "mock",
  10231. "mock objects",
  10232. "mockery",
  10233. "stub",
  10234. "test",
  10235. "test double",
  10236. "testing"
  10237. ],
  10238. "support": {
  10239. "docs": "https://docs.mockery.io/",
  10240. "issues": "https://github.com/mockery/mockery/issues",
  10241. "rss": "https://github.com/mockery/mockery/releases.atom",
  10242. "security": "https://github.com/mockery/mockery/security/advisories",
  10243. "source": "https://github.com/mockery/mockery"
  10244. },
  10245. "time": "2024-05-16T03:13:13+00:00"
  10246. },
  10247. {
  10248. "name": "myclabs/deep-copy",
  10249. "version": "1.13.4",
  10250. "source": {
  10251. "type": "git",
  10252. "url": "https://github.com/myclabs/DeepCopy.git",
  10253. "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a"
  10254. },
  10255. "dist": {
  10256. "type": "zip",
  10257. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/07d290f0c47959fd5eed98c95ee5602db07e0b6a",
  10258. "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a",
  10259. "shasum": ""
  10260. },
  10261. "require": {
  10262. "php": "^7.1 || ^8.0"
  10263. },
  10264. "conflict": {
  10265. "doctrine/collections": "<1.6.8",
  10266. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  10267. },
  10268. "require-dev": {
  10269. "doctrine/collections": "^1.6.8",
  10270. "doctrine/common": "^2.13.3 || ^3.2.2",
  10271. "phpspec/prophecy": "^1.10",
  10272. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  10273. },
  10274. "type": "library",
  10275. "autoload": {
  10276. "files": [
  10277. "src/DeepCopy/deep_copy.php"
  10278. ],
  10279. "psr-4": {
  10280. "DeepCopy\\": "src/DeepCopy/"
  10281. }
  10282. },
  10283. "notification-url": "https://packagist.org/downloads/",
  10284. "license": [
  10285. "MIT"
  10286. ],
  10287. "description": "Create deep copies (clones) of your objects",
  10288. "keywords": [
  10289. "clone",
  10290. "copy",
  10291. "duplicate",
  10292. "object",
  10293. "object graph"
  10294. ],
  10295. "support": {
  10296. "issues": "https://github.com/myclabs/DeepCopy/issues",
  10297. "source": "https://github.com/myclabs/DeepCopy/tree/1.13.4"
  10298. },
  10299. "funding": [
  10300. {
  10301. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  10302. "type": "tidelift"
  10303. }
  10304. ],
  10305. "time": "2025-08-01T08:46:24+00:00"
  10306. },
  10307. {
  10308. "name": "nunomaduro/collision",
  10309. "version": "v8.8.2",
  10310. "source": {
  10311. "type": "git",
  10312. "url": "https://github.com/nunomaduro/collision.git",
  10313. "reference": "60207965f9b7b7a4ce15a0f75d57f9dadb105bdb"
  10314. },
  10315. "dist": {
  10316. "type": "zip",
  10317. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/60207965f9b7b7a4ce15a0f75d57f9dadb105bdb",
  10318. "reference": "60207965f9b7b7a4ce15a0f75d57f9dadb105bdb",
  10319. "shasum": ""
  10320. },
  10321. "require": {
  10322. "filp/whoops": "^2.18.1",
  10323. "nunomaduro/termwind": "^2.3.1",
  10324. "php": "^8.2.0",
  10325. "symfony/console": "^7.3.0"
  10326. },
  10327. "conflict": {
  10328. "laravel/framework": "<11.44.2 || >=13.0.0",
  10329. "phpunit/phpunit": "<11.5.15 || >=13.0.0"
  10330. },
  10331. "require-dev": {
  10332. "brianium/paratest": "^7.8.3",
  10333. "larastan/larastan": "^3.4.2",
  10334. "laravel/framework": "^11.44.2 || ^12.18",
  10335. "laravel/pint": "^1.22.1",
  10336. "laravel/sail": "^1.43.1",
  10337. "laravel/sanctum": "^4.1.1",
  10338. "laravel/tinker": "^2.10.1",
  10339. "orchestra/testbench-core": "^9.12.0 || ^10.4",
  10340. "pestphp/pest": "^3.8.2",
  10341. "sebastian/environment": "^7.2.1 || ^8.0"
  10342. },
  10343. "type": "library",
  10344. "extra": {
  10345. "laravel": {
  10346. "providers": [
  10347. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  10348. ]
  10349. },
  10350. "branch-alias": {
  10351. "dev-8.x": "8.x-dev"
  10352. }
  10353. },
  10354. "autoload": {
  10355. "files": [
  10356. "./src/Adapters/Phpunit/Autoload.php"
  10357. ],
  10358. "psr-4": {
  10359. "NunoMaduro\\Collision\\": "src/"
  10360. }
  10361. },
  10362. "notification-url": "https://packagist.org/downloads/",
  10363. "license": [
  10364. "MIT"
  10365. ],
  10366. "authors": [
  10367. {
  10368. "name": "Nuno Maduro",
  10369. "email": "enunomaduro@gmail.com"
  10370. }
  10371. ],
  10372. "description": "Cli error handling for console/command-line PHP applications.",
  10373. "keywords": [
  10374. "artisan",
  10375. "cli",
  10376. "command-line",
  10377. "console",
  10378. "dev",
  10379. "error",
  10380. "handling",
  10381. "laravel",
  10382. "laravel-zero",
  10383. "php",
  10384. "symfony"
  10385. ],
  10386. "support": {
  10387. "issues": "https://github.com/nunomaduro/collision/issues",
  10388. "source": "https://github.com/nunomaduro/collision"
  10389. },
  10390. "funding": [
  10391. {
  10392. "url": "https://www.paypal.com/paypalme/enunomaduro",
  10393. "type": "custom"
  10394. },
  10395. {
  10396. "url": "https://github.com/nunomaduro",
  10397. "type": "github"
  10398. },
  10399. {
  10400. "url": "https://www.patreon.com/nunomaduro",
  10401. "type": "patreon"
  10402. }
  10403. ],
  10404. "time": "2025-06-25T02:12:12+00:00"
  10405. },
  10406. {
  10407. "name": "pestphp/pest",
  10408. "version": "v3.8.4",
  10409. "source": {
  10410. "type": "git",
  10411. "url": "https://github.com/pestphp/pest.git",
  10412. "reference": "72cf695554420e21858cda831d5db193db102574"
  10413. },
  10414. "dist": {
  10415. "type": "zip",
  10416. "url": "https://api.github.com/repos/pestphp/pest/zipball/72cf695554420e21858cda831d5db193db102574",
  10417. "reference": "72cf695554420e21858cda831d5db193db102574",
  10418. "shasum": ""
  10419. },
  10420. "require": {
  10421. "brianium/paratest": "^7.8.4",
  10422. "nunomaduro/collision": "^8.8.2",
  10423. "nunomaduro/termwind": "^2.3.1",
  10424. "pestphp/pest-plugin": "^3.0.0",
  10425. "pestphp/pest-plugin-arch": "^3.1.1",
  10426. "pestphp/pest-plugin-mutate": "^3.0.5",
  10427. "php": "^8.2.0",
  10428. "phpunit/phpunit": "^11.5.33"
  10429. },
  10430. "conflict": {
  10431. "filp/whoops": "<2.16.0",
  10432. "phpunit/phpunit": ">11.5.33",
  10433. "sebastian/exporter": "<6.0.0",
  10434. "webmozart/assert": "<1.11.0"
  10435. },
  10436. "require-dev": {
  10437. "pestphp/pest-dev-tools": "^3.4.0",
  10438. "pestphp/pest-plugin-type-coverage": "^3.6.1",
  10439. "symfony/process": "^7.3.0"
  10440. },
  10441. "bin": [
  10442. "bin/pest"
  10443. ],
  10444. "type": "library",
  10445. "extra": {
  10446. "pest": {
  10447. "plugins": [
  10448. "Pest\\Mutate\\Plugins\\Mutate",
  10449. "Pest\\Plugins\\Configuration",
  10450. "Pest\\Plugins\\Bail",
  10451. "Pest\\Plugins\\Cache",
  10452. "Pest\\Plugins\\Coverage",
  10453. "Pest\\Plugins\\Init",
  10454. "Pest\\Plugins\\Environment",
  10455. "Pest\\Plugins\\Help",
  10456. "Pest\\Plugins\\Memory",
  10457. "Pest\\Plugins\\Only",
  10458. "Pest\\Plugins\\Printer",
  10459. "Pest\\Plugins\\ProcessIsolation",
  10460. "Pest\\Plugins\\Profile",
  10461. "Pest\\Plugins\\Retry",
  10462. "Pest\\Plugins\\Snapshot",
  10463. "Pest\\Plugins\\Verbose",
  10464. "Pest\\Plugins\\Version",
  10465. "Pest\\Plugins\\Parallel"
  10466. ]
  10467. },
  10468. "phpstan": {
  10469. "includes": [
  10470. "extension.neon"
  10471. ]
  10472. }
  10473. },
  10474. "autoload": {
  10475. "files": [
  10476. "src/Functions.php",
  10477. "src/Pest.php"
  10478. ],
  10479. "psr-4": {
  10480. "Pest\\": "src/"
  10481. }
  10482. },
  10483. "notification-url": "https://packagist.org/downloads/",
  10484. "license": [
  10485. "MIT"
  10486. ],
  10487. "authors": [
  10488. {
  10489. "name": "Nuno Maduro",
  10490. "email": "enunomaduro@gmail.com"
  10491. }
  10492. ],
  10493. "description": "The elegant PHP Testing Framework.",
  10494. "keywords": [
  10495. "framework",
  10496. "pest",
  10497. "php",
  10498. "test",
  10499. "testing",
  10500. "unit"
  10501. ],
  10502. "support": {
  10503. "issues": "https://github.com/pestphp/pest/issues",
  10504. "source": "https://github.com/pestphp/pest/tree/v3.8.4"
  10505. },
  10506. "funding": [
  10507. {
  10508. "url": "https://www.paypal.com/paypalme/enunomaduro",
  10509. "type": "custom"
  10510. },
  10511. {
  10512. "url": "https://github.com/nunomaduro",
  10513. "type": "github"
  10514. }
  10515. ],
  10516. "time": "2025-08-20T19:12:42+00:00"
  10517. },
  10518. {
  10519. "name": "pestphp/pest-plugin",
  10520. "version": "v3.0.0",
  10521. "source": {
  10522. "type": "git",
  10523. "url": "https://github.com/pestphp/pest-plugin.git",
  10524. "reference": "e79b26c65bc11c41093b10150c1341cc5cdbea83"
  10525. },
  10526. "dist": {
  10527. "type": "zip",
  10528. "url": "https://api.github.com/repos/pestphp/pest-plugin/zipball/e79b26c65bc11c41093b10150c1341cc5cdbea83",
  10529. "reference": "e79b26c65bc11c41093b10150c1341cc5cdbea83",
  10530. "shasum": ""
  10531. },
  10532. "require": {
  10533. "composer-plugin-api": "^2.0.0",
  10534. "composer-runtime-api": "^2.2.2",
  10535. "php": "^8.2"
  10536. },
  10537. "conflict": {
  10538. "pestphp/pest": "<3.0.0"
  10539. },
  10540. "require-dev": {
  10541. "composer/composer": "^2.7.9",
  10542. "pestphp/pest": "^3.0.0",
  10543. "pestphp/pest-dev-tools": "^3.0.0"
  10544. },
  10545. "type": "composer-plugin",
  10546. "extra": {
  10547. "class": "Pest\\Plugin\\Manager"
  10548. },
  10549. "autoload": {
  10550. "psr-4": {
  10551. "Pest\\Plugin\\": "src/"
  10552. }
  10553. },
  10554. "notification-url": "https://packagist.org/downloads/",
  10555. "license": [
  10556. "MIT"
  10557. ],
  10558. "description": "The Pest plugin manager",
  10559. "keywords": [
  10560. "framework",
  10561. "manager",
  10562. "pest",
  10563. "php",
  10564. "plugin",
  10565. "test",
  10566. "testing",
  10567. "unit"
  10568. ],
  10569. "support": {
  10570. "source": "https://github.com/pestphp/pest-plugin/tree/v3.0.0"
  10571. },
  10572. "funding": [
  10573. {
  10574. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  10575. "type": "custom"
  10576. },
  10577. {
  10578. "url": "https://github.com/nunomaduro",
  10579. "type": "github"
  10580. },
  10581. {
  10582. "url": "https://www.patreon.com/nunomaduro",
  10583. "type": "patreon"
  10584. }
  10585. ],
  10586. "time": "2024-09-08T23:21:41+00:00"
  10587. },
  10588. {
  10589. "name": "pestphp/pest-plugin-arch",
  10590. "version": "v3.1.1",
  10591. "source": {
  10592. "type": "git",
  10593. "url": "https://github.com/pestphp/pest-plugin-arch.git",
  10594. "reference": "db7bd9cb1612b223e16618d85475c6f63b9c8daa"
  10595. },
  10596. "dist": {
  10597. "type": "zip",
  10598. "url": "https://api.github.com/repos/pestphp/pest-plugin-arch/zipball/db7bd9cb1612b223e16618d85475c6f63b9c8daa",
  10599. "reference": "db7bd9cb1612b223e16618d85475c6f63b9c8daa",
  10600. "shasum": ""
  10601. },
  10602. "require": {
  10603. "pestphp/pest-plugin": "^3.0.0",
  10604. "php": "^8.2",
  10605. "ta-tikoma/phpunit-architecture-test": "^0.8.4"
  10606. },
  10607. "require-dev": {
  10608. "pestphp/pest": "^3.8.1",
  10609. "pestphp/pest-dev-tools": "^3.4.0"
  10610. },
  10611. "type": "library",
  10612. "extra": {
  10613. "pest": {
  10614. "plugins": [
  10615. "Pest\\Arch\\Plugin"
  10616. ]
  10617. }
  10618. },
  10619. "autoload": {
  10620. "files": [
  10621. "src/Autoload.php"
  10622. ],
  10623. "psr-4": {
  10624. "Pest\\Arch\\": "src/"
  10625. }
  10626. },
  10627. "notification-url": "https://packagist.org/downloads/",
  10628. "license": [
  10629. "MIT"
  10630. ],
  10631. "description": "The Arch plugin for Pest PHP.",
  10632. "keywords": [
  10633. "arch",
  10634. "architecture",
  10635. "framework",
  10636. "pest",
  10637. "php",
  10638. "plugin",
  10639. "test",
  10640. "testing",
  10641. "unit"
  10642. ],
  10643. "support": {
  10644. "source": "https://github.com/pestphp/pest-plugin-arch/tree/v3.1.1"
  10645. },
  10646. "funding": [
  10647. {
  10648. "url": "https://www.paypal.com/paypalme/enunomaduro",
  10649. "type": "custom"
  10650. },
  10651. {
  10652. "url": "https://github.com/nunomaduro",
  10653. "type": "github"
  10654. }
  10655. ],
  10656. "time": "2025-04-16T22:59:48+00:00"
  10657. },
  10658. {
  10659. "name": "pestphp/pest-plugin-livewire",
  10660. "version": "v3.0.0",
  10661. "source": {
  10662. "type": "git",
  10663. "url": "https://github.com/pestphp/pest-plugin-livewire.git",
  10664. "reference": "e2f2edb0a7d414d6837d87908a0e148256d3bf89"
  10665. },
  10666. "dist": {
  10667. "type": "zip",
  10668. "url": "https://api.github.com/repos/pestphp/pest-plugin-livewire/zipball/e2f2edb0a7d414d6837d87908a0e148256d3bf89",
  10669. "reference": "e2f2edb0a7d414d6837d87908a0e148256d3bf89",
  10670. "shasum": ""
  10671. },
  10672. "require": {
  10673. "livewire/livewire": "^3.5.6",
  10674. "pestphp/pest": "^3.0.0",
  10675. "php": "^8.1"
  10676. },
  10677. "require-dev": {
  10678. "orchestra/testbench": "^9.4.0",
  10679. "pestphp/pest-dev-tools": "^3.0.0"
  10680. },
  10681. "type": "library",
  10682. "autoload": {
  10683. "files": [
  10684. "src/Autoload.php"
  10685. ],
  10686. "psr-4": {
  10687. "Pest\\Livewire\\": "src/"
  10688. }
  10689. },
  10690. "notification-url": "https://packagist.org/downloads/",
  10691. "license": [
  10692. "MIT"
  10693. ],
  10694. "description": "The Pest Livewire Plugin",
  10695. "keywords": [
  10696. "framework",
  10697. "livewire",
  10698. "pest",
  10699. "php",
  10700. "plugin",
  10701. "test",
  10702. "testing",
  10703. "unit"
  10704. ],
  10705. "support": {
  10706. "source": "https://github.com/pestphp/pest-plugin-livewire/tree/v3.0.0"
  10707. },
  10708. "funding": [
  10709. {
  10710. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  10711. "type": "custom"
  10712. },
  10713. {
  10714. "url": "https://github.com/nunomaduro",
  10715. "type": "github"
  10716. },
  10717. {
  10718. "url": "https://www.patreon.com/nunomaduro",
  10719. "type": "patreon"
  10720. }
  10721. ],
  10722. "time": "2024-09-09T00:05:59+00:00"
  10723. },
  10724. {
  10725. "name": "pestphp/pest-plugin-mutate",
  10726. "version": "v3.0.5",
  10727. "source": {
  10728. "type": "git",
  10729. "url": "https://github.com/pestphp/pest-plugin-mutate.git",
  10730. "reference": "e10dbdc98c9e2f3890095b4fe2144f63a5717e08"
  10731. },
  10732. "dist": {
  10733. "type": "zip",
  10734. "url": "https://api.github.com/repos/pestphp/pest-plugin-mutate/zipball/e10dbdc98c9e2f3890095b4fe2144f63a5717e08",
  10735. "reference": "e10dbdc98c9e2f3890095b4fe2144f63a5717e08",
  10736. "shasum": ""
  10737. },
  10738. "require": {
  10739. "nikic/php-parser": "^5.2.0",
  10740. "pestphp/pest-plugin": "^3.0.0",
  10741. "php": "^8.2",
  10742. "psr/simple-cache": "^3.0.0"
  10743. },
  10744. "require-dev": {
  10745. "pestphp/pest": "^3.0.8",
  10746. "pestphp/pest-dev-tools": "^3.0.0",
  10747. "pestphp/pest-plugin-type-coverage": "^3.0.0"
  10748. },
  10749. "type": "library",
  10750. "autoload": {
  10751. "psr-4": {
  10752. "Pest\\Mutate\\": "src/"
  10753. }
  10754. },
  10755. "notification-url": "https://packagist.org/downloads/",
  10756. "license": [
  10757. "MIT"
  10758. ],
  10759. "authors": [
  10760. {
  10761. "name": "Sandro Gehri",
  10762. "email": "sandrogehri@gmail.com"
  10763. }
  10764. ],
  10765. "description": "Mutates your code to find untested cases",
  10766. "keywords": [
  10767. "framework",
  10768. "mutate",
  10769. "mutation",
  10770. "pest",
  10771. "php",
  10772. "plugin",
  10773. "test",
  10774. "testing",
  10775. "unit"
  10776. ],
  10777. "support": {
  10778. "source": "https://github.com/pestphp/pest-plugin-mutate/tree/v3.0.5"
  10779. },
  10780. "funding": [
  10781. {
  10782. "url": "https://www.paypal.com/paypalme/enunomaduro",
  10783. "type": "custom"
  10784. },
  10785. {
  10786. "url": "https://github.com/gehrisandro",
  10787. "type": "github"
  10788. },
  10789. {
  10790. "url": "https://github.com/nunomaduro",
  10791. "type": "github"
  10792. }
  10793. ],
  10794. "time": "2024-09-22T07:54:40+00:00"
  10795. },
  10796. {
  10797. "name": "phar-io/manifest",
  10798. "version": "2.0.4",
  10799. "source": {
  10800. "type": "git",
  10801. "url": "https://github.com/phar-io/manifest.git",
  10802. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  10803. },
  10804. "dist": {
  10805. "type": "zip",
  10806. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  10807. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  10808. "shasum": ""
  10809. },
  10810. "require": {
  10811. "ext-dom": "*",
  10812. "ext-libxml": "*",
  10813. "ext-phar": "*",
  10814. "ext-xmlwriter": "*",
  10815. "phar-io/version": "^3.0.1",
  10816. "php": "^7.2 || ^8.0"
  10817. },
  10818. "type": "library",
  10819. "extra": {
  10820. "branch-alias": {
  10821. "dev-master": "2.0.x-dev"
  10822. }
  10823. },
  10824. "autoload": {
  10825. "classmap": [
  10826. "src/"
  10827. ]
  10828. },
  10829. "notification-url": "https://packagist.org/downloads/",
  10830. "license": [
  10831. "BSD-3-Clause"
  10832. ],
  10833. "authors": [
  10834. {
  10835. "name": "Arne Blankerts",
  10836. "email": "arne@blankerts.de",
  10837. "role": "Developer"
  10838. },
  10839. {
  10840. "name": "Sebastian Heuer",
  10841. "email": "sebastian@phpeople.de",
  10842. "role": "Developer"
  10843. },
  10844. {
  10845. "name": "Sebastian Bergmann",
  10846. "email": "sebastian@phpunit.de",
  10847. "role": "Developer"
  10848. }
  10849. ],
  10850. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  10851. "support": {
  10852. "issues": "https://github.com/phar-io/manifest/issues",
  10853. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  10854. },
  10855. "funding": [
  10856. {
  10857. "url": "https://github.com/theseer",
  10858. "type": "github"
  10859. }
  10860. ],
  10861. "time": "2024-03-03T12:33:53+00:00"
  10862. },
  10863. {
  10864. "name": "phar-io/version",
  10865. "version": "3.2.1",
  10866. "source": {
  10867. "type": "git",
  10868. "url": "https://github.com/phar-io/version.git",
  10869. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  10870. },
  10871. "dist": {
  10872. "type": "zip",
  10873. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  10874. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  10875. "shasum": ""
  10876. },
  10877. "require": {
  10878. "php": "^7.2 || ^8.0"
  10879. },
  10880. "type": "library",
  10881. "autoload": {
  10882. "classmap": [
  10883. "src/"
  10884. ]
  10885. },
  10886. "notification-url": "https://packagist.org/downloads/",
  10887. "license": [
  10888. "BSD-3-Clause"
  10889. ],
  10890. "authors": [
  10891. {
  10892. "name": "Arne Blankerts",
  10893. "email": "arne@blankerts.de",
  10894. "role": "Developer"
  10895. },
  10896. {
  10897. "name": "Sebastian Heuer",
  10898. "email": "sebastian@phpeople.de",
  10899. "role": "Developer"
  10900. },
  10901. {
  10902. "name": "Sebastian Bergmann",
  10903. "email": "sebastian@phpunit.de",
  10904. "role": "Developer"
  10905. }
  10906. ],
  10907. "description": "Library for handling version information and constraints",
  10908. "support": {
  10909. "issues": "https://github.com/phar-io/version/issues",
  10910. "source": "https://github.com/phar-io/version/tree/3.2.1"
  10911. },
  10912. "time": "2022-02-21T01:04:05+00:00"
  10913. },
  10914. {
  10915. "name": "php-debugbar/php-debugbar",
  10916. "version": "v2.2.4",
  10917. "source": {
  10918. "type": "git",
  10919. "url": "https://github.com/php-debugbar/php-debugbar.git",
  10920. "reference": "3146d04671f51f69ffec2a4207ac3bdcf13a9f35"
  10921. },
  10922. "dist": {
  10923. "type": "zip",
  10924. "url": "https://api.github.com/repos/php-debugbar/php-debugbar/zipball/3146d04671f51f69ffec2a4207ac3bdcf13a9f35",
  10925. "reference": "3146d04671f51f69ffec2a4207ac3bdcf13a9f35",
  10926. "shasum": ""
  10927. },
  10928. "require": {
  10929. "php": "^8",
  10930. "psr/log": "^1|^2|^3",
  10931. "symfony/var-dumper": "^4|^5|^6|^7"
  10932. },
  10933. "replace": {
  10934. "maximebf/debugbar": "self.version"
  10935. },
  10936. "require-dev": {
  10937. "dbrekelmans/bdi": "^1",
  10938. "phpunit/phpunit": "^8|^9",
  10939. "symfony/panther": "^1|^2.1",
  10940. "twig/twig": "^1.38|^2.7|^3.0"
  10941. },
  10942. "suggest": {
  10943. "kriswallsmith/assetic": "The best way to manage assets",
  10944. "monolog/monolog": "Log using Monolog",
  10945. "predis/predis": "Redis storage"
  10946. },
  10947. "type": "library",
  10948. "extra": {
  10949. "branch-alias": {
  10950. "dev-master": "2.1-dev"
  10951. }
  10952. },
  10953. "autoload": {
  10954. "psr-4": {
  10955. "DebugBar\\": "src/DebugBar/"
  10956. }
  10957. },
  10958. "notification-url": "https://packagist.org/downloads/",
  10959. "license": [
  10960. "MIT"
  10961. ],
  10962. "authors": [
  10963. {
  10964. "name": "Maxime Bouroumeau-Fuseau",
  10965. "email": "maxime.bouroumeau@gmail.com",
  10966. "homepage": "http://maximebf.com"
  10967. },
  10968. {
  10969. "name": "Barry vd. Heuvel",
  10970. "email": "barryvdh@gmail.com"
  10971. }
  10972. ],
  10973. "description": "Debug bar in the browser for php application",
  10974. "homepage": "https://github.com/php-debugbar/php-debugbar",
  10975. "keywords": [
  10976. "debug",
  10977. "debug bar",
  10978. "debugbar",
  10979. "dev"
  10980. ],
  10981. "support": {
  10982. "issues": "https://github.com/php-debugbar/php-debugbar/issues",
  10983. "source": "https://github.com/php-debugbar/php-debugbar/tree/v2.2.4"
  10984. },
  10985. "time": "2025-07-22T14:01:30+00:00"
  10986. },
  10987. {
  10988. "name": "php-di/invoker",
  10989. "version": "2.3.6",
  10990. "source": {
  10991. "type": "git",
  10992. "url": "https://github.com/PHP-DI/Invoker.git",
  10993. "reference": "59f15608528d8a8838d69b422a919fd6b16aa576"
  10994. },
  10995. "dist": {
  10996. "type": "zip",
  10997. "url": "https://api.github.com/repos/PHP-DI/Invoker/zipball/59f15608528d8a8838d69b422a919fd6b16aa576",
  10998. "reference": "59f15608528d8a8838d69b422a919fd6b16aa576",
  10999. "shasum": ""
  11000. },
  11001. "require": {
  11002. "php": ">=7.3",
  11003. "psr/container": "^1.0|^2.0"
  11004. },
  11005. "require-dev": {
  11006. "athletic/athletic": "~0.1.8",
  11007. "mnapoli/hard-mode": "~0.3.0",
  11008. "phpunit/phpunit": "^9.0"
  11009. },
  11010. "type": "library",
  11011. "autoload": {
  11012. "psr-4": {
  11013. "Invoker\\": "src/"
  11014. }
  11015. },
  11016. "notification-url": "https://packagist.org/downloads/",
  11017. "license": [
  11018. "MIT"
  11019. ],
  11020. "description": "Generic and extensible callable invoker",
  11021. "homepage": "https://github.com/PHP-DI/Invoker",
  11022. "keywords": [
  11023. "callable",
  11024. "dependency",
  11025. "dependency-injection",
  11026. "injection",
  11027. "invoke",
  11028. "invoker"
  11029. ],
  11030. "support": {
  11031. "issues": "https://github.com/PHP-DI/Invoker/issues",
  11032. "source": "https://github.com/PHP-DI/Invoker/tree/2.3.6"
  11033. },
  11034. "funding": [
  11035. {
  11036. "url": "https://github.com/mnapoli",
  11037. "type": "github"
  11038. }
  11039. ],
  11040. "time": "2025-01-17T12:49:27+00:00"
  11041. },
  11042. {
  11043. "name": "php-di/php-di",
  11044. "version": "7.1.1",
  11045. "source": {
  11046. "type": "git",
  11047. "url": "https://github.com/PHP-DI/PHP-DI.git",
  11048. "reference": "f88054cc052e40dbe7b383c8817c19442d480352"
  11049. },
  11050. "dist": {
  11051. "type": "zip",
  11052. "url": "https://api.github.com/repos/PHP-DI/PHP-DI/zipball/f88054cc052e40dbe7b383c8817c19442d480352",
  11053. "reference": "f88054cc052e40dbe7b383c8817c19442d480352",
  11054. "shasum": ""
  11055. },
  11056. "require": {
  11057. "laravel/serializable-closure": "^1.0 || ^2.0",
  11058. "php": ">=8.0",
  11059. "php-di/invoker": "^2.0",
  11060. "psr/container": "^1.1 || ^2.0"
  11061. },
  11062. "provide": {
  11063. "psr/container-implementation": "^1.0"
  11064. },
  11065. "require-dev": {
  11066. "friendsofphp/php-cs-fixer": "^3",
  11067. "friendsofphp/proxy-manager-lts": "^1",
  11068. "mnapoli/phpunit-easymock": "^1.3",
  11069. "phpunit/phpunit": "^9.6 || ^10 || ^11",
  11070. "vimeo/psalm": "^5|^6"
  11071. },
  11072. "suggest": {
  11073. "friendsofphp/proxy-manager-lts": "Install it if you want to use lazy injection (version ^1)"
  11074. },
  11075. "type": "library",
  11076. "autoload": {
  11077. "files": [
  11078. "src/functions.php"
  11079. ],
  11080. "psr-4": {
  11081. "DI\\": "src/"
  11082. }
  11083. },
  11084. "notification-url": "https://packagist.org/downloads/",
  11085. "license": [
  11086. "MIT"
  11087. ],
  11088. "description": "The dependency injection container for humans",
  11089. "homepage": "https://php-di.org/",
  11090. "keywords": [
  11091. "PSR-11",
  11092. "container",
  11093. "container-interop",
  11094. "dependency injection",
  11095. "di",
  11096. "ioc",
  11097. "psr11"
  11098. ],
  11099. "support": {
  11100. "issues": "https://github.com/PHP-DI/PHP-DI/issues",
  11101. "source": "https://github.com/PHP-DI/PHP-DI/tree/7.1.1"
  11102. },
  11103. "funding": [
  11104. {
  11105. "url": "https://github.com/mnapoli",
  11106. "type": "github"
  11107. },
  11108. {
  11109. "url": "https://tidelift.com/funding/github/packagist/php-di/php-di",
  11110. "type": "tidelift"
  11111. }
  11112. ],
  11113. "time": "2025-08-16T11:10:48+00:00"
  11114. },
  11115. {
  11116. "name": "phpdocumentor/reflection-common",
  11117. "version": "2.2.0",
  11118. "source": {
  11119. "type": "git",
  11120. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  11121. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  11122. },
  11123. "dist": {
  11124. "type": "zip",
  11125. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  11126. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  11127. "shasum": ""
  11128. },
  11129. "require": {
  11130. "php": "^7.2 || ^8.0"
  11131. },
  11132. "type": "library",
  11133. "extra": {
  11134. "branch-alias": {
  11135. "dev-2.x": "2.x-dev"
  11136. }
  11137. },
  11138. "autoload": {
  11139. "psr-4": {
  11140. "phpDocumentor\\Reflection\\": "src/"
  11141. }
  11142. },
  11143. "notification-url": "https://packagist.org/downloads/",
  11144. "license": [
  11145. "MIT"
  11146. ],
  11147. "authors": [
  11148. {
  11149. "name": "Jaap van Otterdijk",
  11150. "email": "opensource@ijaap.nl"
  11151. }
  11152. ],
  11153. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  11154. "homepage": "http://www.phpdoc.org",
  11155. "keywords": [
  11156. "FQSEN",
  11157. "phpDocumentor",
  11158. "phpdoc",
  11159. "reflection",
  11160. "static analysis"
  11161. ],
  11162. "support": {
  11163. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  11164. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  11165. },
  11166. "time": "2020-06-27T09:03:43+00:00"
  11167. },
  11168. {
  11169. "name": "phpdocumentor/reflection-docblock",
  11170. "version": "5.6.3",
  11171. "source": {
  11172. "type": "git",
  11173. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  11174. "reference": "94f8051919d1b0369a6bcc7931d679a511c03fe9"
  11175. },
  11176. "dist": {
  11177. "type": "zip",
  11178. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/94f8051919d1b0369a6bcc7931d679a511c03fe9",
  11179. "reference": "94f8051919d1b0369a6bcc7931d679a511c03fe9",
  11180. "shasum": ""
  11181. },
  11182. "require": {
  11183. "doctrine/deprecations": "^1.1",
  11184. "ext-filter": "*",
  11185. "php": "^7.4 || ^8.0",
  11186. "phpdocumentor/reflection-common": "^2.2",
  11187. "phpdocumentor/type-resolver": "^1.7",
  11188. "phpstan/phpdoc-parser": "^1.7|^2.0",
  11189. "webmozart/assert": "^1.9.1"
  11190. },
  11191. "require-dev": {
  11192. "mockery/mockery": "~1.3.5 || ~1.6.0",
  11193. "phpstan/extension-installer": "^1.1",
  11194. "phpstan/phpstan": "^1.8",
  11195. "phpstan/phpstan-mockery": "^1.1",
  11196. "phpstan/phpstan-webmozart-assert": "^1.2",
  11197. "phpunit/phpunit": "^9.5",
  11198. "psalm/phar": "^5.26"
  11199. },
  11200. "type": "library",
  11201. "extra": {
  11202. "branch-alias": {
  11203. "dev-master": "5.x-dev"
  11204. }
  11205. },
  11206. "autoload": {
  11207. "psr-4": {
  11208. "phpDocumentor\\Reflection\\": "src"
  11209. }
  11210. },
  11211. "notification-url": "https://packagist.org/downloads/",
  11212. "license": [
  11213. "MIT"
  11214. ],
  11215. "authors": [
  11216. {
  11217. "name": "Mike van Riel",
  11218. "email": "me@mikevanriel.com"
  11219. },
  11220. {
  11221. "name": "Jaap van Otterdijk",
  11222. "email": "opensource@ijaap.nl"
  11223. }
  11224. ],
  11225. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  11226. "support": {
  11227. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  11228. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.6.3"
  11229. },
  11230. "time": "2025-08-01T19:43:32+00:00"
  11231. },
  11232. {
  11233. "name": "phpdocumentor/type-resolver",
  11234. "version": "1.10.0",
  11235. "source": {
  11236. "type": "git",
  11237. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  11238. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a"
  11239. },
  11240. "dist": {
  11241. "type": "zip",
  11242. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  11243. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  11244. "shasum": ""
  11245. },
  11246. "require": {
  11247. "doctrine/deprecations": "^1.0",
  11248. "php": "^7.3 || ^8.0",
  11249. "phpdocumentor/reflection-common": "^2.0",
  11250. "phpstan/phpdoc-parser": "^1.18|^2.0"
  11251. },
  11252. "require-dev": {
  11253. "ext-tokenizer": "*",
  11254. "phpbench/phpbench": "^1.2",
  11255. "phpstan/extension-installer": "^1.1",
  11256. "phpstan/phpstan": "^1.8",
  11257. "phpstan/phpstan-phpunit": "^1.1",
  11258. "phpunit/phpunit": "^9.5",
  11259. "rector/rector": "^0.13.9",
  11260. "vimeo/psalm": "^4.25"
  11261. },
  11262. "type": "library",
  11263. "extra": {
  11264. "branch-alias": {
  11265. "dev-1.x": "1.x-dev"
  11266. }
  11267. },
  11268. "autoload": {
  11269. "psr-4": {
  11270. "phpDocumentor\\Reflection\\": "src"
  11271. }
  11272. },
  11273. "notification-url": "https://packagist.org/downloads/",
  11274. "license": [
  11275. "MIT"
  11276. ],
  11277. "authors": [
  11278. {
  11279. "name": "Mike van Riel",
  11280. "email": "me@mikevanriel.com"
  11281. }
  11282. ],
  11283. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  11284. "support": {
  11285. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  11286. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.10.0"
  11287. },
  11288. "time": "2024-11-09T15:12:26+00:00"
  11289. },
  11290. {
  11291. "name": "phpstan/phpdoc-parser",
  11292. "version": "2.2.0",
  11293. "source": {
  11294. "type": "git",
  11295. "url": "https://github.com/phpstan/phpdoc-parser.git",
  11296. "reference": "b9e61a61e39e02dd90944e9115241c7f7e76bfd8"
  11297. },
  11298. "dist": {
  11299. "type": "zip",
  11300. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/b9e61a61e39e02dd90944e9115241c7f7e76bfd8",
  11301. "reference": "b9e61a61e39e02dd90944e9115241c7f7e76bfd8",
  11302. "shasum": ""
  11303. },
  11304. "require": {
  11305. "php": "^7.4 || ^8.0"
  11306. },
  11307. "require-dev": {
  11308. "doctrine/annotations": "^2.0",
  11309. "nikic/php-parser": "^5.3.0",
  11310. "php-parallel-lint/php-parallel-lint": "^1.2",
  11311. "phpstan/extension-installer": "^1.0",
  11312. "phpstan/phpstan": "^2.0",
  11313. "phpstan/phpstan-phpunit": "^2.0",
  11314. "phpstan/phpstan-strict-rules": "^2.0",
  11315. "phpunit/phpunit": "^9.6",
  11316. "symfony/process": "^5.2"
  11317. },
  11318. "type": "library",
  11319. "autoload": {
  11320. "psr-4": {
  11321. "PHPStan\\PhpDocParser\\": [
  11322. "src/"
  11323. ]
  11324. }
  11325. },
  11326. "notification-url": "https://packagist.org/downloads/",
  11327. "license": [
  11328. "MIT"
  11329. ],
  11330. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  11331. "support": {
  11332. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  11333. "source": "https://github.com/phpstan/phpdoc-parser/tree/2.2.0"
  11334. },
  11335. "time": "2025-07-13T07:04:09+00:00"
  11336. },
  11337. {
  11338. "name": "phpunit/php-code-coverage",
  11339. "version": "11.0.10",
  11340. "source": {
  11341. "type": "git",
  11342. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  11343. "reference": "1a800a7446add2d79cc6b3c01c45381810367d76"
  11344. },
  11345. "dist": {
  11346. "type": "zip",
  11347. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/1a800a7446add2d79cc6b3c01c45381810367d76",
  11348. "reference": "1a800a7446add2d79cc6b3c01c45381810367d76",
  11349. "shasum": ""
  11350. },
  11351. "require": {
  11352. "ext-dom": "*",
  11353. "ext-libxml": "*",
  11354. "ext-xmlwriter": "*",
  11355. "nikic/php-parser": "^5.4.0",
  11356. "php": ">=8.2",
  11357. "phpunit/php-file-iterator": "^5.1.0",
  11358. "phpunit/php-text-template": "^4.0.1",
  11359. "sebastian/code-unit-reverse-lookup": "^4.0.1",
  11360. "sebastian/complexity": "^4.0.1",
  11361. "sebastian/environment": "^7.2.0",
  11362. "sebastian/lines-of-code": "^3.0.1",
  11363. "sebastian/version": "^5.0.2",
  11364. "theseer/tokenizer": "^1.2.3"
  11365. },
  11366. "require-dev": {
  11367. "phpunit/phpunit": "^11.5.2"
  11368. },
  11369. "suggest": {
  11370. "ext-pcov": "PHP extension that provides line coverage",
  11371. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  11372. },
  11373. "type": "library",
  11374. "extra": {
  11375. "branch-alias": {
  11376. "dev-main": "11.0.x-dev"
  11377. }
  11378. },
  11379. "autoload": {
  11380. "classmap": [
  11381. "src/"
  11382. ]
  11383. },
  11384. "notification-url": "https://packagist.org/downloads/",
  11385. "license": [
  11386. "BSD-3-Clause"
  11387. ],
  11388. "authors": [
  11389. {
  11390. "name": "Sebastian Bergmann",
  11391. "email": "sebastian@phpunit.de",
  11392. "role": "lead"
  11393. }
  11394. ],
  11395. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  11396. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  11397. "keywords": [
  11398. "coverage",
  11399. "testing",
  11400. "xunit"
  11401. ],
  11402. "support": {
  11403. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  11404. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  11405. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/show"
  11406. },
  11407. "funding": [
  11408. {
  11409. "url": "https://github.com/sebastianbergmann",
  11410. "type": "github"
  11411. },
  11412. {
  11413. "url": "https://liberapay.com/sebastianbergmann",
  11414. "type": "liberapay"
  11415. },
  11416. {
  11417. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  11418. "type": "thanks_dev"
  11419. },
  11420. {
  11421. "url": "https://tidelift.com/funding/github/packagist/phpunit/php-code-coverage",
  11422. "type": "tidelift"
  11423. }
  11424. ],
  11425. "time": "2025-06-18T08:56:18+00:00"
  11426. },
  11427. {
  11428. "name": "phpunit/php-file-iterator",
  11429. "version": "5.1.0",
  11430. "source": {
  11431. "type": "git",
  11432. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  11433. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6"
  11434. },
  11435. "dist": {
  11436. "type": "zip",
  11437. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/118cfaaa8bc5aef3287bf315b6060b1174754af6",
  11438. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6",
  11439. "shasum": ""
  11440. },
  11441. "require": {
  11442. "php": ">=8.2"
  11443. },
  11444. "require-dev": {
  11445. "phpunit/phpunit": "^11.0"
  11446. },
  11447. "type": "library",
  11448. "extra": {
  11449. "branch-alias": {
  11450. "dev-main": "5.0-dev"
  11451. }
  11452. },
  11453. "autoload": {
  11454. "classmap": [
  11455. "src/"
  11456. ]
  11457. },
  11458. "notification-url": "https://packagist.org/downloads/",
  11459. "license": [
  11460. "BSD-3-Clause"
  11461. ],
  11462. "authors": [
  11463. {
  11464. "name": "Sebastian Bergmann",
  11465. "email": "sebastian@phpunit.de",
  11466. "role": "lead"
  11467. }
  11468. ],
  11469. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  11470. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  11471. "keywords": [
  11472. "filesystem",
  11473. "iterator"
  11474. ],
  11475. "support": {
  11476. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  11477. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  11478. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/5.1.0"
  11479. },
  11480. "funding": [
  11481. {
  11482. "url": "https://github.com/sebastianbergmann",
  11483. "type": "github"
  11484. }
  11485. ],
  11486. "time": "2024-08-27T05:02:59+00:00"
  11487. },
  11488. {
  11489. "name": "phpunit/php-invoker",
  11490. "version": "5.0.1",
  11491. "source": {
  11492. "type": "git",
  11493. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  11494. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2"
  11495. },
  11496. "dist": {
  11497. "type": "zip",
  11498. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/c1ca3814734c07492b3d4c5f794f4b0995333da2",
  11499. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2",
  11500. "shasum": ""
  11501. },
  11502. "require": {
  11503. "php": ">=8.2"
  11504. },
  11505. "require-dev": {
  11506. "ext-pcntl": "*",
  11507. "phpunit/phpunit": "^11.0"
  11508. },
  11509. "suggest": {
  11510. "ext-pcntl": "*"
  11511. },
  11512. "type": "library",
  11513. "extra": {
  11514. "branch-alias": {
  11515. "dev-main": "5.0-dev"
  11516. }
  11517. },
  11518. "autoload": {
  11519. "classmap": [
  11520. "src/"
  11521. ]
  11522. },
  11523. "notification-url": "https://packagist.org/downloads/",
  11524. "license": [
  11525. "BSD-3-Clause"
  11526. ],
  11527. "authors": [
  11528. {
  11529. "name": "Sebastian Bergmann",
  11530. "email": "sebastian@phpunit.de",
  11531. "role": "lead"
  11532. }
  11533. ],
  11534. "description": "Invoke callables with a timeout",
  11535. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  11536. "keywords": [
  11537. "process"
  11538. ],
  11539. "support": {
  11540. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  11541. "security": "https://github.com/sebastianbergmann/php-invoker/security/policy",
  11542. "source": "https://github.com/sebastianbergmann/php-invoker/tree/5.0.1"
  11543. },
  11544. "funding": [
  11545. {
  11546. "url": "https://github.com/sebastianbergmann",
  11547. "type": "github"
  11548. }
  11549. ],
  11550. "time": "2024-07-03T05:07:44+00:00"
  11551. },
  11552. {
  11553. "name": "phpunit/php-text-template",
  11554. "version": "4.0.1",
  11555. "source": {
  11556. "type": "git",
  11557. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  11558. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964"
  11559. },
  11560. "dist": {
  11561. "type": "zip",
  11562. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  11563. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  11564. "shasum": ""
  11565. },
  11566. "require": {
  11567. "php": ">=8.2"
  11568. },
  11569. "require-dev": {
  11570. "phpunit/phpunit": "^11.0"
  11571. },
  11572. "type": "library",
  11573. "extra": {
  11574. "branch-alias": {
  11575. "dev-main": "4.0-dev"
  11576. }
  11577. },
  11578. "autoload": {
  11579. "classmap": [
  11580. "src/"
  11581. ]
  11582. },
  11583. "notification-url": "https://packagist.org/downloads/",
  11584. "license": [
  11585. "BSD-3-Clause"
  11586. ],
  11587. "authors": [
  11588. {
  11589. "name": "Sebastian Bergmann",
  11590. "email": "sebastian@phpunit.de",
  11591. "role": "lead"
  11592. }
  11593. ],
  11594. "description": "Simple template engine.",
  11595. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  11596. "keywords": [
  11597. "template"
  11598. ],
  11599. "support": {
  11600. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  11601. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  11602. "source": "https://github.com/sebastianbergmann/php-text-template/tree/4.0.1"
  11603. },
  11604. "funding": [
  11605. {
  11606. "url": "https://github.com/sebastianbergmann",
  11607. "type": "github"
  11608. }
  11609. ],
  11610. "time": "2024-07-03T05:08:43+00:00"
  11611. },
  11612. {
  11613. "name": "phpunit/php-timer",
  11614. "version": "7.0.1",
  11615. "source": {
  11616. "type": "git",
  11617. "url": "https://github.com/sebastianbergmann/php-timer.git",
  11618. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3"
  11619. },
  11620. "dist": {
  11621. "type": "zip",
  11622. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  11623. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  11624. "shasum": ""
  11625. },
  11626. "require": {
  11627. "php": ">=8.2"
  11628. },
  11629. "require-dev": {
  11630. "phpunit/phpunit": "^11.0"
  11631. },
  11632. "type": "library",
  11633. "extra": {
  11634. "branch-alias": {
  11635. "dev-main": "7.0-dev"
  11636. }
  11637. },
  11638. "autoload": {
  11639. "classmap": [
  11640. "src/"
  11641. ]
  11642. },
  11643. "notification-url": "https://packagist.org/downloads/",
  11644. "license": [
  11645. "BSD-3-Clause"
  11646. ],
  11647. "authors": [
  11648. {
  11649. "name": "Sebastian Bergmann",
  11650. "email": "sebastian@phpunit.de",
  11651. "role": "lead"
  11652. }
  11653. ],
  11654. "description": "Utility class for timing",
  11655. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  11656. "keywords": [
  11657. "timer"
  11658. ],
  11659. "support": {
  11660. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  11661. "security": "https://github.com/sebastianbergmann/php-timer/security/policy",
  11662. "source": "https://github.com/sebastianbergmann/php-timer/tree/7.0.1"
  11663. },
  11664. "funding": [
  11665. {
  11666. "url": "https://github.com/sebastianbergmann",
  11667. "type": "github"
  11668. }
  11669. ],
  11670. "time": "2024-07-03T05:09:35+00:00"
  11671. },
  11672. {
  11673. "name": "phpunit/phpunit",
  11674. "version": "11.5.33",
  11675. "source": {
  11676. "type": "git",
  11677. "url": "https://github.com/sebastianbergmann/phpunit.git",
  11678. "reference": "5965e9ff57546cb9137c0ff6aa78cb7442b05cf6"
  11679. },
  11680. "dist": {
  11681. "type": "zip",
  11682. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/5965e9ff57546cb9137c0ff6aa78cb7442b05cf6",
  11683. "reference": "5965e9ff57546cb9137c0ff6aa78cb7442b05cf6",
  11684. "shasum": ""
  11685. },
  11686. "require": {
  11687. "ext-dom": "*",
  11688. "ext-json": "*",
  11689. "ext-libxml": "*",
  11690. "ext-mbstring": "*",
  11691. "ext-xml": "*",
  11692. "ext-xmlwriter": "*",
  11693. "myclabs/deep-copy": "^1.13.4",
  11694. "phar-io/manifest": "^2.0.4",
  11695. "phar-io/version": "^3.2.1",
  11696. "php": ">=8.2",
  11697. "phpunit/php-code-coverage": "^11.0.10",
  11698. "phpunit/php-file-iterator": "^5.1.0",
  11699. "phpunit/php-invoker": "^5.0.1",
  11700. "phpunit/php-text-template": "^4.0.1",
  11701. "phpunit/php-timer": "^7.0.1",
  11702. "sebastian/cli-parser": "^3.0.2",
  11703. "sebastian/code-unit": "^3.0.3",
  11704. "sebastian/comparator": "^6.3.2",
  11705. "sebastian/diff": "^6.0.2",
  11706. "sebastian/environment": "^7.2.1",
  11707. "sebastian/exporter": "^6.3.0",
  11708. "sebastian/global-state": "^7.0.2",
  11709. "sebastian/object-enumerator": "^6.0.1",
  11710. "sebastian/type": "^5.1.3",
  11711. "sebastian/version": "^5.0.2",
  11712. "staabm/side-effects-detector": "^1.0.5"
  11713. },
  11714. "suggest": {
  11715. "ext-soap": "To be able to generate mocks based on WSDL files"
  11716. },
  11717. "bin": [
  11718. "phpunit"
  11719. ],
  11720. "type": "library",
  11721. "extra": {
  11722. "branch-alias": {
  11723. "dev-main": "11.5-dev"
  11724. }
  11725. },
  11726. "autoload": {
  11727. "files": [
  11728. "src/Framework/Assert/Functions.php"
  11729. ],
  11730. "classmap": [
  11731. "src/"
  11732. ]
  11733. },
  11734. "notification-url": "https://packagist.org/downloads/",
  11735. "license": [
  11736. "BSD-3-Clause"
  11737. ],
  11738. "authors": [
  11739. {
  11740. "name": "Sebastian Bergmann",
  11741. "email": "sebastian@phpunit.de",
  11742. "role": "lead"
  11743. }
  11744. ],
  11745. "description": "The PHP Unit Testing framework.",
  11746. "homepage": "https://phpunit.de/",
  11747. "keywords": [
  11748. "phpunit",
  11749. "testing",
  11750. "xunit"
  11751. ],
  11752. "support": {
  11753. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  11754. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  11755. "source": "https://github.com/sebastianbergmann/phpunit/tree/11.5.33"
  11756. },
  11757. "funding": [
  11758. {
  11759. "url": "https://phpunit.de/sponsors.html",
  11760. "type": "custom"
  11761. },
  11762. {
  11763. "url": "https://github.com/sebastianbergmann",
  11764. "type": "github"
  11765. },
  11766. {
  11767. "url": "https://liberapay.com/sebastianbergmann",
  11768. "type": "liberapay"
  11769. },
  11770. {
  11771. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  11772. "type": "thanks_dev"
  11773. },
  11774. {
  11775. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  11776. "type": "tidelift"
  11777. }
  11778. ],
  11779. "time": "2025-08-16T05:19:02+00:00"
  11780. },
  11781. {
  11782. "name": "sebastian/cli-parser",
  11783. "version": "3.0.2",
  11784. "source": {
  11785. "type": "git",
  11786. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  11787. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180"
  11788. },
  11789. "dist": {
  11790. "type": "zip",
  11791. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/15c5dd40dc4f38794d383bb95465193f5e0ae180",
  11792. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180",
  11793. "shasum": ""
  11794. },
  11795. "require": {
  11796. "php": ">=8.2"
  11797. },
  11798. "require-dev": {
  11799. "phpunit/phpunit": "^11.0"
  11800. },
  11801. "type": "library",
  11802. "extra": {
  11803. "branch-alias": {
  11804. "dev-main": "3.0-dev"
  11805. }
  11806. },
  11807. "autoload": {
  11808. "classmap": [
  11809. "src/"
  11810. ]
  11811. },
  11812. "notification-url": "https://packagist.org/downloads/",
  11813. "license": [
  11814. "BSD-3-Clause"
  11815. ],
  11816. "authors": [
  11817. {
  11818. "name": "Sebastian Bergmann",
  11819. "email": "sebastian@phpunit.de",
  11820. "role": "lead"
  11821. }
  11822. ],
  11823. "description": "Library for parsing CLI options",
  11824. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  11825. "support": {
  11826. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  11827. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  11828. "source": "https://github.com/sebastianbergmann/cli-parser/tree/3.0.2"
  11829. },
  11830. "funding": [
  11831. {
  11832. "url": "https://github.com/sebastianbergmann",
  11833. "type": "github"
  11834. }
  11835. ],
  11836. "time": "2024-07-03T04:41:36+00:00"
  11837. },
  11838. {
  11839. "name": "sebastian/code-unit",
  11840. "version": "3.0.3",
  11841. "source": {
  11842. "type": "git",
  11843. "url": "https://github.com/sebastianbergmann/code-unit.git",
  11844. "reference": "54391c61e4af8078e5b276ab082b6d3c54c9ad64"
  11845. },
  11846. "dist": {
  11847. "type": "zip",
  11848. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/54391c61e4af8078e5b276ab082b6d3c54c9ad64",
  11849. "reference": "54391c61e4af8078e5b276ab082b6d3c54c9ad64",
  11850. "shasum": ""
  11851. },
  11852. "require": {
  11853. "php": ">=8.2"
  11854. },
  11855. "require-dev": {
  11856. "phpunit/phpunit": "^11.5"
  11857. },
  11858. "type": "library",
  11859. "extra": {
  11860. "branch-alias": {
  11861. "dev-main": "3.0-dev"
  11862. }
  11863. },
  11864. "autoload": {
  11865. "classmap": [
  11866. "src/"
  11867. ]
  11868. },
  11869. "notification-url": "https://packagist.org/downloads/",
  11870. "license": [
  11871. "BSD-3-Clause"
  11872. ],
  11873. "authors": [
  11874. {
  11875. "name": "Sebastian Bergmann",
  11876. "email": "sebastian@phpunit.de",
  11877. "role": "lead"
  11878. }
  11879. ],
  11880. "description": "Collection of value objects that represent the PHP code units",
  11881. "homepage": "https://github.com/sebastianbergmann/code-unit",
  11882. "support": {
  11883. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  11884. "security": "https://github.com/sebastianbergmann/code-unit/security/policy",
  11885. "source": "https://github.com/sebastianbergmann/code-unit/tree/3.0.3"
  11886. },
  11887. "funding": [
  11888. {
  11889. "url": "https://github.com/sebastianbergmann",
  11890. "type": "github"
  11891. }
  11892. ],
  11893. "time": "2025-03-19T07:56:08+00:00"
  11894. },
  11895. {
  11896. "name": "sebastian/code-unit-reverse-lookup",
  11897. "version": "4.0.1",
  11898. "source": {
  11899. "type": "git",
  11900. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  11901. "reference": "183a9b2632194febd219bb9246eee421dad8d45e"
  11902. },
  11903. "dist": {
  11904. "type": "zip",
  11905. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/183a9b2632194febd219bb9246eee421dad8d45e",
  11906. "reference": "183a9b2632194febd219bb9246eee421dad8d45e",
  11907. "shasum": ""
  11908. },
  11909. "require": {
  11910. "php": ">=8.2"
  11911. },
  11912. "require-dev": {
  11913. "phpunit/phpunit": "^11.0"
  11914. },
  11915. "type": "library",
  11916. "extra": {
  11917. "branch-alias": {
  11918. "dev-main": "4.0-dev"
  11919. }
  11920. },
  11921. "autoload": {
  11922. "classmap": [
  11923. "src/"
  11924. ]
  11925. },
  11926. "notification-url": "https://packagist.org/downloads/",
  11927. "license": [
  11928. "BSD-3-Clause"
  11929. ],
  11930. "authors": [
  11931. {
  11932. "name": "Sebastian Bergmann",
  11933. "email": "sebastian@phpunit.de"
  11934. }
  11935. ],
  11936. "description": "Looks up which function or method a line of code belongs to",
  11937. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  11938. "support": {
  11939. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  11940. "security": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/security/policy",
  11941. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/4.0.1"
  11942. },
  11943. "funding": [
  11944. {
  11945. "url": "https://github.com/sebastianbergmann",
  11946. "type": "github"
  11947. }
  11948. ],
  11949. "time": "2024-07-03T04:45:54+00:00"
  11950. },
  11951. {
  11952. "name": "sebastian/comparator",
  11953. "version": "6.3.2",
  11954. "source": {
  11955. "type": "git",
  11956. "url": "https://github.com/sebastianbergmann/comparator.git",
  11957. "reference": "85c77556683e6eee4323e4c5468641ca0237e2e8"
  11958. },
  11959. "dist": {
  11960. "type": "zip",
  11961. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/85c77556683e6eee4323e4c5468641ca0237e2e8",
  11962. "reference": "85c77556683e6eee4323e4c5468641ca0237e2e8",
  11963. "shasum": ""
  11964. },
  11965. "require": {
  11966. "ext-dom": "*",
  11967. "ext-mbstring": "*",
  11968. "php": ">=8.2",
  11969. "sebastian/diff": "^6.0",
  11970. "sebastian/exporter": "^6.0"
  11971. },
  11972. "require-dev": {
  11973. "phpunit/phpunit": "^11.4"
  11974. },
  11975. "suggest": {
  11976. "ext-bcmath": "For comparing BcMath\\Number objects"
  11977. },
  11978. "type": "library",
  11979. "extra": {
  11980. "branch-alias": {
  11981. "dev-main": "6.3-dev"
  11982. }
  11983. },
  11984. "autoload": {
  11985. "classmap": [
  11986. "src/"
  11987. ]
  11988. },
  11989. "notification-url": "https://packagist.org/downloads/",
  11990. "license": [
  11991. "BSD-3-Clause"
  11992. ],
  11993. "authors": [
  11994. {
  11995. "name": "Sebastian Bergmann",
  11996. "email": "sebastian@phpunit.de"
  11997. },
  11998. {
  11999. "name": "Jeff Welch",
  12000. "email": "whatthejeff@gmail.com"
  12001. },
  12002. {
  12003. "name": "Volker Dusch",
  12004. "email": "github@wallbash.com"
  12005. },
  12006. {
  12007. "name": "Bernhard Schussek",
  12008. "email": "bschussek@2bepublished.at"
  12009. }
  12010. ],
  12011. "description": "Provides the functionality to compare PHP values for equality",
  12012. "homepage": "https://github.com/sebastianbergmann/comparator",
  12013. "keywords": [
  12014. "comparator",
  12015. "compare",
  12016. "equality"
  12017. ],
  12018. "support": {
  12019. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  12020. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  12021. "source": "https://github.com/sebastianbergmann/comparator/tree/6.3.2"
  12022. },
  12023. "funding": [
  12024. {
  12025. "url": "https://github.com/sebastianbergmann",
  12026. "type": "github"
  12027. },
  12028. {
  12029. "url": "https://liberapay.com/sebastianbergmann",
  12030. "type": "liberapay"
  12031. },
  12032. {
  12033. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  12034. "type": "thanks_dev"
  12035. },
  12036. {
  12037. "url": "https://tidelift.com/funding/github/packagist/sebastian/comparator",
  12038. "type": "tidelift"
  12039. }
  12040. ],
  12041. "time": "2025-08-10T08:07:46+00:00"
  12042. },
  12043. {
  12044. "name": "sebastian/complexity",
  12045. "version": "4.0.1",
  12046. "source": {
  12047. "type": "git",
  12048. "url": "https://github.com/sebastianbergmann/complexity.git",
  12049. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0"
  12050. },
  12051. "dist": {
  12052. "type": "zip",
  12053. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/ee41d384ab1906c68852636b6de493846e13e5a0",
  12054. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0",
  12055. "shasum": ""
  12056. },
  12057. "require": {
  12058. "nikic/php-parser": "^5.0",
  12059. "php": ">=8.2"
  12060. },
  12061. "require-dev": {
  12062. "phpunit/phpunit": "^11.0"
  12063. },
  12064. "type": "library",
  12065. "extra": {
  12066. "branch-alias": {
  12067. "dev-main": "4.0-dev"
  12068. }
  12069. },
  12070. "autoload": {
  12071. "classmap": [
  12072. "src/"
  12073. ]
  12074. },
  12075. "notification-url": "https://packagist.org/downloads/",
  12076. "license": [
  12077. "BSD-3-Clause"
  12078. ],
  12079. "authors": [
  12080. {
  12081. "name": "Sebastian Bergmann",
  12082. "email": "sebastian@phpunit.de",
  12083. "role": "lead"
  12084. }
  12085. ],
  12086. "description": "Library for calculating the complexity of PHP code units",
  12087. "homepage": "https://github.com/sebastianbergmann/complexity",
  12088. "support": {
  12089. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  12090. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  12091. "source": "https://github.com/sebastianbergmann/complexity/tree/4.0.1"
  12092. },
  12093. "funding": [
  12094. {
  12095. "url": "https://github.com/sebastianbergmann",
  12096. "type": "github"
  12097. }
  12098. ],
  12099. "time": "2024-07-03T04:49:50+00:00"
  12100. },
  12101. {
  12102. "name": "sebastian/diff",
  12103. "version": "6.0.2",
  12104. "source": {
  12105. "type": "git",
  12106. "url": "https://github.com/sebastianbergmann/diff.git",
  12107. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544"
  12108. },
  12109. "dist": {
  12110. "type": "zip",
  12111. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/b4ccd857127db5d41a5b676f24b51371d76d8544",
  12112. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544",
  12113. "shasum": ""
  12114. },
  12115. "require": {
  12116. "php": ">=8.2"
  12117. },
  12118. "require-dev": {
  12119. "phpunit/phpunit": "^11.0",
  12120. "symfony/process": "^4.2 || ^5"
  12121. },
  12122. "type": "library",
  12123. "extra": {
  12124. "branch-alias": {
  12125. "dev-main": "6.0-dev"
  12126. }
  12127. },
  12128. "autoload": {
  12129. "classmap": [
  12130. "src/"
  12131. ]
  12132. },
  12133. "notification-url": "https://packagist.org/downloads/",
  12134. "license": [
  12135. "BSD-3-Clause"
  12136. ],
  12137. "authors": [
  12138. {
  12139. "name": "Sebastian Bergmann",
  12140. "email": "sebastian@phpunit.de"
  12141. },
  12142. {
  12143. "name": "Kore Nordmann",
  12144. "email": "mail@kore-nordmann.de"
  12145. }
  12146. ],
  12147. "description": "Diff implementation",
  12148. "homepage": "https://github.com/sebastianbergmann/diff",
  12149. "keywords": [
  12150. "diff",
  12151. "udiff",
  12152. "unidiff",
  12153. "unified diff"
  12154. ],
  12155. "support": {
  12156. "issues": "https://github.com/sebastianbergmann/diff/issues",
  12157. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  12158. "source": "https://github.com/sebastianbergmann/diff/tree/6.0.2"
  12159. },
  12160. "funding": [
  12161. {
  12162. "url": "https://github.com/sebastianbergmann",
  12163. "type": "github"
  12164. }
  12165. ],
  12166. "time": "2024-07-03T04:53:05+00:00"
  12167. },
  12168. {
  12169. "name": "sebastian/environment",
  12170. "version": "7.2.1",
  12171. "source": {
  12172. "type": "git",
  12173. "url": "https://github.com/sebastianbergmann/environment.git",
  12174. "reference": "a5c75038693ad2e8d4b6c15ba2403532647830c4"
  12175. },
  12176. "dist": {
  12177. "type": "zip",
  12178. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/a5c75038693ad2e8d4b6c15ba2403532647830c4",
  12179. "reference": "a5c75038693ad2e8d4b6c15ba2403532647830c4",
  12180. "shasum": ""
  12181. },
  12182. "require": {
  12183. "php": ">=8.2"
  12184. },
  12185. "require-dev": {
  12186. "phpunit/phpunit": "^11.3"
  12187. },
  12188. "suggest": {
  12189. "ext-posix": "*"
  12190. },
  12191. "type": "library",
  12192. "extra": {
  12193. "branch-alias": {
  12194. "dev-main": "7.2-dev"
  12195. }
  12196. },
  12197. "autoload": {
  12198. "classmap": [
  12199. "src/"
  12200. ]
  12201. },
  12202. "notification-url": "https://packagist.org/downloads/",
  12203. "license": [
  12204. "BSD-3-Clause"
  12205. ],
  12206. "authors": [
  12207. {
  12208. "name": "Sebastian Bergmann",
  12209. "email": "sebastian@phpunit.de"
  12210. }
  12211. ],
  12212. "description": "Provides functionality to handle HHVM/PHP environments",
  12213. "homepage": "https://github.com/sebastianbergmann/environment",
  12214. "keywords": [
  12215. "Xdebug",
  12216. "environment",
  12217. "hhvm"
  12218. ],
  12219. "support": {
  12220. "issues": "https://github.com/sebastianbergmann/environment/issues",
  12221. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  12222. "source": "https://github.com/sebastianbergmann/environment/tree/7.2.1"
  12223. },
  12224. "funding": [
  12225. {
  12226. "url": "https://github.com/sebastianbergmann",
  12227. "type": "github"
  12228. },
  12229. {
  12230. "url": "https://liberapay.com/sebastianbergmann",
  12231. "type": "liberapay"
  12232. },
  12233. {
  12234. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  12235. "type": "thanks_dev"
  12236. },
  12237. {
  12238. "url": "https://tidelift.com/funding/github/packagist/sebastian/environment",
  12239. "type": "tidelift"
  12240. }
  12241. ],
  12242. "time": "2025-05-21T11:55:47+00:00"
  12243. },
  12244. {
  12245. "name": "sebastian/exporter",
  12246. "version": "6.3.0",
  12247. "source": {
  12248. "type": "git",
  12249. "url": "https://github.com/sebastianbergmann/exporter.git",
  12250. "reference": "3473f61172093b2da7de1fb5782e1f24cc036dc3"
  12251. },
  12252. "dist": {
  12253. "type": "zip",
  12254. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/3473f61172093b2da7de1fb5782e1f24cc036dc3",
  12255. "reference": "3473f61172093b2da7de1fb5782e1f24cc036dc3",
  12256. "shasum": ""
  12257. },
  12258. "require": {
  12259. "ext-mbstring": "*",
  12260. "php": ">=8.2",
  12261. "sebastian/recursion-context": "^6.0"
  12262. },
  12263. "require-dev": {
  12264. "phpunit/phpunit": "^11.3"
  12265. },
  12266. "type": "library",
  12267. "extra": {
  12268. "branch-alias": {
  12269. "dev-main": "6.1-dev"
  12270. }
  12271. },
  12272. "autoload": {
  12273. "classmap": [
  12274. "src/"
  12275. ]
  12276. },
  12277. "notification-url": "https://packagist.org/downloads/",
  12278. "license": [
  12279. "BSD-3-Clause"
  12280. ],
  12281. "authors": [
  12282. {
  12283. "name": "Sebastian Bergmann",
  12284. "email": "sebastian@phpunit.de"
  12285. },
  12286. {
  12287. "name": "Jeff Welch",
  12288. "email": "whatthejeff@gmail.com"
  12289. },
  12290. {
  12291. "name": "Volker Dusch",
  12292. "email": "github@wallbash.com"
  12293. },
  12294. {
  12295. "name": "Adam Harvey",
  12296. "email": "aharvey@php.net"
  12297. },
  12298. {
  12299. "name": "Bernhard Schussek",
  12300. "email": "bschussek@gmail.com"
  12301. }
  12302. ],
  12303. "description": "Provides the functionality to export PHP variables for visualization",
  12304. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  12305. "keywords": [
  12306. "export",
  12307. "exporter"
  12308. ],
  12309. "support": {
  12310. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  12311. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  12312. "source": "https://github.com/sebastianbergmann/exporter/tree/6.3.0"
  12313. },
  12314. "funding": [
  12315. {
  12316. "url": "https://github.com/sebastianbergmann",
  12317. "type": "github"
  12318. }
  12319. ],
  12320. "time": "2024-12-05T09:17:50+00:00"
  12321. },
  12322. {
  12323. "name": "sebastian/global-state",
  12324. "version": "7.0.2",
  12325. "source": {
  12326. "type": "git",
  12327. "url": "https://github.com/sebastianbergmann/global-state.git",
  12328. "reference": "3be331570a721f9a4b5917f4209773de17f747d7"
  12329. },
  12330. "dist": {
  12331. "type": "zip",
  12332. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/3be331570a721f9a4b5917f4209773de17f747d7",
  12333. "reference": "3be331570a721f9a4b5917f4209773de17f747d7",
  12334. "shasum": ""
  12335. },
  12336. "require": {
  12337. "php": ">=8.2",
  12338. "sebastian/object-reflector": "^4.0",
  12339. "sebastian/recursion-context": "^6.0"
  12340. },
  12341. "require-dev": {
  12342. "ext-dom": "*",
  12343. "phpunit/phpunit": "^11.0"
  12344. },
  12345. "type": "library",
  12346. "extra": {
  12347. "branch-alias": {
  12348. "dev-main": "7.0-dev"
  12349. }
  12350. },
  12351. "autoload": {
  12352. "classmap": [
  12353. "src/"
  12354. ]
  12355. },
  12356. "notification-url": "https://packagist.org/downloads/",
  12357. "license": [
  12358. "BSD-3-Clause"
  12359. ],
  12360. "authors": [
  12361. {
  12362. "name": "Sebastian Bergmann",
  12363. "email": "sebastian@phpunit.de"
  12364. }
  12365. ],
  12366. "description": "Snapshotting of global state",
  12367. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  12368. "keywords": [
  12369. "global state"
  12370. ],
  12371. "support": {
  12372. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  12373. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  12374. "source": "https://github.com/sebastianbergmann/global-state/tree/7.0.2"
  12375. },
  12376. "funding": [
  12377. {
  12378. "url": "https://github.com/sebastianbergmann",
  12379. "type": "github"
  12380. }
  12381. ],
  12382. "time": "2024-07-03T04:57:36+00:00"
  12383. },
  12384. {
  12385. "name": "sebastian/lines-of-code",
  12386. "version": "3.0.1",
  12387. "source": {
  12388. "type": "git",
  12389. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  12390. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a"
  12391. },
  12392. "dist": {
  12393. "type": "zip",
  12394. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  12395. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  12396. "shasum": ""
  12397. },
  12398. "require": {
  12399. "nikic/php-parser": "^5.0",
  12400. "php": ">=8.2"
  12401. },
  12402. "require-dev": {
  12403. "phpunit/phpunit": "^11.0"
  12404. },
  12405. "type": "library",
  12406. "extra": {
  12407. "branch-alias": {
  12408. "dev-main": "3.0-dev"
  12409. }
  12410. },
  12411. "autoload": {
  12412. "classmap": [
  12413. "src/"
  12414. ]
  12415. },
  12416. "notification-url": "https://packagist.org/downloads/",
  12417. "license": [
  12418. "BSD-3-Clause"
  12419. ],
  12420. "authors": [
  12421. {
  12422. "name": "Sebastian Bergmann",
  12423. "email": "sebastian@phpunit.de",
  12424. "role": "lead"
  12425. }
  12426. ],
  12427. "description": "Library for counting the lines of code in PHP source code",
  12428. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  12429. "support": {
  12430. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  12431. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  12432. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/3.0.1"
  12433. },
  12434. "funding": [
  12435. {
  12436. "url": "https://github.com/sebastianbergmann",
  12437. "type": "github"
  12438. }
  12439. ],
  12440. "time": "2024-07-03T04:58:38+00:00"
  12441. },
  12442. {
  12443. "name": "sebastian/object-enumerator",
  12444. "version": "6.0.1",
  12445. "source": {
  12446. "type": "git",
  12447. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  12448. "reference": "f5b498e631a74204185071eb41f33f38d64608aa"
  12449. },
  12450. "dist": {
  12451. "type": "zip",
  12452. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/f5b498e631a74204185071eb41f33f38d64608aa",
  12453. "reference": "f5b498e631a74204185071eb41f33f38d64608aa",
  12454. "shasum": ""
  12455. },
  12456. "require": {
  12457. "php": ">=8.2",
  12458. "sebastian/object-reflector": "^4.0",
  12459. "sebastian/recursion-context": "^6.0"
  12460. },
  12461. "require-dev": {
  12462. "phpunit/phpunit": "^11.0"
  12463. },
  12464. "type": "library",
  12465. "extra": {
  12466. "branch-alias": {
  12467. "dev-main": "6.0-dev"
  12468. }
  12469. },
  12470. "autoload": {
  12471. "classmap": [
  12472. "src/"
  12473. ]
  12474. },
  12475. "notification-url": "https://packagist.org/downloads/",
  12476. "license": [
  12477. "BSD-3-Clause"
  12478. ],
  12479. "authors": [
  12480. {
  12481. "name": "Sebastian Bergmann",
  12482. "email": "sebastian@phpunit.de"
  12483. }
  12484. ],
  12485. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  12486. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  12487. "support": {
  12488. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  12489. "security": "https://github.com/sebastianbergmann/object-enumerator/security/policy",
  12490. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/6.0.1"
  12491. },
  12492. "funding": [
  12493. {
  12494. "url": "https://github.com/sebastianbergmann",
  12495. "type": "github"
  12496. }
  12497. ],
  12498. "time": "2024-07-03T05:00:13+00:00"
  12499. },
  12500. {
  12501. "name": "sebastian/object-reflector",
  12502. "version": "4.0.1",
  12503. "source": {
  12504. "type": "git",
  12505. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  12506. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9"
  12507. },
  12508. "dist": {
  12509. "type": "zip",
  12510. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  12511. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  12512. "shasum": ""
  12513. },
  12514. "require": {
  12515. "php": ">=8.2"
  12516. },
  12517. "require-dev": {
  12518. "phpunit/phpunit": "^11.0"
  12519. },
  12520. "type": "library",
  12521. "extra": {
  12522. "branch-alias": {
  12523. "dev-main": "4.0-dev"
  12524. }
  12525. },
  12526. "autoload": {
  12527. "classmap": [
  12528. "src/"
  12529. ]
  12530. },
  12531. "notification-url": "https://packagist.org/downloads/",
  12532. "license": [
  12533. "BSD-3-Clause"
  12534. ],
  12535. "authors": [
  12536. {
  12537. "name": "Sebastian Bergmann",
  12538. "email": "sebastian@phpunit.de"
  12539. }
  12540. ],
  12541. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  12542. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  12543. "support": {
  12544. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  12545. "security": "https://github.com/sebastianbergmann/object-reflector/security/policy",
  12546. "source": "https://github.com/sebastianbergmann/object-reflector/tree/4.0.1"
  12547. },
  12548. "funding": [
  12549. {
  12550. "url": "https://github.com/sebastianbergmann",
  12551. "type": "github"
  12552. }
  12553. ],
  12554. "time": "2024-07-03T05:01:32+00:00"
  12555. },
  12556. {
  12557. "name": "sebastian/recursion-context",
  12558. "version": "6.0.3",
  12559. "source": {
  12560. "type": "git",
  12561. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  12562. "reference": "f6458abbf32a6c8174f8f26261475dc133b3d9dc"
  12563. },
  12564. "dist": {
  12565. "type": "zip",
  12566. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/f6458abbf32a6c8174f8f26261475dc133b3d9dc",
  12567. "reference": "f6458abbf32a6c8174f8f26261475dc133b3d9dc",
  12568. "shasum": ""
  12569. },
  12570. "require": {
  12571. "php": ">=8.2"
  12572. },
  12573. "require-dev": {
  12574. "phpunit/phpunit": "^11.3"
  12575. },
  12576. "type": "library",
  12577. "extra": {
  12578. "branch-alias": {
  12579. "dev-main": "6.0-dev"
  12580. }
  12581. },
  12582. "autoload": {
  12583. "classmap": [
  12584. "src/"
  12585. ]
  12586. },
  12587. "notification-url": "https://packagist.org/downloads/",
  12588. "license": [
  12589. "BSD-3-Clause"
  12590. ],
  12591. "authors": [
  12592. {
  12593. "name": "Sebastian Bergmann",
  12594. "email": "sebastian@phpunit.de"
  12595. },
  12596. {
  12597. "name": "Jeff Welch",
  12598. "email": "whatthejeff@gmail.com"
  12599. },
  12600. {
  12601. "name": "Adam Harvey",
  12602. "email": "aharvey@php.net"
  12603. }
  12604. ],
  12605. "description": "Provides functionality to recursively process PHP variables",
  12606. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  12607. "support": {
  12608. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  12609. "security": "https://github.com/sebastianbergmann/recursion-context/security/policy",
  12610. "source": "https://github.com/sebastianbergmann/recursion-context/tree/6.0.3"
  12611. },
  12612. "funding": [
  12613. {
  12614. "url": "https://github.com/sebastianbergmann",
  12615. "type": "github"
  12616. },
  12617. {
  12618. "url": "https://liberapay.com/sebastianbergmann",
  12619. "type": "liberapay"
  12620. },
  12621. {
  12622. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  12623. "type": "thanks_dev"
  12624. },
  12625. {
  12626. "url": "https://tidelift.com/funding/github/packagist/sebastian/recursion-context",
  12627. "type": "tidelift"
  12628. }
  12629. ],
  12630. "time": "2025-08-13T04:42:22+00:00"
  12631. },
  12632. {
  12633. "name": "sebastian/type",
  12634. "version": "5.1.3",
  12635. "source": {
  12636. "type": "git",
  12637. "url": "https://github.com/sebastianbergmann/type.git",
  12638. "reference": "f77d2d4e78738c98d9a68d2596fe5e8fa380f449"
  12639. },
  12640. "dist": {
  12641. "type": "zip",
  12642. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/f77d2d4e78738c98d9a68d2596fe5e8fa380f449",
  12643. "reference": "f77d2d4e78738c98d9a68d2596fe5e8fa380f449",
  12644. "shasum": ""
  12645. },
  12646. "require": {
  12647. "php": ">=8.2"
  12648. },
  12649. "require-dev": {
  12650. "phpunit/phpunit": "^11.3"
  12651. },
  12652. "type": "library",
  12653. "extra": {
  12654. "branch-alias": {
  12655. "dev-main": "5.1-dev"
  12656. }
  12657. },
  12658. "autoload": {
  12659. "classmap": [
  12660. "src/"
  12661. ]
  12662. },
  12663. "notification-url": "https://packagist.org/downloads/",
  12664. "license": [
  12665. "BSD-3-Clause"
  12666. ],
  12667. "authors": [
  12668. {
  12669. "name": "Sebastian Bergmann",
  12670. "email": "sebastian@phpunit.de",
  12671. "role": "lead"
  12672. }
  12673. ],
  12674. "description": "Collection of value objects that represent the types of the PHP type system",
  12675. "homepage": "https://github.com/sebastianbergmann/type",
  12676. "support": {
  12677. "issues": "https://github.com/sebastianbergmann/type/issues",
  12678. "security": "https://github.com/sebastianbergmann/type/security/policy",
  12679. "source": "https://github.com/sebastianbergmann/type/tree/5.1.3"
  12680. },
  12681. "funding": [
  12682. {
  12683. "url": "https://github.com/sebastianbergmann",
  12684. "type": "github"
  12685. },
  12686. {
  12687. "url": "https://liberapay.com/sebastianbergmann",
  12688. "type": "liberapay"
  12689. },
  12690. {
  12691. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  12692. "type": "thanks_dev"
  12693. },
  12694. {
  12695. "url": "https://tidelift.com/funding/github/packagist/sebastian/type",
  12696. "type": "tidelift"
  12697. }
  12698. ],
  12699. "time": "2025-08-09T06:55:48+00:00"
  12700. },
  12701. {
  12702. "name": "sebastian/version",
  12703. "version": "5.0.2",
  12704. "source": {
  12705. "type": "git",
  12706. "url": "https://github.com/sebastianbergmann/version.git",
  12707. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874"
  12708. },
  12709. "dist": {
  12710. "type": "zip",
  12711. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c687e3387b99f5b03b6caa64c74b63e2936ff874",
  12712. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874",
  12713. "shasum": ""
  12714. },
  12715. "require": {
  12716. "php": ">=8.2"
  12717. },
  12718. "type": "library",
  12719. "extra": {
  12720. "branch-alias": {
  12721. "dev-main": "5.0-dev"
  12722. }
  12723. },
  12724. "autoload": {
  12725. "classmap": [
  12726. "src/"
  12727. ]
  12728. },
  12729. "notification-url": "https://packagist.org/downloads/",
  12730. "license": [
  12731. "BSD-3-Clause"
  12732. ],
  12733. "authors": [
  12734. {
  12735. "name": "Sebastian Bergmann",
  12736. "email": "sebastian@phpunit.de",
  12737. "role": "lead"
  12738. }
  12739. ],
  12740. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  12741. "homepage": "https://github.com/sebastianbergmann/version",
  12742. "support": {
  12743. "issues": "https://github.com/sebastianbergmann/version/issues",
  12744. "security": "https://github.com/sebastianbergmann/version/security/policy",
  12745. "source": "https://github.com/sebastianbergmann/version/tree/5.0.2"
  12746. },
  12747. "funding": [
  12748. {
  12749. "url": "https://github.com/sebastianbergmann",
  12750. "type": "github"
  12751. }
  12752. ],
  12753. "time": "2024-10-09T05:16:32+00:00"
  12754. },
  12755. {
  12756. "name": "spatie/backtrace",
  12757. "version": "1.7.4",
  12758. "source": {
  12759. "type": "git",
  12760. "url": "https://github.com/spatie/backtrace.git",
  12761. "reference": "cd37a49fce7137359ac30ecc44ef3e16404cccbe"
  12762. },
  12763. "dist": {
  12764. "type": "zip",
  12765. "url": "https://api.github.com/repos/spatie/backtrace/zipball/cd37a49fce7137359ac30ecc44ef3e16404cccbe",
  12766. "reference": "cd37a49fce7137359ac30ecc44ef3e16404cccbe",
  12767. "shasum": ""
  12768. },
  12769. "require": {
  12770. "php": "^7.3 || ^8.0"
  12771. },
  12772. "require-dev": {
  12773. "ext-json": "*",
  12774. "laravel/serializable-closure": "^1.3 || ^2.0",
  12775. "phpunit/phpunit": "^9.3 || ^11.4.3",
  12776. "spatie/phpunit-snapshot-assertions": "^4.2 || ^5.1.6",
  12777. "symfony/var-dumper": "^5.1 || ^6.0 || ^7.0"
  12778. },
  12779. "type": "library",
  12780. "autoload": {
  12781. "psr-4": {
  12782. "Spatie\\Backtrace\\": "src"
  12783. }
  12784. },
  12785. "notification-url": "https://packagist.org/downloads/",
  12786. "license": [
  12787. "MIT"
  12788. ],
  12789. "authors": [
  12790. {
  12791. "name": "Freek Van de Herten",
  12792. "email": "freek@spatie.be",
  12793. "homepage": "https://spatie.be",
  12794. "role": "Developer"
  12795. }
  12796. ],
  12797. "description": "A better backtrace",
  12798. "homepage": "https://github.com/spatie/backtrace",
  12799. "keywords": [
  12800. "Backtrace",
  12801. "spatie"
  12802. ],
  12803. "support": {
  12804. "source": "https://github.com/spatie/backtrace/tree/1.7.4"
  12805. },
  12806. "funding": [
  12807. {
  12808. "url": "https://github.com/sponsors/spatie",
  12809. "type": "github"
  12810. },
  12811. {
  12812. "url": "https://spatie.be/open-source/support-us",
  12813. "type": "other"
  12814. }
  12815. ],
  12816. "time": "2025-05-08T15:41:09+00:00"
  12817. },
  12818. {
  12819. "name": "spatie/error-solutions",
  12820. "version": "1.1.3",
  12821. "source": {
  12822. "type": "git",
  12823. "url": "https://github.com/spatie/error-solutions.git",
  12824. "reference": "e495d7178ca524f2dd0fe6a1d99a1e608e1c9936"
  12825. },
  12826. "dist": {
  12827. "type": "zip",
  12828. "url": "https://api.github.com/repos/spatie/error-solutions/zipball/e495d7178ca524f2dd0fe6a1d99a1e608e1c9936",
  12829. "reference": "e495d7178ca524f2dd0fe6a1d99a1e608e1c9936",
  12830. "shasum": ""
  12831. },
  12832. "require": {
  12833. "php": "^8.0"
  12834. },
  12835. "require-dev": {
  12836. "illuminate/broadcasting": "^10.0|^11.0|^12.0",
  12837. "illuminate/cache": "^10.0|^11.0|^12.0",
  12838. "illuminate/support": "^10.0|^11.0|^12.0",
  12839. "livewire/livewire": "^2.11|^3.5.20",
  12840. "openai-php/client": "^0.10.1",
  12841. "orchestra/testbench": "8.22.3|^9.0|^10.0",
  12842. "pestphp/pest": "^2.20|^3.0",
  12843. "phpstan/phpstan": "^2.1",
  12844. "psr/simple-cache": "^3.0",
  12845. "psr/simple-cache-implementation": "^3.0",
  12846. "spatie/ray": "^1.28",
  12847. "symfony/cache": "^5.4|^6.0|^7.0",
  12848. "symfony/process": "^5.4|^6.0|^7.0",
  12849. "vlucas/phpdotenv": "^5.5"
  12850. },
  12851. "suggest": {
  12852. "openai-php/client": "Require get solutions from OpenAI",
  12853. "simple-cache-implementation": "To cache solutions from OpenAI"
  12854. },
  12855. "type": "library",
  12856. "autoload": {
  12857. "psr-4": {
  12858. "Spatie\\Ignition\\": "legacy/ignition",
  12859. "Spatie\\ErrorSolutions\\": "src",
  12860. "Spatie\\LaravelIgnition\\": "legacy/laravel-ignition"
  12861. }
  12862. },
  12863. "notification-url": "https://packagist.org/downloads/",
  12864. "license": [
  12865. "MIT"
  12866. ],
  12867. "authors": [
  12868. {
  12869. "name": "Ruben Van Assche",
  12870. "email": "ruben@spatie.be",
  12871. "role": "Developer"
  12872. }
  12873. ],
  12874. "description": "This is my package error-solutions",
  12875. "homepage": "https://github.com/spatie/error-solutions",
  12876. "keywords": [
  12877. "error-solutions",
  12878. "spatie"
  12879. ],
  12880. "support": {
  12881. "issues": "https://github.com/spatie/error-solutions/issues",
  12882. "source": "https://github.com/spatie/error-solutions/tree/1.1.3"
  12883. },
  12884. "funding": [
  12885. {
  12886. "url": "https://github.com/Spatie",
  12887. "type": "github"
  12888. }
  12889. ],
  12890. "time": "2025-02-14T12:29:50+00:00"
  12891. },
  12892. {
  12893. "name": "spatie/flare-client-php",
  12894. "version": "1.10.1",
  12895. "source": {
  12896. "type": "git",
  12897. "url": "https://github.com/spatie/flare-client-php.git",
  12898. "reference": "bf1716eb98bd689451b071548ae9e70738dce62f"
  12899. },
  12900. "dist": {
  12901. "type": "zip",
  12902. "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/bf1716eb98bd689451b071548ae9e70738dce62f",
  12903. "reference": "bf1716eb98bd689451b071548ae9e70738dce62f",
  12904. "shasum": ""
  12905. },
  12906. "require": {
  12907. "illuminate/pipeline": "^8.0|^9.0|^10.0|^11.0|^12.0",
  12908. "php": "^8.0",
  12909. "spatie/backtrace": "^1.6.1",
  12910. "symfony/http-foundation": "^5.2|^6.0|^7.0",
  12911. "symfony/mime": "^5.2|^6.0|^7.0",
  12912. "symfony/process": "^5.2|^6.0|^7.0",
  12913. "symfony/var-dumper": "^5.2|^6.0|^7.0"
  12914. },
  12915. "require-dev": {
  12916. "dms/phpunit-arraysubset-asserts": "^0.5.0",
  12917. "pestphp/pest": "^1.20|^2.0",
  12918. "phpstan/extension-installer": "^1.1",
  12919. "phpstan/phpstan-deprecation-rules": "^1.0",
  12920. "phpstan/phpstan-phpunit": "^1.0",
  12921. "spatie/pest-plugin-snapshots": "^1.0|^2.0"
  12922. },
  12923. "type": "library",
  12924. "extra": {
  12925. "branch-alias": {
  12926. "dev-main": "1.3.x-dev"
  12927. }
  12928. },
  12929. "autoload": {
  12930. "files": [
  12931. "src/helpers.php"
  12932. ],
  12933. "psr-4": {
  12934. "Spatie\\FlareClient\\": "src"
  12935. }
  12936. },
  12937. "notification-url": "https://packagist.org/downloads/",
  12938. "license": [
  12939. "MIT"
  12940. ],
  12941. "description": "Send PHP errors to Flare",
  12942. "homepage": "https://github.com/spatie/flare-client-php",
  12943. "keywords": [
  12944. "exception",
  12945. "flare",
  12946. "reporting",
  12947. "spatie"
  12948. ],
  12949. "support": {
  12950. "issues": "https://github.com/spatie/flare-client-php/issues",
  12951. "source": "https://github.com/spatie/flare-client-php/tree/1.10.1"
  12952. },
  12953. "funding": [
  12954. {
  12955. "url": "https://github.com/spatie",
  12956. "type": "github"
  12957. }
  12958. ],
  12959. "time": "2025-02-14T13:42:06+00:00"
  12960. },
  12961. {
  12962. "name": "spatie/ignition",
  12963. "version": "1.15.1",
  12964. "source": {
  12965. "type": "git",
  12966. "url": "https://github.com/spatie/ignition.git",
  12967. "reference": "31f314153020aee5af3537e507fef892ffbf8c85"
  12968. },
  12969. "dist": {
  12970. "type": "zip",
  12971. "url": "https://api.github.com/repos/spatie/ignition/zipball/31f314153020aee5af3537e507fef892ffbf8c85",
  12972. "reference": "31f314153020aee5af3537e507fef892ffbf8c85",
  12973. "shasum": ""
  12974. },
  12975. "require": {
  12976. "ext-json": "*",
  12977. "ext-mbstring": "*",
  12978. "php": "^8.0",
  12979. "spatie/error-solutions": "^1.0",
  12980. "spatie/flare-client-php": "^1.7",
  12981. "symfony/console": "^5.4|^6.0|^7.0",
  12982. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  12983. },
  12984. "require-dev": {
  12985. "illuminate/cache": "^9.52|^10.0|^11.0|^12.0",
  12986. "mockery/mockery": "^1.4",
  12987. "pestphp/pest": "^1.20|^2.0",
  12988. "phpstan/extension-installer": "^1.1",
  12989. "phpstan/phpstan-deprecation-rules": "^1.0",
  12990. "phpstan/phpstan-phpunit": "^1.0",
  12991. "psr/simple-cache-implementation": "*",
  12992. "symfony/cache": "^5.4|^6.0|^7.0",
  12993. "symfony/process": "^5.4|^6.0|^7.0",
  12994. "vlucas/phpdotenv": "^5.5"
  12995. },
  12996. "suggest": {
  12997. "openai-php/client": "Require get solutions from OpenAI",
  12998. "simple-cache-implementation": "To cache solutions from OpenAI"
  12999. },
  13000. "type": "library",
  13001. "extra": {
  13002. "branch-alias": {
  13003. "dev-main": "1.5.x-dev"
  13004. }
  13005. },
  13006. "autoload": {
  13007. "psr-4": {
  13008. "Spatie\\Ignition\\": "src"
  13009. }
  13010. },
  13011. "notification-url": "https://packagist.org/downloads/",
  13012. "license": [
  13013. "MIT"
  13014. ],
  13015. "authors": [
  13016. {
  13017. "name": "Spatie",
  13018. "email": "info@spatie.be",
  13019. "role": "Developer"
  13020. }
  13021. ],
  13022. "description": "A beautiful error page for PHP applications.",
  13023. "homepage": "https://flareapp.io/ignition",
  13024. "keywords": [
  13025. "error",
  13026. "flare",
  13027. "laravel",
  13028. "page"
  13029. ],
  13030. "support": {
  13031. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  13032. "forum": "https://twitter.com/flareappio",
  13033. "issues": "https://github.com/spatie/ignition/issues",
  13034. "source": "https://github.com/spatie/ignition"
  13035. },
  13036. "funding": [
  13037. {
  13038. "url": "https://github.com/spatie",
  13039. "type": "github"
  13040. }
  13041. ],
  13042. "time": "2025-02-21T14:31:39+00:00"
  13043. },
  13044. {
  13045. "name": "spatie/laravel-ignition",
  13046. "version": "2.9.1",
  13047. "source": {
  13048. "type": "git",
  13049. "url": "https://github.com/spatie/laravel-ignition.git",
  13050. "reference": "1baee07216d6748ebd3a65ba97381b051838707a"
  13051. },
  13052. "dist": {
  13053. "type": "zip",
  13054. "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/1baee07216d6748ebd3a65ba97381b051838707a",
  13055. "reference": "1baee07216d6748ebd3a65ba97381b051838707a",
  13056. "shasum": ""
  13057. },
  13058. "require": {
  13059. "ext-curl": "*",
  13060. "ext-json": "*",
  13061. "ext-mbstring": "*",
  13062. "illuminate/support": "^10.0|^11.0|^12.0",
  13063. "php": "^8.1",
  13064. "spatie/ignition": "^1.15",
  13065. "symfony/console": "^6.2.3|^7.0",
  13066. "symfony/var-dumper": "^6.2.3|^7.0"
  13067. },
  13068. "require-dev": {
  13069. "livewire/livewire": "^2.11|^3.3.5",
  13070. "mockery/mockery": "^1.5.1",
  13071. "openai-php/client": "^0.8.1|^0.10",
  13072. "orchestra/testbench": "8.22.3|^9.0|^10.0",
  13073. "pestphp/pest": "^2.34|^3.7",
  13074. "phpstan/extension-installer": "^1.3.1",
  13075. "phpstan/phpstan-deprecation-rules": "^1.1.1|^2.0",
  13076. "phpstan/phpstan-phpunit": "^1.3.16|^2.0",
  13077. "vlucas/phpdotenv": "^5.5"
  13078. },
  13079. "suggest": {
  13080. "openai-php/client": "Require get solutions from OpenAI",
  13081. "psr/simple-cache-implementation": "Needed to cache solutions from OpenAI"
  13082. },
  13083. "type": "library",
  13084. "extra": {
  13085. "laravel": {
  13086. "aliases": {
  13087. "Flare": "Spatie\\LaravelIgnition\\Facades\\Flare"
  13088. },
  13089. "providers": [
  13090. "Spatie\\LaravelIgnition\\IgnitionServiceProvider"
  13091. ]
  13092. }
  13093. },
  13094. "autoload": {
  13095. "files": [
  13096. "src/helpers.php"
  13097. ],
  13098. "psr-4": {
  13099. "Spatie\\LaravelIgnition\\": "src"
  13100. }
  13101. },
  13102. "notification-url": "https://packagist.org/downloads/",
  13103. "license": [
  13104. "MIT"
  13105. ],
  13106. "authors": [
  13107. {
  13108. "name": "Spatie",
  13109. "email": "info@spatie.be",
  13110. "role": "Developer"
  13111. }
  13112. ],
  13113. "description": "A beautiful error page for Laravel applications.",
  13114. "homepage": "https://flareapp.io/ignition",
  13115. "keywords": [
  13116. "error",
  13117. "flare",
  13118. "laravel",
  13119. "page"
  13120. ],
  13121. "support": {
  13122. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  13123. "forum": "https://twitter.com/flareappio",
  13124. "issues": "https://github.com/spatie/laravel-ignition/issues",
  13125. "source": "https://github.com/spatie/laravel-ignition"
  13126. },
  13127. "funding": [
  13128. {
  13129. "url": "https://github.com/spatie",
  13130. "type": "github"
  13131. }
  13132. ],
  13133. "time": "2025-02-20T13:13:55+00:00"
  13134. },
  13135. {
  13136. "name": "spatie/laravel-ray",
  13137. "version": "1.40.2",
  13138. "source": {
  13139. "type": "git",
  13140. "url": "https://github.com/spatie/laravel-ray.git",
  13141. "reference": "1d1b31eb83cb38b41975c37363c7461de6d86b25"
  13142. },
  13143. "dist": {
  13144. "type": "zip",
  13145. "url": "https://api.github.com/repos/spatie/laravel-ray/zipball/1d1b31eb83cb38b41975c37363c7461de6d86b25",
  13146. "reference": "1d1b31eb83cb38b41975c37363c7461de6d86b25",
  13147. "shasum": ""
  13148. },
  13149. "require": {
  13150. "composer-runtime-api": "^2.2",
  13151. "ext-json": "*",
  13152. "illuminate/contracts": "^7.20 || ^8.19 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
  13153. "illuminate/database": "^7.20 || ^8.19 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
  13154. "illuminate/queue": "^7.20 || ^8.19 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
  13155. "illuminate/support": "^7.20 || ^8.19 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
  13156. "php": "^7.4 || ^8.0",
  13157. "spatie/backtrace": "^1.7.1",
  13158. "spatie/ray": "^1.41.3",
  13159. "symfony/stopwatch": "4.2 || ^5.1 || ^6.0 || ^7.0",
  13160. "zbateson/mail-mime-parser": "^1.3.1 || ^2.0 || ^3.0"
  13161. },
  13162. "require-dev": {
  13163. "guzzlehttp/guzzle": "^7.3",
  13164. "laravel/framework": "^7.20 || ^8.19 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
  13165. "orchestra/testbench-core": "^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0",
  13166. "pestphp/pest": "^1.22 || ^2.0 || ^3.0",
  13167. "phpstan/phpstan": "^1.10.57 || ^2.0.2",
  13168. "phpunit/phpunit": "^9.3 || ^10.1 || ^11.0.10",
  13169. "rector/rector": "^0.19.2 || ^1.0.1 || ^2.0.0",
  13170. "spatie/pest-plugin-snapshots": "^1.1 || ^2.0",
  13171. "symfony/var-dumper": "^4.2 || ^5.1 || ^6.0 || ^7.0.3"
  13172. },
  13173. "type": "library",
  13174. "extra": {
  13175. "laravel": {
  13176. "providers": [
  13177. "Spatie\\LaravelRay\\RayServiceProvider"
  13178. ]
  13179. },
  13180. "branch-alias": {
  13181. "dev-main": "1.x-dev"
  13182. }
  13183. },
  13184. "autoload": {
  13185. "psr-4": {
  13186. "Spatie\\LaravelRay\\": "src"
  13187. }
  13188. },
  13189. "notification-url": "https://packagist.org/downloads/",
  13190. "license": [
  13191. "MIT"
  13192. ],
  13193. "authors": [
  13194. {
  13195. "name": "Freek Van der Herten",
  13196. "email": "freek@spatie.be",
  13197. "homepage": "https://spatie.be",
  13198. "role": "Developer"
  13199. }
  13200. ],
  13201. "description": "Easily debug Laravel apps",
  13202. "homepage": "https://github.com/spatie/laravel-ray",
  13203. "keywords": [
  13204. "laravel-ray",
  13205. "spatie"
  13206. ],
  13207. "support": {
  13208. "issues": "https://github.com/spatie/laravel-ray/issues",
  13209. "source": "https://github.com/spatie/laravel-ray/tree/1.40.2"
  13210. },
  13211. "funding": [
  13212. {
  13213. "url": "https://github.com/sponsors/spatie",
  13214. "type": "github"
  13215. },
  13216. {
  13217. "url": "https://spatie.be/open-source/support-us",
  13218. "type": "other"
  13219. }
  13220. ],
  13221. "time": "2025-03-27T08:26:55+00:00"
  13222. },
  13223. {
  13224. "name": "spatie/macroable",
  13225. "version": "2.0.0",
  13226. "source": {
  13227. "type": "git",
  13228. "url": "https://github.com/spatie/macroable.git",
  13229. "reference": "ec2c320f932e730607aff8052c44183cf3ecb072"
  13230. },
  13231. "dist": {
  13232. "type": "zip",
  13233. "url": "https://api.github.com/repos/spatie/macroable/zipball/ec2c320f932e730607aff8052c44183cf3ecb072",
  13234. "reference": "ec2c320f932e730607aff8052c44183cf3ecb072",
  13235. "shasum": ""
  13236. },
  13237. "require": {
  13238. "php": "^8.0"
  13239. },
  13240. "require-dev": {
  13241. "phpunit/phpunit": "^8.0|^9.3"
  13242. },
  13243. "type": "library",
  13244. "autoload": {
  13245. "psr-4": {
  13246. "Spatie\\Macroable\\": "src"
  13247. }
  13248. },
  13249. "notification-url": "https://packagist.org/downloads/",
  13250. "license": [
  13251. "MIT"
  13252. ],
  13253. "authors": [
  13254. {
  13255. "name": "Freek Van der Herten",
  13256. "email": "freek@spatie.be",
  13257. "homepage": "https://spatie.be",
  13258. "role": "Developer"
  13259. }
  13260. ],
  13261. "description": "A trait to dynamically add methods to a class",
  13262. "homepage": "https://github.com/spatie/macroable",
  13263. "keywords": [
  13264. "macroable",
  13265. "spatie"
  13266. ],
  13267. "support": {
  13268. "issues": "https://github.com/spatie/macroable/issues",
  13269. "source": "https://github.com/spatie/macroable/tree/2.0.0"
  13270. },
  13271. "time": "2021-03-26T22:39:02+00:00"
  13272. },
  13273. {
  13274. "name": "spatie/ray",
  13275. "version": "1.42.0",
  13276. "source": {
  13277. "type": "git",
  13278. "url": "https://github.com/spatie/ray.git",
  13279. "reference": "152250ce7c490bf830349fa30ba5200084e95860"
  13280. },
  13281. "dist": {
  13282. "type": "zip",
  13283. "url": "https://api.github.com/repos/spatie/ray/zipball/152250ce7c490bf830349fa30ba5200084e95860",
  13284. "reference": "152250ce7c490bf830349fa30ba5200084e95860",
  13285. "shasum": ""
  13286. },
  13287. "require": {
  13288. "ext-curl": "*",
  13289. "ext-json": "*",
  13290. "php": "^7.4 || ^8.0",
  13291. "ramsey/uuid": "^3.0 || ^4.1",
  13292. "spatie/backtrace": "^1.7.1",
  13293. "spatie/macroable": "^1.0 || ^2.0",
  13294. "symfony/stopwatch": "^4.2 || ^5.1 || ^6.0 || ^7.0",
  13295. "symfony/var-dumper": "^4.2 || ^5.1 || ^6.0 || ^7.0.3"
  13296. },
  13297. "require-dev": {
  13298. "illuminate/support": "^7.20 || ^8.18 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
  13299. "nesbot/carbon": "^2.63 || ^3.8.4",
  13300. "pestphp/pest": "^1.22",
  13301. "phpstan/phpstan": "^1.10.57 || ^2.0.3",
  13302. "phpunit/phpunit": "^9.5",
  13303. "rector/rector": "^0.19.2 || ^1.0.1 || ^2.0.0",
  13304. "spatie/phpunit-snapshot-assertions": "^4.2",
  13305. "spatie/test-time": "^1.2"
  13306. },
  13307. "bin": [
  13308. "bin/remove-ray.sh"
  13309. ],
  13310. "type": "library",
  13311. "extra": {
  13312. "branch-alias": {
  13313. "dev-main": "1.x-dev"
  13314. }
  13315. },
  13316. "autoload": {
  13317. "files": [
  13318. "src/helpers.php"
  13319. ],
  13320. "psr-4": {
  13321. "Spatie\\Ray\\": "src"
  13322. }
  13323. },
  13324. "notification-url": "https://packagist.org/downloads/",
  13325. "license": [
  13326. "MIT"
  13327. ],
  13328. "authors": [
  13329. {
  13330. "name": "Freek Van der Herten",
  13331. "email": "freek@spatie.be",
  13332. "homepage": "https://spatie.be",
  13333. "role": "Developer"
  13334. }
  13335. ],
  13336. "description": "Debug with Ray to fix problems faster",
  13337. "homepage": "https://github.com/spatie/ray",
  13338. "keywords": [
  13339. "ray",
  13340. "spatie"
  13341. ],
  13342. "support": {
  13343. "issues": "https://github.com/spatie/ray/issues",
  13344. "source": "https://github.com/spatie/ray/tree/1.42.0"
  13345. },
  13346. "funding": [
  13347. {
  13348. "url": "https://github.com/sponsors/spatie",
  13349. "type": "github"
  13350. },
  13351. {
  13352. "url": "https://spatie.be/open-source/support-us",
  13353. "type": "other"
  13354. }
  13355. ],
  13356. "time": "2025-04-18T08:17:40+00:00"
  13357. },
  13358. {
  13359. "name": "staabm/side-effects-detector",
  13360. "version": "1.0.5",
  13361. "source": {
  13362. "type": "git",
  13363. "url": "https://github.com/staabm/side-effects-detector.git",
  13364. "reference": "d8334211a140ce329c13726d4a715adbddd0a163"
  13365. },
  13366. "dist": {
  13367. "type": "zip",
  13368. "url": "https://api.github.com/repos/staabm/side-effects-detector/zipball/d8334211a140ce329c13726d4a715adbddd0a163",
  13369. "reference": "d8334211a140ce329c13726d4a715adbddd0a163",
  13370. "shasum": ""
  13371. },
  13372. "require": {
  13373. "ext-tokenizer": "*",
  13374. "php": "^7.4 || ^8.0"
  13375. },
  13376. "require-dev": {
  13377. "phpstan/extension-installer": "^1.4.3",
  13378. "phpstan/phpstan": "^1.12.6",
  13379. "phpunit/phpunit": "^9.6.21",
  13380. "symfony/var-dumper": "^5.4.43",
  13381. "tomasvotruba/type-coverage": "1.0.0",
  13382. "tomasvotruba/unused-public": "1.0.0"
  13383. },
  13384. "type": "library",
  13385. "autoload": {
  13386. "classmap": [
  13387. "lib/"
  13388. ]
  13389. },
  13390. "notification-url": "https://packagist.org/downloads/",
  13391. "license": [
  13392. "MIT"
  13393. ],
  13394. "description": "A static analysis tool to detect side effects in PHP code",
  13395. "keywords": [
  13396. "static analysis"
  13397. ],
  13398. "support": {
  13399. "issues": "https://github.com/staabm/side-effects-detector/issues",
  13400. "source": "https://github.com/staabm/side-effects-detector/tree/1.0.5"
  13401. },
  13402. "funding": [
  13403. {
  13404. "url": "https://github.com/staabm",
  13405. "type": "github"
  13406. }
  13407. ],
  13408. "time": "2024-10-20T05:08:20+00:00"
  13409. },
  13410. {
  13411. "name": "symfony/polyfill-iconv",
  13412. "version": "v1.33.0",
  13413. "source": {
  13414. "type": "git",
  13415. "url": "https://github.com/symfony/polyfill-iconv.git",
  13416. "reference": "5f3b930437ae03ae5dff61269024d8ea1b3774aa"
  13417. },
  13418. "dist": {
  13419. "type": "zip",
  13420. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/5f3b930437ae03ae5dff61269024d8ea1b3774aa",
  13421. "reference": "5f3b930437ae03ae5dff61269024d8ea1b3774aa",
  13422. "shasum": ""
  13423. },
  13424. "require": {
  13425. "php": ">=7.2"
  13426. },
  13427. "provide": {
  13428. "ext-iconv": "*"
  13429. },
  13430. "suggest": {
  13431. "ext-iconv": "For best performance"
  13432. },
  13433. "type": "library",
  13434. "extra": {
  13435. "thanks": {
  13436. "url": "https://github.com/symfony/polyfill",
  13437. "name": "symfony/polyfill"
  13438. }
  13439. },
  13440. "autoload": {
  13441. "files": [
  13442. "bootstrap.php"
  13443. ],
  13444. "psr-4": {
  13445. "Symfony\\Polyfill\\Iconv\\": ""
  13446. }
  13447. },
  13448. "notification-url": "https://packagist.org/downloads/",
  13449. "license": [
  13450. "MIT"
  13451. ],
  13452. "authors": [
  13453. {
  13454. "name": "Nicolas Grekas",
  13455. "email": "p@tchwork.com"
  13456. },
  13457. {
  13458. "name": "Symfony Community",
  13459. "homepage": "https://symfony.com/contributors"
  13460. }
  13461. ],
  13462. "description": "Symfony polyfill for the Iconv extension",
  13463. "homepage": "https://symfony.com",
  13464. "keywords": [
  13465. "compatibility",
  13466. "iconv",
  13467. "polyfill",
  13468. "portable",
  13469. "shim"
  13470. ],
  13471. "support": {
  13472. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.33.0"
  13473. },
  13474. "funding": [
  13475. {
  13476. "url": "https://symfony.com/sponsor",
  13477. "type": "custom"
  13478. },
  13479. {
  13480. "url": "https://github.com/fabpot",
  13481. "type": "github"
  13482. },
  13483. {
  13484. "url": "https://github.com/nicolas-grekas",
  13485. "type": "github"
  13486. },
  13487. {
  13488. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13489. "type": "tidelift"
  13490. }
  13491. ],
  13492. "time": "2024-09-17T14:58:18+00:00"
  13493. },
  13494. {
  13495. "name": "symfony/stopwatch",
  13496. "version": "v7.3.0",
  13497. "source": {
  13498. "type": "git",
  13499. "url": "https://github.com/symfony/stopwatch.git",
  13500. "reference": "5a49289e2b308214c8b9c2fda4ea454d8b8ad7cd"
  13501. },
  13502. "dist": {
  13503. "type": "zip",
  13504. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/5a49289e2b308214c8b9c2fda4ea454d8b8ad7cd",
  13505. "reference": "5a49289e2b308214c8b9c2fda4ea454d8b8ad7cd",
  13506. "shasum": ""
  13507. },
  13508. "require": {
  13509. "php": ">=8.2",
  13510. "symfony/service-contracts": "^2.5|^3"
  13511. },
  13512. "type": "library",
  13513. "autoload": {
  13514. "psr-4": {
  13515. "Symfony\\Component\\Stopwatch\\": ""
  13516. },
  13517. "exclude-from-classmap": [
  13518. "/Tests/"
  13519. ]
  13520. },
  13521. "notification-url": "https://packagist.org/downloads/",
  13522. "license": [
  13523. "MIT"
  13524. ],
  13525. "authors": [
  13526. {
  13527. "name": "Fabien Potencier",
  13528. "email": "fabien@symfony.com"
  13529. },
  13530. {
  13531. "name": "Symfony Community",
  13532. "homepage": "https://symfony.com/contributors"
  13533. }
  13534. ],
  13535. "description": "Provides a way to profile code",
  13536. "homepage": "https://symfony.com",
  13537. "support": {
  13538. "source": "https://github.com/symfony/stopwatch/tree/v7.3.0"
  13539. },
  13540. "funding": [
  13541. {
  13542. "url": "https://symfony.com/sponsor",
  13543. "type": "custom"
  13544. },
  13545. {
  13546. "url": "https://github.com/fabpot",
  13547. "type": "github"
  13548. },
  13549. {
  13550. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13551. "type": "tidelift"
  13552. }
  13553. ],
  13554. "time": "2025-02-24T10:49:57+00:00"
  13555. },
  13556. {
  13557. "name": "symfony/yaml",
  13558. "version": "v7.3.2",
  13559. "source": {
  13560. "type": "git",
  13561. "url": "https://github.com/symfony/yaml.git",
  13562. "reference": "b8d7d868da9eb0919e99c8830431ea087d6aae30"
  13563. },
  13564. "dist": {
  13565. "type": "zip",
  13566. "url": "https://api.github.com/repos/symfony/yaml/zipball/b8d7d868da9eb0919e99c8830431ea087d6aae30",
  13567. "reference": "b8d7d868da9eb0919e99c8830431ea087d6aae30",
  13568. "shasum": ""
  13569. },
  13570. "require": {
  13571. "php": ">=8.2",
  13572. "symfony/deprecation-contracts": "^2.5|^3.0",
  13573. "symfony/polyfill-ctype": "^1.8"
  13574. },
  13575. "conflict": {
  13576. "symfony/console": "<6.4"
  13577. },
  13578. "require-dev": {
  13579. "symfony/console": "^6.4|^7.0"
  13580. },
  13581. "bin": [
  13582. "Resources/bin/yaml-lint"
  13583. ],
  13584. "type": "library",
  13585. "autoload": {
  13586. "psr-4": {
  13587. "Symfony\\Component\\Yaml\\": ""
  13588. },
  13589. "exclude-from-classmap": [
  13590. "/Tests/"
  13591. ]
  13592. },
  13593. "notification-url": "https://packagist.org/downloads/",
  13594. "license": [
  13595. "MIT"
  13596. ],
  13597. "authors": [
  13598. {
  13599. "name": "Fabien Potencier",
  13600. "email": "fabien@symfony.com"
  13601. },
  13602. {
  13603. "name": "Symfony Community",
  13604. "homepage": "https://symfony.com/contributors"
  13605. }
  13606. ],
  13607. "description": "Loads and dumps YAML files",
  13608. "homepage": "https://symfony.com",
  13609. "support": {
  13610. "source": "https://github.com/symfony/yaml/tree/v7.3.2"
  13611. },
  13612. "funding": [
  13613. {
  13614. "url": "https://symfony.com/sponsor",
  13615. "type": "custom"
  13616. },
  13617. {
  13618. "url": "https://github.com/fabpot",
  13619. "type": "github"
  13620. },
  13621. {
  13622. "url": "https://github.com/nicolas-grekas",
  13623. "type": "github"
  13624. },
  13625. {
  13626. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13627. "type": "tidelift"
  13628. }
  13629. ],
  13630. "time": "2025-07-10T08:47:49+00:00"
  13631. },
  13632. {
  13633. "name": "ta-tikoma/phpunit-architecture-test",
  13634. "version": "0.8.5",
  13635. "source": {
  13636. "type": "git",
  13637. "url": "https://github.com/ta-tikoma/phpunit-architecture-test.git",
  13638. "reference": "cf6fb197b676ba716837c886baca842e4db29005"
  13639. },
  13640. "dist": {
  13641. "type": "zip",
  13642. "url": "https://api.github.com/repos/ta-tikoma/phpunit-architecture-test/zipball/cf6fb197b676ba716837c886baca842e4db29005",
  13643. "reference": "cf6fb197b676ba716837c886baca842e4db29005",
  13644. "shasum": ""
  13645. },
  13646. "require": {
  13647. "nikic/php-parser": "^4.18.0 || ^5.0.0",
  13648. "php": "^8.1.0",
  13649. "phpdocumentor/reflection-docblock": "^5.3.0",
  13650. "phpunit/phpunit": "^10.5.5 || ^11.0.0 || ^12.0.0",
  13651. "symfony/finder": "^6.4.0 || ^7.0.0"
  13652. },
  13653. "require-dev": {
  13654. "laravel/pint": "^1.13.7",
  13655. "phpstan/phpstan": "^1.10.52"
  13656. },
  13657. "type": "library",
  13658. "autoload": {
  13659. "psr-4": {
  13660. "PHPUnit\\Architecture\\": "src/"
  13661. }
  13662. },
  13663. "notification-url": "https://packagist.org/downloads/",
  13664. "license": [
  13665. "MIT"
  13666. ],
  13667. "authors": [
  13668. {
  13669. "name": "Ni Shi",
  13670. "email": "futik0ma011@gmail.com"
  13671. },
  13672. {
  13673. "name": "Nuno Maduro",
  13674. "email": "enunomaduro@gmail.com"
  13675. }
  13676. ],
  13677. "description": "Methods for testing application architecture",
  13678. "keywords": [
  13679. "architecture",
  13680. "phpunit",
  13681. "stucture",
  13682. "test",
  13683. "testing"
  13684. ],
  13685. "support": {
  13686. "issues": "https://github.com/ta-tikoma/phpunit-architecture-test/issues",
  13687. "source": "https://github.com/ta-tikoma/phpunit-architecture-test/tree/0.8.5"
  13688. },
  13689. "time": "2025-04-20T20:23:40+00:00"
  13690. },
  13691. {
  13692. "name": "theseer/tokenizer",
  13693. "version": "1.2.3",
  13694. "source": {
  13695. "type": "git",
  13696. "url": "https://github.com/theseer/tokenizer.git",
  13697. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  13698. },
  13699. "dist": {
  13700. "type": "zip",
  13701. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  13702. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  13703. "shasum": ""
  13704. },
  13705. "require": {
  13706. "ext-dom": "*",
  13707. "ext-tokenizer": "*",
  13708. "ext-xmlwriter": "*",
  13709. "php": "^7.2 || ^8.0"
  13710. },
  13711. "type": "library",
  13712. "autoload": {
  13713. "classmap": [
  13714. "src/"
  13715. ]
  13716. },
  13717. "notification-url": "https://packagist.org/downloads/",
  13718. "license": [
  13719. "BSD-3-Clause"
  13720. ],
  13721. "authors": [
  13722. {
  13723. "name": "Arne Blankerts",
  13724. "email": "arne@blankerts.de",
  13725. "role": "Developer"
  13726. }
  13727. ],
  13728. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  13729. "support": {
  13730. "issues": "https://github.com/theseer/tokenizer/issues",
  13731. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  13732. },
  13733. "funding": [
  13734. {
  13735. "url": "https://github.com/theseer",
  13736. "type": "github"
  13737. }
  13738. ],
  13739. "time": "2024-03-03T12:36:25+00:00"
  13740. },
  13741. {
  13742. "name": "zbateson/mail-mime-parser",
  13743. "version": "3.0.3",
  13744. "source": {
  13745. "type": "git",
  13746. "url": "https://github.com/zbateson/mail-mime-parser.git",
  13747. "reference": "e0d4423fe27850c9dd301190767dbc421acc2f19"
  13748. },
  13749. "dist": {
  13750. "type": "zip",
  13751. "url": "https://api.github.com/repos/zbateson/mail-mime-parser/zipball/e0d4423fe27850c9dd301190767dbc421acc2f19",
  13752. "reference": "e0d4423fe27850c9dd301190767dbc421acc2f19",
  13753. "shasum": ""
  13754. },
  13755. "require": {
  13756. "guzzlehttp/psr7": "^2.5",
  13757. "php": ">=8.0",
  13758. "php-di/php-di": "^6.0|^7.0",
  13759. "psr/log": "^1|^2|^3",
  13760. "zbateson/mb-wrapper": "^2.0",
  13761. "zbateson/stream-decorators": "^2.1"
  13762. },
  13763. "require-dev": {
  13764. "friendsofphp/php-cs-fixer": "*",
  13765. "monolog/monolog": "^2|^3",
  13766. "phpstan/phpstan": "*",
  13767. "phpunit/phpunit": "^9.6"
  13768. },
  13769. "suggest": {
  13770. "ext-iconv": "For best support/performance",
  13771. "ext-mbstring": "For best support/performance"
  13772. },
  13773. "type": "library",
  13774. "autoload": {
  13775. "psr-4": {
  13776. "ZBateson\\MailMimeParser\\": "src/"
  13777. }
  13778. },
  13779. "notification-url": "https://packagist.org/downloads/",
  13780. "license": [
  13781. "BSD-2-Clause"
  13782. ],
  13783. "authors": [
  13784. {
  13785. "name": "Zaahid Bateson"
  13786. },
  13787. {
  13788. "name": "Contributors",
  13789. "homepage": "https://github.com/zbateson/mail-mime-parser/graphs/contributors"
  13790. }
  13791. ],
  13792. "description": "MIME email message parser",
  13793. "homepage": "https://mail-mime-parser.org",
  13794. "keywords": [
  13795. "MimeMailParser",
  13796. "email",
  13797. "mail",
  13798. "mailparse",
  13799. "mime",
  13800. "mimeparse",
  13801. "parser",
  13802. "php-imap"
  13803. ],
  13804. "support": {
  13805. "docs": "https://mail-mime-parser.org/#usage-guide",
  13806. "issues": "https://github.com/zbateson/mail-mime-parser/issues",
  13807. "source": "https://github.com/zbateson/mail-mime-parser"
  13808. },
  13809. "funding": [
  13810. {
  13811. "url": "https://github.com/zbateson",
  13812. "type": "github"
  13813. }
  13814. ],
  13815. "time": "2024-08-10T18:44:09+00:00"
  13816. },
  13817. {
  13818. "name": "zbateson/mb-wrapper",
  13819. "version": "2.0.1",
  13820. "source": {
  13821. "type": "git",
  13822. "url": "https://github.com/zbateson/mb-wrapper.git",
  13823. "reference": "50a14c0c9537f978a61cde9fdc192a0267cc9cff"
  13824. },
  13825. "dist": {
  13826. "type": "zip",
  13827. "url": "https://api.github.com/repos/zbateson/mb-wrapper/zipball/50a14c0c9537f978a61cde9fdc192a0267cc9cff",
  13828. "reference": "50a14c0c9537f978a61cde9fdc192a0267cc9cff",
  13829. "shasum": ""
  13830. },
  13831. "require": {
  13832. "php": ">=8.0",
  13833. "symfony/polyfill-iconv": "^1.9",
  13834. "symfony/polyfill-mbstring": "^1.9"
  13835. },
  13836. "require-dev": {
  13837. "friendsofphp/php-cs-fixer": "*",
  13838. "phpstan/phpstan": "*",
  13839. "phpunit/phpunit": "^9.6|^10.0"
  13840. },
  13841. "suggest": {
  13842. "ext-iconv": "For best support/performance",
  13843. "ext-mbstring": "For best support/performance"
  13844. },
  13845. "type": "library",
  13846. "autoload": {
  13847. "psr-4": {
  13848. "ZBateson\\MbWrapper\\": "src/"
  13849. }
  13850. },
  13851. "notification-url": "https://packagist.org/downloads/",
  13852. "license": [
  13853. "BSD-2-Clause"
  13854. ],
  13855. "authors": [
  13856. {
  13857. "name": "Zaahid Bateson"
  13858. }
  13859. ],
  13860. "description": "Wrapper for mbstring with fallback to iconv for encoding conversion and string manipulation",
  13861. "keywords": [
  13862. "charset",
  13863. "encoding",
  13864. "http",
  13865. "iconv",
  13866. "mail",
  13867. "mb",
  13868. "mb_convert_encoding",
  13869. "mbstring",
  13870. "mime",
  13871. "multibyte",
  13872. "string"
  13873. ],
  13874. "support": {
  13875. "issues": "https://github.com/zbateson/mb-wrapper/issues",
  13876. "source": "https://github.com/zbateson/mb-wrapper/tree/2.0.1"
  13877. },
  13878. "funding": [
  13879. {
  13880. "url": "https://github.com/zbateson",
  13881. "type": "github"
  13882. }
  13883. ],
  13884. "time": "2024-12-20T22:05:33+00:00"
  13885. },
  13886. {
  13887. "name": "zbateson/stream-decorators",
  13888. "version": "2.1.1",
  13889. "source": {
  13890. "type": "git",
  13891. "url": "https://github.com/zbateson/stream-decorators.git",
  13892. "reference": "32a2a62fb0f26313395c996ebd658d33c3f9c4e5"
  13893. },
  13894. "dist": {
  13895. "type": "zip",
  13896. "url": "https://api.github.com/repos/zbateson/stream-decorators/zipball/32a2a62fb0f26313395c996ebd658d33c3f9c4e5",
  13897. "reference": "32a2a62fb0f26313395c996ebd658d33c3f9c4e5",
  13898. "shasum": ""
  13899. },
  13900. "require": {
  13901. "guzzlehttp/psr7": "^2.5",
  13902. "php": ">=8.0",
  13903. "zbateson/mb-wrapper": "^2.0"
  13904. },
  13905. "require-dev": {
  13906. "friendsofphp/php-cs-fixer": "*",
  13907. "phpstan/phpstan": "*",
  13908. "phpunit/phpunit": "^9.6|^10.0"
  13909. },
  13910. "type": "library",
  13911. "autoload": {
  13912. "psr-4": {
  13913. "ZBateson\\StreamDecorators\\": "src/"
  13914. }
  13915. },
  13916. "notification-url": "https://packagist.org/downloads/",
  13917. "license": [
  13918. "BSD-2-Clause"
  13919. ],
  13920. "authors": [
  13921. {
  13922. "name": "Zaahid Bateson"
  13923. }
  13924. ],
  13925. "description": "PHP psr7 stream decorators for mime message part streams",
  13926. "keywords": [
  13927. "base64",
  13928. "charset",
  13929. "decorators",
  13930. "mail",
  13931. "mime",
  13932. "psr7",
  13933. "quoted-printable",
  13934. "stream",
  13935. "uuencode"
  13936. ],
  13937. "support": {
  13938. "issues": "https://github.com/zbateson/stream-decorators/issues",
  13939. "source": "https://github.com/zbateson/stream-decorators/tree/2.1.1"
  13940. },
  13941. "funding": [
  13942. {
  13943. "url": "https://github.com/zbateson",
  13944. "type": "github"
  13945. }
  13946. ],
  13947. "time": "2024-04-29T21:42:39+00:00"
  13948. }
  13949. ],
  13950. "aliases": [],
  13951. "minimum-stability": "stable",
  13952. "stability-flags": {},
  13953. "prefer-stable": true,
  13954. "prefer-lowest": false,
  13955. "platform": {
  13956. "php": "^8.2",
  13957. "ext-bcmath": "*",
  13958. "ext-intl": "*"
  13959. },
  13960. "platform-dev": {},
  13961. "plugin-api-version": "2.6.0"
  13962. }