You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179131801318113182131831318413185131861318713188131891319013191131921319313194131951319613197131981319913200132011320213203132041320513206132071320813209132101321113212132131321413215132161321713218132191322013221132221322313224132251322613227132281322913230132311323213233132341323513236132371323813239132401324113242132431324413245132461324713248132491325013251132521325313254132551325613257132581325913260132611326213263132641326513266132671326813269132701327113272132731327413275132761327713278132791328013281132821328313284132851328613287132881328913290132911329213293132941329513296132971329813299133001330113302133031330413305133061330713308133091331013311133121331313314133151331613317133181331913320133211332213323133241332513326133271332813329133301333113332133331333413335133361333713338133391334013341133421334313344133451334613347133481334913350133511335213353133541335513356133571335813359133601336113362133631336413365133661336713368133691337013371133721337313374133751337613377133781337913380133811338213383133841338513386133871338813389133901339113392133931339413395133961339713398133991340013401134021340313404134051340613407134081340913410134111341213413134141341513416134171341813419134201342113422134231342413425134261342713428134291343013431134321343313434134351343613437134381343913440134411344213443134441344513446134471344813449134501345113452134531345413455134561345713458134591346013461134621346313464134651346613467134681346913470134711347213473134741347513476134771347813479134801348113482134831348413485134861348713488134891349013491134921349313494134951349613497134981349913500135011350213503135041350513506135071350813509135101351113512135131351413515135161351713518135191352013521135221352313524135251352613527135281352913530135311353213533135341353513536135371353813539135401354113542135431354413545135461354713548135491355013551135521355313554135551355613557135581355913560135611356213563135641356513566135671356813569135701357113572135731357413575135761357713578135791358013581135821358313584135851358613587135881358913590135911359213593135941359513596135971359813599136001360113602136031360413605136061360713608136091361013611136121361313614136151361613617136181361913620136211362213623136241362513626136271362813629136301363113632136331363413635136361363713638136391364013641136421364313644136451364613647136481364913650136511365213653136541365513656136571365813659136601366113662136631366413665
  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": "370f1def076669e74e94cb2c1bf9c31f",
  8. "packages": [
  9. {
  10. "name": "akaunting/laravel-money",
  11. "version": "5.2.2",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/akaunting/laravel-money.git",
  15. "reference": "d99a9e8e576cac40668d0a5afaf7ea153590aff9"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/akaunting/laravel-money/zipball/d99a9e8e576cac40668d0a5afaf7ea153590aff9",
  20. "reference": "d99a9e8e576cac40668d0a5afaf7ea153590aff9",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "illuminate/contracts": "^9.0|^10.0|^11.0",
  25. "illuminate/support": "^9.0|^10.0|^11.0",
  26. "illuminate/validation": "^9.0|^10.0|^11.0",
  27. "illuminate/view": "^9.0|^10.0|^11.0",
  28. "php": "^8.0",
  29. "vlucas/phpdotenv": "^5.4.1"
  30. },
  31. "require-dev": {
  32. "orchestra/testbench": "^7.4|^8.0|^9.0",
  33. "phpunit/phpunit": "^9.5|^10.0|^11.0",
  34. "vimeo/psalm": "^4.23|^5.1"
  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. "issues": "https://github.com/akaunting/laravel-money/issues",
  74. "source": "https://github.com/akaunting/laravel-money/tree/5.2.2"
  75. },
  76. "time": "2024-09-25T10:06:11+00:00"
  77. },
  78. {
  79. "name": "andrewdwallo/filament-companies",
  80. "version": "v4.2.2",
  81. "source": {
  82. "type": "git",
  83. "url": "https://github.com/andrewdwallo/filament-companies.git",
  84. "reference": "52cbc988e28d1d78db9e374f3f47e91f3bfd5252"
  85. },
  86. "dist": {
  87. "type": "zip",
  88. "url": "https://api.github.com/repos/andrewdwallo/filament-companies/zipball/52cbc988e28d1d78db9e374f3f47e91f3bfd5252",
  89. "reference": "52cbc988e28d1d78db9e374f3f47e91f3bfd5252",
  90. "shasum": ""
  91. },
  92. "require": {
  93. "ext-json": "*",
  94. "filament/filament": "^3.2.29",
  95. "illuminate/console": "^11.0|^12.0",
  96. "illuminate/contracts": "^11.0|^12.0",
  97. "illuminate/support": "^11.0|^12.0",
  98. "laravel/socialite": "^5.12",
  99. "matomo/device-detector": "^6.1",
  100. "php": "^8.2"
  101. },
  102. "require-dev": {
  103. "laravel/pint": "^1.14",
  104. "laravel/sanctum": "^4.0",
  105. "livewire/livewire": "^3.4.9",
  106. "mockery/mockery": "^1.6",
  107. "orchestra/testbench": "^9.0|^10.0",
  108. "phpunit/phpunit": "^10.5|^11.5.3"
  109. },
  110. "type": "library",
  111. "extra": {
  112. "laravel": {
  113. "providers": [
  114. "Wallo\\FilamentCompanies\\FilamentCompaniesServiceProvider"
  115. ]
  116. }
  117. },
  118. "autoload": {
  119. "psr-4": {
  120. "Wallo\\FilamentCompanies\\": "src/"
  121. }
  122. },
  123. "notification-url": "https://packagist.org/downloads/",
  124. "license": [
  125. "MIT"
  126. ],
  127. "authors": [
  128. {
  129. "name": "Andrew Wallo",
  130. "email": "andrewdwallo@gmail.com",
  131. "role": "Developer"
  132. }
  133. ],
  134. "description": "A comprehensive Laravel authentication and authorization system designed for Filament, focusing on multi-tenant company management.",
  135. "homepage": "https://github.com/andrewdwallo/filament-companies",
  136. "keywords": [
  137. "Authentication",
  138. "ERP",
  139. "andrewdwallo",
  140. "business management",
  141. "company management",
  142. "crm",
  143. "filament",
  144. "filament companies",
  145. "filament-companies",
  146. "laravel",
  147. "multi-tenant",
  148. "saas",
  149. "socialite"
  150. ],
  151. "support": {
  152. "issues": "https://github.com/andrewdwallo/filament-companies/issues",
  153. "source": "https://github.com/andrewdwallo/filament-companies/tree/v4.2.2"
  154. },
  155. "time": "2025-05-08T03:02:08+00:00"
  156. },
  157. {
  158. "name": "andrewdwallo/filament-selectify",
  159. "version": "v2.0.9",
  160. "source": {
  161. "type": "git",
  162. "url": "https://github.com/andrewdwallo/filament-selectify.git",
  163. "reference": "2c01aae4f9ef9910b8746805ebd3ee6801aad57d"
  164. },
  165. "dist": {
  166. "type": "zip",
  167. "url": "https://api.github.com/repos/andrewdwallo/filament-selectify/zipball/2c01aae4f9ef9910b8746805ebd3ee6801aad57d",
  168. "reference": "2c01aae4f9ef9910b8746805ebd3ee6801aad57d",
  169. "shasum": ""
  170. },
  171. "require": {
  172. "filament/forms": "^3.0",
  173. "php": "^8.1",
  174. "spatie/laravel-package-tools": "^1.15.0"
  175. },
  176. "require-dev": {
  177. "laravel/pint": "^1.0",
  178. "nunomaduro/collision": "^7.9",
  179. "orchestra/testbench": "^8.0",
  180. "pestphp/pest": "^2.0",
  181. "pestphp/pest-plugin-arch": "^2.0",
  182. "pestphp/pest-plugin-laravel": "^2.0"
  183. },
  184. "type": "library",
  185. "extra": {
  186. "laravel": {
  187. "providers": [
  188. "Wallo\\FilamentSelectify\\FilamentSelectifyServiceProvider"
  189. ]
  190. }
  191. },
  192. "autoload": {
  193. "psr-4": {
  194. "Wallo\\FilamentSelectify\\": "src/"
  195. }
  196. },
  197. "notification-url": "https://packagist.org/downloads/",
  198. "license": [
  199. "MIT"
  200. ],
  201. "authors": [
  202. {
  203. "name": "Andrew Wallo",
  204. "email": "andrewdwallo@gmail.com",
  205. "role": "Developer"
  206. }
  207. ],
  208. "description": "This is my package filament-selectify",
  209. "homepage": "https://github.com/andrewdwallo/filament-selectify",
  210. "keywords": [
  211. "andrewdwallo",
  212. "filament-selectify",
  213. "laravel"
  214. ],
  215. "support": {
  216. "issues": "https://github.com/andrewdwallo/filament-selectify/issues",
  217. "source": "https://github.com/andrewdwallo/filament-selectify/tree/v2.0.9"
  218. },
  219. "time": "2024-09-10T00:21:38+00:00"
  220. },
  221. {
  222. "name": "andrewdwallo/transmatic",
  223. "version": "v1.2.0",
  224. "source": {
  225. "type": "git",
  226. "url": "https://github.com/andrewdwallo/transmatic.git",
  227. "reference": "b70c5a5ed58e6ed951651cb4ea00357e53c1748d"
  228. },
  229. "dist": {
  230. "type": "zip",
  231. "url": "https://api.github.com/repos/andrewdwallo/transmatic/zipball/b70c5a5ed58e6ed951651cb4ea00357e53c1748d",
  232. "reference": "b70c5a5ed58e6ed951651cb4ea00357e53c1748d",
  233. "shasum": ""
  234. },
  235. "require": {
  236. "aws/aws-sdk-php-laravel": "^3.8",
  237. "ext-intl": "*",
  238. "ext-json": "*",
  239. "illuminate/contracts": "^10.0|^11.0|^12.0",
  240. "php": "^8.1",
  241. "spatie/laravel-package-tools": "^1.14.0"
  242. },
  243. "require-dev": {
  244. "larastan/larastan": "^2.9",
  245. "laravel/pint": "^1.0",
  246. "nunomaduro/collision": "^7.8|^8.0",
  247. "orchestra/testbench": "^8.8|^9.0|^10.0",
  248. "pestphp/pest": "^2.20|^3.0",
  249. "pestphp/pest-plugin-arch": "^2.0|^3.0",
  250. "pestphp/pest-plugin-laravel": "^2.0|^3.0",
  251. "phpstan/extension-installer": "^1.1",
  252. "phpstan/phpstan-deprecation-rules": "^1.0",
  253. "phpstan/phpstan-phpunit": "^1.0",
  254. "spatie/laravel-ray": "^1.26"
  255. },
  256. "type": "library",
  257. "extra": {
  258. "laravel": {
  259. "aliases": {
  260. "Transmatic": "Wallo\\Transmatic\\Facades\\Transmatic"
  261. },
  262. "providers": [
  263. "Wallo\\Transmatic\\TransmaticServiceProvider"
  264. ]
  265. }
  266. },
  267. "autoload": {
  268. "files": [
  269. "src/helpers.php"
  270. ],
  271. "psr-4": {
  272. "Wallo\\Transmatic\\": "src/"
  273. }
  274. },
  275. "notification-url": "https://packagist.org/downloads/",
  276. "license": [
  277. "MIT"
  278. ],
  279. "authors": [
  280. {
  281. "name": "Andrew Wallo",
  282. "email": "andrewdwallo@gmail.com",
  283. "role": "Developer"
  284. }
  285. ],
  286. "description": "Automate and streamline real-time text translations in your Laravel applications",
  287. "homepage": "https://github.com/andrewdwallo/transmatic",
  288. "keywords": [
  289. "andrewdwallo",
  290. "aws",
  291. "laravel",
  292. "localization",
  293. "translation",
  294. "translations",
  295. "transmatic"
  296. ],
  297. "support": {
  298. "issues": "https://github.com/andrewdwallo/transmatic/issues",
  299. "source": "https://github.com/andrewdwallo/transmatic/tree/v1.2.0"
  300. },
  301. "time": "2025-03-02T00:21:46+00:00"
  302. },
  303. {
  304. "name": "anourvalar/eloquent-serialize",
  305. "version": "1.3.3",
  306. "source": {
  307. "type": "git",
  308. "url": "https://github.com/AnourValar/eloquent-serialize.git",
  309. "reference": "2f05023f1e465a91dc4f08483e6710325641a444"
  310. },
  311. "dist": {
  312. "type": "zip",
  313. "url": "https://api.github.com/repos/AnourValar/eloquent-serialize/zipball/2f05023f1e465a91dc4f08483e6710325641a444",
  314. "reference": "2f05023f1e465a91dc4f08483e6710325641a444",
  315. "shasum": ""
  316. },
  317. "require": {
  318. "laravel/framework": "^8.0|^9.0|^10.0|^11.0|^12.0",
  319. "php": "^7.4|^8.0"
  320. },
  321. "require-dev": {
  322. "friendsofphp/php-cs-fixer": "^3.26",
  323. "laravel/legacy-factories": "^1.1",
  324. "orchestra/testbench": "^6.0|^7.0|^8.0|^9.0|^10.0",
  325. "phpstan/phpstan": "^2.0",
  326. "phpunit/phpunit": "^9.5|^10.5|^11.0",
  327. "psalm/plugin-laravel": "^2.8|^3.0",
  328. "squizlabs/php_codesniffer": "^3.7"
  329. },
  330. "type": "library",
  331. "extra": {
  332. "laravel": {
  333. "aliases": {
  334. "EloquentSerialize": "AnourValar\\EloquentSerialize\\Facades\\EloquentSerializeFacade"
  335. }
  336. }
  337. },
  338. "autoload": {
  339. "psr-4": {
  340. "AnourValar\\EloquentSerialize\\": "src/"
  341. }
  342. },
  343. "notification-url": "https://packagist.org/downloads/",
  344. "license": [
  345. "MIT"
  346. ],
  347. "description": "Laravel Query Builder (Eloquent) serialization",
  348. "homepage": "https://github.com/AnourValar/eloquent-serialize",
  349. "keywords": [
  350. "anourvalar",
  351. "builder",
  352. "copy",
  353. "eloquent",
  354. "job",
  355. "laravel",
  356. "query",
  357. "querybuilder",
  358. "queue",
  359. "serializable",
  360. "serialization",
  361. "serialize"
  362. ],
  363. "support": {
  364. "issues": "https://github.com/AnourValar/eloquent-serialize/issues",
  365. "source": "https://github.com/AnourValar/eloquent-serialize/tree/1.3.3"
  366. },
  367. "time": "2025-05-28T17:07:28+00:00"
  368. },
  369. {
  370. "name": "awcodes/filament-table-repeater",
  371. "version": "v3.1.4",
  372. "source": {
  373. "type": "git",
  374. "url": "https://github.com/awcodes/filament-table-repeater.git",
  375. "reference": "275de32e2123a2f7e586404352ee4c794f019a09"
  376. },
  377. "dist": {
  378. "type": "zip",
  379. "url": "https://api.github.com/repos/awcodes/filament-table-repeater/zipball/275de32e2123a2f7e586404352ee4c794f019a09",
  380. "reference": "275de32e2123a2f7e586404352ee4c794f019a09",
  381. "shasum": ""
  382. },
  383. "require": {
  384. "filament/forms": "^3.2.116",
  385. "php": "^8.1",
  386. "spatie/laravel-package-tools": "^1.13.5"
  387. },
  388. "require-dev": {
  389. "laravel/pint": "^1.0",
  390. "nunomaduro/collision": "^7.0",
  391. "orchestra/testbench": "^8.0",
  392. "pestphp/pest": "^2.0",
  393. "pestphp/pest-plugin-faker": "^2.0",
  394. "pestphp/pest-plugin-laravel": "^2.0",
  395. "pestphp/pest-plugin-livewire": "^2.0",
  396. "phpunit/phpunit": "^10.0",
  397. "spatie/laravel-ray": "^1.26"
  398. },
  399. "type": "library",
  400. "extra": {
  401. "laravel": {
  402. "providers": [
  403. "Awcodes\\TableRepeater\\TableRepeaterServiceProvider"
  404. ]
  405. }
  406. },
  407. "autoload": {
  408. "psr-4": {
  409. "Awcodes\\TableRepeater\\": "src"
  410. }
  411. },
  412. "notification-url": "https://packagist.org/downloads/",
  413. "license": [
  414. "MIT"
  415. ],
  416. "authors": [
  417. {
  418. "name": "Adam Weston",
  419. "email": "awcodes1@gmail.com",
  420. "role": "Developer"
  421. }
  422. ],
  423. "description": "A modified version of the Filament Forms Repeater to display it as a table.",
  424. "homepage": "https://github.com/awcodes/filament-table-repeater",
  425. "keywords": [
  426. "awcodes",
  427. "filament",
  428. "laravel",
  429. "plugin",
  430. "table repeater"
  431. ],
  432. "support": {
  433. "issues": "https://github.com/awcodes/filament-table-repeater/issues",
  434. "source": "https://github.com/awcodes/filament-table-repeater/tree/v3.1.4"
  435. },
  436. "funding": [
  437. {
  438. "url": "https://github.com/awcodes",
  439. "type": "github"
  440. }
  441. ],
  442. "time": "2025-05-15T15:46:52+00:00"
  443. },
  444. {
  445. "name": "aws/aws-crt-php",
  446. "version": "v1.2.7",
  447. "source": {
  448. "type": "git",
  449. "url": "https://github.com/awslabs/aws-crt-php.git",
  450. "reference": "d71d9906c7bb63a28295447ba12e74723bd3730e"
  451. },
  452. "dist": {
  453. "type": "zip",
  454. "url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/d71d9906c7bb63a28295447ba12e74723bd3730e",
  455. "reference": "d71d9906c7bb63a28295447ba12e74723bd3730e",
  456. "shasum": ""
  457. },
  458. "require": {
  459. "php": ">=5.5"
  460. },
  461. "require-dev": {
  462. "phpunit/phpunit": "^4.8.35||^5.6.3||^9.5",
  463. "yoast/phpunit-polyfills": "^1.0"
  464. },
  465. "suggest": {
  466. "ext-awscrt": "Make sure you install awscrt native extension to use any of the functionality."
  467. },
  468. "type": "library",
  469. "autoload": {
  470. "classmap": [
  471. "src/"
  472. ]
  473. },
  474. "notification-url": "https://packagist.org/downloads/",
  475. "license": [
  476. "Apache-2.0"
  477. ],
  478. "authors": [
  479. {
  480. "name": "AWS SDK Common Runtime Team",
  481. "email": "aws-sdk-common-runtime@amazon.com"
  482. }
  483. ],
  484. "description": "AWS Common Runtime for PHP",
  485. "homepage": "https://github.com/awslabs/aws-crt-php",
  486. "keywords": [
  487. "amazon",
  488. "aws",
  489. "crt",
  490. "sdk"
  491. ],
  492. "support": {
  493. "issues": "https://github.com/awslabs/aws-crt-php/issues",
  494. "source": "https://github.com/awslabs/aws-crt-php/tree/v1.2.7"
  495. },
  496. "time": "2024-10-18T22:15:13+00:00"
  497. },
  498. {
  499. "name": "aws/aws-sdk-php",
  500. "version": "3.351.7",
  501. "source": {
  502. "type": "git",
  503. "url": "https://github.com/aws/aws-sdk-php.git",
  504. "reference": "9506d7fdb3cb84f8d7b175c594db9993264814be"
  505. },
  506. "dist": {
  507. "type": "zip",
  508. "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/9506d7fdb3cb84f8d7b175c594db9993264814be",
  509. "reference": "9506d7fdb3cb84f8d7b175c594db9993264814be",
  510. "shasum": ""
  511. },
  512. "require": {
  513. "aws/aws-crt-php": "^1.2.3",
  514. "ext-json": "*",
  515. "ext-pcre": "*",
  516. "ext-simplexml": "*",
  517. "guzzlehttp/guzzle": "^7.4.5",
  518. "guzzlehttp/promises": "^2.0",
  519. "guzzlehttp/psr7": "^2.4.5",
  520. "mtdowling/jmespath.php": "^2.8.0",
  521. "php": ">=8.1",
  522. "psr/http-message": "^2.0"
  523. },
  524. "require-dev": {
  525. "andrewsville/php-token-reflection": "^1.4",
  526. "aws/aws-php-sns-message-validator": "~1.0",
  527. "behat/behat": "~3.0",
  528. "composer/composer": "^2.7.8",
  529. "dms/phpunit-arraysubset-asserts": "^0.4.0",
  530. "doctrine/cache": "~1.4",
  531. "ext-dom": "*",
  532. "ext-openssl": "*",
  533. "ext-pcntl": "*",
  534. "ext-sockets": "*",
  535. "phpunit/phpunit": "^5.6.3 || ^8.5 || ^9.5",
  536. "psr/cache": "^2.0 || ^3.0",
  537. "psr/simple-cache": "^2.0 || ^3.0",
  538. "sebastian/comparator": "^1.2.3 || ^4.0 || ^5.0",
  539. "symfony/filesystem": "^v6.4.0 || ^v7.1.0",
  540. "yoast/phpunit-polyfills": "^2.0"
  541. },
  542. "suggest": {
  543. "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications",
  544. "doctrine/cache": "To use the DoctrineCacheAdapter",
  545. "ext-curl": "To send requests using cURL",
  546. "ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages",
  547. "ext-sockets": "To use client-side monitoring"
  548. },
  549. "type": "library",
  550. "extra": {
  551. "branch-alias": {
  552. "dev-master": "3.0-dev"
  553. }
  554. },
  555. "autoload": {
  556. "files": [
  557. "src/functions.php"
  558. ],
  559. "psr-4": {
  560. "Aws\\": "src/"
  561. },
  562. "exclude-from-classmap": [
  563. "src/data/"
  564. ]
  565. },
  566. "notification-url": "https://packagist.org/downloads/",
  567. "license": [
  568. "Apache-2.0"
  569. ],
  570. "authors": [
  571. {
  572. "name": "Amazon Web Services",
  573. "homepage": "http://aws.amazon.com"
  574. }
  575. ],
  576. "description": "AWS SDK for PHP - Use Amazon Web Services in your PHP project",
  577. "homepage": "http://aws.amazon.com/sdkforphp",
  578. "keywords": [
  579. "amazon",
  580. "aws",
  581. "cloud",
  582. "dynamodb",
  583. "ec2",
  584. "glacier",
  585. "s3",
  586. "sdk"
  587. ],
  588. "support": {
  589. "forum": "https://github.com/aws/aws-sdk-php/discussions",
  590. "issues": "https://github.com/aws/aws-sdk-php/issues",
  591. "source": "https://github.com/aws/aws-sdk-php/tree/3.351.7"
  592. },
  593. "time": "2025-07-25T18:06:34+00:00"
  594. },
  595. {
  596. "name": "aws/aws-sdk-php-laravel",
  597. "version": "3.10.0",
  598. "source": {
  599. "type": "git",
  600. "url": "https://github.com/aws/aws-sdk-php-laravel.git",
  601. "reference": "c1477b1efd43a61238090c0e8f1ede979573dd4b"
  602. },
  603. "dist": {
  604. "type": "zip",
  605. "url": "https://api.github.com/repos/aws/aws-sdk-php-laravel/zipball/c1477b1efd43a61238090c0e8f1ede979573dd4b",
  606. "reference": "c1477b1efd43a61238090c0e8f1ede979573dd4b",
  607. "shasum": ""
  608. },
  609. "require": {
  610. "aws/aws-sdk-php": "^3.338.0",
  611. "illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
  612. "php": ">=8.1"
  613. },
  614. "require-dev": {
  615. "phpunit/phpunit": "^8.0 || ^9.0",
  616. "vlucas/phpdotenv": "^1.0 || ^2.0 || ^3.0 || ^4.0 || ^5.0",
  617. "yoast/phpunit-polyfills": "^1.0"
  618. },
  619. "suggest": {
  620. "laravel/framework": "To test the Laravel bindings",
  621. "laravel/lumen-framework": "To test the Lumen bindings"
  622. },
  623. "type": "library",
  624. "extra": {
  625. "laravel": {
  626. "aliases": {
  627. "AWS": "Aws\\Laravel\\AwsFacade"
  628. },
  629. "providers": [
  630. "Aws\\Laravel\\AwsServiceProvider"
  631. ]
  632. }
  633. },
  634. "autoload": {
  635. "psr-4": {
  636. "Aws\\Laravel\\": "src/"
  637. }
  638. },
  639. "notification-url": "https://packagist.org/downloads/",
  640. "license": [
  641. "Apache-2.0"
  642. ],
  643. "authors": [
  644. {
  645. "name": "Amazon Web Services",
  646. "homepage": "http://aws.amazon.com"
  647. }
  648. ],
  649. "description": "A simple Laravel 6/7/8/9/10/11/12 service provider for including the AWS SDK for PHP.",
  650. "homepage": "https://aws.amazon.com/sdk-for-php/",
  651. "keywords": [
  652. "amazon",
  653. "aws",
  654. "dynamodb",
  655. "ec2",
  656. "laravel",
  657. "laravel 10",
  658. "laravel 11",
  659. "laravel 12",
  660. "laravel 6",
  661. "laravel 7",
  662. "laravel 8",
  663. "laravel 9",
  664. "s3",
  665. "sdk"
  666. ],
  667. "support": {
  668. "issues": "https://github.com/aws/aws-sdk-php-laravel/issues",
  669. "source": "https://github.com/aws/aws-sdk-php-laravel/tree/3.10.0"
  670. },
  671. "time": "2025-02-26T22:25:56+00:00"
  672. },
  673. {
  674. "name": "barryvdh/laravel-snappy",
  675. "version": "v1.0.4",
  676. "source": {
  677. "type": "git",
  678. "url": "https://github.com/barryvdh/laravel-snappy.git",
  679. "reference": "5b8668e4a54be630973fd309b4cb1abe75a8afbb"
  680. },
  681. "dist": {
  682. "type": "zip",
  683. "url": "https://api.github.com/repos/barryvdh/laravel-snappy/zipball/5b8668e4a54be630973fd309b4cb1abe75a8afbb",
  684. "reference": "5b8668e4a54be630973fd309b4cb1abe75a8afbb",
  685. "shasum": ""
  686. },
  687. "require": {
  688. "illuminate/filesystem": "^9|^10|^11|^12",
  689. "illuminate/support": "^9|^10|^11|^12",
  690. "knplabs/knp-snappy": "^1.4.4",
  691. "php": "^8.1"
  692. },
  693. "require-dev": {
  694. "orchestra/testbench": "^7|^8|^9|^10"
  695. },
  696. "type": "library",
  697. "extra": {
  698. "laravel": {
  699. "aliases": {
  700. "PDF": "Barryvdh\\Snappy\\Facades\\SnappyPdf",
  701. "SnappyImage": "Barryvdh\\Snappy\\Facades\\SnappyImage"
  702. },
  703. "providers": [
  704. "Barryvdh\\Snappy\\ServiceProvider"
  705. ]
  706. },
  707. "branch-alias": {
  708. "dev-master": "1.0-dev"
  709. }
  710. },
  711. "autoload": {
  712. "psr-4": {
  713. "Barryvdh\\Snappy\\": "src/"
  714. }
  715. },
  716. "notification-url": "https://packagist.org/downloads/",
  717. "license": [
  718. "MIT"
  719. ],
  720. "authors": [
  721. {
  722. "name": "Barry vd. Heuvel",
  723. "email": "barryvdh@gmail.com"
  724. }
  725. ],
  726. "description": "Snappy PDF/Image for Laravel",
  727. "keywords": [
  728. "image",
  729. "laravel",
  730. "pdf",
  731. "snappy",
  732. "wkhtmltoimage",
  733. "wkhtmltopdf"
  734. ],
  735. "support": {
  736. "issues": "https://github.com/barryvdh/laravel-snappy/issues",
  737. "source": "https://github.com/barryvdh/laravel-snappy/tree/v1.0.4"
  738. },
  739. "funding": [
  740. {
  741. "url": "https://fruitcake.nl",
  742. "type": "custom"
  743. },
  744. {
  745. "url": "https://github.com/barryvdh",
  746. "type": "github"
  747. }
  748. ],
  749. "time": "2025-02-24T15:20:06+00:00"
  750. },
  751. {
  752. "name": "blade-ui-kit/blade-heroicons",
  753. "version": "2.6.0",
  754. "source": {
  755. "type": "git",
  756. "url": "https://github.com/driesvints/blade-heroicons.git",
  757. "reference": "4553b2a1f6c76f0ac7f3bc0de4c0cfa06a097d19"
  758. },
  759. "dist": {
  760. "type": "zip",
  761. "url": "https://api.github.com/repos/driesvints/blade-heroicons/zipball/4553b2a1f6c76f0ac7f3bc0de4c0cfa06a097d19",
  762. "reference": "4553b2a1f6c76f0ac7f3bc0de4c0cfa06a097d19",
  763. "shasum": ""
  764. },
  765. "require": {
  766. "blade-ui-kit/blade-icons": "^1.6",
  767. "illuminate/support": "^9.0|^10.0|^11.0|^12.0",
  768. "php": "^8.0"
  769. },
  770. "require-dev": {
  771. "orchestra/testbench": "^7.0|^8.0|^9.0|^10.0",
  772. "phpunit/phpunit": "^9.0|^10.5|^11.0"
  773. },
  774. "type": "library",
  775. "extra": {
  776. "laravel": {
  777. "providers": [
  778. "BladeUI\\Heroicons\\BladeHeroiconsServiceProvider"
  779. ]
  780. }
  781. },
  782. "autoload": {
  783. "psr-4": {
  784. "BladeUI\\Heroicons\\": "src"
  785. }
  786. },
  787. "notification-url": "https://packagist.org/downloads/",
  788. "license": [
  789. "MIT"
  790. ],
  791. "authors": [
  792. {
  793. "name": "Dries Vints",
  794. "homepage": "https://driesvints.com"
  795. }
  796. ],
  797. "description": "A package to easily make use of Heroicons in your Laravel Blade views.",
  798. "homepage": "https://github.com/blade-ui-kit/blade-heroicons",
  799. "keywords": [
  800. "Heroicons",
  801. "blade",
  802. "laravel"
  803. ],
  804. "support": {
  805. "issues": "https://github.com/driesvints/blade-heroicons/issues",
  806. "source": "https://github.com/driesvints/blade-heroicons/tree/2.6.0"
  807. },
  808. "funding": [
  809. {
  810. "url": "https://github.com/sponsors/driesvints",
  811. "type": "github"
  812. },
  813. {
  814. "url": "https://www.paypal.com/paypalme/driesvints",
  815. "type": "paypal"
  816. }
  817. ],
  818. "time": "2025-02-13T20:53:33+00:00"
  819. },
  820. {
  821. "name": "blade-ui-kit/blade-icons",
  822. "version": "1.8.0",
  823. "source": {
  824. "type": "git",
  825. "url": "https://github.com/driesvints/blade-icons.git",
  826. "reference": "7b743f27476acb2ed04cb518213d78abe096e814"
  827. },
  828. "dist": {
  829. "type": "zip",
  830. "url": "https://api.github.com/repos/driesvints/blade-icons/zipball/7b743f27476acb2ed04cb518213d78abe096e814",
  831. "reference": "7b743f27476acb2ed04cb518213d78abe096e814",
  832. "shasum": ""
  833. },
  834. "require": {
  835. "illuminate/contracts": "^8.0|^9.0|^10.0|^11.0|^12.0",
  836. "illuminate/filesystem": "^8.0|^9.0|^10.0|^11.0|^12.0",
  837. "illuminate/support": "^8.0|^9.0|^10.0|^11.0|^12.0",
  838. "illuminate/view": "^8.0|^9.0|^10.0|^11.0|^12.0",
  839. "php": "^7.4|^8.0",
  840. "symfony/console": "^5.3|^6.0|^7.0",
  841. "symfony/finder": "^5.3|^6.0|^7.0"
  842. },
  843. "require-dev": {
  844. "mockery/mockery": "^1.5.1",
  845. "orchestra/testbench": "^6.0|^7.0|^8.0|^9.0|^10.0",
  846. "phpunit/phpunit": "^9.0|^10.5|^11.0"
  847. },
  848. "bin": [
  849. "bin/blade-icons-generate"
  850. ],
  851. "type": "library",
  852. "extra": {
  853. "laravel": {
  854. "providers": [
  855. "BladeUI\\Icons\\BladeIconsServiceProvider"
  856. ]
  857. }
  858. },
  859. "autoload": {
  860. "files": [
  861. "src/helpers.php"
  862. ],
  863. "psr-4": {
  864. "BladeUI\\Icons\\": "src"
  865. }
  866. },
  867. "notification-url": "https://packagist.org/downloads/",
  868. "license": [
  869. "MIT"
  870. ],
  871. "authors": [
  872. {
  873. "name": "Dries Vints",
  874. "homepage": "https://driesvints.com"
  875. }
  876. ],
  877. "description": "A package to easily make use of icons in your Laravel Blade views.",
  878. "homepage": "https://github.com/blade-ui-kit/blade-icons",
  879. "keywords": [
  880. "blade",
  881. "icons",
  882. "laravel",
  883. "svg"
  884. ],
  885. "support": {
  886. "issues": "https://github.com/blade-ui-kit/blade-icons/issues",
  887. "source": "https://github.com/blade-ui-kit/blade-icons"
  888. },
  889. "funding": [
  890. {
  891. "url": "https://github.com/sponsors/driesvints",
  892. "type": "github"
  893. },
  894. {
  895. "url": "https://www.paypal.com/paypalme/driesvints",
  896. "type": "paypal"
  897. }
  898. ],
  899. "time": "2025-02-13T20:35:06+00:00"
  900. },
  901. {
  902. "name": "brick/math",
  903. "version": "0.12.3",
  904. "source": {
  905. "type": "git",
  906. "url": "https://github.com/brick/math.git",
  907. "reference": "866551da34e9a618e64a819ee1e01c20d8a588ba"
  908. },
  909. "dist": {
  910. "type": "zip",
  911. "url": "https://api.github.com/repos/brick/math/zipball/866551da34e9a618e64a819ee1e01c20d8a588ba",
  912. "reference": "866551da34e9a618e64a819ee1e01c20d8a588ba",
  913. "shasum": ""
  914. },
  915. "require": {
  916. "php": "^8.1"
  917. },
  918. "require-dev": {
  919. "php-coveralls/php-coveralls": "^2.2",
  920. "phpunit/phpunit": "^10.1",
  921. "vimeo/psalm": "6.8.8"
  922. },
  923. "type": "library",
  924. "autoload": {
  925. "psr-4": {
  926. "Brick\\Math\\": "src/"
  927. }
  928. },
  929. "notification-url": "https://packagist.org/downloads/",
  930. "license": [
  931. "MIT"
  932. ],
  933. "description": "Arbitrary-precision arithmetic library",
  934. "keywords": [
  935. "Arbitrary-precision",
  936. "BigInteger",
  937. "BigRational",
  938. "arithmetic",
  939. "bigdecimal",
  940. "bignum",
  941. "bignumber",
  942. "brick",
  943. "decimal",
  944. "integer",
  945. "math",
  946. "mathematics",
  947. "rational"
  948. ],
  949. "support": {
  950. "issues": "https://github.com/brick/math/issues",
  951. "source": "https://github.com/brick/math/tree/0.12.3"
  952. },
  953. "funding": [
  954. {
  955. "url": "https://github.com/BenMorel",
  956. "type": "github"
  957. }
  958. ],
  959. "time": "2025-02-28T13:11:00+00:00"
  960. },
  961. {
  962. "name": "carbonphp/carbon-doctrine-types",
  963. "version": "3.2.0",
  964. "source": {
  965. "type": "git",
  966. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  967. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  968. },
  969. "dist": {
  970. "type": "zip",
  971. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  972. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  973. "shasum": ""
  974. },
  975. "require": {
  976. "php": "^8.1"
  977. },
  978. "conflict": {
  979. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  980. },
  981. "require-dev": {
  982. "doctrine/dbal": "^4.0.0",
  983. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  984. "phpunit/phpunit": "^10.3"
  985. },
  986. "type": "library",
  987. "autoload": {
  988. "psr-4": {
  989. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  990. }
  991. },
  992. "notification-url": "https://packagist.org/downloads/",
  993. "license": [
  994. "MIT"
  995. ],
  996. "authors": [
  997. {
  998. "name": "KyleKatarn",
  999. "email": "kylekatarnls@gmail.com"
  1000. }
  1001. ],
  1002. "description": "Types to use Carbon in Doctrine",
  1003. "keywords": [
  1004. "carbon",
  1005. "date",
  1006. "datetime",
  1007. "doctrine",
  1008. "time"
  1009. ],
  1010. "support": {
  1011. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  1012. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  1013. },
  1014. "funding": [
  1015. {
  1016. "url": "https://github.com/kylekatarnls",
  1017. "type": "github"
  1018. },
  1019. {
  1020. "url": "https://opencollective.com/Carbon",
  1021. "type": "open_collective"
  1022. },
  1023. {
  1024. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  1025. "type": "tidelift"
  1026. }
  1027. ],
  1028. "time": "2024-02-09T16:56:22+00:00"
  1029. },
  1030. {
  1031. "name": "codewithdennis/filament-simple-alert",
  1032. "version": "v3.0.20",
  1033. "source": {
  1034. "type": "git",
  1035. "url": "https://github.com/CodeWithDennis/filament-simple-alert.git",
  1036. "reference": "ed02e5718dfbc217be8b7d38462ca2e39b135ac8"
  1037. },
  1038. "dist": {
  1039. "type": "zip",
  1040. "url": "https://api.github.com/repos/CodeWithDennis/filament-simple-alert/zipball/ed02e5718dfbc217be8b7d38462ca2e39b135ac8",
  1041. "reference": "ed02e5718dfbc217be8b7d38462ca2e39b135ac8",
  1042. "shasum": ""
  1043. },
  1044. "require": {
  1045. "filament/filament": "^3.0",
  1046. "php": "^8.1",
  1047. "spatie/laravel-package-tools": "^1.15.0"
  1048. },
  1049. "require-dev": {
  1050. "laravel/pint": "^1.16",
  1051. "nunomaduro/collision": "^7.9",
  1052. "orchestra/testbench": "^8.0",
  1053. "pestphp/pest": "^2.1",
  1054. "pestphp/pest-plugin-arch": "^2.0",
  1055. "pestphp/pest-plugin-laravel": "^2.0"
  1056. },
  1057. "type": "library",
  1058. "extra": {
  1059. "laravel": {
  1060. "aliases": {
  1061. "SimpleAlert": "CodeWithDennis\\SimpleAlert\\Facades\\SimpleAlert"
  1062. },
  1063. "providers": [
  1064. "CodeWithDennis\\SimpleAlert\\SimpleAlertServiceProvider"
  1065. ]
  1066. }
  1067. },
  1068. "autoload": {
  1069. "psr-4": {
  1070. "CodeWithDennis\\SimpleAlert\\": "src/",
  1071. "CodeWithDennis\\SimpleAlert\\Database\\Factories\\": "database/factories/"
  1072. }
  1073. },
  1074. "notification-url": "https://packagist.org/downloads/",
  1075. "license": [
  1076. "MIT"
  1077. ],
  1078. "authors": [
  1079. {
  1080. "name": "CodeWithDennis",
  1081. "role": "Developer"
  1082. }
  1083. ],
  1084. "description": "A plugin for adding straightforward alerts to your filament pages",
  1085. "homepage": "https://github.com/codewithdennis/filament-simple-alert",
  1086. "keywords": [
  1087. "CodeWithDennis",
  1088. "filament-simple-alert",
  1089. "laravel"
  1090. ],
  1091. "support": {
  1092. "issues": "https://github.com/codewithdennis/filament-simple-alert/issues",
  1093. "source": "https://github.com/codewithdennis/filament-simple-alert"
  1094. },
  1095. "funding": [
  1096. {
  1097. "url": "https://github.com/CodeWithDennis",
  1098. "type": "github"
  1099. }
  1100. ],
  1101. "time": "2025-06-19T17:07:23+00:00"
  1102. },
  1103. {
  1104. "name": "danharrin/date-format-converter",
  1105. "version": "v0.3.1",
  1106. "source": {
  1107. "type": "git",
  1108. "url": "https://github.com/danharrin/date-format-converter.git",
  1109. "reference": "7c31171bc981e48726729a5f3a05a2d2b63f0b1e"
  1110. },
  1111. "dist": {
  1112. "type": "zip",
  1113. "url": "https://api.github.com/repos/danharrin/date-format-converter/zipball/7c31171bc981e48726729a5f3a05a2d2b63f0b1e",
  1114. "reference": "7c31171bc981e48726729a5f3a05a2d2b63f0b1e",
  1115. "shasum": ""
  1116. },
  1117. "require": {
  1118. "php": "^7.2|^8.0"
  1119. },
  1120. "type": "library",
  1121. "autoload": {
  1122. "files": [
  1123. "src/helpers.php",
  1124. "src/standards.php"
  1125. ],
  1126. "psr-4": {
  1127. "DanHarrin\\DateFormatConverter\\": "src/"
  1128. }
  1129. },
  1130. "notification-url": "https://packagist.org/downloads/",
  1131. "license": [
  1132. "MIT"
  1133. ],
  1134. "authors": [
  1135. {
  1136. "name": "Dan Harrin",
  1137. "email": "dan@danharrin.com"
  1138. }
  1139. ],
  1140. "description": "Convert token-based date formats between standards.",
  1141. "homepage": "https://github.com/danharrin/date-format-converter",
  1142. "support": {
  1143. "issues": "https://github.com/danharrin/date-format-converter/issues",
  1144. "source": "https://github.com/danharrin/date-format-converter"
  1145. },
  1146. "funding": [
  1147. {
  1148. "url": "https://github.com/danharrin",
  1149. "type": "github"
  1150. }
  1151. ],
  1152. "time": "2024-06-13T09:38:44+00:00"
  1153. },
  1154. {
  1155. "name": "danharrin/livewire-rate-limiting",
  1156. "version": "v2.1.0",
  1157. "source": {
  1158. "type": "git",
  1159. "url": "https://github.com/danharrin/livewire-rate-limiting.git",
  1160. "reference": "14dde653a9ae8f38af07a0ba4921dc046235e1a0"
  1161. },
  1162. "dist": {
  1163. "type": "zip",
  1164. "url": "https://api.github.com/repos/danharrin/livewire-rate-limiting/zipball/14dde653a9ae8f38af07a0ba4921dc046235e1a0",
  1165. "reference": "14dde653a9ae8f38af07a0ba4921dc046235e1a0",
  1166. "shasum": ""
  1167. },
  1168. "require": {
  1169. "illuminate/support": "^9.0|^10.0|^11.0|^12.0",
  1170. "php": "^8.0"
  1171. },
  1172. "require-dev": {
  1173. "livewire/livewire": "^3.0",
  1174. "livewire/volt": "^1.3",
  1175. "orchestra/testbench": "^7.0|^8.0|^9.0|^10.0",
  1176. "phpunit/phpunit": "^9.0|^10.0|^11.5.3"
  1177. },
  1178. "type": "library",
  1179. "autoload": {
  1180. "psr-4": {
  1181. "DanHarrin\\LivewireRateLimiting\\": "src"
  1182. }
  1183. },
  1184. "notification-url": "https://packagist.org/downloads/",
  1185. "license": [
  1186. "MIT"
  1187. ],
  1188. "authors": [
  1189. {
  1190. "name": "Dan Harrin",
  1191. "email": "dan@danharrin.com"
  1192. }
  1193. ],
  1194. "description": "Apply rate limiters to Laravel Livewire actions.",
  1195. "homepage": "https://github.com/danharrin/livewire-rate-limiting",
  1196. "support": {
  1197. "issues": "https://github.com/danharrin/livewire-rate-limiting/issues",
  1198. "source": "https://github.com/danharrin/livewire-rate-limiting"
  1199. },
  1200. "funding": [
  1201. {
  1202. "url": "https://github.com/danharrin",
  1203. "type": "github"
  1204. }
  1205. ],
  1206. "time": "2025-02-21T08:52:11+00:00"
  1207. },
  1208. {
  1209. "name": "dflydev/dot-access-data",
  1210. "version": "v3.0.3",
  1211. "source": {
  1212. "type": "git",
  1213. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1214. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  1215. },
  1216. "dist": {
  1217. "type": "zip",
  1218. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  1219. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  1220. "shasum": ""
  1221. },
  1222. "require": {
  1223. "php": "^7.1 || ^8.0"
  1224. },
  1225. "require-dev": {
  1226. "phpstan/phpstan": "^0.12.42",
  1227. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  1228. "scrutinizer/ocular": "1.6.0",
  1229. "squizlabs/php_codesniffer": "^3.5",
  1230. "vimeo/psalm": "^4.0.0"
  1231. },
  1232. "type": "library",
  1233. "extra": {
  1234. "branch-alias": {
  1235. "dev-main": "3.x-dev"
  1236. }
  1237. },
  1238. "autoload": {
  1239. "psr-4": {
  1240. "Dflydev\\DotAccessData\\": "src/"
  1241. }
  1242. },
  1243. "notification-url": "https://packagist.org/downloads/",
  1244. "license": [
  1245. "MIT"
  1246. ],
  1247. "authors": [
  1248. {
  1249. "name": "Dragonfly Development Inc.",
  1250. "email": "info@dflydev.com",
  1251. "homepage": "http://dflydev.com"
  1252. },
  1253. {
  1254. "name": "Beau Simensen",
  1255. "email": "beau@dflydev.com",
  1256. "homepage": "http://beausimensen.com"
  1257. },
  1258. {
  1259. "name": "Carlos Frutos",
  1260. "email": "carlos@kiwing.it",
  1261. "homepage": "https://github.com/cfrutos"
  1262. },
  1263. {
  1264. "name": "Colin O'Dell",
  1265. "email": "colinodell@gmail.com",
  1266. "homepage": "https://www.colinodell.com"
  1267. }
  1268. ],
  1269. "description": "Given a deep data structure, access data by dot notation.",
  1270. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1271. "keywords": [
  1272. "access",
  1273. "data",
  1274. "dot",
  1275. "notation"
  1276. ],
  1277. "support": {
  1278. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  1279. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  1280. },
  1281. "time": "2024-07-08T12:26:09+00:00"
  1282. },
  1283. {
  1284. "name": "doctrine/dbal",
  1285. "version": "4.3.1",
  1286. "source": {
  1287. "type": "git",
  1288. "url": "https://github.com/doctrine/dbal.git",
  1289. "reference": "ac336c95ea9e13433d56ca81c308b39db0e1a2a7"
  1290. },
  1291. "dist": {
  1292. "type": "zip",
  1293. "url": "https://api.github.com/repos/doctrine/dbal/zipball/ac336c95ea9e13433d56ca81c308b39db0e1a2a7",
  1294. "reference": "ac336c95ea9e13433d56ca81c308b39db0e1a2a7",
  1295. "shasum": ""
  1296. },
  1297. "require": {
  1298. "doctrine/deprecations": "^1.1.5",
  1299. "php": "^8.2",
  1300. "psr/cache": "^1|^2|^3",
  1301. "psr/log": "^1|^2|^3"
  1302. },
  1303. "require-dev": {
  1304. "doctrine/coding-standard": "13.0.0",
  1305. "fig/log-test": "^1",
  1306. "jetbrains/phpstorm-stubs": "2023.2",
  1307. "phpstan/phpstan": "2.1.17",
  1308. "phpstan/phpstan-phpunit": "2.0.6",
  1309. "phpstan/phpstan-strict-rules": "^2",
  1310. "phpunit/phpunit": "11.5.23",
  1311. "slevomat/coding-standard": "8.16.2",
  1312. "squizlabs/php_codesniffer": "3.13.1",
  1313. "symfony/cache": "^6.3.8|^7.0",
  1314. "symfony/console": "^5.4|^6.3|^7.0"
  1315. },
  1316. "suggest": {
  1317. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  1318. },
  1319. "type": "library",
  1320. "autoload": {
  1321. "psr-4": {
  1322. "Doctrine\\DBAL\\": "src"
  1323. }
  1324. },
  1325. "notification-url": "https://packagist.org/downloads/",
  1326. "license": [
  1327. "MIT"
  1328. ],
  1329. "authors": [
  1330. {
  1331. "name": "Guilherme Blanco",
  1332. "email": "guilhermeblanco@gmail.com"
  1333. },
  1334. {
  1335. "name": "Roman Borschel",
  1336. "email": "roman@code-factory.org"
  1337. },
  1338. {
  1339. "name": "Benjamin Eberlei",
  1340. "email": "kontakt@beberlei.de"
  1341. },
  1342. {
  1343. "name": "Jonathan Wage",
  1344. "email": "jonwage@gmail.com"
  1345. }
  1346. ],
  1347. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  1348. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  1349. "keywords": [
  1350. "abstraction",
  1351. "database",
  1352. "db2",
  1353. "dbal",
  1354. "mariadb",
  1355. "mssql",
  1356. "mysql",
  1357. "oci8",
  1358. "oracle",
  1359. "pdo",
  1360. "pgsql",
  1361. "postgresql",
  1362. "queryobject",
  1363. "sasql",
  1364. "sql",
  1365. "sqlite",
  1366. "sqlserver",
  1367. "sqlsrv"
  1368. ],
  1369. "support": {
  1370. "issues": "https://github.com/doctrine/dbal/issues",
  1371. "source": "https://github.com/doctrine/dbal/tree/4.3.1"
  1372. },
  1373. "funding": [
  1374. {
  1375. "url": "https://www.doctrine-project.org/sponsorship.html",
  1376. "type": "custom"
  1377. },
  1378. {
  1379. "url": "https://www.patreon.com/phpdoctrine",
  1380. "type": "patreon"
  1381. },
  1382. {
  1383. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  1384. "type": "tidelift"
  1385. }
  1386. ],
  1387. "time": "2025-07-22T10:09:51+00:00"
  1388. },
  1389. {
  1390. "name": "doctrine/deprecations",
  1391. "version": "1.1.5",
  1392. "source": {
  1393. "type": "git",
  1394. "url": "https://github.com/doctrine/deprecations.git",
  1395. "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38"
  1396. },
  1397. "dist": {
  1398. "type": "zip",
  1399. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38",
  1400. "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38",
  1401. "shasum": ""
  1402. },
  1403. "require": {
  1404. "php": "^7.1 || ^8.0"
  1405. },
  1406. "conflict": {
  1407. "phpunit/phpunit": "<=7.5 || >=13"
  1408. },
  1409. "require-dev": {
  1410. "doctrine/coding-standard": "^9 || ^12 || ^13",
  1411. "phpstan/phpstan": "1.4.10 || 2.1.11",
  1412. "phpstan/phpstan-phpunit": "^1.0 || ^2",
  1413. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6 || ^10.5 || ^11.5 || ^12",
  1414. "psr/log": "^1 || ^2 || ^3"
  1415. },
  1416. "suggest": {
  1417. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  1418. },
  1419. "type": "library",
  1420. "autoload": {
  1421. "psr-4": {
  1422. "Doctrine\\Deprecations\\": "src"
  1423. }
  1424. },
  1425. "notification-url": "https://packagist.org/downloads/",
  1426. "license": [
  1427. "MIT"
  1428. ],
  1429. "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.",
  1430. "homepage": "https://www.doctrine-project.org/",
  1431. "support": {
  1432. "issues": "https://github.com/doctrine/deprecations/issues",
  1433. "source": "https://github.com/doctrine/deprecations/tree/1.1.5"
  1434. },
  1435. "time": "2025-04-07T20:06:18+00:00"
  1436. },
  1437. {
  1438. "name": "doctrine/inflector",
  1439. "version": "2.0.10",
  1440. "source": {
  1441. "type": "git",
  1442. "url": "https://github.com/doctrine/inflector.git",
  1443. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  1444. },
  1445. "dist": {
  1446. "type": "zip",
  1447. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  1448. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  1449. "shasum": ""
  1450. },
  1451. "require": {
  1452. "php": "^7.2 || ^8.0"
  1453. },
  1454. "require-dev": {
  1455. "doctrine/coding-standard": "^11.0",
  1456. "phpstan/phpstan": "^1.8",
  1457. "phpstan/phpstan-phpunit": "^1.1",
  1458. "phpstan/phpstan-strict-rules": "^1.3",
  1459. "phpunit/phpunit": "^8.5 || ^9.5",
  1460. "vimeo/psalm": "^4.25 || ^5.4"
  1461. },
  1462. "type": "library",
  1463. "autoload": {
  1464. "psr-4": {
  1465. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1466. }
  1467. },
  1468. "notification-url": "https://packagist.org/downloads/",
  1469. "license": [
  1470. "MIT"
  1471. ],
  1472. "authors": [
  1473. {
  1474. "name": "Guilherme Blanco",
  1475. "email": "guilhermeblanco@gmail.com"
  1476. },
  1477. {
  1478. "name": "Roman Borschel",
  1479. "email": "roman@code-factory.org"
  1480. },
  1481. {
  1482. "name": "Benjamin Eberlei",
  1483. "email": "kontakt@beberlei.de"
  1484. },
  1485. {
  1486. "name": "Jonathan Wage",
  1487. "email": "jonwage@gmail.com"
  1488. },
  1489. {
  1490. "name": "Johannes Schmitt",
  1491. "email": "schmittjoh@gmail.com"
  1492. }
  1493. ],
  1494. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1495. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1496. "keywords": [
  1497. "inflection",
  1498. "inflector",
  1499. "lowercase",
  1500. "manipulation",
  1501. "php",
  1502. "plural",
  1503. "singular",
  1504. "strings",
  1505. "uppercase",
  1506. "words"
  1507. ],
  1508. "support": {
  1509. "issues": "https://github.com/doctrine/inflector/issues",
  1510. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  1511. },
  1512. "funding": [
  1513. {
  1514. "url": "https://www.doctrine-project.org/sponsorship.html",
  1515. "type": "custom"
  1516. },
  1517. {
  1518. "url": "https://www.patreon.com/phpdoctrine",
  1519. "type": "patreon"
  1520. },
  1521. {
  1522. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1523. "type": "tidelift"
  1524. }
  1525. ],
  1526. "time": "2024-02-18T20:23:39+00:00"
  1527. },
  1528. {
  1529. "name": "doctrine/lexer",
  1530. "version": "3.0.1",
  1531. "source": {
  1532. "type": "git",
  1533. "url": "https://github.com/doctrine/lexer.git",
  1534. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  1535. },
  1536. "dist": {
  1537. "type": "zip",
  1538. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  1539. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  1540. "shasum": ""
  1541. },
  1542. "require": {
  1543. "php": "^8.1"
  1544. },
  1545. "require-dev": {
  1546. "doctrine/coding-standard": "^12",
  1547. "phpstan/phpstan": "^1.10",
  1548. "phpunit/phpunit": "^10.5",
  1549. "psalm/plugin-phpunit": "^0.18.3",
  1550. "vimeo/psalm": "^5.21"
  1551. },
  1552. "type": "library",
  1553. "autoload": {
  1554. "psr-4": {
  1555. "Doctrine\\Common\\Lexer\\": "src"
  1556. }
  1557. },
  1558. "notification-url": "https://packagist.org/downloads/",
  1559. "license": [
  1560. "MIT"
  1561. ],
  1562. "authors": [
  1563. {
  1564. "name": "Guilherme Blanco",
  1565. "email": "guilhermeblanco@gmail.com"
  1566. },
  1567. {
  1568. "name": "Roman Borschel",
  1569. "email": "roman@code-factory.org"
  1570. },
  1571. {
  1572. "name": "Johannes Schmitt",
  1573. "email": "schmittjoh@gmail.com"
  1574. }
  1575. ],
  1576. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1577. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1578. "keywords": [
  1579. "annotations",
  1580. "docblock",
  1581. "lexer",
  1582. "parser",
  1583. "php"
  1584. ],
  1585. "support": {
  1586. "issues": "https://github.com/doctrine/lexer/issues",
  1587. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  1588. },
  1589. "funding": [
  1590. {
  1591. "url": "https://www.doctrine-project.org/sponsorship.html",
  1592. "type": "custom"
  1593. },
  1594. {
  1595. "url": "https://www.patreon.com/phpdoctrine",
  1596. "type": "patreon"
  1597. },
  1598. {
  1599. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1600. "type": "tidelift"
  1601. }
  1602. ],
  1603. "time": "2024-02-05T11:56:58+00:00"
  1604. },
  1605. {
  1606. "name": "dragonmantank/cron-expression",
  1607. "version": "v3.4.0",
  1608. "source": {
  1609. "type": "git",
  1610. "url": "https://github.com/dragonmantank/cron-expression.git",
  1611. "reference": "8c784d071debd117328803d86b2097615b457500"
  1612. },
  1613. "dist": {
  1614. "type": "zip",
  1615. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/8c784d071debd117328803d86b2097615b457500",
  1616. "reference": "8c784d071debd117328803d86b2097615b457500",
  1617. "shasum": ""
  1618. },
  1619. "require": {
  1620. "php": "^7.2|^8.0",
  1621. "webmozart/assert": "^1.0"
  1622. },
  1623. "replace": {
  1624. "mtdowling/cron-expression": "^1.0"
  1625. },
  1626. "require-dev": {
  1627. "phpstan/extension-installer": "^1.0",
  1628. "phpstan/phpstan": "^1.0",
  1629. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  1630. },
  1631. "type": "library",
  1632. "extra": {
  1633. "branch-alias": {
  1634. "dev-master": "3.x-dev"
  1635. }
  1636. },
  1637. "autoload": {
  1638. "psr-4": {
  1639. "Cron\\": "src/Cron/"
  1640. }
  1641. },
  1642. "notification-url": "https://packagist.org/downloads/",
  1643. "license": [
  1644. "MIT"
  1645. ],
  1646. "authors": [
  1647. {
  1648. "name": "Chris Tankersley",
  1649. "email": "chris@ctankersley.com",
  1650. "homepage": "https://github.com/dragonmantank"
  1651. }
  1652. ],
  1653. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1654. "keywords": [
  1655. "cron",
  1656. "schedule"
  1657. ],
  1658. "support": {
  1659. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  1660. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.4.0"
  1661. },
  1662. "funding": [
  1663. {
  1664. "url": "https://github.com/dragonmantank",
  1665. "type": "github"
  1666. }
  1667. ],
  1668. "time": "2024-10-09T13:47:03+00:00"
  1669. },
  1670. {
  1671. "name": "egulias/email-validator",
  1672. "version": "4.0.4",
  1673. "source": {
  1674. "type": "git",
  1675. "url": "https://github.com/egulias/EmailValidator.git",
  1676. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa"
  1677. },
  1678. "dist": {
  1679. "type": "zip",
  1680. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  1681. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  1682. "shasum": ""
  1683. },
  1684. "require": {
  1685. "doctrine/lexer": "^2.0 || ^3.0",
  1686. "php": ">=8.1",
  1687. "symfony/polyfill-intl-idn": "^1.26"
  1688. },
  1689. "require-dev": {
  1690. "phpunit/phpunit": "^10.2",
  1691. "vimeo/psalm": "^5.12"
  1692. },
  1693. "suggest": {
  1694. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1695. },
  1696. "type": "library",
  1697. "extra": {
  1698. "branch-alias": {
  1699. "dev-master": "4.0.x-dev"
  1700. }
  1701. },
  1702. "autoload": {
  1703. "psr-4": {
  1704. "Egulias\\EmailValidator\\": "src"
  1705. }
  1706. },
  1707. "notification-url": "https://packagist.org/downloads/",
  1708. "license": [
  1709. "MIT"
  1710. ],
  1711. "authors": [
  1712. {
  1713. "name": "Eduardo Gulias Davis"
  1714. }
  1715. ],
  1716. "description": "A library for validating emails against several RFCs",
  1717. "homepage": "https://github.com/egulias/EmailValidator",
  1718. "keywords": [
  1719. "email",
  1720. "emailvalidation",
  1721. "emailvalidator",
  1722. "validation",
  1723. "validator"
  1724. ],
  1725. "support": {
  1726. "issues": "https://github.com/egulias/EmailValidator/issues",
  1727. "source": "https://github.com/egulias/EmailValidator/tree/4.0.4"
  1728. },
  1729. "funding": [
  1730. {
  1731. "url": "https://github.com/egulias",
  1732. "type": "github"
  1733. }
  1734. ],
  1735. "time": "2025-03-06T22:45:56+00:00"
  1736. },
  1737. {
  1738. "name": "fakerphp/faker",
  1739. "version": "v1.24.1",
  1740. "source": {
  1741. "type": "git",
  1742. "url": "https://github.com/FakerPHP/Faker.git",
  1743. "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5"
  1744. },
  1745. "dist": {
  1746. "type": "zip",
  1747. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
  1748. "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
  1749. "shasum": ""
  1750. },
  1751. "require": {
  1752. "php": "^7.4 || ^8.0",
  1753. "psr/container": "^1.0 || ^2.0",
  1754. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1755. },
  1756. "conflict": {
  1757. "fzaninotto/faker": "*"
  1758. },
  1759. "require-dev": {
  1760. "bamarni/composer-bin-plugin": "^1.4.1",
  1761. "doctrine/persistence": "^1.3 || ^2.0",
  1762. "ext-intl": "*",
  1763. "phpunit/phpunit": "^9.5.26",
  1764. "symfony/phpunit-bridge": "^5.4.16"
  1765. },
  1766. "suggest": {
  1767. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  1768. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  1769. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  1770. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  1771. "ext-mbstring": "Required for multibyte Unicode string functionality."
  1772. },
  1773. "type": "library",
  1774. "autoload": {
  1775. "psr-4": {
  1776. "Faker\\": "src/Faker/"
  1777. }
  1778. },
  1779. "notification-url": "https://packagist.org/downloads/",
  1780. "license": [
  1781. "MIT"
  1782. ],
  1783. "authors": [
  1784. {
  1785. "name": "François Zaninotto"
  1786. }
  1787. ],
  1788. "description": "Faker is a PHP library that generates fake data for you.",
  1789. "keywords": [
  1790. "data",
  1791. "faker",
  1792. "fixtures"
  1793. ],
  1794. "support": {
  1795. "issues": "https://github.com/FakerPHP/Faker/issues",
  1796. "source": "https://github.com/FakerPHP/Faker/tree/v1.24.1"
  1797. },
  1798. "time": "2024-11-21T13:46:39+00:00"
  1799. },
  1800. {
  1801. "name": "filament/actions",
  1802. "version": "v3.3.33",
  1803. "source": {
  1804. "type": "git",
  1805. "url": "https://github.com/filamentphp/actions.git",
  1806. "reference": "9eaddc610d9adc00d738b8b116cea1be35a88f85"
  1807. },
  1808. "dist": {
  1809. "type": "zip",
  1810. "url": "https://api.github.com/repos/filamentphp/actions/zipball/9eaddc610d9adc00d738b8b116cea1be35a88f85",
  1811. "reference": "9eaddc610d9adc00d738b8b116cea1be35a88f85",
  1812. "shasum": ""
  1813. },
  1814. "require": {
  1815. "anourvalar/eloquent-serialize": "^1.2",
  1816. "filament/forms": "self.version",
  1817. "filament/infolists": "self.version",
  1818. "filament/notifications": "self.version",
  1819. "filament/support": "self.version",
  1820. "illuminate/contracts": "^10.45|^11.0|^12.0",
  1821. "illuminate/database": "^10.45|^11.0|^12.0",
  1822. "illuminate/support": "^10.45|^11.0|^12.0",
  1823. "league/csv": "^9.16",
  1824. "openspout/openspout": "^4.23",
  1825. "php": "^8.1",
  1826. "spatie/laravel-package-tools": "^1.9"
  1827. },
  1828. "type": "library",
  1829. "extra": {
  1830. "laravel": {
  1831. "providers": [
  1832. "Filament\\Actions\\ActionsServiceProvider"
  1833. ]
  1834. }
  1835. },
  1836. "autoload": {
  1837. "psr-4": {
  1838. "Filament\\Actions\\": "src"
  1839. }
  1840. },
  1841. "notification-url": "https://packagist.org/downloads/",
  1842. "license": [
  1843. "MIT"
  1844. ],
  1845. "description": "Easily add beautiful action modals to any Livewire component.",
  1846. "homepage": "https://github.com/filamentphp/filament",
  1847. "support": {
  1848. "issues": "https://github.com/filamentphp/filament/issues",
  1849. "source": "https://github.com/filamentphp/filament"
  1850. },
  1851. "time": "2025-07-16T08:51:11+00:00"
  1852. },
  1853. {
  1854. "name": "filament/filament",
  1855. "version": "v3.3.33",
  1856. "source": {
  1857. "type": "git",
  1858. "url": "https://github.com/filamentphp/panels.git",
  1859. "reference": "8e6618036c9235d968740d43bb8afb58fe705e5b"
  1860. },
  1861. "dist": {
  1862. "type": "zip",
  1863. "url": "https://api.github.com/repos/filamentphp/panels/zipball/8e6618036c9235d968740d43bb8afb58fe705e5b",
  1864. "reference": "8e6618036c9235d968740d43bb8afb58fe705e5b",
  1865. "shasum": ""
  1866. },
  1867. "require": {
  1868. "danharrin/livewire-rate-limiting": "^0.3|^1.0|^2.0",
  1869. "filament/actions": "self.version",
  1870. "filament/forms": "self.version",
  1871. "filament/infolists": "self.version",
  1872. "filament/notifications": "self.version",
  1873. "filament/support": "self.version",
  1874. "filament/tables": "self.version",
  1875. "filament/widgets": "self.version",
  1876. "illuminate/auth": "^10.45|^11.0|^12.0",
  1877. "illuminate/console": "^10.45|^11.0|^12.0",
  1878. "illuminate/contracts": "^10.45|^11.0|^12.0",
  1879. "illuminate/cookie": "^10.45|^11.0|^12.0",
  1880. "illuminate/database": "^10.45|^11.0|^12.0",
  1881. "illuminate/http": "^10.45|^11.0|^12.0",
  1882. "illuminate/routing": "^10.45|^11.0|^12.0",
  1883. "illuminate/session": "^10.45|^11.0|^12.0",
  1884. "illuminate/support": "^10.45|^11.0|^12.0",
  1885. "illuminate/view": "^10.45|^11.0|^12.0",
  1886. "php": "^8.1",
  1887. "spatie/laravel-package-tools": "^1.9"
  1888. },
  1889. "type": "library",
  1890. "extra": {
  1891. "laravel": {
  1892. "providers": [
  1893. "Filament\\FilamentServiceProvider"
  1894. ]
  1895. }
  1896. },
  1897. "autoload": {
  1898. "files": [
  1899. "src/global_helpers.php",
  1900. "src/helpers.php"
  1901. ],
  1902. "psr-4": {
  1903. "Filament\\": "src"
  1904. }
  1905. },
  1906. "notification-url": "https://packagist.org/downloads/",
  1907. "license": [
  1908. "MIT"
  1909. ],
  1910. "description": "A collection of full-stack components for accelerated Laravel app development.",
  1911. "homepage": "https://github.com/filamentphp/filament",
  1912. "support": {
  1913. "issues": "https://github.com/filamentphp/filament/issues",
  1914. "source": "https://github.com/filamentphp/filament"
  1915. },
  1916. "time": "2025-07-21T10:08:08+00:00"
  1917. },
  1918. {
  1919. "name": "filament/forms",
  1920. "version": "v3.3.33",
  1921. "source": {
  1922. "type": "git",
  1923. "url": "https://github.com/filamentphp/forms.git",
  1924. "reference": "72ec2ede65d8e9fa979a066bce78812458793dde"
  1925. },
  1926. "dist": {
  1927. "type": "zip",
  1928. "url": "https://api.github.com/repos/filamentphp/forms/zipball/72ec2ede65d8e9fa979a066bce78812458793dde",
  1929. "reference": "72ec2ede65d8e9fa979a066bce78812458793dde",
  1930. "shasum": ""
  1931. },
  1932. "require": {
  1933. "danharrin/date-format-converter": "^0.3",
  1934. "filament/actions": "self.version",
  1935. "filament/support": "self.version",
  1936. "illuminate/console": "^10.45|^11.0|^12.0",
  1937. "illuminate/contracts": "^10.45|^11.0|^12.0",
  1938. "illuminate/database": "^10.45|^11.0|^12.0",
  1939. "illuminate/filesystem": "^10.45|^11.0|^12.0",
  1940. "illuminate/support": "^10.45|^11.0|^12.0",
  1941. "illuminate/validation": "^10.45|^11.0|^12.0",
  1942. "illuminate/view": "^10.45|^11.0|^12.0",
  1943. "php": "^8.1",
  1944. "spatie/laravel-package-tools": "^1.9"
  1945. },
  1946. "type": "library",
  1947. "extra": {
  1948. "laravel": {
  1949. "providers": [
  1950. "Filament\\Forms\\FormsServiceProvider"
  1951. ]
  1952. }
  1953. },
  1954. "autoload": {
  1955. "files": [
  1956. "src/helpers.php"
  1957. ],
  1958. "psr-4": {
  1959. "Filament\\Forms\\": "src"
  1960. }
  1961. },
  1962. "notification-url": "https://packagist.org/downloads/",
  1963. "license": [
  1964. "MIT"
  1965. ],
  1966. "description": "Easily add beautiful forms to any Livewire component.",
  1967. "homepage": "https://github.com/filamentphp/filament",
  1968. "support": {
  1969. "issues": "https://github.com/filamentphp/filament/issues",
  1970. "source": "https://github.com/filamentphp/filament"
  1971. },
  1972. "time": "2025-07-21T10:07:59+00:00"
  1973. },
  1974. {
  1975. "name": "filament/infolists",
  1976. "version": "v3.3.33",
  1977. "source": {
  1978. "type": "git",
  1979. "url": "https://github.com/filamentphp/infolists.git",
  1980. "reference": "89a3f1f236863e2035be3d7b0c68987508dd06fa"
  1981. },
  1982. "dist": {
  1983. "type": "zip",
  1984. "url": "https://api.github.com/repos/filamentphp/infolists/zipball/89a3f1f236863e2035be3d7b0c68987508dd06fa",
  1985. "reference": "89a3f1f236863e2035be3d7b0c68987508dd06fa",
  1986. "shasum": ""
  1987. },
  1988. "require": {
  1989. "filament/actions": "self.version",
  1990. "filament/support": "self.version",
  1991. "illuminate/console": "^10.45|^11.0|^12.0",
  1992. "illuminate/contracts": "^10.45|^11.0|^12.0",
  1993. "illuminate/database": "^10.45|^11.0|^12.0",
  1994. "illuminate/filesystem": "^10.45|^11.0|^12.0",
  1995. "illuminate/support": "^10.45|^11.0|^12.0",
  1996. "illuminate/view": "^10.45|^11.0|^12.0",
  1997. "php": "^8.1",
  1998. "spatie/laravel-package-tools": "^1.9"
  1999. },
  2000. "type": "library",
  2001. "extra": {
  2002. "laravel": {
  2003. "providers": [
  2004. "Filament\\Infolists\\InfolistsServiceProvider"
  2005. ]
  2006. }
  2007. },
  2008. "autoload": {
  2009. "psr-4": {
  2010. "Filament\\Infolists\\": "src"
  2011. }
  2012. },
  2013. "notification-url": "https://packagist.org/downloads/",
  2014. "license": [
  2015. "MIT"
  2016. ],
  2017. "description": "Easily add beautiful read-only infolists to any Livewire component.",
  2018. "homepage": "https://github.com/filamentphp/filament",
  2019. "support": {
  2020. "issues": "https://github.com/filamentphp/filament/issues",
  2021. "source": "https://github.com/filamentphp/filament"
  2022. },
  2023. "time": "2025-06-23T10:46:53+00:00"
  2024. },
  2025. {
  2026. "name": "filament/notifications",
  2027. "version": "v3.3.33",
  2028. "source": {
  2029. "type": "git",
  2030. "url": "https://github.com/filamentphp/notifications.git",
  2031. "reference": "adc118c7fc34a423f3c01d6936ad0316f489949c"
  2032. },
  2033. "dist": {
  2034. "type": "zip",
  2035. "url": "https://api.github.com/repos/filamentphp/notifications/zipball/adc118c7fc34a423f3c01d6936ad0316f489949c",
  2036. "reference": "adc118c7fc34a423f3c01d6936ad0316f489949c",
  2037. "shasum": ""
  2038. },
  2039. "require": {
  2040. "filament/actions": "self.version",
  2041. "filament/support": "self.version",
  2042. "illuminate/contracts": "^10.45|^11.0|^12.0",
  2043. "illuminate/filesystem": "^10.45|^11.0|^12.0",
  2044. "illuminate/notifications": "^10.45|^11.0|^12.0",
  2045. "illuminate/support": "^10.45|^11.0|^12.0",
  2046. "php": "^8.1",
  2047. "spatie/laravel-package-tools": "^1.9"
  2048. },
  2049. "type": "library",
  2050. "extra": {
  2051. "laravel": {
  2052. "providers": [
  2053. "Filament\\Notifications\\NotificationsServiceProvider"
  2054. ]
  2055. }
  2056. },
  2057. "autoload": {
  2058. "files": [
  2059. "src/Testing/Autoload.php"
  2060. ],
  2061. "psr-4": {
  2062. "Filament\\Notifications\\": "src"
  2063. }
  2064. },
  2065. "notification-url": "https://packagist.org/downloads/",
  2066. "license": [
  2067. "MIT"
  2068. ],
  2069. "description": "Easily add beautiful notifications to any Livewire app.",
  2070. "homepage": "https://github.com/filamentphp/filament",
  2071. "support": {
  2072. "issues": "https://github.com/filamentphp/filament/issues",
  2073. "source": "https://github.com/filamentphp/filament"
  2074. },
  2075. "time": "2025-07-08T20:42:18+00:00"
  2076. },
  2077. {
  2078. "name": "filament/support",
  2079. "version": "v3.3.33",
  2080. "source": {
  2081. "type": "git",
  2082. "url": "https://github.com/filamentphp/support.git",
  2083. "reference": "0bf4856840e160624ba79f43aaaa3ec396140f1d"
  2084. },
  2085. "dist": {
  2086. "type": "zip",
  2087. "url": "https://api.github.com/repos/filamentphp/support/zipball/0bf4856840e160624ba79f43aaaa3ec396140f1d",
  2088. "reference": "0bf4856840e160624ba79f43aaaa3ec396140f1d",
  2089. "shasum": ""
  2090. },
  2091. "require": {
  2092. "blade-ui-kit/blade-heroicons": "^2.5",
  2093. "doctrine/dbal": "^3.2|^4.0",
  2094. "ext-intl": "*",
  2095. "illuminate/contracts": "^10.45|^11.0|^12.0",
  2096. "illuminate/support": "^10.45|^11.0|^12.0",
  2097. "illuminate/view": "^10.45|^11.0|^12.0",
  2098. "kirschbaum-development/eloquent-power-joins": "^3.0|^4.0",
  2099. "livewire/livewire": "^3.5",
  2100. "php": "^8.1",
  2101. "ryangjchandler/blade-capture-directive": "^0.2|^0.3|^1.0",
  2102. "spatie/color": "^1.5",
  2103. "spatie/invade": "^1.0|^2.0",
  2104. "spatie/laravel-package-tools": "^1.9",
  2105. "symfony/console": "^6.0|^7.0",
  2106. "symfony/html-sanitizer": "^6.1|^7.0"
  2107. },
  2108. "type": "library",
  2109. "extra": {
  2110. "laravel": {
  2111. "providers": [
  2112. "Filament\\Support\\SupportServiceProvider"
  2113. ]
  2114. }
  2115. },
  2116. "autoload": {
  2117. "files": [
  2118. "src/helpers.php"
  2119. ],
  2120. "psr-4": {
  2121. "Filament\\Support\\": "src"
  2122. }
  2123. },
  2124. "notification-url": "https://packagist.org/downloads/",
  2125. "license": [
  2126. "MIT"
  2127. ],
  2128. "description": "Core helper methods and foundation code for all Filament packages.",
  2129. "homepage": "https://github.com/filamentphp/filament",
  2130. "support": {
  2131. "issues": "https://github.com/filamentphp/filament/issues",
  2132. "source": "https://github.com/filamentphp/filament"
  2133. },
  2134. "time": "2025-07-16T08:51:22+00:00"
  2135. },
  2136. {
  2137. "name": "filament/tables",
  2138. "version": "v3.3.33",
  2139. "source": {
  2140. "type": "git",
  2141. "url": "https://github.com/filamentphp/tables.git",
  2142. "reference": "3f0d827c960f1ee4a67ab71c416ad67e24747dc4"
  2143. },
  2144. "dist": {
  2145. "type": "zip",
  2146. "url": "https://api.github.com/repos/filamentphp/tables/zipball/3f0d827c960f1ee4a67ab71c416ad67e24747dc4",
  2147. "reference": "3f0d827c960f1ee4a67ab71c416ad67e24747dc4",
  2148. "shasum": ""
  2149. },
  2150. "require": {
  2151. "filament/actions": "self.version",
  2152. "filament/forms": "self.version",
  2153. "filament/support": "self.version",
  2154. "illuminate/console": "^10.45|^11.0|^12.0",
  2155. "illuminate/contracts": "^10.45|^11.0|^12.0",
  2156. "illuminate/database": "^10.45|^11.0|^12.0",
  2157. "illuminate/filesystem": "^10.45|^11.0|^12.0",
  2158. "illuminate/support": "^10.45|^11.0|^12.0",
  2159. "illuminate/view": "^10.45|^11.0|^12.0",
  2160. "php": "^8.1",
  2161. "spatie/laravel-package-tools": "^1.9"
  2162. },
  2163. "type": "library",
  2164. "extra": {
  2165. "laravel": {
  2166. "providers": [
  2167. "Filament\\Tables\\TablesServiceProvider"
  2168. ]
  2169. }
  2170. },
  2171. "autoload": {
  2172. "psr-4": {
  2173. "Filament\\Tables\\": "src"
  2174. }
  2175. },
  2176. "notification-url": "https://packagist.org/downloads/",
  2177. "license": [
  2178. "MIT"
  2179. ],
  2180. "description": "Easily add beautiful tables to any Livewire component.",
  2181. "homepage": "https://github.com/filamentphp/filament",
  2182. "support": {
  2183. "issues": "https://github.com/filamentphp/filament/issues",
  2184. "source": "https://github.com/filamentphp/filament"
  2185. },
  2186. "time": "2025-07-08T20:42:18+00:00"
  2187. },
  2188. {
  2189. "name": "filament/widgets",
  2190. "version": "v3.3.33",
  2191. "source": {
  2192. "type": "git",
  2193. "url": "https://github.com/filamentphp/widgets.git",
  2194. "reference": "5b956f884aaef479f6091463cb829e7c9f2afc2c"
  2195. },
  2196. "dist": {
  2197. "type": "zip",
  2198. "url": "https://api.github.com/repos/filamentphp/widgets/zipball/5b956f884aaef479f6091463cb829e7c9f2afc2c",
  2199. "reference": "5b956f884aaef479f6091463cb829e7c9f2afc2c",
  2200. "shasum": ""
  2201. },
  2202. "require": {
  2203. "filament/support": "self.version",
  2204. "php": "^8.1",
  2205. "spatie/laravel-package-tools": "^1.9"
  2206. },
  2207. "type": "library",
  2208. "extra": {
  2209. "laravel": {
  2210. "providers": [
  2211. "Filament\\Widgets\\WidgetsServiceProvider"
  2212. ]
  2213. }
  2214. },
  2215. "autoload": {
  2216. "psr-4": {
  2217. "Filament\\Widgets\\": "src"
  2218. }
  2219. },
  2220. "notification-url": "https://packagist.org/downloads/",
  2221. "license": [
  2222. "MIT"
  2223. ],
  2224. "description": "Easily add beautiful dashboard widgets to any Livewire component.",
  2225. "homepage": "https://github.com/filamentphp/filament",
  2226. "support": {
  2227. "issues": "https://github.com/filamentphp/filament/issues",
  2228. "source": "https://github.com/filamentphp/filament"
  2229. },
  2230. "time": "2025-06-12T15:11:14+00:00"
  2231. },
  2232. {
  2233. "name": "firebase/php-jwt",
  2234. "version": "v6.11.1",
  2235. "source": {
  2236. "type": "git",
  2237. "url": "https://github.com/firebase/php-jwt.git",
  2238. "reference": "d1e91ecf8c598d073d0995afa8cd5c75c6e19e66"
  2239. },
  2240. "dist": {
  2241. "type": "zip",
  2242. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/d1e91ecf8c598d073d0995afa8cd5c75c6e19e66",
  2243. "reference": "d1e91ecf8c598d073d0995afa8cd5c75c6e19e66",
  2244. "shasum": ""
  2245. },
  2246. "require": {
  2247. "php": "^8.0"
  2248. },
  2249. "require-dev": {
  2250. "guzzlehttp/guzzle": "^7.4",
  2251. "phpspec/prophecy-phpunit": "^2.0",
  2252. "phpunit/phpunit": "^9.5",
  2253. "psr/cache": "^2.0||^3.0",
  2254. "psr/http-client": "^1.0",
  2255. "psr/http-factory": "^1.0"
  2256. },
  2257. "suggest": {
  2258. "ext-sodium": "Support EdDSA (Ed25519) signatures",
  2259. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  2260. },
  2261. "type": "library",
  2262. "autoload": {
  2263. "psr-4": {
  2264. "Firebase\\JWT\\": "src"
  2265. }
  2266. },
  2267. "notification-url": "https://packagist.org/downloads/",
  2268. "license": [
  2269. "BSD-3-Clause"
  2270. ],
  2271. "authors": [
  2272. {
  2273. "name": "Neuman Vong",
  2274. "email": "neuman+pear@twilio.com",
  2275. "role": "Developer"
  2276. },
  2277. {
  2278. "name": "Anant Narayanan",
  2279. "email": "anant@php.net",
  2280. "role": "Developer"
  2281. }
  2282. ],
  2283. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  2284. "homepage": "https://github.com/firebase/php-jwt",
  2285. "keywords": [
  2286. "jwt",
  2287. "php"
  2288. ],
  2289. "support": {
  2290. "issues": "https://github.com/firebase/php-jwt/issues",
  2291. "source": "https://github.com/firebase/php-jwt/tree/v6.11.1"
  2292. },
  2293. "time": "2025-04-09T20:32:01+00:00"
  2294. },
  2295. {
  2296. "name": "fruitcake/php-cors",
  2297. "version": "v1.3.0",
  2298. "source": {
  2299. "type": "git",
  2300. "url": "https://github.com/fruitcake/php-cors.git",
  2301. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b"
  2302. },
  2303. "dist": {
  2304. "type": "zip",
  2305. "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/3d158f36e7875e2f040f37bc0573956240a5a38b",
  2306. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b",
  2307. "shasum": ""
  2308. },
  2309. "require": {
  2310. "php": "^7.4|^8.0",
  2311. "symfony/http-foundation": "^4.4|^5.4|^6|^7"
  2312. },
  2313. "require-dev": {
  2314. "phpstan/phpstan": "^1.4",
  2315. "phpunit/phpunit": "^9",
  2316. "squizlabs/php_codesniffer": "^3.5"
  2317. },
  2318. "type": "library",
  2319. "extra": {
  2320. "branch-alias": {
  2321. "dev-master": "1.2-dev"
  2322. }
  2323. },
  2324. "autoload": {
  2325. "psr-4": {
  2326. "Fruitcake\\Cors\\": "src/"
  2327. }
  2328. },
  2329. "notification-url": "https://packagist.org/downloads/",
  2330. "license": [
  2331. "MIT"
  2332. ],
  2333. "authors": [
  2334. {
  2335. "name": "Fruitcake",
  2336. "homepage": "https://fruitcake.nl"
  2337. },
  2338. {
  2339. "name": "Barryvdh",
  2340. "email": "barryvdh@gmail.com"
  2341. }
  2342. ],
  2343. "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
  2344. "homepage": "https://github.com/fruitcake/php-cors",
  2345. "keywords": [
  2346. "cors",
  2347. "laravel",
  2348. "symfony"
  2349. ],
  2350. "support": {
  2351. "issues": "https://github.com/fruitcake/php-cors/issues",
  2352. "source": "https://github.com/fruitcake/php-cors/tree/v1.3.0"
  2353. },
  2354. "funding": [
  2355. {
  2356. "url": "https://fruitcake.nl",
  2357. "type": "custom"
  2358. },
  2359. {
  2360. "url": "https://github.com/barryvdh",
  2361. "type": "github"
  2362. }
  2363. ],
  2364. "time": "2023-10-12T05:21:21+00:00"
  2365. },
  2366. {
  2367. "name": "graham-campbell/result-type",
  2368. "version": "v1.1.3",
  2369. "source": {
  2370. "type": "git",
  2371. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  2372. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945"
  2373. },
  2374. "dist": {
  2375. "type": "zip",
  2376. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945",
  2377. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945",
  2378. "shasum": ""
  2379. },
  2380. "require": {
  2381. "php": "^7.2.5 || ^8.0",
  2382. "phpoption/phpoption": "^1.9.3"
  2383. },
  2384. "require-dev": {
  2385. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  2386. },
  2387. "type": "library",
  2388. "autoload": {
  2389. "psr-4": {
  2390. "GrahamCampbell\\ResultType\\": "src/"
  2391. }
  2392. },
  2393. "notification-url": "https://packagist.org/downloads/",
  2394. "license": [
  2395. "MIT"
  2396. ],
  2397. "authors": [
  2398. {
  2399. "name": "Graham Campbell",
  2400. "email": "hello@gjcampbell.co.uk",
  2401. "homepage": "https://github.com/GrahamCampbell"
  2402. }
  2403. ],
  2404. "description": "An Implementation Of The Result Type",
  2405. "keywords": [
  2406. "Graham Campbell",
  2407. "GrahamCampbell",
  2408. "Result Type",
  2409. "Result-Type",
  2410. "result"
  2411. ],
  2412. "support": {
  2413. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  2414. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3"
  2415. },
  2416. "funding": [
  2417. {
  2418. "url": "https://github.com/GrahamCampbell",
  2419. "type": "github"
  2420. },
  2421. {
  2422. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  2423. "type": "tidelift"
  2424. }
  2425. ],
  2426. "time": "2024-07-20T21:45:45+00:00"
  2427. },
  2428. {
  2429. "name": "guava/filament-clusters",
  2430. "version": "1.5.0",
  2431. "source": {
  2432. "type": "git",
  2433. "url": "https://github.com/GuavaCZ/filament-clusters.git",
  2434. "reference": "fda54d83b2141813e79578fdd6ac56e8b3ea6884"
  2435. },
  2436. "dist": {
  2437. "type": "zip",
  2438. "url": "https://api.github.com/repos/GuavaCZ/filament-clusters/zipball/fda54d83b2141813e79578fdd6ac56e8b3ea6884",
  2439. "reference": "fda54d83b2141813e79578fdd6ac56e8b3ea6884",
  2440. "shasum": ""
  2441. },
  2442. "require": {
  2443. "filament/filament": "^3.0",
  2444. "illuminate/contracts": "^10.0 | ^11.0 | ^12.0",
  2445. "php": "^8.1",
  2446. "spatie/laravel-package-tools": "^1.14.0"
  2447. },
  2448. "require-dev": {
  2449. "laravel/pint": "^1.0",
  2450. "nunomaduro/collision": "^7.8",
  2451. "nunomaduro/larastan": "^2.0.1",
  2452. "orchestra/testbench": "^8.8 | ^10.0",
  2453. "pestphp/pest": "^2.0 | ^3.7",
  2454. "pestphp/pest-plugin-arch": "^2.0 | ^3.0",
  2455. "pestphp/pest-plugin-laravel": "^2.0 | ^3.1",
  2456. "phpstan/extension-installer": "^1.1",
  2457. "phpstan/phpstan-deprecation-rules": "^1.0 | ^2.0",
  2458. "phpstan/phpstan-phpunit": "^1.0 | ^2.0"
  2459. },
  2460. "type": "library",
  2461. "extra": {
  2462. "laravel": {
  2463. "providers": [
  2464. "Guava\\FilamentClusters\\FilamentClustersServiceProvider"
  2465. ]
  2466. }
  2467. },
  2468. "autoload": {
  2469. "psr-4": {
  2470. "Guava\\FilamentClusters\\": "src/"
  2471. }
  2472. },
  2473. "notification-url": "https://packagist.org/downloads/",
  2474. "license": [
  2475. "MIT"
  2476. ],
  2477. "authors": [
  2478. {
  2479. "name": "Lukas Frey",
  2480. "email": "lukas.frey@guava.cz",
  2481. "role": "Developer"
  2482. }
  2483. ],
  2484. "description": "Filament clusters allow you to cluster multiple fields into one visually.",
  2485. "homepage": "https://github.com/GuavaCZ/filament-clusters",
  2486. "keywords": [
  2487. "Guava",
  2488. "filament-clusters",
  2489. "laravel"
  2490. ],
  2491. "support": {
  2492. "issues": "https://github.com/GuavaCZ/filament-clusters/issues",
  2493. "source": "https://github.com/GuavaCZ/filament-clusters/tree/1.5.0"
  2494. },
  2495. "funding": [
  2496. {
  2497. "url": "https://github.com/GuavaCZ",
  2498. "type": "github"
  2499. }
  2500. ],
  2501. "time": "2025-02-25T13:48:00+00:00"
  2502. },
  2503. {
  2504. "name": "guzzlehttp/guzzle",
  2505. "version": "7.9.3",
  2506. "source": {
  2507. "type": "git",
  2508. "url": "https://github.com/guzzle/guzzle.git",
  2509. "reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77"
  2510. },
  2511. "dist": {
  2512. "type": "zip",
  2513. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/7b2f29fe81dc4da0ca0ea7d42107a0845946ea77",
  2514. "reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77",
  2515. "shasum": ""
  2516. },
  2517. "require": {
  2518. "ext-json": "*",
  2519. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  2520. "guzzlehttp/psr7": "^2.7.0",
  2521. "php": "^7.2.5 || ^8.0",
  2522. "psr/http-client": "^1.0",
  2523. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  2524. },
  2525. "provide": {
  2526. "psr/http-client-implementation": "1.0"
  2527. },
  2528. "require-dev": {
  2529. "bamarni/composer-bin-plugin": "^1.8.2",
  2530. "ext-curl": "*",
  2531. "guzzle/client-integration-tests": "3.0.2",
  2532. "php-http/message-factory": "^1.1",
  2533. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  2534. "psr/log": "^1.1 || ^2.0 || ^3.0"
  2535. },
  2536. "suggest": {
  2537. "ext-curl": "Required for CURL handler support",
  2538. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  2539. "psr/log": "Required for using the Log middleware"
  2540. },
  2541. "type": "library",
  2542. "extra": {
  2543. "bamarni-bin": {
  2544. "bin-links": true,
  2545. "forward-command": false
  2546. }
  2547. },
  2548. "autoload": {
  2549. "files": [
  2550. "src/functions_include.php"
  2551. ],
  2552. "psr-4": {
  2553. "GuzzleHttp\\": "src/"
  2554. }
  2555. },
  2556. "notification-url": "https://packagist.org/downloads/",
  2557. "license": [
  2558. "MIT"
  2559. ],
  2560. "authors": [
  2561. {
  2562. "name": "Graham Campbell",
  2563. "email": "hello@gjcampbell.co.uk",
  2564. "homepage": "https://github.com/GrahamCampbell"
  2565. },
  2566. {
  2567. "name": "Michael Dowling",
  2568. "email": "mtdowling@gmail.com",
  2569. "homepage": "https://github.com/mtdowling"
  2570. },
  2571. {
  2572. "name": "Jeremy Lindblom",
  2573. "email": "jeremeamia@gmail.com",
  2574. "homepage": "https://github.com/jeremeamia"
  2575. },
  2576. {
  2577. "name": "George Mponos",
  2578. "email": "gmponos@gmail.com",
  2579. "homepage": "https://github.com/gmponos"
  2580. },
  2581. {
  2582. "name": "Tobias Nyholm",
  2583. "email": "tobias.nyholm@gmail.com",
  2584. "homepage": "https://github.com/Nyholm"
  2585. },
  2586. {
  2587. "name": "Márk Sági-Kazár",
  2588. "email": "mark.sagikazar@gmail.com",
  2589. "homepage": "https://github.com/sagikazarmark"
  2590. },
  2591. {
  2592. "name": "Tobias Schultze",
  2593. "email": "webmaster@tubo-world.de",
  2594. "homepage": "https://github.com/Tobion"
  2595. }
  2596. ],
  2597. "description": "Guzzle is a PHP HTTP client library",
  2598. "keywords": [
  2599. "client",
  2600. "curl",
  2601. "framework",
  2602. "http",
  2603. "http client",
  2604. "psr-18",
  2605. "psr-7",
  2606. "rest",
  2607. "web service"
  2608. ],
  2609. "support": {
  2610. "issues": "https://github.com/guzzle/guzzle/issues",
  2611. "source": "https://github.com/guzzle/guzzle/tree/7.9.3"
  2612. },
  2613. "funding": [
  2614. {
  2615. "url": "https://github.com/GrahamCampbell",
  2616. "type": "github"
  2617. },
  2618. {
  2619. "url": "https://github.com/Nyholm",
  2620. "type": "github"
  2621. },
  2622. {
  2623. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  2624. "type": "tidelift"
  2625. }
  2626. ],
  2627. "time": "2025-03-27T13:37:11+00:00"
  2628. },
  2629. {
  2630. "name": "guzzlehttp/promises",
  2631. "version": "2.2.0",
  2632. "source": {
  2633. "type": "git",
  2634. "url": "https://github.com/guzzle/promises.git",
  2635. "reference": "7c69f28996b0a6920945dd20b3857e499d9ca96c"
  2636. },
  2637. "dist": {
  2638. "type": "zip",
  2639. "url": "https://api.github.com/repos/guzzle/promises/zipball/7c69f28996b0a6920945dd20b3857e499d9ca96c",
  2640. "reference": "7c69f28996b0a6920945dd20b3857e499d9ca96c",
  2641. "shasum": ""
  2642. },
  2643. "require": {
  2644. "php": "^7.2.5 || ^8.0"
  2645. },
  2646. "require-dev": {
  2647. "bamarni/composer-bin-plugin": "^1.8.2",
  2648. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  2649. },
  2650. "type": "library",
  2651. "extra": {
  2652. "bamarni-bin": {
  2653. "bin-links": true,
  2654. "forward-command": false
  2655. }
  2656. },
  2657. "autoload": {
  2658. "psr-4": {
  2659. "GuzzleHttp\\Promise\\": "src/"
  2660. }
  2661. },
  2662. "notification-url": "https://packagist.org/downloads/",
  2663. "license": [
  2664. "MIT"
  2665. ],
  2666. "authors": [
  2667. {
  2668. "name": "Graham Campbell",
  2669. "email": "hello@gjcampbell.co.uk",
  2670. "homepage": "https://github.com/GrahamCampbell"
  2671. },
  2672. {
  2673. "name": "Michael Dowling",
  2674. "email": "mtdowling@gmail.com",
  2675. "homepage": "https://github.com/mtdowling"
  2676. },
  2677. {
  2678. "name": "Tobias Nyholm",
  2679. "email": "tobias.nyholm@gmail.com",
  2680. "homepage": "https://github.com/Nyholm"
  2681. },
  2682. {
  2683. "name": "Tobias Schultze",
  2684. "email": "webmaster@tubo-world.de",
  2685. "homepage": "https://github.com/Tobion"
  2686. }
  2687. ],
  2688. "description": "Guzzle promises library",
  2689. "keywords": [
  2690. "promise"
  2691. ],
  2692. "support": {
  2693. "issues": "https://github.com/guzzle/promises/issues",
  2694. "source": "https://github.com/guzzle/promises/tree/2.2.0"
  2695. },
  2696. "funding": [
  2697. {
  2698. "url": "https://github.com/GrahamCampbell",
  2699. "type": "github"
  2700. },
  2701. {
  2702. "url": "https://github.com/Nyholm",
  2703. "type": "github"
  2704. },
  2705. {
  2706. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  2707. "type": "tidelift"
  2708. }
  2709. ],
  2710. "time": "2025-03-27T13:27:01+00:00"
  2711. },
  2712. {
  2713. "name": "guzzlehttp/psr7",
  2714. "version": "2.7.1",
  2715. "source": {
  2716. "type": "git",
  2717. "url": "https://github.com/guzzle/psr7.git",
  2718. "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16"
  2719. },
  2720. "dist": {
  2721. "type": "zip",
  2722. "url": "https://api.github.com/repos/guzzle/psr7/zipball/c2270caaabe631b3b44c85f99e5a04bbb8060d16",
  2723. "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16",
  2724. "shasum": ""
  2725. },
  2726. "require": {
  2727. "php": "^7.2.5 || ^8.0",
  2728. "psr/http-factory": "^1.0",
  2729. "psr/http-message": "^1.1 || ^2.0",
  2730. "ralouphie/getallheaders": "^3.0"
  2731. },
  2732. "provide": {
  2733. "psr/http-factory-implementation": "1.0",
  2734. "psr/http-message-implementation": "1.0"
  2735. },
  2736. "require-dev": {
  2737. "bamarni/composer-bin-plugin": "^1.8.2",
  2738. "http-interop/http-factory-tests": "0.9.0",
  2739. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  2740. },
  2741. "suggest": {
  2742. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  2743. },
  2744. "type": "library",
  2745. "extra": {
  2746. "bamarni-bin": {
  2747. "bin-links": true,
  2748. "forward-command": false
  2749. }
  2750. },
  2751. "autoload": {
  2752. "psr-4": {
  2753. "GuzzleHttp\\Psr7\\": "src/"
  2754. }
  2755. },
  2756. "notification-url": "https://packagist.org/downloads/",
  2757. "license": [
  2758. "MIT"
  2759. ],
  2760. "authors": [
  2761. {
  2762. "name": "Graham Campbell",
  2763. "email": "hello@gjcampbell.co.uk",
  2764. "homepage": "https://github.com/GrahamCampbell"
  2765. },
  2766. {
  2767. "name": "Michael Dowling",
  2768. "email": "mtdowling@gmail.com",
  2769. "homepage": "https://github.com/mtdowling"
  2770. },
  2771. {
  2772. "name": "George Mponos",
  2773. "email": "gmponos@gmail.com",
  2774. "homepage": "https://github.com/gmponos"
  2775. },
  2776. {
  2777. "name": "Tobias Nyholm",
  2778. "email": "tobias.nyholm@gmail.com",
  2779. "homepage": "https://github.com/Nyholm"
  2780. },
  2781. {
  2782. "name": "Márk Sági-Kazár",
  2783. "email": "mark.sagikazar@gmail.com",
  2784. "homepage": "https://github.com/sagikazarmark"
  2785. },
  2786. {
  2787. "name": "Tobias Schultze",
  2788. "email": "webmaster@tubo-world.de",
  2789. "homepage": "https://github.com/Tobion"
  2790. },
  2791. {
  2792. "name": "Márk Sági-Kazár",
  2793. "email": "mark.sagikazar@gmail.com",
  2794. "homepage": "https://sagikazarmark.hu"
  2795. }
  2796. ],
  2797. "description": "PSR-7 message implementation that also provides common utility methods",
  2798. "keywords": [
  2799. "http",
  2800. "message",
  2801. "psr-7",
  2802. "request",
  2803. "response",
  2804. "stream",
  2805. "uri",
  2806. "url"
  2807. ],
  2808. "support": {
  2809. "issues": "https://github.com/guzzle/psr7/issues",
  2810. "source": "https://github.com/guzzle/psr7/tree/2.7.1"
  2811. },
  2812. "funding": [
  2813. {
  2814. "url": "https://github.com/GrahamCampbell",
  2815. "type": "github"
  2816. },
  2817. {
  2818. "url": "https://github.com/Nyholm",
  2819. "type": "github"
  2820. },
  2821. {
  2822. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  2823. "type": "tidelift"
  2824. }
  2825. ],
  2826. "time": "2025-03-27T12:30:47+00:00"
  2827. },
  2828. {
  2829. "name": "guzzlehttp/uri-template",
  2830. "version": "v1.0.4",
  2831. "source": {
  2832. "type": "git",
  2833. "url": "https://github.com/guzzle/uri-template.git",
  2834. "reference": "30e286560c137526eccd4ce21b2de477ab0676d2"
  2835. },
  2836. "dist": {
  2837. "type": "zip",
  2838. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/30e286560c137526eccd4ce21b2de477ab0676d2",
  2839. "reference": "30e286560c137526eccd4ce21b2de477ab0676d2",
  2840. "shasum": ""
  2841. },
  2842. "require": {
  2843. "php": "^7.2.5 || ^8.0",
  2844. "symfony/polyfill-php80": "^1.24"
  2845. },
  2846. "require-dev": {
  2847. "bamarni/composer-bin-plugin": "^1.8.2",
  2848. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  2849. "uri-template/tests": "1.0.0"
  2850. },
  2851. "type": "library",
  2852. "extra": {
  2853. "bamarni-bin": {
  2854. "bin-links": true,
  2855. "forward-command": false
  2856. }
  2857. },
  2858. "autoload": {
  2859. "psr-4": {
  2860. "GuzzleHttp\\UriTemplate\\": "src"
  2861. }
  2862. },
  2863. "notification-url": "https://packagist.org/downloads/",
  2864. "license": [
  2865. "MIT"
  2866. ],
  2867. "authors": [
  2868. {
  2869. "name": "Graham Campbell",
  2870. "email": "hello@gjcampbell.co.uk",
  2871. "homepage": "https://github.com/GrahamCampbell"
  2872. },
  2873. {
  2874. "name": "Michael Dowling",
  2875. "email": "mtdowling@gmail.com",
  2876. "homepage": "https://github.com/mtdowling"
  2877. },
  2878. {
  2879. "name": "George Mponos",
  2880. "email": "gmponos@gmail.com",
  2881. "homepage": "https://github.com/gmponos"
  2882. },
  2883. {
  2884. "name": "Tobias Nyholm",
  2885. "email": "tobias.nyholm@gmail.com",
  2886. "homepage": "https://github.com/Nyholm"
  2887. }
  2888. ],
  2889. "description": "A polyfill class for uri_template of PHP",
  2890. "keywords": [
  2891. "guzzlehttp",
  2892. "uri-template"
  2893. ],
  2894. "support": {
  2895. "issues": "https://github.com/guzzle/uri-template/issues",
  2896. "source": "https://github.com/guzzle/uri-template/tree/v1.0.4"
  2897. },
  2898. "funding": [
  2899. {
  2900. "url": "https://github.com/GrahamCampbell",
  2901. "type": "github"
  2902. },
  2903. {
  2904. "url": "https://github.com/Nyholm",
  2905. "type": "github"
  2906. },
  2907. {
  2908. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  2909. "type": "tidelift"
  2910. }
  2911. ],
  2912. "time": "2025-02-03T10:55:03+00:00"
  2913. },
  2914. {
  2915. "name": "jaocero/radio-deck",
  2916. "version": "v1.2.10",
  2917. "source": {
  2918. "type": "git",
  2919. "url": "https://github.com/199ocero/radio-deck.git",
  2920. "reference": "7e876322049ab611fe0dc4ec0803f60a2353ddf8"
  2921. },
  2922. "dist": {
  2923. "type": "zip",
  2924. "url": "https://api.github.com/repos/199ocero/radio-deck/zipball/7e876322049ab611fe0dc4ec0803f60a2353ddf8",
  2925. "reference": "7e876322049ab611fe0dc4ec0803f60a2353ddf8",
  2926. "shasum": ""
  2927. },
  2928. "require": {
  2929. "filament/forms": "^3.0",
  2930. "illuminate/contracts": "^10.0|^11.0|^12.0",
  2931. "php": "^8.1",
  2932. "spatie/laravel-package-tools": "^1.15.0"
  2933. },
  2934. "require-dev": {
  2935. "nunomaduro/collision": "^7.9",
  2936. "orchestra/testbench": "^8.0|^9.0",
  2937. "pestphp/pest": "^2.0",
  2938. "pestphp/pest-plugin-arch": "^2.0",
  2939. "pestphp/pest-plugin-laravel": "^2.0"
  2940. },
  2941. "type": "library",
  2942. "extra": {
  2943. "laravel": {
  2944. "providers": [
  2945. "JaOcero\\RadioDeck\\RadioDeckServiceProvider"
  2946. ]
  2947. }
  2948. },
  2949. "autoload": {
  2950. "psr-4": {
  2951. "JaOcero\\RadioDeck\\": "src/",
  2952. "JaOcero\\RadioDeck\\Database\\Factories\\": "database/factories/"
  2953. }
  2954. },
  2955. "notification-url": "https://packagist.org/downloads/",
  2956. "license": [
  2957. "MIT"
  2958. ],
  2959. "authors": [
  2960. {
  2961. "name": "Jay-Are Ocero",
  2962. "email": "199ocero@gmail.com",
  2963. "role": "Developer"
  2964. }
  2965. ],
  2966. "description": "Turn filament default radio button into a selectable card with icons, title and description.",
  2967. "homepage": "https://github.com/jaocero/radio-deck",
  2968. "keywords": [
  2969. "filament-form",
  2970. "filament-plugin",
  2971. "filamentphp",
  2972. "jaocero",
  2973. "laravel",
  2974. "radio-deck"
  2975. ],
  2976. "support": {
  2977. "issues": "https://github.com/jaocero/radio-deck/issues",
  2978. "source": "https://github.com/jaocero/radio-deck"
  2979. },
  2980. "funding": [
  2981. {
  2982. "url": "https://github.com/jaocero",
  2983. "type": "github"
  2984. }
  2985. ],
  2986. "time": "2025-02-27T00:00:03+00:00"
  2987. },
  2988. {
  2989. "name": "kirschbaum-development/eloquent-power-joins",
  2990. "version": "4.2.6",
  2991. "source": {
  2992. "type": "git",
  2993. "url": "https://github.com/kirschbaum-development/eloquent-power-joins.git",
  2994. "reference": "72cff1e838bb3f826dc09a5566219ad7fa56237f"
  2995. },
  2996. "dist": {
  2997. "type": "zip",
  2998. "url": "https://api.github.com/repos/kirschbaum-development/eloquent-power-joins/zipball/72cff1e838bb3f826dc09a5566219ad7fa56237f",
  2999. "reference": "72cff1e838bb3f826dc09a5566219ad7fa56237f",
  3000. "shasum": ""
  3001. },
  3002. "require": {
  3003. "illuminate/database": "^11.42|^12.0",
  3004. "illuminate/support": "^11.42|^12.0",
  3005. "php": "^8.2"
  3006. },
  3007. "require-dev": {
  3008. "friendsofphp/php-cs-fixer": "dev-master",
  3009. "laravel/legacy-factories": "^1.0@dev",
  3010. "orchestra/testbench": "^9.0|^10.0",
  3011. "phpunit/phpunit": "^10.0|^11.0"
  3012. },
  3013. "type": "library",
  3014. "extra": {
  3015. "laravel": {
  3016. "providers": [
  3017. "Kirschbaum\\PowerJoins\\PowerJoinsServiceProvider"
  3018. ]
  3019. }
  3020. },
  3021. "autoload": {
  3022. "psr-4": {
  3023. "Kirschbaum\\PowerJoins\\": "src"
  3024. }
  3025. },
  3026. "notification-url": "https://packagist.org/downloads/",
  3027. "license": [
  3028. "MIT"
  3029. ],
  3030. "authors": [
  3031. {
  3032. "name": "Luis Dalmolin",
  3033. "email": "luis.nh@gmail.com",
  3034. "role": "Developer"
  3035. }
  3036. ],
  3037. "description": "The Laravel magic applied to joins.",
  3038. "homepage": "https://github.com/kirschbaum-development/eloquent-power-joins",
  3039. "keywords": [
  3040. "eloquent",
  3041. "join",
  3042. "laravel",
  3043. "mysql"
  3044. ],
  3045. "support": {
  3046. "issues": "https://github.com/kirschbaum-development/eloquent-power-joins/issues",
  3047. "source": "https://github.com/kirschbaum-development/eloquent-power-joins/tree/4.2.6"
  3048. },
  3049. "time": "2025-07-10T16:55:34+00:00"
  3050. },
  3051. {
  3052. "name": "knplabs/knp-snappy",
  3053. "version": "v1.5.1",
  3054. "source": {
  3055. "type": "git",
  3056. "url": "https://github.com/KnpLabs/snappy.git",
  3057. "reference": "3dd138e9e47de91cd2e056c5e6e1a0dd72547ee7"
  3058. },
  3059. "dist": {
  3060. "type": "zip",
  3061. "url": "https://api.github.com/repos/KnpLabs/snappy/zipball/3dd138e9e47de91cd2e056c5e6e1a0dd72547ee7",
  3062. "reference": "3dd138e9e47de91cd2e056c5e6e1a0dd72547ee7",
  3063. "shasum": ""
  3064. },
  3065. "require": {
  3066. "php": ">=8.1",
  3067. "psr/log": "^2.0||^3.0",
  3068. "symfony/process": "^5.0||^6.0||^7.0"
  3069. },
  3070. "require-dev": {
  3071. "friendsofphp/php-cs-fixer": "^3.0",
  3072. "pedrotroller/php-cs-custom-fixer": "^2.19",
  3073. "phpstan/phpstan": "^1.0.0",
  3074. "phpstan/phpstan-phpunit": "^1.0.0",
  3075. "phpunit/phpunit": "^8.5"
  3076. },
  3077. "type": "library",
  3078. "extra": {
  3079. "branch-alias": {
  3080. "dev-master": "1.x-dev"
  3081. }
  3082. },
  3083. "autoload": {
  3084. "psr-4": {
  3085. "Knp\\Snappy\\": "src/Knp/Snappy"
  3086. }
  3087. },
  3088. "notification-url": "https://packagist.org/downloads/",
  3089. "license": [
  3090. "MIT"
  3091. ],
  3092. "authors": [
  3093. {
  3094. "name": "KNP Labs Team",
  3095. "homepage": "http://knplabs.com"
  3096. },
  3097. {
  3098. "name": "Symfony Community",
  3099. "homepage": "http://github.com/KnpLabs/snappy/contributors"
  3100. }
  3101. ],
  3102. "description": "PHP library allowing thumbnail, snapshot or PDF generation from a url or a html page. Wrapper for wkhtmltopdf/wkhtmltoimage.",
  3103. "homepage": "http://github.com/KnpLabs/snappy",
  3104. "keywords": [
  3105. "knp",
  3106. "knplabs",
  3107. "pdf",
  3108. "snapshot",
  3109. "thumbnail",
  3110. "wkhtmltopdf"
  3111. ],
  3112. "support": {
  3113. "issues": "https://github.com/KnpLabs/snappy/issues",
  3114. "source": "https://github.com/KnpLabs/snappy/tree/v1.5.1"
  3115. },
  3116. "time": "2025-01-06T16:53:26+00:00"
  3117. },
  3118. {
  3119. "name": "laravel/framework",
  3120. "version": "v11.45.1",
  3121. "source": {
  3122. "type": "git",
  3123. "url": "https://github.com/laravel/framework.git",
  3124. "reference": "b09ba32795b8e71df10856a2694706663984a239"
  3125. },
  3126. "dist": {
  3127. "type": "zip",
  3128. "url": "https://api.github.com/repos/laravel/framework/zipball/b09ba32795b8e71df10856a2694706663984a239",
  3129. "reference": "b09ba32795b8e71df10856a2694706663984a239",
  3130. "shasum": ""
  3131. },
  3132. "require": {
  3133. "brick/math": "^0.9.3|^0.10.2|^0.11|^0.12",
  3134. "composer-runtime-api": "^2.2",
  3135. "doctrine/inflector": "^2.0.5",
  3136. "dragonmantank/cron-expression": "^3.4",
  3137. "egulias/email-validator": "^3.2.1|^4.0",
  3138. "ext-ctype": "*",
  3139. "ext-filter": "*",
  3140. "ext-hash": "*",
  3141. "ext-mbstring": "*",
  3142. "ext-openssl": "*",
  3143. "ext-session": "*",
  3144. "ext-tokenizer": "*",
  3145. "fruitcake/php-cors": "^1.3",
  3146. "guzzlehttp/guzzle": "^7.8.2",
  3147. "guzzlehttp/uri-template": "^1.0",
  3148. "laravel/prompts": "^0.1.18|^0.2.0|^0.3.0",
  3149. "laravel/serializable-closure": "^1.3|^2.0",
  3150. "league/commonmark": "^2.7",
  3151. "league/flysystem": "^3.25.1",
  3152. "league/flysystem-local": "^3.25.1",
  3153. "league/uri": "^7.5.1",
  3154. "monolog/monolog": "^3.0",
  3155. "nesbot/carbon": "^2.72.6|^3.8.4",
  3156. "nunomaduro/termwind": "^2.0",
  3157. "php": "^8.2",
  3158. "psr/container": "^1.1.1|^2.0.1",
  3159. "psr/log": "^1.0|^2.0|^3.0",
  3160. "psr/simple-cache": "^1.0|^2.0|^3.0",
  3161. "ramsey/uuid": "^4.7",
  3162. "symfony/console": "^7.0.3",
  3163. "symfony/error-handler": "^7.0.3",
  3164. "symfony/finder": "^7.0.3",
  3165. "symfony/http-foundation": "^7.2.0",
  3166. "symfony/http-kernel": "^7.0.3",
  3167. "symfony/mailer": "^7.0.3",
  3168. "symfony/mime": "^7.0.3",
  3169. "symfony/polyfill-php83": "^1.31",
  3170. "symfony/process": "^7.0.3",
  3171. "symfony/routing": "^7.0.3",
  3172. "symfony/uid": "^7.0.3",
  3173. "symfony/var-dumper": "^7.0.3",
  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": "^9.13.2",
  3238. "pda/pheanstalk": "^5.0.6",
  3239. "php-http/discovery": "^1.15",
  3240. "phpstan/phpstan": "^2.0",
  3241. "phpunit/phpunit": "^10.5.35|^11.3.6|^12.0.1",
  3242. "predis/predis": "^2.3",
  3243. "resend/resend-php": "^0.10.0",
  3244. "symfony/cache": "^7.0.3",
  3245. "symfony/http-client": "^7.0.3",
  3246. "symfony/psr-http-message-bridge": "^7.0.3",
  3247. "symfony/translation": "^7.0.3"
  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.3.6|^12.0.1).",
  3274. "predis/predis": "Required to use the predis connector (^2.3).",
  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.0).",
  3279. "symfony/filesystem": "Required to enable support for relative symbolic links (^7.0).",
  3280. "symfony/http-client": "Required to enable support for the Symfony API mail transports (^7.0).",
  3281. "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^7.0).",
  3282. "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^7.0).",
  3283. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^7.0)."
  3284. },
  3285. "type": "library",
  3286. "extra": {
  3287. "branch-alias": {
  3288. "dev-master": "11.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-06-03T14:01:40+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.6",
  4519. "source": {
  4520. "type": "git",
  4521. "url": "https://github.com/matomo-org/device-detector.git",
  4522. "reference": "6f07f615199851548db47a900815d2ea2cdcde08"
  4523. },
  4524. "dist": {
  4525. "type": "zip",
  4526. "url": "https://api.github.com/repos/matomo-org/device-detector/zipball/6f07f615199851548db47a900815d2ea2cdcde08",
  4527. "reference": "6f07f615199851548db47a900815d2ea2cdcde08",
  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-06-10T10:00:59+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.1",
  4812. "source": {
  4813. "type": "git",
  4814. "url": "https://github.com/CarbonPHP/carbon.git",
  4815. "reference": "1fd1935b2d90aef2f093c5e35f7ae1257c448d00"
  4816. },
  4817. "dist": {
  4818. "type": "zip",
  4819. "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/1fd1935b2d90aef2f093c5e35f7ae1257c448d00",
  4820. "reference": "1fd1935b2d90aef2f093c5e35f7ae1257c448d00",
  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-06-21T15:19:35+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.7",
  4979. "source": {
  4980. "type": "git",
  4981. "url": "https://github.com/nette/utils.git",
  4982. "reference": "e67c4061eb40b9c113b218214e42cb5a0dda28f2"
  4983. },
  4984. "dist": {
  4985. "type": "zip",
  4986. "url": "https://api.github.com/repos/nette/utils/zipball/e67c4061eb40b9c113b218214e42cb5a0dda28f2",
  4987. "reference": "e67c4061eb40b9c113b218214e42cb5a0dda28f2",
  4988. "shasum": ""
  4989. },
  4990. "require": {
  4991. "php": "8.0 - 8.4"
  4992. },
  4993. "conflict": {
  4994. "nette/finder": "<3",
  4995. "nette/schema": "<1.2.2"
  4996. },
  4997. "require-dev": {
  4998. "jetbrains/phpstorm-attributes": "dev-master",
  4999. "nette/tester": "^2.5",
  5000. "phpstan/phpstan": "^1.0",
  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. "classmap": [
  5019. "src/"
  5020. ]
  5021. },
  5022. "notification-url": "https://packagist.org/downloads/",
  5023. "license": [
  5024. "BSD-3-Clause",
  5025. "GPL-2.0-only",
  5026. "GPL-3.0-only"
  5027. ],
  5028. "authors": [
  5029. {
  5030. "name": "David Grudl",
  5031. "homepage": "https://davidgrudl.com"
  5032. },
  5033. {
  5034. "name": "Nette Community",
  5035. "homepage": "https://nette.org/contributors"
  5036. }
  5037. ],
  5038. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  5039. "homepage": "https://nette.org",
  5040. "keywords": [
  5041. "array",
  5042. "core",
  5043. "datetime",
  5044. "images",
  5045. "json",
  5046. "nette",
  5047. "paginator",
  5048. "password",
  5049. "slugify",
  5050. "string",
  5051. "unicode",
  5052. "utf-8",
  5053. "utility",
  5054. "validation"
  5055. ],
  5056. "support": {
  5057. "issues": "https://github.com/nette/utils/issues",
  5058. "source": "https://github.com/nette/utils/tree/v4.0.7"
  5059. },
  5060. "time": "2025-06-03T04:55:08+00:00"
  5061. },
  5062. {
  5063. "name": "nikic/php-parser",
  5064. "version": "v5.5.0",
  5065. "source": {
  5066. "type": "git",
  5067. "url": "https://github.com/nikic/PHP-Parser.git",
  5068. "reference": "ae59794362fe85e051a58ad36b289443f57be7a9"
  5069. },
  5070. "dist": {
  5071. "type": "zip",
  5072. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/ae59794362fe85e051a58ad36b289443f57be7a9",
  5073. "reference": "ae59794362fe85e051a58ad36b289443f57be7a9",
  5074. "shasum": ""
  5075. },
  5076. "require": {
  5077. "ext-ctype": "*",
  5078. "ext-json": "*",
  5079. "ext-tokenizer": "*",
  5080. "php": ">=7.4"
  5081. },
  5082. "require-dev": {
  5083. "ircmaxell/php-yacc": "^0.0.7",
  5084. "phpunit/phpunit": "^9.0"
  5085. },
  5086. "bin": [
  5087. "bin/php-parse"
  5088. ],
  5089. "type": "library",
  5090. "extra": {
  5091. "branch-alias": {
  5092. "dev-master": "5.0-dev"
  5093. }
  5094. },
  5095. "autoload": {
  5096. "psr-4": {
  5097. "PhpParser\\": "lib/PhpParser"
  5098. }
  5099. },
  5100. "notification-url": "https://packagist.org/downloads/",
  5101. "license": [
  5102. "BSD-3-Clause"
  5103. ],
  5104. "authors": [
  5105. {
  5106. "name": "Nikita Popov"
  5107. }
  5108. ],
  5109. "description": "A PHP parser written in PHP",
  5110. "keywords": [
  5111. "parser",
  5112. "php"
  5113. ],
  5114. "support": {
  5115. "issues": "https://github.com/nikic/PHP-Parser/issues",
  5116. "source": "https://github.com/nikic/PHP-Parser/tree/v5.5.0"
  5117. },
  5118. "time": "2025-05-31T08:24:38+00:00"
  5119. },
  5120. {
  5121. "name": "nunomaduro/termwind",
  5122. "version": "v2.3.1",
  5123. "source": {
  5124. "type": "git",
  5125. "url": "https://github.com/nunomaduro/termwind.git",
  5126. "reference": "dfa08f390e509967a15c22493dc0bac5733d9123"
  5127. },
  5128. "dist": {
  5129. "type": "zip",
  5130. "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/dfa08f390e509967a15c22493dc0bac5733d9123",
  5131. "reference": "dfa08f390e509967a15c22493dc0bac5733d9123",
  5132. "shasum": ""
  5133. },
  5134. "require": {
  5135. "ext-mbstring": "*",
  5136. "php": "^8.2",
  5137. "symfony/console": "^7.2.6"
  5138. },
  5139. "require-dev": {
  5140. "illuminate/console": "^11.44.7",
  5141. "laravel/pint": "^1.22.0",
  5142. "mockery/mockery": "^1.6.12",
  5143. "pestphp/pest": "^2.36.0 || ^3.8.2",
  5144. "phpstan/phpstan": "^1.12.25",
  5145. "phpstan/phpstan-strict-rules": "^1.6.2",
  5146. "symfony/var-dumper": "^7.2.6",
  5147. "thecodingmachine/phpstan-strict-rules": "^1.0.0"
  5148. },
  5149. "type": "library",
  5150. "extra": {
  5151. "laravel": {
  5152. "providers": [
  5153. "Termwind\\Laravel\\TermwindServiceProvider"
  5154. ]
  5155. },
  5156. "branch-alias": {
  5157. "dev-2.x": "2.x-dev"
  5158. }
  5159. },
  5160. "autoload": {
  5161. "files": [
  5162. "src/Functions.php"
  5163. ],
  5164. "psr-4": {
  5165. "Termwind\\": "src/"
  5166. }
  5167. },
  5168. "notification-url": "https://packagist.org/downloads/",
  5169. "license": [
  5170. "MIT"
  5171. ],
  5172. "authors": [
  5173. {
  5174. "name": "Nuno Maduro",
  5175. "email": "enunomaduro@gmail.com"
  5176. }
  5177. ],
  5178. "description": "Its like Tailwind CSS, but for the console.",
  5179. "keywords": [
  5180. "cli",
  5181. "console",
  5182. "css",
  5183. "package",
  5184. "php",
  5185. "style"
  5186. ],
  5187. "support": {
  5188. "issues": "https://github.com/nunomaduro/termwind/issues",
  5189. "source": "https://github.com/nunomaduro/termwind/tree/v2.3.1"
  5190. },
  5191. "funding": [
  5192. {
  5193. "url": "https://www.paypal.com/paypalme/enunomaduro",
  5194. "type": "custom"
  5195. },
  5196. {
  5197. "url": "https://github.com/nunomaduro",
  5198. "type": "github"
  5199. },
  5200. {
  5201. "url": "https://github.com/xiCO2k",
  5202. "type": "github"
  5203. }
  5204. ],
  5205. "time": "2025-05-08T08:14:37+00:00"
  5206. },
  5207. {
  5208. "name": "openspout/openspout",
  5209. "version": "v4.30.1",
  5210. "source": {
  5211. "type": "git",
  5212. "url": "https://github.com/openspout/openspout.git",
  5213. "reference": "4550fc0dbf01aff86d12691f8a7f6ce22d2b2edc"
  5214. },
  5215. "dist": {
  5216. "type": "zip",
  5217. "url": "https://api.github.com/repos/openspout/openspout/zipball/4550fc0dbf01aff86d12691f8a7f6ce22d2b2edc",
  5218. "reference": "4550fc0dbf01aff86d12691f8a7f6ce22d2b2edc",
  5219. "shasum": ""
  5220. },
  5221. "require": {
  5222. "ext-dom": "*",
  5223. "ext-fileinfo": "*",
  5224. "ext-filter": "*",
  5225. "ext-libxml": "*",
  5226. "ext-xmlreader": "*",
  5227. "ext-zip": "*",
  5228. "php": "~8.3.0 || ~8.4.0"
  5229. },
  5230. "require-dev": {
  5231. "ext-zlib": "*",
  5232. "friendsofphp/php-cs-fixer": "^3.80.0",
  5233. "infection/infection": "^0.30.1",
  5234. "phpbench/phpbench": "^1.4.1",
  5235. "phpstan/phpstan": "^2.1.17",
  5236. "phpstan/phpstan-phpunit": "^2.0.6",
  5237. "phpstan/phpstan-strict-rules": "^2.0.4",
  5238. "phpunit/phpunit": "^12.2.6"
  5239. },
  5240. "suggest": {
  5241. "ext-iconv": "To handle non UTF-8 CSV files (if \"php-mbstring\" is not already installed or is too limited)",
  5242. "ext-mbstring": "To handle non UTF-8 CSV files (if \"iconv\" is not already installed)"
  5243. },
  5244. "type": "library",
  5245. "extra": {
  5246. "branch-alias": {
  5247. "dev-master": "3.3.x-dev"
  5248. }
  5249. },
  5250. "autoload": {
  5251. "psr-4": {
  5252. "OpenSpout\\": "src/"
  5253. }
  5254. },
  5255. "notification-url": "https://packagist.org/downloads/",
  5256. "license": [
  5257. "MIT"
  5258. ],
  5259. "authors": [
  5260. {
  5261. "name": "Adrien Loison",
  5262. "email": "adrien@box.com"
  5263. }
  5264. ],
  5265. "description": "PHP Library to read and write spreadsheet files (CSV, XLSX and ODS), in a fast and scalable way",
  5266. "homepage": "https://github.com/openspout/openspout",
  5267. "keywords": [
  5268. "OOXML",
  5269. "csv",
  5270. "excel",
  5271. "memory",
  5272. "odf",
  5273. "ods",
  5274. "office",
  5275. "open",
  5276. "php",
  5277. "read",
  5278. "scale",
  5279. "spreadsheet",
  5280. "stream",
  5281. "write",
  5282. "xlsx"
  5283. ],
  5284. "support": {
  5285. "issues": "https://github.com/openspout/openspout/issues",
  5286. "source": "https://github.com/openspout/openspout/tree/v4.30.1"
  5287. },
  5288. "funding": [
  5289. {
  5290. "url": "https://paypal.me/filippotessarotto",
  5291. "type": "custom"
  5292. },
  5293. {
  5294. "url": "https://github.com/Slamdunk",
  5295. "type": "github"
  5296. }
  5297. ],
  5298. "time": "2025-07-07T06:15:55+00:00"
  5299. },
  5300. {
  5301. "name": "paragonie/constant_time_encoding",
  5302. "version": "v3.0.0",
  5303. "source": {
  5304. "type": "git",
  5305. "url": "https://github.com/paragonie/constant_time_encoding.git",
  5306. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512"
  5307. },
  5308. "dist": {
  5309. "type": "zip",
  5310. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/df1e7fde177501eee2037dd159cf04f5f301a512",
  5311. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512",
  5312. "shasum": ""
  5313. },
  5314. "require": {
  5315. "php": "^8"
  5316. },
  5317. "require-dev": {
  5318. "phpunit/phpunit": "^9",
  5319. "vimeo/psalm": "^4|^5"
  5320. },
  5321. "type": "library",
  5322. "autoload": {
  5323. "psr-4": {
  5324. "ParagonIE\\ConstantTime\\": "src/"
  5325. }
  5326. },
  5327. "notification-url": "https://packagist.org/downloads/",
  5328. "license": [
  5329. "MIT"
  5330. ],
  5331. "authors": [
  5332. {
  5333. "name": "Paragon Initiative Enterprises",
  5334. "email": "security@paragonie.com",
  5335. "homepage": "https://paragonie.com",
  5336. "role": "Maintainer"
  5337. },
  5338. {
  5339. "name": "Steve 'Sc00bz' Thomas",
  5340. "email": "steve@tobtu.com",
  5341. "homepage": "https://www.tobtu.com",
  5342. "role": "Original Developer"
  5343. }
  5344. ],
  5345. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  5346. "keywords": [
  5347. "base16",
  5348. "base32",
  5349. "base32_decode",
  5350. "base32_encode",
  5351. "base64",
  5352. "base64_decode",
  5353. "base64_encode",
  5354. "bin2hex",
  5355. "encoding",
  5356. "hex",
  5357. "hex2bin",
  5358. "rfc4648"
  5359. ],
  5360. "support": {
  5361. "email": "info@paragonie.com",
  5362. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  5363. "source": "https://github.com/paragonie/constant_time_encoding"
  5364. },
  5365. "time": "2024-05-08T12:36:18+00:00"
  5366. },
  5367. {
  5368. "name": "paragonie/random_compat",
  5369. "version": "v9.99.100",
  5370. "source": {
  5371. "type": "git",
  5372. "url": "https://github.com/paragonie/random_compat.git",
  5373. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  5374. },
  5375. "dist": {
  5376. "type": "zip",
  5377. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5378. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5379. "shasum": ""
  5380. },
  5381. "require": {
  5382. "php": ">= 7"
  5383. },
  5384. "require-dev": {
  5385. "phpunit/phpunit": "4.*|5.*",
  5386. "vimeo/psalm": "^1"
  5387. },
  5388. "suggest": {
  5389. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  5390. },
  5391. "type": "library",
  5392. "notification-url": "https://packagist.org/downloads/",
  5393. "license": [
  5394. "MIT"
  5395. ],
  5396. "authors": [
  5397. {
  5398. "name": "Paragon Initiative Enterprises",
  5399. "email": "security@paragonie.com",
  5400. "homepage": "https://paragonie.com"
  5401. }
  5402. ],
  5403. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  5404. "keywords": [
  5405. "csprng",
  5406. "polyfill",
  5407. "pseudorandom",
  5408. "random"
  5409. ],
  5410. "support": {
  5411. "email": "info@paragonie.com",
  5412. "issues": "https://github.com/paragonie/random_compat/issues",
  5413. "source": "https://github.com/paragonie/random_compat"
  5414. },
  5415. "time": "2020-10-15T08:29:30+00:00"
  5416. },
  5417. {
  5418. "name": "phpoption/phpoption",
  5419. "version": "1.9.3",
  5420. "source": {
  5421. "type": "git",
  5422. "url": "https://github.com/schmittjoh/php-option.git",
  5423. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  5424. },
  5425. "dist": {
  5426. "type": "zip",
  5427. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5428. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5429. "shasum": ""
  5430. },
  5431. "require": {
  5432. "php": "^7.2.5 || ^8.0"
  5433. },
  5434. "require-dev": {
  5435. "bamarni/composer-bin-plugin": "^1.8.2",
  5436. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  5437. },
  5438. "type": "library",
  5439. "extra": {
  5440. "bamarni-bin": {
  5441. "bin-links": true,
  5442. "forward-command": false
  5443. },
  5444. "branch-alias": {
  5445. "dev-master": "1.9-dev"
  5446. }
  5447. },
  5448. "autoload": {
  5449. "psr-4": {
  5450. "PhpOption\\": "src/PhpOption/"
  5451. }
  5452. },
  5453. "notification-url": "https://packagist.org/downloads/",
  5454. "license": [
  5455. "Apache-2.0"
  5456. ],
  5457. "authors": [
  5458. {
  5459. "name": "Johannes M. Schmitt",
  5460. "email": "schmittjoh@gmail.com",
  5461. "homepage": "https://github.com/schmittjoh"
  5462. },
  5463. {
  5464. "name": "Graham Campbell",
  5465. "email": "hello@gjcampbell.co.uk",
  5466. "homepage": "https://github.com/GrahamCampbell"
  5467. }
  5468. ],
  5469. "description": "Option Type for PHP",
  5470. "keywords": [
  5471. "language",
  5472. "option",
  5473. "php",
  5474. "type"
  5475. ],
  5476. "support": {
  5477. "issues": "https://github.com/schmittjoh/php-option/issues",
  5478. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  5479. },
  5480. "funding": [
  5481. {
  5482. "url": "https://github.com/GrahamCampbell",
  5483. "type": "github"
  5484. },
  5485. {
  5486. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  5487. "type": "tidelift"
  5488. }
  5489. ],
  5490. "time": "2024-07-20T21:41:07+00:00"
  5491. },
  5492. {
  5493. "name": "phpseclib/phpseclib",
  5494. "version": "3.0.46",
  5495. "source": {
  5496. "type": "git",
  5497. "url": "https://github.com/phpseclib/phpseclib.git",
  5498. "reference": "56483a7de62a6c2a6635e42e93b8a9e25d4f0ec6"
  5499. },
  5500. "dist": {
  5501. "type": "zip",
  5502. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/56483a7de62a6c2a6635e42e93b8a9e25d4f0ec6",
  5503. "reference": "56483a7de62a6c2a6635e42e93b8a9e25d4f0ec6",
  5504. "shasum": ""
  5505. },
  5506. "require": {
  5507. "paragonie/constant_time_encoding": "^1|^2|^3",
  5508. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  5509. "php": ">=5.6.1"
  5510. },
  5511. "require-dev": {
  5512. "phpunit/phpunit": "*"
  5513. },
  5514. "suggest": {
  5515. "ext-dom": "Install the DOM extension to load XML formatted public keys.",
  5516. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  5517. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  5518. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  5519. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  5520. },
  5521. "type": "library",
  5522. "autoload": {
  5523. "files": [
  5524. "phpseclib/bootstrap.php"
  5525. ],
  5526. "psr-4": {
  5527. "phpseclib3\\": "phpseclib/"
  5528. }
  5529. },
  5530. "notification-url": "https://packagist.org/downloads/",
  5531. "license": [
  5532. "MIT"
  5533. ],
  5534. "authors": [
  5535. {
  5536. "name": "Jim Wigginton",
  5537. "email": "terrafrost@php.net",
  5538. "role": "Lead Developer"
  5539. },
  5540. {
  5541. "name": "Patrick Monnerat",
  5542. "email": "pm@datasphere.ch",
  5543. "role": "Developer"
  5544. },
  5545. {
  5546. "name": "Andreas Fischer",
  5547. "email": "bantu@phpbb.com",
  5548. "role": "Developer"
  5549. },
  5550. {
  5551. "name": "Hans-Jürgen Petrich",
  5552. "email": "petrich@tronic-media.com",
  5553. "role": "Developer"
  5554. },
  5555. {
  5556. "name": "Graham Campbell",
  5557. "email": "graham@alt-three.com",
  5558. "role": "Developer"
  5559. }
  5560. ],
  5561. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  5562. "homepage": "http://phpseclib.sourceforge.net",
  5563. "keywords": [
  5564. "BigInteger",
  5565. "aes",
  5566. "asn.1",
  5567. "asn1",
  5568. "blowfish",
  5569. "crypto",
  5570. "cryptography",
  5571. "encryption",
  5572. "rsa",
  5573. "security",
  5574. "sftp",
  5575. "signature",
  5576. "signing",
  5577. "ssh",
  5578. "twofish",
  5579. "x.509",
  5580. "x509"
  5581. ],
  5582. "support": {
  5583. "issues": "https://github.com/phpseclib/phpseclib/issues",
  5584. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.46"
  5585. },
  5586. "funding": [
  5587. {
  5588. "url": "https://github.com/terrafrost",
  5589. "type": "github"
  5590. },
  5591. {
  5592. "url": "https://www.patreon.com/phpseclib",
  5593. "type": "patreon"
  5594. },
  5595. {
  5596. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  5597. "type": "tidelift"
  5598. }
  5599. ],
  5600. "time": "2025-06-26T16:29:55+00:00"
  5601. },
  5602. {
  5603. "name": "psr/cache",
  5604. "version": "3.0.0",
  5605. "source": {
  5606. "type": "git",
  5607. "url": "https://github.com/php-fig/cache.git",
  5608. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  5609. },
  5610. "dist": {
  5611. "type": "zip",
  5612. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5613. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5614. "shasum": ""
  5615. },
  5616. "require": {
  5617. "php": ">=8.0.0"
  5618. },
  5619. "type": "library",
  5620. "extra": {
  5621. "branch-alias": {
  5622. "dev-master": "1.0.x-dev"
  5623. }
  5624. },
  5625. "autoload": {
  5626. "psr-4": {
  5627. "Psr\\Cache\\": "src/"
  5628. }
  5629. },
  5630. "notification-url": "https://packagist.org/downloads/",
  5631. "license": [
  5632. "MIT"
  5633. ],
  5634. "authors": [
  5635. {
  5636. "name": "PHP-FIG",
  5637. "homepage": "https://www.php-fig.org/"
  5638. }
  5639. ],
  5640. "description": "Common interface for caching libraries",
  5641. "keywords": [
  5642. "cache",
  5643. "psr",
  5644. "psr-6"
  5645. ],
  5646. "support": {
  5647. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  5648. },
  5649. "time": "2021-02-03T23:26:27+00:00"
  5650. },
  5651. {
  5652. "name": "psr/clock",
  5653. "version": "1.0.0",
  5654. "source": {
  5655. "type": "git",
  5656. "url": "https://github.com/php-fig/clock.git",
  5657. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  5658. },
  5659. "dist": {
  5660. "type": "zip",
  5661. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5662. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5663. "shasum": ""
  5664. },
  5665. "require": {
  5666. "php": "^7.0 || ^8.0"
  5667. },
  5668. "type": "library",
  5669. "autoload": {
  5670. "psr-4": {
  5671. "Psr\\Clock\\": "src/"
  5672. }
  5673. },
  5674. "notification-url": "https://packagist.org/downloads/",
  5675. "license": [
  5676. "MIT"
  5677. ],
  5678. "authors": [
  5679. {
  5680. "name": "PHP-FIG",
  5681. "homepage": "https://www.php-fig.org/"
  5682. }
  5683. ],
  5684. "description": "Common interface for reading the clock.",
  5685. "homepage": "https://github.com/php-fig/clock",
  5686. "keywords": [
  5687. "clock",
  5688. "now",
  5689. "psr",
  5690. "psr-20",
  5691. "time"
  5692. ],
  5693. "support": {
  5694. "issues": "https://github.com/php-fig/clock/issues",
  5695. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  5696. },
  5697. "time": "2022-11-25T14:36:26+00:00"
  5698. },
  5699. {
  5700. "name": "psr/container",
  5701. "version": "2.0.2",
  5702. "source": {
  5703. "type": "git",
  5704. "url": "https://github.com/php-fig/container.git",
  5705. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  5706. },
  5707. "dist": {
  5708. "type": "zip",
  5709. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5710. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5711. "shasum": ""
  5712. },
  5713. "require": {
  5714. "php": ">=7.4.0"
  5715. },
  5716. "type": "library",
  5717. "extra": {
  5718. "branch-alias": {
  5719. "dev-master": "2.0.x-dev"
  5720. }
  5721. },
  5722. "autoload": {
  5723. "psr-4": {
  5724. "Psr\\Container\\": "src/"
  5725. }
  5726. },
  5727. "notification-url": "https://packagist.org/downloads/",
  5728. "license": [
  5729. "MIT"
  5730. ],
  5731. "authors": [
  5732. {
  5733. "name": "PHP-FIG",
  5734. "homepage": "https://www.php-fig.org/"
  5735. }
  5736. ],
  5737. "description": "Common Container Interface (PHP FIG PSR-11)",
  5738. "homepage": "https://github.com/php-fig/container",
  5739. "keywords": [
  5740. "PSR-11",
  5741. "container",
  5742. "container-interface",
  5743. "container-interop",
  5744. "psr"
  5745. ],
  5746. "support": {
  5747. "issues": "https://github.com/php-fig/container/issues",
  5748. "source": "https://github.com/php-fig/container/tree/2.0.2"
  5749. },
  5750. "time": "2021-11-05T16:47:00+00:00"
  5751. },
  5752. {
  5753. "name": "psr/event-dispatcher",
  5754. "version": "1.0.0",
  5755. "source": {
  5756. "type": "git",
  5757. "url": "https://github.com/php-fig/event-dispatcher.git",
  5758. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5759. },
  5760. "dist": {
  5761. "type": "zip",
  5762. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5763. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5764. "shasum": ""
  5765. },
  5766. "require": {
  5767. "php": ">=7.2.0"
  5768. },
  5769. "type": "library",
  5770. "extra": {
  5771. "branch-alias": {
  5772. "dev-master": "1.0.x-dev"
  5773. }
  5774. },
  5775. "autoload": {
  5776. "psr-4": {
  5777. "Psr\\EventDispatcher\\": "src/"
  5778. }
  5779. },
  5780. "notification-url": "https://packagist.org/downloads/",
  5781. "license": [
  5782. "MIT"
  5783. ],
  5784. "authors": [
  5785. {
  5786. "name": "PHP-FIG",
  5787. "homepage": "http://www.php-fig.org/"
  5788. }
  5789. ],
  5790. "description": "Standard interfaces for event handling.",
  5791. "keywords": [
  5792. "events",
  5793. "psr",
  5794. "psr-14"
  5795. ],
  5796. "support": {
  5797. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5798. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5799. },
  5800. "time": "2019-01-08T18:20:26+00:00"
  5801. },
  5802. {
  5803. "name": "psr/http-client",
  5804. "version": "1.0.3",
  5805. "source": {
  5806. "type": "git",
  5807. "url": "https://github.com/php-fig/http-client.git",
  5808. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  5809. },
  5810. "dist": {
  5811. "type": "zip",
  5812. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5813. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5814. "shasum": ""
  5815. },
  5816. "require": {
  5817. "php": "^7.0 || ^8.0",
  5818. "psr/http-message": "^1.0 || ^2.0"
  5819. },
  5820. "type": "library",
  5821. "extra": {
  5822. "branch-alias": {
  5823. "dev-master": "1.0.x-dev"
  5824. }
  5825. },
  5826. "autoload": {
  5827. "psr-4": {
  5828. "Psr\\Http\\Client\\": "src/"
  5829. }
  5830. },
  5831. "notification-url": "https://packagist.org/downloads/",
  5832. "license": [
  5833. "MIT"
  5834. ],
  5835. "authors": [
  5836. {
  5837. "name": "PHP-FIG",
  5838. "homepage": "https://www.php-fig.org/"
  5839. }
  5840. ],
  5841. "description": "Common interface for HTTP clients",
  5842. "homepage": "https://github.com/php-fig/http-client",
  5843. "keywords": [
  5844. "http",
  5845. "http-client",
  5846. "psr",
  5847. "psr-18"
  5848. ],
  5849. "support": {
  5850. "source": "https://github.com/php-fig/http-client"
  5851. },
  5852. "time": "2023-09-23T14:17:50+00:00"
  5853. },
  5854. {
  5855. "name": "psr/http-factory",
  5856. "version": "1.1.0",
  5857. "source": {
  5858. "type": "git",
  5859. "url": "https://github.com/php-fig/http-factory.git",
  5860. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  5861. },
  5862. "dist": {
  5863. "type": "zip",
  5864. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5865. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5866. "shasum": ""
  5867. },
  5868. "require": {
  5869. "php": ">=7.1",
  5870. "psr/http-message": "^1.0 || ^2.0"
  5871. },
  5872. "type": "library",
  5873. "extra": {
  5874. "branch-alias": {
  5875. "dev-master": "1.0.x-dev"
  5876. }
  5877. },
  5878. "autoload": {
  5879. "psr-4": {
  5880. "Psr\\Http\\Message\\": "src/"
  5881. }
  5882. },
  5883. "notification-url": "https://packagist.org/downloads/",
  5884. "license": [
  5885. "MIT"
  5886. ],
  5887. "authors": [
  5888. {
  5889. "name": "PHP-FIG",
  5890. "homepage": "https://www.php-fig.org/"
  5891. }
  5892. ],
  5893. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  5894. "keywords": [
  5895. "factory",
  5896. "http",
  5897. "message",
  5898. "psr",
  5899. "psr-17",
  5900. "psr-7",
  5901. "request",
  5902. "response"
  5903. ],
  5904. "support": {
  5905. "source": "https://github.com/php-fig/http-factory"
  5906. },
  5907. "time": "2024-04-15T12:06:14+00:00"
  5908. },
  5909. {
  5910. "name": "psr/http-message",
  5911. "version": "2.0",
  5912. "source": {
  5913. "type": "git",
  5914. "url": "https://github.com/php-fig/http-message.git",
  5915. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  5916. },
  5917. "dist": {
  5918. "type": "zip",
  5919. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5920. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5921. "shasum": ""
  5922. },
  5923. "require": {
  5924. "php": "^7.2 || ^8.0"
  5925. },
  5926. "type": "library",
  5927. "extra": {
  5928. "branch-alias": {
  5929. "dev-master": "2.0.x-dev"
  5930. }
  5931. },
  5932. "autoload": {
  5933. "psr-4": {
  5934. "Psr\\Http\\Message\\": "src/"
  5935. }
  5936. },
  5937. "notification-url": "https://packagist.org/downloads/",
  5938. "license": [
  5939. "MIT"
  5940. ],
  5941. "authors": [
  5942. {
  5943. "name": "PHP-FIG",
  5944. "homepage": "https://www.php-fig.org/"
  5945. }
  5946. ],
  5947. "description": "Common interface for HTTP messages",
  5948. "homepage": "https://github.com/php-fig/http-message",
  5949. "keywords": [
  5950. "http",
  5951. "http-message",
  5952. "psr",
  5953. "psr-7",
  5954. "request",
  5955. "response"
  5956. ],
  5957. "support": {
  5958. "source": "https://github.com/php-fig/http-message/tree/2.0"
  5959. },
  5960. "time": "2023-04-04T09:54:51+00:00"
  5961. },
  5962. {
  5963. "name": "psr/log",
  5964. "version": "3.0.2",
  5965. "source": {
  5966. "type": "git",
  5967. "url": "https://github.com/php-fig/log.git",
  5968. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  5969. },
  5970. "dist": {
  5971. "type": "zip",
  5972. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  5973. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  5974. "shasum": ""
  5975. },
  5976. "require": {
  5977. "php": ">=8.0.0"
  5978. },
  5979. "type": "library",
  5980. "extra": {
  5981. "branch-alias": {
  5982. "dev-master": "3.x-dev"
  5983. }
  5984. },
  5985. "autoload": {
  5986. "psr-4": {
  5987. "Psr\\Log\\": "src"
  5988. }
  5989. },
  5990. "notification-url": "https://packagist.org/downloads/",
  5991. "license": [
  5992. "MIT"
  5993. ],
  5994. "authors": [
  5995. {
  5996. "name": "PHP-FIG",
  5997. "homepage": "https://www.php-fig.org/"
  5998. }
  5999. ],
  6000. "description": "Common interface for logging libraries",
  6001. "homepage": "https://github.com/php-fig/log",
  6002. "keywords": [
  6003. "log",
  6004. "psr",
  6005. "psr-3"
  6006. ],
  6007. "support": {
  6008. "source": "https://github.com/php-fig/log/tree/3.0.2"
  6009. },
  6010. "time": "2024-09-11T13:17:53+00:00"
  6011. },
  6012. {
  6013. "name": "psr/simple-cache",
  6014. "version": "3.0.0",
  6015. "source": {
  6016. "type": "git",
  6017. "url": "https://github.com/php-fig/simple-cache.git",
  6018. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  6019. },
  6020. "dist": {
  6021. "type": "zip",
  6022. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6023. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6024. "shasum": ""
  6025. },
  6026. "require": {
  6027. "php": ">=8.0.0"
  6028. },
  6029. "type": "library",
  6030. "extra": {
  6031. "branch-alias": {
  6032. "dev-master": "3.0.x-dev"
  6033. }
  6034. },
  6035. "autoload": {
  6036. "psr-4": {
  6037. "Psr\\SimpleCache\\": "src/"
  6038. }
  6039. },
  6040. "notification-url": "https://packagist.org/downloads/",
  6041. "license": [
  6042. "MIT"
  6043. ],
  6044. "authors": [
  6045. {
  6046. "name": "PHP-FIG",
  6047. "homepage": "https://www.php-fig.org/"
  6048. }
  6049. ],
  6050. "description": "Common interfaces for simple caching",
  6051. "keywords": [
  6052. "cache",
  6053. "caching",
  6054. "psr",
  6055. "psr-16",
  6056. "simple-cache"
  6057. ],
  6058. "support": {
  6059. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  6060. },
  6061. "time": "2021-10-29T13:26:27+00:00"
  6062. },
  6063. {
  6064. "name": "psy/psysh",
  6065. "version": "v0.12.9",
  6066. "source": {
  6067. "type": "git",
  6068. "url": "https://github.com/bobthecow/psysh.git",
  6069. "reference": "1b801844becfe648985372cb4b12ad6840245ace"
  6070. },
  6071. "dist": {
  6072. "type": "zip",
  6073. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/1b801844becfe648985372cb4b12ad6840245ace",
  6074. "reference": "1b801844becfe648985372cb4b12ad6840245ace",
  6075. "shasum": ""
  6076. },
  6077. "require": {
  6078. "ext-json": "*",
  6079. "ext-tokenizer": "*",
  6080. "nikic/php-parser": "^5.0 || ^4.0",
  6081. "php": "^8.0 || ^7.4",
  6082. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  6083. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  6084. },
  6085. "conflict": {
  6086. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  6087. },
  6088. "require-dev": {
  6089. "bamarni/composer-bin-plugin": "^1.2"
  6090. },
  6091. "suggest": {
  6092. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  6093. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  6094. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  6095. },
  6096. "bin": [
  6097. "bin/psysh"
  6098. ],
  6099. "type": "library",
  6100. "extra": {
  6101. "bamarni-bin": {
  6102. "bin-links": false,
  6103. "forward-command": false
  6104. },
  6105. "branch-alias": {
  6106. "dev-main": "0.12.x-dev"
  6107. }
  6108. },
  6109. "autoload": {
  6110. "files": [
  6111. "src/functions.php"
  6112. ],
  6113. "psr-4": {
  6114. "Psy\\": "src/"
  6115. }
  6116. },
  6117. "notification-url": "https://packagist.org/downloads/",
  6118. "license": [
  6119. "MIT"
  6120. ],
  6121. "authors": [
  6122. {
  6123. "name": "Justin Hileman",
  6124. "email": "justin@justinhileman.info",
  6125. "homepage": "http://justinhileman.com"
  6126. }
  6127. ],
  6128. "description": "An interactive shell for modern PHP.",
  6129. "homepage": "http://psysh.org",
  6130. "keywords": [
  6131. "REPL",
  6132. "console",
  6133. "interactive",
  6134. "shell"
  6135. ],
  6136. "support": {
  6137. "issues": "https://github.com/bobthecow/psysh/issues",
  6138. "source": "https://github.com/bobthecow/psysh/tree/v0.12.9"
  6139. },
  6140. "time": "2025-06-23T02:35:06+00:00"
  6141. },
  6142. {
  6143. "name": "ralouphie/getallheaders",
  6144. "version": "3.0.3",
  6145. "source": {
  6146. "type": "git",
  6147. "url": "https://github.com/ralouphie/getallheaders.git",
  6148. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  6149. },
  6150. "dist": {
  6151. "type": "zip",
  6152. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  6153. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  6154. "shasum": ""
  6155. },
  6156. "require": {
  6157. "php": ">=5.6"
  6158. },
  6159. "require-dev": {
  6160. "php-coveralls/php-coveralls": "^2.1",
  6161. "phpunit/phpunit": "^5 || ^6.5"
  6162. },
  6163. "type": "library",
  6164. "autoload": {
  6165. "files": [
  6166. "src/getallheaders.php"
  6167. ]
  6168. },
  6169. "notification-url": "https://packagist.org/downloads/",
  6170. "license": [
  6171. "MIT"
  6172. ],
  6173. "authors": [
  6174. {
  6175. "name": "Ralph Khattar",
  6176. "email": "ralph.khattar@gmail.com"
  6177. }
  6178. ],
  6179. "description": "A polyfill for getallheaders.",
  6180. "support": {
  6181. "issues": "https://github.com/ralouphie/getallheaders/issues",
  6182. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  6183. },
  6184. "time": "2019-03-08T08:55:37+00:00"
  6185. },
  6186. {
  6187. "name": "ramsey/collection",
  6188. "version": "2.1.1",
  6189. "source": {
  6190. "type": "git",
  6191. "url": "https://github.com/ramsey/collection.git",
  6192. "reference": "344572933ad0181accbf4ba763e85a0306a8c5e2"
  6193. },
  6194. "dist": {
  6195. "type": "zip",
  6196. "url": "https://api.github.com/repos/ramsey/collection/zipball/344572933ad0181accbf4ba763e85a0306a8c5e2",
  6197. "reference": "344572933ad0181accbf4ba763e85a0306a8c5e2",
  6198. "shasum": ""
  6199. },
  6200. "require": {
  6201. "php": "^8.1"
  6202. },
  6203. "require-dev": {
  6204. "captainhook/plugin-composer": "^5.3",
  6205. "ergebnis/composer-normalize": "^2.45",
  6206. "fakerphp/faker": "^1.24",
  6207. "hamcrest/hamcrest-php": "^2.0",
  6208. "jangregor/phpstan-prophecy": "^2.1",
  6209. "mockery/mockery": "^1.6",
  6210. "php-parallel-lint/php-console-highlighter": "^1.0",
  6211. "php-parallel-lint/php-parallel-lint": "^1.4",
  6212. "phpspec/prophecy-phpunit": "^2.3",
  6213. "phpstan/extension-installer": "^1.4",
  6214. "phpstan/phpstan": "^2.1",
  6215. "phpstan/phpstan-mockery": "^2.0",
  6216. "phpstan/phpstan-phpunit": "^2.0",
  6217. "phpunit/phpunit": "^10.5",
  6218. "ramsey/coding-standard": "^2.3",
  6219. "ramsey/conventional-commits": "^1.6",
  6220. "roave/security-advisories": "dev-latest"
  6221. },
  6222. "type": "library",
  6223. "extra": {
  6224. "captainhook": {
  6225. "force-install": true
  6226. },
  6227. "ramsey/conventional-commits": {
  6228. "configFile": "conventional-commits.json"
  6229. }
  6230. },
  6231. "autoload": {
  6232. "psr-4": {
  6233. "Ramsey\\Collection\\": "src/"
  6234. }
  6235. },
  6236. "notification-url": "https://packagist.org/downloads/",
  6237. "license": [
  6238. "MIT"
  6239. ],
  6240. "authors": [
  6241. {
  6242. "name": "Ben Ramsey",
  6243. "email": "ben@benramsey.com",
  6244. "homepage": "https://benramsey.com"
  6245. }
  6246. ],
  6247. "description": "A PHP library for representing and manipulating collections.",
  6248. "keywords": [
  6249. "array",
  6250. "collection",
  6251. "hash",
  6252. "map",
  6253. "queue",
  6254. "set"
  6255. ],
  6256. "support": {
  6257. "issues": "https://github.com/ramsey/collection/issues",
  6258. "source": "https://github.com/ramsey/collection/tree/2.1.1"
  6259. },
  6260. "time": "2025-03-22T05:38:12+00:00"
  6261. },
  6262. {
  6263. "name": "ramsey/uuid",
  6264. "version": "4.9.0",
  6265. "source": {
  6266. "type": "git",
  6267. "url": "https://github.com/ramsey/uuid.git",
  6268. "reference": "4e0e23cc785f0724a0e838279a9eb03f28b092a0"
  6269. },
  6270. "dist": {
  6271. "type": "zip",
  6272. "url": "https://api.github.com/repos/ramsey/uuid/zipball/4e0e23cc785f0724a0e838279a9eb03f28b092a0",
  6273. "reference": "4e0e23cc785f0724a0e838279a9eb03f28b092a0",
  6274. "shasum": ""
  6275. },
  6276. "require": {
  6277. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12 || ^0.13",
  6278. "php": "^8.0",
  6279. "ramsey/collection": "^1.2 || ^2.0"
  6280. },
  6281. "replace": {
  6282. "rhumsaa/uuid": "self.version"
  6283. },
  6284. "require-dev": {
  6285. "captainhook/captainhook": "^5.25",
  6286. "captainhook/plugin-composer": "^5.3",
  6287. "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
  6288. "ergebnis/composer-normalize": "^2.47",
  6289. "mockery/mockery": "^1.6",
  6290. "paragonie/random-lib": "^2",
  6291. "php-mock/php-mock": "^2.6",
  6292. "php-mock/php-mock-mockery": "^1.5",
  6293. "php-parallel-lint/php-parallel-lint": "^1.4.0",
  6294. "phpbench/phpbench": "^1.2.14",
  6295. "phpstan/extension-installer": "^1.4",
  6296. "phpstan/phpstan": "^2.1",
  6297. "phpstan/phpstan-mockery": "^2.0",
  6298. "phpstan/phpstan-phpunit": "^2.0",
  6299. "phpunit/phpunit": "^9.6",
  6300. "slevomat/coding-standard": "^8.18",
  6301. "squizlabs/php_codesniffer": "^3.13"
  6302. },
  6303. "suggest": {
  6304. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  6305. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  6306. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  6307. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  6308. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  6309. },
  6310. "type": "library",
  6311. "extra": {
  6312. "captainhook": {
  6313. "force-install": true
  6314. }
  6315. },
  6316. "autoload": {
  6317. "files": [
  6318. "src/functions.php"
  6319. ],
  6320. "psr-4": {
  6321. "Ramsey\\Uuid\\": "src/"
  6322. }
  6323. },
  6324. "notification-url": "https://packagist.org/downloads/",
  6325. "license": [
  6326. "MIT"
  6327. ],
  6328. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  6329. "keywords": [
  6330. "guid",
  6331. "identifier",
  6332. "uuid"
  6333. ],
  6334. "support": {
  6335. "issues": "https://github.com/ramsey/uuid/issues",
  6336. "source": "https://github.com/ramsey/uuid/tree/4.9.0"
  6337. },
  6338. "time": "2025-06-25T14:20:11+00:00"
  6339. },
  6340. {
  6341. "name": "ryangjchandler/blade-capture-directive",
  6342. "version": "v1.1.0",
  6343. "source": {
  6344. "type": "git",
  6345. "url": "https://github.com/ryangjchandler/blade-capture-directive.git",
  6346. "reference": "bbb1513dfd89eaec87a47fe0c449a7e3d4a1976d"
  6347. },
  6348. "dist": {
  6349. "type": "zip",
  6350. "url": "https://api.github.com/repos/ryangjchandler/blade-capture-directive/zipball/bbb1513dfd89eaec87a47fe0c449a7e3d4a1976d",
  6351. "reference": "bbb1513dfd89eaec87a47fe0c449a7e3d4a1976d",
  6352. "shasum": ""
  6353. },
  6354. "require": {
  6355. "illuminate/contracts": "^10.0|^11.0|^12.0",
  6356. "php": "^8.1",
  6357. "spatie/laravel-package-tools": "^1.9.2"
  6358. },
  6359. "require-dev": {
  6360. "nunomaduro/collision": "^7.0|^8.0",
  6361. "nunomaduro/larastan": "^2.0|^3.0",
  6362. "orchestra/testbench": "^8.0|^9.0|^10.0",
  6363. "pestphp/pest": "^2.0|^3.7",
  6364. "pestphp/pest-plugin-laravel": "^2.0|^3.1",
  6365. "phpstan/extension-installer": "^1.1",
  6366. "phpstan/phpstan-deprecation-rules": "^1.0|^2.0",
  6367. "phpstan/phpstan-phpunit": "^1.0|^2.0",
  6368. "phpunit/phpunit": "^10.0|^11.5.3",
  6369. "spatie/laravel-ray": "^1.26"
  6370. },
  6371. "type": "library",
  6372. "extra": {
  6373. "laravel": {
  6374. "aliases": {
  6375. "BladeCaptureDirective": "RyanChandler\\BladeCaptureDirective\\Facades\\BladeCaptureDirective"
  6376. },
  6377. "providers": [
  6378. "RyanChandler\\BladeCaptureDirective\\BladeCaptureDirectiveServiceProvider"
  6379. ]
  6380. }
  6381. },
  6382. "autoload": {
  6383. "psr-4": {
  6384. "RyanChandler\\BladeCaptureDirective\\": "src",
  6385. "RyanChandler\\BladeCaptureDirective\\Database\\Factories\\": "database/factories"
  6386. }
  6387. },
  6388. "notification-url": "https://packagist.org/downloads/",
  6389. "license": [
  6390. "MIT"
  6391. ],
  6392. "authors": [
  6393. {
  6394. "name": "Ryan Chandler",
  6395. "email": "support@ryangjchandler.co.uk",
  6396. "role": "Developer"
  6397. }
  6398. ],
  6399. "description": "Create inline partials in your Blade templates with ease.",
  6400. "homepage": "https://github.com/ryangjchandler/blade-capture-directive",
  6401. "keywords": [
  6402. "blade-capture-directive",
  6403. "laravel",
  6404. "ryangjchandler"
  6405. ],
  6406. "support": {
  6407. "issues": "https://github.com/ryangjchandler/blade-capture-directive/issues",
  6408. "source": "https://github.com/ryangjchandler/blade-capture-directive/tree/v1.1.0"
  6409. },
  6410. "funding": [
  6411. {
  6412. "url": "https://github.com/ryangjchandler",
  6413. "type": "github"
  6414. }
  6415. ],
  6416. "time": "2025-02-25T09:09:36+00:00"
  6417. },
  6418. {
  6419. "name": "spatie/color",
  6420. "version": "1.8.0",
  6421. "source": {
  6422. "type": "git",
  6423. "url": "https://github.com/spatie/color.git",
  6424. "reference": "142af7fec069a420babea80a5412eb2f646dcd8c"
  6425. },
  6426. "dist": {
  6427. "type": "zip",
  6428. "url": "https://api.github.com/repos/spatie/color/zipball/142af7fec069a420babea80a5412eb2f646dcd8c",
  6429. "reference": "142af7fec069a420babea80a5412eb2f646dcd8c",
  6430. "shasum": ""
  6431. },
  6432. "require": {
  6433. "php": "^7.3|^8.0"
  6434. },
  6435. "require-dev": {
  6436. "pestphp/pest": "^1.22",
  6437. "phpunit/phpunit": "^6.5||^9.0"
  6438. },
  6439. "type": "library",
  6440. "autoload": {
  6441. "psr-4": {
  6442. "Spatie\\Color\\": "src"
  6443. }
  6444. },
  6445. "notification-url": "https://packagist.org/downloads/",
  6446. "license": [
  6447. "MIT"
  6448. ],
  6449. "authors": [
  6450. {
  6451. "name": "Sebastian De Deyne",
  6452. "email": "sebastian@spatie.be",
  6453. "homepage": "https://spatie.be",
  6454. "role": "Developer"
  6455. }
  6456. ],
  6457. "description": "A little library to handle color conversions",
  6458. "homepage": "https://github.com/spatie/color",
  6459. "keywords": [
  6460. "color",
  6461. "conversion",
  6462. "rgb",
  6463. "spatie"
  6464. ],
  6465. "support": {
  6466. "issues": "https://github.com/spatie/color/issues",
  6467. "source": "https://github.com/spatie/color/tree/1.8.0"
  6468. },
  6469. "funding": [
  6470. {
  6471. "url": "https://github.com/spatie",
  6472. "type": "github"
  6473. }
  6474. ],
  6475. "time": "2025-02-10T09:22:41+00:00"
  6476. },
  6477. {
  6478. "name": "spatie/invade",
  6479. "version": "2.1.0",
  6480. "source": {
  6481. "type": "git",
  6482. "url": "https://github.com/spatie/invade.git",
  6483. "reference": "b920f6411d21df4e8610a138e2e87ae4957d7f63"
  6484. },
  6485. "dist": {
  6486. "type": "zip",
  6487. "url": "https://api.github.com/repos/spatie/invade/zipball/b920f6411d21df4e8610a138e2e87ae4957d7f63",
  6488. "reference": "b920f6411d21df4e8610a138e2e87ae4957d7f63",
  6489. "shasum": ""
  6490. },
  6491. "require": {
  6492. "php": "^8.0"
  6493. },
  6494. "require-dev": {
  6495. "pestphp/pest": "^1.20",
  6496. "phpstan/phpstan": "^1.4",
  6497. "spatie/ray": "^1.28"
  6498. },
  6499. "type": "library",
  6500. "autoload": {
  6501. "files": [
  6502. "src/functions.php"
  6503. ],
  6504. "psr-4": {
  6505. "Spatie\\Invade\\": "src"
  6506. }
  6507. },
  6508. "notification-url": "https://packagist.org/downloads/",
  6509. "license": [
  6510. "MIT"
  6511. ],
  6512. "authors": [
  6513. {
  6514. "name": "Freek Van der Herten",
  6515. "email": "freek@spatie.be",
  6516. "role": "Developer"
  6517. }
  6518. ],
  6519. "description": "A PHP function to work with private properties and methods",
  6520. "homepage": "https://github.com/spatie/invade",
  6521. "keywords": [
  6522. "invade",
  6523. "spatie"
  6524. ],
  6525. "support": {
  6526. "source": "https://github.com/spatie/invade/tree/2.1.0"
  6527. },
  6528. "funding": [
  6529. {
  6530. "url": "https://github.com/spatie",
  6531. "type": "github"
  6532. }
  6533. ],
  6534. "time": "2024-05-17T09:06:10+00:00"
  6535. },
  6536. {
  6537. "name": "spatie/laravel-package-tools",
  6538. "version": "1.92.7",
  6539. "source": {
  6540. "type": "git",
  6541. "url": "https://github.com/spatie/laravel-package-tools.git",
  6542. "reference": "f09a799850b1ed765103a4f0b4355006360c49a5"
  6543. },
  6544. "dist": {
  6545. "type": "zip",
  6546. "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/f09a799850b1ed765103a4f0b4355006360c49a5",
  6547. "reference": "f09a799850b1ed765103a4f0b4355006360c49a5",
  6548. "shasum": ""
  6549. },
  6550. "require": {
  6551. "illuminate/contracts": "^9.28|^10.0|^11.0|^12.0",
  6552. "php": "^8.0"
  6553. },
  6554. "require-dev": {
  6555. "mockery/mockery": "^1.5",
  6556. "orchestra/testbench": "^7.7|^8.0|^9.0|^10.0",
  6557. "pestphp/pest": "^1.23|^2.1|^3.1",
  6558. "phpunit/php-code-coverage": "^9.0|^10.0|^11.0",
  6559. "phpunit/phpunit": "^9.5.24|^10.5|^11.5",
  6560. "spatie/pest-plugin-test-time": "^1.1|^2.2"
  6561. },
  6562. "type": "library",
  6563. "autoload": {
  6564. "psr-4": {
  6565. "Spatie\\LaravelPackageTools\\": "src"
  6566. }
  6567. },
  6568. "notification-url": "https://packagist.org/downloads/",
  6569. "license": [
  6570. "MIT"
  6571. ],
  6572. "authors": [
  6573. {
  6574. "name": "Freek Van der Herten",
  6575. "email": "freek@spatie.be",
  6576. "role": "Developer"
  6577. }
  6578. ],
  6579. "description": "Tools for creating Laravel packages",
  6580. "homepage": "https://github.com/spatie/laravel-package-tools",
  6581. "keywords": [
  6582. "laravel-package-tools",
  6583. "spatie"
  6584. ],
  6585. "support": {
  6586. "issues": "https://github.com/spatie/laravel-package-tools/issues",
  6587. "source": "https://github.com/spatie/laravel-package-tools/tree/1.92.7"
  6588. },
  6589. "funding": [
  6590. {
  6591. "url": "https://github.com/spatie",
  6592. "type": "github"
  6593. }
  6594. ],
  6595. "time": "2025-07-17T15:46:43+00:00"
  6596. },
  6597. {
  6598. "name": "squirephp/model",
  6599. "version": "v3.10.1",
  6600. "source": {
  6601. "type": "git",
  6602. "url": "https://github.com/squirephp/model.git",
  6603. "reference": "cdfb6eafff8ed8d7810aff7826623a9a0196a680"
  6604. },
  6605. "dist": {
  6606. "type": "zip",
  6607. "url": "https://api.github.com/repos/squirephp/model/zipball/cdfb6eafff8ed8d7810aff7826623a9a0196a680",
  6608. "reference": "cdfb6eafff8ed8d7810aff7826623a9a0196a680",
  6609. "shasum": ""
  6610. },
  6611. "require": {
  6612. "ext-pdo_sqlite": "*",
  6613. "illuminate/database": "^8.40|^9.0|^10.0|^11.0|^12.0",
  6614. "illuminate/support": "^8.0|^9.0|^10.0|^11.0|^12.0",
  6615. "php": "^8.0"
  6616. },
  6617. "type": "library",
  6618. "extra": {
  6619. "laravel": {
  6620. "providers": [
  6621. "Squire\\ModelServiceProvider"
  6622. ]
  6623. }
  6624. },
  6625. "autoload": {
  6626. "psr-4": {
  6627. "Squire\\": "src"
  6628. }
  6629. },
  6630. "notification-url": "https://packagist.org/downloads/",
  6631. "license": [
  6632. "MIT"
  6633. ],
  6634. "authors": [
  6635. {
  6636. "name": "Dan Harrin",
  6637. "email": "dan@danharrin.com"
  6638. }
  6639. ],
  6640. "description": "A library containing the base Squire model class.",
  6641. "homepage": "https://github.com/squirephp",
  6642. "keywords": [
  6643. "squire"
  6644. ],
  6645. "support": {
  6646. "issues": "https://github.com/squirephp/squire/issues",
  6647. "source": "https://github.com/squirephp/squire"
  6648. },
  6649. "time": "2025-02-25T08:15:59+00:00"
  6650. },
  6651. {
  6652. "name": "squirephp/repository",
  6653. "version": "v3.10.1",
  6654. "source": {
  6655. "type": "git",
  6656. "url": "https://github.com/squirephp/repository.git",
  6657. "reference": "6bbd33c1148949c2bb2f6499ce9897c874d0860c"
  6658. },
  6659. "dist": {
  6660. "type": "zip",
  6661. "url": "https://api.github.com/repos/squirephp/repository/zipball/6bbd33c1148949c2bb2f6499ce9897c874d0860c",
  6662. "reference": "6bbd33c1148949c2bb2f6499ce9897c874d0860c",
  6663. "shasum": ""
  6664. },
  6665. "require": {
  6666. "illuminate/support": "^8.0|^9.0|^10.0|^11.0|^12.0",
  6667. "php": "^8.0"
  6668. },
  6669. "type": "library",
  6670. "extra": {
  6671. "laravel": {
  6672. "aliases": {
  6673. "RepositoryManager": "Squire\\Repository\\Facades\\Repository"
  6674. },
  6675. "providers": [
  6676. "Squire\\RepositoryServiceProvider"
  6677. ]
  6678. }
  6679. },
  6680. "autoload": {
  6681. "psr-4": {
  6682. "Squire\\": "src"
  6683. }
  6684. },
  6685. "notification-url": "https://packagist.org/downloads/",
  6686. "license": [
  6687. "MIT"
  6688. ],
  6689. "authors": [
  6690. {
  6691. "name": "Dan Harrin",
  6692. "email": "dan@danharrin.com"
  6693. }
  6694. ],
  6695. "description": "A library containing the Squire repository.",
  6696. "homepage": "https://github.com/squirephp",
  6697. "keywords": [
  6698. "squire"
  6699. ],
  6700. "support": {
  6701. "issues": "https://github.com/squirephp/squire/issues",
  6702. "source": "https://github.com/squirephp/squire"
  6703. },
  6704. "time": "2025-02-25T08:16:09+00:00"
  6705. },
  6706. {
  6707. "name": "symfony/clock",
  6708. "version": "v7.3.0",
  6709. "source": {
  6710. "type": "git",
  6711. "url": "https://github.com/symfony/clock.git",
  6712. "reference": "b81435fbd6648ea425d1ee96a2d8e68f4ceacd24"
  6713. },
  6714. "dist": {
  6715. "type": "zip",
  6716. "url": "https://api.github.com/repos/symfony/clock/zipball/b81435fbd6648ea425d1ee96a2d8e68f4ceacd24",
  6717. "reference": "b81435fbd6648ea425d1ee96a2d8e68f4ceacd24",
  6718. "shasum": ""
  6719. },
  6720. "require": {
  6721. "php": ">=8.2",
  6722. "psr/clock": "^1.0",
  6723. "symfony/polyfill-php83": "^1.28"
  6724. },
  6725. "provide": {
  6726. "psr/clock-implementation": "1.0"
  6727. },
  6728. "type": "library",
  6729. "autoload": {
  6730. "files": [
  6731. "Resources/now.php"
  6732. ],
  6733. "psr-4": {
  6734. "Symfony\\Component\\Clock\\": ""
  6735. },
  6736. "exclude-from-classmap": [
  6737. "/Tests/"
  6738. ]
  6739. },
  6740. "notification-url": "https://packagist.org/downloads/",
  6741. "license": [
  6742. "MIT"
  6743. ],
  6744. "authors": [
  6745. {
  6746. "name": "Nicolas Grekas",
  6747. "email": "p@tchwork.com"
  6748. },
  6749. {
  6750. "name": "Symfony Community",
  6751. "homepage": "https://symfony.com/contributors"
  6752. }
  6753. ],
  6754. "description": "Decouples applications from the system clock",
  6755. "homepage": "https://symfony.com",
  6756. "keywords": [
  6757. "clock",
  6758. "psr20",
  6759. "time"
  6760. ],
  6761. "support": {
  6762. "source": "https://github.com/symfony/clock/tree/v7.3.0"
  6763. },
  6764. "funding": [
  6765. {
  6766. "url": "https://symfony.com/sponsor",
  6767. "type": "custom"
  6768. },
  6769. {
  6770. "url": "https://github.com/fabpot",
  6771. "type": "github"
  6772. },
  6773. {
  6774. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6775. "type": "tidelift"
  6776. }
  6777. ],
  6778. "time": "2024-09-25T14:21:43+00:00"
  6779. },
  6780. {
  6781. "name": "symfony/console",
  6782. "version": "v7.3.1",
  6783. "source": {
  6784. "type": "git",
  6785. "url": "https://github.com/symfony/console.git",
  6786. "reference": "9e27aecde8f506ba0fd1d9989620c04a87697101"
  6787. },
  6788. "dist": {
  6789. "type": "zip",
  6790. "url": "https://api.github.com/repos/symfony/console/zipball/9e27aecde8f506ba0fd1d9989620c04a87697101",
  6791. "reference": "9e27aecde8f506ba0fd1d9989620c04a87697101",
  6792. "shasum": ""
  6793. },
  6794. "require": {
  6795. "php": ">=8.2",
  6796. "symfony/deprecation-contracts": "^2.5|^3",
  6797. "symfony/polyfill-mbstring": "~1.0",
  6798. "symfony/service-contracts": "^2.5|^3",
  6799. "symfony/string": "^7.2"
  6800. },
  6801. "conflict": {
  6802. "symfony/dependency-injection": "<6.4",
  6803. "symfony/dotenv": "<6.4",
  6804. "symfony/event-dispatcher": "<6.4",
  6805. "symfony/lock": "<6.4",
  6806. "symfony/process": "<6.4"
  6807. },
  6808. "provide": {
  6809. "psr/log-implementation": "1.0|2.0|3.0"
  6810. },
  6811. "require-dev": {
  6812. "psr/log": "^1|^2|^3",
  6813. "symfony/config": "^6.4|^7.0",
  6814. "symfony/dependency-injection": "^6.4|^7.0",
  6815. "symfony/event-dispatcher": "^6.4|^7.0",
  6816. "symfony/http-foundation": "^6.4|^7.0",
  6817. "symfony/http-kernel": "^6.4|^7.0",
  6818. "symfony/lock": "^6.4|^7.0",
  6819. "symfony/messenger": "^6.4|^7.0",
  6820. "symfony/process": "^6.4|^7.0",
  6821. "symfony/stopwatch": "^6.4|^7.0",
  6822. "symfony/var-dumper": "^6.4|^7.0"
  6823. },
  6824. "type": "library",
  6825. "autoload": {
  6826. "psr-4": {
  6827. "Symfony\\Component\\Console\\": ""
  6828. },
  6829. "exclude-from-classmap": [
  6830. "/Tests/"
  6831. ]
  6832. },
  6833. "notification-url": "https://packagist.org/downloads/",
  6834. "license": [
  6835. "MIT"
  6836. ],
  6837. "authors": [
  6838. {
  6839. "name": "Fabien Potencier",
  6840. "email": "fabien@symfony.com"
  6841. },
  6842. {
  6843. "name": "Symfony Community",
  6844. "homepage": "https://symfony.com/contributors"
  6845. }
  6846. ],
  6847. "description": "Eases the creation of beautiful and testable command line interfaces",
  6848. "homepage": "https://symfony.com",
  6849. "keywords": [
  6850. "cli",
  6851. "command-line",
  6852. "console",
  6853. "terminal"
  6854. ],
  6855. "support": {
  6856. "source": "https://github.com/symfony/console/tree/v7.3.1"
  6857. },
  6858. "funding": [
  6859. {
  6860. "url": "https://symfony.com/sponsor",
  6861. "type": "custom"
  6862. },
  6863. {
  6864. "url": "https://github.com/fabpot",
  6865. "type": "github"
  6866. },
  6867. {
  6868. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6869. "type": "tidelift"
  6870. }
  6871. ],
  6872. "time": "2025-06-27T19:55:54+00:00"
  6873. },
  6874. {
  6875. "name": "symfony/css-selector",
  6876. "version": "v7.3.0",
  6877. "source": {
  6878. "type": "git",
  6879. "url": "https://github.com/symfony/css-selector.git",
  6880. "reference": "601a5ce9aaad7bf10797e3663faefce9e26c24e2"
  6881. },
  6882. "dist": {
  6883. "type": "zip",
  6884. "url": "https://api.github.com/repos/symfony/css-selector/zipball/601a5ce9aaad7bf10797e3663faefce9e26c24e2",
  6885. "reference": "601a5ce9aaad7bf10797e3663faefce9e26c24e2",
  6886. "shasum": ""
  6887. },
  6888. "require": {
  6889. "php": ">=8.2"
  6890. },
  6891. "type": "library",
  6892. "autoload": {
  6893. "psr-4": {
  6894. "Symfony\\Component\\CssSelector\\": ""
  6895. },
  6896. "exclude-from-classmap": [
  6897. "/Tests/"
  6898. ]
  6899. },
  6900. "notification-url": "https://packagist.org/downloads/",
  6901. "license": [
  6902. "MIT"
  6903. ],
  6904. "authors": [
  6905. {
  6906. "name": "Fabien Potencier",
  6907. "email": "fabien@symfony.com"
  6908. },
  6909. {
  6910. "name": "Jean-François Simon",
  6911. "email": "jeanfrancois.simon@sensiolabs.com"
  6912. },
  6913. {
  6914. "name": "Symfony Community",
  6915. "homepage": "https://symfony.com/contributors"
  6916. }
  6917. ],
  6918. "description": "Converts CSS selectors to XPath expressions",
  6919. "homepage": "https://symfony.com",
  6920. "support": {
  6921. "source": "https://github.com/symfony/css-selector/tree/v7.3.0"
  6922. },
  6923. "funding": [
  6924. {
  6925. "url": "https://symfony.com/sponsor",
  6926. "type": "custom"
  6927. },
  6928. {
  6929. "url": "https://github.com/fabpot",
  6930. "type": "github"
  6931. },
  6932. {
  6933. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6934. "type": "tidelift"
  6935. }
  6936. ],
  6937. "time": "2024-09-25T14:21:43+00:00"
  6938. },
  6939. {
  6940. "name": "symfony/deprecation-contracts",
  6941. "version": "v3.6.0",
  6942. "source": {
  6943. "type": "git",
  6944. "url": "https://github.com/symfony/deprecation-contracts.git",
  6945. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62"
  6946. },
  6947. "dist": {
  6948. "type": "zip",
  6949. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62",
  6950. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62",
  6951. "shasum": ""
  6952. },
  6953. "require": {
  6954. "php": ">=8.1"
  6955. },
  6956. "type": "library",
  6957. "extra": {
  6958. "thanks": {
  6959. "url": "https://github.com/symfony/contracts",
  6960. "name": "symfony/contracts"
  6961. },
  6962. "branch-alias": {
  6963. "dev-main": "3.6-dev"
  6964. }
  6965. },
  6966. "autoload": {
  6967. "files": [
  6968. "function.php"
  6969. ]
  6970. },
  6971. "notification-url": "https://packagist.org/downloads/",
  6972. "license": [
  6973. "MIT"
  6974. ],
  6975. "authors": [
  6976. {
  6977. "name": "Nicolas Grekas",
  6978. "email": "p@tchwork.com"
  6979. },
  6980. {
  6981. "name": "Symfony Community",
  6982. "homepage": "https://symfony.com/contributors"
  6983. }
  6984. ],
  6985. "description": "A generic function and convention to trigger deprecation notices",
  6986. "homepage": "https://symfony.com",
  6987. "support": {
  6988. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0"
  6989. },
  6990. "funding": [
  6991. {
  6992. "url": "https://symfony.com/sponsor",
  6993. "type": "custom"
  6994. },
  6995. {
  6996. "url": "https://github.com/fabpot",
  6997. "type": "github"
  6998. },
  6999. {
  7000. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7001. "type": "tidelift"
  7002. }
  7003. ],
  7004. "time": "2024-09-25T14:21:43+00:00"
  7005. },
  7006. {
  7007. "name": "symfony/error-handler",
  7008. "version": "v7.3.1",
  7009. "source": {
  7010. "type": "git",
  7011. "url": "https://github.com/symfony/error-handler.git",
  7012. "reference": "35b55b166f6752d6aaf21aa042fc5ed280fce235"
  7013. },
  7014. "dist": {
  7015. "type": "zip",
  7016. "url": "https://api.github.com/repos/symfony/error-handler/zipball/35b55b166f6752d6aaf21aa042fc5ed280fce235",
  7017. "reference": "35b55b166f6752d6aaf21aa042fc5ed280fce235",
  7018. "shasum": ""
  7019. },
  7020. "require": {
  7021. "php": ">=8.2",
  7022. "psr/log": "^1|^2|^3",
  7023. "symfony/var-dumper": "^6.4|^7.0"
  7024. },
  7025. "conflict": {
  7026. "symfony/deprecation-contracts": "<2.5",
  7027. "symfony/http-kernel": "<6.4"
  7028. },
  7029. "require-dev": {
  7030. "symfony/console": "^6.4|^7.0",
  7031. "symfony/deprecation-contracts": "^2.5|^3",
  7032. "symfony/http-kernel": "^6.4|^7.0",
  7033. "symfony/serializer": "^6.4|^7.0",
  7034. "symfony/webpack-encore-bundle": "^1.0|^2.0"
  7035. },
  7036. "bin": [
  7037. "Resources/bin/patch-type-declarations"
  7038. ],
  7039. "type": "library",
  7040. "autoload": {
  7041. "psr-4": {
  7042. "Symfony\\Component\\ErrorHandler\\": ""
  7043. },
  7044. "exclude-from-classmap": [
  7045. "/Tests/"
  7046. ]
  7047. },
  7048. "notification-url": "https://packagist.org/downloads/",
  7049. "license": [
  7050. "MIT"
  7051. ],
  7052. "authors": [
  7053. {
  7054. "name": "Fabien Potencier",
  7055. "email": "fabien@symfony.com"
  7056. },
  7057. {
  7058. "name": "Symfony Community",
  7059. "homepage": "https://symfony.com/contributors"
  7060. }
  7061. ],
  7062. "description": "Provides tools to manage errors and ease debugging PHP code",
  7063. "homepage": "https://symfony.com",
  7064. "support": {
  7065. "source": "https://github.com/symfony/error-handler/tree/v7.3.1"
  7066. },
  7067. "funding": [
  7068. {
  7069. "url": "https://symfony.com/sponsor",
  7070. "type": "custom"
  7071. },
  7072. {
  7073. "url": "https://github.com/fabpot",
  7074. "type": "github"
  7075. },
  7076. {
  7077. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7078. "type": "tidelift"
  7079. }
  7080. ],
  7081. "time": "2025-06-13T07:48:40+00:00"
  7082. },
  7083. {
  7084. "name": "symfony/event-dispatcher",
  7085. "version": "v7.3.0",
  7086. "source": {
  7087. "type": "git",
  7088. "url": "https://github.com/symfony/event-dispatcher.git",
  7089. "reference": "497f73ac996a598c92409b44ac43b6690c4f666d"
  7090. },
  7091. "dist": {
  7092. "type": "zip",
  7093. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/497f73ac996a598c92409b44ac43b6690c4f666d",
  7094. "reference": "497f73ac996a598c92409b44ac43b6690c4f666d",
  7095. "shasum": ""
  7096. },
  7097. "require": {
  7098. "php": ">=8.2",
  7099. "symfony/event-dispatcher-contracts": "^2.5|^3"
  7100. },
  7101. "conflict": {
  7102. "symfony/dependency-injection": "<6.4",
  7103. "symfony/service-contracts": "<2.5"
  7104. },
  7105. "provide": {
  7106. "psr/event-dispatcher-implementation": "1.0",
  7107. "symfony/event-dispatcher-implementation": "2.0|3.0"
  7108. },
  7109. "require-dev": {
  7110. "psr/log": "^1|^2|^3",
  7111. "symfony/config": "^6.4|^7.0",
  7112. "symfony/dependency-injection": "^6.4|^7.0",
  7113. "symfony/error-handler": "^6.4|^7.0",
  7114. "symfony/expression-language": "^6.4|^7.0",
  7115. "symfony/http-foundation": "^6.4|^7.0",
  7116. "symfony/service-contracts": "^2.5|^3",
  7117. "symfony/stopwatch": "^6.4|^7.0"
  7118. },
  7119. "type": "library",
  7120. "autoload": {
  7121. "psr-4": {
  7122. "Symfony\\Component\\EventDispatcher\\": ""
  7123. },
  7124. "exclude-from-classmap": [
  7125. "/Tests/"
  7126. ]
  7127. },
  7128. "notification-url": "https://packagist.org/downloads/",
  7129. "license": [
  7130. "MIT"
  7131. ],
  7132. "authors": [
  7133. {
  7134. "name": "Fabien Potencier",
  7135. "email": "fabien@symfony.com"
  7136. },
  7137. {
  7138. "name": "Symfony Community",
  7139. "homepage": "https://symfony.com/contributors"
  7140. }
  7141. ],
  7142. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  7143. "homepage": "https://symfony.com",
  7144. "support": {
  7145. "source": "https://github.com/symfony/event-dispatcher/tree/v7.3.0"
  7146. },
  7147. "funding": [
  7148. {
  7149. "url": "https://symfony.com/sponsor",
  7150. "type": "custom"
  7151. },
  7152. {
  7153. "url": "https://github.com/fabpot",
  7154. "type": "github"
  7155. },
  7156. {
  7157. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7158. "type": "tidelift"
  7159. }
  7160. ],
  7161. "time": "2025-04-22T09:11:45+00:00"
  7162. },
  7163. {
  7164. "name": "symfony/event-dispatcher-contracts",
  7165. "version": "v3.6.0",
  7166. "source": {
  7167. "type": "git",
  7168. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  7169. "reference": "59eb412e93815df44f05f342958efa9f46b1e586"
  7170. },
  7171. "dist": {
  7172. "type": "zip",
  7173. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/59eb412e93815df44f05f342958efa9f46b1e586",
  7174. "reference": "59eb412e93815df44f05f342958efa9f46b1e586",
  7175. "shasum": ""
  7176. },
  7177. "require": {
  7178. "php": ">=8.1",
  7179. "psr/event-dispatcher": "^1"
  7180. },
  7181. "type": "library",
  7182. "extra": {
  7183. "thanks": {
  7184. "url": "https://github.com/symfony/contracts",
  7185. "name": "symfony/contracts"
  7186. },
  7187. "branch-alias": {
  7188. "dev-main": "3.6-dev"
  7189. }
  7190. },
  7191. "autoload": {
  7192. "psr-4": {
  7193. "Symfony\\Contracts\\EventDispatcher\\": ""
  7194. }
  7195. },
  7196. "notification-url": "https://packagist.org/downloads/",
  7197. "license": [
  7198. "MIT"
  7199. ],
  7200. "authors": [
  7201. {
  7202. "name": "Nicolas Grekas",
  7203. "email": "p@tchwork.com"
  7204. },
  7205. {
  7206. "name": "Symfony Community",
  7207. "homepage": "https://symfony.com/contributors"
  7208. }
  7209. ],
  7210. "description": "Generic abstractions related to dispatching event",
  7211. "homepage": "https://symfony.com",
  7212. "keywords": [
  7213. "abstractions",
  7214. "contracts",
  7215. "decoupling",
  7216. "interfaces",
  7217. "interoperability",
  7218. "standards"
  7219. ],
  7220. "support": {
  7221. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.6.0"
  7222. },
  7223. "funding": [
  7224. {
  7225. "url": "https://symfony.com/sponsor",
  7226. "type": "custom"
  7227. },
  7228. {
  7229. "url": "https://github.com/fabpot",
  7230. "type": "github"
  7231. },
  7232. {
  7233. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7234. "type": "tidelift"
  7235. }
  7236. ],
  7237. "time": "2024-09-25T14:21:43+00:00"
  7238. },
  7239. {
  7240. "name": "symfony/finder",
  7241. "version": "v7.3.0",
  7242. "source": {
  7243. "type": "git",
  7244. "url": "https://github.com/symfony/finder.git",
  7245. "reference": "ec2344cf77a48253bbca6939aa3d2477773ea63d"
  7246. },
  7247. "dist": {
  7248. "type": "zip",
  7249. "url": "https://api.github.com/repos/symfony/finder/zipball/ec2344cf77a48253bbca6939aa3d2477773ea63d",
  7250. "reference": "ec2344cf77a48253bbca6939aa3d2477773ea63d",
  7251. "shasum": ""
  7252. },
  7253. "require": {
  7254. "php": ">=8.2"
  7255. },
  7256. "require-dev": {
  7257. "symfony/filesystem": "^6.4|^7.0"
  7258. },
  7259. "type": "library",
  7260. "autoload": {
  7261. "psr-4": {
  7262. "Symfony\\Component\\Finder\\": ""
  7263. },
  7264. "exclude-from-classmap": [
  7265. "/Tests/"
  7266. ]
  7267. },
  7268. "notification-url": "https://packagist.org/downloads/",
  7269. "license": [
  7270. "MIT"
  7271. ],
  7272. "authors": [
  7273. {
  7274. "name": "Fabien Potencier",
  7275. "email": "fabien@symfony.com"
  7276. },
  7277. {
  7278. "name": "Symfony Community",
  7279. "homepage": "https://symfony.com/contributors"
  7280. }
  7281. ],
  7282. "description": "Finds files and directories via an intuitive fluent interface",
  7283. "homepage": "https://symfony.com",
  7284. "support": {
  7285. "source": "https://github.com/symfony/finder/tree/v7.3.0"
  7286. },
  7287. "funding": [
  7288. {
  7289. "url": "https://symfony.com/sponsor",
  7290. "type": "custom"
  7291. },
  7292. {
  7293. "url": "https://github.com/fabpot",
  7294. "type": "github"
  7295. },
  7296. {
  7297. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7298. "type": "tidelift"
  7299. }
  7300. ],
  7301. "time": "2024-12-30T19:00:26+00:00"
  7302. },
  7303. {
  7304. "name": "symfony/html-sanitizer",
  7305. "version": "v7.3.0",
  7306. "source": {
  7307. "type": "git",
  7308. "url": "https://github.com/symfony/html-sanitizer.git",
  7309. "reference": "cf21254e982b12276329940ca4af5e623ee06c58"
  7310. },
  7311. "dist": {
  7312. "type": "zip",
  7313. "url": "https://api.github.com/repos/symfony/html-sanitizer/zipball/cf21254e982b12276329940ca4af5e623ee06c58",
  7314. "reference": "cf21254e982b12276329940ca4af5e623ee06c58",
  7315. "shasum": ""
  7316. },
  7317. "require": {
  7318. "ext-dom": "*",
  7319. "league/uri": "^6.5|^7.0",
  7320. "masterminds/html5": "^2.7.2",
  7321. "php": ">=8.2"
  7322. },
  7323. "type": "library",
  7324. "autoload": {
  7325. "psr-4": {
  7326. "Symfony\\Component\\HtmlSanitizer\\": ""
  7327. },
  7328. "exclude-from-classmap": [
  7329. "/Tests/"
  7330. ]
  7331. },
  7332. "notification-url": "https://packagist.org/downloads/",
  7333. "license": [
  7334. "MIT"
  7335. ],
  7336. "authors": [
  7337. {
  7338. "name": "Titouan Galopin",
  7339. "email": "galopintitouan@gmail.com"
  7340. },
  7341. {
  7342. "name": "Symfony Community",
  7343. "homepage": "https://symfony.com/contributors"
  7344. }
  7345. ],
  7346. "description": "Provides an object-oriented API to sanitize untrusted HTML input for safe insertion into a document's DOM.",
  7347. "homepage": "https://symfony.com",
  7348. "keywords": [
  7349. "Purifier",
  7350. "html",
  7351. "sanitizer"
  7352. ],
  7353. "support": {
  7354. "source": "https://github.com/symfony/html-sanitizer/tree/v7.3.0"
  7355. },
  7356. "funding": [
  7357. {
  7358. "url": "https://symfony.com/sponsor",
  7359. "type": "custom"
  7360. },
  7361. {
  7362. "url": "https://github.com/fabpot",
  7363. "type": "github"
  7364. },
  7365. {
  7366. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7367. "type": "tidelift"
  7368. }
  7369. ],
  7370. "time": "2025-03-31T08:49:55+00:00"
  7371. },
  7372. {
  7373. "name": "symfony/http-foundation",
  7374. "version": "v7.3.1",
  7375. "source": {
  7376. "type": "git",
  7377. "url": "https://github.com/symfony/http-foundation.git",
  7378. "reference": "23dd60256610c86a3414575b70c596e5deff6ed9"
  7379. },
  7380. "dist": {
  7381. "type": "zip",
  7382. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/23dd60256610c86a3414575b70c596e5deff6ed9",
  7383. "reference": "23dd60256610c86a3414575b70c596e5deff6ed9",
  7384. "shasum": ""
  7385. },
  7386. "require": {
  7387. "php": ">=8.2",
  7388. "symfony/deprecation-contracts": "^2.5|^3.0",
  7389. "symfony/polyfill-mbstring": "~1.1",
  7390. "symfony/polyfill-php83": "^1.27"
  7391. },
  7392. "conflict": {
  7393. "doctrine/dbal": "<3.6",
  7394. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  7395. },
  7396. "require-dev": {
  7397. "doctrine/dbal": "^3.6|^4",
  7398. "predis/predis": "^1.1|^2.0",
  7399. "symfony/cache": "^6.4.12|^7.1.5",
  7400. "symfony/clock": "^6.4|^7.0",
  7401. "symfony/dependency-injection": "^6.4|^7.0",
  7402. "symfony/expression-language": "^6.4|^7.0",
  7403. "symfony/http-kernel": "^6.4|^7.0",
  7404. "symfony/mime": "^6.4|^7.0",
  7405. "symfony/rate-limiter": "^6.4|^7.0"
  7406. },
  7407. "type": "library",
  7408. "autoload": {
  7409. "psr-4": {
  7410. "Symfony\\Component\\HttpFoundation\\": ""
  7411. },
  7412. "exclude-from-classmap": [
  7413. "/Tests/"
  7414. ]
  7415. },
  7416. "notification-url": "https://packagist.org/downloads/",
  7417. "license": [
  7418. "MIT"
  7419. ],
  7420. "authors": [
  7421. {
  7422. "name": "Fabien Potencier",
  7423. "email": "fabien@symfony.com"
  7424. },
  7425. {
  7426. "name": "Symfony Community",
  7427. "homepage": "https://symfony.com/contributors"
  7428. }
  7429. ],
  7430. "description": "Defines an object-oriented layer for the HTTP specification",
  7431. "homepage": "https://symfony.com",
  7432. "support": {
  7433. "source": "https://github.com/symfony/http-foundation/tree/v7.3.1"
  7434. },
  7435. "funding": [
  7436. {
  7437. "url": "https://symfony.com/sponsor",
  7438. "type": "custom"
  7439. },
  7440. {
  7441. "url": "https://github.com/fabpot",
  7442. "type": "github"
  7443. },
  7444. {
  7445. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7446. "type": "tidelift"
  7447. }
  7448. ],
  7449. "time": "2025-06-23T15:07:14+00:00"
  7450. },
  7451. {
  7452. "name": "symfony/http-kernel",
  7453. "version": "v7.3.1",
  7454. "source": {
  7455. "type": "git",
  7456. "url": "https://github.com/symfony/http-kernel.git",
  7457. "reference": "1644879a66e4aa29c36fe33dfa6c54b450ce1831"
  7458. },
  7459. "dist": {
  7460. "type": "zip",
  7461. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/1644879a66e4aa29c36fe33dfa6c54b450ce1831",
  7462. "reference": "1644879a66e4aa29c36fe33dfa6c54b450ce1831",
  7463. "shasum": ""
  7464. },
  7465. "require": {
  7466. "php": ">=8.2",
  7467. "psr/log": "^1|^2|^3",
  7468. "symfony/deprecation-contracts": "^2.5|^3",
  7469. "symfony/error-handler": "^6.4|^7.0",
  7470. "symfony/event-dispatcher": "^7.3",
  7471. "symfony/http-foundation": "^7.3",
  7472. "symfony/polyfill-ctype": "^1.8"
  7473. },
  7474. "conflict": {
  7475. "symfony/browser-kit": "<6.4",
  7476. "symfony/cache": "<6.4",
  7477. "symfony/config": "<6.4",
  7478. "symfony/console": "<6.4",
  7479. "symfony/dependency-injection": "<6.4",
  7480. "symfony/doctrine-bridge": "<6.4",
  7481. "symfony/form": "<6.4",
  7482. "symfony/http-client": "<6.4",
  7483. "symfony/http-client-contracts": "<2.5",
  7484. "symfony/mailer": "<6.4",
  7485. "symfony/messenger": "<6.4",
  7486. "symfony/translation": "<6.4",
  7487. "symfony/translation-contracts": "<2.5",
  7488. "symfony/twig-bridge": "<6.4",
  7489. "symfony/validator": "<6.4",
  7490. "symfony/var-dumper": "<6.4",
  7491. "twig/twig": "<3.12"
  7492. },
  7493. "provide": {
  7494. "psr/log-implementation": "1.0|2.0|3.0"
  7495. },
  7496. "require-dev": {
  7497. "psr/cache": "^1.0|^2.0|^3.0",
  7498. "symfony/browser-kit": "^6.4|^7.0",
  7499. "symfony/clock": "^6.4|^7.0",
  7500. "symfony/config": "^6.4|^7.0",
  7501. "symfony/console": "^6.4|^7.0",
  7502. "symfony/css-selector": "^6.4|^7.0",
  7503. "symfony/dependency-injection": "^6.4|^7.0",
  7504. "symfony/dom-crawler": "^6.4|^7.0",
  7505. "symfony/expression-language": "^6.4|^7.0",
  7506. "symfony/finder": "^6.4|^7.0",
  7507. "symfony/http-client-contracts": "^2.5|^3",
  7508. "symfony/process": "^6.4|^7.0",
  7509. "symfony/property-access": "^7.1",
  7510. "symfony/routing": "^6.4|^7.0",
  7511. "symfony/serializer": "^7.1",
  7512. "symfony/stopwatch": "^6.4|^7.0",
  7513. "symfony/translation": "^6.4|^7.0",
  7514. "symfony/translation-contracts": "^2.5|^3",
  7515. "symfony/uid": "^6.4|^7.0",
  7516. "symfony/validator": "^6.4|^7.0",
  7517. "symfony/var-dumper": "^6.4|^7.0",
  7518. "symfony/var-exporter": "^6.4|^7.0",
  7519. "twig/twig": "^3.12"
  7520. },
  7521. "type": "library",
  7522. "autoload": {
  7523. "psr-4": {
  7524. "Symfony\\Component\\HttpKernel\\": ""
  7525. },
  7526. "exclude-from-classmap": [
  7527. "/Tests/"
  7528. ]
  7529. },
  7530. "notification-url": "https://packagist.org/downloads/",
  7531. "license": [
  7532. "MIT"
  7533. ],
  7534. "authors": [
  7535. {
  7536. "name": "Fabien Potencier",
  7537. "email": "fabien@symfony.com"
  7538. },
  7539. {
  7540. "name": "Symfony Community",
  7541. "homepage": "https://symfony.com/contributors"
  7542. }
  7543. ],
  7544. "description": "Provides a structured process for converting a Request into a Response",
  7545. "homepage": "https://symfony.com",
  7546. "support": {
  7547. "source": "https://github.com/symfony/http-kernel/tree/v7.3.1"
  7548. },
  7549. "funding": [
  7550. {
  7551. "url": "https://symfony.com/sponsor",
  7552. "type": "custom"
  7553. },
  7554. {
  7555. "url": "https://github.com/fabpot",
  7556. "type": "github"
  7557. },
  7558. {
  7559. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7560. "type": "tidelift"
  7561. }
  7562. ],
  7563. "time": "2025-06-28T08:24:55+00:00"
  7564. },
  7565. {
  7566. "name": "symfony/intl",
  7567. "version": "v6.4.23",
  7568. "source": {
  7569. "type": "git",
  7570. "url": "https://github.com/symfony/intl.git",
  7571. "reference": "a3b12ce29a770d1f26c380dabf56a71bc2a88c84"
  7572. },
  7573. "dist": {
  7574. "type": "zip",
  7575. "url": "https://api.github.com/repos/symfony/intl/zipball/a3b12ce29a770d1f26c380dabf56a71bc2a88c84",
  7576. "reference": "a3b12ce29a770d1f26c380dabf56a71bc2a88c84",
  7577. "shasum": ""
  7578. },
  7579. "require": {
  7580. "php": ">=8.1"
  7581. },
  7582. "require-dev": {
  7583. "symfony/filesystem": "^5.4|^6.0|^7.0",
  7584. "symfony/finder": "^5.4|^6.0|^7.0",
  7585. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  7586. },
  7587. "type": "library",
  7588. "autoload": {
  7589. "psr-4": {
  7590. "Symfony\\Component\\Intl\\": ""
  7591. },
  7592. "exclude-from-classmap": [
  7593. "/Tests/",
  7594. "/Resources/data/"
  7595. ]
  7596. },
  7597. "notification-url": "https://packagist.org/downloads/",
  7598. "license": [
  7599. "MIT"
  7600. ],
  7601. "authors": [
  7602. {
  7603. "name": "Bernhard Schussek",
  7604. "email": "bschussek@gmail.com"
  7605. },
  7606. {
  7607. "name": "Eriksen Costa",
  7608. "email": "eriksen.costa@infranology.com.br"
  7609. },
  7610. {
  7611. "name": "Igor Wiedler",
  7612. "email": "igor@wiedler.ch"
  7613. },
  7614. {
  7615. "name": "Symfony Community",
  7616. "homepage": "https://symfony.com/contributors"
  7617. }
  7618. ],
  7619. "description": "Provides access to the localization data of the ICU library",
  7620. "homepage": "https://symfony.com",
  7621. "keywords": [
  7622. "i18n",
  7623. "icu",
  7624. "internationalization",
  7625. "intl",
  7626. "l10n",
  7627. "localization"
  7628. ],
  7629. "support": {
  7630. "source": "https://github.com/symfony/intl/tree/v6.4.23"
  7631. },
  7632. "funding": [
  7633. {
  7634. "url": "https://symfony.com/sponsor",
  7635. "type": "custom"
  7636. },
  7637. {
  7638. "url": "https://github.com/fabpot",
  7639. "type": "github"
  7640. },
  7641. {
  7642. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7643. "type": "tidelift"
  7644. }
  7645. ],
  7646. "time": "2025-06-06T07:42:46+00:00"
  7647. },
  7648. {
  7649. "name": "symfony/mailer",
  7650. "version": "v7.3.1",
  7651. "source": {
  7652. "type": "git",
  7653. "url": "https://github.com/symfony/mailer.git",
  7654. "reference": "b5db5105b290bdbea5ab27b89c69effcf1cb3368"
  7655. },
  7656. "dist": {
  7657. "type": "zip",
  7658. "url": "https://api.github.com/repos/symfony/mailer/zipball/b5db5105b290bdbea5ab27b89c69effcf1cb3368",
  7659. "reference": "b5db5105b290bdbea5ab27b89c69effcf1cb3368",
  7660. "shasum": ""
  7661. },
  7662. "require": {
  7663. "egulias/email-validator": "^2.1.10|^3|^4",
  7664. "php": ">=8.2",
  7665. "psr/event-dispatcher": "^1",
  7666. "psr/log": "^1|^2|^3",
  7667. "symfony/event-dispatcher": "^6.4|^7.0",
  7668. "symfony/mime": "^7.2",
  7669. "symfony/service-contracts": "^2.5|^3"
  7670. },
  7671. "conflict": {
  7672. "symfony/http-client-contracts": "<2.5",
  7673. "symfony/http-kernel": "<6.4",
  7674. "symfony/messenger": "<6.4",
  7675. "symfony/mime": "<6.4",
  7676. "symfony/twig-bridge": "<6.4"
  7677. },
  7678. "require-dev": {
  7679. "symfony/console": "^6.4|^7.0",
  7680. "symfony/http-client": "^6.4|^7.0",
  7681. "symfony/messenger": "^6.4|^7.0",
  7682. "symfony/twig-bridge": "^6.4|^7.0"
  7683. },
  7684. "type": "library",
  7685. "autoload": {
  7686. "psr-4": {
  7687. "Symfony\\Component\\Mailer\\": ""
  7688. },
  7689. "exclude-from-classmap": [
  7690. "/Tests/"
  7691. ]
  7692. },
  7693. "notification-url": "https://packagist.org/downloads/",
  7694. "license": [
  7695. "MIT"
  7696. ],
  7697. "authors": [
  7698. {
  7699. "name": "Fabien Potencier",
  7700. "email": "fabien@symfony.com"
  7701. },
  7702. {
  7703. "name": "Symfony Community",
  7704. "homepage": "https://symfony.com/contributors"
  7705. }
  7706. ],
  7707. "description": "Helps sending emails",
  7708. "homepage": "https://symfony.com",
  7709. "support": {
  7710. "source": "https://github.com/symfony/mailer/tree/v7.3.1"
  7711. },
  7712. "funding": [
  7713. {
  7714. "url": "https://symfony.com/sponsor",
  7715. "type": "custom"
  7716. },
  7717. {
  7718. "url": "https://github.com/fabpot",
  7719. "type": "github"
  7720. },
  7721. {
  7722. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7723. "type": "tidelift"
  7724. }
  7725. ],
  7726. "time": "2025-06-27T19:55:54+00:00"
  7727. },
  7728. {
  7729. "name": "symfony/mime",
  7730. "version": "v7.3.0",
  7731. "source": {
  7732. "type": "git",
  7733. "url": "https://github.com/symfony/mime.git",
  7734. "reference": "0e7b19b2f399c31df0cdbe5d8cbf53f02f6cfcd9"
  7735. },
  7736. "dist": {
  7737. "type": "zip",
  7738. "url": "https://api.github.com/repos/symfony/mime/zipball/0e7b19b2f399c31df0cdbe5d8cbf53f02f6cfcd9",
  7739. "reference": "0e7b19b2f399c31df0cdbe5d8cbf53f02f6cfcd9",
  7740. "shasum": ""
  7741. },
  7742. "require": {
  7743. "php": ">=8.2",
  7744. "symfony/polyfill-intl-idn": "^1.10",
  7745. "symfony/polyfill-mbstring": "^1.0"
  7746. },
  7747. "conflict": {
  7748. "egulias/email-validator": "~3.0.0",
  7749. "phpdocumentor/reflection-docblock": "<3.2.2",
  7750. "phpdocumentor/type-resolver": "<1.4.0",
  7751. "symfony/mailer": "<6.4",
  7752. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  7753. },
  7754. "require-dev": {
  7755. "egulias/email-validator": "^2.1.10|^3.1|^4",
  7756. "league/html-to-markdown": "^5.0",
  7757. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7758. "symfony/dependency-injection": "^6.4|^7.0",
  7759. "symfony/process": "^6.4|^7.0",
  7760. "symfony/property-access": "^6.4|^7.0",
  7761. "symfony/property-info": "^6.4|^7.0",
  7762. "symfony/serializer": "^6.4.3|^7.0.3"
  7763. },
  7764. "type": "library",
  7765. "autoload": {
  7766. "psr-4": {
  7767. "Symfony\\Component\\Mime\\": ""
  7768. },
  7769. "exclude-from-classmap": [
  7770. "/Tests/"
  7771. ]
  7772. },
  7773. "notification-url": "https://packagist.org/downloads/",
  7774. "license": [
  7775. "MIT"
  7776. ],
  7777. "authors": [
  7778. {
  7779. "name": "Fabien Potencier",
  7780. "email": "fabien@symfony.com"
  7781. },
  7782. {
  7783. "name": "Symfony Community",
  7784. "homepage": "https://symfony.com/contributors"
  7785. }
  7786. ],
  7787. "description": "Allows manipulating MIME messages",
  7788. "homepage": "https://symfony.com",
  7789. "keywords": [
  7790. "mime",
  7791. "mime-type"
  7792. ],
  7793. "support": {
  7794. "source": "https://github.com/symfony/mime/tree/v7.3.0"
  7795. },
  7796. "funding": [
  7797. {
  7798. "url": "https://symfony.com/sponsor",
  7799. "type": "custom"
  7800. },
  7801. {
  7802. "url": "https://github.com/fabpot",
  7803. "type": "github"
  7804. },
  7805. {
  7806. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7807. "type": "tidelift"
  7808. }
  7809. ],
  7810. "time": "2025-02-19T08:51:26+00:00"
  7811. },
  7812. {
  7813. "name": "symfony/polyfill-ctype",
  7814. "version": "v1.32.0",
  7815. "source": {
  7816. "type": "git",
  7817. "url": "https://github.com/symfony/polyfill-ctype.git",
  7818. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  7819. },
  7820. "dist": {
  7821. "type": "zip",
  7822. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  7823. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  7824. "shasum": ""
  7825. },
  7826. "require": {
  7827. "php": ">=7.2"
  7828. },
  7829. "provide": {
  7830. "ext-ctype": "*"
  7831. },
  7832. "suggest": {
  7833. "ext-ctype": "For best performance"
  7834. },
  7835. "type": "library",
  7836. "extra": {
  7837. "thanks": {
  7838. "url": "https://github.com/symfony/polyfill",
  7839. "name": "symfony/polyfill"
  7840. }
  7841. },
  7842. "autoload": {
  7843. "files": [
  7844. "bootstrap.php"
  7845. ],
  7846. "psr-4": {
  7847. "Symfony\\Polyfill\\Ctype\\": ""
  7848. }
  7849. },
  7850. "notification-url": "https://packagist.org/downloads/",
  7851. "license": [
  7852. "MIT"
  7853. ],
  7854. "authors": [
  7855. {
  7856. "name": "Gert de Pagter",
  7857. "email": "BackEndTea@gmail.com"
  7858. },
  7859. {
  7860. "name": "Symfony Community",
  7861. "homepage": "https://symfony.com/contributors"
  7862. }
  7863. ],
  7864. "description": "Symfony polyfill for ctype functions",
  7865. "homepage": "https://symfony.com",
  7866. "keywords": [
  7867. "compatibility",
  7868. "ctype",
  7869. "polyfill",
  7870. "portable"
  7871. ],
  7872. "support": {
  7873. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.32.0"
  7874. },
  7875. "funding": [
  7876. {
  7877. "url": "https://symfony.com/sponsor",
  7878. "type": "custom"
  7879. },
  7880. {
  7881. "url": "https://github.com/fabpot",
  7882. "type": "github"
  7883. },
  7884. {
  7885. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7886. "type": "tidelift"
  7887. }
  7888. ],
  7889. "time": "2024-09-09T11:45:10+00:00"
  7890. },
  7891. {
  7892. "name": "symfony/polyfill-intl-grapheme",
  7893. "version": "v1.32.0",
  7894. "source": {
  7895. "type": "git",
  7896. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  7897. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  7898. },
  7899. "dist": {
  7900. "type": "zip",
  7901. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  7902. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  7903. "shasum": ""
  7904. },
  7905. "require": {
  7906. "php": ">=7.2"
  7907. },
  7908. "suggest": {
  7909. "ext-intl": "For best performance"
  7910. },
  7911. "type": "library",
  7912. "extra": {
  7913. "thanks": {
  7914. "url": "https://github.com/symfony/polyfill",
  7915. "name": "symfony/polyfill"
  7916. }
  7917. },
  7918. "autoload": {
  7919. "files": [
  7920. "bootstrap.php"
  7921. ],
  7922. "psr-4": {
  7923. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  7924. }
  7925. },
  7926. "notification-url": "https://packagist.org/downloads/",
  7927. "license": [
  7928. "MIT"
  7929. ],
  7930. "authors": [
  7931. {
  7932. "name": "Nicolas Grekas",
  7933. "email": "p@tchwork.com"
  7934. },
  7935. {
  7936. "name": "Symfony Community",
  7937. "homepage": "https://symfony.com/contributors"
  7938. }
  7939. ],
  7940. "description": "Symfony polyfill for intl's grapheme_* functions",
  7941. "homepage": "https://symfony.com",
  7942. "keywords": [
  7943. "compatibility",
  7944. "grapheme",
  7945. "intl",
  7946. "polyfill",
  7947. "portable",
  7948. "shim"
  7949. ],
  7950. "support": {
  7951. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.32.0"
  7952. },
  7953. "funding": [
  7954. {
  7955. "url": "https://symfony.com/sponsor",
  7956. "type": "custom"
  7957. },
  7958. {
  7959. "url": "https://github.com/fabpot",
  7960. "type": "github"
  7961. },
  7962. {
  7963. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7964. "type": "tidelift"
  7965. }
  7966. ],
  7967. "time": "2024-09-09T11:45:10+00:00"
  7968. },
  7969. {
  7970. "name": "symfony/polyfill-intl-idn",
  7971. "version": "v1.32.0",
  7972. "source": {
  7973. "type": "git",
  7974. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  7975. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3"
  7976. },
  7977. "dist": {
  7978. "type": "zip",
  7979. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  7980. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  7981. "shasum": ""
  7982. },
  7983. "require": {
  7984. "php": ">=7.2",
  7985. "symfony/polyfill-intl-normalizer": "^1.10"
  7986. },
  7987. "suggest": {
  7988. "ext-intl": "For best performance"
  7989. },
  7990. "type": "library",
  7991. "extra": {
  7992. "thanks": {
  7993. "url": "https://github.com/symfony/polyfill",
  7994. "name": "symfony/polyfill"
  7995. }
  7996. },
  7997. "autoload": {
  7998. "files": [
  7999. "bootstrap.php"
  8000. ],
  8001. "psr-4": {
  8002. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  8003. }
  8004. },
  8005. "notification-url": "https://packagist.org/downloads/",
  8006. "license": [
  8007. "MIT"
  8008. ],
  8009. "authors": [
  8010. {
  8011. "name": "Laurent Bassin",
  8012. "email": "laurent@bassin.info"
  8013. },
  8014. {
  8015. "name": "Trevor Rowbotham",
  8016. "email": "trevor.rowbotham@pm.me"
  8017. },
  8018. {
  8019. "name": "Symfony Community",
  8020. "homepage": "https://symfony.com/contributors"
  8021. }
  8022. ],
  8023. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  8024. "homepage": "https://symfony.com",
  8025. "keywords": [
  8026. "compatibility",
  8027. "idn",
  8028. "intl",
  8029. "polyfill",
  8030. "portable",
  8031. "shim"
  8032. ],
  8033. "support": {
  8034. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.32.0"
  8035. },
  8036. "funding": [
  8037. {
  8038. "url": "https://symfony.com/sponsor",
  8039. "type": "custom"
  8040. },
  8041. {
  8042. "url": "https://github.com/fabpot",
  8043. "type": "github"
  8044. },
  8045. {
  8046. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8047. "type": "tidelift"
  8048. }
  8049. ],
  8050. "time": "2024-09-10T14:38:51+00:00"
  8051. },
  8052. {
  8053. "name": "symfony/polyfill-intl-normalizer",
  8054. "version": "v1.32.0",
  8055. "source": {
  8056. "type": "git",
  8057. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  8058. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  8059. },
  8060. "dist": {
  8061. "type": "zip",
  8062. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  8063. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  8064. "shasum": ""
  8065. },
  8066. "require": {
  8067. "php": ">=7.2"
  8068. },
  8069. "suggest": {
  8070. "ext-intl": "For best performance"
  8071. },
  8072. "type": "library",
  8073. "extra": {
  8074. "thanks": {
  8075. "url": "https://github.com/symfony/polyfill",
  8076. "name": "symfony/polyfill"
  8077. }
  8078. },
  8079. "autoload": {
  8080. "files": [
  8081. "bootstrap.php"
  8082. ],
  8083. "psr-4": {
  8084. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  8085. },
  8086. "classmap": [
  8087. "Resources/stubs"
  8088. ]
  8089. },
  8090. "notification-url": "https://packagist.org/downloads/",
  8091. "license": [
  8092. "MIT"
  8093. ],
  8094. "authors": [
  8095. {
  8096. "name": "Nicolas Grekas",
  8097. "email": "p@tchwork.com"
  8098. },
  8099. {
  8100. "name": "Symfony Community",
  8101. "homepage": "https://symfony.com/contributors"
  8102. }
  8103. ],
  8104. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  8105. "homepage": "https://symfony.com",
  8106. "keywords": [
  8107. "compatibility",
  8108. "intl",
  8109. "normalizer",
  8110. "polyfill",
  8111. "portable",
  8112. "shim"
  8113. ],
  8114. "support": {
  8115. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.32.0"
  8116. },
  8117. "funding": [
  8118. {
  8119. "url": "https://symfony.com/sponsor",
  8120. "type": "custom"
  8121. },
  8122. {
  8123. "url": "https://github.com/fabpot",
  8124. "type": "github"
  8125. },
  8126. {
  8127. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8128. "type": "tidelift"
  8129. }
  8130. ],
  8131. "time": "2024-09-09T11:45:10+00:00"
  8132. },
  8133. {
  8134. "name": "symfony/polyfill-mbstring",
  8135. "version": "v1.32.0",
  8136. "source": {
  8137. "type": "git",
  8138. "url": "https://github.com/symfony/polyfill-mbstring.git",
  8139. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
  8140. },
  8141. "dist": {
  8142. "type": "zip",
  8143. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
  8144. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
  8145. "shasum": ""
  8146. },
  8147. "require": {
  8148. "ext-iconv": "*",
  8149. "php": ">=7.2"
  8150. },
  8151. "provide": {
  8152. "ext-mbstring": "*"
  8153. },
  8154. "suggest": {
  8155. "ext-mbstring": "For best performance"
  8156. },
  8157. "type": "library",
  8158. "extra": {
  8159. "thanks": {
  8160. "url": "https://github.com/symfony/polyfill",
  8161. "name": "symfony/polyfill"
  8162. }
  8163. },
  8164. "autoload": {
  8165. "files": [
  8166. "bootstrap.php"
  8167. ],
  8168. "psr-4": {
  8169. "Symfony\\Polyfill\\Mbstring\\": ""
  8170. }
  8171. },
  8172. "notification-url": "https://packagist.org/downloads/",
  8173. "license": [
  8174. "MIT"
  8175. ],
  8176. "authors": [
  8177. {
  8178. "name": "Nicolas Grekas",
  8179. "email": "p@tchwork.com"
  8180. },
  8181. {
  8182. "name": "Symfony Community",
  8183. "homepage": "https://symfony.com/contributors"
  8184. }
  8185. ],
  8186. "description": "Symfony polyfill for the Mbstring extension",
  8187. "homepage": "https://symfony.com",
  8188. "keywords": [
  8189. "compatibility",
  8190. "mbstring",
  8191. "polyfill",
  8192. "portable",
  8193. "shim"
  8194. ],
  8195. "support": {
  8196. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.32.0"
  8197. },
  8198. "funding": [
  8199. {
  8200. "url": "https://symfony.com/sponsor",
  8201. "type": "custom"
  8202. },
  8203. {
  8204. "url": "https://github.com/fabpot",
  8205. "type": "github"
  8206. },
  8207. {
  8208. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8209. "type": "tidelift"
  8210. }
  8211. ],
  8212. "time": "2024-12-23T08:48:59+00:00"
  8213. },
  8214. {
  8215. "name": "symfony/polyfill-php80",
  8216. "version": "v1.32.0",
  8217. "source": {
  8218. "type": "git",
  8219. "url": "https://github.com/symfony/polyfill-php80.git",
  8220. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608"
  8221. },
  8222. "dist": {
  8223. "type": "zip",
  8224. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  8225. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  8226. "shasum": ""
  8227. },
  8228. "require": {
  8229. "php": ">=7.2"
  8230. },
  8231. "type": "library",
  8232. "extra": {
  8233. "thanks": {
  8234. "url": "https://github.com/symfony/polyfill",
  8235. "name": "symfony/polyfill"
  8236. }
  8237. },
  8238. "autoload": {
  8239. "files": [
  8240. "bootstrap.php"
  8241. ],
  8242. "psr-4": {
  8243. "Symfony\\Polyfill\\Php80\\": ""
  8244. },
  8245. "classmap": [
  8246. "Resources/stubs"
  8247. ]
  8248. },
  8249. "notification-url": "https://packagist.org/downloads/",
  8250. "license": [
  8251. "MIT"
  8252. ],
  8253. "authors": [
  8254. {
  8255. "name": "Ion Bazan",
  8256. "email": "ion.bazan@gmail.com"
  8257. },
  8258. {
  8259. "name": "Nicolas Grekas",
  8260. "email": "p@tchwork.com"
  8261. },
  8262. {
  8263. "name": "Symfony Community",
  8264. "homepage": "https://symfony.com/contributors"
  8265. }
  8266. ],
  8267. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  8268. "homepage": "https://symfony.com",
  8269. "keywords": [
  8270. "compatibility",
  8271. "polyfill",
  8272. "portable",
  8273. "shim"
  8274. ],
  8275. "support": {
  8276. "source": "https://github.com/symfony/polyfill-php80/tree/v1.32.0"
  8277. },
  8278. "funding": [
  8279. {
  8280. "url": "https://symfony.com/sponsor",
  8281. "type": "custom"
  8282. },
  8283. {
  8284. "url": "https://github.com/fabpot",
  8285. "type": "github"
  8286. },
  8287. {
  8288. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8289. "type": "tidelift"
  8290. }
  8291. ],
  8292. "time": "2025-01-02T08:10:11+00:00"
  8293. },
  8294. {
  8295. "name": "symfony/polyfill-php83",
  8296. "version": "v1.32.0",
  8297. "source": {
  8298. "type": "git",
  8299. "url": "https://github.com/symfony/polyfill-php83.git",
  8300. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  8301. },
  8302. "dist": {
  8303. "type": "zip",
  8304. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  8305. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  8306. "shasum": ""
  8307. },
  8308. "require": {
  8309. "php": ">=7.2"
  8310. },
  8311. "type": "library",
  8312. "extra": {
  8313. "thanks": {
  8314. "url": "https://github.com/symfony/polyfill",
  8315. "name": "symfony/polyfill"
  8316. }
  8317. },
  8318. "autoload": {
  8319. "files": [
  8320. "bootstrap.php"
  8321. ],
  8322. "psr-4": {
  8323. "Symfony\\Polyfill\\Php83\\": ""
  8324. },
  8325. "classmap": [
  8326. "Resources/stubs"
  8327. ]
  8328. },
  8329. "notification-url": "https://packagist.org/downloads/",
  8330. "license": [
  8331. "MIT"
  8332. ],
  8333. "authors": [
  8334. {
  8335. "name": "Nicolas Grekas",
  8336. "email": "p@tchwork.com"
  8337. },
  8338. {
  8339. "name": "Symfony Community",
  8340. "homepage": "https://symfony.com/contributors"
  8341. }
  8342. ],
  8343. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  8344. "homepage": "https://symfony.com",
  8345. "keywords": [
  8346. "compatibility",
  8347. "polyfill",
  8348. "portable",
  8349. "shim"
  8350. ],
  8351. "support": {
  8352. "source": "https://github.com/symfony/polyfill-php83/tree/v1.32.0"
  8353. },
  8354. "funding": [
  8355. {
  8356. "url": "https://symfony.com/sponsor",
  8357. "type": "custom"
  8358. },
  8359. {
  8360. "url": "https://github.com/fabpot",
  8361. "type": "github"
  8362. },
  8363. {
  8364. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8365. "type": "tidelift"
  8366. }
  8367. ],
  8368. "time": "2024-09-09T11:45:10+00:00"
  8369. },
  8370. {
  8371. "name": "symfony/polyfill-uuid",
  8372. "version": "v1.32.0",
  8373. "source": {
  8374. "type": "git",
  8375. "url": "https://github.com/symfony/polyfill-uuid.git",
  8376. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2"
  8377. },
  8378. "dist": {
  8379. "type": "zip",
  8380. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  8381. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  8382. "shasum": ""
  8383. },
  8384. "require": {
  8385. "php": ">=7.2"
  8386. },
  8387. "provide": {
  8388. "ext-uuid": "*"
  8389. },
  8390. "suggest": {
  8391. "ext-uuid": "For best performance"
  8392. },
  8393. "type": "library",
  8394. "extra": {
  8395. "thanks": {
  8396. "url": "https://github.com/symfony/polyfill",
  8397. "name": "symfony/polyfill"
  8398. }
  8399. },
  8400. "autoload": {
  8401. "files": [
  8402. "bootstrap.php"
  8403. ],
  8404. "psr-4": {
  8405. "Symfony\\Polyfill\\Uuid\\": ""
  8406. }
  8407. },
  8408. "notification-url": "https://packagist.org/downloads/",
  8409. "license": [
  8410. "MIT"
  8411. ],
  8412. "authors": [
  8413. {
  8414. "name": "Grégoire Pineau",
  8415. "email": "lyrixx@lyrixx.info"
  8416. },
  8417. {
  8418. "name": "Symfony Community",
  8419. "homepage": "https://symfony.com/contributors"
  8420. }
  8421. ],
  8422. "description": "Symfony polyfill for uuid functions",
  8423. "homepage": "https://symfony.com",
  8424. "keywords": [
  8425. "compatibility",
  8426. "polyfill",
  8427. "portable",
  8428. "uuid"
  8429. ],
  8430. "support": {
  8431. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.32.0"
  8432. },
  8433. "funding": [
  8434. {
  8435. "url": "https://symfony.com/sponsor",
  8436. "type": "custom"
  8437. },
  8438. {
  8439. "url": "https://github.com/fabpot",
  8440. "type": "github"
  8441. },
  8442. {
  8443. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8444. "type": "tidelift"
  8445. }
  8446. ],
  8447. "time": "2024-09-09T11:45:10+00:00"
  8448. },
  8449. {
  8450. "name": "symfony/process",
  8451. "version": "v7.3.0",
  8452. "source": {
  8453. "type": "git",
  8454. "url": "https://github.com/symfony/process.git",
  8455. "reference": "40c295f2deb408d5e9d2d32b8ba1dd61e36f05af"
  8456. },
  8457. "dist": {
  8458. "type": "zip",
  8459. "url": "https://api.github.com/repos/symfony/process/zipball/40c295f2deb408d5e9d2d32b8ba1dd61e36f05af",
  8460. "reference": "40c295f2deb408d5e9d2d32b8ba1dd61e36f05af",
  8461. "shasum": ""
  8462. },
  8463. "require": {
  8464. "php": ">=8.2"
  8465. },
  8466. "type": "library",
  8467. "autoload": {
  8468. "psr-4": {
  8469. "Symfony\\Component\\Process\\": ""
  8470. },
  8471. "exclude-from-classmap": [
  8472. "/Tests/"
  8473. ]
  8474. },
  8475. "notification-url": "https://packagist.org/downloads/",
  8476. "license": [
  8477. "MIT"
  8478. ],
  8479. "authors": [
  8480. {
  8481. "name": "Fabien Potencier",
  8482. "email": "fabien@symfony.com"
  8483. },
  8484. {
  8485. "name": "Symfony Community",
  8486. "homepage": "https://symfony.com/contributors"
  8487. }
  8488. ],
  8489. "description": "Executes commands in sub-processes",
  8490. "homepage": "https://symfony.com",
  8491. "support": {
  8492. "source": "https://github.com/symfony/process/tree/v7.3.0"
  8493. },
  8494. "funding": [
  8495. {
  8496. "url": "https://symfony.com/sponsor",
  8497. "type": "custom"
  8498. },
  8499. {
  8500. "url": "https://github.com/fabpot",
  8501. "type": "github"
  8502. },
  8503. {
  8504. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8505. "type": "tidelift"
  8506. }
  8507. ],
  8508. "time": "2025-04-17T09:11:12+00:00"
  8509. },
  8510. {
  8511. "name": "symfony/routing",
  8512. "version": "v7.3.0",
  8513. "source": {
  8514. "type": "git",
  8515. "url": "https://github.com/symfony/routing.git",
  8516. "reference": "8e213820c5fea844ecea29203d2a308019007c15"
  8517. },
  8518. "dist": {
  8519. "type": "zip",
  8520. "url": "https://api.github.com/repos/symfony/routing/zipball/8e213820c5fea844ecea29203d2a308019007c15",
  8521. "reference": "8e213820c5fea844ecea29203d2a308019007c15",
  8522. "shasum": ""
  8523. },
  8524. "require": {
  8525. "php": ">=8.2",
  8526. "symfony/deprecation-contracts": "^2.5|^3"
  8527. },
  8528. "conflict": {
  8529. "symfony/config": "<6.4",
  8530. "symfony/dependency-injection": "<6.4",
  8531. "symfony/yaml": "<6.4"
  8532. },
  8533. "require-dev": {
  8534. "psr/log": "^1|^2|^3",
  8535. "symfony/config": "^6.4|^7.0",
  8536. "symfony/dependency-injection": "^6.4|^7.0",
  8537. "symfony/expression-language": "^6.4|^7.0",
  8538. "symfony/http-foundation": "^6.4|^7.0",
  8539. "symfony/yaml": "^6.4|^7.0"
  8540. },
  8541. "type": "library",
  8542. "autoload": {
  8543. "psr-4": {
  8544. "Symfony\\Component\\Routing\\": ""
  8545. },
  8546. "exclude-from-classmap": [
  8547. "/Tests/"
  8548. ]
  8549. },
  8550. "notification-url": "https://packagist.org/downloads/",
  8551. "license": [
  8552. "MIT"
  8553. ],
  8554. "authors": [
  8555. {
  8556. "name": "Fabien Potencier",
  8557. "email": "fabien@symfony.com"
  8558. },
  8559. {
  8560. "name": "Symfony Community",
  8561. "homepage": "https://symfony.com/contributors"
  8562. }
  8563. ],
  8564. "description": "Maps an HTTP request to a set of configuration variables",
  8565. "homepage": "https://symfony.com",
  8566. "keywords": [
  8567. "router",
  8568. "routing",
  8569. "uri",
  8570. "url"
  8571. ],
  8572. "support": {
  8573. "source": "https://github.com/symfony/routing/tree/v7.3.0"
  8574. },
  8575. "funding": [
  8576. {
  8577. "url": "https://symfony.com/sponsor",
  8578. "type": "custom"
  8579. },
  8580. {
  8581. "url": "https://github.com/fabpot",
  8582. "type": "github"
  8583. },
  8584. {
  8585. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8586. "type": "tidelift"
  8587. }
  8588. ],
  8589. "time": "2025-05-24T20:43:28+00:00"
  8590. },
  8591. {
  8592. "name": "symfony/service-contracts",
  8593. "version": "v3.6.0",
  8594. "source": {
  8595. "type": "git",
  8596. "url": "https://github.com/symfony/service-contracts.git",
  8597. "reference": "f021b05a130d35510bd6b25fe9053c2a8a15d5d4"
  8598. },
  8599. "dist": {
  8600. "type": "zip",
  8601. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f021b05a130d35510bd6b25fe9053c2a8a15d5d4",
  8602. "reference": "f021b05a130d35510bd6b25fe9053c2a8a15d5d4",
  8603. "shasum": ""
  8604. },
  8605. "require": {
  8606. "php": ">=8.1",
  8607. "psr/container": "^1.1|^2.0",
  8608. "symfony/deprecation-contracts": "^2.5|^3"
  8609. },
  8610. "conflict": {
  8611. "ext-psr": "<1.1|>=2"
  8612. },
  8613. "type": "library",
  8614. "extra": {
  8615. "thanks": {
  8616. "url": "https://github.com/symfony/contracts",
  8617. "name": "symfony/contracts"
  8618. },
  8619. "branch-alias": {
  8620. "dev-main": "3.6-dev"
  8621. }
  8622. },
  8623. "autoload": {
  8624. "psr-4": {
  8625. "Symfony\\Contracts\\Service\\": ""
  8626. },
  8627. "exclude-from-classmap": [
  8628. "/Test/"
  8629. ]
  8630. },
  8631. "notification-url": "https://packagist.org/downloads/",
  8632. "license": [
  8633. "MIT"
  8634. ],
  8635. "authors": [
  8636. {
  8637. "name": "Nicolas Grekas",
  8638. "email": "p@tchwork.com"
  8639. },
  8640. {
  8641. "name": "Symfony Community",
  8642. "homepage": "https://symfony.com/contributors"
  8643. }
  8644. ],
  8645. "description": "Generic abstractions related to writing services",
  8646. "homepage": "https://symfony.com",
  8647. "keywords": [
  8648. "abstractions",
  8649. "contracts",
  8650. "decoupling",
  8651. "interfaces",
  8652. "interoperability",
  8653. "standards"
  8654. ],
  8655. "support": {
  8656. "source": "https://github.com/symfony/service-contracts/tree/v3.6.0"
  8657. },
  8658. "funding": [
  8659. {
  8660. "url": "https://symfony.com/sponsor",
  8661. "type": "custom"
  8662. },
  8663. {
  8664. "url": "https://github.com/fabpot",
  8665. "type": "github"
  8666. },
  8667. {
  8668. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8669. "type": "tidelift"
  8670. }
  8671. ],
  8672. "time": "2025-04-25T09:37:31+00:00"
  8673. },
  8674. {
  8675. "name": "symfony/string",
  8676. "version": "v7.3.0",
  8677. "source": {
  8678. "type": "git",
  8679. "url": "https://github.com/symfony/string.git",
  8680. "reference": "f3570b8c61ca887a9e2938e85cb6458515d2b125"
  8681. },
  8682. "dist": {
  8683. "type": "zip",
  8684. "url": "https://api.github.com/repos/symfony/string/zipball/f3570b8c61ca887a9e2938e85cb6458515d2b125",
  8685. "reference": "f3570b8c61ca887a9e2938e85cb6458515d2b125",
  8686. "shasum": ""
  8687. },
  8688. "require": {
  8689. "php": ">=8.2",
  8690. "symfony/polyfill-ctype": "~1.8",
  8691. "symfony/polyfill-intl-grapheme": "~1.0",
  8692. "symfony/polyfill-intl-normalizer": "~1.0",
  8693. "symfony/polyfill-mbstring": "~1.0"
  8694. },
  8695. "conflict": {
  8696. "symfony/translation-contracts": "<2.5"
  8697. },
  8698. "require-dev": {
  8699. "symfony/emoji": "^7.1",
  8700. "symfony/error-handler": "^6.4|^7.0",
  8701. "symfony/http-client": "^6.4|^7.0",
  8702. "symfony/intl": "^6.4|^7.0",
  8703. "symfony/translation-contracts": "^2.5|^3.0",
  8704. "symfony/var-exporter": "^6.4|^7.0"
  8705. },
  8706. "type": "library",
  8707. "autoload": {
  8708. "files": [
  8709. "Resources/functions.php"
  8710. ],
  8711. "psr-4": {
  8712. "Symfony\\Component\\String\\": ""
  8713. },
  8714. "exclude-from-classmap": [
  8715. "/Tests/"
  8716. ]
  8717. },
  8718. "notification-url": "https://packagist.org/downloads/",
  8719. "license": [
  8720. "MIT"
  8721. ],
  8722. "authors": [
  8723. {
  8724. "name": "Nicolas Grekas",
  8725. "email": "p@tchwork.com"
  8726. },
  8727. {
  8728. "name": "Symfony Community",
  8729. "homepage": "https://symfony.com/contributors"
  8730. }
  8731. ],
  8732. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  8733. "homepage": "https://symfony.com",
  8734. "keywords": [
  8735. "grapheme",
  8736. "i18n",
  8737. "string",
  8738. "unicode",
  8739. "utf-8",
  8740. "utf8"
  8741. ],
  8742. "support": {
  8743. "source": "https://github.com/symfony/string/tree/v7.3.0"
  8744. },
  8745. "funding": [
  8746. {
  8747. "url": "https://symfony.com/sponsor",
  8748. "type": "custom"
  8749. },
  8750. {
  8751. "url": "https://github.com/fabpot",
  8752. "type": "github"
  8753. },
  8754. {
  8755. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8756. "type": "tidelift"
  8757. }
  8758. ],
  8759. "time": "2025-04-20T20:19:01+00:00"
  8760. },
  8761. {
  8762. "name": "symfony/translation",
  8763. "version": "v7.3.1",
  8764. "source": {
  8765. "type": "git",
  8766. "url": "https://github.com/symfony/translation.git",
  8767. "reference": "241d5ac4910d256660238a7ecf250deba4c73063"
  8768. },
  8769. "dist": {
  8770. "type": "zip",
  8771. "url": "https://api.github.com/repos/symfony/translation/zipball/241d5ac4910d256660238a7ecf250deba4c73063",
  8772. "reference": "241d5ac4910d256660238a7ecf250deba4c73063",
  8773. "shasum": ""
  8774. },
  8775. "require": {
  8776. "php": ">=8.2",
  8777. "symfony/deprecation-contracts": "^2.5|^3",
  8778. "symfony/polyfill-mbstring": "~1.0",
  8779. "symfony/translation-contracts": "^2.5|^3.0"
  8780. },
  8781. "conflict": {
  8782. "nikic/php-parser": "<5.0",
  8783. "symfony/config": "<6.4",
  8784. "symfony/console": "<6.4",
  8785. "symfony/dependency-injection": "<6.4",
  8786. "symfony/http-client-contracts": "<2.5",
  8787. "symfony/http-kernel": "<6.4",
  8788. "symfony/service-contracts": "<2.5",
  8789. "symfony/twig-bundle": "<6.4",
  8790. "symfony/yaml": "<6.4"
  8791. },
  8792. "provide": {
  8793. "symfony/translation-implementation": "2.3|3.0"
  8794. },
  8795. "require-dev": {
  8796. "nikic/php-parser": "^5.0",
  8797. "psr/log": "^1|^2|^3",
  8798. "symfony/config": "^6.4|^7.0",
  8799. "symfony/console": "^6.4|^7.0",
  8800. "symfony/dependency-injection": "^6.4|^7.0",
  8801. "symfony/finder": "^6.4|^7.0",
  8802. "symfony/http-client-contracts": "^2.5|^3.0",
  8803. "symfony/http-kernel": "^6.4|^7.0",
  8804. "symfony/intl": "^6.4|^7.0",
  8805. "symfony/polyfill-intl-icu": "^1.21",
  8806. "symfony/routing": "^6.4|^7.0",
  8807. "symfony/service-contracts": "^2.5|^3",
  8808. "symfony/yaml": "^6.4|^7.0"
  8809. },
  8810. "type": "library",
  8811. "autoload": {
  8812. "files": [
  8813. "Resources/functions.php"
  8814. ],
  8815. "psr-4": {
  8816. "Symfony\\Component\\Translation\\": ""
  8817. },
  8818. "exclude-from-classmap": [
  8819. "/Tests/"
  8820. ]
  8821. },
  8822. "notification-url": "https://packagist.org/downloads/",
  8823. "license": [
  8824. "MIT"
  8825. ],
  8826. "authors": [
  8827. {
  8828. "name": "Fabien Potencier",
  8829. "email": "fabien@symfony.com"
  8830. },
  8831. {
  8832. "name": "Symfony Community",
  8833. "homepage": "https://symfony.com/contributors"
  8834. }
  8835. ],
  8836. "description": "Provides tools to internationalize your application",
  8837. "homepage": "https://symfony.com",
  8838. "support": {
  8839. "source": "https://github.com/symfony/translation/tree/v7.3.1"
  8840. },
  8841. "funding": [
  8842. {
  8843. "url": "https://symfony.com/sponsor",
  8844. "type": "custom"
  8845. },
  8846. {
  8847. "url": "https://github.com/fabpot",
  8848. "type": "github"
  8849. },
  8850. {
  8851. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8852. "type": "tidelift"
  8853. }
  8854. ],
  8855. "time": "2025-06-27T19:55:54+00:00"
  8856. },
  8857. {
  8858. "name": "symfony/translation-contracts",
  8859. "version": "v3.6.0",
  8860. "source": {
  8861. "type": "git",
  8862. "url": "https://github.com/symfony/translation-contracts.git",
  8863. "reference": "df210c7a2573f1913b2d17cc95f90f53a73d8f7d"
  8864. },
  8865. "dist": {
  8866. "type": "zip",
  8867. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/df210c7a2573f1913b2d17cc95f90f53a73d8f7d",
  8868. "reference": "df210c7a2573f1913b2d17cc95f90f53a73d8f7d",
  8869. "shasum": ""
  8870. },
  8871. "require": {
  8872. "php": ">=8.1"
  8873. },
  8874. "type": "library",
  8875. "extra": {
  8876. "thanks": {
  8877. "url": "https://github.com/symfony/contracts",
  8878. "name": "symfony/contracts"
  8879. },
  8880. "branch-alias": {
  8881. "dev-main": "3.6-dev"
  8882. }
  8883. },
  8884. "autoload": {
  8885. "psr-4": {
  8886. "Symfony\\Contracts\\Translation\\": ""
  8887. },
  8888. "exclude-from-classmap": [
  8889. "/Test/"
  8890. ]
  8891. },
  8892. "notification-url": "https://packagist.org/downloads/",
  8893. "license": [
  8894. "MIT"
  8895. ],
  8896. "authors": [
  8897. {
  8898. "name": "Nicolas Grekas",
  8899. "email": "p@tchwork.com"
  8900. },
  8901. {
  8902. "name": "Symfony Community",
  8903. "homepage": "https://symfony.com/contributors"
  8904. }
  8905. ],
  8906. "description": "Generic abstractions related to translation",
  8907. "homepage": "https://symfony.com",
  8908. "keywords": [
  8909. "abstractions",
  8910. "contracts",
  8911. "decoupling",
  8912. "interfaces",
  8913. "interoperability",
  8914. "standards"
  8915. ],
  8916. "support": {
  8917. "source": "https://github.com/symfony/translation-contracts/tree/v3.6.0"
  8918. },
  8919. "funding": [
  8920. {
  8921. "url": "https://symfony.com/sponsor",
  8922. "type": "custom"
  8923. },
  8924. {
  8925. "url": "https://github.com/fabpot",
  8926. "type": "github"
  8927. },
  8928. {
  8929. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8930. "type": "tidelift"
  8931. }
  8932. ],
  8933. "time": "2024-09-27T08:32:26+00:00"
  8934. },
  8935. {
  8936. "name": "symfony/uid",
  8937. "version": "v7.3.1",
  8938. "source": {
  8939. "type": "git",
  8940. "url": "https://github.com/symfony/uid.git",
  8941. "reference": "a69f69f3159b852651a6bf45a9fdd149520525bb"
  8942. },
  8943. "dist": {
  8944. "type": "zip",
  8945. "url": "https://api.github.com/repos/symfony/uid/zipball/a69f69f3159b852651a6bf45a9fdd149520525bb",
  8946. "reference": "a69f69f3159b852651a6bf45a9fdd149520525bb",
  8947. "shasum": ""
  8948. },
  8949. "require": {
  8950. "php": ">=8.2",
  8951. "symfony/polyfill-uuid": "^1.15"
  8952. },
  8953. "require-dev": {
  8954. "symfony/console": "^6.4|^7.0"
  8955. },
  8956. "type": "library",
  8957. "autoload": {
  8958. "psr-4": {
  8959. "Symfony\\Component\\Uid\\": ""
  8960. },
  8961. "exclude-from-classmap": [
  8962. "/Tests/"
  8963. ]
  8964. },
  8965. "notification-url": "https://packagist.org/downloads/",
  8966. "license": [
  8967. "MIT"
  8968. ],
  8969. "authors": [
  8970. {
  8971. "name": "Grégoire Pineau",
  8972. "email": "lyrixx@lyrixx.info"
  8973. },
  8974. {
  8975. "name": "Nicolas Grekas",
  8976. "email": "p@tchwork.com"
  8977. },
  8978. {
  8979. "name": "Symfony Community",
  8980. "homepage": "https://symfony.com/contributors"
  8981. }
  8982. ],
  8983. "description": "Provides an object-oriented API to generate and represent UIDs",
  8984. "homepage": "https://symfony.com",
  8985. "keywords": [
  8986. "UID",
  8987. "ulid",
  8988. "uuid"
  8989. ],
  8990. "support": {
  8991. "source": "https://github.com/symfony/uid/tree/v7.3.1"
  8992. },
  8993. "funding": [
  8994. {
  8995. "url": "https://symfony.com/sponsor",
  8996. "type": "custom"
  8997. },
  8998. {
  8999. "url": "https://github.com/fabpot",
  9000. "type": "github"
  9001. },
  9002. {
  9003. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9004. "type": "tidelift"
  9005. }
  9006. ],
  9007. "time": "2025-06-27T19:55:54+00:00"
  9008. },
  9009. {
  9010. "name": "symfony/var-dumper",
  9011. "version": "v7.3.1",
  9012. "source": {
  9013. "type": "git",
  9014. "url": "https://github.com/symfony/var-dumper.git",
  9015. "reference": "6e209fbe5f5a7b6043baba46fe5735a4b85d0d42"
  9016. },
  9017. "dist": {
  9018. "type": "zip",
  9019. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/6e209fbe5f5a7b6043baba46fe5735a4b85d0d42",
  9020. "reference": "6e209fbe5f5a7b6043baba46fe5735a4b85d0d42",
  9021. "shasum": ""
  9022. },
  9023. "require": {
  9024. "php": ">=8.2",
  9025. "symfony/deprecation-contracts": "^2.5|^3",
  9026. "symfony/polyfill-mbstring": "~1.0"
  9027. },
  9028. "conflict": {
  9029. "symfony/console": "<6.4"
  9030. },
  9031. "require-dev": {
  9032. "ext-iconv": "*",
  9033. "symfony/console": "^6.4|^7.0",
  9034. "symfony/http-kernel": "^6.4|^7.0",
  9035. "symfony/process": "^6.4|^7.0",
  9036. "symfony/uid": "^6.4|^7.0",
  9037. "twig/twig": "^3.12"
  9038. },
  9039. "bin": [
  9040. "Resources/bin/var-dump-server"
  9041. ],
  9042. "type": "library",
  9043. "autoload": {
  9044. "files": [
  9045. "Resources/functions/dump.php"
  9046. ],
  9047. "psr-4": {
  9048. "Symfony\\Component\\VarDumper\\": ""
  9049. },
  9050. "exclude-from-classmap": [
  9051. "/Tests/"
  9052. ]
  9053. },
  9054. "notification-url": "https://packagist.org/downloads/",
  9055. "license": [
  9056. "MIT"
  9057. ],
  9058. "authors": [
  9059. {
  9060. "name": "Nicolas Grekas",
  9061. "email": "p@tchwork.com"
  9062. },
  9063. {
  9064. "name": "Symfony Community",
  9065. "homepage": "https://symfony.com/contributors"
  9066. }
  9067. ],
  9068. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  9069. "homepage": "https://symfony.com",
  9070. "keywords": [
  9071. "debug",
  9072. "dump"
  9073. ],
  9074. "support": {
  9075. "source": "https://github.com/symfony/var-dumper/tree/v7.3.1"
  9076. },
  9077. "funding": [
  9078. {
  9079. "url": "https://symfony.com/sponsor",
  9080. "type": "custom"
  9081. },
  9082. {
  9083. "url": "https://github.com/fabpot",
  9084. "type": "github"
  9085. },
  9086. {
  9087. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9088. "type": "tidelift"
  9089. }
  9090. ],
  9091. "time": "2025-06-27T19:55:54+00:00"
  9092. },
  9093. {
  9094. "name": "tijsverkoyen/css-to-inline-styles",
  9095. "version": "v2.3.0",
  9096. "source": {
  9097. "type": "git",
  9098. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  9099. "reference": "0d72ac1c00084279c1816675284073c5a337c20d"
  9100. },
  9101. "dist": {
  9102. "type": "zip",
  9103. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/0d72ac1c00084279c1816675284073c5a337c20d",
  9104. "reference": "0d72ac1c00084279c1816675284073c5a337c20d",
  9105. "shasum": ""
  9106. },
  9107. "require": {
  9108. "ext-dom": "*",
  9109. "ext-libxml": "*",
  9110. "php": "^7.4 || ^8.0",
  9111. "symfony/css-selector": "^5.4 || ^6.0 || ^7.0"
  9112. },
  9113. "require-dev": {
  9114. "phpstan/phpstan": "^2.0",
  9115. "phpstan/phpstan-phpunit": "^2.0",
  9116. "phpunit/phpunit": "^8.5.21 || ^9.5.10"
  9117. },
  9118. "type": "library",
  9119. "extra": {
  9120. "branch-alias": {
  9121. "dev-master": "2.x-dev"
  9122. }
  9123. },
  9124. "autoload": {
  9125. "psr-4": {
  9126. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  9127. }
  9128. },
  9129. "notification-url": "https://packagist.org/downloads/",
  9130. "license": [
  9131. "BSD-3-Clause"
  9132. ],
  9133. "authors": [
  9134. {
  9135. "name": "Tijs Verkoyen",
  9136. "email": "css_to_inline_styles@verkoyen.eu",
  9137. "role": "Developer"
  9138. }
  9139. ],
  9140. "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.",
  9141. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  9142. "support": {
  9143. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  9144. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.3.0"
  9145. },
  9146. "time": "2024-12-21T16:25:41+00:00"
  9147. },
  9148. {
  9149. "name": "vlucas/phpdotenv",
  9150. "version": "v5.6.2",
  9151. "source": {
  9152. "type": "git",
  9153. "url": "https://github.com/vlucas/phpdotenv.git",
  9154. "reference": "24ac4c74f91ee2c193fa1aaa5c249cb0822809af"
  9155. },
  9156. "dist": {
  9157. "type": "zip",
  9158. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/24ac4c74f91ee2c193fa1aaa5c249cb0822809af",
  9159. "reference": "24ac4c74f91ee2c193fa1aaa5c249cb0822809af",
  9160. "shasum": ""
  9161. },
  9162. "require": {
  9163. "ext-pcre": "*",
  9164. "graham-campbell/result-type": "^1.1.3",
  9165. "php": "^7.2.5 || ^8.0",
  9166. "phpoption/phpoption": "^1.9.3",
  9167. "symfony/polyfill-ctype": "^1.24",
  9168. "symfony/polyfill-mbstring": "^1.24",
  9169. "symfony/polyfill-php80": "^1.24"
  9170. },
  9171. "require-dev": {
  9172. "bamarni/composer-bin-plugin": "^1.8.2",
  9173. "ext-filter": "*",
  9174. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  9175. },
  9176. "suggest": {
  9177. "ext-filter": "Required to use the boolean validator."
  9178. },
  9179. "type": "library",
  9180. "extra": {
  9181. "bamarni-bin": {
  9182. "bin-links": true,
  9183. "forward-command": false
  9184. },
  9185. "branch-alias": {
  9186. "dev-master": "5.6-dev"
  9187. }
  9188. },
  9189. "autoload": {
  9190. "psr-4": {
  9191. "Dotenv\\": "src/"
  9192. }
  9193. },
  9194. "notification-url": "https://packagist.org/downloads/",
  9195. "license": [
  9196. "BSD-3-Clause"
  9197. ],
  9198. "authors": [
  9199. {
  9200. "name": "Graham Campbell",
  9201. "email": "hello@gjcampbell.co.uk",
  9202. "homepage": "https://github.com/GrahamCampbell"
  9203. },
  9204. {
  9205. "name": "Vance Lucas",
  9206. "email": "vance@vancelucas.com",
  9207. "homepage": "https://github.com/vlucas"
  9208. }
  9209. ],
  9210. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  9211. "keywords": [
  9212. "dotenv",
  9213. "env",
  9214. "environment"
  9215. ],
  9216. "support": {
  9217. "issues": "https://github.com/vlucas/phpdotenv/issues",
  9218. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.2"
  9219. },
  9220. "funding": [
  9221. {
  9222. "url": "https://github.com/GrahamCampbell",
  9223. "type": "github"
  9224. },
  9225. {
  9226. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  9227. "type": "tidelift"
  9228. }
  9229. ],
  9230. "time": "2025-04-30T23:37:27+00:00"
  9231. },
  9232. {
  9233. "name": "voku/portable-ascii",
  9234. "version": "2.0.3",
  9235. "source": {
  9236. "type": "git",
  9237. "url": "https://github.com/voku/portable-ascii.git",
  9238. "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d"
  9239. },
  9240. "dist": {
  9241. "type": "zip",
  9242. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
  9243. "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
  9244. "shasum": ""
  9245. },
  9246. "require": {
  9247. "php": ">=7.0.0"
  9248. },
  9249. "require-dev": {
  9250. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  9251. },
  9252. "suggest": {
  9253. "ext-intl": "Use Intl for transliterator_transliterate() support"
  9254. },
  9255. "type": "library",
  9256. "autoload": {
  9257. "psr-4": {
  9258. "voku\\": "src/voku/"
  9259. }
  9260. },
  9261. "notification-url": "https://packagist.org/downloads/",
  9262. "license": [
  9263. "MIT"
  9264. ],
  9265. "authors": [
  9266. {
  9267. "name": "Lars Moelleken",
  9268. "homepage": "https://www.moelleken.org/"
  9269. }
  9270. ],
  9271. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  9272. "homepage": "https://github.com/voku/portable-ascii",
  9273. "keywords": [
  9274. "ascii",
  9275. "clean",
  9276. "php"
  9277. ],
  9278. "support": {
  9279. "issues": "https://github.com/voku/portable-ascii/issues",
  9280. "source": "https://github.com/voku/portable-ascii/tree/2.0.3"
  9281. },
  9282. "funding": [
  9283. {
  9284. "url": "https://www.paypal.me/moelleken",
  9285. "type": "custom"
  9286. },
  9287. {
  9288. "url": "https://github.com/voku",
  9289. "type": "github"
  9290. },
  9291. {
  9292. "url": "https://opencollective.com/portable-ascii",
  9293. "type": "open_collective"
  9294. },
  9295. {
  9296. "url": "https://www.patreon.com/voku",
  9297. "type": "patreon"
  9298. },
  9299. {
  9300. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  9301. "type": "tidelift"
  9302. }
  9303. ],
  9304. "time": "2024-11-21T01:49:47+00:00"
  9305. },
  9306. {
  9307. "name": "webmozart/assert",
  9308. "version": "1.11.0",
  9309. "source": {
  9310. "type": "git",
  9311. "url": "https://github.com/webmozarts/assert.git",
  9312. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  9313. },
  9314. "dist": {
  9315. "type": "zip",
  9316. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  9317. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  9318. "shasum": ""
  9319. },
  9320. "require": {
  9321. "ext-ctype": "*",
  9322. "php": "^7.2 || ^8.0"
  9323. },
  9324. "conflict": {
  9325. "phpstan/phpstan": "<0.12.20",
  9326. "vimeo/psalm": "<4.6.1 || 4.6.2"
  9327. },
  9328. "require-dev": {
  9329. "phpunit/phpunit": "^8.5.13"
  9330. },
  9331. "type": "library",
  9332. "extra": {
  9333. "branch-alias": {
  9334. "dev-master": "1.10-dev"
  9335. }
  9336. },
  9337. "autoload": {
  9338. "psr-4": {
  9339. "Webmozart\\Assert\\": "src/"
  9340. }
  9341. },
  9342. "notification-url": "https://packagist.org/downloads/",
  9343. "license": [
  9344. "MIT"
  9345. ],
  9346. "authors": [
  9347. {
  9348. "name": "Bernhard Schussek",
  9349. "email": "bschussek@gmail.com"
  9350. }
  9351. ],
  9352. "description": "Assertions to validate method input/output with nice error messages.",
  9353. "keywords": [
  9354. "assert",
  9355. "check",
  9356. "validate"
  9357. ],
  9358. "support": {
  9359. "issues": "https://github.com/webmozarts/assert/issues",
  9360. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  9361. },
  9362. "time": "2022-06-03T18:03:27+00:00"
  9363. }
  9364. ],
  9365. "packages-dev": [
  9366. {
  9367. "name": "barryvdh/laravel-debugbar",
  9368. "version": "v3.16.0",
  9369. "source": {
  9370. "type": "git",
  9371. "url": "https://github.com/barryvdh/laravel-debugbar.git",
  9372. "reference": "f265cf5e38577d42311f1a90d619bcd3740bea23"
  9373. },
  9374. "dist": {
  9375. "type": "zip",
  9376. "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/f265cf5e38577d42311f1a90d619bcd3740bea23",
  9377. "reference": "f265cf5e38577d42311f1a90d619bcd3740bea23",
  9378. "shasum": ""
  9379. },
  9380. "require": {
  9381. "illuminate/routing": "^9|^10|^11|^12",
  9382. "illuminate/session": "^9|^10|^11|^12",
  9383. "illuminate/support": "^9|^10|^11|^12",
  9384. "php": "^8.1",
  9385. "php-debugbar/php-debugbar": "~2.2.0",
  9386. "symfony/finder": "^6|^7"
  9387. },
  9388. "require-dev": {
  9389. "mockery/mockery": "^1.3.3",
  9390. "orchestra/testbench-dusk": "^7|^8|^9|^10",
  9391. "phpunit/phpunit": "^9.5.10|^10|^11",
  9392. "squizlabs/php_codesniffer": "^3.5"
  9393. },
  9394. "type": "library",
  9395. "extra": {
  9396. "laravel": {
  9397. "aliases": {
  9398. "Debugbar": "Barryvdh\\Debugbar\\Facades\\Debugbar"
  9399. },
  9400. "providers": [
  9401. "Barryvdh\\Debugbar\\ServiceProvider"
  9402. ]
  9403. },
  9404. "branch-alias": {
  9405. "dev-master": "3.16-dev"
  9406. }
  9407. },
  9408. "autoload": {
  9409. "files": [
  9410. "src/helpers.php"
  9411. ],
  9412. "psr-4": {
  9413. "Barryvdh\\Debugbar\\": "src/"
  9414. }
  9415. },
  9416. "notification-url": "https://packagist.org/downloads/",
  9417. "license": [
  9418. "MIT"
  9419. ],
  9420. "authors": [
  9421. {
  9422. "name": "Barry vd. Heuvel",
  9423. "email": "barryvdh@gmail.com"
  9424. }
  9425. ],
  9426. "description": "PHP Debugbar integration for Laravel",
  9427. "keywords": [
  9428. "debug",
  9429. "debugbar",
  9430. "dev",
  9431. "laravel",
  9432. "profiler",
  9433. "webprofiler"
  9434. ],
  9435. "support": {
  9436. "issues": "https://github.com/barryvdh/laravel-debugbar/issues",
  9437. "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.16.0"
  9438. },
  9439. "funding": [
  9440. {
  9441. "url": "https://fruitcake.nl",
  9442. "type": "custom"
  9443. },
  9444. {
  9445. "url": "https://github.com/barryvdh",
  9446. "type": "github"
  9447. }
  9448. ],
  9449. "time": "2025-07-14T11:56:43+00:00"
  9450. },
  9451. {
  9452. "name": "brianium/paratest",
  9453. "version": "v7.8.3",
  9454. "source": {
  9455. "type": "git",
  9456. "url": "https://github.com/paratestphp/paratest.git",
  9457. "reference": "a585c346ddf1bec22e51e20b5387607905604a71"
  9458. },
  9459. "dist": {
  9460. "type": "zip",
  9461. "url": "https://api.github.com/repos/paratestphp/paratest/zipball/a585c346ddf1bec22e51e20b5387607905604a71",
  9462. "reference": "a585c346ddf1bec22e51e20b5387607905604a71",
  9463. "shasum": ""
  9464. },
  9465. "require": {
  9466. "ext-dom": "*",
  9467. "ext-pcre": "*",
  9468. "ext-reflection": "*",
  9469. "ext-simplexml": "*",
  9470. "fidry/cpu-core-counter": "^1.2.0",
  9471. "jean85/pretty-package-versions": "^2.1.0",
  9472. "php": "~8.2.0 || ~8.3.0 || ~8.4.0",
  9473. "phpunit/php-code-coverage": "^11.0.9 || ^12.0.4",
  9474. "phpunit/php-file-iterator": "^5.1.0 || ^6",
  9475. "phpunit/php-timer": "^7.0.1 || ^8",
  9476. "phpunit/phpunit": "^11.5.11 || ^12.0.6",
  9477. "sebastian/environment": "^7.2.0 || ^8",
  9478. "symfony/console": "^6.4.17 || ^7.2.1",
  9479. "symfony/process": "^6.4.19 || ^7.2.4"
  9480. },
  9481. "require-dev": {
  9482. "doctrine/coding-standard": "^12.0.0",
  9483. "ext-pcov": "*",
  9484. "ext-posix": "*",
  9485. "phpstan/phpstan": "^2.1.6",
  9486. "phpstan/phpstan-deprecation-rules": "^2.0.1",
  9487. "phpstan/phpstan-phpunit": "^2.0.4",
  9488. "phpstan/phpstan-strict-rules": "^2.0.3",
  9489. "squizlabs/php_codesniffer": "^3.11.3",
  9490. "symfony/filesystem": "^6.4.13 || ^7.2.0"
  9491. },
  9492. "bin": [
  9493. "bin/paratest",
  9494. "bin/paratest_for_phpstorm"
  9495. ],
  9496. "type": "library",
  9497. "autoload": {
  9498. "psr-4": {
  9499. "ParaTest\\": [
  9500. "src/"
  9501. ]
  9502. }
  9503. },
  9504. "notification-url": "https://packagist.org/downloads/",
  9505. "license": [
  9506. "MIT"
  9507. ],
  9508. "authors": [
  9509. {
  9510. "name": "Brian Scaturro",
  9511. "email": "scaturrob@gmail.com",
  9512. "role": "Developer"
  9513. },
  9514. {
  9515. "name": "Filippo Tessarotto",
  9516. "email": "zoeslam@gmail.com",
  9517. "role": "Developer"
  9518. }
  9519. ],
  9520. "description": "Parallel testing for PHP",
  9521. "homepage": "https://github.com/paratestphp/paratest",
  9522. "keywords": [
  9523. "concurrent",
  9524. "parallel",
  9525. "phpunit",
  9526. "testing"
  9527. ],
  9528. "support": {
  9529. "issues": "https://github.com/paratestphp/paratest/issues",
  9530. "source": "https://github.com/paratestphp/paratest/tree/v7.8.3"
  9531. },
  9532. "funding": [
  9533. {
  9534. "url": "https://github.com/sponsors/Slamdunk",
  9535. "type": "github"
  9536. },
  9537. {
  9538. "url": "https://paypal.me/filippotessarotto",
  9539. "type": "paypal"
  9540. }
  9541. ],
  9542. "time": "2025-03-05T08:29:11+00:00"
  9543. },
  9544. {
  9545. "name": "fidry/cpu-core-counter",
  9546. "version": "1.2.0",
  9547. "source": {
  9548. "type": "git",
  9549. "url": "https://github.com/theofidry/cpu-core-counter.git",
  9550. "reference": "8520451a140d3f46ac33042715115e290cf5785f"
  9551. },
  9552. "dist": {
  9553. "type": "zip",
  9554. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/8520451a140d3f46ac33042715115e290cf5785f",
  9555. "reference": "8520451a140d3f46ac33042715115e290cf5785f",
  9556. "shasum": ""
  9557. },
  9558. "require": {
  9559. "php": "^7.2 || ^8.0"
  9560. },
  9561. "require-dev": {
  9562. "fidry/makefile": "^0.2.0",
  9563. "fidry/php-cs-fixer-config": "^1.1.2",
  9564. "phpstan/extension-installer": "^1.2.0",
  9565. "phpstan/phpstan": "^1.9.2",
  9566. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  9567. "phpstan/phpstan-phpunit": "^1.2.2",
  9568. "phpstan/phpstan-strict-rules": "^1.4.4",
  9569. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  9570. "webmozarts/strict-phpunit": "^7.5"
  9571. },
  9572. "type": "library",
  9573. "autoload": {
  9574. "psr-4": {
  9575. "Fidry\\CpuCoreCounter\\": "src/"
  9576. }
  9577. },
  9578. "notification-url": "https://packagist.org/downloads/",
  9579. "license": [
  9580. "MIT"
  9581. ],
  9582. "authors": [
  9583. {
  9584. "name": "Théo FIDRY",
  9585. "email": "theo.fidry@gmail.com"
  9586. }
  9587. ],
  9588. "description": "Tiny utility to get the number of CPU cores.",
  9589. "keywords": [
  9590. "CPU",
  9591. "core"
  9592. ],
  9593. "support": {
  9594. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  9595. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.2.0"
  9596. },
  9597. "funding": [
  9598. {
  9599. "url": "https://github.com/theofidry",
  9600. "type": "github"
  9601. }
  9602. ],
  9603. "time": "2024-08-06T10:04:20+00:00"
  9604. },
  9605. {
  9606. "name": "filp/whoops",
  9607. "version": "2.18.3",
  9608. "source": {
  9609. "type": "git",
  9610. "url": "https://github.com/filp/whoops.git",
  9611. "reference": "59a123a3d459c5a23055802237cb317f609867e5"
  9612. },
  9613. "dist": {
  9614. "type": "zip",
  9615. "url": "https://api.github.com/repos/filp/whoops/zipball/59a123a3d459c5a23055802237cb317f609867e5",
  9616. "reference": "59a123a3d459c5a23055802237cb317f609867e5",
  9617. "shasum": ""
  9618. },
  9619. "require": {
  9620. "php": "^7.1 || ^8.0",
  9621. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  9622. },
  9623. "require-dev": {
  9624. "mockery/mockery": "^1.0",
  9625. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.3",
  9626. "symfony/var-dumper": "^4.0 || ^5.0"
  9627. },
  9628. "suggest": {
  9629. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  9630. "whoops/soap": "Formats errors as SOAP responses"
  9631. },
  9632. "type": "library",
  9633. "extra": {
  9634. "branch-alias": {
  9635. "dev-master": "2.7-dev"
  9636. }
  9637. },
  9638. "autoload": {
  9639. "psr-4": {
  9640. "Whoops\\": "src/Whoops/"
  9641. }
  9642. },
  9643. "notification-url": "https://packagist.org/downloads/",
  9644. "license": [
  9645. "MIT"
  9646. ],
  9647. "authors": [
  9648. {
  9649. "name": "Filipe Dobreira",
  9650. "homepage": "https://github.com/filp",
  9651. "role": "Developer"
  9652. }
  9653. ],
  9654. "description": "php error handling for cool kids",
  9655. "homepage": "https://filp.github.io/whoops/",
  9656. "keywords": [
  9657. "error",
  9658. "exception",
  9659. "handling",
  9660. "library",
  9661. "throwable",
  9662. "whoops"
  9663. ],
  9664. "support": {
  9665. "issues": "https://github.com/filp/whoops/issues",
  9666. "source": "https://github.com/filp/whoops/tree/2.18.3"
  9667. },
  9668. "funding": [
  9669. {
  9670. "url": "https://github.com/denis-sokolov",
  9671. "type": "github"
  9672. }
  9673. ],
  9674. "time": "2025-06-16T00:02:10+00:00"
  9675. },
  9676. {
  9677. "name": "hamcrest/hamcrest-php",
  9678. "version": "v2.1.1",
  9679. "source": {
  9680. "type": "git",
  9681. "url": "https://github.com/hamcrest/hamcrest-php.git",
  9682. "reference": "f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487"
  9683. },
  9684. "dist": {
  9685. "type": "zip",
  9686. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487",
  9687. "reference": "f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487",
  9688. "shasum": ""
  9689. },
  9690. "require": {
  9691. "php": "^7.4|^8.0"
  9692. },
  9693. "replace": {
  9694. "cordoval/hamcrest-php": "*",
  9695. "davedevelopment/hamcrest-php": "*",
  9696. "kodova/hamcrest-php": "*"
  9697. },
  9698. "require-dev": {
  9699. "phpunit/php-file-iterator": "^1.4 || ^2.0 || ^3.0",
  9700. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0 || ^8.0 || ^9.0"
  9701. },
  9702. "type": "library",
  9703. "extra": {
  9704. "branch-alias": {
  9705. "dev-master": "2.1-dev"
  9706. }
  9707. },
  9708. "autoload": {
  9709. "classmap": [
  9710. "hamcrest"
  9711. ]
  9712. },
  9713. "notification-url": "https://packagist.org/downloads/",
  9714. "license": [
  9715. "BSD-3-Clause"
  9716. ],
  9717. "description": "This is the PHP port of Hamcrest Matchers",
  9718. "keywords": [
  9719. "test"
  9720. ],
  9721. "support": {
  9722. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  9723. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.1.1"
  9724. },
  9725. "time": "2025-04-30T06:54:44+00:00"
  9726. },
  9727. {
  9728. "name": "jean85/pretty-package-versions",
  9729. "version": "2.1.1",
  9730. "source": {
  9731. "type": "git",
  9732. "url": "https://github.com/Jean85/pretty-package-versions.git",
  9733. "reference": "4d7aa5dab42e2a76d99559706022885de0e18e1a"
  9734. },
  9735. "dist": {
  9736. "type": "zip",
  9737. "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/4d7aa5dab42e2a76d99559706022885de0e18e1a",
  9738. "reference": "4d7aa5dab42e2a76d99559706022885de0e18e1a",
  9739. "shasum": ""
  9740. },
  9741. "require": {
  9742. "composer-runtime-api": "^2.1.0",
  9743. "php": "^7.4|^8.0"
  9744. },
  9745. "require-dev": {
  9746. "friendsofphp/php-cs-fixer": "^3.2",
  9747. "jean85/composer-provided-replaced-stub-package": "^1.0",
  9748. "phpstan/phpstan": "^2.0",
  9749. "phpunit/phpunit": "^7.5|^8.5|^9.6",
  9750. "rector/rector": "^2.0",
  9751. "vimeo/psalm": "^4.3 || ^5.0"
  9752. },
  9753. "type": "library",
  9754. "extra": {
  9755. "branch-alias": {
  9756. "dev-master": "1.x-dev"
  9757. }
  9758. },
  9759. "autoload": {
  9760. "psr-4": {
  9761. "Jean85\\": "src/"
  9762. }
  9763. },
  9764. "notification-url": "https://packagist.org/downloads/",
  9765. "license": [
  9766. "MIT"
  9767. ],
  9768. "authors": [
  9769. {
  9770. "name": "Alessandro Lai",
  9771. "email": "alessandro.lai85@gmail.com"
  9772. }
  9773. ],
  9774. "description": "A library to get pretty versions strings of installed dependencies",
  9775. "keywords": [
  9776. "composer",
  9777. "package",
  9778. "release",
  9779. "versions"
  9780. ],
  9781. "support": {
  9782. "issues": "https://github.com/Jean85/pretty-package-versions/issues",
  9783. "source": "https://github.com/Jean85/pretty-package-versions/tree/2.1.1"
  9784. },
  9785. "time": "2025-03-19T14:43:43+00:00"
  9786. },
  9787. {
  9788. "name": "laravel/pint",
  9789. "version": "v1.24.0",
  9790. "source": {
  9791. "type": "git",
  9792. "url": "https://github.com/laravel/pint.git",
  9793. "reference": "0345f3b05f136801af8c339f9d16ef29e6b4df8a"
  9794. },
  9795. "dist": {
  9796. "type": "zip",
  9797. "url": "https://api.github.com/repos/laravel/pint/zipball/0345f3b05f136801af8c339f9d16ef29e6b4df8a",
  9798. "reference": "0345f3b05f136801af8c339f9d16ef29e6b4df8a",
  9799. "shasum": ""
  9800. },
  9801. "require": {
  9802. "ext-json": "*",
  9803. "ext-mbstring": "*",
  9804. "ext-tokenizer": "*",
  9805. "ext-xml": "*",
  9806. "php": "^8.2.0"
  9807. },
  9808. "require-dev": {
  9809. "friendsofphp/php-cs-fixer": "^3.82.2",
  9810. "illuminate/view": "^11.45.1",
  9811. "larastan/larastan": "^3.5.0",
  9812. "laravel-zero/framework": "^11.45.0",
  9813. "mockery/mockery": "^1.6.12",
  9814. "nunomaduro/termwind": "^2.3.1",
  9815. "pestphp/pest": "^2.36.0"
  9816. },
  9817. "bin": [
  9818. "builds/pint"
  9819. ],
  9820. "type": "project",
  9821. "autoload": {
  9822. "files": [
  9823. "overrides/Runner/Parallel/ProcessFactory.php"
  9824. ],
  9825. "psr-4": {
  9826. "App\\": "app/",
  9827. "Database\\Seeders\\": "database/seeders/",
  9828. "Database\\Factories\\": "database/factories/"
  9829. }
  9830. },
  9831. "notification-url": "https://packagist.org/downloads/",
  9832. "license": [
  9833. "MIT"
  9834. ],
  9835. "authors": [
  9836. {
  9837. "name": "Nuno Maduro",
  9838. "email": "enunomaduro@gmail.com"
  9839. }
  9840. ],
  9841. "description": "An opinionated code formatter for PHP.",
  9842. "homepage": "https://laravel.com",
  9843. "keywords": [
  9844. "format",
  9845. "formatter",
  9846. "lint",
  9847. "linter",
  9848. "php"
  9849. ],
  9850. "support": {
  9851. "issues": "https://github.com/laravel/pint/issues",
  9852. "source": "https://github.com/laravel/pint"
  9853. },
  9854. "time": "2025-07-10T18:09:32+00:00"
  9855. },
  9856. {
  9857. "name": "laravel/sail",
  9858. "version": "v1.44.0",
  9859. "source": {
  9860. "type": "git",
  9861. "url": "https://github.com/laravel/sail.git",
  9862. "reference": "a09097bd2a8a38e23ac472fa6a6cf5b0d1c1d3fe"
  9863. },
  9864. "dist": {
  9865. "type": "zip",
  9866. "url": "https://api.github.com/repos/laravel/sail/zipball/a09097bd2a8a38e23ac472fa6a6cf5b0d1c1d3fe",
  9867. "reference": "a09097bd2a8a38e23ac472fa6a6cf5b0d1c1d3fe",
  9868. "shasum": ""
  9869. },
  9870. "require": {
  9871. "illuminate/console": "^9.52.16|^10.0|^11.0|^12.0",
  9872. "illuminate/contracts": "^9.52.16|^10.0|^11.0|^12.0",
  9873. "illuminate/support": "^9.52.16|^10.0|^11.0|^12.0",
  9874. "php": "^8.0",
  9875. "symfony/console": "^6.0|^7.0",
  9876. "symfony/yaml": "^6.0|^7.0"
  9877. },
  9878. "require-dev": {
  9879. "orchestra/testbench": "^7.0|^8.0|^9.0|^10.0",
  9880. "phpstan/phpstan": "^1.10"
  9881. },
  9882. "bin": [
  9883. "bin/sail"
  9884. ],
  9885. "type": "library",
  9886. "extra": {
  9887. "laravel": {
  9888. "providers": [
  9889. "Laravel\\Sail\\SailServiceProvider"
  9890. ]
  9891. }
  9892. },
  9893. "autoload": {
  9894. "psr-4": {
  9895. "Laravel\\Sail\\": "src/"
  9896. }
  9897. },
  9898. "notification-url": "https://packagist.org/downloads/",
  9899. "license": [
  9900. "MIT"
  9901. ],
  9902. "authors": [
  9903. {
  9904. "name": "Taylor Otwell",
  9905. "email": "taylor@laravel.com"
  9906. }
  9907. ],
  9908. "description": "Docker files for running a basic Laravel application.",
  9909. "keywords": [
  9910. "docker",
  9911. "laravel"
  9912. ],
  9913. "support": {
  9914. "issues": "https://github.com/laravel/sail/issues",
  9915. "source": "https://github.com/laravel/sail"
  9916. },
  9917. "time": "2025-07-04T16:17:06+00:00"
  9918. },
  9919. {
  9920. "name": "mockery/mockery",
  9921. "version": "1.6.12",
  9922. "source": {
  9923. "type": "git",
  9924. "url": "https://github.com/mockery/mockery.git",
  9925. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  9926. },
  9927. "dist": {
  9928. "type": "zip",
  9929. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  9930. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  9931. "shasum": ""
  9932. },
  9933. "require": {
  9934. "hamcrest/hamcrest-php": "^2.0.1",
  9935. "lib-pcre": ">=7.0",
  9936. "php": ">=7.3"
  9937. },
  9938. "conflict": {
  9939. "phpunit/phpunit": "<8.0"
  9940. },
  9941. "require-dev": {
  9942. "phpunit/phpunit": "^8.5 || ^9.6.17",
  9943. "symplify/easy-coding-standard": "^12.1.14"
  9944. },
  9945. "type": "library",
  9946. "autoload": {
  9947. "files": [
  9948. "library/helpers.php",
  9949. "library/Mockery.php"
  9950. ],
  9951. "psr-4": {
  9952. "Mockery\\": "library/Mockery"
  9953. }
  9954. },
  9955. "notification-url": "https://packagist.org/downloads/",
  9956. "license": [
  9957. "BSD-3-Clause"
  9958. ],
  9959. "authors": [
  9960. {
  9961. "name": "Pádraic Brady",
  9962. "email": "padraic.brady@gmail.com",
  9963. "homepage": "https://github.com/padraic",
  9964. "role": "Author"
  9965. },
  9966. {
  9967. "name": "Dave Marshall",
  9968. "email": "dave.marshall@atstsolutions.co.uk",
  9969. "homepage": "https://davedevelopment.co.uk",
  9970. "role": "Developer"
  9971. },
  9972. {
  9973. "name": "Nathanael Esayeas",
  9974. "email": "nathanael.esayeas@protonmail.com",
  9975. "homepage": "https://github.com/ghostwriter",
  9976. "role": "Lead Developer"
  9977. }
  9978. ],
  9979. "description": "Mockery is a simple yet flexible PHP mock object framework",
  9980. "homepage": "https://github.com/mockery/mockery",
  9981. "keywords": [
  9982. "BDD",
  9983. "TDD",
  9984. "library",
  9985. "mock",
  9986. "mock objects",
  9987. "mockery",
  9988. "stub",
  9989. "test",
  9990. "test double",
  9991. "testing"
  9992. ],
  9993. "support": {
  9994. "docs": "https://docs.mockery.io/",
  9995. "issues": "https://github.com/mockery/mockery/issues",
  9996. "rss": "https://github.com/mockery/mockery/releases.atom",
  9997. "security": "https://github.com/mockery/mockery/security/advisories",
  9998. "source": "https://github.com/mockery/mockery"
  9999. },
  10000. "time": "2024-05-16T03:13:13+00:00"
  10001. },
  10002. {
  10003. "name": "myclabs/deep-copy",
  10004. "version": "1.13.3",
  10005. "source": {
  10006. "type": "git",
  10007. "url": "https://github.com/myclabs/DeepCopy.git",
  10008. "reference": "faed855a7b5f4d4637717c2b3863e277116beb36"
  10009. },
  10010. "dist": {
  10011. "type": "zip",
  10012. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/faed855a7b5f4d4637717c2b3863e277116beb36",
  10013. "reference": "faed855a7b5f4d4637717c2b3863e277116beb36",
  10014. "shasum": ""
  10015. },
  10016. "require": {
  10017. "php": "^7.1 || ^8.0"
  10018. },
  10019. "conflict": {
  10020. "doctrine/collections": "<1.6.8",
  10021. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  10022. },
  10023. "require-dev": {
  10024. "doctrine/collections": "^1.6.8",
  10025. "doctrine/common": "^2.13.3 || ^3.2.2",
  10026. "phpspec/prophecy": "^1.10",
  10027. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  10028. },
  10029. "type": "library",
  10030. "autoload": {
  10031. "files": [
  10032. "src/DeepCopy/deep_copy.php"
  10033. ],
  10034. "psr-4": {
  10035. "DeepCopy\\": "src/DeepCopy/"
  10036. }
  10037. },
  10038. "notification-url": "https://packagist.org/downloads/",
  10039. "license": [
  10040. "MIT"
  10041. ],
  10042. "description": "Create deep copies (clones) of your objects",
  10043. "keywords": [
  10044. "clone",
  10045. "copy",
  10046. "duplicate",
  10047. "object",
  10048. "object graph"
  10049. ],
  10050. "support": {
  10051. "issues": "https://github.com/myclabs/DeepCopy/issues",
  10052. "source": "https://github.com/myclabs/DeepCopy/tree/1.13.3"
  10053. },
  10054. "funding": [
  10055. {
  10056. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  10057. "type": "tidelift"
  10058. }
  10059. ],
  10060. "time": "2025-07-05T12:25:42+00:00"
  10061. },
  10062. {
  10063. "name": "nunomaduro/collision",
  10064. "version": "v8.8.2",
  10065. "source": {
  10066. "type": "git",
  10067. "url": "https://github.com/nunomaduro/collision.git",
  10068. "reference": "60207965f9b7b7a4ce15a0f75d57f9dadb105bdb"
  10069. },
  10070. "dist": {
  10071. "type": "zip",
  10072. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/60207965f9b7b7a4ce15a0f75d57f9dadb105bdb",
  10073. "reference": "60207965f9b7b7a4ce15a0f75d57f9dadb105bdb",
  10074. "shasum": ""
  10075. },
  10076. "require": {
  10077. "filp/whoops": "^2.18.1",
  10078. "nunomaduro/termwind": "^2.3.1",
  10079. "php": "^8.2.0",
  10080. "symfony/console": "^7.3.0"
  10081. },
  10082. "conflict": {
  10083. "laravel/framework": "<11.44.2 || >=13.0.0",
  10084. "phpunit/phpunit": "<11.5.15 || >=13.0.0"
  10085. },
  10086. "require-dev": {
  10087. "brianium/paratest": "^7.8.3",
  10088. "larastan/larastan": "^3.4.2",
  10089. "laravel/framework": "^11.44.2 || ^12.18",
  10090. "laravel/pint": "^1.22.1",
  10091. "laravel/sail": "^1.43.1",
  10092. "laravel/sanctum": "^4.1.1",
  10093. "laravel/tinker": "^2.10.1",
  10094. "orchestra/testbench-core": "^9.12.0 || ^10.4",
  10095. "pestphp/pest": "^3.8.2",
  10096. "sebastian/environment": "^7.2.1 || ^8.0"
  10097. },
  10098. "type": "library",
  10099. "extra": {
  10100. "laravel": {
  10101. "providers": [
  10102. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  10103. ]
  10104. },
  10105. "branch-alias": {
  10106. "dev-8.x": "8.x-dev"
  10107. }
  10108. },
  10109. "autoload": {
  10110. "files": [
  10111. "./src/Adapters/Phpunit/Autoload.php"
  10112. ],
  10113. "psr-4": {
  10114. "NunoMaduro\\Collision\\": "src/"
  10115. }
  10116. },
  10117. "notification-url": "https://packagist.org/downloads/",
  10118. "license": [
  10119. "MIT"
  10120. ],
  10121. "authors": [
  10122. {
  10123. "name": "Nuno Maduro",
  10124. "email": "enunomaduro@gmail.com"
  10125. }
  10126. ],
  10127. "description": "Cli error handling for console/command-line PHP applications.",
  10128. "keywords": [
  10129. "artisan",
  10130. "cli",
  10131. "command-line",
  10132. "console",
  10133. "dev",
  10134. "error",
  10135. "handling",
  10136. "laravel",
  10137. "laravel-zero",
  10138. "php",
  10139. "symfony"
  10140. ],
  10141. "support": {
  10142. "issues": "https://github.com/nunomaduro/collision/issues",
  10143. "source": "https://github.com/nunomaduro/collision"
  10144. },
  10145. "funding": [
  10146. {
  10147. "url": "https://www.paypal.com/paypalme/enunomaduro",
  10148. "type": "custom"
  10149. },
  10150. {
  10151. "url": "https://github.com/nunomaduro",
  10152. "type": "github"
  10153. },
  10154. {
  10155. "url": "https://www.patreon.com/nunomaduro",
  10156. "type": "patreon"
  10157. }
  10158. ],
  10159. "time": "2025-06-25T02:12:12+00:00"
  10160. },
  10161. {
  10162. "name": "pestphp/pest",
  10163. "version": "v3.8.2",
  10164. "source": {
  10165. "type": "git",
  10166. "url": "https://github.com/pestphp/pest.git",
  10167. "reference": "c6244a8712968dbac88eb998e7ff3b5caa556b0d"
  10168. },
  10169. "dist": {
  10170. "type": "zip",
  10171. "url": "https://api.github.com/repos/pestphp/pest/zipball/c6244a8712968dbac88eb998e7ff3b5caa556b0d",
  10172. "reference": "c6244a8712968dbac88eb998e7ff3b5caa556b0d",
  10173. "shasum": ""
  10174. },
  10175. "require": {
  10176. "brianium/paratest": "^7.8.3",
  10177. "nunomaduro/collision": "^8.8.0",
  10178. "nunomaduro/termwind": "^2.3.0",
  10179. "pestphp/pest-plugin": "^3.0.0",
  10180. "pestphp/pest-plugin-arch": "^3.1.0",
  10181. "pestphp/pest-plugin-mutate": "^3.0.5",
  10182. "php": "^8.2.0",
  10183. "phpunit/phpunit": "^11.5.15"
  10184. },
  10185. "conflict": {
  10186. "filp/whoops": "<2.16.0",
  10187. "phpunit/phpunit": ">11.5.15",
  10188. "sebastian/exporter": "<6.0.0",
  10189. "webmozart/assert": "<1.11.0"
  10190. },
  10191. "require-dev": {
  10192. "pestphp/pest-dev-tools": "^3.4.0",
  10193. "pestphp/pest-plugin-type-coverage": "^3.5.0",
  10194. "symfony/process": "^7.2.5"
  10195. },
  10196. "bin": [
  10197. "bin/pest"
  10198. ],
  10199. "type": "library",
  10200. "extra": {
  10201. "pest": {
  10202. "plugins": [
  10203. "Pest\\Mutate\\Plugins\\Mutate",
  10204. "Pest\\Plugins\\Configuration",
  10205. "Pest\\Plugins\\Bail",
  10206. "Pest\\Plugins\\Cache",
  10207. "Pest\\Plugins\\Coverage",
  10208. "Pest\\Plugins\\Init",
  10209. "Pest\\Plugins\\Environment",
  10210. "Pest\\Plugins\\Help",
  10211. "Pest\\Plugins\\Memory",
  10212. "Pest\\Plugins\\Only",
  10213. "Pest\\Plugins\\Printer",
  10214. "Pest\\Plugins\\ProcessIsolation",
  10215. "Pest\\Plugins\\Profile",
  10216. "Pest\\Plugins\\Retry",
  10217. "Pest\\Plugins\\Snapshot",
  10218. "Pest\\Plugins\\Verbose",
  10219. "Pest\\Plugins\\Version",
  10220. "Pest\\Plugins\\Parallel"
  10221. ]
  10222. },
  10223. "phpstan": {
  10224. "includes": [
  10225. "extension.neon"
  10226. ]
  10227. }
  10228. },
  10229. "autoload": {
  10230. "files": [
  10231. "src/Functions.php",
  10232. "src/Pest.php"
  10233. ],
  10234. "psr-4": {
  10235. "Pest\\": "src/"
  10236. }
  10237. },
  10238. "notification-url": "https://packagist.org/downloads/",
  10239. "license": [
  10240. "MIT"
  10241. ],
  10242. "authors": [
  10243. {
  10244. "name": "Nuno Maduro",
  10245. "email": "enunomaduro@gmail.com"
  10246. }
  10247. ],
  10248. "description": "The elegant PHP Testing Framework.",
  10249. "keywords": [
  10250. "framework",
  10251. "pest",
  10252. "php",
  10253. "test",
  10254. "testing",
  10255. "unit"
  10256. ],
  10257. "support": {
  10258. "issues": "https://github.com/pestphp/pest/issues",
  10259. "source": "https://github.com/pestphp/pest/tree/v3.8.2"
  10260. },
  10261. "funding": [
  10262. {
  10263. "url": "https://www.paypal.com/paypalme/enunomaduro",
  10264. "type": "custom"
  10265. },
  10266. {
  10267. "url": "https://github.com/nunomaduro",
  10268. "type": "github"
  10269. }
  10270. ],
  10271. "time": "2025-04-17T10:53:02+00:00"
  10272. },
  10273. {
  10274. "name": "pestphp/pest-plugin",
  10275. "version": "v3.0.0",
  10276. "source": {
  10277. "type": "git",
  10278. "url": "https://github.com/pestphp/pest-plugin.git",
  10279. "reference": "e79b26c65bc11c41093b10150c1341cc5cdbea83"
  10280. },
  10281. "dist": {
  10282. "type": "zip",
  10283. "url": "https://api.github.com/repos/pestphp/pest-plugin/zipball/e79b26c65bc11c41093b10150c1341cc5cdbea83",
  10284. "reference": "e79b26c65bc11c41093b10150c1341cc5cdbea83",
  10285. "shasum": ""
  10286. },
  10287. "require": {
  10288. "composer-plugin-api": "^2.0.0",
  10289. "composer-runtime-api": "^2.2.2",
  10290. "php": "^8.2"
  10291. },
  10292. "conflict": {
  10293. "pestphp/pest": "<3.0.0"
  10294. },
  10295. "require-dev": {
  10296. "composer/composer": "^2.7.9",
  10297. "pestphp/pest": "^3.0.0",
  10298. "pestphp/pest-dev-tools": "^3.0.0"
  10299. },
  10300. "type": "composer-plugin",
  10301. "extra": {
  10302. "class": "Pest\\Plugin\\Manager"
  10303. },
  10304. "autoload": {
  10305. "psr-4": {
  10306. "Pest\\Plugin\\": "src/"
  10307. }
  10308. },
  10309. "notification-url": "https://packagist.org/downloads/",
  10310. "license": [
  10311. "MIT"
  10312. ],
  10313. "description": "The Pest plugin manager",
  10314. "keywords": [
  10315. "framework",
  10316. "manager",
  10317. "pest",
  10318. "php",
  10319. "plugin",
  10320. "test",
  10321. "testing",
  10322. "unit"
  10323. ],
  10324. "support": {
  10325. "source": "https://github.com/pestphp/pest-plugin/tree/v3.0.0"
  10326. },
  10327. "funding": [
  10328. {
  10329. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  10330. "type": "custom"
  10331. },
  10332. {
  10333. "url": "https://github.com/nunomaduro",
  10334. "type": "github"
  10335. },
  10336. {
  10337. "url": "https://www.patreon.com/nunomaduro",
  10338. "type": "patreon"
  10339. }
  10340. ],
  10341. "time": "2024-09-08T23:21:41+00:00"
  10342. },
  10343. {
  10344. "name": "pestphp/pest-plugin-arch",
  10345. "version": "v3.1.1",
  10346. "source": {
  10347. "type": "git",
  10348. "url": "https://github.com/pestphp/pest-plugin-arch.git",
  10349. "reference": "db7bd9cb1612b223e16618d85475c6f63b9c8daa"
  10350. },
  10351. "dist": {
  10352. "type": "zip",
  10353. "url": "https://api.github.com/repos/pestphp/pest-plugin-arch/zipball/db7bd9cb1612b223e16618d85475c6f63b9c8daa",
  10354. "reference": "db7bd9cb1612b223e16618d85475c6f63b9c8daa",
  10355. "shasum": ""
  10356. },
  10357. "require": {
  10358. "pestphp/pest-plugin": "^3.0.0",
  10359. "php": "^8.2",
  10360. "ta-tikoma/phpunit-architecture-test": "^0.8.4"
  10361. },
  10362. "require-dev": {
  10363. "pestphp/pest": "^3.8.1",
  10364. "pestphp/pest-dev-tools": "^3.4.0"
  10365. },
  10366. "type": "library",
  10367. "extra": {
  10368. "pest": {
  10369. "plugins": [
  10370. "Pest\\Arch\\Plugin"
  10371. ]
  10372. }
  10373. },
  10374. "autoload": {
  10375. "files": [
  10376. "src/Autoload.php"
  10377. ],
  10378. "psr-4": {
  10379. "Pest\\Arch\\": "src/"
  10380. }
  10381. },
  10382. "notification-url": "https://packagist.org/downloads/",
  10383. "license": [
  10384. "MIT"
  10385. ],
  10386. "description": "The Arch plugin for Pest PHP.",
  10387. "keywords": [
  10388. "arch",
  10389. "architecture",
  10390. "framework",
  10391. "pest",
  10392. "php",
  10393. "plugin",
  10394. "test",
  10395. "testing",
  10396. "unit"
  10397. ],
  10398. "support": {
  10399. "source": "https://github.com/pestphp/pest-plugin-arch/tree/v3.1.1"
  10400. },
  10401. "funding": [
  10402. {
  10403. "url": "https://www.paypal.com/paypalme/enunomaduro",
  10404. "type": "custom"
  10405. },
  10406. {
  10407. "url": "https://github.com/nunomaduro",
  10408. "type": "github"
  10409. }
  10410. ],
  10411. "time": "2025-04-16T22:59:48+00:00"
  10412. },
  10413. {
  10414. "name": "pestphp/pest-plugin-livewire",
  10415. "version": "v3.0.0",
  10416. "source": {
  10417. "type": "git",
  10418. "url": "https://github.com/pestphp/pest-plugin-livewire.git",
  10419. "reference": "e2f2edb0a7d414d6837d87908a0e148256d3bf89"
  10420. },
  10421. "dist": {
  10422. "type": "zip",
  10423. "url": "https://api.github.com/repos/pestphp/pest-plugin-livewire/zipball/e2f2edb0a7d414d6837d87908a0e148256d3bf89",
  10424. "reference": "e2f2edb0a7d414d6837d87908a0e148256d3bf89",
  10425. "shasum": ""
  10426. },
  10427. "require": {
  10428. "livewire/livewire": "^3.5.6",
  10429. "pestphp/pest": "^3.0.0",
  10430. "php": "^8.1"
  10431. },
  10432. "require-dev": {
  10433. "orchestra/testbench": "^9.4.0",
  10434. "pestphp/pest-dev-tools": "^3.0.0"
  10435. },
  10436. "type": "library",
  10437. "autoload": {
  10438. "files": [
  10439. "src/Autoload.php"
  10440. ],
  10441. "psr-4": {
  10442. "Pest\\Livewire\\": "src/"
  10443. }
  10444. },
  10445. "notification-url": "https://packagist.org/downloads/",
  10446. "license": [
  10447. "MIT"
  10448. ],
  10449. "description": "The Pest Livewire Plugin",
  10450. "keywords": [
  10451. "framework",
  10452. "livewire",
  10453. "pest",
  10454. "php",
  10455. "plugin",
  10456. "test",
  10457. "testing",
  10458. "unit"
  10459. ],
  10460. "support": {
  10461. "source": "https://github.com/pestphp/pest-plugin-livewire/tree/v3.0.0"
  10462. },
  10463. "funding": [
  10464. {
  10465. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  10466. "type": "custom"
  10467. },
  10468. {
  10469. "url": "https://github.com/nunomaduro",
  10470. "type": "github"
  10471. },
  10472. {
  10473. "url": "https://www.patreon.com/nunomaduro",
  10474. "type": "patreon"
  10475. }
  10476. ],
  10477. "time": "2024-09-09T00:05:59+00:00"
  10478. },
  10479. {
  10480. "name": "pestphp/pest-plugin-mutate",
  10481. "version": "v3.0.5",
  10482. "source": {
  10483. "type": "git",
  10484. "url": "https://github.com/pestphp/pest-plugin-mutate.git",
  10485. "reference": "e10dbdc98c9e2f3890095b4fe2144f63a5717e08"
  10486. },
  10487. "dist": {
  10488. "type": "zip",
  10489. "url": "https://api.github.com/repos/pestphp/pest-plugin-mutate/zipball/e10dbdc98c9e2f3890095b4fe2144f63a5717e08",
  10490. "reference": "e10dbdc98c9e2f3890095b4fe2144f63a5717e08",
  10491. "shasum": ""
  10492. },
  10493. "require": {
  10494. "nikic/php-parser": "^5.2.0",
  10495. "pestphp/pest-plugin": "^3.0.0",
  10496. "php": "^8.2",
  10497. "psr/simple-cache": "^3.0.0"
  10498. },
  10499. "require-dev": {
  10500. "pestphp/pest": "^3.0.8",
  10501. "pestphp/pest-dev-tools": "^3.0.0",
  10502. "pestphp/pest-plugin-type-coverage": "^3.0.0"
  10503. },
  10504. "type": "library",
  10505. "autoload": {
  10506. "psr-4": {
  10507. "Pest\\Mutate\\": "src/"
  10508. }
  10509. },
  10510. "notification-url": "https://packagist.org/downloads/",
  10511. "license": [
  10512. "MIT"
  10513. ],
  10514. "authors": [
  10515. {
  10516. "name": "Sandro Gehri",
  10517. "email": "sandrogehri@gmail.com"
  10518. }
  10519. ],
  10520. "description": "Mutates your code to find untested cases",
  10521. "keywords": [
  10522. "framework",
  10523. "mutate",
  10524. "mutation",
  10525. "pest",
  10526. "php",
  10527. "plugin",
  10528. "test",
  10529. "testing",
  10530. "unit"
  10531. ],
  10532. "support": {
  10533. "source": "https://github.com/pestphp/pest-plugin-mutate/tree/v3.0.5"
  10534. },
  10535. "funding": [
  10536. {
  10537. "url": "https://www.paypal.com/paypalme/enunomaduro",
  10538. "type": "custom"
  10539. },
  10540. {
  10541. "url": "https://github.com/gehrisandro",
  10542. "type": "github"
  10543. },
  10544. {
  10545. "url": "https://github.com/nunomaduro",
  10546. "type": "github"
  10547. }
  10548. ],
  10549. "time": "2024-09-22T07:54:40+00:00"
  10550. },
  10551. {
  10552. "name": "phar-io/manifest",
  10553. "version": "2.0.4",
  10554. "source": {
  10555. "type": "git",
  10556. "url": "https://github.com/phar-io/manifest.git",
  10557. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  10558. },
  10559. "dist": {
  10560. "type": "zip",
  10561. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  10562. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  10563. "shasum": ""
  10564. },
  10565. "require": {
  10566. "ext-dom": "*",
  10567. "ext-libxml": "*",
  10568. "ext-phar": "*",
  10569. "ext-xmlwriter": "*",
  10570. "phar-io/version": "^3.0.1",
  10571. "php": "^7.2 || ^8.0"
  10572. },
  10573. "type": "library",
  10574. "extra": {
  10575. "branch-alias": {
  10576. "dev-master": "2.0.x-dev"
  10577. }
  10578. },
  10579. "autoload": {
  10580. "classmap": [
  10581. "src/"
  10582. ]
  10583. },
  10584. "notification-url": "https://packagist.org/downloads/",
  10585. "license": [
  10586. "BSD-3-Clause"
  10587. ],
  10588. "authors": [
  10589. {
  10590. "name": "Arne Blankerts",
  10591. "email": "arne@blankerts.de",
  10592. "role": "Developer"
  10593. },
  10594. {
  10595. "name": "Sebastian Heuer",
  10596. "email": "sebastian@phpeople.de",
  10597. "role": "Developer"
  10598. },
  10599. {
  10600. "name": "Sebastian Bergmann",
  10601. "email": "sebastian@phpunit.de",
  10602. "role": "Developer"
  10603. }
  10604. ],
  10605. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  10606. "support": {
  10607. "issues": "https://github.com/phar-io/manifest/issues",
  10608. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  10609. },
  10610. "funding": [
  10611. {
  10612. "url": "https://github.com/theseer",
  10613. "type": "github"
  10614. }
  10615. ],
  10616. "time": "2024-03-03T12:33:53+00:00"
  10617. },
  10618. {
  10619. "name": "phar-io/version",
  10620. "version": "3.2.1",
  10621. "source": {
  10622. "type": "git",
  10623. "url": "https://github.com/phar-io/version.git",
  10624. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  10625. },
  10626. "dist": {
  10627. "type": "zip",
  10628. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  10629. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  10630. "shasum": ""
  10631. },
  10632. "require": {
  10633. "php": "^7.2 || ^8.0"
  10634. },
  10635. "type": "library",
  10636. "autoload": {
  10637. "classmap": [
  10638. "src/"
  10639. ]
  10640. },
  10641. "notification-url": "https://packagist.org/downloads/",
  10642. "license": [
  10643. "BSD-3-Clause"
  10644. ],
  10645. "authors": [
  10646. {
  10647. "name": "Arne Blankerts",
  10648. "email": "arne@blankerts.de",
  10649. "role": "Developer"
  10650. },
  10651. {
  10652. "name": "Sebastian Heuer",
  10653. "email": "sebastian@phpeople.de",
  10654. "role": "Developer"
  10655. },
  10656. {
  10657. "name": "Sebastian Bergmann",
  10658. "email": "sebastian@phpunit.de",
  10659. "role": "Developer"
  10660. }
  10661. ],
  10662. "description": "Library for handling version information and constraints",
  10663. "support": {
  10664. "issues": "https://github.com/phar-io/version/issues",
  10665. "source": "https://github.com/phar-io/version/tree/3.2.1"
  10666. },
  10667. "time": "2022-02-21T01:04:05+00:00"
  10668. },
  10669. {
  10670. "name": "php-debugbar/php-debugbar",
  10671. "version": "v2.2.4",
  10672. "source": {
  10673. "type": "git",
  10674. "url": "https://github.com/php-debugbar/php-debugbar.git",
  10675. "reference": "3146d04671f51f69ffec2a4207ac3bdcf13a9f35"
  10676. },
  10677. "dist": {
  10678. "type": "zip",
  10679. "url": "https://api.github.com/repos/php-debugbar/php-debugbar/zipball/3146d04671f51f69ffec2a4207ac3bdcf13a9f35",
  10680. "reference": "3146d04671f51f69ffec2a4207ac3bdcf13a9f35",
  10681. "shasum": ""
  10682. },
  10683. "require": {
  10684. "php": "^8",
  10685. "psr/log": "^1|^2|^3",
  10686. "symfony/var-dumper": "^4|^5|^6|^7"
  10687. },
  10688. "replace": {
  10689. "maximebf/debugbar": "self.version"
  10690. },
  10691. "require-dev": {
  10692. "dbrekelmans/bdi": "^1",
  10693. "phpunit/phpunit": "^8|^9",
  10694. "symfony/panther": "^1|^2.1",
  10695. "twig/twig": "^1.38|^2.7|^3.0"
  10696. },
  10697. "suggest": {
  10698. "kriswallsmith/assetic": "The best way to manage assets",
  10699. "monolog/monolog": "Log using Monolog",
  10700. "predis/predis": "Redis storage"
  10701. },
  10702. "type": "library",
  10703. "extra": {
  10704. "branch-alias": {
  10705. "dev-master": "2.1-dev"
  10706. }
  10707. },
  10708. "autoload": {
  10709. "psr-4": {
  10710. "DebugBar\\": "src/DebugBar/"
  10711. }
  10712. },
  10713. "notification-url": "https://packagist.org/downloads/",
  10714. "license": [
  10715. "MIT"
  10716. ],
  10717. "authors": [
  10718. {
  10719. "name": "Maxime Bouroumeau-Fuseau",
  10720. "email": "maxime.bouroumeau@gmail.com",
  10721. "homepage": "http://maximebf.com"
  10722. },
  10723. {
  10724. "name": "Barry vd. Heuvel",
  10725. "email": "barryvdh@gmail.com"
  10726. }
  10727. ],
  10728. "description": "Debug bar in the browser for php application",
  10729. "homepage": "https://github.com/php-debugbar/php-debugbar",
  10730. "keywords": [
  10731. "debug",
  10732. "debug bar",
  10733. "debugbar",
  10734. "dev"
  10735. ],
  10736. "support": {
  10737. "issues": "https://github.com/php-debugbar/php-debugbar/issues",
  10738. "source": "https://github.com/php-debugbar/php-debugbar/tree/v2.2.4"
  10739. },
  10740. "time": "2025-07-22T14:01:30+00:00"
  10741. },
  10742. {
  10743. "name": "php-di/invoker",
  10744. "version": "2.3.6",
  10745. "source": {
  10746. "type": "git",
  10747. "url": "https://github.com/PHP-DI/Invoker.git",
  10748. "reference": "59f15608528d8a8838d69b422a919fd6b16aa576"
  10749. },
  10750. "dist": {
  10751. "type": "zip",
  10752. "url": "https://api.github.com/repos/PHP-DI/Invoker/zipball/59f15608528d8a8838d69b422a919fd6b16aa576",
  10753. "reference": "59f15608528d8a8838d69b422a919fd6b16aa576",
  10754. "shasum": ""
  10755. },
  10756. "require": {
  10757. "php": ">=7.3",
  10758. "psr/container": "^1.0|^2.0"
  10759. },
  10760. "require-dev": {
  10761. "athletic/athletic": "~0.1.8",
  10762. "mnapoli/hard-mode": "~0.3.0",
  10763. "phpunit/phpunit": "^9.0"
  10764. },
  10765. "type": "library",
  10766. "autoload": {
  10767. "psr-4": {
  10768. "Invoker\\": "src/"
  10769. }
  10770. },
  10771. "notification-url": "https://packagist.org/downloads/",
  10772. "license": [
  10773. "MIT"
  10774. ],
  10775. "description": "Generic and extensible callable invoker",
  10776. "homepage": "https://github.com/PHP-DI/Invoker",
  10777. "keywords": [
  10778. "callable",
  10779. "dependency",
  10780. "dependency-injection",
  10781. "injection",
  10782. "invoke",
  10783. "invoker"
  10784. ],
  10785. "support": {
  10786. "issues": "https://github.com/PHP-DI/Invoker/issues",
  10787. "source": "https://github.com/PHP-DI/Invoker/tree/2.3.6"
  10788. },
  10789. "funding": [
  10790. {
  10791. "url": "https://github.com/mnapoli",
  10792. "type": "github"
  10793. }
  10794. ],
  10795. "time": "2025-01-17T12:49:27+00:00"
  10796. },
  10797. {
  10798. "name": "php-di/php-di",
  10799. "version": "7.0.11",
  10800. "source": {
  10801. "type": "git",
  10802. "url": "https://github.com/PHP-DI/PHP-DI.git",
  10803. "reference": "32f111a6d214564520a57831d397263e8946c1d2"
  10804. },
  10805. "dist": {
  10806. "type": "zip",
  10807. "url": "https://api.github.com/repos/PHP-DI/PHP-DI/zipball/32f111a6d214564520a57831d397263e8946c1d2",
  10808. "reference": "32f111a6d214564520a57831d397263e8946c1d2",
  10809. "shasum": ""
  10810. },
  10811. "require": {
  10812. "laravel/serializable-closure": "^1.0 || ^2.0",
  10813. "php": ">=8.0",
  10814. "php-di/invoker": "^2.0",
  10815. "psr/container": "^1.1 || ^2.0"
  10816. },
  10817. "provide": {
  10818. "psr/container-implementation": "^1.0"
  10819. },
  10820. "require-dev": {
  10821. "friendsofphp/php-cs-fixer": "^3",
  10822. "friendsofphp/proxy-manager-lts": "^1",
  10823. "mnapoli/phpunit-easymock": "^1.3",
  10824. "phpunit/phpunit": "^9.6 || ^10 || ^11",
  10825. "vimeo/psalm": "^5|^6"
  10826. },
  10827. "suggest": {
  10828. "friendsofphp/proxy-manager-lts": "Install it if you want to use lazy injection (version ^1)"
  10829. },
  10830. "type": "library",
  10831. "autoload": {
  10832. "files": [
  10833. "src/functions.php"
  10834. ],
  10835. "psr-4": {
  10836. "DI\\": "src/"
  10837. }
  10838. },
  10839. "notification-url": "https://packagist.org/downloads/",
  10840. "license": [
  10841. "MIT"
  10842. ],
  10843. "description": "The dependency injection container for humans",
  10844. "homepage": "https://php-di.org/",
  10845. "keywords": [
  10846. "PSR-11",
  10847. "container",
  10848. "container-interop",
  10849. "dependency injection",
  10850. "di",
  10851. "ioc",
  10852. "psr11"
  10853. ],
  10854. "support": {
  10855. "issues": "https://github.com/PHP-DI/PHP-DI/issues",
  10856. "source": "https://github.com/PHP-DI/PHP-DI/tree/7.0.11"
  10857. },
  10858. "funding": [
  10859. {
  10860. "url": "https://github.com/mnapoli",
  10861. "type": "github"
  10862. },
  10863. {
  10864. "url": "https://tidelift.com/funding/github/packagist/php-di/php-di",
  10865. "type": "tidelift"
  10866. }
  10867. ],
  10868. "time": "2025-06-03T07:45:57+00:00"
  10869. },
  10870. {
  10871. "name": "phpdocumentor/reflection-common",
  10872. "version": "2.2.0",
  10873. "source": {
  10874. "type": "git",
  10875. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  10876. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  10877. },
  10878. "dist": {
  10879. "type": "zip",
  10880. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  10881. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  10882. "shasum": ""
  10883. },
  10884. "require": {
  10885. "php": "^7.2 || ^8.0"
  10886. },
  10887. "type": "library",
  10888. "extra": {
  10889. "branch-alias": {
  10890. "dev-2.x": "2.x-dev"
  10891. }
  10892. },
  10893. "autoload": {
  10894. "psr-4": {
  10895. "phpDocumentor\\Reflection\\": "src/"
  10896. }
  10897. },
  10898. "notification-url": "https://packagist.org/downloads/",
  10899. "license": [
  10900. "MIT"
  10901. ],
  10902. "authors": [
  10903. {
  10904. "name": "Jaap van Otterdijk",
  10905. "email": "opensource@ijaap.nl"
  10906. }
  10907. ],
  10908. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  10909. "homepage": "http://www.phpdoc.org",
  10910. "keywords": [
  10911. "FQSEN",
  10912. "phpDocumentor",
  10913. "phpdoc",
  10914. "reflection",
  10915. "static analysis"
  10916. ],
  10917. "support": {
  10918. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  10919. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  10920. },
  10921. "time": "2020-06-27T09:03:43+00:00"
  10922. },
  10923. {
  10924. "name": "phpdocumentor/reflection-docblock",
  10925. "version": "5.6.2",
  10926. "source": {
  10927. "type": "git",
  10928. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  10929. "reference": "92dde6a5919e34835c506ac8c523ef095a95ed62"
  10930. },
  10931. "dist": {
  10932. "type": "zip",
  10933. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/92dde6a5919e34835c506ac8c523ef095a95ed62",
  10934. "reference": "92dde6a5919e34835c506ac8c523ef095a95ed62",
  10935. "shasum": ""
  10936. },
  10937. "require": {
  10938. "doctrine/deprecations": "^1.1",
  10939. "ext-filter": "*",
  10940. "php": "^7.4 || ^8.0",
  10941. "phpdocumentor/reflection-common": "^2.2",
  10942. "phpdocumentor/type-resolver": "^1.7",
  10943. "phpstan/phpdoc-parser": "^1.7|^2.0",
  10944. "webmozart/assert": "^1.9.1"
  10945. },
  10946. "require-dev": {
  10947. "mockery/mockery": "~1.3.5 || ~1.6.0",
  10948. "phpstan/extension-installer": "^1.1",
  10949. "phpstan/phpstan": "^1.8",
  10950. "phpstan/phpstan-mockery": "^1.1",
  10951. "phpstan/phpstan-webmozart-assert": "^1.2",
  10952. "phpunit/phpunit": "^9.5",
  10953. "psalm/phar": "^5.26"
  10954. },
  10955. "type": "library",
  10956. "extra": {
  10957. "branch-alias": {
  10958. "dev-master": "5.x-dev"
  10959. }
  10960. },
  10961. "autoload": {
  10962. "psr-4": {
  10963. "phpDocumentor\\Reflection\\": "src"
  10964. }
  10965. },
  10966. "notification-url": "https://packagist.org/downloads/",
  10967. "license": [
  10968. "MIT"
  10969. ],
  10970. "authors": [
  10971. {
  10972. "name": "Mike van Riel",
  10973. "email": "me@mikevanriel.com"
  10974. },
  10975. {
  10976. "name": "Jaap van Otterdijk",
  10977. "email": "opensource@ijaap.nl"
  10978. }
  10979. ],
  10980. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  10981. "support": {
  10982. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  10983. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.6.2"
  10984. },
  10985. "time": "2025-04-13T19:20:35+00:00"
  10986. },
  10987. {
  10988. "name": "phpdocumentor/type-resolver",
  10989. "version": "1.10.0",
  10990. "source": {
  10991. "type": "git",
  10992. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  10993. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a"
  10994. },
  10995. "dist": {
  10996. "type": "zip",
  10997. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  10998. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  10999. "shasum": ""
  11000. },
  11001. "require": {
  11002. "doctrine/deprecations": "^1.0",
  11003. "php": "^7.3 || ^8.0",
  11004. "phpdocumentor/reflection-common": "^2.0",
  11005. "phpstan/phpdoc-parser": "^1.18|^2.0"
  11006. },
  11007. "require-dev": {
  11008. "ext-tokenizer": "*",
  11009. "phpbench/phpbench": "^1.2",
  11010. "phpstan/extension-installer": "^1.1",
  11011. "phpstan/phpstan": "^1.8",
  11012. "phpstan/phpstan-phpunit": "^1.1",
  11013. "phpunit/phpunit": "^9.5",
  11014. "rector/rector": "^0.13.9",
  11015. "vimeo/psalm": "^4.25"
  11016. },
  11017. "type": "library",
  11018. "extra": {
  11019. "branch-alias": {
  11020. "dev-1.x": "1.x-dev"
  11021. }
  11022. },
  11023. "autoload": {
  11024. "psr-4": {
  11025. "phpDocumentor\\Reflection\\": "src"
  11026. }
  11027. },
  11028. "notification-url": "https://packagist.org/downloads/",
  11029. "license": [
  11030. "MIT"
  11031. ],
  11032. "authors": [
  11033. {
  11034. "name": "Mike van Riel",
  11035. "email": "me@mikevanriel.com"
  11036. }
  11037. ],
  11038. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  11039. "support": {
  11040. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  11041. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.10.0"
  11042. },
  11043. "time": "2024-11-09T15:12:26+00:00"
  11044. },
  11045. {
  11046. "name": "phpstan/phpdoc-parser",
  11047. "version": "2.2.0",
  11048. "source": {
  11049. "type": "git",
  11050. "url": "https://github.com/phpstan/phpdoc-parser.git",
  11051. "reference": "b9e61a61e39e02dd90944e9115241c7f7e76bfd8"
  11052. },
  11053. "dist": {
  11054. "type": "zip",
  11055. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/b9e61a61e39e02dd90944e9115241c7f7e76bfd8",
  11056. "reference": "b9e61a61e39e02dd90944e9115241c7f7e76bfd8",
  11057. "shasum": ""
  11058. },
  11059. "require": {
  11060. "php": "^7.4 || ^8.0"
  11061. },
  11062. "require-dev": {
  11063. "doctrine/annotations": "^2.0",
  11064. "nikic/php-parser": "^5.3.0",
  11065. "php-parallel-lint/php-parallel-lint": "^1.2",
  11066. "phpstan/extension-installer": "^1.0",
  11067. "phpstan/phpstan": "^2.0",
  11068. "phpstan/phpstan-phpunit": "^2.0",
  11069. "phpstan/phpstan-strict-rules": "^2.0",
  11070. "phpunit/phpunit": "^9.6",
  11071. "symfony/process": "^5.2"
  11072. },
  11073. "type": "library",
  11074. "autoload": {
  11075. "psr-4": {
  11076. "PHPStan\\PhpDocParser\\": [
  11077. "src/"
  11078. ]
  11079. }
  11080. },
  11081. "notification-url": "https://packagist.org/downloads/",
  11082. "license": [
  11083. "MIT"
  11084. ],
  11085. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  11086. "support": {
  11087. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  11088. "source": "https://github.com/phpstan/phpdoc-parser/tree/2.2.0"
  11089. },
  11090. "time": "2025-07-13T07:04:09+00:00"
  11091. },
  11092. {
  11093. "name": "phpunit/php-code-coverage",
  11094. "version": "11.0.10",
  11095. "source": {
  11096. "type": "git",
  11097. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  11098. "reference": "1a800a7446add2d79cc6b3c01c45381810367d76"
  11099. },
  11100. "dist": {
  11101. "type": "zip",
  11102. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/1a800a7446add2d79cc6b3c01c45381810367d76",
  11103. "reference": "1a800a7446add2d79cc6b3c01c45381810367d76",
  11104. "shasum": ""
  11105. },
  11106. "require": {
  11107. "ext-dom": "*",
  11108. "ext-libxml": "*",
  11109. "ext-xmlwriter": "*",
  11110. "nikic/php-parser": "^5.4.0",
  11111. "php": ">=8.2",
  11112. "phpunit/php-file-iterator": "^5.1.0",
  11113. "phpunit/php-text-template": "^4.0.1",
  11114. "sebastian/code-unit-reverse-lookup": "^4.0.1",
  11115. "sebastian/complexity": "^4.0.1",
  11116. "sebastian/environment": "^7.2.0",
  11117. "sebastian/lines-of-code": "^3.0.1",
  11118. "sebastian/version": "^5.0.2",
  11119. "theseer/tokenizer": "^1.2.3"
  11120. },
  11121. "require-dev": {
  11122. "phpunit/phpunit": "^11.5.2"
  11123. },
  11124. "suggest": {
  11125. "ext-pcov": "PHP extension that provides line coverage",
  11126. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  11127. },
  11128. "type": "library",
  11129. "extra": {
  11130. "branch-alias": {
  11131. "dev-main": "11.0.x-dev"
  11132. }
  11133. },
  11134. "autoload": {
  11135. "classmap": [
  11136. "src/"
  11137. ]
  11138. },
  11139. "notification-url": "https://packagist.org/downloads/",
  11140. "license": [
  11141. "BSD-3-Clause"
  11142. ],
  11143. "authors": [
  11144. {
  11145. "name": "Sebastian Bergmann",
  11146. "email": "sebastian@phpunit.de",
  11147. "role": "lead"
  11148. }
  11149. ],
  11150. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  11151. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  11152. "keywords": [
  11153. "coverage",
  11154. "testing",
  11155. "xunit"
  11156. ],
  11157. "support": {
  11158. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  11159. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  11160. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/show"
  11161. },
  11162. "funding": [
  11163. {
  11164. "url": "https://github.com/sebastianbergmann",
  11165. "type": "github"
  11166. },
  11167. {
  11168. "url": "https://liberapay.com/sebastianbergmann",
  11169. "type": "liberapay"
  11170. },
  11171. {
  11172. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  11173. "type": "thanks_dev"
  11174. },
  11175. {
  11176. "url": "https://tidelift.com/funding/github/packagist/phpunit/php-code-coverage",
  11177. "type": "tidelift"
  11178. }
  11179. ],
  11180. "time": "2025-06-18T08:56:18+00:00"
  11181. },
  11182. {
  11183. "name": "phpunit/php-file-iterator",
  11184. "version": "5.1.0",
  11185. "source": {
  11186. "type": "git",
  11187. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  11188. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6"
  11189. },
  11190. "dist": {
  11191. "type": "zip",
  11192. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/118cfaaa8bc5aef3287bf315b6060b1174754af6",
  11193. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6",
  11194. "shasum": ""
  11195. },
  11196. "require": {
  11197. "php": ">=8.2"
  11198. },
  11199. "require-dev": {
  11200. "phpunit/phpunit": "^11.0"
  11201. },
  11202. "type": "library",
  11203. "extra": {
  11204. "branch-alias": {
  11205. "dev-main": "5.0-dev"
  11206. }
  11207. },
  11208. "autoload": {
  11209. "classmap": [
  11210. "src/"
  11211. ]
  11212. },
  11213. "notification-url": "https://packagist.org/downloads/",
  11214. "license": [
  11215. "BSD-3-Clause"
  11216. ],
  11217. "authors": [
  11218. {
  11219. "name": "Sebastian Bergmann",
  11220. "email": "sebastian@phpunit.de",
  11221. "role": "lead"
  11222. }
  11223. ],
  11224. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  11225. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  11226. "keywords": [
  11227. "filesystem",
  11228. "iterator"
  11229. ],
  11230. "support": {
  11231. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  11232. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  11233. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/5.1.0"
  11234. },
  11235. "funding": [
  11236. {
  11237. "url": "https://github.com/sebastianbergmann",
  11238. "type": "github"
  11239. }
  11240. ],
  11241. "time": "2024-08-27T05:02:59+00:00"
  11242. },
  11243. {
  11244. "name": "phpunit/php-invoker",
  11245. "version": "5.0.1",
  11246. "source": {
  11247. "type": "git",
  11248. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  11249. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2"
  11250. },
  11251. "dist": {
  11252. "type": "zip",
  11253. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/c1ca3814734c07492b3d4c5f794f4b0995333da2",
  11254. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2",
  11255. "shasum": ""
  11256. },
  11257. "require": {
  11258. "php": ">=8.2"
  11259. },
  11260. "require-dev": {
  11261. "ext-pcntl": "*",
  11262. "phpunit/phpunit": "^11.0"
  11263. },
  11264. "suggest": {
  11265. "ext-pcntl": "*"
  11266. },
  11267. "type": "library",
  11268. "extra": {
  11269. "branch-alias": {
  11270. "dev-main": "5.0-dev"
  11271. }
  11272. },
  11273. "autoload": {
  11274. "classmap": [
  11275. "src/"
  11276. ]
  11277. },
  11278. "notification-url": "https://packagist.org/downloads/",
  11279. "license": [
  11280. "BSD-3-Clause"
  11281. ],
  11282. "authors": [
  11283. {
  11284. "name": "Sebastian Bergmann",
  11285. "email": "sebastian@phpunit.de",
  11286. "role": "lead"
  11287. }
  11288. ],
  11289. "description": "Invoke callables with a timeout",
  11290. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  11291. "keywords": [
  11292. "process"
  11293. ],
  11294. "support": {
  11295. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  11296. "security": "https://github.com/sebastianbergmann/php-invoker/security/policy",
  11297. "source": "https://github.com/sebastianbergmann/php-invoker/tree/5.0.1"
  11298. },
  11299. "funding": [
  11300. {
  11301. "url": "https://github.com/sebastianbergmann",
  11302. "type": "github"
  11303. }
  11304. ],
  11305. "time": "2024-07-03T05:07:44+00:00"
  11306. },
  11307. {
  11308. "name": "phpunit/php-text-template",
  11309. "version": "4.0.1",
  11310. "source": {
  11311. "type": "git",
  11312. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  11313. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964"
  11314. },
  11315. "dist": {
  11316. "type": "zip",
  11317. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  11318. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  11319. "shasum": ""
  11320. },
  11321. "require": {
  11322. "php": ">=8.2"
  11323. },
  11324. "require-dev": {
  11325. "phpunit/phpunit": "^11.0"
  11326. },
  11327. "type": "library",
  11328. "extra": {
  11329. "branch-alias": {
  11330. "dev-main": "4.0-dev"
  11331. }
  11332. },
  11333. "autoload": {
  11334. "classmap": [
  11335. "src/"
  11336. ]
  11337. },
  11338. "notification-url": "https://packagist.org/downloads/",
  11339. "license": [
  11340. "BSD-3-Clause"
  11341. ],
  11342. "authors": [
  11343. {
  11344. "name": "Sebastian Bergmann",
  11345. "email": "sebastian@phpunit.de",
  11346. "role": "lead"
  11347. }
  11348. ],
  11349. "description": "Simple template engine.",
  11350. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  11351. "keywords": [
  11352. "template"
  11353. ],
  11354. "support": {
  11355. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  11356. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  11357. "source": "https://github.com/sebastianbergmann/php-text-template/tree/4.0.1"
  11358. },
  11359. "funding": [
  11360. {
  11361. "url": "https://github.com/sebastianbergmann",
  11362. "type": "github"
  11363. }
  11364. ],
  11365. "time": "2024-07-03T05:08:43+00:00"
  11366. },
  11367. {
  11368. "name": "phpunit/php-timer",
  11369. "version": "7.0.1",
  11370. "source": {
  11371. "type": "git",
  11372. "url": "https://github.com/sebastianbergmann/php-timer.git",
  11373. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3"
  11374. },
  11375. "dist": {
  11376. "type": "zip",
  11377. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  11378. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  11379. "shasum": ""
  11380. },
  11381. "require": {
  11382. "php": ">=8.2"
  11383. },
  11384. "require-dev": {
  11385. "phpunit/phpunit": "^11.0"
  11386. },
  11387. "type": "library",
  11388. "extra": {
  11389. "branch-alias": {
  11390. "dev-main": "7.0-dev"
  11391. }
  11392. },
  11393. "autoload": {
  11394. "classmap": [
  11395. "src/"
  11396. ]
  11397. },
  11398. "notification-url": "https://packagist.org/downloads/",
  11399. "license": [
  11400. "BSD-3-Clause"
  11401. ],
  11402. "authors": [
  11403. {
  11404. "name": "Sebastian Bergmann",
  11405. "email": "sebastian@phpunit.de",
  11406. "role": "lead"
  11407. }
  11408. ],
  11409. "description": "Utility class for timing",
  11410. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  11411. "keywords": [
  11412. "timer"
  11413. ],
  11414. "support": {
  11415. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  11416. "security": "https://github.com/sebastianbergmann/php-timer/security/policy",
  11417. "source": "https://github.com/sebastianbergmann/php-timer/tree/7.0.1"
  11418. },
  11419. "funding": [
  11420. {
  11421. "url": "https://github.com/sebastianbergmann",
  11422. "type": "github"
  11423. }
  11424. ],
  11425. "time": "2024-07-03T05:09:35+00:00"
  11426. },
  11427. {
  11428. "name": "phpunit/phpunit",
  11429. "version": "11.5.15",
  11430. "source": {
  11431. "type": "git",
  11432. "url": "https://github.com/sebastianbergmann/phpunit.git",
  11433. "reference": "4b6a4ee654e5e0c5e1f17e2f83c0f4c91dee1f9c"
  11434. },
  11435. "dist": {
  11436. "type": "zip",
  11437. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/4b6a4ee654e5e0c5e1f17e2f83c0f4c91dee1f9c",
  11438. "reference": "4b6a4ee654e5e0c5e1f17e2f83c0f4c91dee1f9c",
  11439. "shasum": ""
  11440. },
  11441. "require": {
  11442. "ext-dom": "*",
  11443. "ext-json": "*",
  11444. "ext-libxml": "*",
  11445. "ext-mbstring": "*",
  11446. "ext-xml": "*",
  11447. "ext-xmlwriter": "*",
  11448. "myclabs/deep-copy": "^1.13.0",
  11449. "phar-io/manifest": "^2.0.4",
  11450. "phar-io/version": "^3.2.1",
  11451. "php": ">=8.2",
  11452. "phpunit/php-code-coverage": "^11.0.9",
  11453. "phpunit/php-file-iterator": "^5.1.0",
  11454. "phpunit/php-invoker": "^5.0.1",
  11455. "phpunit/php-text-template": "^4.0.1",
  11456. "phpunit/php-timer": "^7.0.1",
  11457. "sebastian/cli-parser": "^3.0.2",
  11458. "sebastian/code-unit": "^3.0.3",
  11459. "sebastian/comparator": "^6.3.1",
  11460. "sebastian/diff": "^6.0.2",
  11461. "sebastian/environment": "^7.2.0",
  11462. "sebastian/exporter": "^6.3.0",
  11463. "sebastian/global-state": "^7.0.2",
  11464. "sebastian/object-enumerator": "^6.0.1",
  11465. "sebastian/type": "^5.1.2",
  11466. "sebastian/version": "^5.0.2",
  11467. "staabm/side-effects-detector": "^1.0.5"
  11468. },
  11469. "suggest": {
  11470. "ext-soap": "To be able to generate mocks based on WSDL files"
  11471. },
  11472. "bin": [
  11473. "phpunit"
  11474. ],
  11475. "type": "library",
  11476. "extra": {
  11477. "branch-alias": {
  11478. "dev-main": "11.5-dev"
  11479. }
  11480. },
  11481. "autoload": {
  11482. "files": [
  11483. "src/Framework/Assert/Functions.php"
  11484. ],
  11485. "classmap": [
  11486. "src/"
  11487. ]
  11488. },
  11489. "notification-url": "https://packagist.org/downloads/",
  11490. "license": [
  11491. "BSD-3-Clause"
  11492. ],
  11493. "authors": [
  11494. {
  11495. "name": "Sebastian Bergmann",
  11496. "email": "sebastian@phpunit.de",
  11497. "role": "lead"
  11498. }
  11499. ],
  11500. "description": "The PHP Unit Testing framework.",
  11501. "homepage": "https://phpunit.de/",
  11502. "keywords": [
  11503. "phpunit",
  11504. "testing",
  11505. "xunit"
  11506. ],
  11507. "support": {
  11508. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  11509. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  11510. "source": "https://github.com/sebastianbergmann/phpunit/tree/11.5.15"
  11511. },
  11512. "funding": [
  11513. {
  11514. "url": "https://phpunit.de/sponsors.html",
  11515. "type": "custom"
  11516. },
  11517. {
  11518. "url": "https://github.com/sebastianbergmann",
  11519. "type": "github"
  11520. },
  11521. {
  11522. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  11523. "type": "tidelift"
  11524. }
  11525. ],
  11526. "time": "2025-03-23T16:02:11+00:00"
  11527. },
  11528. {
  11529. "name": "sebastian/cli-parser",
  11530. "version": "3.0.2",
  11531. "source": {
  11532. "type": "git",
  11533. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  11534. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180"
  11535. },
  11536. "dist": {
  11537. "type": "zip",
  11538. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/15c5dd40dc4f38794d383bb95465193f5e0ae180",
  11539. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180",
  11540. "shasum": ""
  11541. },
  11542. "require": {
  11543. "php": ">=8.2"
  11544. },
  11545. "require-dev": {
  11546. "phpunit/phpunit": "^11.0"
  11547. },
  11548. "type": "library",
  11549. "extra": {
  11550. "branch-alias": {
  11551. "dev-main": "3.0-dev"
  11552. }
  11553. },
  11554. "autoload": {
  11555. "classmap": [
  11556. "src/"
  11557. ]
  11558. },
  11559. "notification-url": "https://packagist.org/downloads/",
  11560. "license": [
  11561. "BSD-3-Clause"
  11562. ],
  11563. "authors": [
  11564. {
  11565. "name": "Sebastian Bergmann",
  11566. "email": "sebastian@phpunit.de",
  11567. "role": "lead"
  11568. }
  11569. ],
  11570. "description": "Library for parsing CLI options",
  11571. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  11572. "support": {
  11573. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  11574. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  11575. "source": "https://github.com/sebastianbergmann/cli-parser/tree/3.0.2"
  11576. },
  11577. "funding": [
  11578. {
  11579. "url": "https://github.com/sebastianbergmann",
  11580. "type": "github"
  11581. }
  11582. ],
  11583. "time": "2024-07-03T04:41:36+00:00"
  11584. },
  11585. {
  11586. "name": "sebastian/code-unit",
  11587. "version": "3.0.3",
  11588. "source": {
  11589. "type": "git",
  11590. "url": "https://github.com/sebastianbergmann/code-unit.git",
  11591. "reference": "54391c61e4af8078e5b276ab082b6d3c54c9ad64"
  11592. },
  11593. "dist": {
  11594. "type": "zip",
  11595. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/54391c61e4af8078e5b276ab082b6d3c54c9ad64",
  11596. "reference": "54391c61e4af8078e5b276ab082b6d3c54c9ad64",
  11597. "shasum": ""
  11598. },
  11599. "require": {
  11600. "php": ">=8.2"
  11601. },
  11602. "require-dev": {
  11603. "phpunit/phpunit": "^11.5"
  11604. },
  11605. "type": "library",
  11606. "extra": {
  11607. "branch-alias": {
  11608. "dev-main": "3.0-dev"
  11609. }
  11610. },
  11611. "autoload": {
  11612. "classmap": [
  11613. "src/"
  11614. ]
  11615. },
  11616. "notification-url": "https://packagist.org/downloads/",
  11617. "license": [
  11618. "BSD-3-Clause"
  11619. ],
  11620. "authors": [
  11621. {
  11622. "name": "Sebastian Bergmann",
  11623. "email": "sebastian@phpunit.de",
  11624. "role": "lead"
  11625. }
  11626. ],
  11627. "description": "Collection of value objects that represent the PHP code units",
  11628. "homepage": "https://github.com/sebastianbergmann/code-unit",
  11629. "support": {
  11630. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  11631. "security": "https://github.com/sebastianbergmann/code-unit/security/policy",
  11632. "source": "https://github.com/sebastianbergmann/code-unit/tree/3.0.3"
  11633. },
  11634. "funding": [
  11635. {
  11636. "url": "https://github.com/sebastianbergmann",
  11637. "type": "github"
  11638. }
  11639. ],
  11640. "time": "2025-03-19T07:56:08+00:00"
  11641. },
  11642. {
  11643. "name": "sebastian/code-unit-reverse-lookup",
  11644. "version": "4.0.1",
  11645. "source": {
  11646. "type": "git",
  11647. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  11648. "reference": "183a9b2632194febd219bb9246eee421dad8d45e"
  11649. },
  11650. "dist": {
  11651. "type": "zip",
  11652. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/183a9b2632194febd219bb9246eee421dad8d45e",
  11653. "reference": "183a9b2632194febd219bb9246eee421dad8d45e",
  11654. "shasum": ""
  11655. },
  11656. "require": {
  11657. "php": ">=8.2"
  11658. },
  11659. "require-dev": {
  11660. "phpunit/phpunit": "^11.0"
  11661. },
  11662. "type": "library",
  11663. "extra": {
  11664. "branch-alias": {
  11665. "dev-main": "4.0-dev"
  11666. }
  11667. },
  11668. "autoload": {
  11669. "classmap": [
  11670. "src/"
  11671. ]
  11672. },
  11673. "notification-url": "https://packagist.org/downloads/",
  11674. "license": [
  11675. "BSD-3-Clause"
  11676. ],
  11677. "authors": [
  11678. {
  11679. "name": "Sebastian Bergmann",
  11680. "email": "sebastian@phpunit.de"
  11681. }
  11682. ],
  11683. "description": "Looks up which function or method a line of code belongs to",
  11684. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  11685. "support": {
  11686. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  11687. "security": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/security/policy",
  11688. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/4.0.1"
  11689. },
  11690. "funding": [
  11691. {
  11692. "url": "https://github.com/sebastianbergmann",
  11693. "type": "github"
  11694. }
  11695. ],
  11696. "time": "2024-07-03T04:45:54+00:00"
  11697. },
  11698. {
  11699. "name": "sebastian/comparator",
  11700. "version": "6.3.1",
  11701. "source": {
  11702. "type": "git",
  11703. "url": "https://github.com/sebastianbergmann/comparator.git",
  11704. "reference": "24b8fbc2c8e201bb1308e7b05148d6ab393b6959"
  11705. },
  11706. "dist": {
  11707. "type": "zip",
  11708. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/24b8fbc2c8e201bb1308e7b05148d6ab393b6959",
  11709. "reference": "24b8fbc2c8e201bb1308e7b05148d6ab393b6959",
  11710. "shasum": ""
  11711. },
  11712. "require": {
  11713. "ext-dom": "*",
  11714. "ext-mbstring": "*",
  11715. "php": ">=8.2",
  11716. "sebastian/diff": "^6.0",
  11717. "sebastian/exporter": "^6.0"
  11718. },
  11719. "require-dev": {
  11720. "phpunit/phpunit": "^11.4"
  11721. },
  11722. "suggest": {
  11723. "ext-bcmath": "For comparing BcMath\\Number objects"
  11724. },
  11725. "type": "library",
  11726. "extra": {
  11727. "branch-alias": {
  11728. "dev-main": "6.3-dev"
  11729. }
  11730. },
  11731. "autoload": {
  11732. "classmap": [
  11733. "src/"
  11734. ]
  11735. },
  11736. "notification-url": "https://packagist.org/downloads/",
  11737. "license": [
  11738. "BSD-3-Clause"
  11739. ],
  11740. "authors": [
  11741. {
  11742. "name": "Sebastian Bergmann",
  11743. "email": "sebastian@phpunit.de"
  11744. },
  11745. {
  11746. "name": "Jeff Welch",
  11747. "email": "whatthejeff@gmail.com"
  11748. },
  11749. {
  11750. "name": "Volker Dusch",
  11751. "email": "github@wallbash.com"
  11752. },
  11753. {
  11754. "name": "Bernhard Schussek",
  11755. "email": "bschussek@2bepublished.at"
  11756. }
  11757. ],
  11758. "description": "Provides the functionality to compare PHP values for equality",
  11759. "homepage": "https://github.com/sebastianbergmann/comparator",
  11760. "keywords": [
  11761. "comparator",
  11762. "compare",
  11763. "equality"
  11764. ],
  11765. "support": {
  11766. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  11767. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  11768. "source": "https://github.com/sebastianbergmann/comparator/tree/6.3.1"
  11769. },
  11770. "funding": [
  11771. {
  11772. "url": "https://github.com/sebastianbergmann",
  11773. "type": "github"
  11774. }
  11775. ],
  11776. "time": "2025-03-07T06:57:01+00:00"
  11777. },
  11778. {
  11779. "name": "sebastian/complexity",
  11780. "version": "4.0.1",
  11781. "source": {
  11782. "type": "git",
  11783. "url": "https://github.com/sebastianbergmann/complexity.git",
  11784. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0"
  11785. },
  11786. "dist": {
  11787. "type": "zip",
  11788. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/ee41d384ab1906c68852636b6de493846e13e5a0",
  11789. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0",
  11790. "shasum": ""
  11791. },
  11792. "require": {
  11793. "nikic/php-parser": "^5.0",
  11794. "php": ">=8.2"
  11795. },
  11796. "require-dev": {
  11797. "phpunit/phpunit": "^11.0"
  11798. },
  11799. "type": "library",
  11800. "extra": {
  11801. "branch-alias": {
  11802. "dev-main": "4.0-dev"
  11803. }
  11804. },
  11805. "autoload": {
  11806. "classmap": [
  11807. "src/"
  11808. ]
  11809. },
  11810. "notification-url": "https://packagist.org/downloads/",
  11811. "license": [
  11812. "BSD-3-Clause"
  11813. ],
  11814. "authors": [
  11815. {
  11816. "name": "Sebastian Bergmann",
  11817. "email": "sebastian@phpunit.de",
  11818. "role": "lead"
  11819. }
  11820. ],
  11821. "description": "Library for calculating the complexity of PHP code units",
  11822. "homepage": "https://github.com/sebastianbergmann/complexity",
  11823. "support": {
  11824. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  11825. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  11826. "source": "https://github.com/sebastianbergmann/complexity/tree/4.0.1"
  11827. },
  11828. "funding": [
  11829. {
  11830. "url": "https://github.com/sebastianbergmann",
  11831. "type": "github"
  11832. }
  11833. ],
  11834. "time": "2024-07-03T04:49:50+00:00"
  11835. },
  11836. {
  11837. "name": "sebastian/diff",
  11838. "version": "6.0.2",
  11839. "source": {
  11840. "type": "git",
  11841. "url": "https://github.com/sebastianbergmann/diff.git",
  11842. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544"
  11843. },
  11844. "dist": {
  11845. "type": "zip",
  11846. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/b4ccd857127db5d41a5b676f24b51371d76d8544",
  11847. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544",
  11848. "shasum": ""
  11849. },
  11850. "require": {
  11851. "php": ">=8.2"
  11852. },
  11853. "require-dev": {
  11854. "phpunit/phpunit": "^11.0",
  11855. "symfony/process": "^4.2 || ^5"
  11856. },
  11857. "type": "library",
  11858. "extra": {
  11859. "branch-alias": {
  11860. "dev-main": "6.0-dev"
  11861. }
  11862. },
  11863. "autoload": {
  11864. "classmap": [
  11865. "src/"
  11866. ]
  11867. },
  11868. "notification-url": "https://packagist.org/downloads/",
  11869. "license": [
  11870. "BSD-3-Clause"
  11871. ],
  11872. "authors": [
  11873. {
  11874. "name": "Sebastian Bergmann",
  11875. "email": "sebastian@phpunit.de"
  11876. },
  11877. {
  11878. "name": "Kore Nordmann",
  11879. "email": "mail@kore-nordmann.de"
  11880. }
  11881. ],
  11882. "description": "Diff implementation",
  11883. "homepage": "https://github.com/sebastianbergmann/diff",
  11884. "keywords": [
  11885. "diff",
  11886. "udiff",
  11887. "unidiff",
  11888. "unified diff"
  11889. ],
  11890. "support": {
  11891. "issues": "https://github.com/sebastianbergmann/diff/issues",
  11892. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  11893. "source": "https://github.com/sebastianbergmann/diff/tree/6.0.2"
  11894. },
  11895. "funding": [
  11896. {
  11897. "url": "https://github.com/sebastianbergmann",
  11898. "type": "github"
  11899. }
  11900. ],
  11901. "time": "2024-07-03T04:53:05+00:00"
  11902. },
  11903. {
  11904. "name": "sebastian/environment",
  11905. "version": "7.2.1",
  11906. "source": {
  11907. "type": "git",
  11908. "url": "https://github.com/sebastianbergmann/environment.git",
  11909. "reference": "a5c75038693ad2e8d4b6c15ba2403532647830c4"
  11910. },
  11911. "dist": {
  11912. "type": "zip",
  11913. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/a5c75038693ad2e8d4b6c15ba2403532647830c4",
  11914. "reference": "a5c75038693ad2e8d4b6c15ba2403532647830c4",
  11915. "shasum": ""
  11916. },
  11917. "require": {
  11918. "php": ">=8.2"
  11919. },
  11920. "require-dev": {
  11921. "phpunit/phpunit": "^11.3"
  11922. },
  11923. "suggest": {
  11924. "ext-posix": "*"
  11925. },
  11926. "type": "library",
  11927. "extra": {
  11928. "branch-alias": {
  11929. "dev-main": "7.2-dev"
  11930. }
  11931. },
  11932. "autoload": {
  11933. "classmap": [
  11934. "src/"
  11935. ]
  11936. },
  11937. "notification-url": "https://packagist.org/downloads/",
  11938. "license": [
  11939. "BSD-3-Clause"
  11940. ],
  11941. "authors": [
  11942. {
  11943. "name": "Sebastian Bergmann",
  11944. "email": "sebastian@phpunit.de"
  11945. }
  11946. ],
  11947. "description": "Provides functionality to handle HHVM/PHP environments",
  11948. "homepage": "https://github.com/sebastianbergmann/environment",
  11949. "keywords": [
  11950. "Xdebug",
  11951. "environment",
  11952. "hhvm"
  11953. ],
  11954. "support": {
  11955. "issues": "https://github.com/sebastianbergmann/environment/issues",
  11956. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  11957. "source": "https://github.com/sebastianbergmann/environment/tree/7.2.1"
  11958. },
  11959. "funding": [
  11960. {
  11961. "url": "https://github.com/sebastianbergmann",
  11962. "type": "github"
  11963. },
  11964. {
  11965. "url": "https://liberapay.com/sebastianbergmann",
  11966. "type": "liberapay"
  11967. },
  11968. {
  11969. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  11970. "type": "thanks_dev"
  11971. },
  11972. {
  11973. "url": "https://tidelift.com/funding/github/packagist/sebastian/environment",
  11974. "type": "tidelift"
  11975. }
  11976. ],
  11977. "time": "2025-05-21T11:55:47+00:00"
  11978. },
  11979. {
  11980. "name": "sebastian/exporter",
  11981. "version": "6.3.0",
  11982. "source": {
  11983. "type": "git",
  11984. "url": "https://github.com/sebastianbergmann/exporter.git",
  11985. "reference": "3473f61172093b2da7de1fb5782e1f24cc036dc3"
  11986. },
  11987. "dist": {
  11988. "type": "zip",
  11989. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/3473f61172093b2da7de1fb5782e1f24cc036dc3",
  11990. "reference": "3473f61172093b2da7de1fb5782e1f24cc036dc3",
  11991. "shasum": ""
  11992. },
  11993. "require": {
  11994. "ext-mbstring": "*",
  11995. "php": ">=8.2",
  11996. "sebastian/recursion-context": "^6.0"
  11997. },
  11998. "require-dev": {
  11999. "phpunit/phpunit": "^11.3"
  12000. },
  12001. "type": "library",
  12002. "extra": {
  12003. "branch-alias": {
  12004. "dev-main": "6.1-dev"
  12005. }
  12006. },
  12007. "autoload": {
  12008. "classmap": [
  12009. "src/"
  12010. ]
  12011. },
  12012. "notification-url": "https://packagist.org/downloads/",
  12013. "license": [
  12014. "BSD-3-Clause"
  12015. ],
  12016. "authors": [
  12017. {
  12018. "name": "Sebastian Bergmann",
  12019. "email": "sebastian@phpunit.de"
  12020. },
  12021. {
  12022. "name": "Jeff Welch",
  12023. "email": "whatthejeff@gmail.com"
  12024. },
  12025. {
  12026. "name": "Volker Dusch",
  12027. "email": "github@wallbash.com"
  12028. },
  12029. {
  12030. "name": "Adam Harvey",
  12031. "email": "aharvey@php.net"
  12032. },
  12033. {
  12034. "name": "Bernhard Schussek",
  12035. "email": "bschussek@gmail.com"
  12036. }
  12037. ],
  12038. "description": "Provides the functionality to export PHP variables for visualization",
  12039. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  12040. "keywords": [
  12041. "export",
  12042. "exporter"
  12043. ],
  12044. "support": {
  12045. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  12046. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  12047. "source": "https://github.com/sebastianbergmann/exporter/tree/6.3.0"
  12048. },
  12049. "funding": [
  12050. {
  12051. "url": "https://github.com/sebastianbergmann",
  12052. "type": "github"
  12053. }
  12054. ],
  12055. "time": "2024-12-05T09:17:50+00:00"
  12056. },
  12057. {
  12058. "name": "sebastian/global-state",
  12059. "version": "7.0.2",
  12060. "source": {
  12061. "type": "git",
  12062. "url": "https://github.com/sebastianbergmann/global-state.git",
  12063. "reference": "3be331570a721f9a4b5917f4209773de17f747d7"
  12064. },
  12065. "dist": {
  12066. "type": "zip",
  12067. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/3be331570a721f9a4b5917f4209773de17f747d7",
  12068. "reference": "3be331570a721f9a4b5917f4209773de17f747d7",
  12069. "shasum": ""
  12070. },
  12071. "require": {
  12072. "php": ">=8.2",
  12073. "sebastian/object-reflector": "^4.0",
  12074. "sebastian/recursion-context": "^6.0"
  12075. },
  12076. "require-dev": {
  12077. "ext-dom": "*",
  12078. "phpunit/phpunit": "^11.0"
  12079. },
  12080. "type": "library",
  12081. "extra": {
  12082. "branch-alias": {
  12083. "dev-main": "7.0-dev"
  12084. }
  12085. },
  12086. "autoload": {
  12087. "classmap": [
  12088. "src/"
  12089. ]
  12090. },
  12091. "notification-url": "https://packagist.org/downloads/",
  12092. "license": [
  12093. "BSD-3-Clause"
  12094. ],
  12095. "authors": [
  12096. {
  12097. "name": "Sebastian Bergmann",
  12098. "email": "sebastian@phpunit.de"
  12099. }
  12100. ],
  12101. "description": "Snapshotting of global state",
  12102. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  12103. "keywords": [
  12104. "global state"
  12105. ],
  12106. "support": {
  12107. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  12108. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  12109. "source": "https://github.com/sebastianbergmann/global-state/tree/7.0.2"
  12110. },
  12111. "funding": [
  12112. {
  12113. "url": "https://github.com/sebastianbergmann",
  12114. "type": "github"
  12115. }
  12116. ],
  12117. "time": "2024-07-03T04:57:36+00:00"
  12118. },
  12119. {
  12120. "name": "sebastian/lines-of-code",
  12121. "version": "3.0.1",
  12122. "source": {
  12123. "type": "git",
  12124. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  12125. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a"
  12126. },
  12127. "dist": {
  12128. "type": "zip",
  12129. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  12130. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  12131. "shasum": ""
  12132. },
  12133. "require": {
  12134. "nikic/php-parser": "^5.0",
  12135. "php": ">=8.2"
  12136. },
  12137. "require-dev": {
  12138. "phpunit/phpunit": "^11.0"
  12139. },
  12140. "type": "library",
  12141. "extra": {
  12142. "branch-alias": {
  12143. "dev-main": "3.0-dev"
  12144. }
  12145. },
  12146. "autoload": {
  12147. "classmap": [
  12148. "src/"
  12149. ]
  12150. },
  12151. "notification-url": "https://packagist.org/downloads/",
  12152. "license": [
  12153. "BSD-3-Clause"
  12154. ],
  12155. "authors": [
  12156. {
  12157. "name": "Sebastian Bergmann",
  12158. "email": "sebastian@phpunit.de",
  12159. "role": "lead"
  12160. }
  12161. ],
  12162. "description": "Library for counting the lines of code in PHP source code",
  12163. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  12164. "support": {
  12165. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  12166. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  12167. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/3.0.1"
  12168. },
  12169. "funding": [
  12170. {
  12171. "url": "https://github.com/sebastianbergmann",
  12172. "type": "github"
  12173. }
  12174. ],
  12175. "time": "2024-07-03T04:58:38+00:00"
  12176. },
  12177. {
  12178. "name": "sebastian/object-enumerator",
  12179. "version": "6.0.1",
  12180. "source": {
  12181. "type": "git",
  12182. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  12183. "reference": "f5b498e631a74204185071eb41f33f38d64608aa"
  12184. },
  12185. "dist": {
  12186. "type": "zip",
  12187. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/f5b498e631a74204185071eb41f33f38d64608aa",
  12188. "reference": "f5b498e631a74204185071eb41f33f38d64608aa",
  12189. "shasum": ""
  12190. },
  12191. "require": {
  12192. "php": ">=8.2",
  12193. "sebastian/object-reflector": "^4.0",
  12194. "sebastian/recursion-context": "^6.0"
  12195. },
  12196. "require-dev": {
  12197. "phpunit/phpunit": "^11.0"
  12198. },
  12199. "type": "library",
  12200. "extra": {
  12201. "branch-alias": {
  12202. "dev-main": "6.0-dev"
  12203. }
  12204. },
  12205. "autoload": {
  12206. "classmap": [
  12207. "src/"
  12208. ]
  12209. },
  12210. "notification-url": "https://packagist.org/downloads/",
  12211. "license": [
  12212. "BSD-3-Clause"
  12213. ],
  12214. "authors": [
  12215. {
  12216. "name": "Sebastian Bergmann",
  12217. "email": "sebastian@phpunit.de"
  12218. }
  12219. ],
  12220. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  12221. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  12222. "support": {
  12223. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  12224. "security": "https://github.com/sebastianbergmann/object-enumerator/security/policy",
  12225. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/6.0.1"
  12226. },
  12227. "funding": [
  12228. {
  12229. "url": "https://github.com/sebastianbergmann",
  12230. "type": "github"
  12231. }
  12232. ],
  12233. "time": "2024-07-03T05:00:13+00:00"
  12234. },
  12235. {
  12236. "name": "sebastian/object-reflector",
  12237. "version": "4.0.1",
  12238. "source": {
  12239. "type": "git",
  12240. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  12241. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9"
  12242. },
  12243. "dist": {
  12244. "type": "zip",
  12245. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  12246. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  12247. "shasum": ""
  12248. },
  12249. "require": {
  12250. "php": ">=8.2"
  12251. },
  12252. "require-dev": {
  12253. "phpunit/phpunit": "^11.0"
  12254. },
  12255. "type": "library",
  12256. "extra": {
  12257. "branch-alias": {
  12258. "dev-main": "4.0-dev"
  12259. }
  12260. },
  12261. "autoload": {
  12262. "classmap": [
  12263. "src/"
  12264. ]
  12265. },
  12266. "notification-url": "https://packagist.org/downloads/",
  12267. "license": [
  12268. "BSD-3-Clause"
  12269. ],
  12270. "authors": [
  12271. {
  12272. "name": "Sebastian Bergmann",
  12273. "email": "sebastian@phpunit.de"
  12274. }
  12275. ],
  12276. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  12277. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  12278. "support": {
  12279. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  12280. "security": "https://github.com/sebastianbergmann/object-reflector/security/policy",
  12281. "source": "https://github.com/sebastianbergmann/object-reflector/tree/4.0.1"
  12282. },
  12283. "funding": [
  12284. {
  12285. "url": "https://github.com/sebastianbergmann",
  12286. "type": "github"
  12287. }
  12288. ],
  12289. "time": "2024-07-03T05:01:32+00:00"
  12290. },
  12291. {
  12292. "name": "sebastian/recursion-context",
  12293. "version": "6.0.2",
  12294. "source": {
  12295. "type": "git",
  12296. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  12297. "reference": "694d156164372abbd149a4b85ccda2e4670c0e16"
  12298. },
  12299. "dist": {
  12300. "type": "zip",
  12301. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/694d156164372abbd149a4b85ccda2e4670c0e16",
  12302. "reference": "694d156164372abbd149a4b85ccda2e4670c0e16",
  12303. "shasum": ""
  12304. },
  12305. "require": {
  12306. "php": ">=8.2"
  12307. },
  12308. "require-dev": {
  12309. "phpunit/phpunit": "^11.0"
  12310. },
  12311. "type": "library",
  12312. "extra": {
  12313. "branch-alias": {
  12314. "dev-main": "6.0-dev"
  12315. }
  12316. },
  12317. "autoload": {
  12318. "classmap": [
  12319. "src/"
  12320. ]
  12321. },
  12322. "notification-url": "https://packagist.org/downloads/",
  12323. "license": [
  12324. "BSD-3-Clause"
  12325. ],
  12326. "authors": [
  12327. {
  12328. "name": "Sebastian Bergmann",
  12329. "email": "sebastian@phpunit.de"
  12330. },
  12331. {
  12332. "name": "Jeff Welch",
  12333. "email": "whatthejeff@gmail.com"
  12334. },
  12335. {
  12336. "name": "Adam Harvey",
  12337. "email": "aharvey@php.net"
  12338. }
  12339. ],
  12340. "description": "Provides functionality to recursively process PHP variables",
  12341. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  12342. "support": {
  12343. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  12344. "security": "https://github.com/sebastianbergmann/recursion-context/security/policy",
  12345. "source": "https://github.com/sebastianbergmann/recursion-context/tree/6.0.2"
  12346. },
  12347. "funding": [
  12348. {
  12349. "url": "https://github.com/sebastianbergmann",
  12350. "type": "github"
  12351. }
  12352. ],
  12353. "time": "2024-07-03T05:10:34+00:00"
  12354. },
  12355. {
  12356. "name": "sebastian/type",
  12357. "version": "5.1.2",
  12358. "source": {
  12359. "type": "git",
  12360. "url": "https://github.com/sebastianbergmann/type.git",
  12361. "reference": "a8a7e30534b0eb0c77cd9d07e82de1a114389f5e"
  12362. },
  12363. "dist": {
  12364. "type": "zip",
  12365. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/a8a7e30534b0eb0c77cd9d07e82de1a114389f5e",
  12366. "reference": "a8a7e30534b0eb0c77cd9d07e82de1a114389f5e",
  12367. "shasum": ""
  12368. },
  12369. "require": {
  12370. "php": ">=8.2"
  12371. },
  12372. "require-dev": {
  12373. "phpunit/phpunit": "^11.3"
  12374. },
  12375. "type": "library",
  12376. "extra": {
  12377. "branch-alias": {
  12378. "dev-main": "5.1-dev"
  12379. }
  12380. },
  12381. "autoload": {
  12382. "classmap": [
  12383. "src/"
  12384. ]
  12385. },
  12386. "notification-url": "https://packagist.org/downloads/",
  12387. "license": [
  12388. "BSD-3-Clause"
  12389. ],
  12390. "authors": [
  12391. {
  12392. "name": "Sebastian Bergmann",
  12393. "email": "sebastian@phpunit.de",
  12394. "role": "lead"
  12395. }
  12396. ],
  12397. "description": "Collection of value objects that represent the types of the PHP type system",
  12398. "homepage": "https://github.com/sebastianbergmann/type",
  12399. "support": {
  12400. "issues": "https://github.com/sebastianbergmann/type/issues",
  12401. "security": "https://github.com/sebastianbergmann/type/security/policy",
  12402. "source": "https://github.com/sebastianbergmann/type/tree/5.1.2"
  12403. },
  12404. "funding": [
  12405. {
  12406. "url": "https://github.com/sebastianbergmann",
  12407. "type": "github"
  12408. }
  12409. ],
  12410. "time": "2025-03-18T13:35:50+00:00"
  12411. },
  12412. {
  12413. "name": "sebastian/version",
  12414. "version": "5.0.2",
  12415. "source": {
  12416. "type": "git",
  12417. "url": "https://github.com/sebastianbergmann/version.git",
  12418. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874"
  12419. },
  12420. "dist": {
  12421. "type": "zip",
  12422. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c687e3387b99f5b03b6caa64c74b63e2936ff874",
  12423. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874",
  12424. "shasum": ""
  12425. },
  12426. "require": {
  12427. "php": ">=8.2"
  12428. },
  12429. "type": "library",
  12430. "extra": {
  12431. "branch-alias": {
  12432. "dev-main": "5.0-dev"
  12433. }
  12434. },
  12435. "autoload": {
  12436. "classmap": [
  12437. "src/"
  12438. ]
  12439. },
  12440. "notification-url": "https://packagist.org/downloads/",
  12441. "license": [
  12442. "BSD-3-Clause"
  12443. ],
  12444. "authors": [
  12445. {
  12446. "name": "Sebastian Bergmann",
  12447. "email": "sebastian@phpunit.de",
  12448. "role": "lead"
  12449. }
  12450. ],
  12451. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  12452. "homepage": "https://github.com/sebastianbergmann/version",
  12453. "support": {
  12454. "issues": "https://github.com/sebastianbergmann/version/issues",
  12455. "security": "https://github.com/sebastianbergmann/version/security/policy",
  12456. "source": "https://github.com/sebastianbergmann/version/tree/5.0.2"
  12457. },
  12458. "funding": [
  12459. {
  12460. "url": "https://github.com/sebastianbergmann",
  12461. "type": "github"
  12462. }
  12463. ],
  12464. "time": "2024-10-09T05:16:32+00:00"
  12465. },
  12466. {
  12467. "name": "spatie/backtrace",
  12468. "version": "1.7.4",
  12469. "source": {
  12470. "type": "git",
  12471. "url": "https://github.com/spatie/backtrace.git",
  12472. "reference": "cd37a49fce7137359ac30ecc44ef3e16404cccbe"
  12473. },
  12474. "dist": {
  12475. "type": "zip",
  12476. "url": "https://api.github.com/repos/spatie/backtrace/zipball/cd37a49fce7137359ac30ecc44ef3e16404cccbe",
  12477. "reference": "cd37a49fce7137359ac30ecc44ef3e16404cccbe",
  12478. "shasum": ""
  12479. },
  12480. "require": {
  12481. "php": "^7.3 || ^8.0"
  12482. },
  12483. "require-dev": {
  12484. "ext-json": "*",
  12485. "laravel/serializable-closure": "^1.3 || ^2.0",
  12486. "phpunit/phpunit": "^9.3 || ^11.4.3",
  12487. "spatie/phpunit-snapshot-assertions": "^4.2 || ^5.1.6",
  12488. "symfony/var-dumper": "^5.1 || ^6.0 || ^7.0"
  12489. },
  12490. "type": "library",
  12491. "autoload": {
  12492. "psr-4": {
  12493. "Spatie\\Backtrace\\": "src"
  12494. }
  12495. },
  12496. "notification-url": "https://packagist.org/downloads/",
  12497. "license": [
  12498. "MIT"
  12499. ],
  12500. "authors": [
  12501. {
  12502. "name": "Freek Van de Herten",
  12503. "email": "freek@spatie.be",
  12504. "homepage": "https://spatie.be",
  12505. "role": "Developer"
  12506. }
  12507. ],
  12508. "description": "A better backtrace",
  12509. "homepage": "https://github.com/spatie/backtrace",
  12510. "keywords": [
  12511. "Backtrace",
  12512. "spatie"
  12513. ],
  12514. "support": {
  12515. "source": "https://github.com/spatie/backtrace/tree/1.7.4"
  12516. },
  12517. "funding": [
  12518. {
  12519. "url": "https://github.com/sponsors/spatie",
  12520. "type": "github"
  12521. },
  12522. {
  12523. "url": "https://spatie.be/open-source/support-us",
  12524. "type": "other"
  12525. }
  12526. ],
  12527. "time": "2025-05-08T15:41:09+00:00"
  12528. },
  12529. {
  12530. "name": "spatie/error-solutions",
  12531. "version": "1.1.3",
  12532. "source": {
  12533. "type": "git",
  12534. "url": "https://github.com/spatie/error-solutions.git",
  12535. "reference": "e495d7178ca524f2dd0fe6a1d99a1e608e1c9936"
  12536. },
  12537. "dist": {
  12538. "type": "zip",
  12539. "url": "https://api.github.com/repos/spatie/error-solutions/zipball/e495d7178ca524f2dd0fe6a1d99a1e608e1c9936",
  12540. "reference": "e495d7178ca524f2dd0fe6a1d99a1e608e1c9936",
  12541. "shasum": ""
  12542. },
  12543. "require": {
  12544. "php": "^8.0"
  12545. },
  12546. "require-dev": {
  12547. "illuminate/broadcasting": "^10.0|^11.0|^12.0",
  12548. "illuminate/cache": "^10.0|^11.0|^12.0",
  12549. "illuminate/support": "^10.0|^11.0|^12.0",
  12550. "livewire/livewire": "^2.11|^3.5.20",
  12551. "openai-php/client": "^0.10.1",
  12552. "orchestra/testbench": "8.22.3|^9.0|^10.0",
  12553. "pestphp/pest": "^2.20|^3.0",
  12554. "phpstan/phpstan": "^2.1",
  12555. "psr/simple-cache": "^3.0",
  12556. "psr/simple-cache-implementation": "^3.0",
  12557. "spatie/ray": "^1.28",
  12558. "symfony/cache": "^5.4|^6.0|^7.0",
  12559. "symfony/process": "^5.4|^6.0|^7.0",
  12560. "vlucas/phpdotenv": "^5.5"
  12561. },
  12562. "suggest": {
  12563. "openai-php/client": "Require get solutions from OpenAI",
  12564. "simple-cache-implementation": "To cache solutions from OpenAI"
  12565. },
  12566. "type": "library",
  12567. "autoload": {
  12568. "psr-4": {
  12569. "Spatie\\Ignition\\": "legacy/ignition",
  12570. "Spatie\\ErrorSolutions\\": "src",
  12571. "Spatie\\LaravelIgnition\\": "legacy/laravel-ignition"
  12572. }
  12573. },
  12574. "notification-url": "https://packagist.org/downloads/",
  12575. "license": [
  12576. "MIT"
  12577. ],
  12578. "authors": [
  12579. {
  12580. "name": "Ruben Van Assche",
  12581. "email": "ruben@spatie.be",
  12582. "role": "Developer"
  12583. }
  12584. ],
  12585. "description": "This is my package error-solutions",
  12586. "homepage": "https://github.com/spatie/error-solutions",
  12587. "keywords": [
  12588. "error-solutions",
  12589. "spatie"
  12590. ],
  12591. "support": {
  12592. "issues": "https://github.com/spatie/error-solutions/issues",
  12593. "source": "https://github.com/spatie/error-solutions/tree/1.1.3"
  12594. },
  12595. "funding": [
  12596. {
  12597. "url": "https://github.com/Spatie",
  12598. "type": "github"
  12599. }
  12600. ],
  12601. "time": "2025-02-14T12:29:50+00:00"
  12602. },
  12603. {
  12604. "name": "spatie/flare-client-php",
  12605. "version": "1.10.1",
  12606. "source": {
  12607. "type": "git",
  12608. "url": "https://github.com/spatie/flare-client-php.git",
  12609. "reference": "bf1716eb98bd689451b071548ae9e70738dce62f"
  12610. },
  12611. "dist": {
  12612. "type": "zip",
  12613. "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/bf1716eb98bd689451b071548ae9e70738dce62f",
  12614. "reference": "bf1716eb98bd689451b071548ae9e70738dce62f",
  12615. "shasum": ""
  12616. },
  12617. "require": {
  12618. "illuminate/pipeline": "^8.0|^9.0|^10.0|^11.0|^12.0",
  12619. "php": "^8.0",
  12620. "spatie/backtrace": "^1.6.1",
  12621. "symfony/http-foundation": "^5.2|^6.0|^7.0",
  12622. "symfony/mime": "^5.2|^6.0|^7.0",
  12623. "symfony/process": "^5.2|^6.0|^7.0",
  12624. "symfony/var-dumper": "^5.2|^6.0|^7.0"
  12625. },
  12626. "require-dev": {
  12627. "dms/phpunit-arraysubset-asserts": "^0.5.0",
  12628. "pestphp/pest": "^1.20|^2.0",
  12629. "phpstan/extension-installer": "^1.1",
  12630. "phpstan/phpstan-deprecation-rules": "^1.0",
  12631. "phpstan/phpstan-phpunit": "^1.0",
  12632. "spatie/pest-plugin-snapshots": "^1.0|^2.0"
  12633. },
  12634. "type": "library",
  12635. "extra": {
  12636. "branch-alias": {
  12637. "dev-main": "1.3.x-dev"
  12638. }
  12639. },
  12640. "autoload": {
  12641. "files": [
  12642. "src/helpers.php"
  12643. ],
  12644. "psr-4": {
  12645. "Spatie\\FlareClient\\": "src"
  12646. }
  12647. },
  12648. "notification-url": "https://packagist.org/downloads/",
  12649. "license": [
  12650. "MIT"
  12651. ],
  12652. "description": "Send PHP errors to Flare",
  12653. "homepage": "https://github.com/spatie/flare-client-php",
  12654. "keywords": [
  12655. "exception",
  12656. "flare",
  12657. "reporting",
  12658. "spatie"
  12659. ],
  12660. "support": {
  12661. "issues": "https://github.com/spatie/flare-client-php/issues",
  12662. "source": "https://github.com/spatie/flare-client-php/tree/1.10.1"
  12663. },
  12664. "funding": [
  12665. {
  12666. "url": "https://github.com/spatie",
  12667. "type": "github"
  12668. }
  12669. ],
  12670. "time": "2025-02-14T13:42:06+00:00"
  12671. },
  12672. {
  12673. "name": "spatie/ignition",
  12674. "version": "1.15.1",
  12675. "source": {
  12676. "type": "git",
  12677. "url": "https://github.com/spatie/ignition.git",
  12678. "reference": "31f314153020aee5af3537e507fef892ffbf8c85"
  12679. },
  12680. "dist": {
  12681. "type": "zip",
  12682. "url": "https://api.github.com/repos/spatie/ignition/zipball/31f314153020aee5af3537e507fef892ffbf8c85",
  12683. "reference": "31f314153020aee5af3537e507fef892ffbf8c85",
  12684. "shasum": ""
  12685. },
  12686. "require": {
  12687. "ext-json": "*",
  12688. "ext-mbstring": "*",
  12689. "php": "^8.0",
  12690. "spatie/error-solutions": "^1.0",
  12691. "spatie/flare-client-php": "^1.7",
  12692. "symfony/console": "^5.4|^6.0|^7.0",
  12693. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  12694. },
  12695. "require-dev": {
  12696. "illuminate/cache": "^9.52|^10.0|^11.0|^12.0",
  12697. "mockery/mockery": "^1.4",
  12698. "pestphp/pest": "^1.20|^2.0",
  12699. "phpstan/extension-installer": "^1.1",
  12700. "phpstan/phpstan-deprecation-rules": "^1.0",
  12701. "phpstan/phpstan-phpunit": "^1.0",
  12702. "psr/simple-cache-implementation": "*",
  12703. "symfony/cache": "^5.4|^6.0|^7.0",
  12704. "symfony/process": "^5.4|^6.0|^7.0",
  12705. "vlucas/phpdotenv": "^5.5"
  12706. },
  12707. "suggest": {
  12708. "openai-php/client": "Require get solutions from OpenAI",
  12709. "simple-cache-implementation": "To cache solutions from OpenAI"
  12710. },
  12711. "type": "library",
  12712. "extra": {
  12713. "branch-alias": {
  12714. "dev-main": "1.5.x-dev"
  12715. }
  12716. },
  12717. "autoload": {
  12718. "psr-4": {
  12719. "Spatie\\Ignition\\": "src"
  12720. }
  12721. },
  12722. "notification-url": "https://packagist.org/downloads/",
  12723. "license": [
  12724. "MIT"
  12725. ],
  12726. "authors": [
  12727. {
  12728. "name": "Spatie",
  12729. "email": "info@spatie.be",
  12730. "role": "Developer"
  12731. }
  12732. ],
  12733. "description": "A beautiful error page for PHP applications.",
  12734. "homepage": "https://flareapp.io/ignition",
  12735. "keywords": [
  12736. "error",
  12737. "flare",
  12738. "laravel",
  12739. "page"
  12740. ],
  12741. "support": {
  12742. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  12743. "forum": "https://twitter.com/flareappio",
  12744. "issues": "https://github.com/spatie/ignition/issues",
  12745. "source": "https://github.com/spatie/ignition"
  12746. },
  12747. "funding": [
  12748. {
  12749. "url": "https://github.com/spatie",
  12750. "type": "github"
  12751. }
  12752. ],
  12753. "time": "2025-02-21T14:31:39+00:00"
  12754. },
  12755. {
  12756. "name": "spatie/laravel-ignition",
  12757. "version": "2.9.1",
  12758. "source": {
  12759. "type": "git",
  12760. "url": "https://github.com/spatie/laravel-ignition.git",
  12761. "reference": "1baee07216d6748ebd3a65ba97381b051838707a"
  12762. },
  12763. "dist": {
  12764. "type": "zip",
  12765. "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/1baee07216d6748ebd3a65ba97381b051838707a",
  12766. "reference": "1baee07216d6748ebd3a65ba97381b051838707a",
  12767. "shasum": ""
  12768. },
  12769. "require": {
  12770. "ext-curl": "*",
  12771. "ext-json": "*",
  12772. "ext-mbstring": "*",
  12773. "illuminate/support": "^10.0|^11.0|^12.0",
  12774. "php": "^8.1",
  12775. "spatie/ignition": "^1.15",
  12776. "symfony/console": "^6.2.3|^7.0",
  12777. "symfony/var-dumper": "^6.2.3|^7.0"
  12778. },
  12779. "require-dev": {
  12780. "livewire/livewire": "^2.11|^3.3.5",
  12781. "mockery/mockery": "^1.5.1",
  12782. "openai-php/client": "^0.8.1|^0.10",
  12783. "orchestra/testbench": "8.22.3|^9.0|^10.0",
  12784. "pestphp/pest": "^2.34|^3.7",
  12785. "phpstan/extension-installer": "^1.3.1",
  12786. "phpstan/phpstan-deprecation-rules": "^1.1.1|^2.0",
  12787. "phpstan/phpstan-phpunit": "^1.3.16|^2.0",
  12788. "vlucas/phpdotenv": "^5.5"
  12789. },
  12790. "suggest": {
  12791. "openai-php/client": "Require get solutions from OpenAI",
  12792. "psr/simple-cache-implementation": "Needed to cache solutions from OpenAI"
  12793. },
  12794. "type": "library",
  12795. "extra": {
  12796. "laravel": {
  12797. "aliases": {
  12798. "Flare": "Spatie\\LaravelIgnition\\Facades\\Flare"
  12799. },
  12800. "providers": [
  12801. "Spatie\\LaravelIgnition\\IgnitionServiceProvider"
  12802. ]
  12803. }
  12804. },
  12805. "autoload": {
  12806. "files": [
  12807. "src/helpers.php"
  12808. ],
  12809. "psr-4": {
  12810. "Spatie\\LaravelIgnition\\": "src"
  12811. }
  12812. },
  12813. "notification-url": "https://packagist.org/downloads/",
  12814. "license": [
  12815. "MIT"
  12816. ],
  12817. "authors": [
  12818. {
  12819. "name": "Spatie",
  12820. "email": "info@spatie.be",
  12821. "role": "Developer"
  12822. }
  12823. ],
  12824. "description": "A beautiful error page for Laravel applications.",
  12825. "homepage": "https://flareapp.io/ignition",
  12826. "keywords": [
  12827. "error",
  12828. "flare",
  12829. "laravel",
  12830. "page"
  12831. ],
  12832. "support": {
  12833. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  12834. "forum": "https://twitter.com/flareappio",
  12835. "issues": "https://github.com/spatie/laravel-ignition/issues",
  12836. "source": "https://github.com/spatie/laravel-ignition"
  12837. },
  12838. "funding": [
  12839. {
  12840. "url": "https://github.com/spatie",
  12841. "type": "github"
  12842. }
  12843. ],
  12844. "time": "2025-02-20T13:13:55+00:00"
  12845. },
  12846. {
  12847. "name": "spatie/laravel-ray",
  12848. "version": "1.40.2",
  12849. "source": {
  12850. "type": "git",
  12851. "url": "https://github.com/spatie/laravel-ray.git",
  12852. "reference": "1d1b31eb83cb38b41975c37363c7461de6d86b25"
  12853. },
  12854. "dist": {
  12855. "type": "zip",
  12856. "url": "https://api.github.com/repos/spatie/laravel-ray/zipball/1d1b31eb83cb38b41975c37363c7461de6d86b25",
  12857. "reference": "1d1b31eb83cb38b41975c37363c7461de6d86b25",
  12858. "shasum": ""
  12859. },
  12860. "require": {
  12861. "composer-runtime-api": "^2.2",
  12862. "ext-json": "*",
  12863. "illuminate/contracts": "^7.20 || ^8.19 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
  12864. "illuminate/database": "^7.20 || ^8.19 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
  12865. "illuminate/queue": "^7.20 || ^8.19 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
  12866. "illuminate/support": "^7.20 || ^8.19 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
  12867. "php": "^7.4 || ^8.0",
  12868. "spatie/backtrace": "^1.7.1",
  12869. "spatie/ray": "^1.41.3",
  12870. "symfony/stopwatch": "4.2 || ^5.1 || ^6.0 || ^7.0",
  12871. "zbateson/mail-mime-parser": "^1.3.1 || ^2.0 || ^3.0"
  12872. },
  12873. "require-dev": {
  12874. "guzzlehttp/guzzle": "^7.3",
  12875. "laravel/framework": "^7.20 || ^8.19 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
  12876. "orchestra/testbench-core": "^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0",
  12877. "pestphp/pest": "^1.22 || ^2.0 || ^3.0",
  12878. "phpstan/phpstan": "^1.10.57 || ^2.0.2",
  12879. "phpunit/phpunit": "^9.3 || ^10.1 || ^11.0.10",
  12880. "rector/rector": "^0.19.2 || ^1.0.1 || ^2.0.0",
  12881. "spatie/pest-plugin-snapshots": "^1.1 || ^2.0",
  12882. "symfony/var-dumper": "^4.2 || ^5.1 || ^6.0 || ^7.0.3"
  12883. },
  12884. "type": "library",
  12885. "extra": {
  12886. "laravel": {
  12887. "providers": [
  12888. "Spatie\\LaravelRay\\RayServiceProvider"
  12889. ]
  12890. },
  12891. "branch-alias": {
  12892. "dev-main": "1.x-dev"
  12893. }
  12894. },
  12895. "autoload": {
  12896. "psr-4": {
  12897. "Spatie\\LaravelRay\\": "src"
  12898. }
  12899. },
  12900. "notification-url": "https://packagist.org/downloads/",
  12901. "license": [
  12902. "MIT"
  12903. ],
  12904. "authors": [
  12905. {
  12906. "name": "Freek Van der Herten",
  12907. "email": "freek@spatie.be",
  12908. "homepage": "https://spatie.be",
  12909. "role": "Developer"
  12910. }
  12911. ],
  12912. "description": "Easily debug Laravel apps",
  12913. "homepage": "https://github.com/spatie/laravel-ray",
  12914. "keywords": [
  12915. "laravel-ray",
  12916. "spatie"
  12917. ],
  12918. "support": {
  12919. "issues": "https://github.com/spatie/laravel-ray/issues",
  12920. "source": "https://github.com/spatie/laravel-ray/tree/1.40.2"
  12921. },
  12922. "funding": [
  12923. {
  12924. "url": "https://github.com/sponsors/spatie",
  12925. "type": "github"
  12926. },
  12927. {
  12928. "url": "https://spatie.be/open-source/support-us",
  12929. "type": "other"
  12930. }
  12931. ],
  12932. "time": "2025-03-27T08:26:55+00:00"
  12933. },
  12934. {
  12935. "name": "spatie/macroable",
  12936. "version": "2.0.0",
  12937. "source": {
  12938. "type": "git",
  12939. "url": "https://github.com/spatie/macroable.git",
  12940. "reference": "ec2c320f932e730607aff8052c44183cf3ecb072"
  12941. },
  12942. "dist": {
  12943. "type": "zip",
  12944. "url": "https://api.github.com/repos/spatie/macroable/zipball/ec2c320f932e730607aff8052c44183cf3ecb072",
  12945. "reference": "ec2c320f932e730607aff8052c44183cf3ecb072",
  12946. "shasum": ""
  12947. },
  12948. "require": {
  12949. "php": "^8.0"
  12950. },
  12951. "require-dev": {
  12952. "phpunit/phpunit": "^8.0|^9.3"
  12953. },
  12954. "type": "library",
  12955. "autoload": {
  12956. "psr-4": {
  12957. "Spatie\\Macroable\\": "src"
  12958. }
  12959. },
  12960. "notification-url": "https://packagist.org/downloads/",
  12961. "license": [
  12962. "MIT"
  12963. ],
  12964. "authors": [
  12965. {
  12966. "name": "Freek Van der Herten",
  12967. "email": "freek@spatie.be",
  12968. "homepage": "https://spatie.be",
  12969. "role": "Developer"
  12970. }
  12971. ],
  12972. "description": "A trait to dynamically add methods to a class",
  12973. "homepage": "https://github.com/spatie/macroable",
  12974. "keywords": [
  12975. "macroable",
  12976. "spatie"
  12977. ],
  12978. "support": {
  12979. "issues": "https://github.com/spatie/macroable/issues",
  12980. "source": "https://github.com/spatie/macroable/tree/2.0.0"
  12981. },
  12982. "time": "2021-03-26T22:39:02+00:00"
  12983. },
  12984. {
  12985. "name": "spatie/ray",
  12986. "version": "1.42.0",
  12987. "source": {
  12988. "type": "git",
  12989. "url": "https://github.com/spatie/ray.git",
  12990. "reference": "152250ce7c490bf830349fa30ba5200084e95860"
  12991. },
  12992. "dist": {
  12993. "type": "zip",
  12994. "url": "https://api.github.com/repos/spatie/ray/zipball/152250ce7c490bf830349fa30ba5200084e95860",
  12995. "reference": "152250ce7c490bf830349fa30ba5200084e95860",
  12996. "shasum": ""
  12997. },
  12998. "require": {
  12999. "ext-curl": "*",
  13000. "ext-json": "*",
  13001. "php": "^7.4 || ^8.0",
  13002. "ramsey/uuid": "^3.0 || ^4.1",
  13003. "spatie/backtrace": "^1.7.1",
  13004. "spatie/macroable": "^1.0 || ^2.0",
  13005. "symfony/stopwatch": "^4.2 || ^5.1 || ^6.0 || ^7.0",
  13006. "symfony/var-dumper": "^4.2 || ^5.1 || ^6.0 || ^7.0.3"
  13007. },
  13008. "require-dev": {
  13009. "illuminate/support": "^7.20 || ^8.18 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
  13010. "nesbot/carbon": "^2.63 || ^3.8.4",
  13011. "pestphp/pest": "^1.22",
  13012. "phpstan/phpstan": "^1.10.57 || ^2.0.3",
  13013. "phpunit/phpunit": "^9.5",
  13014. "rector/rector": "^0.19.2 || ^1.0.1 || ^2.0.0",
  13015. "spatie/phpunit-snapshot-assertions": "^4.2",
  13016. "spatie/test-time": "^1.2"
  13017. },
  13018. "bin": [
  13019. "bin/remove-ray.sh"
  13020. ],
  13021. "type": "library",
  13022. "extra": {
  13023. "branch-alias": {
  13024. "dev-main": "1.x-dev"
  13025. }
  13026. },
  13027. "autoload": {
  13028. "files": [
  13029. "src/helpers.php"
  13030. ],
  13031. "psr-4": {
  13032. "Spatie\\Ray\\": "src"
  13033. }
  13034. },
  13035. "notification-url": "https://packagist.org/downloads/",
  13036. "license": [
  13037. "MIT"
  13038. ],
  13039. "authors": [
  13040. {
  13041. "name": "Freek Van der Herten",
  13042. "email": "freek@spatie.be",
  13043. "homepage": "https://spatie.be",
  13044. "role": "Developer"
  13045. }
  13046. ],
  13047. "description": "Debug with Ray to fix problems faster",
  13048. "homepage": "https://github.com/spatie/ray",
  13049. "keywords": [
  13050. "ray",
  13051. "spatie"
  13052. ],
  13053. "support": {
  13054. "issues": "https://github.com/spatie/ray/issues",
  13055. "source": "https://github.com/spatie/ray/tree/1.42.0"
  13056. },
  13057. "funding": [
  13058. {
  13059. "url": "https://github.com/sponsors/spatie",
  13060. "type": "github"
  13061. },
  13062. {
  13063. "url": "https://spatie.be/open-source/support-us",
  13064. "type": "other"
  13065. }
  13066. ],
  13067. "time": "2025-04-18T08:17:40+00:00"
  13068. },
  13069. {
  13070. "name": "staabm/side-effects-detector",
  13071. "version": "1.0.5",
  13072. "source": {
  13073. "type": "git",
  13074. "url": "https://github.com/staabm/side-effects-detector.git",
  13075. "reference": "d8334211a140ce329c13726d4a715adbddd0a163"
  13076. },
  13077. "dist": {
  13078. "type": "zip",
  13079. "url": "https://api.github.com/repos/staabm/side-effects-detector/zipball/d8334211a140ce329c13726d4a715adbddd0a163",
  13080. "reference": "d8334211a140ce329c13726d4a715adbddd0a163",
  13081. "shasum": ""
  13082. },
  13083. "require": {
  13084. "ext-tokenizer": "*",
  13085. "php": "^7.4 || ^8.0"
  13086. },
  13087. "require-dev": {
  13088. "phpstan/extension-installer": "^1.4.3",
  13089. "phpstan/phpstan": "^1.12.6",
  13090. "phpunit/phpunit": "^9.6.21",
  13091. "symfony/var-dumper": "^5.4.43",
  13092. "tomasvotruba/type-coverage": "1.0.0",
  13093. "tomasvotruba/unused-public": "1.0.0"
  13094. },
  13095. "type": "library",
  13096. "autoload": {
  13097. "classmap": [
  13098. "lib/"
  13099. ]
  13100. },
  13101. "notification-url": "https://packagist.org/downloads/",
  13102. "license": [
  13103. "MIT"
  13104. ],
  13105. "description": "A static analysis tool to detect side effects in PHP code",
  13106. "keywords": [
  13107. "static analysis"
  13108. ],
  13109. "support": {
  13110. "issues": "https://github.com/staabm/side-effects-detector/issues",
  13111. "source": "https://github.com/staabm/side-effects-detector/tree/1.0.5"
  13112. },
  13113. "funding": [
  13114. {
  13115. "url": "https://github.com/staabm",
  13116. "type": "github"
  13117. }
  13118. ],
  13119. "time": "2024-10-20T05:08:20+00:00"
  13120. },
  13121. {
  13122. "name": "symfony/polyfill-iconv",
  13123. "version": "v1.32.0",
  13124. "source": {
  13125. "type": "git",
  13126. "url": "https://github.com/symfony/polyfill-iconv.git",
  13127. "reference": "5f3b930437ae03ae5dff61269024d8ea1b3774aa"
  13128. },
  13129. "dist": {
  13130. "type": "zip",
  13131. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/5f3b930437ae03ae5dff61269024d8ea1b3774aa",
  13132. "reference": "5f3b930437ae03ae5dff61269024d8ea1b3774aa",
  13133. "shasum": ""
  13134. },
  13135. "require": {
  13136. "php": ">=7.2"
  13137. },
  13138. "provide": {
  13139. "ext-iconv": "*"
  13140. },
  13141. "suggest": {
  13142. "ext-iconv": "For best performance"
  13143. },
  13144. "type": "library",
  13145. "extra": {
  13146. "thanks": {
  13147. "url": "https://github.com/symfony/polyfill",
  13148. "name": "symfony/polyfill"
  13149. }
  13150. },
  13151. "autoload": {
  13152. "files": [
  13153. "bootstrap.php"
  13154. ],
  13155. "psr-4": {
  13156. "Symfony\\Polyfill\\Iconv\\": ""
  13157. }
  13158. },
  13159. "notification-url": "https://packagist.org/downloads/",
  13160. "license": [
  13161. "MIT"
  13162. ],
  13163. "authors": [
  13164. {
  13165. "name": "Nicolas Grekas",
  13166. "email": "p@tchwork.com"
  13167. },
  13168. {
  13169. "name": "Symfony Community",
  13170. "homepage": "https://symfony.com/contributors"
  13171. }
  13172. ],
  13173. "description": "Symfony polyfill for the Iconv extension",
  13174. "homepage": "https://symfony.com",
  13175. "keywords": [
  13176. "compatibility",
  13177. "iconv",
  13178. "polyfill",
  13179. "portable",
  13180. "shim"
  13181. ],
  13182. "support": {
  13183. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.32.0"
  13184. },
  13185. "funding": [
  13186. {
  13187. "url": "https://symfony.com/sponsor",
  13188. "type": "custom"
  13189. },
  13190. {
  13191. "url": "https://github.com/fabpot",
  13192. "type": "github"
  13193. },
  13194. {
  13195. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13196. "type": "tidelift"
  13197. }
  13198. ],
  13199. "time": "2024-09-17T14:58:18+00:00"
  13200. },
  13201. {
  13202. "name": "symfony/stopwatch",
  13203. "version": "v7.3.0",
  13204. "source": {
  13205. "type": "git",
  13206. "url": "https://github.com/symfony/stopwatch.git",
  13207. "reference": "5a49289e2b308214c8b9c2fda4ea454d8b8ad7cd"
  13208. },
  13209. "dist": {
  13210. "type": "zip",
  13211. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/5a49289e2b308214c8b9c2fda4ea454d8b8ad7cd",
  13212. "reference": "5a49289e2b308214c8b9c2fda4ea454d8b8ad7cd",
  13213. "shasum": ""
  13214. },
  13215. "require": {
  13216. "php": ">=8.2",
  13217. "symfony/service-contracts": "^2.5|^3"
  13218. },
  13219. "type": "library",
  13220. "autoload": {
  13221. "psr-4": {
  13222. "Symfony\\Component\\Stopwatch\\": ""
  13223. },
  13224. "exclude-from-classmap": [
  13225. "/Tests/"
  13226. ]
  13227. },
  13228. "notification-url": "https://packagist.org/downloads/",
  13229. "license": [
  13230. "MIT"
  13231. ],
  13232. "authors": [
  13233. {
  13234. "name": "Fabien Potencier",
  13235. "email": "fabien@symfony.com"
  13236. },
  13237. {
  13238. "name": "Symfony Community",
  13239. "homepage": "https://symfony.com/contributors"
  13240. }
  13241. ],
  13242. "description": "Provides a way to profile code",
  13243. "homepage": "https://symfony.com",
  13244. "support": {
  13245. "source": "https://github.com/symfony/stopwatch/tree/v7.3.0"
  13246. },
  13247. "funding": [
  13248. {
  13249. "url": "https://symfony.com/sponsor",
  13250. "type": "custom"
  13251. },
  13252. {
  13253. "url": "https://github.com/fabpot",
  13254. "type": "github"
  13255. },
  13256. {
  13257. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13258. "type": "tidelift"
  13259. }
  13260. ],
  13261. "time": "2025-02-24T10:49:57+00:00"
  13262. },
  13263. {
  13264. "name": "symfony/yaml",
  13265. "version": "v7.3.1",
  13266. "source": {
  13267. "type": "git",
  13268. "url": "https://github.com/symfony/yaml.git",
  13269. "reference": "0c3555045a46ab3cd4cc5a69d161225195230edb"
  13270. },
  13271. "dist": {
  13272. "type": "zip",
  13273. "url": "https://api.github.com/repos/symfony/yaml/zipball/0c3555045a46ab3cd4cc5a69d161225195230edb",
  13274. "reference": "0c3555045a46ab3cd4cc5a69d161225195230edb",
  13275. "shasum": ""
  13276. },
  13277. "require": {
  13278. "php": ">=8.2",
  13279. "symfony/deprecation-contracts": "^2.5|^3.0",
  13280. "symfony/polyfill-ctype": "^1.8"
  13281. },
  13282. "conflict": {
  13283. "symfony/console": "<6.4"
  13284. },
  13285. "require-dev": {
  13286. "symfony/console": "^6.4|^7.0"
  13287. },
  13288. "bin": [
  13289. "Resources/bin/yaml-lint"
  13290. ],
  13291. "type": "library",
  13292. "autoload": {
  13293. "psr-4": {
  13294. "Symfony\\Component\\Yaml\\": ""
  13295. },
  13296. "exclude-from-classmap": [
  13297. "/Tests/"
  13298. ]
  13299. },
  13300. "notification-url": "https://packagist.org/downloads/",
  13301. "license": [
  13302. "MIT"
  13303. ],
  13304. "authors": [
  13305. {
  13306. "name": "Fabien Potencier",
  13307. "email": "fabien@symfony.com"
  13308. },
  13309. {
  13310. "name": "Symfony Community",
  13311. "homepage": "https://symfony.com/contributors"
  13312. }
  13313. ],
  13314. "description": "Loads and dumps YAML files",
  13315. "homepage": "https://symfony.com",
  13316. "support": {
  13317. "source": "https://github.com/symfony/yaml/tree/v7.3.1"
  13318. },
  13319. "funding": [
  13320. {
  13321. "url": "https://symfony.com/sponsor",
  13322. "type": "custom"
  13323. },
  13324. {
  13325. "url": "https://github.com/fabpot",
  13326. "type": "github"
  13327. },
  13328. {
  13329. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13330. "type": "tidelift"
  13331. }
  13332. ],
  13333. "time": "2025-06-03T06:57:57+00:00"
  13334. },
  13335. {
  13336. "name": "ta-tikoma/phpunit-architecture-test",
  13337. "version": "0.8.5",
  13338. "source": {
  13339. "type": "git",
  13340. "url": "https://github.com/ta-tikoma/phpunit-architecture-test.git",
  13341. "reference": "cf6fb197b676ba716837c886baca842e4db29005"
  13342. },
  13343. "dist": {
  13344. "type": "zip",
  13345. "url": "https://api.github.com/repos/ta-tikoma/phpunit-architecture-test/zipball/cf6fb197b676ba716837c886baca842e4db29005",
  13346. "reference": "cf6fb197b676ba716837c886baca842e4db29005",
  13347. "shasum": ""
  13348. },
  13349. "require": {
  13350. "nikic/php-parser": "^4.18.0 || ^5.0.0",
  13351. "php": "^8.1.0",
  13352. "phpdocumentor/reflection-docblock": "^5.3.0",
  13353. "phpunit/phpunit": "^10.5.5 || ^11.0.0 || ^12.0.0",
  13354. "symfony/finder": "^6.4.0 || ^7.0.0"
  13355. },
  13356. "require-dev": {
  13357. "laravel/pint": "^1.13.7",
  13358. "phpstan/phpstan": "^1.10.52"
  13359. },
  13360. "type": "library",
  13361. "autoload": {
  13362. "psr-4": {
  13363. "PHPUnit\\Architecture\\": "src/"
  13364. }
  13365. },
  13366. "notification-url": "https://packagist.org/downloads/",
  13367. "license": [
  13368. "MIT"
  13369. ],
  13370. "authors": [
  13371. {
  13372. "name": "Ni Shi",
  13373. "email": "futik0ma011@gmail.com"
  13374. },
  13375. {
  13376. "name": "Nuno Maduro",
  13377. "email": "enunomaduro@gmail.com"
  13378. }
  13379. ],
  13380. "description": "Methods for testing application architecture",
  13381. "keywords": [
  13382. "architecture",
  13383. "phpunit",
  13384. "stucture",
  13385. "test",
  13386. "testing"
  13387. ],
  13388. "support": {
  13389. "issues": "https://github.com/ta-tikoma/phpunit-architecture-test/issues",
  13390. "source": "https://github.com/ta-tikoma/phpunit-architecture-test/tree/0.8.5"
  13391. },
  13392. "time": "2025-04-20T20:23:40+00:00"
  13393. },
  13394. {
  13395. "name": "theseer/tokenizer",
  13396. "version": "1.2.3",
  13397. "source": {
  13398. "type": "git",
  13399. "url": "https://github.com/theseer/tokenizer.git",
  13400. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  13401. },
  13402. "dist": {
  13403. "type": "zip",
  13404. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  13405. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  13406. "shasum": ""
  13407. },
  13408. "require": {
  13409. "ext-dom": "*",
  13410. "ext-tokenizer": "*",
  13411. "ext-xmlwriter": "*",
  13412. "php": "^7.2 || ^8.0"
  13413. },
  13414. "type": "library",
  13415. "autoload": {
  13416. "classmap": [
  13417. "src/"
  13418. ]
  13419. },
  13420. "notification-url": "https://packagist.org/downloads/",
  13421. "license": [
  13422. "BSD-3-Clause"
  13423. ],
  13424. "authors": [
  13425. {
  13426. "name": "Arne Blankerts",
  13427. "email": "arne@blankerts.de",
  13428. "role": "Developer"
  13429. }
  13430. ],
  13431. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  13432. "support": {
  13433. "issues": "https://github.com/theseer/tokenizer/issues",
  13434. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  13435. },
  13436. "funding": [
  13437. {
  13438. "url": "https://github.com/theseer",
  13439. "type": "github"
  13440. }
  13441. ],
  13442. "time": "2024-03-03T12:36:25+00:00"
  13443. },
  13444. {
  13445. "name": "zbateson/mail-mime-parser",
  13446. "version": "3.0.3",
  13447. "source": {
  13448. "type": "git",
  13449. "url": "https://github.com/zbateson/mail-mime-parser.git",
  13450. "reference": "e0d4423fe27850c9dd301190767dbc421acc2f19"
  13451. },
  13452. "dist": {
  13453. "type": "zip",
  13454. "url": "https://api.github.com/repos/zbateson/mail-mime-parser/zipball/e0d4423fe27850c9dd301190767dbc421acc2f19",
  13455. "reference": "e0d4423fe27850c9dd301190767dbc421acc2f19",
  13456. "shasum": ""
  13457. },
  13458. "require": {
  13459. "guzzlehttp/psr7": "^2.5",
  13460. "php": ">=8.0",
  13461. "php-di/php-di": "^6.0|^7.0",
  13462. "psr/log": "^1|^2|^3",
  13463. "zbateson/mb-wrapper": "^2.0",
  13464. "zbateson/stream-decorators": "^2.1"
  13465. },
  13466. "require-dev": {
  13467. "friendsofphp/php-cs-fixer": "*",
  13468. "monolog/monolog": "^2|^3",
  13469. "phpstan/phpstan": "*",
  13470. "phpunit/phpunit": "^9.6"
  13471. },
  13472. "suggest": {
  13473. "ext-iconv": "For best support/performance",
  13474. "ext-mbstring": "For best support/performance"
  13475. },
  13476. "type": "library",
  13477. "autoload": {
  13478. "psr-4": {
  13479. "ZBateson\\MailMimeParser\\": "src/"
  13480. }
  13481. },
  13482. "notification-url": "https://packagist.org/downloads/",
  13483. "license": [
  13484. "BSD-2-Clause"
  13485. ],
  13486. "authors": [
  13487. {
  13488. "name": "Zaahid Bateson"
  13489. },
  13490. {
  13491. "name": "Contributors",
  13492. "homepage": "https://github.com/zbateson/mail-mime-parser/graphs/contributors"
  13493. }
  13494. ],
  13495. "description": "MIME email message parser",
  13496. "homepage": "https://mail-mime-parser.org",
  13497. "keywords": [
  13498. "MimeMailParser",
  13499. "email",
  13500. "mail",
  13501. "mailparse",
  13502. "mime",
  13503. "mimeparse",
  13504. "parser",
  13505. "php-imap"
  13506. ],
  13507. "support": {
  13508. "docs": "https://mail-mime-parser.org/#usage-guide",
  13509. "issues": "https://github.com/zbateson/mail-mime-parser/issues",
  13510. "source": "https://github.com/zbateson/mail-mime-parser"
  13511. },
  13512. "funding": [
  13513. {
  13514. "url": "https://github.com/zbateson",
  13515. "type": "github"
  13516. }
  13517. ],
  13518. "time": "2024-08-10T18:44:09+00:00"
  13519. },
  13520. {
  13521. "name": "zbateson/mb-wrapper",
  13522. "version": "2.0.1",
  13523. "source": {
  13524. "type": "git",
  13525. "url": "https://github.com/zbateson/mb-wrapper.git",
  13526. "reference": "50a14c0c9537f978a61cde9fdc192a0267cc9cff"
  13527. },
  13528. "dist": {
  13529. "type": "zip",
  13530. "url": "https://api.github.com/repos/zbateson/mb-wrapper/zipball/50a14c0c9537f978a61cde9fdc192a0267cc9cff",
  13531. "reference": "50a14c0c9537f978a61cde9fdc192a0267cc9cff",
  13532. "shasum": ""
  13533. },
  13534. "require": {
  13535. "php": ">=8.0",
  13536. "symfony/polyfill-iconv": "^1.9",
  13537. "symfony/polyfill-mbstring": "^1.9"
  13538. },
  13539. "require-dev": {
  13540. "friendsofphp/php-cs-fixer": "*",
  13541. "phpstan/phpstan": "*",
  13542. "phpunit/phpunit": "^9.6|^10.0"
  13543. },
  13544. "suggest": {
  13545. "ext-iconv": "For best support/performance",
  13546. "ext-mbstring": "For best support/performance"
  13547. },
  13548. "type": "library",
  13549. "autoload": {
  13550. "psr-4": {
  13551. "ZBateson\\MbWrapper\\": "src/"
  13552. }
  13553. },
  13554. "notification-url": "https://packagist.org/downloads/",
  13555. "license": [
  13556. "BSD-2-Clause"
  13557. ],
  13558. "authors": [
  13559. {
  13560. "name": "Zaahid Bateson"
  13561. }
  13562. ],
  13563. "description": "Wrapper for mbstring with fallback to iconv for encoding conversion and string manipulation",
  13564. "keywords": [
  13565. "charset",
  13566. "encoding",
  13567. "http",
  13568. "iconv",
  13569. "mail",
  13570. "mb",
  13571. "mb_convert_encoding",
  13572. "mbstring",
  13573. "mime",
  13574. "multibyte",
  13575. "string"
  13576. ],
  13577. "support": {
  13578. "issues": "https://github.com/zbateson/mb-wrapper/issues",
  13579. "source": "https://github.com/zbateson/mb-wrapper/tree/2.0.1"
  13580. },
  13581. "funding": [
  13582. {
  13583. "url": "https://github.com/zbateson",
  13584. "type": "github"
  13585. }
  13586. ],
  13587. "time": "2024-12-20T22:05:33+00:00"
  13588. },
  13589. {
  13590. "name": "zbateson/stream-decorators",
  13591. "version": "2.1.1",
  13592. "source": {
  13593. "type": "git",
  13594. "url": "https://github.com/zbateson/stream-decorators.git",
  13595. "reference": "32a2a62fb0f26313395c996ebd658d33c3f9c4e5"
  13596. },
  13597. "dist": {
  13598. "type": "zip",
  13599. "url": "https://api.github.com/repos/zbateson/stream-decorators/zipball/32a2a62fb0f26313395c996ebd658d33c3f9c4e5",
  13600. "reference": "32a2a62fb0f26313395c996ebd658d33c3f9c4e5",
  13601. "shasum": ""
  13602. },
  13603. "require": {
  13604. "guzzlehttp/psr7": "^2.5",
  13605. "php": ">=8.0",
  13606. "zbateson/mb-wrapper": "^2.0"
  13607. },
  13608. "require-dev": {
  13609. "friendsofphp/php-cs-fixer": "*",
  13610. "phpstan/phpstan": "*",
  13611. "phpunit/phpunit": "^9.6|^10.0"
  13612. },
  13613. "type": "library",
  13614. "autoload": {
  13615. "psr-4": {
  13616. "ZBateson\\StreamDecorators\\": "src/"
  13617. }
  13618. },
  13619. "notification-url": "https://packagist.org/downloads/",
  13620. "license": [
  13621. "BSD-2-Clause"
  13622. ],
  13623. "authors": [
  13624. {
  13625. "name": "Zaahid Bateson"
  13626. }
  13627. ],
  13628. "description": "PHP psr7 stream decorators for mime message part streams",
  13629. "keywords": [
  13630. "base64",
  13631. "charset",
  13632. "decorators",
  13633. "mail",
  13634. "mime",
  13635. "psr7",
  13636. "quoted-printable",
  13637. "stream",
  13638. "uuencode"
  13639. ],
  13640. "support": {
  13641. "issues": "https://github.com/zbateson/stream-decorators/issues",
  13642. "source": "https://github.com/zbateson/stream-decorators/tree/2.1.1"
  13643. },
  13644. "funding": [
  13645. {
  13646. "url": "https://github.com/zbateson",
  13647. "type": "github"
  13648. }
  13649. ],
  13650. "time": "2024-04-29T21:42:39+00:00"
  13651. }
  13652. ],
  13653. "aliases": [],
  13654. "minimum-stability": "stable",
  13655. "stability-flags": {},
  13656. "prefer-stable": true,
  13657. "prefer-lowest": false,
  13658. "platform": {
  13659. "php": "^8.2",
  13660. "ext-bcmath": "*",
  13661. "ext-intl": "*"
  13662. },
  13663. "platform-dev": {},
  13664. "plugin-api-version": "2.6.0"
  13665. }