composer.lock 339 KB

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