composer.lock 301 KB

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