composer.lock 402 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222
  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": "6a4fed3340ee7de8c145f66ac1f78712",
  8. "packages": [
  9. {
  10. "name": "archtechx/enums",
  11. "version": "v1.1.2",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/archtechx/enums.git",
  15. "reference": "81375b71c176f680880a95e7448d84258cfb5c72"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/archtechx/enums/zipball/81375b71c176f680880a95e7448d84258cfb5c72",
  20. "reference": "81375b71c176f680880a95e7448d84258cfb5c72",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^8.1"
  25. },
  26. "require-dev": {
  27. "larastan/larastan": "^2.4",
  28. "orchestra/testbench": "^8.0 || ^9.0",
  29. "pestphp/pest": "^2.0",
  30. "pestphp/pest-plugin-laravel": "^2.0"
  31. },
  32. "type": "library",
  33. "extra": {
  34. "phpstan": {
  35. "includes": [
  36. "extension.neon"
  37. ]
  38. }
  39. },
  40. "autoload": {
  41. "psr-4": {
  42. "ArchTech\\Enums\\": "src/"
  43. }
  44. },
  45. "notification-url": "https://packagist.org/downloads/",
  46. "license": [
  47. "MIT"
  48. ],
  49. "authors": [
  50. {
  51. "name": "Samuel Štancl",
  52. "email": "samuel@archte.ch"
  53. }
  54. ],
  55. "description": "Helpers for making PHP enums more lovable.",
  56. "support": {
  57. "issues": "https://github.com/archtechx/enums/issues",
  58. "source": "https://github.com/archtechx/enums/tree/v1.1.2"
  59. },
  60. "time": "2025-06-06T23:15:09+00:00"
  61. },
  62. {
  63. "name": "brick/math",
  64. "version": "0.14.0",
  65. "source": {
  66. "type": "git",
  67. "url": "https://github.com/brick/math.git",
  68. "reference": "113a8ee2656b882d4c3164fa31aa6e12cbb7aaa2"
  69. },
  70. "dist": {
  71. "type": "zip",
  72. "url": "https://api.github.com/repos/brick/math/zipball/113a8ee2656b882d4c3164fa31aa6e12cbb7aaa2",
  73. "reference": "113a8ee2656b882d4c3164fa31aa6e12cbb7aaa2",
  74. "shasum": ""
  75. },
  76. "require": {
  77. "php": "^8.2"
  78. },
  79. "require-dev": {
  80. "php-coveralls/php-coveralls": "^2.2",
  81. "phpstan/phpstan": "2.1.22",
  82. "phpunit/phpunit": "^11.5"
  83. },
  84. "type": "library",
  85. "autoload": {
  86. "psr-4": {
  87. "Brick\\Math\\": "src/"
  88. }
  89. },
  90. "notification-url": "https://packagist.org/downloads/",
  91. "license": [
  92. "MIT"
  93. ],
  94. "description": "Arbitrary-precision arithmetic library",
  95. "keywords": [
  96. "Arbitrary-precision",
  97. "BigInteger",
  98. "BigRational",
  99. "arithmetic",
  100. "bigdecimal",
  101. "bignum",
  102. "bignumber",
  103. "brick",
  104. "decimal",
  105. "integer",
  106. "math",
  107. "mathematics",
  108. "rational"
  109. ],
  110. "support": {
  111. "issues": "https://github.com/brick/math/issues",
  112. "source": "https://github.com/brick/math/tree/0.14.0"
  113. },
  114. "funding": [
  115. {
  116. "url": "https://github.com/BenMorel",
  117. "type": "github"
  118. }
  119. ],
  120. "time": "2025-08-29T12:40:03+00:00"
  121. },
  122. {
  123. "name": "carbonphp/carbon-doctrine-types",
  124. "version": "3.2.0",
  125. "source": {
  126. "type": "git",
  127. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  128. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  129. },
  130. "dist": {
  131. "type": "zip",
  132. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  133. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  134. "shasum": ""
  135. },
  136. "require": {
  137. "php": "^8.1"
  138. },
  139. "conflict": {
  140. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  141. },
  142. "require-dev": {
  143. "doctrine/dbal": "^4.0.0",
  144. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  145. "phpunit/phpunit": "^10.3"
  146. },
  147. "type": "library",
  148. "autoload": {
  149. "psr-4": {
  150. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  151. }
  152. },
  153. "notification-url": "https://packagist.org/downloads/",
  154. "license": [
  155. "MIT"
  156. ],
  157. "authors": [
  158. {
  159. "name": "KyleKatarn",
  160. "email": "kylekatarnls@gmail.com"
  161. }
  162. ],
  163. "description": "Types to use Carbon in Doctrine",
  164. "keywords": [
  165. "carbon",
  166. "date",
  167. "datetime",
  168. "doctrine",
  169. "time"
  170. ],
  171. "support": {
  172. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  173. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  174. },
  175. "funding": [
  176. {
  177. "url": "https://github.com/kylekatarnls",
  178. "type": "github"
  179. },
  180. {
  181. "url": "https://opencollective.com/Carbon",
  182. "type": "open_collective"
  183. },
  184. {
  185. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  186. "type": "tidelift"
  187. }
  188. ],
  189. "time": "2024-02-09T16:56:22+00:00"
  190. },
  191. {
  192. "name": "composer/class-map-generator",
  193. "version": "1.6.2",
  194. "source": {
  195. "type": "git",
  196. "url": "https://github.com/composer/class-map-generator.git",
  197. "reference": "ba9f089655d4cdd64e762a6044f411ccdaec0076"
  198. },
  199. "dist": {
  200. "type": "zip",
  201. "url": "https://api.github.com/repos/composer/class-map-generator/zipball/ba9f089655d4cdd64e762a6044f411ccdaec0076",
  202. "reference": "ba9f089655d4cdd64e762a6044f411ccdaec0076",
  203. "shasum": ""
  204. },
  205. "require": {
  206. "composer/pcre": "^2.1 || ^3.1",
  207. "php": "^7.2 || ^8.0",
  208. "symfony/finder": "^4.4 || ^5.3 || ^6 || ^7"
  209. },
  210. "require-dev": {
  211. "phpstan/phpstan": "^1.12 || ^2",
  212. "phpstan/phpstan-deprecation-rules": "^1 || ^2",
  213. "phpstan/phpstan-phpunit": "^1 || ^2",
  214. "phpstan/phpstan-strict-rules": "^1.1 || ^2",
  215. "phpunit/phpunit": "^8",
  216. "symfony/filesystem": "^5.4 || ^6"
  217. },
  218. "type": "library",
  219. "extra": {
  220. "branch-alias": {
  221. "dev-main": "1.x-dev"
  222. }
  223. },
  224. "autoload": {
  225. "psr-4": {
  226. "Composer\\ClassMapGenerator\\": "src"
  227. }
  228. },
  229. "notification-url": "https://packagist.org/downloads/",
  230. "license": [
  231. "MIT"
  232. ],
  233. "authors": [
  234. {
  235. "name": "Jordi Boggiano",
  236. "email": "j.boggiano@seld.be",
  237. "homepage": "https://seld.be"
  238. }
  239. ],
  240. "description": "Utilities to scan PHP code and generate class maps.",
  241. "keywords": [
  242. "classmap"
  243. ],
  244. "support": {
  245. "issues": "https://github.com/composer/class-map-generator/issues",
  246. "source": "https://github.com/composer/class-map-generator/tree/1.6.2"
  247. },
  248. "funding": [
  249. {
  250. "url": "https://packagist.com",
  251. "type": "custom"
  252. },
  253. {
  254. "url": "https://github.com/composer",
  255. "type": "github"
  256. }
  257. ],
  258. "time": "2025-08-20T18:52:43+00:00"
  259. },
  260. {
  261. "name": "composer/pcre",
  262. "version": "3.3.2",
  263. "source": {
  264. "type": "git",
  265. "url": "https://github.com/composer/pcre.git",
  266. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e"
  267. },
  268. "dist": {
  269. "type": "zip",
  270. "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  271. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  272. "shasum": ""
  273. },
  274. "require": {
  275. "php": "^7.4 || ^8.0"
  276. },
  277. "conflict": {
  278. "phpstan/phpstan": "<1.11.10"
  279. },
  280. "require-dev": {
  281. "phpstan/phpstan": "^1.12 || ^2",
  282. "phpstan/phpstan-strict-rules": "^1 || ^2",
  283. "phpunit/phpunit": "^8 || ^9"
  284. },
  285. "type": "library",
  286. "extra": {
  287. "phpstan": {
  288. "includes": [
  289. "extension.neon"
  290. ]
  291. },
  292. "branch-alias": {
  293. "dev-main": "3.x-dev"
  294. }
  295. },
  296. "autoload": {
  297. "psr-4": {
  298. "Composer\\Pcre\\": "src"
  299. }
  300. },
  301. "notification-url": "https://packagist.org/downloads/",
  302. "license": [
  303. "MIT"
  304. ],
  305. "authors": [
  306. {
  307. "name": "Jordi Boggiano",
  308. "email": "j.boggiano@seld.be",
  309. "homepage": "http://seld.be"
  310. }
  311. ],
  312. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  313. "keywords": [
  314. "PCRE",
  315. "preg",
  316. "regex",
  317. "regular expression"
  318. ],
  319. "support": {
  320. "issues": "https://github.com/composer/pcre/issues",
  321. "source": "https://github.com/composer/pcre/tree/3.3.2"
  322. },
  323. "funding": [
  324. {
  325. "url": "https://packagist.com",
  326. "type": "custom"
  327. },
  328. {
  329. "url": "https://github.com/composer",
  330. "type": "github"
  331. },
  332. {
  333. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  334. "type": "tidelift"
  335. }
  336. ],
  337. "time": "2024-11-12T16:29:46+00:00"
  338. },
  339. {
  340. "name": "composer/semver",
  341. "version": "3.4.4",
  342. "source": {
  343. "type": "git",
  344. "url": "https://github.com/composer/semver.git",
  345. "reference": "198166618906cb2de69b95d7d47e5fa8aa1b2b95"
  346. },
  347. "dist": {
  348. "type": "zip",
  349. "url": "https://api.github.com/repos/composer/semver/zipball/198166618906cb2de69b95d7d47e5fa8aa1b2b95",
  350. "reference": "198166618906cb2de69b95d7d47e5fa8aa1b2b95",
  351. "shasum": ""
  352. },
  353. "require": {
  354. "php": "^5.3.2 || ^7.0 || ^8.0"
  355. },
  356. "require-dev": {
  357. "phpstan/phpstan": "^1.11",
  358. "symfony/phpunit-bridge": "^3 || ^7"
  359. },
  360. "type": "library",
  361. "extra": {
  362. "branch-alias": {
  363. "dev-main": "3.x-dev"
  364. }
  365. },
  366. "autoload": {
  367. "psr-4": {
  368. "Composer\\Semver\\": "src"
  369. }
  370. },
  371. "notification-url": "https://packagist.org/downloads/",
  372. "license": [
  373. "MIT"
  374. ],
  375. "authors": [
  376. {
  377. "name": "Nils Adermann",
  378. "email": "naderman@naderman.de",
  379. "homepage": "http://www.naderman.de"
  380. },
  381. {
  382. "name": "Jordi Boggiano",
  383. "email": "j.boggiano@seld.be",
  384. "homepage": "http://seld.be"
  385. },
  386. {
  387. "name": "Rob Bast",
  388. "email": "rob.bast@gmail.com",
  389. "homepage": "http://robbast.nl"
  390. }
  391. ],
  392. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  393. "keywords": [
  394. "semantic",
  395. "semver",
  396. "validation",
  397. "versioning"
  398. ],
  399. "support": {
  400. "irc": "ircs://irc.libera.chat:6697/composer",
  401. "issues": "https://github.com/composer/semver/issues",
  402. "source": "https://github.com/composer/semver/tree/3.4.4"
  403. },
  404. "funding": [
  405. {
  406. "url": "https://packagist.com",
  407. "type": "custom"
  408. },
  409. {
  410. "url": "https://github.com/composer",
  411. "type": "github"
  412. }
  413. ],
  414. "time": "2025-08-20T19:15:30+00:00"
  415. },
  416. {
  417. "name": "dflydev/dot-access-data",
  418. "version": "v3.0.3",
  419. "source": {
  420. "type": "git",
  421. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  422. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  423. },
  424. "dist": {
  425. "type": "zip",
  426. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  427. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  428. "shasum": ""
  429. },
  430. "require": {
  431. "php": "^7.1 || ^8.0"
  432. },
  433. "require-dev": {
  434. "phpstan/phpstan": "^0.12.42",
  435. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  436. "scrutinizer/ocular": "1.6.0",
  437. "squizlabs/php_codesniffer": "^3.5",
  438. "vimeo/psalm": "^4.0.0"
  439. },
  440. "type": "library",
  441. "extra": {
  442. "branch-alias": {
  443. "dev-main": "3.x-dev"
  444. }
  445. },
  446. "autoload": {
  447. "psr-4": {
  448. "Dflydev\\DotAccessData\\": "src/"
  449. }
  450. },
  451. "notification-url": "https://packagist.org/downloads/",
  452. "license": [
  453. "MIT"
  454. ],
  455. "authors": [
  456. {
  457. "name": "Dragonfly Development Inc.",
  458. "email": "info@dflydev.com",
  459. "homepage": "http://dflydev.com"
  460. },
  461. {
  462. "name": "Beau Simensen",
  463. "email": "beau@dflydev.com",
  464. "homepage": "http://beausimensen.com"
  465. },
  466. {
  467. "name": "Carlos Frutos",
  468. "email": "carlos@kiwing.it",
  469. "homepage": "https://github.com/cfrutos"
  470. },
  471. {
  472. "name": "Colin O'Dell",
  473. "email": "colinodell@gmail.com",
  474. "homepage": "https://www.colinodell.com"
  475. }
  476. ],
  477. "description": "Given a deep data structure, access data by dot notation.",
  478. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  479. "keywords": [
  480. "access",
  481. "data",
  482. "dot",
  483. "notation"
  484. ],
  485. "support": {
  486. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  487. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  488. },
  489. "time": "2024-07-08T12:26:09+00:00"
  490. },
  491. {
  492. "name": "doctrine/inflector",
  493. "version": "2.1.0",
  494. "source": {
  495. "type": "git",
  496. "url": "https://github.com/doctrine/inflector.git",
  497. "reference": "6d6c96277ea252fc1304627204c3d5e6e15faa3b"
  498. },
  499. "dist": {
  500. "type": "zip",
  501. "url": "https://api.github.com/repos/doctrine/inflector/zipball/6d6c96277ea252fc1304627204c3d5e6e15faa3b",
  502. "reference": "6d6c96277ea252fc1304627204c3d5e6e15faa3b",
  503. "shasum": ""
  504. },
  505. "require": {
  506. "php": "^7.2 || ^8.0"
  507. },
  508. "require-dev": {
  509. "doctrine/coding-standard": "^12.0 || ^13.0",
  510. "phpstan/phpstan": "^1.12 || ^2.0",
  511. "phpstan/phpstan-phpunit": "^1.4 || ^2.0",
  512. "phpstan/phpstan-strict-rules": "^1.6 || ^2.0",
  513. "phpunit/phpunit": "^8.5 || ^12.2"
  514. },
  515. "type": "library",
  516. "autoload": {
  517. "psr-4": {
  518. "Doctrine\\Inflector\\": "src"
  519. }
  520. },
  521. "notification-url": "https://packagist.org/downloads/",
  522. "license": [
  523. "MIT"
  524. ],
  525. "authors": [
  526. {
  527. "name": "Guilherme Blanco",
  528. "email": "guilhermeblanco@gmail.com"
  529. },
  530. {
  531. "name": "Roman Borschel",
  532. "email": "roman@code-factory.org"
  533. },
  534. {
  535. "name": "Benjamin Eberlei",
  536. "email": "kontakt@beberlei.de"
  537. },
  538. {
  539. "name": "Jonathan Wage",
  540. "email": "jonwage@gmail.com"
  541. },
  542. {
  543. "name": "Johannes Schmitt",
  544. "email": "schmittjoh@gmail.com"
  545. }
  546. ],
  547. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  548. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  549. "keywords": [
  550. "inflection",
  551. "inflector",
  552. "lowercase",
  553. "manipulation",
  554. "php",
  555. "plural",
  556. "singular",
  557. "strings",
  558. "uppercase",
  559. "words"
  560. ],
  561. "support": {
  562. "issues": "https://github.com/doctrine/inflector/issues",
  563. "source": "https://github.com/doctrine/inflector/tree/2.1.0"
  564. },
  565. "funding": [
  566. {
  567. "url": "https://www.doctrine-project.org/sponsorship.html",
  568. "type": "custom"
  569. },
  570. {
  571. "url": "https://www.patreon.com/phpdoctrine",
  572. "type": "patreon"
  573. },
  574. {
  575. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  576. "type": "tidelift"
  577. }
  578. ],
  579. "time": "2025-08-10T19:31:58+00:00"
  580. },
  581. {
  582. "name": "doctrine/lexer",
  583. "version": "3.0.1",
  584. "source": {
  585. "type": "git",
  586. "url": "https://github.com/doctrine/lexer.git",
  587. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  588. },
  589. "dist": {
  590. "type": "zip",
  591. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  592. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  593. "shasum": ""
  594. },
  595. "require": {
  596. "php": "^8.1"
  597. },
  598. "require-dev": {
  599. "doctrine/coding-standard": "^12",
  600. "phpstan/phpstan": "^1.10",
  601. "phpunit/phpunit": "^10.5",
  602. "psalm/plugin-phpunit": "^0.18.3",
  603. "vimeo/psalm": "^5.21"
  604. },
  605. "type": "library",
  606. "autoload": {
  607. "psr-4": {
  608. "Doctrine\\Common\\Lexer\\": "src"
  609. }
  610. },
  611. "notification-url": "https://packagist.org/downloads/",
  612. "license": [
  613. "MIT"
  614. ],
  615. "authors": [
  616. {
  617. "name": "Guilherme Blanco",
  618. "email": "guilhermeblanco@gmail.com"
  619. },
  620. {
  621. "name": "Roman Borschel",
  622. "email": "roman@code-factory.org"
  623. },
  624. {
  625. "name": "Johannes Schmitt",
  626. "email": "schmittjoh@gmail.com"
  627. }
  628. ],
  629. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  630. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  631. "keywords": [
  632. "annotations",
  633. "docblock",
  634. "lexer",
  635. "parser",
  636. "php"
  637. ],
  638. "support": {
  639. "issues": "https://github.com/doctrine/lexer/issues",
  640. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  641. },
  642. "funding": [
  643. {
  644. "url": "https://www.doctrine-project.org/sponsorship.html",
  645. "type": "custom"
  646. },
  647. {
  648. "url": "https://www.patreon.com/phpdoctrine",
  649. "type": "patreon"
  650. },
  651. {
  652. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  653. "type": "tidelift"
  654. }
  655. ],
  656. "time": "2024-02-05T11:56:58+00:00"
  657. },
  658. {
  659. "name": "dragon-code/contracts",
  660. "version": "2.24.0",
  661. "source": {
  662. "type": "git",
  663. "url": "https://github.com/TheDragonCode/contracts.git",
  664. "reference": "c21ea4fc0a399bd803a2805a7f2c989749083896"
  665. },
  666. "dist": {
  667. "type": "zip",
  668. "url": "https://api.github.com/repos/TheDragonCode/contracts/zipball/c21ea4fc0a399bd803a2805a7f2c989749083896",
  669. "reference": "c21ea4fc0a399bd803a2805a7f2c989749083896",
  670. "shasum": ""
  671. },
  672. "require": {
  673. "php": "^7.2.5 || ^8.0",
  674. "psr/http-message": "^1.0.1 || ^2.0",
  675. "symfony/http-kernel": "^4.0 || ^5.0 || ^6.0 || ^7.0",
  676. "symfony/polyfill-php80": "^1.23"
  677. },
  678. "conflict": {
  679. "andrey-helldar/contracts": "*"
  680. },
  681. "require-dev": {
  682. "illuminate/database": "^10.0 || ^11.0 || ^12.0",
  683. "phpdocumentor/reflection-docblock": "^5.0"
  684. },
  685. "type": "library",
  686. "autoload": {
  687. "psr-4": {
  688. "DragonCode\\Contracts\\": "src"
  689. }
  690. },
  691. "notification-url": "https://packagist.org/downloads/",
  692. "license": [
  693. "MIT"
  694. ],
  695. "authors": [
  696. {
  697. "name": "Andrey Helldar",
  698. "email": "helldar@dragon-code.pro",
  699. "homepage": "https://dragon-code.pro"
  700. }
  701. ],
  702. "description": "A set of contracts for any project",
  703. "keywords": [
  704. "contracts",
  705. "interfaces"
  706. ],
  707. "support": {
  708. "source": "https://github.com/TheDragonCode/contracts"
  709. },
  710. "funding": [
  711. {
  712. "url": "https://boosty.to/dragon-code",
  713. "type": "boosty"
  714. },
  715. {
  716. "url": "https://yoomoney.ru/to/410012608840929",
  717. "type": "yoomoney"
  718. }
  719. ],
  720. "time": "2025-02-23T23:11:50+00:00"
  721. },
  722. {
  723. "name": "dragon-code/pretty-array",
  724. "version": "4.2.0",
  725. "source": {
  726. "type": "git",
  727. "url": "https://github.com/TheDragonCode/pretty-array.git",
  728. "reference": "b94034d92172a5d14a578822d68b2a8f8b5388e0"
  729. },
  730. "dist": {
  731. "type": "zip",
  732. "url": "https://api.github.com/repos/TheDragonCode/pretty-array/zipball/b94034d92172a5d14a578822d68b2a8f8b5388e0",
  733. "reference": "b94034d92172a5d14a578822d68b2a8f8b5388e0",
  734. "shasum": ""
  735. },
  736. "require": {
  737. "dragon-code/contracts": "^2.20",
  738. "dragon-code/support": "^6.11.2",
  739. "ext-dom": "*",
  740. "ext-mbstring": "*",
  741. "php": "^8.0"
  742. },
  743. "require-dev": {
  744. "phpunit/phpunit": "^9.6 || ^10.0 || ^11.0 || ^12.0"
  745. },
  746. "suggest": {
  747. "symfony/thanks": "Give thanks (in the form of a GitHub) to your fellow PHP package maintainers"
  748. },
  749. "type": "library",
  750. "autoload": {
  751. "psr-4": {
  752. "DragonCode\\PrettyArray\\": "src"
  753. }
  754. },
  755. "notification-url": "https://packagist.org/downloads/",
  756. "license": [
  757. "MIT"
  758. ],
  759. "authors": [
  760. {
  761. "name": "Andrey Helldar",
  762. "email": "helldar@dragon-code.pro",
  763. "homepage": "https://dragon-code.pro"
  764. }
  765. ],
  766. "description": "Simple conversion of an array to a pretty view",
  767. "keywords": [
  768. "andrey helldar",
  769. "array",
  770. "dragon",
  771. "dragon code",
  772. "pretty",
  773. "pretty array"
  774. ],
  775. "support": {
  776. "issues": "https://github.com/TheDragonCode/pretty-array/issues",
  777. "source": "https://github.com/TheDragonCode/pretty-array"
  778. },
  779. "funding": [
  780. {
  781. "url": "https://boosty.to/dragon-code",
  782. "type": "boosty"
  783. },
  784. {
  785. "url": "https://yoomoney.ru/to/410012608840929",
  786. "type": "yoomoney"
  787. }
  788. ],
  789. "time": "2025-02-24T15:35:24+00:00"
  790. },
  791. {
  792. "name": "dragon-code/support",
  793. "version": "6.16.0",
  794. "source": {
  795. "type": "git",
  796. "url": "https://github.com/TheDragonCode/support.git",
  797. "reference": "ab9b657a307e75f6ba5b2b39e1e45207dc1a065a"
  798. },
  799. "dist": {
  800. "type": "zip",
  801. "url": "https://api.github.com/repos/TheDragonCode/support/zipball/ab9b657a307e75f6ba5b2b39e1e45207dc1a065a",
  802. "reference": "ab9b657a307e75f6ba5b2b39e1e45207dc1a065a",
  803. "shasum": ""
  804. },
  805. "require": {
  806. "dragon-code/contracts": "^2.22.0",
  807. "ext-bcmath": "*",
  808. "ext-ctype": "*",
  809. "ext-dom": "*",
  810. "ext-json": "*",
  811. "ext-mbstring": "*",
  812. "php": "^8.1",
  813. "psr/http-message": "^1.0.1 || ^2.0",
  814. "symfony/polyfill-php81": "^1.25",
  815. "voku/portable-ascii": "^1.4.8 || ^2.0.1"
  816. },
  817. "conflict": {
  818. "andrey-helldar/support": "*"
  819. },
  820. "require-dev": {
  821. "illuminate/contracts": "^9.0 || ^10.0 || ^11.0 || ^12.0",
  822. "phpunit/phpunit": "^9.6 || ^11.0 || ^12.0",
  823. "symfony/var-dumper": "^6.0 || ^7.0"
  824. },
  825. "suggest": {
  826. "dragon-code/laravel-support": "Various helper files for the Laravel and Lumen frameworks",
  827. "symfony/thanks": "Give thanks (in the form of a GitHub) to your fellow PHP package maintainers"
  828. },
  829. "type": "library",
  830. "extra": {
  831. "dragon-code": {
  832. "docs-generator": {
  833. "preview": {
  834. "brand": "php",
  835. "vendor": "The Dragon Code"
  836. }
  837. }
  838. }
  839. },
  840. "autoload": {
  841. "psr-4": {
  842. "DragonCode\\Support\\": "src"
  843. }
  844. },
  845. "notification-url": "https://packagist.org/downloads/",
  846. "license": [
  847. "MIT"
  848. ],
  849. "authors": [
  850. {
  851. "name": "Andrey Helldar",
  852. "email": "helldar@dragon-code.pro",
  853. "homepage": "https://dragon-code.pro"
  854. }
  855. ],
  856. "description": "Support package is a collection of helpers and tools for any project.",
  857. "keywords": [
  858. "dragon",
  859. "dragon-code",
  860. "framework",
  861. "helper",
  862. "helpers",
  863. "laravel",
  864. "php",
  865. "support",
  866. "symfony",
  867. "yii",
  868. "yii2"
  869. ],
  870. "support": {
  871. "issues": "https://github.com/TheDragonCode/support/issues",
  872. "source": "https://github.com/TheDragonCode/support"
  873. },
  874. "funding": [
  875. {
  876. "url": "https://boosty.to/dragon-code",
  877. "type": "boosty"
  878. },
  879. {
  880. "url": "https://yoomoney.ru/to/410012608840929",
  881. "type": "yoomoney"
  882. }
  883. ],
  884. "time": "2025-02-24T14:01:52+00:00"
  885. },
  886. {
  887. "name": "dragonmantank/cron-expression",
  888. "version": "v3.4.0",
  889. "source": {
  890. "type": "git",
  891. "url": "https://github.com/dragonmantank/cron-expression.git",
  892. "reference": "8c784d071debd117328803d86b2097615b457500"
  893. },
  894. "dist": {
  895. "type": "zip",
  896. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/8c784d071debd117328803d86b2097615b457500",
  897. "reference": "8c784d071debd117328803d86b2097615b457500",
  898. "shasum": ""
  899. },
  900. "require": {
  901. "php": "^7.2|^8.0",
  902. "webmozart/assert": "^1.0"
  903. },
  904. "replace": {
  905. "mtdowling/cron-expression": "^1.0"
  906. },
  907. "require-dev": {
  908. "phpstan/extension-installer": "^1.0",
  909. "phpstan/phpstan": "^1.0",
  910. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  911. },
  912. "type": "library",
  913. "extra": {
  914. "branch-alias": {
  915. "dev-master": "3.x-dev"
  916. }
  917. },
  918. "autoload": {
  919. "psr-4": {
  920. "Cron\\": "src/Cron/"
  921. }
  922. },
  923. "notification-url": "https://packagist.org/downloads/",
  924. "license": [
  925. "MIT"
  926. ],
  927. "authors": [
  928. {
  929. "name": "Chris Tankersley",
  930. "email": "chris@ctankersley.com",
  931. "homepage": "https://github.com/dragonmantank"
  932. }
  933. ],
  934. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  935. "keywords": [
  936. "cron",
  937. "schedule"
  938. ],
  939. "support": {
  940. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  941. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.4.0"
  942. },
  943. "funding": [
  944. {
  945. "url": "https://github.com/dragonmantank",
  946. "type": "github"
  947. }
  948. ],
  949. "time": "2024-10-09T13:47:03+00:00"
  950. },
  951. {
  952. "name": "egulias/email-validator",
  953. "version": "4.0.4",
  954. "source": {
  955. "type": "git",
  956. "url": "https://github.com/egulias/EmailValidator.git",
  957. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa"
  958. },
  959. "dist": {
  960. "type": "zip",
  961. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  962. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  963. "shasum": ""
  964. },
  965. "require": {
  966. "doctrine/lexer": "^2.0 || ^3.0",
  967. "php": ">=8.1",
  968. "symfony/polyfill-intl-idn": "^1.26"
  969. },
  970. "require-dev": {
  971. "phpunit/phpunit": "^10.2",
  972. "vimeo/psalm": "^5.12"
  973. },
  974. "suggest": {
  975. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  976. },
  977. "type": "library",
  978. "extra": {
  979. "branch-alias": {
  980. "dev-master": "4.0.x-dev"
  981. }
  982. },
  983. "autoload": {
  984. "psr-4": {
  985. "Egulias\\EmailValidator\\": "src"
  986. }
  987. },
  988. "notification-url": "https://packagist.org/downloads/",
  989. "license": [
  990. "MIT"
  991. ],
  992. "authors": [
  993. {
  994. "name": "Eduardo Gulias Davis"
  995. }
  996. ],
  997. "description": "A library for validating emails against several RFCs",
  998. "homepage": "https://github.com/egulias/EmailValidator",
  999. "keywords": [
  1000. "email",
  1001. "emailvalidation",
  1002. "emailvalidator",
  1003. "validation",
  1004. "validator"
  1005. ],
  1006. "support": {
  1007. "issues": "https://github.com/egulias/EmailValidator/issues",
  1008. "source": "https://github.com/egulias/EmailValidator/tree/4.0.4"
  1009. },
  1010. "funding": [
  1011. {
  1012. "url": "https://github.com/egulias",
  1013. "type": "github"
  1014. }
  1015. ],
  1016. "time": "2025-03-06T22:45:56+00:00"
  1017. },
  1018. {
  1019. "name": "fruitcake/php-cors",
  1020. "version": "v1.3.0",
  1021. "source": {
  1022. "type": "git",
  1023. "url": "https://github.com/fruitcake/php-cors.git",
  1024. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b"
  1025. },
  1026. "dist": {
  1027. "type": "zip",
  1028. "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/3d158f36e7875e2f040f37bc0573956240a5a38b",
  1029. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b",
  1030. "shasum": ""
  1031. },
  1032. "require": {
  1033. "php": "^7.4|^8.0",
  1034. "symfony/http-foundation": "^4.4|^5.4|^6|^7"
  1035. },
  1036. "require-dev": {
  1037. "phpstan/phpstan": "^1.4",
  1038. "phpunit/phpunit": "^9",
  1039. "squizlabs/php_codesniffer": "^3.5"
  1040. },
  1041. "type": "library",
  1042. "extra": {
  1043. "branch-alias": {
  1044. "dev-master": "1.2-dev"
  1045. }
  1046. },
  1047. "autoload": {
  1048. "psr-4": {
  1049. "Fruitcake\\Cors\\": "src/"
  1050. }
  1051. },
  1052. "notification-url": "https://packagist.org/downloads/",
  1053. "license": [
  1054. "MIT"
  1055. ],
  1056. "authors": [
  1057. {
  1058. "name": "Fruitcake",
  1059. "homepage": "https://fruitcake.nl"
  1060. },
  1061. {
  1062. "name": "Barryvdh",
  1063. "email": "barryvdh@gmail.com"
  1064. }
  1065. ],
  1066. "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
  1067. "homepage": "https://github.com/fruitcake/php-cors",
  1068. "keywords": [
  1069. "cors",
  1070. "laravel",
  1071. "symfony"
  1072. ],
  1073. "support": {
  1074. "issues": "https://github.com/fruitcake/php-cors/issues",
  1075. "source": "https://github.com/fruitcake/php-cors/tree/v1.3.0"
  1076. },
  1077. "funding": [
  1078. {
  1079. "url": "https://fruitcake.nl",
  1080. "type": "custom"
  1081. },
  1082. {
  1083. "url": "https://github.com/barryvdh",
  1084. "type": "github"
  1085. }
  1086. ],
  1087. "time": "2023-10-12T05:21:21+00:00"
  1088. },
  1089. {
  1090. "name": "graham-campbell/result-type",
  1091. "version": "v1.1.3",
  1092. "source": {
  1093. "type": "git",
  1094. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  1095. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945"
  1096. },
  1097. "dist": {
  1098. "type": "zip",
  1099. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945",
  1100. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945",
  1101. "shasum": ""
  1102. },
  1103. "require": {
  1104. "php": "^7.2.5 || ^8.0",
  1105. "phpoption/phpoption": "^1.9.3"
  1106. },
  1107. "require-dev": {
  1108. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  1109. },
  1110. "type": "library",
  1111. "autoload": {
  1112. "psr-4": {
  1113. "GrahamCampbell\\ResultType\\": "src/"
  1114. }
  1115. },
  1116. "notification-url": "https://packagist.org/downloads/",
  1117. "license": [
  1118. "MIT"
  1119. ],
  1120. "authors": [
  1121. {
  1122. "name": "Graham Campbell",
  1123. "email": "hello@gjcampbell.co.uk",
  1124. "homepage": "https://github.com/GrahamCampbell"
  1125. }
  1126. ],
  1127. "description": "An Implementation Of The Result Type",
  1128. "keywords": [
  1129. "Graham Campbell",
  1130. "GrahamCampbell",
  1131. "Result Type",
  1132. "Result-Type",
  1133. "result"
  1134. ],
  1135. "support": {
  1136. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  1137. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3"
  1138. },
  1139. "funding": [
  1140. {
  1141. "url": "https://github.com/GrahamCampbell",
  1142. "type": "github"
  1143. },
  1144. {
  1145. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  1146. "type": "tidelift"
  1147. }
  1148. ],
  1149. "time": "2024-07-20T21:45:45+00:00"
  1150. },
  1151. {
  1152. "name": "guzzlehttp/guzzle",
  1153. "version": "7.10.0",
  1154. "source": {
  1155. "type": "git",
  1156. "url": "https://github.com/guzzle/guzzle.git",
  1157. "reference": "b51ac707cfa420b7bfd4e4d5e510ba8008e822b4"
  1158. },
  1159. "dist": {
  1160. "type": "zip",
  1161. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/b51ac707cfa420b7bfd4e4d5e510ba8008e822b4",
  1162. "reference": "b51ac707cfa420b7bfd4e4d5e510ba8008e822b4",
  1163. "shasum": ""
  1164. },
  1165. "require": {
  1166. "ext-json": "*",
  1167. "guzzlehttp/promises": "^2.3",
  1168. "guzzlehttp/psr7": "^2.8",
  1169. "php": "^7.2.5 || ^8.0",
  1170. "psr/http-client": "^1.0",
  1171. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1172. },
  1173. "provide": {
  1174. "psr/http-client-implementation": "1.0"
  1175. },
  1176. "require-dev": {
  1177. "bamarni/composer-bin-plugin": "^1.8.2",
  1178. "ext-curl": "*",
  1179. "guzzle/client-integration-tests": "3.0.2",
  1180. "php-http/message-factory": "^1.1",
  1181. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  1182. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1183. },
  1184. "suggest": {
  1185. "ext-curl": "Required for CURL handler support",
  1186. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1187. "psr/log": "Required for using the Log middleware"
  1188. },
  1189. "type": "library",
  1190. "extra": {
  1191. "bamarni-bin": {
  1192. "bin-links": true,
  1193. "forward-command": false
  1194. }
  1195. },
  1196. "autoload": {
  1197. "files": [
  1198. "src/functions_include.php"
  1199. ],
  1200. "psr-4": {
  1201. "GuzzleHttp\\": "src/"
  1202. }
  1203. },
  1204. "notification-url": "https://packagist.org/downloads/",
  1205. "license": [
  1206. "MIT"
  1207. ],
  1208. "authors": [
  1209. {
  1210. "name": "Graham Campbell",
  1211. "email": "hello@gjcampbell.co.uk",
  1212. "homepage": "https://github.com/GrahamCampbell"
  1213. },
  1214. {
  1215. "name": "Michael Dowling",
  1216. "email": "mtdowling@gmail.com",
  1217. "homepage": "https://github.com/mtdowling"
  1218. },
  1219. {
  1220. "name": "Jeremy Lindblom",
  1221. "email": "jeremeamia@gmail.com",
  1222. "homepage": "https://github.com/jeremeamia"
  1223. },
  1224. {
  1225. "name": "George Mponos",
  1226. "email": "gmponos@gmail.com",
  1227. "homepage": "https://github.com/gmponos"
  1228. },
  1229. {
  1230. "name": "Tobias Nyholm",
  1231. "email": "tobias.nyholm@gmail.com",
  1232. "homepage": "https://github.com/Nyholm"
  1233. },
  1234. {
  1235. "name": "Márk Sági-Kazár",
  1236. "email": "mark.sagikazar@gmail.com",
  1237. "homepage": "https://github.com/sagikazarmark"
  1238. },
  1239. {
  1240. "name": "Tobias Schultze",
  1241. "email": "webmaster@tubo-world.de",
  1242. "homepage": "https://github.com/Tobion"
  1243. }
  1244. ],
  1245. "description": "Guzzle is a PHP HTTP client library",
  1246. "keywords": [
  1247. "client",
  1248. "curl",
  1249. "framework",
  1250. "http",
  1251. "http client",
  1252. "psr-18",
  1253. "psr-7",
  1254. "rest",
  1255. "web service"
  1256. ],
  1257. "support": {
  1258. "issues": "https://github.com/guzzle/guzzle/issues",
  1259. "source": "https://github.com/guzzle/guzzle/tree/7.10.0"
  1260. },
  1261. "funding": [
  1262. {
  1263. "url": "https://github.com/GrahamCampbell",
  1264. "type": "github"
  1265. },
  1266. {
  1267. "url": "https://github.com/Nyholm",
  1268. "type": "github"
  1269. },
  1270. {
  1271. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1272. "type": "tidelift"
  1273. }
  1274. ],
  1275. "time": "2025-08-23T22:36:01+00:00"
  1276. },
  1277. {
  1278. "name": "guzzlehttp/promises",
  1279. "version": "2.3.0",
  1280. "source": {
  1281. "type": "git",
  1282. "url": "https://github.com/guzzle/promises.git",
  1283. "reference": "481557b130ef3790cf82b713667b43030dc9c957"
  1284. },
  1285. "dist": {
  1286. "type": "zip",
  1287. "url": "https://api.github.com/repos/guzzle/promises/zipball/481557b130ef3790cf82b713667b43030dc9c957",
  1288. "reference": "481557b130ef3790cf82b713667b43030dc9c957",
  1289. "shasum": ""
  1290. },
  1291. "require": {
  1292. "php": "^7.2.5 || ^8.0"
  1293. },
  1294. "require-dev": {
  1295. "bamarni/composer-bin-plugin": "^1.8.2",
  1296. "phpunit/phpunit": "^8.5.44 || ^9.6.25"
  1297. },
  1298. "type": "library",
  1299. "extra": {
  1300. "bamarni-bin": {
  1301. "bin-links": true,
  1302. "forward-command": false
  1303. }
  1304. },
  1305. "autoload": {
  1306. "psr-4": {
  1307. "GuzzleHttp\\Promise\\": "src/"
  1308. }
  1309. },
  1310. "notification-url": "https://packagist.org/downloads/",
  1311. "license": [
  1312. "MIT"
  1313. ],
  1314. "authors": [
  1315. {
  1316. "name": "Graham Campbell",
  1317. "email": "hello@gjcampbell.co.uk",
  1318. "homepage": "https://github.com/GrahamCampbell"
  1319. },
  1320. {
  1321. "name": "Michael Dowling",
  1322. "email": "mtdowling@gmail.com",
  1323. "homepage": "https://github.com/mtdowling"
  1324. },
  1325. {
  1326. "name": "Tobias Nyholm",
  1327. "email": "tobias.nyholm@gmail.com",
  1328. "homepage": "https://github.com/Nyholm"
  1329. },
  1330. {
  1331. "name": "Tobias Schultze",
  1332. "email": "webmaster@tubo-world.de",
  1333. "homepage": "https://github.com/Tobion"
  1334. }
  1335. ],
  1336. "description": "Guzzle promises library",
  1337. "keywords": [
  1338. "promise"
  1339. ],
  1340. "support": {
  1341. "issues": "https://github.com/guzzle/promises/issues",
  1342. "source": "https://github.com/guzzle/promises/tree/2.3.0"
  1343. },
  1344. "funding": [
  1345. {
  1346. "url": "https://github.com/GrahamCampbell",
  1347. "type": "github"
  1348. },
  1349. {
  1350. "url": "https://github.com/Nyholm",
  1351. "type": "github"
  1352. },
  1353. {
  1354. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1355. "type": "tidelift"
  1356. }
  1357. ],
  1358. "time": "2025-08-22T14:34:08+00:00"
  1359. },
  1360. {
  1361. "name": "guzzlehttp/psr7",
  1362. "version": "2.8.0",
  1363. "source": {
  1364. "type": "git",
  1365. "url": "https://github.com/guzzle/psr7.git",
  1366. "reference": "21dc724a0583619cd1652f673303492272778051"
  1367. },
  1368. "dist": {
  1369. "type": "zip",
  1370. "url": "https://api.github.com/repos/guzzle/psr7/zipball/21dc724a0583619cd1652f673303492272778051",
  1371. "reference": "21dc724a0583619cd1652f673303492272778051",
  1372. "shasum": ""
  1373. },
  1374. "require": {
  1375. "php": "^7.2.5 || ^8.0",
  1376. "psr/http-factory": "^1.0",
  1377. "psr/http-message": "^1.1 || ^2.0",
  1378. "ralouphie/getallheaders": "^3.0"
  1379. },
  1380. "provide": {
  1381. "psr/http-factory-implementation": "1.0",
  1382. "psr/http-message-implementation": "1.0"
  1383. },
  1384. "require-dev": {
  1385. "bamarni/composer-bin-plugin": "^1.8.2",
  1386. "http-interop/http-factory-tests": "0.9.0",
  1387. "phpunit/phpunit": "^8.5.44 || ^9.6.25"
  1388. },
  1389. "suggest": {
  1390. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1391. },
  1392. "type": "library",
  1393. "extra": {
  1394. "bamarni-bin": {
  1395. "bin-links": true,
  1396. "forward-command": false
  1397. }
  1398. },
  1399. "autoload": {
  1400. "psr-4": {
  1401. "GuzzleHttp\\Psr7\\": "src/"
  1402. }
  1403. },
  1404. "notification-url": "https://packagist.org/downloads/",
  1405. "license": [
  1406. "MIT"
  1407. ],
  1408. "authors": [
  1409. {
  1410. "name": "Graham Campbell",
  1411. "email": "hello@gjcampbell.co.uk",
  1412. "homepage": "https://github.com/GrahamCampbell"
  1413. },
  1414. {
  1415. "name": "Michael Dowling",
  1416. "email": "mtdowling@gmail.com",
  1417. "homepage": "https://github.com/mtdowling"
  1418. },
  1419. {
  1420. "name": "George Mponos",
  1421. "email": "gmponos@gmail.com",
  1422. "homepage": "https://github.com/gmponos"
  1423. },
  1424. {
  1425. "name": "Tobias Nyholm",
  1426. "email": "tobias.nyholm@gmail.com",
  1427. "homepage": "https://github.com/Nyholm"
  1428. },
  1429. {
  1430. "name": "Márk Sági-Kazár",
  1431. "email": "mark.sagikazar@gmail.com",
  1432. "homepage": "https://github.com/sagikazarmark"
  1433. },
  1434. {
  1435. "name": "Tobias Schultze",
  1436. "email": "webmaster@tubo-world.de",
  1437. "homepage": "https://github.com/Tobion"
  1438. },
  1439. {
  1440. "name": "Márk Sági-Kazár",
  1441. "email": "mark.sagikazar@gmail.com",
  1442. "homepage": "https://sagikazarmark.hu"
  1443. }
  1444. ],
  1445. "description": "PSR-7 message implementation that also provides common utility methods",
  1446. "keywords": [
  1447. "http",
  1448. "message",
  1449. "psr-7",
  1450. "request",
  1451. "response",
  1452. "stream",
  1453. "uri",
  1454. "url"
  1455. ],
  1456. "support": {
  1457. "issues": "https://github.com/guzzle/psr7/issues",
  1458. "source": "https://github.com/guzzle/psr7/tree/2.8.0"
  1459. },
  1460. "funding": [
  1461. {
  1462. "url": "https://github.com/GrahamCampbell",
  1463. "type": "github"
  1464. },
  1465. {
  1466. "url": "https://github.com/Nyholm",
  1467. "type": "github"
  1468. },
  1469. {
  1470. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1471. "type": "tidelift"
  1472. }
  1473. ],
  1474. "time": "2025-08-23T21:21:41+00:00"
  1475. },
  1476. {
  1477. "name": "guzzlehttp/uri-template",
  1478. "version": "v1.0.5",
  1479. "source": {
  1480. "type": "git",
  1481. "url": "https://github.com/guzzle/uri-template.git",
  1482. "reference": "4f4bbd4e7172148801e76e3decc1e559bdee34e1"
  1483. },
  1484. "dist": {
  1485. "type": "zip",
  1486. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/4f4bbd4e7172148801e76e3decc1e559bdee34e1",
  1487. "reference": "4f4bbd4e7172148801e76e3decc1e559bdee34e1",
  1488. "shasum": ""
  1489. },
  1490. "require": {
  1491. "php": "^7.2.5 || ^8.0",
  1492. "symfony/polyfill-php80": "^1.24"
  1493. },
  1494. "require-dev": {
  1495. "bamarni/composer-bin-plugin": "^1.8.2",
  1496. "phpunit/phpunit": "^8.5.44 || ^9.6.25",
  1497. "uri-template/tests": "1.0.0"
  1498. },
  1499. "type": "library",
  1500. "extra": {
  1501. "bamarni-bin": {
  1502. "bin-links": true,
  1503. "forward-command": false
  1504. }
  1505. },
  1506. "autoload": {
  1507. "psr-4": {
  1508. "GuzzleHttp\\UriTemplate\\": "src"
  1509. }
  1510. },
  1511. "notification-url": "https://packagist.org/downloads/",
  1512. "license": [
  1513. "MIT"
  1514. ],
  1515. "authors": [
  1516. {
  1517. "name": "Graham Campbell",
  1518. "email": "hello@gjcampbell.co.uk",
  1519. "homepage": "https://github.com/GrahamCampbell"
  1520. },
  1521. {
  1522. "name": "Michael Dowling",
  1523. "email": "mtdowling@gmail.com",
  1524. "homepage": "https://github.com/mtdowling"
  1525. },
  1526. {
  1527. "name": "George Mponos",
  1528. "email": "gmponos@gmail.com",
  1529. "homepage": "https://github.com/gmponos"
  1530. },
  1531. {
  1532. "name": "Tobias Nyholm",
  1533. "email": "tobias.nyholm@gmail.com",
  1534. "homepage": "https://github.com/Nyholm"
  1535. }
  1536. ],
  1537. "description": "A polyfill class for uri_template of PHP",
  1538. "keywords": [
  1539. "guzzlehttp",
  1540. "uri-template"
  1541. ],
  1542. "support": {
  1543. "issues": "https://github.com/guzzle/uri-template/issues",
  1544. "source": "https://github.com/guzzle/uri-template/tree/v1.0.5"
  1545. },
  1546. "funding": [
  1547. {
  1548. "url": "https://github.com/GrahamCampbell",
  1549. "type": "github"
  1550. },
  1551. {
  1552. "url": "https://github.com/Nyholm",
  1553. "type": "github"
  1554. },
  1555. {
  1556. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  1557. "type": "tidelift"
  1558. }
  1559. ],
  1560. "time": "2025-08-22T14:27:06+00:00"
  1561. },
  1562. {
  1563. "name": "inertiajs/inertia-laravel",
  1564. "version": "v2.0.6",
  1565. "source": {
  1566. "type": "git",
  1567. "url": "https://github.com/inertiajs/inertia-laravel.git",
  1568. "reference": "6d0afc3237c370036de4a703927b17a4e7b83298"
  1569. },
  1570. "dist": {
  1571. "type": "zip",
  1572. "url": "https://api.github.com/repos/inertiajs/inertia-laravel/zipball/6d0afc3237c370036de4a703927b17a4e7b83298",
  1573. "reference": "6d0afc3237c370036de4a703927b17a4e7b83298",
  1574. "shasum": ""
  1575. },
  1576. "require": {
  1577. "ext-json": "*",
  1578. "laravel/framework": "^10.0|^11.0|^12.0",
  1579. "php": "^8.1.0",
  1580. "symfony/console": "^6.2|^7.0"
  1581. },
  1582. "require-dev": {
  1583. "guzzlehttp/guzzle": "^7.2",
  1584. "larastan/larastan": "^3.0",
  1585. "laravel/pint": "^1.16",
  1586. "mockery/mockery": "^1.3.3",
  1587. "orchestra/testbench": "^8.0|^9.2|^10.0",
  1588. "phpunit/phpunit": "^10.4|^11.5",
  1589. "roave/security-advisories": "dev-master"
  1590. },
  1591. "suggest": {
  1592. "ext-pcntl": "Recommended when running the Inertia SSR server via the `inertia:start-ssr` artisan command."
  1593. },
  1594. "type": "library",
  1595. "extra": {
  1596. "laravel": {
  1597. "providers": [
  1598. "Inertia\\ServiceProvider"
  1599. ]
  1600. }
  1601. },
  1602. "autoload": {
  1603. "files": [
  1604. "./helpers.php"
  1605. ],
  1606. "psr-4": {
  1607. "Inertia\\": "src"
  1608. }
  1609. },
  1610. "notification-url": "https://packagist.org/downloads/",
  1611. "license": [
  1612. "MIT"
  1613. ],
  1614. "authors": [
  1615. {
  1616. "name": "Jonathan Reinink",
  1617. "email": "jonathan@reinink.ca",
  1618. "homepage": "https://reinink.ca"
  1619. }
  1620. ],
  1621. "description": "The Laravel adapter for Inertia.js.",
  1622. "keywords": [
  1623. "inertia",
  1624. "laravel"
  1625. ],
  1626. "support": {
  1627. "issues": "https://github.com/inertiajs/inertia-laravel/issues",
  1628. "source": "https://github.com/inertiajs/inertia-laravel/tree/v2.0.6"
  1629. },
  1630. "time": "2025-08-26T06:17:48+00:00"
  1631. },
  1632. {
  1633. "name": "laravel-lang/actions",
  1634. "version": "1.10.2",
  1635. "source": {
  1636. "type": "git",
  1637. "url": "https://github.com/Laravel-Lang/actions.git",
  1638. "reference": "2fd80501e849b84a795f3325d61a44b543fe8d41"
  1639. },
  1640. "dist": {
  1641. "type": "zip",
  1642. "url": "https://api.github.com/repos/Laravel-Lang/actions/zipball/2fd80501e849b84a795f3325d61a44b543fe8d41",
  1643. "reference": "2fd80501e849b84a795f3325d61a44b543fe8d41",
  1644. "shasum": ""
  1645. },
  1646. "require": {
  1647. "ext-json": "*",
  1648. "laravel-lang/publisher": "^14.0 || ^15.0 || ^16.0",
  1649. "php": "^8.1"
  1650. },
  1651. "require-dev": {
  1652. "laravel-lang/status-generator": "^2.3.1",
  1653. "phpunit/phpunit": "^10.0 || ^11.0 || ^12.0",
  1654. "symfony/var-dumper": "^6.3 || ^7.0"
  1655. },
  1656. "type": "library",
  1657. "extra": {
  1658. "laravel": {
  1659. "providers": [
  1660. "LaravelLang\\Actions\\ServiceProvider"
  1661. ]
  1662. }
  1663. },
  1664. "autoload": {
  1665. "psr-4": {
  1666. "LaravelLang\\Actions\\": "src/"
  1667. }
  1668. },
  1669. "notification-url": "https://packagist.org/downloads/",
  1670. "license": [
  1671. "MIT"
  1672. ],
  1673. "authors": [
  1674. {
  1675. "name": "Andrey Helldar",
  1676. "email": "helldar@dragon-code.pro",
  1677. "homepage": "https://dragon-code.pro"
  1678. },
  1679. {
  1680. "name": "Laravel Lang Team",
  1681. "homepage": "https://laravel-lang.com"
  1682. }
  1683. ],
  1684. "description": "Translation of buttons and other action elements",
  1685. "keywords": [
  1686. "actions",
  1687. "buttons",
  1688. "lang",
  1689. "languages",
  1690. "laravel",
  1691. "translations"
  1692. ],
  1693. "support": {
  1694. "issues": "https://github.com/Laravel-Lang/actions/issues",
  1695. "source": "https://github.com/Laravel-Lang/actions/tree/1.10.2"
  1696. },
  1697. "time": "2025-06-23T09:39:11+00:00"
  1698. },
  1699. {
  1700. "name": "laravel-lang/attributes",
  1701. "version": "2.13.5",
  1702. "source": {
  1703. "type": "git",
  1704. "url": "https://github.com/Laravel-Lang/attributes.git",
  1705. "reference": "0f7a0c195cbd4eb000b14dc3fd233dacd23a10f7"
  1706. },
  1707. "dist": {
  1708. "type": "zip",
  1709. "url": "https://api.github.com/repos/Laravel-Lang/attributes/zipball/0f7a0c195cbd4eb000b14dc3fd233dacd23a10f7",
  1710. "reference": "0f7a0c195cbd4eb000b14dc3fd233dacd23a10f7",
  1711. "shasum": ""
  1712. },
  1713. "require": {
  1714. "ext-json": "*",
  1715. "laravel-lang/publisher": "^14.0 || ^15.0 || ^16.0",
  1716. "php": "^8.1"
  1717. },
  1718. "require-dev": {
  1719. "laravel-lang/status-generator": "^1.19 || ^2.0",
  1720. "phpunit/phpunit": "^10.0 || ^11.0 || ^12.0",
  1721. "symfony/var-dumper": "^6.0 || ^7.0"
  1722. },
  1723. "type": "library",
  1724. "extra": {
  1725. "laravel": {
  1726. "providers": [
  1727. "LaravelLang\\Attributes\\ServiceProvider"
  1728. ]
  1729. }
  1730. },
  1731. "autoload": {
  1732. "psr-4": {
  1733. "LaravelLang\\Attributes\\": "src/"
  1734. }
  1735. },
  1736. "notification-url": "https://packagist.org/downloads/",
  1737. "license": [
  1738. "MIT"
  1739. ],
  1740. "authors": [
  1741. {
  1742. "name": "Andrey Helldar",
  1743. "email": "helldar@dragon-code.pro"
  1744. },
  1745. {
  1746. "name": "Laravel-Lang Team",
  1747. "homepage": "https://github.com/Laravel-Lang"
  1748. }
  1749. ],
  1750. "description": "List of 126 languages for form field names",
  1751. "keywords": [
  1752. "attributes",
  1753. "fields",
  1754. "form",
  1755. "lang",
  1756. "languages",
  1757. "laravel",
  1758. "messages",
  1759. "translations",
  1760. "validation"
  1761. ],
  1762. "support": {
  1763. "issues": "https://github.com/Laravel-Lang/attributes/issues",
  1764. "source": "https://github.com/Laravel-Lang/attributes/tree/2.13.5"
  1765. },
  1766. "time": "2025-06-23T09:39:20+00:00"
  1767. },
  1768. {
  1769. "name": "laravel-lang/common",
  1770. "version": "6.7.1",
  1771. "source": {
  1772. "type": "git",
  1773. "url": "https://github.com/Laravel-Lang/common.git",
  1774. "reference": "8deaf311213d696cbd3cc41ac23705af39a187ff"
  1775. },
  1776. "dist": {
  1777. "type": "zip",
  1778. "url": "https://api.github.com/repos/Laravel-Lang/common/zipball/8deaf311213d696cbd3cc41ac23705af39a187ff",
  1779. "reference": "8deaf311213d696cbd3cc41ac23705af39a187ff",
  1780. "shasum": ""
  1781. },
  1782. "require": {
  1783. "laravel-lang/actions": "^1.9",
  1784. "laravel-lang/attributes": "^2.12",
  1785. "laravel-lang/http-statuses": "^3.8",
  1786. "laravel-lang/json-fallback": "^2.2",
  1787. "laravel-lang/lang": "^13.12 || ^14.0 || ^15.5.1",
  1788. "laravel-lang/locales": "^2.10",
  1789. "laravel-lang/models": "^1.3",
  1790. "laravel-lang/moonshine": "^1.2",
  1791. "laravel-lang/publisher": "^16.5",
  1792. "laravel-lang/routes": "^1.7",
  1793. "laravel-lang/starter-kits": "^1.0",
  1794. "php": "^8.1"
  1795. },
  1796. "require-dev": {
  1797. "dragon-code/support": "^6.13",
  1798. "orchestra/testbench": "^8.17 || ^9.1.2 || ^10.0",
  1799. "phpunit/phpunit": "^10.5.20 || ^11.0 || ^12.0",
  1800. "symfony/var-dumper": "^6.4 || ^7.1.1"
  1801. },
  1802. "type": "library",
  1803. "notification-url": "https://packagist.org/downloads/",
  1804. "license": [
  1805. "MIT"
  1806. ],
  1807. "authors": [
  1808. {
  1809. "name": "Laravel-Lang Team",
  1810. "homepage": "https://github.com/Laravel-Lang"
  1811. },
  1812. {
  1813. "name": "Andrey Helldar",
  1814. "email": "helldar@dragon-code.pro",
  1815. "homepage": "https://dragon-code.pro"
  1816. }
  1817. ],
  1818. "description": "Easily connect the necessary language packs to the application",
  1819. "keywords": [
  1820. "Laravel-lang",
  1821. "actions",
  1822. "attribute",
  1823. "attributes",
  1824. "breeze",
  1825. "buttons",
  1826. "cashier",
  1827. "fortify",
  1828. "framework",
  1829. "http",
  1830. "http-status",
  1831. "http-status-code",
  1832. "i18n",
  1833. "jetstream",
  1834. "lang",
  1835. "language",
  1836. "languages",
  1837. "laravel",
  1838. "locale",
  1839. "locales",
  1840. "localization",
  1841. "localizations",
  1842. "moonshine",
  1843. "nova",
  1844. "publisher",
  1845. "spark",
  1846. "translation",
  1847. "translations",
  1848. "ui"
  1849. ],
  1850. "support": {
  1851. "issues": "https://github.com/Laravel-Lang/common/issues",
  1852. "source": "https://github.com/Laravel-Lang/common"
  1853. },
  1854. "time": "2025-06-23T09:38:20+00:00"
  1855. },
  1856. {
  1857. "name": "laravel-lang/config",
  1858. "version": "1.14.0",
  1859. "source": {
  1860. "type": "git",
  1861. "url": "https://github.com/Laravel-Lang/config.git",
  1862. "reference": "0f6a41a1d5f4bde6ff59fbfd9e349ac64b737c69"
  1863. },
  1864. "dist": {
  1865. "type": "zip",
  1866. "url": "https://api.github.com/repos/Laravel-Lang/config/zipball/0f6a41a1d5f4bde6ff59fbfd9e349ac64b737c69",
  1867. "reference": "0f6a41a1d5f4bde6ff59fbfd9e349ac64b737c69",
  1868. "shasum": ""
  1869. },
  1870. "require": {
  1871. "archtechx/enums": "^1.0",
  1872. "illuminate/config": "^10.0 || ^11.0 || ^12.0",
  1873. "illuminate/support": "^10.0 || ^11.0 || ^12.0",
  1874. "laravel-lang/locale-list": "^1.5",
  1875. "php": "^8.1"
  1876. },
  1877. "require-dev": {
  1878. "orchestra/testbench": "^8.23 || ^9.1 || ^10.0",
  1879. "pestphp/pest": "^2.34 || ^3.0"
  1880. },
  1881. "type": "library",
  1882. "extra": {
  1883. "laravel": {
  1884. "providers": [
  1885. "LaravelLang\\Config\\ServiceProvider"
  1886. ]
  1887. }
  1888. },
  1889. "autoload": {
  1890. "psr-4": {
  1891. "LaravelLang\\Config\\": "src/"
  1892. }
  1893. },
  1894. "notification-url": "https://packagist.org/downloads/",
  1895. "license": [
  1896. "MIT"
  1897. ],
  1898. "authors": [
  1899. {
  1900. "name": "Andrey Helldar",
  1901. "email": "helldar@dragon-code.pro",
  1902. "homepage": "https://dragon-code.pro"
  1903. },
  1904. {
  1905. "name": "Laravel-Lang Team",
  1906. "homepage": "https://laravel-lang.com"
  1907. }
  1908. ],
  1909. "description": "The Laravel-Lang config package",
  1910. "keywords": [
  1911. "Laravel-lang",
  1912. "Settings",
  1913. "config",
  1914. "lang",
  1915. "languages",
  1916. "laravel",
  1917. "locale",
  1918. "locales",
  1919. "localization",
  1920. "localizations",
  1921. "translation",
  1922. "translations"
  1923. ],
  1924. "support": {
  1925. "issues": "https://github.com/Laravel-Lang/config/issues",
  1926. "source": "https://github.com/Laravel-Lang/config/tree/1.14.0"
  1927. },
  1928. "time": "2025-04-11T07:31:54+00:00"
  1929. },
  1930. {
  1931. "name": "laravel-lang/http-statuses",
  1932. "version": "3.10.5",
  1933. "source": {
  1934. "type": "git",
  1935. "url": "https://github.com/Laravel-Lang/http-statuses.git",
  1936. "reference": "a4a5508088950a97058ab06e8f3587c611b97097"
  1937. },
  1938. "dist": {
  1939. "type": "zip",
  1940. "url": "https://api.github.com/repos/Laravel-Lang/http-statuses/zipball/a4a5508088950a97058ab06e8f3587c611b97097",
  1941. "reference": "a4a5508088950a97058ab06e8f3587c611b97097",
  1942. "shasum": ""
  1943. },
  1944. "require": {
  1945. "ext-json": "*",
  1946. "laravel-lang/publisher": "^14.1 || ^15.0 || ^16.0",
  1947. "php": "^8.1"
  1948. },
  1949. "require-dev": {
  1950. "laravel-lang/status-generator": "^1.19 || ^2.0",
  1951. "phpunit/phpunit": "^10.0 || ^11.0 || ^12.0",
  1952. "symfony/var-dumper": "^6.0 || ^7.0"
  1953. },
  1954. "type": "library",
  1955. "extra": {
  1956. "laravel": {
  1957. "providers": [
  1958. "LaravelLang\\HttpStatuses\\ServiceProvider"
  1959. ]
  1960. }
  1961. },
  1962. "autoload": {
  1963. "psr-4": {
  1964. "LaravelLang\\HttpStatuses\\": "src"
  1965. }
  1966. },
  1967. "notification-url": "https://packagist.org/downloads/",
  1968. "license": [
  1969. "MIT"
  1970. ],
  1971. "authors": [
  1972. {
  1973. "name": "Andrey Helldar",
  1974. "email": "helldar@dragon-code.pro"
  1975. },
  1976. {
  1977. "name": "Laravel-Lang Team",
  1978. "homepage": "https://github.com/Laravel-Lang"
  1979. }
  1980. ],
  1981. "description": "List of 127 languages for HTTP statuses",
  1982. "keywords": [
  1983. "http",
  1984. "lang",
  1985. "languages",
  1986. "laravel",
  1987. "messages",
  1988. "status",
  1989. "translations"
  1990. ],
  1991. "support": {
  1992. "issues": "https://github.com/Laravel-Lang/http-statuses/issues",
  1993. "source": "https://github.com/Laravel-Lang/http-statuses/tree/3.10.5"
  1994. },
  1995. "time": "2025-08-10T12:13:52+00:00"
  1996. },
  1997. {
  1998. "name": "laravel-lang/json-fallback",
  1999. "version": "2.2.1",
  2000. "source": {
  2001. "type": "git",
  2002. "url": "https://github.com/Laravel-Lang/json-fallback.git",
  2003. "reference": "0172de25e6cc3c5b26a7c8b778ff4e37f4d913f4"
  2004. },
  2005. "dist": {
  2006. "type": "zip",
  2007. "url": "https://api.github.com/repos/Laravel-Lang/json-fallback/zipball/0172de25e6cc3c5b26a7c8b778ff4e37f4d913f4",
  2008. "reference": "0172de25e6cc3c5b26a7c8b778ff4e37f4d913f4",
  2009. "shasum": ""
  2010. },
  2011. "require": {
  2012. "illuminate/support": "^10.0 || ^11.0 || ^12.0",
  2013. "illuminate/translation": "^10.0 || ^11.0 || ^12.0",
  2014. "php": "^8.1"
  2015. },
  2016. "require-dev": {
  2017. "orchestra/testbench": "^8.0 || ^9.0 || ^10.0",
  2018. "phpunit/phpunit": "^10.0 || ^11.0 || ^12.0"
  2019. },
  2020. "type": "library",
  2021. "autoload": {
  2022. "psr-4": {
  2023. "LaravelLang\\JsonFallback\\": "src"
  2024. }
  2025. },
  2026. "notification-url": "https://packagist.org/downloads/",
  2027. "license": [
  2028. "MIT"
  2029. ],
  2030. "authors": [
  2031. {
  2032. "name": "Andrey Helldar",
  2033. "email": "helldar@dragon-code.pro",
  2034. "homepage": "https://github.com/andrey-helldar"
  2035. },
  2036. {
  2037. "name": "Felipe Dsdev",
  2038. "homepage": "https://github.com/felipe-dsdev"
  2039. }
  2040. ],
  2041. "description": "Adds support for fallback JSON string translation",
  2042. "support": {
  2043. "issues": "https://github.com/Laravel-Lang/json-fallback/issues",
  2044. "source": "https://github.com/Laravel-Lang/json-fallback/tree/2.2.1"
  2045. },
  2046. "time": "2025-06-23T09:38:43+00:00"
  2047. },
  2048. {
  2049. "name": "laravel-lang/lang",
  2050. "version": "15.24.1",
  2051. "source": {
  2052. "type": "git",
  2053. "url": "https://github.com/Laravel-Lang/lang.git",
  2054. "reference": "ca42e015b7763c270822814b4880c8ad8b2bb0b4"
  2055. },
  2056. "dist": {
  2057. "type": "zip",
  2058. "url": "https://api.github.com/repos/Laravel-Lang/lang/zipball/ca42e015b7763c270822814b4880c8ad8b2bb0b4",
  2059. "reference": "ca42e015b7763c270822814b4880c8ad8b2bb0b4",
  2060. "shasum": ""
  2061. },
  2062. "require": {
  2063. "ext-json": "*",
  2064. "laravel-lang/publisher": "^16.0",
  2065. "php": "^8.2"
  2066. },
  2067. "conflict": {
  2068. "laravel/framework": "<11.0.7"
  2069. },
  2070. "require-dev": {
  2071. "dragon-code/codestyler": "^6.0",
  2072. "laravel-lang/status-generator": "^2.11",
  2073. "phpunit/phpunit": "^10.0 || ^11.0 || ^12.0",
  2074. "symfony/var-dumper": "^7.0"
  2075. },
  2076. "type": "library",
  2077. "extra": {
  2078. "laravel": {
  2079. "providers": [
  2080. "LaravelLang\\Lang\\ServiceProvider"
  2081. ]
  2082. }
  2083. },
  2084. "autoload": {
  2085. "psr-4": {
  2086. "LaravelLang\\Lang\\": "src/"
  2087. }
  2088. },
  2089. "notification-url": "https://packagist.org/downloads/",
  2090. "license": [
  2091. "MIT"
  2092. ],
  2093. "authors": [
  2094. {
  2095. "name": "Laravel-Lang Team",
  2096. "homepage": "https://github.com/Laravel-Lang"
  2097. }
  2098. ],
  2099. "description": "List of 126 languages for Laravel Framework, Laravel Jetstream, Laravel Fortify, Laravel Breeze, Laravel Cashier, Laravel Nova, Laravel Spark and Laravel UI",
  2100. "keywords": [
  2101. "lang",
  2102. "languages",
  2103. "laravel",
  2104. "lpm"
  2105. ],
  2106. "support": {
  2107. "issues": "https://github.com/Laravel-Lang/lang/issues",
  2108. "source": "https://github.com/Laravel-Lang/lang"
  2109. },
  2110. "time": "2025-09-02T21:56:46+00:00"
  2111. },
  2112. {
  2113. "name": "laravel-lang/locale-list",
  2114. "version": "1.5.1",
  2115. "source": {
  2116. "type": "git",
  2117. "url": "https://github.com/Laravel-Lang/locale-list.git",
  2118. "reference": "060475db218a97a54612163112b44782024d79c1"
  2119. },
  2120. "dist": {
  2121. "type": "zip",
  2122. "url": "https://api.github.com/repos/Laravel-Lang/locale-list/zipball/060475db218a97a54612163112b44782024d79c1",
  2123. "reference": "060475db218a97a54612163112b44782024d79c1",
  2124. "shasum": ""
  2125. },
  2126. "require": {
  2127. "archtechx/enums": "^0.3.2 || ^1.0",
  2128. "php": "^8.1"
  2129. },
  2130. "type": "library",
  2131. "autoload": {
  2132. "psr-4": {
  2133. "LaravelLang\\LocaleList\\": "src/"
  2134. }
  2135. },
  2136. "notification-url": "https://packagist.org/downloads/",
  2137. "license": [
  2138. "MIT"
  2139. ],
  2140. "authors": [
  2141. {
  2142. "name": "Andrey Helldar",
  2143. "email": "helldar@dragon-code.pro",
  2144. "homepage": "https://dragon-code.pro"
  2145. },
  2146. {
  2147. "name": "Laravel-Lang Team",
  2148. "homepage": "https://laravel-lang.com"
  2149. }
  2150. ],
  2151. "description": "List of localizations available in Laravel Lang projects",
  2152. "keywords": [
  2153. "Laravel-lang",
  2154. "lang",
  2155. "languages",
  2156. "laravel",
  2157. "locale",
  2158. "locales",
  2159. "localization",
  2160. "translation",
  2161. "translations"
  2162. ],
  2163. "support": {
  2164. "issues": "https://github.com/Laravel-Lang/locale-list/issues",
  2165. "source": "https://github.com/Laravel-Lang/locale-list"
  2166. },
  2167. "time": "2025-06-23T09:39:26+00:00"
  2168. },
  2169. {
  2170. "name": "laravel-lang/locales",
  2171. "version": "2.10.0",
  2172. "source": {
  2173. "type": "git",
  2174. "url": "https://github.com/Laravel-Lang/locales.git",
  2175. "reference": "8c1d2383ced70a919b3c2f430589be6c81663087"
  2176. },
  2177. "dist": {
  2178. "type": "zip",
  2179. "url": "https://api.github.com/repos/Laravel-Lang/locales/zipball/8c1d2383ced70a919b3c2f430589be6c81663087",
  2180. "reference": "8c1d2383ced70a919b3c2f430589be6c81663087",
  2181. "shasum": ""
  2182. },
  2183. "require": {
  2184. "archtechx/enums": "^0.3.2 || ^1.0",
  2185. "dragon-code/support": "^6.11.3",
  2186. "ext-json": "*",
  2187. "illuminate/collections": "^10.0 || ^11.0 || ^12.0",
  2188. "laravel-lang/config": "^1.12",
  2189. "laravel-lang/locale-list": "^1.5",
  2190. "laravel-lang/native-country-names": "^1.5",
  2191. "laravel-lang/native-currency-names": "^1.6",
  2192. "laravel-lang/native-locale-names": "^2.5",
  2193. "php": "^8.1"
  2194. },
  2195. "require-dev": {
  2196. "orchestra/testbench": "^8.0 || ^9.0 || ^10.0",
  2197. "pestphp/pest": "^2.24.1 || ^3.0",
  2198. "symfony/var-dumper": "^6.0 || ^7.0"
  2199. },
  2200. "type": "library",
  2201. "extra": {
  2202. "laravel": {
  2203. "providers": [
  2204. "LaravelLang\\Locales\\ServiceProvider"
  2205. ]
  2206. }
  2207. },
  2208. "autoload": {
  2209. "psr-4": {
  2210. "LaravelLang\\Locales\\": "src/"
  2211. }
  2212. },
  2213. "notification-url": "https://packagist.org/downloads/",
  2214. "license": [
  2215. "MIT"
  2216. ],
  2217. "authors": [
  2218. {
  2219. "name": "Andrey Helldar",
  2220. "email": "helldar@dragon-code.pro"
  2221. },
  2222. {
  2223. "name": "Laravel-Lang Team",
  2224. "homepage": "https://laravel-lang.com"
  2225. }
  2226. ],
  2227. "description": "Basic functionality for working with localizations",
  2228. "keywords": [
  2229. "laravel",
  2230. "locale",
  2231. "locales",
  2232. "localization",
  2233. "translation",
  2234. "translations"
  2235. ],
  2236. "support": {
  2237. "issues": "https://github.com/Laravel-Lang/locales/issues",
  2238. "source": "https://github.com/Laravel-Lang/locales"
  2239. },
  2240. "time": "2025-02-24T20:38:10+00:00"
  2241. },
  2242. {
  2243. "name": "laravel-lang/models",
  2244. "version": "1.5.0",
  2245. "source": {
  2246. "type": "git",
  2247. "url": "https://github.com/Laravel-Lang/models.git",
  2248. "reference": "7cf3734cad305a162305d91953c0bb177917089d"
  2249. },
  2250. "dist": {
  2251. "type": "zip",
  2252. "url": "https://api.github.com/repos/Laravel-Lang/models/zipball/7cf3734cad305a162305d91953c0bb177917089d",
  2253. "reference": "7cf3734cad305a162305d91953c0bb177917089d",
  2254. "shasum": ""
  2255. },
  2256. "require": {
  2257. "composer/class-map-generator": "^1.3",
  2258. "dragon-code/support": "^6.13",
  2259. "illuminate/database": "^10.0 || ^11.0 || ^12.0",
  2260. "illuminate/support": "^10.0 || ^11.0 || ^12.0",
  2261. "laravel-lang/config": "^1.12",
  2262. "laravel-lang/locales": "^2.10.0",
  2263. "laravel/pint": "^1.24",
  2264. "laravel/prompts": ">=0.1",
  2265. "php": "^8.1"
  2266. },
  2267. "require-dev": {
  2268. "orchestra/testbench": "^8.0 || ^9.0 || ^10.0",
  2269. "pestphp/pest": "^2.34 || ^3.0",
  2270. "pestphp/pest-plugin-laravel": "^2.4 || ^3.0",
  2271. "symfony/var-dumper": "^6.0 || ^7.0"
  2272. },
  2273. "type": "library",
  2274. "extra": {
  2275. "laravel": {
  2276. "providers": [
  2277. "LaravelLang\\Models\\ServiceProvider"
  2278. ]
  2279. }
  2280. },
  2281. "autoload": {
  2282. "psr-4": {
  2283. "LaravelLang\\Models\\": "src/"
  2284. }
  2285. },
  2286. "notification-url": "https://packagist.org/downloads/",
  2287. "license": [
  2288. "MIT"
  2289. ],
  2290. "authors": [
  2291. {
  2292. "name": "Andrey Helldar",
  2293. "email": "helldar@dragon-code.pro",
  2294. "homepage": "https://dragon-code.pro",
  2295. "role": "Maintainer"
  2296. },
  2297. {
  2298. "name": "Andrey Sokolov",
  2299. "email": "walfireru@gmail.com",
  2300. "homepage": "https://github.com/Quiss",
  2301. "role": "Usability consultant"
  2302. },
  2303. {
  2304. "name": "Laravel-Lang Team",
  2305. "homepage": "https://github.com/Laravel-Lang"
  2306. }
  2307. ],
  2308. "description": "Easy and fast way to localize models",
  2309. "keywords": [
  2310. "database",
  2311. "l18n",
  2312. "languages",
  2313. "laravel",
  2314. "locales",
  2315. "localization",
  2316. "models",
  2317. "translate",
  2318. "translations"
  2319. ],
  2320. "support": {
  2321. "issues": "https://github.com/Laravel-Lang/models/issues",
  2322. "source": "https://github.com/Laravel-Lang/models"
  2323. },
  2324. "time": "2025-08-21T09:53:55+00:00"
  2325. },
  2326. {
  2327. "name": "laravel-lang/moonshine",
  2328. "version": "1.3.8",
  2329. "source": {
  2330. "type": "git",
  2331. "url": "https://github.com/Laravel-Lang/moonshine.git",
  2332. "reference": "a4bf8eeef0e44ed9fb596379e9ec8627c401e6cb"
  2333. },
  2334. "dist": {
  2335. "type": "zip",
  2336. "url": "https://api.github.com/repos/Laravel-Lang/moonshine/zipball/a4bf8eeef0e44ed9fb596379e9ec8627c401e6cb",
  2337. "reference": "a4bf8eeef0e44ed9fb596379e9ec8627c401e6cb",
  2338. "shasum": ""
  2339. },
  2340. "require": {
  2341. "ext-json": "*",
  2342. "laravel-lang/publisher": "^15.0 || ^16.4.1",
  2343. "php": "^8.1"
  2344. },
  2345. "require-dev": {
  2346. "dragon-code/support": "^6.15.2",
  2347. "illuminate/support": "^10.0 || ^11.0 || ^12.0",
  2348. "laravel-lang/lang": "^14.8 || ^15.14",
  2349. "laravel-lang/status-generator": "^2.12",
  2350. "phpunit/phpunit": "^10.0 || ^11.0 || ^12.0",
  2351. "symfony/var-dumper": "^6.3 || ^7.0"
  2352. },
  2353. "type": "library",
  2354. "extra": {
  2355. "laravel": {
  2356. "providers": [
  2357. "LaravelLang\\MoonShine\\ServiceProvider"
  2358. ]
  2359. }
  2360. },
  2361. "autoload": {
  2362. "psr-4": {
  2363. "LaravelLang\\MoonShine\\": "src/"
  2364. }
  2365. },
  2366. "notification-url": "https://packagist.org/downloads/",
  2367. "license": [
  2368. "MIT"
  2369. ],
  2370. "authors": [
  2371. {
  2372. "name": "Andrey Helldar",
  2373. "email": "helldar@dragon-code.pro"
  2374. },
  2375. {
  2376. "name": "Laravel Lang Team",
  2377. "homepage": "https://laravel-lang.com"
  2378. }
  2379. ],
  2380. "description": "Translation for MoonShine admin panel",
  2381. "keywords": [
  2382. "lang",
  2383. "languages",
  2384. "laravel",
  2385. "moonshine",
  2386. "translations"
  2387. ],
  2388. "support": {
  2389. "issues": "https://github.com/Laravel-Lang/moonshine/issues",
  2390. "source": "https://github.com/Laravel-Lang/moonshine/tree/1.3.8"
  2391. },
  2392. "time": "2025-06-23T09:36:08+00:00"
  2393. },
  2394. {
  2395. "name": "laravel-lang/native-country-names",
  2396. "version": "1.5.1",
  2397. "source": {
  2398. "type": "git",
  2399. "url": "https://github.com/Laravel-Lang/native-country-names.git",
  2400. "reference": "70eba5c3b7a4035da085123a81c076e52367b30c"
  2401. },
  2402. "dist": {
  2403. "type": "zip",
  2404. "url": "https://api.github.com/repos/Laravel-Lang/native-country-names/zipball/70eba5c3b7a4035da085123a81c076e52367b30c",
  2405. "reference": "70eba5c3b7a4035da085123a81c076e52367b30c",
  2406. "shasum": ""
  2407. },
  2408. "require": {
  2409. "dragon-code/support": "^6.11",
  2410. "ext-json": "*",
  2411. "illuminate/collections": "^10.0 || ^11.0 || ^12.0",
  2412. "php": "^8.1"
  2413. },
  2414. "require-dev": {
  2415. "illuminate/support": "^10.0 || ^11.0 || ^12.0",
  2416. "laravel-lang/locale-list": "^1.5",
  2417. "pestphp/pest": "^2.24.3 || ^3.0",
  2418. "punic/punic": "^3.8",
  2419. "symfony/console": "^6.3 || ^7.0",
  2420. "symfony/process": "^6.3 || ^7.0",
  2421. "symfony/var-dumper": "^6.3 || ^7.0",
  2422. "vlucas/phpdotenv": "^5.6"
  2423. },
  2424. "type": "library",
  2425. "autoload": {
  2426. "psr-4": {
  2427. "LaravelLang\\NativeCountryNames\\": "src/"
  2428. }
  2429. },
  2430. "notification-url": "https://packagist.org/downloads/",
  2431. "license": [
  2432. "MIT"
  2433. ],
  2434. "authors": [
  2435. {
  2436. "name": "Andrey Helldar",
  2437. "email": "helldar@dragon-code.pro"
  2438. },
  2439. {
  2440. "name": "Laravel-Lang Team",
  2441. "homepage": "https://laravel-lang.com"
  2442. }
  2443. ],
  2444. "description": "The project contains native translations of country names",
  2445. "keywords": [
  2446. "Laravel-lang",
  2447. "countries",
  2448. "country",
  2449. "lang",
  2450. "languages",
  2451. "laravel",
  2452. "locale",
  2453. "locales",
  2454. "localization",
  2455. "territories",
  2456. "territory",
  2457. "translation",
  2458. "translations"
  2459. ],
  2460. "support": {
  2461. "issues": "https://github.com/Laravel-Lang/native-country-names/issues",
  2462. "source": "https://github.com/Laravel-Lang/native-country-names"
  2463. },
  2464. "time": "2025-06-23T09:38:47+00:00"
  2465. },
  2466. {
  2467. "name": "laravel-lang/native-currency-names",
  2468. "version": "1.6.1",
  2469. "source": {
  2470. "type": "git",
  2471. "url": "https://github.com/Laravel-Lang/native-currency-names.git",
  2472. "reference": "b376c69778be7184f7292cb92424ac7d7415d55d"
  2473. },
  2474. "dist": {
  2475. "type": "zip",
  2476. "url": "https://api.github.com/repos/Laravel-Lang/native-currency-names/zipball/b376c69778be7184f7292cb92424ac7d7415d55d",
  2477. "reference": "b376c69778be7184f7292cb92424ac7d7415d55d",
  2478. "shasum": ""
  2479. },
  2480. "require": {
  2481. "dragon-code/support": "^6.11",
  2482. "ext-json": "*",
  2483. "illuminate/collections": "^10.0 || ^11.0 || ^12.0",
  2484. "php": "^8.1"
  2485. },
  2486. "require-dev": {
  2487. "illuminate/support": "^10.0 || ^11.0 || ^12.0",
  2488. "laravel-lang/locale-list": "^1.2",
  2489. "pestphp/pest": "^2.24.3 || ^3.0",
  2490. "punic/punic": "^3.8",
  2491. "symfony/console": "^6.3 || ^7.0",
  2492. "symfony/process": "^6.3 || ^7.0",
  2493. "symfony/var-dumper": "^6.3 || ^7.0",
  2494. "vlucas/phpdotenv": "^5.6"
  2495. },
  2496. "type": "library",
  2497. "autoload": {
  2498. "psr-4": {
  2499. "LaravelLang\\NativeCurrencyNames\\": "src/"
  2500. }
  2501. },
  2502. "notification-url": "https://packagist.org/downloads/",
  2503. "license": [
  2504. "MIT"
  2505. ],
  2506. "authors": [
  2507. {
  2508. "name": "Andrey Helldar",
  2509. "email": "helldar@dragon-code.pro"
  2510. },
  2511. {
  2512. "name": "Laravel-Lang Team",
  2513. "homepage": "https://laravel-lang.com"
  2514. }
  2515. ],
  2516. "description": "The project contains native translations of currency names",
  2517. "keywords": [
  2518. "Laravel-lang",
  2519. "currency",
  2520. "lang",
  2521. "languages",
  2522. "laravel",
  2523. "locale",
  2524. "locales",
  2525. "localization",
  2526. "translation",
  2527. "translations"
  2528. ],
  2529. "support": {
  2530. "issues": "https://github.com/Laravel-Lang/native-currency-names/issues",
  2531. "source": "https://github.com/Laravel-Lang/native-currency-names"
  2532. },
  2533. "time": "2025-06-23T09:38:58+00:00"
  2534. },
  2535. {
  2536. "name": "laravel-lang/native-locale-names",
  2537. "version": "2.5.1",
  2538. "source": {
  2539. "type": "git",
  2540. "url": "https://github.com/Laravel-Lang/native-locale-names.git",
  2541. "reference": "38278ef43fb3460c9fb7a056ac2e8043e4faa963"
  2542. },
  2543. "dist": {
  2544. "type": "zip",
  2545. "url": "https://api.github.com/repos/Laravel-Lang/native-locale-names/zipball/38278ef43fb3460c9fb7a056ac2e8043e4faa963",
  2546. "reference": "38278ef43fb3460c9fb7a056ac2e8043e4faa963",
  2547. "shasum": ""
  2548. },
  2549. "require": {
  2550. "dragon-code/support": "^6.11",
  2551. "ext-json": "*",
  2552. "php": "^8.1"
  2553. },
  2554. "require-dev": {
  2555. "illuminate/support": "^10.31 || ^11.0 || ^12.0",
  2556. "laravel-lang/locale-list": "^1.2",
  2557. "pestphp/pest": "^2.24.3",
  2558. "punic/punic": "^3.8",
  2559. "symfony/console": "^6.3 || ^7.0",
  2560. "symfony/process": "^6.3 || ^7.0",
  2561. "symfony/var-dumper": "^6.3 || ^7.0"
  2562. },
  2563. "type": "library",
  2564. "autoload": {
  2565. "psr-4": {
  2566. "LaravelLang\\NativeLocaleNames\\": "src/"
  2567. }
  2568. },
  2569. "notification-url": "https://packagist.org/downloads/",
  2570. "license": [
  2571. "MIT"
  2572. ],
  2573. "authors": [
  2574. {
  2575. "name": "Andrey Helldar",
  2576. "email": "helldar@dragon-code.pro"
  2577. },
  2578. {
  2579. "name": "Laravel-Lang Team",
  2580. "homepage": "https://laravel-lang.com"
  2581. }
  2582. ],
  2583. "description": "The project contains native translations of locale names",
  2584. "keywords": [
  2585. "Laravel-lang",
  2586. "lang",
  2587. "languages",
  2588. "laravel",
  2589. "locale",
  2590. "locales",
  2591. "localization",
  2592. "translation",
  2593. "translations"
  2594. ],
  2595. "support": {
  2596. "issues": "https://github.com/Laravel-Lang/native-locale-names/issues",
  2597. "source": "https://github.com/Laravel-Lang/native-locale-names"
  2598. },
  2599. "time": "2025-06-23T09:38:52+00:00"
  2600. },
  2601. {
  2602. "name": "laravel-lang/publisher",
  2603. "version": "16.7.0",
  2604. "source": {
  2605. "type": "git",
  2606. "url": "https://github.com/Laravel-Lang/publisher.git",
  2607. "reference": "af47a0807f753818d72808250a1166e98172047c"
  2608. },
  2609. "dist": {
  2610. "type": "zip",
  2611. "url": "https://api.github.com/repos/Laravel-Lang/publisher/zipball/af47a0807f753818d72808250a1166e98172047c",
  2612. "reference": "af47a0807f753818d72808250a1166e98172047c",
  2613. "shasum": ""
  2614. },
  2615. "require": {
  2616. "composer/semver": "^3.4",
  2617. "dragon-code/pretty-array": "^4.1",
  2618. "dragon-code/support": "^6.11.3",
  2619. "ext-json": "*",
  2620. "illuminate/collections": "^10.0 || ^11.0 || ^12.0",
  2621. "illuminate/console": "^10.0 || ^11.0 || ^12.0",
  2622. "illuminate/support": "^10.0 || ^11.0 || ^12.0",
  2623. "laravel-lang/config": "^1.12",
  2624. "laravel-lang/locales": "^2.10",
  2625. "league/commonmark": "^2.4.1",
  2626. "league/config": "^1.2",
  2627. "php": "^8.1"
  2628. },
  2629. "conflict": {
  2630. "laravel-lang/attributes": "<2.0",
  2631. "laravel-lang/http-statuses": "<3.0",
  2632. "laravel-lang/lang": "<11.0"
  2633. },
  2634. "require-dev": {
  2635. "laravel-lang/json-fallback": "^2.2",
  2636. "orchestra/testbench": "^8.14 || ^9.0 || ^10.0",
  2637. "phpunit/phpunit": "^10.4.2 || ^11.0 || ^12.0",
  2638. "symfony/var-dumper": "^6.3.6 || ^7.0"
  2639. },
  2640. "type": "library",
  2641. "extra": {
  2642. "laravel": {
  2643. "providers": [
  2644. "LaravelLang\\Publisher\\ServiceProvider"
  2645. ]
  2646. }
  2647. },
  2648. "autoload": {
  2649. "psr-4": {
  2650. "LaravelLang\\Publisher\\": "src/"
  2651. }
  2652. },
  2653. "notification-url": "https://packagist.org/downloads/",
  2654. "license": [
  2655. "MIT"
  2656. ],
  2657. "authors": [
  2658. {
  2659. "name": "Andrey Helldar",
  2660. "email": "helldar@dragon-code.pro"
  2661. },
  2662. {
  2663. "name": "Laravel-Lang Team",
  2664. "homepage": "https://laravel-lang.com"
  2665. }
  2666. ],
  2667. "description": "Localization publisher for your Laravel application",
  2668. "keywords": [
  2669. "Laravel-lang",
  2670. "breeze",
  2671. "cashier",
  2672. "fortify",
  2673. "framework",
  2674. "i18n",
  2675. "jetstream",
  2676. "lang",
  2677. "languages",
  2678. "laravel",
  2679. "locale",
  2680. "locales",
  2681. "localization",
  2682. "localizations",
  2683. "lpm",
  2684. "lumen",
  2685. "nova",
  2686. "publisher",
  2687. "spark",
  2688. "trans",
  2689. "translation",
  2690. "translations",
  2691. "validations"
  2692. ],
  2693. "support": {
  2694. "issues": "https://github.com/Laravel-Lang/publisher/issues",
  2695. "source": "https://github.com/Laravel-Lang/publisher"
  2696. },
  2697. "time": "2025-07-14T17:58:53+00:00"
  2698. },
  2699. {
  2700. "name": "laravel-lang/routes",
  2701. "version": "1.9.1",
  2702. "source": {
  2703. "type": "git",
  2704. "url": "https://github.com/Laravel-Lang/routes.git",
  2705. "reference": "ed87d81fff3b79048abcb533e0f39a52bc030ffb"
  2706. },
  2707. "dist": {
  2708. "type": "zip",
  2709. "url": "https://api.github.com/repos/Laravel-Lang/routes/zipball/ed87d81fff3b79048abcb533e0f39a52bc030ffb",
  2710. "reference": "ed87d81fff3b79048abcb533e0f39a52bc030ffb",
  2711. "shasum": ""
  2712. },
  2713. "require": {
  2714. "dragon-code/support": "^6.13",
  2715. "illuminate/config": "^10.0 || ^11.0 || ^12.0",
  2716. "illuminate/http": "^10.0 || ^11.0 || ^12.0",
  2717. "illuminate/routing": "^10.0 || ^11.0 || ^12.0",
  2718. "illuminate/support": "^10.0 || ^11.0 || ^12.0",
  2719. "laravel-lang/config": "^1.13",
  2720. "laravel-lang/locales": "^2.10",
  2721. "php": "^8.1"
  2722. },
  2723. "require-dev": {
  2724. "orchestra/testbench": "^8.23 || ^9.1 || ^10.0",
  2725. "pestphp/pest": "^2.34 || ^3.0",
  2726. "pestphp/pest-plugin-laravel": "^2.4 || ^3.0",
  2727. "symfony/var-dumper": "^6.0 || ^7.0"
  2728. },
  2729. "type": "library",
  2730. "extra": {
  2731. "laravel": {
  2732. "providers": [
  2733. "LaravelLang\\Routes\\ServiceProvider"
  2734. ]
  2735. }
  2736. },
  2737. "autoload": {
  2738. "files": [
  2739. "helpers/functions.php"
  2740. ],
  2741. "psr-4": {
  2742. "LaravelLang\\Routes\\": "src/"
  2743. }
  2744. },
  2745. "notification-url": "https://packagist.org/downloads/",
  2746. "license": [
  2747. "MIT"
  2748. ],
  2749. "authors": [
  2750. {
  2751. "name": "Andrey Helldar",
  2752. "email": "helldar@dragon-code.pro",
  2753. "homepage": "https://dragon-code.pro"
  2754. },
  2755. {
  2756. "name": "Laravel-Lang Team",
  2757. "homepage": "https://github.com/Laravel-Lang"
  2758. }
  2759. ],
  2760. "description": "Easy and fast way to localize routes",
  2761. "keywords": [
  2762. "l18n",
  2763. "languages",
  2764. "laravel",
  2765. "localization",
  2766. "routes",
  2767. "translate",
  2768. "translations"
  2769. ],
  2770. "support": {
  2771. "issues": "https://github.com/Laravel-Lang/routes/issues",
  2772. "source": "https://github.com/Laravel-Lang/routes"
  2773. },
  2774. "time": "2025-06-23T09:38:02+00:00"
  2775. },
  2776. {
  2777. "name": "laravel-lang/starter-kits",
  2778. "version": "1.3.10",
  2779. "source": {
  2780. "type": "git",
  2781. "url": "https://github.com/Laravel-Lang/starter-kits.git",
  2782. "reference": "90260cfad7436ef11802eeb7adf18485905d8cf0"
  2783. },
  2784. "dist": {
  2785. "type": "zip",
  2786. "url": "https://api.github.com/repos/Laravel-Lang/starter-kits/zipball/90260cfad7436ef11802eeb7adf18485905d8cf0",
  2787. "reference": "90260cfad7436ef11802eeb7adf18485905d8cf0",
  2788. "shasum": ""
  2789. },
  2790. "require": {
  2791. "ext-json": "*",
  2792. "laravel-lang/publisher": "^16.6",
  2793. "php": "^8.1"
  2794. },
  2795. "require-dev": {
  2796. "laravel-lang/status-generator": "^2.13",
  2797. "phpunit/phpunit": "^11.0 || ^12.0",
  2798. "symfony/var-dumper": "^7.0"
  2799. },
  2800. "type": "library",
  2801. "extra": {
  2802. "laravel": {
  2803. "providers": [
  2804. "LaravelLang\\StarterKits\\ServiceProvider"
  2805. ]
  2806. }
  2807. },
  2808. "autoload": {
  2809. "psr-4": {
  2810. "LaravelLang\\StarterKits\\": "src/"
  2811. }
  2812. },
  2813. "notification-url": "https://packagist.org/downloads/",
  2814. "license": [
  2815. "MIT"
  2816. ],
  2817. "authors": [
  2818. {
  2819. "name": "Andrey Helldar",
  2820. "email": "helldar@dragon-code.pro"
  2821. },
  2822. {
  2823. "name": "Laravel Lang Team",
  2824. "homepage": "https://laravel-lang.com"
  2825. }
  2826. ],
  2827. "description": "Translations for Laravel Starter Kits",
  2828. "keywords": [
  2829. "i18n",
  2830. "lang",
  2831. "languages",
  2832. "laravel",
  2833. "starter-kit",
  2834. "starter-kits",
  2835. "translations"
  2836. ],
  2837. "support": {
  2838. "issues": "https://github.com/Laravel-Lang/starter-kits/issues",
  2839. "source": "https://github.com/Laravel-Lang/starter-kits/tree/1.3.10"
  2840. },
  2841. "time": "2025-06-23T09:36:35+00:00"
  2842. },
  2843. {
  2844. "name": "laravel/framework",
  2845. "version": "v12.28.1",
  2846. "source": {
  2847. "type": "git",
  2848. "url": "https://github.com/laravel/framework.git",
  2849. "reference": "868c1f2d3dba4df6d21e3a8d818479f094cfd942"
  2850. },
  2851. "dist": {
  2852. "type": "zip",
  2853. "url": "https://api.github.com/repos/laravel/framework/zipball/868c1f2d3dba4df6d21e3a8d818479f094cfd942",
  2854. "reference": "868c1f2d3dba4df6d21e3a8d818479f094cfd942",
  2855. "shasum": ""
  2856. },
  2857. "require": {
  2858. "brick/math": "^0.11|^0.12|^0.13|^0.14",
  2859. "composer-runtime-api": "^2.2",
  2860. "doctrine/inflector": "^2.0.5",
  2861. "dragonmantank/cron-expression": "^3.4",
  2862. "egulias/email-validator": "^3.2.1|^4.0",
  2863. "ext-ctype": "*",
  2864. "ext-filter": "*",
  2865. "ext-hash": "*",
  2866. "ext-mbstring": "*",
  2867. "ext-openssl": "*",
  2868. "ext-session": "*",
  2869. "ext-tokenizer": "*",
  2870. "fruitcake/php-cors": "^1.3",
  2871. "guzzlehttp/guzzle": "^7.8.2",
  2872. "guzzlehttp/uri-template": "^1.0",
  2873. "laravel/prompts": "^0.3.0",
  2874. "laravel/serializable-closure": "^1.3|^2.0",
  2875. "league/commonmark": "^2.7",
  2876. "league/flysystem": "^3.25.1",
  2877. "league/flysystem-local": "^3.25.1",
  2878. "league/uri": "^7.5.1",
  2879. "monolog/monolog": "^3.0",
  2880. "nesbot/carbon": "^3.8.4",
  2881. "nunomaduro/termwind": "^2.0",
  2882. "php": "^8.2",
  2883. "psr/container": "^1.1.1|^2.0.1",
  2884. "psr/log": "^1.0|^2.0|^3.0",
  2885. "psr/simple-cache": "^1.0|^2.0|^3.0",
  2886. "ramsey/uuid": "^4.7",
  2887. "symfony/console": "^7.2.0",
  2888. "symfony/error-handler": "^7.2.0",
  2889. "symfony/finder": "^7.2.0",
  2890. "symfony/http-foundation": "^7.2.0",
  2891. "symfony/http-kernel": "^7.2.0",
  2892. "symfony/mailer": "^7.2.0",
  2893. "symfony/mime": "^7.2.0",
  2894. "symfony/polyfill-php83": "^1.33",
  2895. "symfony/polyfill-php84": "^1.33",
  2896. "symfony/polyfill-php85": "^1.33",
  2897. "symfony/process": "^7.2.0",
  2898. "symfony/routing": "^7.2.0",
  2899. "symfony/uid": "^7.2.0",
  2900. "symfony/var-dumper": "^7.2.0",
  2901. "tijsverkoyen/css-to-inline-styles": "^2.2.5",
  2902. "vlucas/phpdotenv": "^5.6.1",
  2903. "voku/portable-ascii": "^2.0.2"
  2904. },
  2905. "conflict": {
  2906. "tightenco/collect": "<5.5.33"
  2907. },
  2908. "provide": {
  2909. "psr/container-implementation": "1.1|2.0",
  2910. "psr/log-implementation": "1.0|2.0|3.0",
  2911. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  2912. },
  2913. "replace": {
  2914. "illuminate/auth": "self.version",
  2915. "illuminate/broadcasting": "self.version",
  2916. "illuminate/bus": "self.version",
  2917. "illuminate/cache": "self.version",
  2918. "illuminate/collections": "self.version",
  2919. "illuminate/concurrency": "self.version",
  2920. "illuminate/conditionable": "self.version",
  2921. "illuminate/config": "self.version",
  2922. "illuminate/console": "self.version",
  2923. "illuminate/container": "self.version",
  2924. "illuminate/contracts": "self.version",
  2925. "illuminate/cookie": "self.version",
  2926. "illuminate/database": "self.version",
  2927. "illuminate/encryption": "self.version",
  2928. "illuminate/events": "self.version",
  2929. "illuminate/filesystem": "self.version",
  2930. "illuminate/hashing": "self.version",
  2931. "illuminate/http": "self.version",
  2932. "illuminate/json-schema": "self.version",
  2933. "illuminate/log": "self.version",
  2934. "illuminate/macroable": "self.version",
  2935. "illuminate/mail": "self.version",
  2936. "illuminate/notifications": "self.version",
  2937. "illuminate/pagination": "self.version",
  2938. "illuminate/pipeline": "self.version",
  2939. "illuminate/process": "self.version",
  2940. "illuminate/queue": "self.version",
  2941. "illuminate/redis": "self.version",
  2942. "illuminate/routing": "self.version",
  2943. "illuminate/session": "self.version",
  2944. "illuminate/support": "self.version",
  2945. "illuminate/testing": "self.version",
  2946. "illuminate/translation": "self.version",
  2947. "illuminate/validation": "self.version",
  2948. "illuminate/view": "self.version",
  2949. "spatie/once": "*"
  2950. },
  2951. "require-dev": {
  2952. "ably/ably-php": "^1.0",
  2953. "aws/aws-sdk-php": "^3.322.9",
  2954. "ext-gmp": "*",
  2955. "fakerphp/faker": "^1.24",
  2956. "guzzlehttp/promises": "^2.0.3",
  2957. "guzzlehttp/psr7": "^2.4",
  2958. "laravel/pint": "^1.18",
  2959. "league/flysystem-aws-s3-v3": "^3.25.1",
  2960. "league/flysystem-ftp": "^3.25.1",
  2961. "league/flysystem-path-prefixing": "^3.25.1",
  2962. "league/flysystem-read-only": "^3.25.1",
  2963. "league/flysystem-sftp-v3": "^3.25.1",
  2964. "mockery/mockery": "^1.6.10",
  2965. "opis/json-schema": "^2.4.1",
  2966. "orchestra/testbench-core": "^10.6.5",
  2967. "pda/pheanstalk": "^5.0.6|^7.0.0",
  2968. "php-http/discovery": "^1.15",
  2969. "phpstan/phpstan": "^2.0",
  2970. "phpunit/phpunit": "^10.5.35|^11.5.3|^12.0.1",
  2971. "predis/predis": "^2.3|^3.0",
  2972. "resend/resend-php": "^0.10.0",
  2973. "symfony/cache": "^7.2.0",
  2974. "symfony/http-client": "^7.2.0",
  2975. "symfony/psr-http-message-bridge": "^7.2.0",
  2976. "symfony/translation": "^7.2.0"
  2977. },
  2978. "suggest": {
  2979. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  2980. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.322.9).",
  2981. "brianium/paratest": "Required to run tests in parallel (^7.0|^8.0).",
  2982. "ext-apcu": "Required to use the APC cache driver.",
  2983. "ext-fileinfo": "Required to use the Filesystem class.",
  2984. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2985. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  2986. "ext-memcached": "Required to use the memcache cache driver.",
  2987. "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.",
  2988. "ext-pdo": "Required to use all database features.",
  2989. "ext-posix": "Required to use all features of the queue worker.",
  2990. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0|^6.0).",
  2991. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2992. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  2993. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  2994. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.25.1).",
  2995. "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.25.1).",
  2996. "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.25.1).",
  2997. "league/flysystem-read-only": "Required to use read-only disks (^3.25.1)",
  2998. "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.25.1).",
  2999. "mockery/mockery": "Required to use mocking (^1.6).",
  3000. "pda/pheanstalk": "Required to use the beanstalk queue driver (^5.0).",
  3001. "php-http/discovery": "Required to use PSR-7 bridging features (^1.15).",
  3002. "phpunit/phpunit": "Required to use assertions and run tests (^10.5.35|^11.5.3|^12.0.1).",
  3003. "predis/predis": "Required to use the predis connector (^2.3|^3.0).",
  3004. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  3005. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
  3006. "resend/resend-php": "Required to enable support for the Resend mail transport (^0.10.0).",
  3007. "symfony/cache": "Required to PSR-6 cache bridge (^7.2).",
  3008. "symfony/filesystem": "Required to enable support for relative symbolic links (^7.2).",
  3009. "symfony/http-client": "Required to enable support for the Symfony API mail transports (^7.2).",
  3010. "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^7.2).",
  3011. "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^7.2).",
  3012. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^7.2)."
  3013. },
  3014. "type": "library",
  3015. "extra": {
  3016. "branch-alias": {
  3017. "dev-master": "12.x-dev"
  3018. }
  3019. },
  3020. "autoload": {
  3021. "files": [
  3022. "src/Illuminate/Collections/functions.php",
  3023. "src/Illuminate/Collections/helpers.php",
  3024. "src/Illuminate/Events/functions.php",
  3025. "src/Illuminate/Filesystem/functions.php",
  3026. "src/Illuminate/Foundation/helpers.php",
  3027. "src/Illuminate/Log/functions.php",
  3028. "src/Illuminate/Support/functions.php",
  3029. "src/Illuminate/Support/helpers.php"
  3030. ],
  3031. "psr-4": {
  3032. "Illuminate\\": "src/Illuminate/",
  3033. "Illuminate\\Support\\": [
  3034. "src/Illuminate/Macroable/",
  3035. "src/Illuminate/Collections/",
  3036. "src/Illuminate/Conditionable/"
  3037. ]
  3038. }
  3039. },
  3040. "notification-url": "https://packagist.org/downloads/",
  3041. "license": [
  3042. "MIT"
  3043. ],
  3044. "authors": [
  3045. {
  3046. "name": "Taylor Otwell",
  3047. "email": "taylor@laravel.com"
  3048. }
  3049. ],
  3050. "description": "The Laravel Framework.",
  3051. "homepage": "https://laravel.com",
  3052. "keywords": [
  3053. "framework",
  3054. "laravel"
  3055. ],
  3056. "support": {
  3057. "issues": "https://github.com/laravel/framework/issues",
  3058. "source": "https://github.com/laravel/framework"
  3059. },
  3060. "time": "2025-09-04T14:58:12+00:00"
  3061. },
  3062. {
  3063. "name": "laravel/pint",
  3064. "version": "v1.24.0",
  3065. "source": {
  3066. "type": "git",
  3067. "url": "https://github.com/laravel/pint.git",
  3068. "reference": "0345f3b05f136801af8c339f9d16ef29e6b4df8a"
  3069. },
  3070. "dist": {
  3071. "type": "zip",
  3072. "url": "https://api.github.com/repos/laravel/pint/zipball/0345f3b05f136801af8c339f9d16ef29e6b4df8a",
  3073. "reference": "0345f3b05f136801af8c339f9d16ef29e6b4df8a",
  3074. "shasum": ""
  3075. },
  3076. "require": {
  3077. "ext-json": "*",
  3078. "ext-mbstring": "*",
  3079. "ext-tokenizer": "*",
  3080. "ext-xml": "*",
  3081. "php": "^8.2.0"
  3082. },
  3083. "require-dev": {
  3084. "friendsofphp/php-cs-fixer": "^3.82.2",
  3085. "illuminate/view": "^11.45.1",
  3086. "larastan/larastan": "^3.5.0",
  3087. "laravel-zero/framework": "^11.45.0",
  3088. "mockery/mockery": "^1.6.12",
  3089. "nunomaduro/termwind": "^2.3.1",
  3090. "pestphp/pest": "^2.36.0"
  3091. },
  3092. "bin": [
  3093. "builds/pint"
  3094. ],
  3095. "type": "project",
  3096. "autoload": {
  3097. "files": [
  3098. "overrides/Runner/Parallel/ProcessFactory.php"
  3099. ],
  3100. "psr-4": {
  3101. "App\\": "app/",
  3102. "Database\\Seeders\\": "database/seeders/",
  3103. "Database\\Factories\\": "database/factories/"
  3104. }
  3105. },
  3106. "notification-url": "https://packagist.org/downloads/",
  3107. "license": [
  3108. "MIT"
  3109. ],
  3110. "authors": [
  3111. {
  3112. "name": "Nuno Maduro",
  3113. "email": "enunomaduro@gmail.com"
  3114. }
  3115. ],
  3116. "description": "An opinionated code formatter for PHP.",
  3117. "homepage": "https://laravel.com",
  3118. "keywords": [
  3119. "format",
  3120. "formatter",
  3121. "lint",
  3122. "linter",
  3123. "php"
  3124. ],
  3125. "support": {
  3126. "issues": "https://github.com/laravel/pint/issues",
  3127. "source": "https://github.com/laravel/pint"
  3128. },
  3129. "time": "2025-07-10T18:09:32+00:00"
  3130. },
  3131. {
  3132. "name": "laravel/prompts",
  3133. "version": "v0.3.6",
  3134. "source": {
  3135. "type": "git",
  3136. "url": "https://github.com/laravel/prompts.git",
  3137. "reference": "86a8b692e8661d0fb308cec64f3d176821323077"
  3138. },
  3139. "dist": {
  3140. "type": "zip",
  3141. "url": "https://api.github.com/repos/laravel/prompts/zipball/86a8b692e8661d0fb308cec64f3d176821323077",
  3142. "reference": "86a8b692e8661d0fb308cec64f3d176821323077",
  3143. "shasum": ""
  3144. },
  3145. "require": {
  3146. "composer-runtime-api": "^2.2",
  3147. "ext-mbstring": "*",
  3148. "php": "^8.1",
  3149. "symfony/console": "^6.2|^7.0"
  3150. },
  3151. "conflict": {
  3152. "illuminate/console": ">=10.17.0 <10.25.0",
  3153. "laravel/framework": ">=10.17.0 <10.25.0"
  3154. },
  3155. "require-dev": {
  3156. "illuminate/collections": "^10.0|^11.0|^12.0",
  3157. "mockery/mockery": "^1.5",
  3158. "pestphp/pest": "^2.3|^3.4",
  3159. "phpstan/phpstan": "^1.11",
  3160. "phpstan/phpstan-mockery": "^1.1"
  3161. },
  3162. "suggest": {
  3163. "ext-pcntl": "Required for the spinner to be animated."
  3164. },
  3165. "type": "library",
  3166. "extra": {
  3167. "branch-alias": {
  3168. "dev-main": "0.3.x-dev"
  3169. }
  3170. },
  3171. "autoload": {
  3172. "files": [
  3173. "src/helpers.php"
  3174. ],
  3175. "psr-4": {
  3176. "Laravel\\Prompts\\": "src/"
  3177. }
  3178. },
  3179. "notification-url": "https://packagist.org/downloads/",
  3180. "license": [
  3181. "MIT"
  3182. ],
  3183. "description": "Add beautiful and user-friendly forms to your command-line applications.",
  3184. "support": {
  3185. "issues": "https://github.com/laravel/prompts/issues",
  3186. "source": "https://github.com/laravel/prompts/tree/v0.3.6"
  3187. },
  3188. "time": "2025-07-07T14:17:42+00:00"
  3189. },
  3190. {
  3191. "name": "laravel/serializable-closure",
  3192. "version": "v2.0.4",
  3193. "source": {
  3194. "type": "git",
  3195. "url": "https://github.com/laravel/serializable-closure.git",
  3196. "reference": "b352cf0534aa1ae6b4d825d1e762e35d43f8a841"
  3197. },
  3198. "dist": {
  3199. "type": "zip",
  3200. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/b352cf0534aa1ae6b4d825d1e762e35d43f8a841",
  3201. "reference": "b352cf0534aa1ae6b4d825d1e762e35d43f8a841",
  3202. "shasum": ""
  3203. },
  3204. "require": {
  3205. "php": "^8.1"
  3206. },
  3207. "require-dev": {
  3208. "illuminate/support": "^10.0|^11.0|^12.0",
  3209. "nesbot/carbon": "^2.67|^3.0",
  3210. "pestphp/pest": "^2.36|^3.0",
  3211. "phpstan/phpstan": "^2.0",
  3212. "symfony/var-dumper": "^6.2.0|^7.0.0"
  3213. },
  3214. "type": "library",
  3215. "extra": {
  3216. "branch-alias": {
  3217. "dev-master": "2.x-dev"
  3218. }
  3219. },
  3220. "autoload": {
  3221. "psr-4": {
  3222. "Laravel\\SerializableClosure\\": "src/"
  3223. }
  3224. },
  3225. "notification-url": "https://packagist.org/downloads/",
  3226. "license": [
  3227. "MIT"
  3228. ],
  3229. "authors": [
  3230. {
  3231. "name": "Taylor Otwell",
  3232. "email": "taylor@laravel.com"
  3233. },
  3234. {
  3235. "name": "Nuno Maduro",
  3236. "email": "nuno@laravel.com"
  3237. }
  3238. ],
  3239. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  3240. "keywords": [
  3241. "closure",
  3242. "laravel",
  3243. "serializable"
  3244. ],
  3245. "support": {
  3246. "issues": "https://github.com/laravel/serializable-closure/issues",
  3247. "source": "https://github.com/laravel/serializable-closure"
  3248. },
  3249. "time": "2025-03-19T13:51:03+00:00"
  3250. },
  3251. {
  3252. "name": "laravel/tinker",
  3253. "version": "v2.10.1",
  3254. "source": {
  3255. "type": "git",
  3256. "url": "https://github.com/laravel/tinker.git",
  3257. "reference": "22177cc71807d38f2810c6204d8f7183d88a57d3"
  3258. },
  3259. "dist": {
  3260. "type": "zip",
  3261. "url": "https://api.github.com/repos/laravel/tinker/zipball/22177cc71807d38f2810c6204d8f7183d88a57d3",
  3262. "reference": "22177cc71807d38f2810c6204d8f7183d88a57d3",
  3263. "shasum": ""
  3264. },
  3265. "require": {
  3266. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  3267. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  3268. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  3269. "php": "^7.2.5|^8.0",
  3270. "psy/psysh": "^0.11.1|^0.12.0",
  3271. "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0"
  3272. },
  3273. "require-dev": {
  3274. "mockery/mockery": "~1.3.3|^1.4.2",
  3275. "phpstan/phpstan": "^1.10",
  3276. "phpunit/phpunit": "^8.5.8|^9.3.3|^10.0"
  3277. },
  3278. "suggest": {
  3279. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0)."
  3280. },
  3281. "type": "library",
  3282. "extra": {
  3283. "laravel": {
  3284. "providers": [
  3285. "Laravel\\Tinker\\TinkerServiceProvider"
  3286. ]
  3287. }
  3288. },
  3289. "autoload": {
  3290. "psr-4": {
  3291. "Laravel\\Tinker\\": "src/"
  3292. }
  3293. },
  3294. "notification-url": "https://packagist.org/downloads/",
  3295. "license": [
  3296. "MIT"
  3297. ],
  3298. "authors": [
  3299. {
  3300. "name": "Taylor Otwell",
  3301. "email": "taylor@laravel.com"
  3302. }
  3303. ],
  3304. "description": "Powerful REPL for the Laravel framework.",
  3305. "keywords": [
  3306. "REPL",
  3307. "Tinker",
  3308. "laravel",
  3309. "psysh"
  3310. ],
  3311. "support": {
  3312. "issues": "https://github.com/laravel/tinker/issues",
  3313. "source": "https://github.com/laravel/tinker/tree/v2.10.1"
  3314. },
  3315. "time": "2025-01-27T14:24:01+00:00"
  3316. },
  3317. {
  3318. "name": "laravel/wayfinder",
  3319. "version": "v0.1.11",
  3320. "source": {
  3321. "type": "git",
  3322. "url": "https://github.com/laravel/wayfinder.git",
  3323. "reference": "240f984fd8f48144e51dbe9efd2ec29d0b2aa075"
  3324. },
  3325. "dist": {
  3326. "type": "zip",
  3327. "url": "https://api.github.com/repos/laravel/wayfinder/zipball/240f984fd8f48144e51dbe9efd2ec29d0b2aa075",
  3328. "reference": "240f984fd8f48144e51dbe9efd2ec29d0b2aa075",
  3329. "shasum": ""
  3330. },
  3331. "require": {
  3332. "illuminate/console": "^11.0|^12.0",
  3333. "illuminate/filesystem": "^11.0|^12.0",
  3334. "illuminate/routing": "^11.0|^12.0",
  3335. "illuminate/support": "^11.0|^12.0",
  3336. "php": "^8.2"
  3337. },
  3338. "require-dev": {
  3339. "laravel/pint": "^1.21",
  3340. "orchestra/testbench": "^10.1 | ^9.0"
  3341. },
  3342. "type": "library",
  3343. "extra": {
  3344. "laravel": {
  3345. "providers": [
  3346. "Laravel\\Wayfinder\\WayfinderServiceProvider"
  3347. ]
  3348. }
  3349. },
  3350. "autoload": {
  3351. "psr-4": {
  3352. "Laravel\\Wayfinder\\": "src"
  3353. }
  3354. },
  3355. "notification-url": "https://packagist.org/downloads/",
  3356. "license": [
  3357. "MIT"
  3358. ],
  3359. "authors": [
  3360. {
  3361. "name": "Taylor Otwell",
  3362. "email": "taylor@laravel.com"
  3363. }
  3364. ],
  3365. "description": "Generate TypeScript representations of your Laravel actions and routes.",
  3366. "homepage": "https://github.com/laravel/wayfinder",
  3367. "keywords": [
  3368. "laravel",
  3369. "php",
  3370. "routes",
  3371. "typescript"
  3372. ],
  3373. "support": {
  3374. "issues": "https://github.com/laravel/wayfinder/issues",
  3375. "source": "https://github.com/laravel/wayfinder"
  3376. },
  3377. "time": "2025-09-02T16:25:15+00:00"
  3378. },
  3379. {
  3380. "name": "league/commonmark",
  3381. "version": "2.7.1",
  3382. "source": {
  3383. "type": "git",
  3384. "url": "https://github.com/thephpleague/commonmark.git",
  3385. "reference": "10732241927d3971d28e7ea7b5712721fa2296ca"
  3386. },
  3387. "dist": {
  3388. "type": "zip",
  3389. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/10732241927d3971d28e7ea7b5712721fa2296ca",
  3390. "reference": "10732241927d3971d28e7ea7b5712721fa2296ca",
  3391. "shasum": ""
  3392. },
  3393. "require": {
  3394. "ext-mbstring": "*",
  3395. "league/config": "^1.1.1",
  3396. "php": "^7.4 || ^8.0",
  3397. "psr/event-dispatcher": "^1.0",
  3398. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  3399. "symfony/polyfill-php80": "^1.16"
  3400. },
  3401. "require-dev": {
  3402. "cebe/markdown": "^1.0",
  3403. "commonmark/cmark": "0.31.1",
  3404. "commonmark/commonmark.js": "0.31.1",
  3405. "composer/package-versions-deprecated": "^1.8",
  3406. "embed/embed": "^4.4",
  3407. "erusev/parsedown": "^1.0",
  3408. "ext-json": "*",
  3409. "github/gfm": "0.29.0",
  3410. "michelf/php-markdown": "^1.4 || ^2.0",
  3411. "nyholm/psr7": "^1.5",
  3412. "phpstan/phpstan": "^1.8.2",
  3413. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  3414. "scrutinizer/ocular": "^1.8.1",
  3415. "symfony/finder": "^5.3 | ^6.0 | ^7.0",
  3416. "symfony/process": "^5.4 | ^6.0 | ^7.0",
  3417. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 | ^7.0",
  3418. "unleashedtech/php-coding-standard": "^3.1.1",
  3419. "vimeo/psalm": "^4.24.0 || ^5.0.0 || ^6.0.0"
  3420. },
  3421. "suggest": {
  3422. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  3423. },
  3424. "type": "library",
  3425. "extra": {
  3426. "branch-alias": {
  3427. "dev-main": "2.8-dev"
  3428. }
  3429. },
  3430. "autoload": {
  3431. "psr-4": {
  3432. "League\\CommonMark\\": "src"
  3433. }
  3434. },
  3435. "notification-url": "https://packagist.org/downloads/",
  3436. "license": [
  3437. "BSD-3-Clause"
  3438. ],
  3439. "authors": [
  3440. {
  3441. "name": "Colin O'Dell",
  3442. "email": "colinodell@gmail.com",
  3443. "homepage": "https://www.colinodell.com",
  3444. "role": "Lead Developer"
  3445. }
  3446. ],
  3447. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  3448. "homepage": "https://commonmark.thephpleague.com",
  3449. "keywords": [
  3450. "commonmark",
  3451. "flavored",
  3452. "gfm",
  3453. "github",
  3454. "github-flavored",
  3455. "markdown",
  3456. "md",
  3457. "parser"
  3458. ],
  3459. "support": {
  3460. "docs": "https://commonmark.thephpleague.com/",
  3461. "forum": "https://github.com/thephpleague/commonmark/discussions",
  3462. "issues": "https://github.com/thephpleague/commonmark/issues",
  3463. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  3464. "source": "https://github.com/thephpleague/commonmark"
  3465. },
  3466. "funding": [
  3467. {
  3468. "url": "https://www.colinodell.com/sponsor",
  3469. "type": "custom"
  3470. },
  3471. {
  3472. "url": "https://www.paypal.me/colinpodell/10.00",
  3473. "type": "custom"
  3474. },
  3475. {
  3476. "url": "https://github.com/colinodell",
  3477. "type": "github"
  3478. },
  3479. {
  3480. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  3481. "type": "tidelift"
  3482. }
  3483. ],
  3484. "time": "2025-07-20T12:47:49+00:00"
  3485. },
  3486. {
  3487. "name": "league/config",
  3488. "version": "v1.2.0",
  3489. "source": {
  3490. "type": "git",
  3491. "url": "https://github.com/thephpleague/config.git",
  3492. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  3493. },
  3494. "dist": {
  3495. "type": "zip",
  3496. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  3497. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  3498. "shasum": ""
  3499. },
  3500. "require": {
  3501. "dflydev/dot-access-data": "^3.0.1",
  3502. "nette/schema": "^1.2",
  3503. "php": "^7.4 || ^8.0"
  3504. },
  3505. "require-dev": {
  3506. "phpstan/phpstan": "^1.8.2",
  3507. "phpunit/phpunit": "^9.5.5",
  3508. "scrutinizer/ocular": "^1.8.1",
  3509. "unleashedtech/php-coding-standard": "^3.1",
  3510. "vimeo/psalm": "^4.7.3"
  3511. },
  3512. "type": "library",
  3513. "extra": {
  3514. "branch-alias": {
  3515. "dev-main": "1.2-dev"
  3516. }
  3517. },
  3518. "autoload": {
  3519. "psr-4": {
  3520. "League\\Config\\": "src"
  3521. }
  3522. },
  3523. "notification-url": "https://packagist.org/downloads/",
  3524. "license": [
  3525. "BSD-3-Clause"
  3526. ],
  3527. "authors": [
  3528. {
  3529. "name": "Colin O'Dell",
  3530. "email": "colinodell@gmail.com",
  3531. "homepage": "https://www.colinodell.com",
  3532. "role": "Lead Developer"
  3533. }
  3534. ],
  3535. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  3536. "homepage": "https://config.thephpleague.com",
  3537. "keywords": [
  3538. "array",
  3539. "config",
  3540. "configuration",
  3541. "dot",
  3542. "dot-access",
  3543. "nested",
  3544. "schema"
  3545. ],
  3546. "support": {
  3547. "docs": "https://config.thephpleague.com/",
  3548. "issues": "https://github.com/thephpleague/config/issues",
  3549. "rss": "https://github.com/thephpleague/config/releases.atom",
  3550. "source": "https://github.com/thephpleague/config"
  3551. },
  3552. "funding": [
  3553. {
  3554. "url": "https://www.colinodell.com/sponsor",
  3555. "type": "custom"
  3556. },
  3557. {
  3558. "url": "https://www.paypal.me/colinpodell/10.00",
  3559. "type": "custom"
  3560. },
  3561. {
  3562. "url": "https://github.com/colinodell",
  3563. "type": "github"
  3564. }
  3565. ],
  3566. "time": "2022-12-11T20:36:23+00:00"
  3567. },
  3568. {
  3569. "name": "league/flysystem",
  3570. "version": "3.30.0",
  3571. "source": {
  3572. "type": "git",
  3573. "url": "https://github.com/thephpleague/flysystem.git",
  3574. "reference": "2203e3151755d874bb2943649dae1eb8533ac93e"
  3575. },
  3576. "dist": {
  3577. "type": "zip",
  3578. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/2203e3151755d874bb2943649dae1eb8533ac93e",
  3579. "reference": "2203e3151755d874bb2943649dae1eb8533ac93e",
  3580. "shasum": ""
  3581. },
  3582. "require": {
  3583. "league/flysystem-local": "^3.0.0",
  3584. "league/mime-type-detection": "^1.0.0",
  3585. "php": "^8.0.2"
  3586. },
  3587. "conflict": {
  3588. "async-aws/core": "<1.19.0",
  3589. "async-aws/s3": "<1.14.0",
  3590. "aws/aws-sdk-php": "3.209.31 || 3.210.0",
  3591. "guzzlehttp/guzzle": "<7.0",
  3592. "guzzlehttp/ringphp": "<1.1.1",
  3593. "phpseclib/phpseclib": "3.0.15",
  3594. "symfony/http-client": "<5.2"
  3595. },
  3596. "require-dev": {
  3597. "async-aws/s3": "^1.5 || ^2.0",
  3598. "async-aws/simple-s3": "^1.1 || ^2.0",
  3599. "aws/aws-sdk-php": "^3.295.10",
  3600. "composer/semver": "^3.0",
  3601. "ext-fileinfo": "*",
  3602. "ext-ftp": "*",
  3603. "ext-mongodb": "^1.3|^2",
  3604. "ext-zip": "*",
  3605. "friendsofphp/php-cs-fixer": "^3.5",
  3606. "google/cloud-storage": "^1.23",
  3607. "guzzlehttp/psr7": "^2.6",
  3608. "microsoft/azure-storage-blob": "^1.1",
  3609. "mongodb/mongodb": "^1.2|^2",
  3610. "phpseclib/phpseclib": "^3.0.36",
  3611. "phpstan/phpstan": "^1.10",
  3612. "phpunit/phpunit": "^9.5.11|^10.0",
  3613. "sabre/dav": "^4.6.0"
  3614. },
  3615. "type": "library",
  3616. "autoload": {
  3617. "psr-4": {
  3618. "League\\Flysystem\\": "src"
  3619. }
  3620. },
  3621. "notification-url": "https://packagist.org/downloads/",
  3622. "license": [
  3623. "MIT"
  3624. ],
  3625. "authors": [
  3626. {
  3627. "name": "Frank de Jonge",
  3628. "email": "info@frankdejonge.nl"
  3629. }
  3630. ],
  3631. "description": "File storage abstraction for PHP",
  3632. "keywords": [
  3633. "WebDAV",
  3634. "aws",
  3635. "cloud",
  3636. "file",
  3637. "files",
  3638. "filesystem",
  3639. "filesystems",
  3640. "ftp",
  3641. "s3",
  3642. "sftp",
  3643. "storage"
  3644. ],
  3645. "support": {
  3646. "issues": "https://github.com/thephpleague/flysystem/issues",
  3647. "source": "https://github.com/thephpleague/flysystem/tree/3.30.0"
  3648. },
  3649. "time": "2025-06-25T13:29:59+00:00"
  3650. },
  3651. {
  3652. "name": "league/flysystem-local",
  3653. "version": "3.30.0",
  3654. "source": {
  3655. "type": "git",
  3656. "url": "https://github.com/thephpleague/flysystem-local.git",
  3657. "reference": "6691915f77c7fb69adfb87dcd550052dc184ee10"
  3658. },
  3659. "dist": {
  3660. "type": "zip",
  3661. "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/6691915f77c7fb69adfb87dcd550052dc184ee10",
  3662. "reference": "6691915f77c7fb69adfb87dcd550052dc184ee10",
  3663. "shasum": ""
  3664. },
  3665. "require": {
  3666. "ext-fileinfo": "*",
  3667. "league/flysystem": "^3.0.0",
  3668. "league/mime-type-detection": "^1.0.0",
  3669. "php": "^8.0.2"
  3670. },
  3671. "type": "library",
  3672. "autoload": {
  3673. "psr-4": {
  3674. "League\\Flysystem\\Local\\": ""
  3675. }
  3676. },
  3677. "notification-url": "https://packagist.org/downloads/",
  3678. "license": [
  3679. "MIT"
  3680. ],
  3681. "authors": [
  3682. {
  3683. "name": "Frank de Jonge",
  3684. "email": "info@frankdejonge.nl"
  3685. }
  3686. ],
  3687. "description": "Local filesystem adapter for Flysystem.",
  3688. "keywords": [
  3689. "Flysystem",
  3690. "file",
  3691. "files",
  3692. "filesystem",
  3693. "local"
  3694. ],
  3695. "support": {
  3696. "source": "https://github.com/thephpleague/flysystem-local/tree/3.30.0"
  3697. },
  3698. "time": "2025-05-21T10:34:19+00:00"
  3699. },
  3700. {
  3701. "name": "league/mime-type-detection",
  3702. "version": "1.16.0",
  3703. "source": {
  3704. "type": "git",
  3705. "url": "https://github.com/thephpleague/mime-type-detection.git",
  3706. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9"
  3707. },
  3708. "dist": {
  3709. "type": "zip",
  3710. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/2d6702ff215bf922936ccc1ad31007edc76451b9",
  3711. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9",
  3712. "shasum": ""
  3713. },
  3714. "require": {
  3715. "ext-fileinfo": "*",
  3716. "php": "^7.4 || ^8.0"
  3717. },
  3718. "require-dev": {
  3719. "friendsofphp/php-cs-fixer": "^3.2",
  3720. "phpstan/phpstan": "^0.12.68",
  3721. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  3722. },
  3723. "type": "library",
  3724. "autoload": {
  3725. "psr-4": {
  3726. "League\\MimeTypeDetection\\": "src"
  3727. }
  3728. },
  3729. "notification-url": "https://packagist.org/downloads/",
  3730. "license": [
  3731. "MIT"
  3732. ],
  3733. "authors": [
  3734. {
  3735. "name": "Frank de Jonge",
  3736. "email": "info@frankdejonge.nl"
  3737. }
  3738. ],
  3739. "description": "Mime-type detection for Flysystem",
  3740. "support": {
  3741. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  3742. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.16.0"
  3743. },
  3744. "funding": [
  3745. {
  3746. "url": "https://github.com/frankdejonge",
  3747. "type": "github"
  3748. },
  3749. {
  3750. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  3751. "type": "tidelift"
  3752. }
  3753. ],
  3754. "time": "2024-09-21T08:32:55+00:00"
  3755. },
  3756. {
  3757. "name": "league/uri",
  3758. "version": "7.5.1",
  3759. "source": {
  3760. "type": "git",
  3761. "url": "https://github.com/thephpleague/uri.git",
  3762. "reference": "81fb5145d2644324614cc532b28efd0215bda430"
  3763. },
  3764. "dist": {
  3765. "type": "zip",
  3766. "url": "https://api.github.com/repos/thephpleague/uri/zipball/81fb5145d2644324614cc532b28efd0215bda430",
  3767. "reference": "81fb5145d2644324614cc532b28efd0215bda430",
  3768. "shasum": ""
  3769. },
  3770. "require": {
  3771. "league/uri-interfaces": "^7.5",
  3772. "php": "^8.1"
  3773. },
  3774. "conflict": {
  3775. "league/uri-schemes": "^1.0"
  3776. },
  3777. "suggest": {
  3778. "ext-bcmath": "to improve IPV4 host parsing",
  3779. "ext-fileinfo": "to create Data URI from file contennts",
  3780. "ext-gmp": "to improve IPV4 host parsing",
  3781. "ext-intl": "to handle IDN host with the best performance",
  3782. "jeremykendall/php-domain-parser": "to resolve Public Suffix and Top Level Domain",
  3783. "league/uri-components": "Needed to easily manipulate URI objects components",
  3784. "php-64bit": "to improve IPV4 host parsing",
  3785. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  3786. },
  3787. "type": "library",
  3788. "extra": {
  3789. "branch-alias": {
  3790. "dev-master": "7.x-dev"
  3791. }
  3792. },
  3793. "autoload": {
  3794. "psr-4": {
  3795. "League\\Uri\\": ""
  3796. }
  3797. },
  3798. "notification-url": "https://packagist.org/downloads/",
  3799. "license": [
  3800. "MIT"
  3801. ],
  3802. "authors": [
  3803. {
  3804. "name": "Ignace Nyamagana Butera",
  3805. "email": "nyamsprod@gmail.com",
  3806. "homepage": "https://nyamsprod.com"
  3807. }
  3808. ],
  3809. "description": "URI manipulation library",
  3810. "homepage": "https://uri.thephpleague.com",
  3811. "keywords": [
  3812. "data-uri",
  3813. "file-uri",
  3814. "ftp",
  3815. "hostname",
  3816. "http",
  3817. "https",
  3818. "middleware",
  3819. "parse_str",
  3820. "parse_url",
  3821. "psr-7",
  3822. "query-string",
  3823. "querystring",
  3824. "rfc3986",
  3825. "rfc3987",
  3826. "rfc6570",
  3827. "uri",
  3828. "uri-template",
  3829. "url",
  3830. "ws"
  3831. ],
  3832. "support": {
  3833. "docs": "https://uri.thephpleague.com",
  3834. "forum": "https://thephpleague.slack.com",
  3835. "issues": "https://github.com/thephpleague/uri-src/issues",
  3836. "source": "https://github.com/thephpleague/uri/tree/7.5.1"
  3837. },
  3838. "funding": [
  3839. {
  3840. "url": "https://github.com/sponsors/nyamsprod",
  3841. "type": "github"
  3842. }
  3843. ],
  3844. "time": "2024-12-08T08:40:02+00:00"
  3845. },
  3846. {
  3847. "name": "league/uri-interfaces",
  3848. "version": "7.5.0",
  3849. "source": {
  3850. "type": "git",
  3851. "url": "https://github.com/thephpleague/uri-interfaces.git",
  3852. "reference": "08cfc6c4f3d811584fb09c37e2849e6a7f9b0742"
  3853. },
  3854. "dist": {
  3855. "type": "zip",
  3856. "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/08cfc6c4f3d811584fb09c37e2849e6a7f9b0742",
  3857. "reference": "08cfc6c4f3d811584fb09c37e2849e6a7f9b0742",
  3858. "shasum": ""
  3859. },
  3860. "require": {
  3861. "ext-filter": "*",
  3862. "php": "^8.1",
  3863. "psr/http-factory": "^1",
  3864. "psr/http-message": "^1.1 || ^2.0"
  3865. },
  3866. "suggest": {
  3867. "ext-bcmath": "to improve IPV4 host parsing",
  3868. "ext-gmp": "to improve IPV4 host parsing",
  3869. "ext-intl": "to handle IDN host with the best performance",
  3870. "php-64bit": "to improve IPV4 host parsing",
  3871. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  3872. },
  3873. "type": "library",
  3874. "extra": {
  3875. "branch-alias": {
  3876. "dev-master": "7.x-dev"
  3877. }
  3878. },
  3879. "autoload": {
  3880. "psr-4": {
  3881. "League\\Uri\\": ""
  3882. }
  3883. },
  3884. "notification-url": "https://packagist.org/downloads/",
  3885. "license": [
  3886. "MIT"
  3887. ],
  3888. "authors": [
  3889. {
  3890. "name": "Ignace Nyamagana Butera",
  3891. "email": "nyamsprod@gmail.com",
  3892. "homepage": "https://nyamsprod.com"
  3893. }
  3894. ],
  3895. "description": "Common interfaces and classes for URI representation and interaction",
  3896. "homepage": "https://uri.thephpleague.com",
  3897. "keywords": [
  3898. "data-uri",
  3899. "file-uri",
  3900. "ftp",
  3901. "hostname",
  3902. "http",
  3903. "https",
  3904. "parse_str",
  3905. "parse_url",
  3906. "psr-7",
  3907. "query-string",
  3908. "querystring",
  3909. "rfc3986",
  3910. "rfc3987",
  3911. "rfc6570",
  3912. "uri",
  3913. "url",
  3914. "ws"
  3915. ],
  3916. "support": {
  3917. "docs": "https://uri.thephpleague.com",
  3918. "forum": "https://thephpleague.slack.com",
  3919. "issues": "https://github.com/thephpleague/uri-src/issues",
  3920. "source": "https://github.com/thephpleague/uri-interfaces/tree/7.5.0"
  3921. },
  3922. "funding": [
  3923. {
  3924. "url": "https://github.com/sponsors/nyamsprod",
  3925. "type": "github"
  3926. }
  3927. ],
  3928. "time": "2024-12-08T08:18:47+00:00"
  3929. },
  3930. {
  3931. "name": "monolog/monolog",
  3932. "version": "3.9.0",
  3933. "source": {
  3934. "type": "git",
  3935. "url": "https://github.com/Seldaek/monolog.git",
  3936. "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6"
  3937. },
  3938. "dist": {
  3939. "type": "zip",
  3940. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/10d85740180ecba7896c87e06a166e0c95a0e3b6",
  3941. "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6",
  3942. "shasum": ""
  3943. },
  3944. "require": {
  3945. "php": ">=8.1",
  3946. "psr/log": "^2.0 || ^3.0"
  3947. },
  3948. "provide": {
  3949. "psr/log-implementation": "3.0.0"
  3950. },
  3951. "require-dev": {
  3952. "aws/aws-sdk-php": "^3.0",
  3953. "doctrine/couchdb": "~1.0@dev",
  3954. "elasticsearch/elasticsearch": "^7 || ^8",
  3955. "ext-json": "*",
  3956. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  3957. "guzzlehttp/guzzle": "^7.4.5",
  3958. "guzzlehttp/psr7": "^2.2",
  3959. "mongodb/mongodb": "^1.8",
  3960. "php-amqplib/php-amqplib": "~2.4 || ^3",
  3961. "php-console/php-console": "^3.1.8",
  3962. "phpstan/phpstan": "^2",
  3963. "phpstan/phpstan-deprecation-rules": "^2",
  3964. "phpstan/phpstan-strict-rules": "^2",
  3965. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  3966. "predis/predis": "^1.1 || ^2",
  3967. "rollbar/rollbar": "^4.0",
  3968. "ruflin/elastica": "^7 || ^8",
  3969. "symfony/mailer": "^5.4 || ^6",
  3970. "symfony/mime": "^5.4 || ^6"
  3971. },
  3972. "suggest": {
  3973. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  3974. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  3975. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  3976. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  3977. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  3978. "ext-mbstring": "Allow to work properly with unicode symbols",
  3979. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  3980. "ext-openssl": "Required to send log messages using SSL",
  3981. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  3982. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  3983. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  3984. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  3985. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  3986. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  3987. },
  3988. "type": "library",
  3989. "extra": {
  3990. "branch-alias": {
  3991. "dev-main": "3.x-dev"
  3992. }
  3993. },
  3994. "autoload": {
  3995. "psr-4": {
  3996. "Monolog\\": "src/Monolog"
  3997. }
  3998. },
  3999. "notification-url": "https://packagist.org/downloads/",
  4000. "license": [
  4001. "MIT"
  4002. ],
  4003. "authors": [
  4004. {
  4005. "name": "Jordi Boggiano",
  4006. "email": "j.boggiano@seld.be",
  4007. "homepage": "https://seld.be"
  4008. }
  4009. ],
  4010. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  4011. "homepage": "https://github.com/Seldaek/monolog",
  4012. "keywords": [
  4013. "log",
  4014. "logging",
  4015. "psr-3"
  4016. ],
  4017. "support": {
  4018. "issues": "https://github.com/Seldaek/monolog/issues",
  4019. "source": "https://github.com/Seldaek/monolog/tree/3.9.0"
  4020. },
  4021. "funding": [
  4022. {
  4023. "url": "https://github.com/Seldaek",
  4024. "type": "github"
  4025. },
  4026. {
  4027. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  4028. "type": "tidelift"
  4029. }
  4030. ],
  4031. "time": "2025-03-24T10:02:05+00:00"
  4032. },
  4033. {
  4034. "name": "nesbot/carbon",
  4035. "version": "3.10.2",
  4036. "source": {
  4037. "type": "git",
  4038. "url": "https://github.com/CarbonPHP/carbon.git",
  4039. "reference": "76b5c07b8a9d2025ed1610e14cef1f3fd6ad2c24"
  4040. },
  4041. "dist": {
  4042. "type": "zip",
  4043. "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/76b5c07b8a9d2025ed1610e14cef1f3fd6ad2c24",
  4044. "reference": "76b5c07b8a9d2025ed1610e14cef1f3fd6ad2c24",
  4045. "shasum": ""
  4046. },
  4047. "require": {
  4048. "carbonphp/carbon-doctrine-types": "<100.0",
  4049. "ext-json": "*",
  4050. "php": "^8.1",
  4051. "psr/clock": "^1.0",
  4052. "symfony/clock": "^6.3.12 || ^7.0",
  4053. "symfony/polyfill-mbstring": "^1.0",
  4054. "symfony/translation": "^4.4.18 || ^5.2.1 || ^6.0 || ^7.0"
  4055. },
  4056. "provide": {
  4057. "psr/clock-implementation": "1.0"
  4058. },
  4059. "require-dev": {
  4060. "doctrine/dbal": "^3.6.3 || ^4.0",
  4061. "doctrine/orm": "^2.15.2 || ^3.0",
  4062. "friendsofphp/php-cs-fixer": "^3.75.0",
  4063. "kylekatarnls/multi-tester": "^2.5.3",
  4064. "phpmd/phpmd": "^2.15.0",
  4065. "phpstan/extension-installer": "^1.4.3",
  4066. "phpstan/phpstan": "^2.1.17",
  4067. "phpunit/phpunit": "^10.5.46",
  4068. "squizlabs/php_codesniffer": "^3.13.0"
  4069. },
  4070. "bin": [
  4071. "bin/carbon"
  4072. ],
  4073. "type": "library",
  4074. "extra": {
  4075. "laravel": {
  4076. "providers": [
  4077. "Carbon\\Laravel\\ServiceProvider"
  4078. ]
  4079. },
  4080. "phpstan": {
  4081. "includes": [
  4082. "extension.neon"
  4083. ]
  4084. },
  4085. "branch-alias": {
  4086. "dev-2.x": "2.x-dev",
  4087. "dev-master": "3.x-dev"
  4088. }
  4089. },
  4090. "autoload": {
  4091. "psr-4": {
  4092. "Carbon\\": "src/Carbon/"
  4093. }
  4094. },
  4095. "notification-url": "https://packagist.org/downloads/",
  4096. "license": [
  4097. "MIT"
  4098. ],
  4099. "authors": [
  4100. {
  4101. "name": "Brian Nesbitt",
  4102. "email": "brian@nesbot.com",
  4103. "homepage": "https://markido.com"
  4104. },
  4105. {
  4106. "name": "kylekatarnls",
  4107. "homepage": "https://github.com/kylekatarnls"
  4108. }
  4109. ],
  4110. "description": "An API extension for DateTime that supports 281 different languages.",
  4111. "homepage": "https://carbon.nesbot.com",
  4112. "keywords": [
  4113. "date",
  4114. "datetime",
  4115. "time"
  4116. ],
  4117. "support": {
  4118. "docs": "https://carbon.nesbot.com/docs",
  4119. "issues": "https://github.com/CarbonPHP/carbon/issues",
  4120. "source": "https://github.com/CarbonPHP/carbon"
  4121. },
  4122. "funding": [
  4123. {
  4124. "url": "https://github.com/sponsors/kylekatarnls",
  4125. "type": "github"
  4126. },
  4127. {
  4128. "url": "https://opencollective.com/Carbon#sponsor",
  4129. "type": "opencollective"
  4130. },
  4131. {
  4132. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  4133. "type": "tidelift"
  4134. }
  4135. ],
  4136. "time": "2025-08-02T09:36:06+00:00"
  4137. },
  4138. {
  4139. "name": "nette/schema",
  4140. "version": "v1.3.2",
  4141. "source": {
  4142. "type": "git",
  4143. "url": "https://github.com/nette/schema.git",
  4144. "reference": "da801d52f0354f70a638673c4a0f04e16529431d"
  4145. },
  4146. "dist": {
  4147. "type": "zip",
  4148. "url": "https://api.github.com/repos/nette/schema/zipball/da801d52f0354f70a638673c4a0f04e16529431d",
  4149. "reference": "da801d52f0354f70a638673c4a0f04e16529431d",
  4150. "shasum": ""
  4151. },
  4152. "require": {
  4153. "nette/utils": "^4.0",
  4154. "php": "8.1 - 8.4"
  4155. },
  4156. "require-dev": {
  4157. "nette/tester": "^2.5.2",
  4158. "phpstan/phpstan-nette": "^1.0",
  4159. "tracy/tracy": "^2.8"
  4160. },
  4161. "type": "library",
  4162. "extra": {
  4163. "branch-alias": {
  4164. "dev-master": "1.3-dev"
  4165. }
  4166. },
  4167. "autoload": {
  4168. "classmap": [
  4169. "src/"
  4170. ]
  4171. },
  4172. "notification-url": "https://packagist.org/downloads/",
  4173. "license": [
  4174. "BSD-3-Clause",
  4175. "GPL-2.0-only",
  4176. "GPL-3.0-only"
  4177. ],
  4178. "authors": [
  4179. {
  4180. "name": "David Grudl",
  4181. "homepage": "https://davidgrudl.com"
  4182. },
  4183. {
  4184. "name": "Nette Community",
  4185. "homepage": "https://nette.org/contributors"
  4186. }
  4187. ],
  4188. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  4189. "homepage": "https://nette.org",
  4190. "keywords": [
  4191. "config",
  4192. "nette"
  4193. ],
  4194. "support": {
  4195. "issues": "https://github.com/nette/schema/issues",
  4196. "source": "https://github.com/nette/schema/tree/v1.3.2"
  4197. },
  4198. "time": "2024-10-06T23:10:23+00:00"
  4199. },
  4200. {
  4201. "name": "nette/utils",
  4202. "version": "v4.0.8",
  4203. "source": {
  4204. "type": "git",
  4205. "url": "https://github.com/nette/utils.git",
  4206. "reference": "c930ca4e3cf4f17dcfb03037703679d2396d2ede"
  4207. },
  4208. "dist": {
  4209. "type": "zip",
  4210. "url": "https://api.github.com/repos/nette/utils/zipball/c930ca4e3cf4f17dcfb03037703679d2396d2ede",
  4211. "reference": "c930ca4e3cf4f17dcfb03037703679d2396d2ede",
  4212. "shasum": ""
  4213. },
  4214. "require": {
  4215. "php": "8.0 - 8.5"
  4216. },
  4217. "conflict": {
  4218. "nette/finder": "<3",
  4219. "nette/schema": "<1.2.2"
  4220. },
  4221. "require-dev": {
  4222. "jetbrains/phpstorm-attributes": "^1.2",
  4223. "nette/tester": "^2.5",
  4224. "phpstan/phpstan-nette": "^2.0@stable",
  4225. "tracy/tracy": "^2.9"
  4226. },
  4227. "suggest": {
  4228. "ext-gd": "to use Image",
  4229. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  4230. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  4231. "ext-json": "to use Nette\\Utils\\Json",
  4232. "ext-mbstring": "to use Strings::lower() etc...",
  4233. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  4234. },
  4235. "type": "library",
  4236. "extra": {
  4237. "branch-alias": {
  4238. "dev-master": "4.0-dev"
  4239. }
  4240. },
  4241. "autoload": {
  4242. "psr-4": {
  4243. "Nette\\": "src"
  4244. },
  4245. "classmap": [
  4246. "src/"
  4247. ]
  4248. },
  4249. "notification-url": "https://packagist.org/downloads/",
  4250. "license": [
  4251. "BSD-3-Clause",
  4252. "GPL-2.0-only",
  4253. "GPL-3.0-only"
  4254. ],
  4255. "authors": [
  4256. {
  4257. "name": "David Grudl",
  4258. "homepage": "https://davidgrudl.com"
  4259. },
  4260. {
  4261. "name": "Nette Community",
  4262. "homepage": "https://nette.org/contributors"
  4263. }
  4264. ],
  4265. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  4266. "homepage": "https://nette.org",
  4267. "keywords": [
  4268. "array",
  4269. "core",
  4270. "datetime",
  4271. "images",
  4272. "json",
  4273. "nette",
  4274. "paginator",
  4275. "password",
  4276. "slugify",
  4277. "string",
  4278. "unicode",
  4279. "utf-8",
  4280. "utility",
  4281. "validation"
  4282. ],
  4283. "support": {
  4284. "issues": "https://github.com/nette/utils/issues",
  4285. "source": "https://github.com/nette/utils/tree/v4.0.8"
  4286. },
  4287. "time": "2025-08-06T21:43:34+00:00"
  4288. },
  4289. {
  4290. "name": "nikic/php-parser",
  4291. "version": "v5.6.1",
  4292. "source": {
  4293. "type": "git",
  4294. "url": "https://github.com/nikic/PHP-Parser.git",
  4295. "reference": "f103601b29efebd7ff4a1ca7b3eeea9e3336a2a2"
  4296. },
  4297. "dist": {
  4298. "type": "zip",
  4299. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/f103601b29efebd7ff4a1ca7b3eeea9e3336a2a2",
  4300. "reference": "f103601b29efebd7ff4a1ca7b3eeea9e3336a2a2",
  4301. "shasum": ""
  4302. },
  4303. "require": {
  4304. "ext-ctype": "*",
  4305. "ext-json": "*",
  4306. "ext-tokenizer": "*",
  4307. "php": ">=7.4"
  4308. },
  4309. "require-dev": {
  4310. "ircmaxell/php-yacc": "^0.0.7",
  4311. "phpunit/phpunit": "^9.0"
  4312. },
  4313. "bin": [
  4314. "bin/php-parse"
  4315. ],
  4316. "type": "library",
  4317. "extra": {
  4318. "branch-alias": {
  4319. "dev-master": "5.x-dev"
  4320. }
  4321. },
  4322. "autoload": {
  4323. "psr-4": {
  4324. "PhpParser\\": "lib/PhpParser"
  4325. }
  4326. },
  4327. "notification-url": "https://packagist.org/downloads/",
  4328. "license": [
  4329. "BSD-3-Clause"
  4330. ],
  4331. "authors": [
  4332. {
  4333. "name": "Nikita Popov"
  4334. }
  4335. ],
  4336. "description": "A PHP parser written in PHP",
  4337. "keywords": [
  4338. "parser",
  4339. "php"
  4340. ],
  4341. "support": {
  4342. "issues": "https://github.com/nikic/PHP-Parser/issues",
  4343. "source": "https://github.com/nikic/PHP-Parser/tree/v5.6.1"
  4344. },
  4345. "time": "2025-08-13T20:13:15+00:00"
  4346. },
  4347. {
  4348. "name": "nunomaduro/termwind",
  4349. "version": "v2.3.1",
  4350. "source": {
  4351. "type": "git",
  4352. "url": "https://github.com/nunomaduro/termwind.git",
  4353. "reference": "dfa08f390e509967a15c22493dc0bac5733d9123"
  4354. },
  4355. "dist": {
  4356. "type": "zip",
  4357. "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/dfa08f390e509967a15c22493dc0bac5733d9123",
  4358. "reference": "dfa08f390e509967a15c22493dc0bac5733d9123",
  4359. "shasum": ""
  4360. },
  4361. "require": {
  4362. "ext-mbstring": "*",
  4363. "php": "^8.2",
  4364. "symfony/console": "^7.2.6"
  4365. },
  4366. "require-dev": {
  4367. "illuminate/console": "^11.44.7",
  4368. "laravel/pint": "^1.22.0",
  4369. "mockery/mockery": "^1.6.12",
  4370. "pestphp/pest": "^2.36.0 || ^3.8.2",
  4371. "phpstan/phpstan": "^1.12.25",
  4372. "phpstan/phpstan-strict-rules": "^1.6.2",
  4373. "symfony/var-dumper": "^7.2.6",
  4374. "thecodingmachine/phpstan-strict-rules": "^1.0.0"
  4375. },
  4376. "type": "library",
  4377. "extra": {
  4378. "laravel": {
  4379. "providers": [
  4380. "Termwind\\Laravel\\TermwindServiceProvider"
  4381. ]
  4382. },
  4383. "branch-alias": {
  4384. "dev-2.x": "2.x-dev"
  4385. }
  4386. },
  4387. "autoload": {
  4388. "files": [
  4389. "src/Functions.php"
  4390. ],
  4391. "psr-4": {
  4392. "Termwind\\": "src/"
  4393. }
  4394. },
  4395. "notification-url": "https://packagist.org/downloads/",
  4396. "license": [
  4397. "MIT"
  4398. ],
  4399. "authors": [
  4400. {
  4401. "name": "Nuno Maduro",
  4402. "email": "enunomaduro@gmail.com"
  4403. }
  4404. ],
  4405. "description": "Its like Tailwind CSS, but for the console.",
  4406. "keywords": [
  4407. "cli",
  4408. "console",
  4409. "css",
  4410. "package",
  4411. "php",
  4412. "style"
  4413. ],
  4414. "support": {
  4415. "issues": "https://github.com/nunomaduro/termwind/issues",
  4416. "source": "https://github.com/nunomaduro/termwind/tree/v2.3.1"
  4417. },
  4418. "funding": [
  4419. {
  4420. "url": "https://www.paypal.com/paypalme/enunomaduro",
  4421. "type": "custom"
  4422. },
  4423. {
  4424. "url": "https://github.com/nunomaduro",
  4425. "type": "github"
  4426. },
  4427. {
  4428. "url": "https://github.com/xiCO2k",
  4429. "type": "github"
  4430. }
  4431. ],
  4432. "time": "2025-05-08T08:14:37+00:00"
  4433. },
  4434. {
  4435. "name": "phpoption/phpoption",
  4436. "version": "1.9.4",
  4437. "source": {
  4438. "type": "git",
  4439. "url": "https://github.com/schmittjoh/php-option.git",
  4440. "reference": "638a154f8d4ee6a5cfa96d6a34dfbe0cffa9566d"
  4441. },
  4442. "dist": {
  4443. "type": "zip",
  4444. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/638a154f8d4ee6a5cfa96d6a34dfbe0cffa9566d",
  4445. "reference": "638a154f8d4ee6a5cfa96d6a34dfbe0cffa9566d",
  4446. "shasum": ""
  4447. },
  4448. "require": {
  4449. "php": "^7.2.5 || ^8.0"
  4450. },
  4451. "require-dev": {
  4452. "bamarni/composer-bin-plugin": "^1.8.2",
  4453. "phpunit/phpunit": "^8.5.44 || ^9.6.25 || ^10.5.53 || ^11.5.34"
  4454. },
  4455. "type": "library",
  4456. "extra": {
  4457. "bamarni-bin": {
  4458. "bin-links": true,
  4459. "forward-command": false
  4460. },
  4461. "branch-alias": {
  4462. "dev-master": "1.9-dev"
  4463. }
  4464. },
  4465. "autoload": {
  4466. "psr-4": {
  4467. "PhpOption\\": "src/PhpOption/"
  4468. }
  4469. },
  4470. "notification-url": "https://packagist.org/downloads/",
  4471. "license": [
  4472. "Apache-2.0"
  4473. ],
  4474. "authors": [
  4475. {
  4476. "name": "Johannes M. Schmitt",
  4477. "email": "schmittjoh@gmail.com",
  4478. "homepage": "https://github.com/schmittjoh"
  4479. },
  4480. {
  4481. "name": "Graham Campbell",
  4482. "email": "hello@gjcampbell.co.uk",
  4483. "homepage": "https://github.com/GrahamCampbell"
  4484. }
  4485. ],
  4486. "description": "Option Type for PHP",
  4487. "keywords": [
  4488. "language",
  4489. "option",
  4490. "php",
  4491. "type"
  4492. ],
  4493. "support": {
  4494. "issues": "https://github.com/schmittjoh/php-option/issues",
  4495. "source": "https://github.com/schmittjoh/php-option/tree/1.9.4"
  4496. },
  4497. "funding": [
  4498. {
  4499. "url": "https://github.com/GrahamCampbell",
  4500. "type": "github"
  4501. },
  4502. {
  4503. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  4504. "type": "tidelift"
  4505. }
  4506. ],
  4507. "time": "2025-08-21T11:53:16+00:00"
  4508. },
  4509. {
  4510. "name": "psr/clock",
  4511. "version": "1.0.0",
  4512. "source": {
  4513. "type": "git",
  4514. "url": "https://github.com/php-fig/clock.git",
  4515. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  4516. },
  4517. "dist": {
  4518. "type": "zip",
  4519. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  4520. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  4521. "shasum": ""
  4522. },
  4523. "require": {
  4524. "php": "^7.0 || ^8.0"
  4525. },
  4526. "type": "library",
  4527. "autoload": {
  4528. "psr-4": {
  4529. "Psr\\Clock\\": "src/"
  4530. }
  4531. },
  4532. "notification-url": "https://packagist.org/downloads/",
  4533. "license": [
  4534. "MIT"
  4535. ],
  4536. "authors": [
  4537. {
  4538. "name": "PHP-FIG",
  4539. "homepage": "https://www.php-fig.org/"
  4540. }
  4541. ],
  4542. "description": "Common interface for reading the clock.",
  4543. "homepage": "https://github.com/php-fig/clock",
  4544. "keywords": [
  4545. "clock",
  4546. "now",
  4547. "psr",
  4548. "psr-20",
  4549. "time"
  4550. ],
  4551. "support": {
  4552. "issues": "https://github.com/php-fig/clock/issues",
  4553. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  4554. },
  4555. "time": "2022-11-25T14:36:26+00:00"
  4556. },
  4557. {
  4558. "name": "psr/container",
  4559. "version": "2.0.2",
  4560. "source": {
  4561. "type": "git",
  4562. "url": "https://github.com/php-fig/container.git",
  4563. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  4564. },
  4565. "dist": {
  4566. "type": "zip",
  4567. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  4568. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  4569. "shasum": ""
  4570. },
  4571. "require": {
  4572. "php": ">=7.4.0"
  4573. },
  4574. "type": "library",
  4575. "extra": {
  4576. "branch-alias": {
  4577. "dev-master": "2.0.x-dev"
  4578. }
  4579. },
  4580. "autoload": {
  4581. "psr-4": {
  4582. "Psr\\Container\\": "src/"
  4583. }
  4584. },
  4585. "notification-url": "https://packagist.org/downloads/",
  4586. "license": [
  4587. "MIT"
  4588. ],
  4589. "authors": [
  4590. {
  4591. "name": "PHP-FIG",
  4592. "homepage": "https://www.php-fig.org/"
  4593. }
  4594. ],
  4595. "description": "Common Container Interface (PHP FIG PSR-11)",
  4596. "homepage": "https://github.com/php-fig/container",
  4597. "keywords": [
  4598. "PSR-11",
  4599. "container",
  4600. "container-interface",
  4601. "container-interop",
  4602. "psr"
  4603. ],
  4604. "support": {
  4605. "issues": "https://github.com/php-fig/container/issues",
  4606. "source": "https://github.com/php-fig/container/tree/2.0.2"
  4607. },
  4608. "time": "2021-11-05T16:47:00+00:00"
  4609. },
  4610. {
  4611. "name": "psr/event-dispatcher",
  4612. "version": "1.0.0",
  4613. "source": {
  4614. "type": "git",
  4615. "url": "https://github.com/php-fig/event-dispatcher.git",
  4616. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  4617. },
  4618. "dist": {
  4619. "type": "zip",
  4620. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4621. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4622. "shasum": ""
  4623. },
  4624. "require": {
  4625. "php": ">=7.2.0"
  4626. },
  4627. "type": "library",
  4628. "extra": {
  4629. "branch-alias": {
  4630. "dev-master": "1.0.x-dev"
  4631. }
  4632. },
  4633. "autoload": {
  4634. "psr-4": {
  4635. "Psr\\EventDispatcher\\": "src/"
  4636. }
  4637. },
  4638. "notification-url": "https://packagist.org/downloads/",
  4639. "license": [
  4640. "MIT"
  4641. ],
  4642. "authors": [
  4643. {
  4644. "name": "PHP-FIG",
  4645. "homepage": "http://www.php-fig.org/"
  4646. }
  4647. ],
  4648. "description": "Standard interfaces for event handling.",
  4649. "keywords": [
  4650. "events",
  4651. "psr",
  4652. "psr-14"
  4653. ],
  4654. "support": {
  4655. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  4656. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  4657. },
  4658. "time": "2019-01-08T18:20:26+00:00"
  4659. },
  4660. {
  4661. "name": "psr/http-client",
  4662. "version": "1.0.3",
  4663. "source": {
  4664. "type": "git",
  4665. "url": "https://github.com/php-fig/http-client.git",
  4666. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  4667. },
  4668. "dist": {
  4669. "type": "zip",
  4670. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  4671. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  4672. "shasum": ""
  4673. },
  4674. "require": {
  4675. "php": "^7.0 || ^8.0",
  4676. "psr/http-message": "^1.0 || ^2.0"
  4677. },
  4678. "type": "library",
  4679. "extra": {
  4680. "branch-alias": {
  4681. "dev-master": "1.0.x-dev"
  4682. }
  4683. },
  4684. "autoload": {
  4685. "psr-4": {
  4686. "Psr\\Http\\Client\\": "src/"
  4687. }
  4688. },
  4689. "notification-url": "https://packagist.org/downloads/",
  4690. "license": [
  4691. "MIT"
  4692. ],
  4693. "authors": [
  4694. {
  4695. "name": "PHP-FIG",
  4696. "homepage": "https://www.php-fig.org/"
  4697. }
  4698. ],
  4699. "description": "Common interface for HTTP clients",
  4700. "homepage": "https://github.com/php-fig/http-client",
  4701. "keywords": [
  4702. "http",
  4703. "http-client",
  4704. "psr",
  4705. "psr-18"
  4706. ],
  4707. "support": {
  4708. "source": "https://github.com/php-fig/http-client"
  4709. },
  4710. "time": "2023-09-23T14:17:50+00:00"
  4711. },
  4712. {
  4713. "name": "psr/http-factory",
  4714. "version": "1.1.0",
  4715. "source": {
  4716. "type": "git",
  4717. "url": "https://github.com/php-fig/http-factory.git",
  4718. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  4719. },
  4720. "dist": {
  4721. "type": "zip",
  4722. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  4723. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  4724. "shasum": ""
  4725. },
  4726. "require": {
  4727. "php": ">=7.1",
  4728. "psr/http-message": "^1.0 || ^2.0"
  4729. },
  4730. "type": "library",
  4731. "extra": {
  4732. "branch-alias": {
  4733. "dev-master": "1.0.x-dev"
  4734. }
  4735. },
  4736. "autoload": {
  4737. "psr-4": {
  4738. "Psr\\Http\\Message\\": "src/"
  4739. }
  4740. },
  4741. "notification-url": "https://packagist.org/downloads/",
  4742. "license": [
  4743. "MIT"
  4744. ],
  4745. "authors": [
  4746. {
  4747. "name": "PHP-FIG",
  4748. "homepage": "https://www.php-fig.org/"
  4749. }
  4750. ],
  4751. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  4752. "keywords": [
  4753. "factory",
  4754. "http",
  4755. "message",
  4756. "psr",
  4757. "psr-17",
  4758. "psr-7",
  4759. "request",
  4760. "response"
  4761. ],
  4762. "support": {
  4763. "source": "https://github.com/php-fig/http-factory"
  4764. },
  4765. "time": "2024-04-15T12:06:14+00:00"
  4766. },
  4767. {
  4768. "name": "psr/http-message",
  4769. "version": "2.0",
  4770. "source": {
  4771. "type": "git",
  4772. "url": "https://github.com/php-fig/http-message.git",
  4773. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  4774. },
  4775. "dist": {
  4776. "type": "zip",
  4777. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  4778. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  4779. "shasum": ""
  4780. },
  4781. "require": {
  4782. "php": "^7.2 || ^8.0"
  4783. },
  4784. "type": "library",
  4785. "extra": {
  4786. "branch-alias": {
  4787. "dev-master": "2.0.x-dev"
  4788. }
  4789. },
  4790. "autoload": {
  4791. "psr-4": {
  4792. "Psr\\Http\\Message\\": "src/"
  4793. }
  4794. },
  4795. "notification-url": "https://packagist.org/downloads/",
  4796. "license": [
  4797. "MIT"
  4798. ],
  4799. "authors": [
  4800. {
  4801. "name": "PHP-FIG",
  4802. "homepage": "https://www.php-fig.org/"
  4803. }
  4804. ],
  4805. "description": "Common interface for HTTP messages",
  4806. "homepage": "https://github.com/php-fig/http-message",
  4807. "keywords": [
  4808. "http",
  4809. "http-message",
  4810. "psr",
  4811. "psr-7",
  4812. "request",
  4813. "response"
  4814. ],
  4815. "support": {
  4816. "source": "https://github.com/php-fig/http-message/tree/2.0"
  4817. },
  4818. "time": "2023-04-04T09:54:51+00:00"
  4819. },
  4820. {
  4821. "name": "psr/log",
  4822. "version": "3.0.2",
  4823. "source": {
  4824. "type": "git",
  4825. "url": "https://github.com/php-fig/log.git",
  4826. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  4827. },
  4828. "dist": {
  4829. "type": "zip",
  4830. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  4831. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  4832. "shasum": ""
  4833. },
  4834. "require": {
  4835. "php": ">=8.0.0"
  4836. },
  4837. "type": "library",
  4838. "extra": {
  4839. "branch-alias": {
  4840. "dev-master": "3.x-dev"
  4841. }
  4842. },
  4843. "autoload": {
  4844. "psr-4": {
  4845. "Psr\\Log\\": "src"
  4846. }
  4847. },
  4848. "notification-url": "https://packagist.org/downloads/",
  4849. "license": [
  4850. "MIT"
  4851. ],
  4852. "authors": [
  4853. {
  4854. "name": "PHP-FIG",
  4855. "homepage": "https://www.php-fig.org/"
  4856. }
  4857. ],
  4858. "description": "Common interface for logging libraries",
  4859. "homepage": "https://github.com/php-fig/log",
  4860. "keywords": [
  4861. "log",
  4862. "psr",
  4863. "psr-3"
  4864. ],
  4865. "support": {
  4866. "source": "https://github.com/php-fig/log/tree/3.0.2"
  4867. },
  4868. "time": "2024-09-11T13:17:53+00:00"
  4869. },
  4870. {
  4871. "name": "psr/simple-cache",
  4872. "version": "3.0.0",
  4873. "source": {
  4874. "type": "git",
  4875. "url": "https://github.com/php-fig/simple-cache.git",
  4876. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  4877. },
  4878. "dist": {
  4879. "type": "zip",
  4880. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  4881. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  4882. "shasum": ""
  4883. },
  4884. "require": {
  4885. "php": ">=8.0.0"
  4886. },
  4887. "type": "library",
  4888. "extra": {
  4889. "branch-alias": {
  4890. "dev-master": "3.0.x-dev"
  4891. }
  4892. },
  4893. "autoload": {
  4894. "psr-4": {
  4895. "Psr\\SimpleCache\\": "src/"
  4896. }
  4897. },
  4898. "notification-url": "https://packagist.org/downloads/",
  4899. "license": [
  4900. "MIT"
  4901. ],
  4902. "authors": [
  4903. {
  4904. "name": "PHP-FIG",
  4905. "homepage": "https://www.php-fig.org/"
  4906. }
  4907. ],
  4908. "description": "Common interfaces for simple caching",
  4909. "keywords": [
  4910. "cache",
  4911. "caching",
  4912. "psr",
  4913. "psr-16",
  4914. "simple-cache"
  4915. ],
  4916. "support": {
  4917. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  4918. },
  4919. "time": "2021-10-29T13:26:27+00:00"
  4920. },
  4921. {
  4922. "name": "psy/psysh",
  4923. "version": "v0.12.10",
  4924. "source": {
  4925. "type": "git",
  4926. "url": "https://github.com/bobthecow/psysh.git",
  4927. "reference": "6e80abe6f2257121f1eb9a4c55bf29d921025b22"
  4928. },
  4929. "dist": {
  4930. "type": "zip",
  4931. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/6e80abe6f2257121f1eb9a4c55bf29d921025b22",
  4932. "reference": "6e80abe6f2257121f1eb9a4c55bf29d921025b22",
  4933. "shasum": ""
  4934. },
  4935. "require": {
  4936. "ext-json": "*",
  4937. "ext-tokenizer": "*",
  4938. "nikic/php-parser": "^5.0 || ^4.0",
  4939. "php": "^8.0 || ^7.4",
  4940. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  4941. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  4942. },
  4943. "conflict": {
  4944. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  4945. },
  4946. "require-dev": {
  4947. "bamarni/composer-bin-plugin": "^1.2"
  4948. },
  4949. "suggest": {
  4950. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4951. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4952. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  4953. },
  4954. "bin": [
  4955. "bin/psysh"
  4956. ],
  4957. "type": "library",
  4958. "extra": {
  4959. "bamarni-bin": {
  4960. "bin-links": false,
  4961. "forward-command": false
  4962. },
  4963. "branch-alias": {
  4964. "dev-main": "0.12.x-dev"
  4965. }
  4966. },
  4967. "autoload": {
  4968. "files": [
  4969. "src/functions.php"
  4970. ],
  4971. "psr-4": {
  4972. "Psy\\": "src/"
  4973. }
  4974. },
  4975. "notification-url": "https://packagist.org/downloads/",
  4976. "license": [
  4977. "MIT"
  4978. ],
  4979. "authors": [
  4980. {
  4981. "name": "Justin Hileman",
  4982. "email": "justin@justinhileman.info"
  4983. }
  4984. ],
  4985. "description": "An interactive shell for modern PHP.",
  4986. "homepage": "https://psysh.org",
  4987. "keywords": [
  4988. "REPL",
  4989. "console",
  4990. "interactive",
  4991. "shell"
  4992. ],
  4993. "support": {
  4994. "issues": "https://github.com/bobthecow/psysh/issues",
  4995. "source": "https://github.com/bobthecow/psysh/tree/v0.12.10"
  4996. },
  4997. "time": "2025-08-04T12:39:37+00:00"
  4998. },
  4999. {
  5000. "name": "ralouphie/getallheaders",
  5001. "version": "3.0.3",
  5002. "source": {
  5003. "type": "git",
  5004. "url": "https://github.com/ralouphie/getallheaders.git",
  5005. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  5006. },
  5007. "dist": {
  5008. "type": "zip",
  5009. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  5010. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  5011. "shasum": ""
  5012. },
  5013. "require": {
  5014. "php": ">=5.6"
  5015. },
  5016. "require-dev": {
  5017. "php-coveralls/php-coveralls": "^2.1",
  5018. "phpunit/phpunit": "^5 || ^6.5"
  5019. },
  5020. "type": "library",
  5021. "autoload": {
  5022. "files": [
  5023. "src/getallheaders.php"
  5024. ]
  5025. },
  5026. "notification-url": "https://packagist.org/downloads/",
  5027. "license": [
  5028. "MIT"
  5029. ],
  5030. "authors": [
  5031. {
  5032. "name": "Ralph Khattar",
  5033. "email": "ralph.khattar@gmail.com"
  5034. }
  5035. ],
  5036. "description": "A polyfill for getallheaders.",
  5037. "support": {
  5038. "issues": "https://github.com/ralouphie/getallheaders/issues",
  5039. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  5040. },
  5041. "time": "2019-03-08T08:55:37+00:00"
  5042. },
  5043. {
  5044. "name": "ramsey/collection",
  5045. "version": "2.1.1",
  5046. "source": {
  5047. "type": "git",
  5048. "url": "https://github.com/ramsey/collection.git",
  5049. "reference": "344572933ad0181accbf4ba763e85a0306a8c5e2"
  5050. },
  5051. "dist": {
  5052. "type": "zip",
  5053. "url": "https://api.github.com/repos/ramsey/collection/zipball/344572933ad0181accbf4ba763e85a0306a8c5e2",
  5054. "reference": "344572933ad0181accbf4ba763e85a0306a8c5e2",
  5055. "shasum": ""
  5056. },
  5057. "require": {
  5058. "php": "^8.1"
  5059. },
  5060. "require-dev": {
  5061. "captainhook/plugin-composer": "^5.3",
  5062. "ergebnis/composer-normalize": "^2.45",
  5063. "fakerphp/faker": "^1.24",
  5064. "hamcrest/hamcrest-php": "^2.0",
  5065. "jangregor/phpstan-prophecy": "^2.1",
  5066. "mockery/mockery": "^1.6",
  5067. "php-parallel-lint/php-console-highlighter": "^1.0",
  5068. "php-parallel-lint/php-parallel-lint": "^1.4",
  5069. "phpspec/prophecy-phpunit": "^2.3",
  5070. "phpstan/extension-installer": "^1.4",
  5071. "phpstan/phpstan": "^2.1",
  5072. "phpstan/phpstan-mockery": "^2.0",
  5073. "phpstan/phpstan-phpunit": "^2.0",
  5074. "phpunit/phpunit": "^10.5",
  5075. "ramsey/coding-standard": "^2.3",
  5076. "ramsey/conventional-commits": "^1.6",
  5077. "roave/security-advisories": "dev-latest"
  5078. },
  5079. "type": "library",
  5080. "extra": {
  5081. "captainhook": {
  5082. "force-install": true
  5083. },
  5084. "ramsey/conventional-commits": {
  5085. "configFile": "conventional-commits.json"
  5086. }
  5087. },
  5088. "autoload": {
  5089. "psr-4": {
  5090. "Ramsey\\Collection\\": "src/"
  5091. }
  5092. },
  5093. "notification-url": "https://packagist.org/downloads/",
  5094. "license": [
  5095. "MIT"
  5096. ],
  5097. "authors": [
  5098. {
  5099. "name": "Ben Ramsey",
  5100. "email": "ben@benramsey.com",
  5101. "homepage": "https://benramsey.com"
  5102. }
  5103. ],
  5104. "description": "A PHP library for representing and manipulating collections.",
  5105. "keywords": [
  5106. "array",
  5107. "collection",
  5108. "hash",
  5109. "map",
  5110. "queue",
  5111. "set"
  5112. ],
  5113. "support": {
  5114. "issues": "https://github.com/ramsey/collection/issues",
  5115. "source": "https://github.com/ramsey/collection/tree/2.1.1"
  5116. },
  5117. "time": "2025-03-22T05:38:12+00:00"
  5118. },
  5119. {
  5120. "name": "ramsey/uuid",
  5121. "version": "4.9.1",
  5122. "source": {
  5123. "type": "git",
  5124. "url": "https://github.com/ramsey/uuid.git",
  5125. "reference": "81f941f6f729b1e3ceea61d9d014f8b6c6800440"
  5126. },
  5127. "dist": {
  5128. "type": "zip",
  5129. "url": "https://api.github.com/repos/ramsey/uuid/zipball/81f941f6f729b1e3ceea61d9d014f8b6c6800440",
  5130. "reference": "81f941f6f729b1e3ceea61d9d014f8b6c6800440",
  5131. "shasum": ""
  5132. },
  5133. "require": {
  5134. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12 || ^0.13 || ^0.14",
  5135. "php": "^8.0",
  5136. "ramsey/collection": "^1.2 || ^2.0"
  5137. },
  5138. "replace": {
  5139. "rhumsaa/uuid": "self.version"
  5140. },
  5141. "require-dev": {
  5142. "captainhook/captainhook": "^5.25",
  5143. "captainhook/plugin-composer": "^5.3",
  5144. "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
  5145. "ergebnis/composer-normalize": "^2.47",
  5146. "mockery/mockery": "^1.6",
  5147. "paragonie/random-lib": "^2",
  5148. "php-mock/php-mock": "^2.6",
  5149. "php-mock/php-mock-mockery": "^1.5",
  5150. "php-parallel-lint/php-parallel-lint": "^1.4.0",
  5151. "phpbench/phpbench": "^1.2.14",
  5152. "phpstan/extension-installer": "^1.4",
  5153. "phpstan/phpstan": "^2.1",
  5154. "phpstan/phpstan-mockery": "^2.0",
  5155. "phpstan/phpstan-phpunit": "^2.0",
  5156. "phpunit/phpunit": "^9.6",
  5157. "slevomat/coding-standard": "^8.18",
  5158. "squizlabs/php_codesniffer": "^3.13"
  5159. },
  5160. "suggest": {
  5161. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  5162. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  5163. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  5164. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  5165. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  5166. },
  5167. "type": "library",
  5168. "extra": {
  5169. "captainhook": {
  5170. "force-install": true
  5171. }
  5172. },
  5173. "autoload": {
  5174. "files": [
  5175. "src/functions.php"
  5176. ],
  5177. "psr-4": {
  5178. "Ramsey\\Uuid\\": "src/"
  5179. }
  5180. },
  5181. "notification-url": "https://packagist.org/downloads/",
  5182. "license": [
  5183. "MIT"
  5184. ],
  5185. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  5186. "keywords": [
  5187. "guid",
  5188. "identifier",
  5189. "uuid"
  5190. ],
  5191. "support": {
  5192. "issues": "https://github.com/ramsey/uuid/issues",
  5193. "source": "https://github.com/ramsey/uuid/tree/4.9.1"
  5194. },
  5195. "time": "2025-09-04T20:59:21+00:00"
  5196. },
  5197. {
  5198. "name": "symfony/clock",
  5199. "version": "v7.3.0",
  5200. "source": {
  5201. "type": "git",
  5202. "url": "https://github.com/symfony/clock.git",
  5203. "reference": "b81435fbd6648ea425d1ee96a2d8e68f4ceacd24"
  5204. },
  5205. "dist": {
  5206. "type": "zip",
  5207. "url": "https://api.github.com/repos/symfony/clock/zipball/b81435fbd6648ea425d1ee96a2d8e68f4ceacd24",
  5208. "reference": "b81435fbd6648ea425d1ee96a2d8e68f4ceacd24",
  5209. "shasum": ""
  5210. },
  5211. "require": {
  5212. "php": ">=8.2",
  5213. "psr/clock": "^1.0",
  5214. "symfony/polyfill-php83": "^1.28"
  5215. },
  5216. "provide": {
  5217. "psr/clock-implementation": "1.0"
  5218. },
  5219. "type": "library",
  5220. "autoload": {
  5221. "files": [
  5222. "Resources/now.php"
  5223. ],
  5224. "psr-4": {
  5225. "Symfony\\Component\\Clock\\": ""
  5226. },
  5227. "exclude-from-classmap": [
  5228. "/Tests/"
  5229. ]
  5230. },
  5231. "notification-url": "https://packagist.org/downloads/",
  5232. "license": [
  5233. "MIT"
  5234. ],
  5235. "authors": [
  5236. {
  5237. "name": "Nicolas Grekas",
  5238. "email": "p@tchwork.com"
  5239. },
  5240. {
  5241. "name": "Symfony Community",
  5242. "homepage": "https://symfony.com/contributors"
  5243. }
  5244. ],
  5245. "description": "Decouples applications from the system clock",
  5246. "homepage": "https://symfony.com",
  5247. "keywords": [
  5248. "clock",
  5249. "psr20",
  5250. "time"
  5251. ],
  5252. "support": {
  5253. "source": "https://github.com/symfony/clock/tree/v7.3.0"
  5254. },
  5255. "funding": [
  5256. {
  5257. "url": "https://symfony.com/sponsor",
  5258. "type": "custom"
  5259. },
  5260. {
  5261. "url": "https://github.com/fabpot",
  5262. "type": "github"
  5263. },
  5264. {
  5265. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5266. "type": "tidelift"
  5267. }
  5268. ],
  5269. "time": "2024-09-25T14:21:43+00:00"
  5270. },
  5271. {
  5272. "name": "symfony/console",
  5273. "version": "v7.3.3",
  5274. "source": {
  5275. "type": "git",
  5276. "url": "https://github.com/symfony/console.git",
  5277. "reference": "cb0102a1c5ac3807cf3fdf8bea96007df7fdbea7"
  5278. },
  5279. "dist": {
  5280. "type": "zip",
  5281. "url": "https://api.github.com/repos/symfony/console/zipball/cb0102a1c5ac3807cf3fdf8bea96007df7fdbea7",
  5282. "reference": "cb0102a1c5ac3807cf3fdf8bea96007df7fdbea7",
  5283. "shasum": ""
  5284. },
  5285. "require": {
  5286. "php": ">=8.2",
  5287. "symfony/deprecation-contracts": "^2.5|^3",
  5288. "symfony/polyfill-mbstring": "~1.0",
  5289. "symfony/service-contracts": "^2.5|^3",
  5290. "symfony/string": "^7.2"
  5291. },
  5292. "conflict": {
  5293. "symfony/dependency-injection": "<6.4",
  5294. "symfony/dotenv": "<6.4",
  5295. "symfony/event-dispatcher": "<6.4",
  5296. "symfony/lock": "<6.4",
  5297. "symfony/process": "<6.4"
  5298. },
  5299. "provide": {
  5300. "psr/log-implementation": "1.0|2.0|3.0"
  5301. },
  5302. "require-dev": {
  5303. "psr/log": "^1|^2|^3",
  5304. "symfony/config": "^6.4|^7.0",
  5305. "symfony/dependency-injection": "^6.4|^7.0",
  5306. "symfony/event-dispatcher": "^6.4|^7.0",
  5307. "symfony/http-foundation": "^6.4|^7.0",
  5308. "symfony/http-kernel": "^6.4|^7.0",
  5309. "symfony/lock": "^6.4|^7.0",
  5310. "symfony/messenger": "^6.4|^7.0",
  5311. "symfony/process": "^6.4|^7.0",
  5312. "symfony/stopwatch": "^6.4|^7.0",
  5313. "symfony/var-dumper": "^6.4|^7.0"
  5314. },
  5315. "type": "library",
  5316. "autoload": {
  5317. "psr-4": {
  5318. "Symfony\\Component\\Console\\": ""
  5319. },
  5320. "exclude-from-classmap": [
  5321. "/Tests/"
  5322. ]
  5323. },
  5324. "notification-url": "https://packagist.org/downloads/",
  5325. "license": [
  5326. "MIT"
  5327. ],
  5328. "authors": [
  5329. {
  5330. "name": "Fabien Potencier",
  5331. "email": "fabien@symfony.com"
  5332. },
  5333. {
  5334. "name": "Symfony Community",
  5335. "homepage": "https://symfony.com/contributors"
  5336. }
  5337. ],
  5338. "description": "Eases the creation of beautiful and testable command line interfaces",
  5339. "homepage": "https://symfony.com",
  5340. "keywords": [
  5341. "cli",
  5342. "command-line",
  5343. "console",
  5344. "terminal"
  5345. ],
  5346. "support": {
  5347. "source": "https://github.com/symfony/console/tree/v7.3.3"
  5348. },
  5349. "funding": [
  5350. {
  5351. "url": "https://symfony.com/sponsor",
  5352. "type": "custom"
  5353. },
  5354. {
  5355. "url": "https://github.com/fabpot",
  5356. "type": "github"
  5357. },
  5358. {
  5359. "url": "https://github.com/nicolas-grekas",
  5360. "type": "github"
  5361. },
  5362. {
  5363. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5364. "type": "tidelift"
  5365. }
  5366. ],
  5367. "time": "2025-08-25T06:35:40+00:00"
  5368. },
  5369. {
  5370. "name": "symfony/css-selector",
  5371. "version": "v7.3.0",
  5372. "source": {
  5373. "type": "git",
  5374. "url": "https://github.com/symfony/css-selector.git",
  5375. "reference": "601a5ce9aaad7bf10797e3663faefce9e26c24e2"
  5376. },
  5377. "dist": {
  5378. "type": "zip",
  5379. "url": "https://api.github.com/repos/symfony/css-selector/zipball/601a5ce9aaad7bf10797e3663faefce9e26c24e2",
  5380. "reference": "601a5ce9aaad7bf10797e3663faefce9e26c24e2",
  5381. "shasum": ""
  5382. },
  5383. "require": {
  5384. "php": ">=8.2"
  5385. },
  5386. "type": "library",
  5387. "autoload": {
  5388. "psr-4": {
  5389. "Symfony\\Component\\CssSelector\\": ""
  5390. },
  5391. "exclude-from-classmap": [
  5392. "/Tests/"
  5393. ]
  5394. },
  5395. "notification-url": "https://packagist.org/downloads/",
  5396. "license": [
  5397. "MIT"
  5398. ],
  5399. "authors": [
  5400. {
  5401. "name": "Fabien Potencier",
  5402. "email": "fabien@symfony.com"
  5403. },
  5404. {
  5405. "name": "Jean-François Simon",
  5406. "email": "jeanfrancois.simon@sensiolabs.com"
  5407. },
  5408. {
  5409. "name": "Symfony Community",
  5410. "homepage": "https://symfony.com/contributors"
  5411. }
  5412. ],
  5413. "description": "Converts CSS selectors to XPath expressions",
  5414. "homepage": "https://symfony.com",
  5415. "support": {
  5416. "source": "https://github.com/symfony/css-selector/tree/v7.3.0"
  5417. },
  5418. "funding": [
  5419. {
  5420. "url": "https://symfony.com/sponsor",
  5421. "type": "custom"
  5422. },
  5423. {
  5424. "url": "https://github.com/fabpot",
  5425. "type": "github"
  5426. },
  5427. {
  5428. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5429. "type": "tidelift"
  5430. }
  5431. ],
  5432. "time": "2024-09-25T14:21:43+00:00"
  5433. },
  5434. {
  5435. "name": "symfony/deprecation-contracts",
  5436. "version": "v3.6.0",
  5437. "source": {
  5438. "type": "git",
  5439. "url": "https://github.com/symfony/deprecation-contracts.git",
  5440. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62"
  5441. },
  5442. "dist": {
  5443. "type": "zip",
  5444. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62",
  5445. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62",
  5446. "shasum": ""
  5447. },
  5448. "require": {
  5449. "php": ">=8.1"
  5450. },
  5451. "type": "library",
  5452. "extra": {
  5453. "thanks": {
  5454. "url": "https://github.com/symfony/contracts",
  5455. "name": "symfony/contracts"
  5456. },
  5457. "branch-alias": {
  5458. "dev-main": "3.6-dev"
  5459. }
  5460. },
  5461. "autoload": {
  5462. "files": [
  5463. "function.php"
  5464. ]
  5465. },
  5466. "notification-url": "https://packagist.org/downloads/",
  5467. "license": [
  5468. "MIT"
  5469. ],
  5470. "authors": [
  5471. {
  5472. "name": "Nicolas Grekas",
  5473. "email": "p@tchwork.com"
  5474. },
  5475. {
  5476. "name": "Symfony Community",
  5477. "homepage": "https://symfony.com/contributors"
  5478. }
  5479. ],
  5480. "description": "A generic function and convention to trigger deprecation notices",
  5481. "homepage": "https://symfony.com",
  5482. "support": {
  5483. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0"
  5484. },
  5485. "funding": [
  5486. {
  5487. "url": "https://symfony.com/sponsor",
  5488. "type": "custom"
  5489. },
  5490. {
  5491. "url": "https://github.com/fabpot",
  5492. "type": "github"
  5493. },
  5494. {
  5495. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5496. "type": "tidelift"
  5497. }
  5498. ],
  5499. "time": "2024-09-25T14:21:43+00:00"
  5500. },
  5501. {
  5502. "name": "symfony/error-handler",
  5503. "version": "v7.3.2",
  5504. "source": {
  5505. "type": "git",
  5506. "url": "https://github.com/symfony/error-handler.git",
  5507. "reference": "0b31a944fcd8759ae294da4d2808cbc53aebd0c3"
  5508. },
  5509. "dist": {
  5510. "type": "zip",
  5511. "url": "https://api.github.com/repos/symfony/error-handler/zipball/0b31a944fcd8759ae294da4d2808cbc53aebd0c3",
  5512. "reference": "0b31a944fcd8759ae294da4d2808cbc53aebd0c3",
  5513. "shasum": ""
  5514. },
  5515. "require": {
  5516. "php": ">=8.2",
  5517. "psr/log": "^1|^2|^3",
  5518. "symfony/var-dumper": "^6.4|^7.0"
  5519. },
  5520. "conflict": {
  5521. "symfony/deprecation-contracts": "<2.5",
  5522. "symfony/http-kernel": "<6.4"
  5523. },
  5524. "require-dev": {
  5525. "symfony/console": "^6.4|^7.0",
  5526. "symfony/deprecation-contracts": "^2.5|^3",
  5527. "symfony/http-kernel": "^6.4|^7.0",
  5528. "symfony/serializer": "^6.4|^7.0",
  5529. "symfony/webpack-encore-bundle": "^1.0|^2.0"
  5530. },
  5531. "bin": [
  5532. "Resources/bin/patch-type-declarations"
  5533. ],
  5534. "type": "library",
  5535. "autoload": {
  5536. "psr-4": {
  5537. "Symfony\\Component\\ErrorHandler\\": ""
  5538. },
  5539. "exclude-from-classmap": [
  5540. "/Tests/"
  5541. ]
  5542. },
  5543. "notification-url": "https://packagist.org/downloads/",
  5544. "license": [
  5545. "MIT"
  5546. ],
  5547. "authors": [
  5548. {
  5549. "name": "Fabien Potencier",
  5550. "email": "fabien@symfony.com"
  5551. },
  5552. {
  5553. "name": "Symfony Community",
  5554. "homepage": "https://symfony.com/contributors"
  5555. }
  5556. ],
  5557. "description": "Provides tools to manage errors and ease debugging PHP code",
  5558. "homepage": "https://symfony.com",
  5559. "support": {
  5560. "source": "https://github.com/symfony/error-handler/tree/v7.3.2"
  5561. },
  5562. "funding": [
  5563. {
  5564. "url": "https://symfony.com/sponsor",
  5565. "type": "custom"
  5566. },
  5567. {
  5568. "url": "https://github.com/fabpot",
  5569. "type": "github"
  5570. },
  5571. {
  5572. "url": "https://github.com/nicolas-grekas",
  5573. "type": "github"
  5574. },
  5575. {
  5576. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5577. "type": "tidelift"
  5578. }
  5579. ],
  5580. "time": "2025-07-07T08:17:57+00:00"
  5581. },
  5582. {
  5583. "name": "symfony/event-dispatcher",
  5584. "version": "v7.3.3",
  5585. "source": {
  5586. "type": "git",
  5587. "url": "https://github.com/symfony/event-dispatcher.git",
  5588. "reference": "b7dc69e71de420ac04bc9ab830cf3ffebba48191"
  5589. },
  5590. "dist": {
  5591. "type": "zip",
  5592. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/b7dc69e71de420ac04bc9ab830cf3ffebba48191",
  5593. "reference": "b7dc69e71de420ac04bc9ab830cf3ffebba48191",
  5594. "shasum": ""
  5595. },
  5596. "require": {
  5597. "php": ">=8.2",
  5598. "symfony/event-dispatcher-contracts": "^2.5|^3"
  5599. },
  5600. "conflict": {
  5601. "symfony/dependency-injection": "<6.4",
  5602. "symfony/service-contracts": "<2.5"
  5603. },
  5604. "provide": {
  5605. "psr/event-dispatcher-implementation": "1.0",
  5606. "symfony/event-dispatcher-implementation": "2.0|3.0"
  5607. },
  5608. "require-dev": {
  5609. "psr/log": "^1|^2|^3",
  5610. "symfony/config": "^6.4|^7.0",
  5611. "symfony/dependency-injection": "^6.4|^7.0",
  5612. "symfony/error-handler": "^6.4|^7.0",
  5613. "symfony/expression-language": "^6.4|^7.0",
  5614. "symfony/http-foundation": "^6.4|^7.0",
  5615. "symfony/service-contracts": "^2.5|^3",
  5616. "symfony/stopwatch": "^6.4|^7.0"
  5617. },
  5618. "type": "library",
  5619. "autoload": {
  5620. "psr-4": {
  5621. "Symfony\\Component\\EventDispatcher\\": ""
  5622. },
  5623. "exclude-from-classmap": [
  5624. "/Tests/"
  5625. ]
  5626. },
  5627. "notification-url": "https://packagist.org/downloads/",
  5628. "license": [
  5629. "MIT"
  5630. ],
  5631. "authors": [
  5632. {
  5633. "name": "Fabien Potencier",
  5634. "email": "fabien@symfony.com"
  5635. },
  5636. {
  5637. "name": "Symfony Community",
  5638. "homepage": "https://symfony.com/contributors"
  5639. }
  5640. ],
  5641. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5642. "homepage": "https://symfony.com",
  5643. "support": {
  5644. "source": "https://github.com/symfony/event-dispatcher/tree/v7.3.3"
  5645. },
  5646. "funding": [
  5647. {
  5648. "url": "https://symfony.com/sponsor",
  5649. "type": "custom"
  5650. },
  5651. {
  5652. "url": "https://github.com/fabpot",
  5653. "type": "github"
  5654. },
  5655. {
  5656. "url": "https://github.com/nicolas-grekas",
  5657. "type": "github"
  5658. },
  5659. {
  5660. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5661. "type": "tidelift"
  5662. }
  5663. ],
  5664. "time": "2025-08-13T11:49:31+00:00"
  5665. },
  5666. {
  5667. "name": "symfony/event-dispatcher-contracts",
  5668. "version": "v3.6.0",
  5669. "source": {
  5670. "type": "git",
  5671. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5672. "reference": "59eb412e93815df44f05f342958efa9f46b1e586"
  5673. },
  5674. "dist": {
  5675. "type": "zip",
  5676. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/59eb412e93815df44f05f342958efa9f46b1e586",
  5677. "reference": "59eb412e93815df44f05f342958efa9f46b1e586",
  5678. "shasum": ""
  5679. },
  5680. "require": {
  5681. "php": ">=8.1",
  5682. "psr/event-dispatcher": "^1"
  5683. },
  5684. "type": "library",
  5685. "extra": {
  5686. "thanks": {
  5687. "url": "https://github.com/symfony/contracts",
  5688. "name": "symfony/contracts"
  5689. },
  5690. "branch-alias": {
  5691. "dev-main": "3.6-dev"
  5692. }
  5693. },
  5694. "autoload": {
  5695. "psr-4": {
  5696. "Symfony\\Contracts\\EventDispatcher\\": ""
  5697. }
  5698. },
  5699. "notification-url": "https://packagist.org/downloads/",
  5700. "license": [
  5701. "MIT"
  5702. ],
  5703. "authors": [
  5704. {
  5705. "name": "Nicolas Grekas",
  5706. "email": "p@tchwork.com"
  5707. },
  5708. {
  5709. "name": "Symfony Community",
  5710. "homepage": "https://symfony.com/contributors"
  5711. }
  5712. ],
  5713. "description": "Generic abstractions related to dispatching event",
  5714. "homepage": "https://symfony.com",
  5715. "keywords": [
  5716. "abstractions",
  5717. "contracts",
  5718. "decoupling",
  5719. "interfaces",
  5720. "interoperability",
  5721. "standards"
  5722. ],
  5723. "support": {
  5724. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.6.0"
  5725. },
  5726. "funding": [
  5727. {
  5728. "url": "https://symfony.com/sponsor",
  5729. "type": "custom"
  5730. },
  5731. {
  5732. "url": "https://github.com/fabpot",
  5733. "type": "github"
  5734. },
  5735. {
  5736. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5737. "type": "tidelift"
  5738. }
  5739. ],
  5740. "time": "2024-09-25T14:21:43+00:00"
  5741. },
  5742. {
  5743. "name": "symfony/finder",
  5744. "version": "v7.3.2",
  5745. "source": {
  5746. "type": "git",
  5747. "url": "https://github.com/symfony/finder.git",
  5748. "reference": "2a6614966ba1074fa93dae0bc804227422df4dfe"
  5749. },
  5750. "dist": {
  5751. "type": "zip",
  5752. "url": "https://api.github.com/repos/symfony/finder/zipball/2a6614966ba1074fa93dae0bc804227422df4dfe",
  5753. "reference": "2a6614966ba1074fa93dae0bc804227422df4dfe",
  5754. "shasum": ""
  5755. },
  5756. "require": {
  5757. "php": ">=8.2"
  5758. },
  5759. "require-dev": {
  5760. "symfony/filesystem": "^6.4|^7.0"
  5761. },
  5762. "type": "library",
  5763. "autoload": {
  5764. "psr-4": {
  5765. "Symfony\\Component\\Finder\\": ""
  5766. },
  5767. "exclude-from-classmap": [
  5768. "/Tests/"
  5769. ]
  5770. },
  5771. "notification-url": "https://packagist.org/downloads/",
  5772. "license": [
  5773. "MIT"
  5774. ],
  5775. "authors": [
  5776. {
  5777. "name": "Fabien Potencier",
  5778. "email": "fabien@symfony.com"
  5779. },
  5780. {
  5781. "name": "Symfony Community",
  5782. "homepage": "https://symfony.com/contributors"
  5783. }
  5784. ],
  5785. "description": "Finds files and directories via an intuitive fluent interface",
  5786. "homepage": "https://symfony.com",
  5787. "support": {
  5788. "source": "https://github.com/symfony/finder/tree/v7.3.2"
  5789. },
  5790. "funding": [
  5791. {
  5792. "url": "https://symfony.com/sponsor",
  5793. "type": "custom"
  5794. },
  5795. {
  5796. "url": "https://github.com/fabpot",
  5797. "type": "github"
  5798. },
  5799. {
  5800. "url": "https://github.com/nicolas-grekas",
  5801. "type": "github"
  5802. },
  5803. {
  5804. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5805. "type": "tidelift"
  5806. }
  5807. ],
  5808. "time": "2025-07-15T13:41:35+00:00"
  5809. },
  5810. {
  5811. "name": "symfony/http-foundation",
  5812. "version": "v7.3.3",
  5813. "source": {
  5814. "type": "git",
  5815. "url": "https://github.com/symfony/http-foundation.git",
  5816. "reference": "7475561ec27020196c49bb7c4f178d33d7d3dc00"
  5817. },
  5818. "dist": {
  5819. "type": "zip",
  5820. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/7475561ec27020196c49bb7c4f178d33d7d3dc00",
  5821. "reference": "7475561ec27020196c49bb7c4f178d33d7d3dc00",
  5822. "shasum": ""
  5823. },
  5824. "require": {
  5825. "php": ">=8.2",
  5826. "symfony/deprecation-contracts": "^2.5|^3.0",
  5827. "symfony/polyfill-mbstring": "~1.1",
  5828. "symfony/polyfill-php83": "^1.27"
  5829. },
  5830. "conflict": {
  5831. "doctrine/dbal": "<3.6",
  5832. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  5833. },
  5834. "require-dev": {
  5835. "doctrine/dbal": "^3.6|^4",
  5836. "predis/predis": "^1.1|^2.0",
  5837. "symfony/cache": "^6.4.12|^7.1.5",
  5838. "symfony/clock": "^6.4|^7.0",
  5839. "symfony/dependency-injection": "^6.4|^7.0",
  5840. "symfony/expression-language": "^6.4|^7.0",
  5841. "symfony/http-kernel": "^6.4|^7.0",
  5842. "symfony/mime": "^6.4|^7.0",
  5843. "symfony/rate-limiter": "^6.4|^7.0"
  5844. },
  5845. "type": "library",
  5846. "autoload": {
  5847. "psr-4": {
  5848. "Symfony\\Component\\HttpFoundation\\": ""
  5849. },
  5850. "exclude-from-classmap": [
  5851. "/Tests/"
  5852. ]
  5853. },
  5854. "notification-url": "https://packagist.org/downloads/",
  5855. "license": [
  5856. "MIT"
  5857. ],
  5858. "authors": [
  5859. {
  5860. "name": "Fabien Potencier",
  5861. "email": "fabien@symfony.com"
  5862. },
  5863. {
  5864. "name": "Symfony Community",
  5865. "homepage": "https://symfony.com/contributors"
  5866. }
  5867. ],
  5868. "description": "Defines an object-oriented layer for the HTTP specification",
  5869. "homepage": "https://symfony.com",
  5870. "support": {
  5871. "source": "https://github.com/symfony/http-foundation/tree/v7.3.3"
  5872. },
  5873. "funding": [
  5874. {
  5875. "url": "https://symfony.com/sponsor",
  5876. "type": "custom"
  5877. },
  5878. {
  5879. "url": "https://github.com/fabpot",
  5880. "type": "github"
  5881. },
  5882. {
  5883. "url": "https://github.com/nicolas-grekas",
  5884. "type": "github"
  5885. },
  5886. {
  5887. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5888. "type": "tidelift"
  5889. }
  5890. ],
  5891. "time": "2025-08-20T08:04:18+00:00"
  5892. },
  5893. {
  5894. "name": "symfony/http-kernel",
  5895. "version": "v7.3.3",
  5896. "source": {
  5897. "type": "git",
  5898. "url": "https://github.com/symfony/http-kernel.git",
  5899. "reference": "72c304de37e1a1cec6d5d12b81187ebd4850a17b"
  5900. },
  5901. "dist": {
  5902. "type": "zip",
  5903. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/72c304de37e1a1cec6d5d12b81187ebd4850a17b",
  5904. "reference": "72c304de37e1a1cec6d5d12b81187ebd4850a17b",
  5905. "shasum": ""
  5906. },
  5907. "require": {
  5908. "php": ">=8.2",
  5909. "psr/log": "^1|^2|^3",
  5910. "symfony/deprecation-contracts": "^2.5|^3",
  5911. "symfony/error-handler": "^6.4|^7.0",
  5912. "symfony/event-dispatcher": "^7.3",
  5913. "symfony/http-foundation": "^7.3",
  5914. "symfony/polyfill-ctype": "^1.8"
  5915. },
  5916. "conflict": {
  5917. "symfony/browser-kit": "<6.4",
  5918. "symfony/cache": "<6.4",
  5919. "symfony/config": "<6.4",
  5920. "symfony/console": "<6.4",
  5921. "symfony/dependency-injection": "<6.4",
  5922. "symfony/doctrine-bridge": "<6.4",
  5923. "symfony/form": "<6.4",
  5924. "symfony/http-client": "<6.4",
  5925. "symfony/http-client-contracts": "<2.5",
  5926. "symfony/mailer": "<6.4",
  5927. "symfony/messenger": "<6.4",
  5928. "symfony/translation": "<6.4",
  5929. "symfony/translation-contracts": "<2.5",
  5930. "symfony/twig-bridge": "<6.4",
  5931. "symfony/validator": "<6.4",
  5932. "symfony/var-dumper": "<6.4",
  5933. "twig/twig": "<3.12"
  5934. },
  5935. "provide": {
  5936. "psr/log-implementation": "1.0|2.0|3.0"
  5937. },
  5938. "require-dev": {
  5939. "psr/cache": "^1.0|^2.0|^3.0",
  5940. "symfony/browser-kit": "^6.4|^7.0",
  5941. "symfony/clock": "^6.4|^7.0",
  5942. "symfony/config": "^6.4|^7.0",
  5943. "symfony/console": "^6.4|^7.0",
  5944. "symfony/css-selector": "^6.4|^7.0",
  5945. "symfony/dependency-injection": "^6.4|^7.0",
  5946. "symfony/dom-crawler": "^6.4|^7.0",
  5947. "symfony/expression-language": "^6.4|^7.0",
  5948. "symfony/finder": "^6.4|^7.0",
  5949. "symfony/http-client-contracts": "^2.5|^3",
  5950. "symfony/process": "^6.4|^7.0",
  5951. "symfony/property-access": "^7.1",
  5952. "symfony/routing": "^6.4|^7.0",
  5953. "symfony/serializer": "^7.1",
  5954. "symfony/stopwatch": "^6.4|^7.0",
  5955. "symfony/translation": "^6.4|^7.0",
  5956. "symfony/translation-contracts": "^2.5|^3",
  5957. "symfony/uid": "^6.4|^7.0",
  5958. "symfony/validator": "^6.4|^7.0",
  5959. "symfony/var-dumper": "^6.4|^7.0",
  5960. "symfony/var-exporter": "^6.4|^7.0",
  5961. "twig/twig": "^3.12"
  5962. },
  5963. "type": "library",
  5964. "autoload": {
  5965. "psr-4": {
  5966. "Symfony\\Component\\HttpKernel\\": ""
  5967. },
  5968. "exclude-from-classmap": [
  5969. "/Tests/"
  5970. ]
  5971. },
  5972. "notification-url": "https://packagist.org/downloads/",
  5973. "license": [
  5974. "MIT"
  5975. ],
  5976. "authors": [
  5977. {
  5978. "name": "Fabien Potencier",
  5979. "email": "fabien@symfony.com"
  5980. },
  5981. {
  5982. "name": "Symfony Community",
  5983. "homepage": "https://symfony.com/contributors"
  5984. }
  5985. ],
  5986. "description": "Provides a structured process for converting a Request into a Response",
  5987. "homepage": "https://symfony.com",
  5988. "support": {
  5989. "source": "https://github.com/symfony/http-kernel/tree/v7.3.3"
  5990. },
  5991. "funding": [
  5992. {
  5993. "url": "https://symfony.com/sponsor",
  5994. "type": "custom"
  5995. },
  5996. {
  5997. "url": "https://github.com/fabpot",
  5998. "type": "github"
  5999. },
  6000. {
  6001. "url": "https://github.com/nicolas-grekas",
  6002. "type": "github"
  6003. },
  6004. {
  6005. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6006. "type": "tidelift"
  6007. }
  6008. ],
  6009. "time": "2025-08-29T08:23:45+00:00"
  6010. },
  6011. {
  6012. "name": "symfony/mailer",
  6013. "version": "v7.3.3",
  6014. "source": {
  6015. "type": "git",
  6016. "url": "https://github.com/symfony/mailer.git",
  6017. "reference": "a32f3f45f1990db8c4341d5122a7d3a381c7e575"
  6018. },
  6019. "dist": {
  6020. "type": "zip",
  6021. "url": "https://api.github.com/repos/symfony/mailer/zipball/a32f3f45f1990db8c4341d5122a7d3a381c7e575",
  6022. "reference": "a32f3f45f1990db8c4341d5122a7d3a381c7e575",
  6023. "shasum": ""
  6024. },
  6025. "require": {
  6026. "egulias/email-validator": "^2.1.10|^3|^4",
  6027. "php": ">=8.2",
  6028. "psr/event-dispatcher": "^1",
  6029. "psr/log": "^1|^2|^3",
  6030. "symfony/event-dispatcher": "^6.4|^7.0",
  6031. "symfony/mime": "^7.2",
  6032. "symfony/service-contracts": "^2.5|^3"
  6033. },
  6034. "conflict": {
  6035. "symfony/http-client-contracts": "<2.5",
  6036. "symfony/http-kernel": "<6.4",
  6037. "symfony/messenger": "<6.4",
  6038. "symfony/mime": "<6.4",
  6039. "symfony/twig-bridge": "<6.4"
  6040. },
  6041. "require-dev": {
  6042. "symfony/console": "^6.4|^7.0",
  6043. "symfony/http-client": "^6.4|^7.0",
  6044. "symfony/messenger": "^6.4|^7.0",
  6045. "symfony/twig-bridge": "^6.4|^7.0"
  6046. },
  6047. "type": "library",
  6048. "autoload": {
  6049. "psr-4": {
  6050. "Symfony\\Component\\Mailer\\": ""
  6051. },
  6052. "exclude-from-classmap": [
  6053. "/Tests/"
  6054. ]
  6055. },
  6056. "notification-url": "https://packagist.org/downloads/",
  6057. "license": [
  6058. "MIT"
  6059. ],
  6060. "authors": [
  6061. {
  6062. "name": "Fabien Potencier",
  6063. "email": "fabien@symfony.com"
  6064. },
  6065. {
  6066. "name": "Symfony Community",
  6067. "homepage": "https://symfony.com/contributors"
  6068. }
  6069. ],
  6070. "description": "Helps sending emails",
  6071. "homepage": "https://symfony.com",
  6072. "support": {
  6073. "source": "https://github.com/symfony/mailer/tree/v7.3.3"
  6074. },
  6075. "funding": [
  6076. {
  6077. "url": "https://symfony.com/sponsor",
  6078. "type": "custom"
  6079. },
  6080. {
  6081. "url": "https://github.com/fabpot",
  6082. "type": "github"
  6083. },
  6084. {
  6085. "url": "https://github.com/nicolas-grekas",
  6086. "type": "github"
  6087. },
  6088. {
  6089. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6090. "type": "tidelift"
  6091. }
  6092. ],
  6093. "time": "2025-08-13T11:49:31+00:00"
  6094. },
  6095. {
  6096. "name": "symfony/mime",
  6097. "version": "v7.3.2",
  6098. "source": {
  6099. "type": "git",
  6100. "url": "https://github.com/symfony/mime.git",
  6101. "reference": "e0a0f859148daf1edf6c60b398eb40bfc96697d1"
  6102. },
  6103. "dist": {
  6104. "type": "zip",
  6105. "url": "https://api.github.com/repos/symfony/mime/zipball/e0a0f859148daf1edf6c60b398eb40bfc96697d1",
  6106. "reference": "e0a0f859148daf1edf6c60b398eb40bfc96697d1",
  6107. "shasum": ""
  6108. },
  6109. "require": {
  6110. "php": ">=8.2",
  6111. "symfony/polyfill-intl-idn": "^1.10",
  6112. "symfony/polyfill-mbstring": "^1.0"
  6113. },
  6114. "conflict": {
  6115. "egulias/email-validator": "~3.0.0",
  6116. "phpdocumentor/reflection-docblock": "<3.2.2",
  6117. "phpdocumentor/type-resolver": "<1.4.0",
  6118. "symfony/mailer": "<6.4",
  6119. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  6120. },
  6121. "require-dev": {
  6122. "egulias/email-validator": "^2.1.10|^3.1|^4",
  6123. "league/html-to-markdown": "^5.0",
  6124. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6125. "symfony/dependency-injection": "^6.4|^7.0",
  6126. "symfony/process": "^6.4|^7.0",
  6127. "symfony/property-access": "^6.4|^7.0",
  6128. "symfony/property-info": "^6.4|^7.0",
  6129. "symfony/serializer": "^6.4.3|^7.0.3"
  6130. },
  6131. "type": "library",
  6132. "autoload": {
  6133. "psr-4": {
  6134. "Symfony\\Component\\Mime\\": ""
  6135. },
  6136. "exclude-from-classmap": [
  6137. "/Tests/"
  6138. ]
  6139. },
  6140. "notification-url": "https://packagist.org/downloads/",
  6141. "license": [
  6142. "MIT"
  6143. ],
  6144. "authors": [
  6145. {
  6146. "name": "Fabien Potencier",
  6147. "email": "fabien@symfony.com"
  6148. },
  6149. {
  6150. "name": "Symfony Community",
  6151. "homepage": "https://symfony.com/contributors"
  6152. }
  6153. ],
  6154. "description": "Allows manipulating MIME messages",
  6155. "homepage": "https://symfony.com",
  6156. "keywords": [
  6157. "mime",
  6158. "mime-type"
  6159. ],
  6160. "support": {
  6161. "source": "https://github.com/symfony/mime/tree/v7.3.2"
  6162. },
  6163. "funding": [
  6164. {
  6165. "url": "https://symfony.com/sponsor",
  6166. "type": "custom"
  6167. },
  6168. {
  6169. "url": "https://github.com/fabpot",
  6170. "type": "github"
  6171. },
  6172. {
  6173. "url": "https://github.com/nicolas-grekas",
  6174. "type": "github"
  6175. },
  6176. {
  6177. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6178. "type": "tidelift"
  6179. }
  6180. ],
  6181. "time": "2025-07-15T13:41:35+00:00"
  6182. },
  6183. {
  6184. "name": "symfony/polyfill-ctype",
  6185. "version": "v1.33.0",
  6186. "source": {
  6187. "type": "git",
  6188. "url": "https://github.com/symfony/polyfill-ctype.git",
  6189. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  6190. },
  6191. "dist": {
  6192. "type": "zip",
  6193. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  6194. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  6195. "shasum": ""
  6196. },
  6197. "require": {
  6198. "php": ">=7.2"
  6199. },
  6200. "provide": {
  6201. "ext-ctype": "*"
  6202. },
  6203. "suggest": {
  6204. "ext-ctype": "For best performance"
  6205. },
  6206. "type": "library",
  6207. "extra": {
  6208. "thanks": {
  6209. "url": "https://github.com/symfony/polyfill",
  6210. "name": "symfony/polyfill"
  6211. }
  6212. },
  6213. "autoload": {
  6214. "files": [
  6215. "bootstrap.php"
  6216. ],
  6217. "psr-4": {
  6218. "Symfony\\Polyfill\\Ctype\\": ""
  6219. }
  6220. },
  6221. "notification-url": "https://packagist.org/downloads/",
  6222. "license": [
  6223. "MIT"
  6224. ],
  6225. "authors": [
  6226. {
  6227. "name": "Gert de Pagter",
  6228. "email": "BackEndTea@gmail.com"
  6229. },
  6230. {
  6231. "name": "Symfony Community",
  6232. "homepage": "https://symfony.com/contributors"
  6233. }
  6234. ],
  6235. "description": "Symfony polyfill for ctype functions",
  6236. "homepage": "https://symfony.com",
  6237. "keywords": [
  6238. "compatibility",
  6239. "ctype",
  6240. "polyfill",
  6241. "portable"
  6242. ],
  6243. "support": {
  6244. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.33.0"
  6245. },
  6246. "funding": [
  6247. {
  6248. "url": "https://symfony.com/sponsor",
  6249. "type": "custom"
  6250. },
  6251. {
  6252. "url": "https://github.com/fabpot",
  6253. "type": "github"
  6254. },
  6255. {
  6256. "url": "https://github.com/nicolas-grekas",
  6257. "type": "github"
  6258. },
  6259. {
  6260. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6261. "type": "tidelift"
  6262. }
  6263. ],
  6264. "time": "2024-09-09T11:45:10+00:00"
  6265. },
  6266. {
  6267. "name": "symfony/polyfill-intl-grapheme",
  6268. "version": "v1.33.0",
  6269. "source": {
  6270. "type": "git",
  6271. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6272. "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70"
  6273. },
  6274. "dist": {
  6275. "type": "zip",
  6276. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/380872130d3a5dd3ace2f4010d95125fde5d5c70",
  6277. "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70",
  6278. "shasum": ""
  6279. },
  6280. "require": {
  6281. "php": ">=7.2"
  6282. },
  6283. "suggest": {
  6284. "ext-intl": "For best performance"
  6285. },
  6286. "type": "library",
  6287. "extra": {
  6288. "thanks": {
  6289. "url": "https://github.com/symfony/polyfill",
  6290. "name": "symfony/polyfill"
  6291. }
  6292. },
  6293. "autoload": {
  6294. "files": [
  6295. "bootstrap.php"
  6296. ],
  6297. "psr-4": {
  6298. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6299. }
  6300. },
  6301. "notification-url": "https://packagist.org/downloads/",
  6302. "license": [
  6303. "MIT"
  6304. ],
  6305. "authors": [
  6306. {
  6307. "name": "Nicolas Grekas",
  6308. "email": "p@tchwork.com"
  6309. },
  6310. {
  6311. "name": "Symfony Community",
  6312. "homepage": "https://symfony.com/contributors"
  6313. }
  6314. ],
  6315. "description": "Symfony polyfill for intl's grapheme_* functions",
  6316. "homepage": "https://symfony.com",
  6317. "keywords": [
  6318. "compatibility",
  6319. "grapheme",
  6320. "intl",
  6321. "polyfill",
  6322. "portable",
  6323. "shim"
  6324. ],
  6325. "support": {
  6326. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.33.0"
  6327. },
  6328. "funding": [
  6329. {
  6330. "url": "https://symfony.com/sponsor",
  6331. "type": "custom"
  6332. },
  6333. {
  6334. "url": "https://github.com/fabpot",
  6335. "type": "github"
  6336. },
  6337. {
  6338. "url": "https://github.com/nicolas-grekas",
  6339. "type": "github"
  6340. },
  6341. {
  6342. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6343. "type": "tidelift"
  6344. }
  6345. ],
  6346. "time": "2025-06-27T09:58:17+00:00"
  6347. },
  6348. {
  6349. "name": "symfony/polyfill-intl-idn",
  6350. "version": "v1.33.0",
  6351. "source": {
  6352. "type": "git",
  6353. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6354. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3"
  6355. },
  6356. "dist": {
  6357. "type": "zip",
  6358. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  6359. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  6360. "shasum": ""
  6361. },
  6362. "require": {
  6363. "php": ">=7.2",
  6364. "symfony/polyfill-intl-normalizer": "^1.10"
  6365. },
  6366. "suggest": {
  6367. "ext-intl": "For best performance"
  6368. },
  6369. "type": "library",
  6370. "extra": {
  6371. "thanks": {
  6372. "url": "https://github.com/symfony/polyfill",
  6373. "name": "symfony/polyfill"
  6374. }
  6375. },
  6376. "autoload": {
  6377. "files": [
  6378. "bootstrap.php"
  6379. ],
  6380. "psr-4": {
  6381. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6382. }
  6383. },
  6384. "notification-url": "https://packagist.org/downloads/",
  6385. "license": [
  6386. "MIT"
  6387. ],
  6388. "authors": [
  6389. {
  6390. "name": "Laurent Bassin",
  6391. "email": "laurent@bassin.info"
  6392. },
  6393. {
  6394. "name": "Trevor Rowbotham",
  6395. "email": "trevor.rowbotham@pm.me"
  6396. },
  6397. {
  6398. "name": "Symfony Community",
  6399. "homepage": "https://symfony.com/contributors"
  6400. }
  6401. ],
  6402. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6403. "homepage": "https://symfony.com",
  6404. "keywords": [
  6405. "compatibility",
  6406. "idn",
  6407. "intl",
  6408. "polyfill",
  6409. "portable",
  6410. "shim"
  6411. ],
  6412. "support": {
  6413. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.33.0"
  6414. },
  6415. "funding": [
  6416. {
  6417. "url": "https://symfony.com/sponsor",
  6418. "type": "custom"
  6419. },
  6420. {
  6421. "url": "https://github.com/fabpot",
  6422. "type": "github"
  6423. },
  6424. {
  6425. "url": "https://github.com/nicolas-grekas",
  6426. "type": "github"
  6427. },
  6428. {
  6429. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6430. "type": "tidelift"
  6431. }
  6432. ],
  6433. "time": "2024-09-10T14:38:51+00:00"
  6434. },
  6435. {
  6436. "name": "symfony/polyfill-intl-normalizer",
  6437. "version": "v1.33.0",
  6438. "source": {
  6439. "type": "git",
  6440. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6441. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  6442. },
  6443. "dist": {
  6444. "type": "zip",
  6445. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  6446. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  6447. "shasum": ""
  6448. },
  6449. "require": {
  6450. "php": ">=7.2"
  6451. },
  6452. "suggest": {
  6453. "ext-intl": "For best performance"
  6454. },
  6455. "type": "library",
  6456. "extra": {
  6457. "thanks": {
  6458. "url": "https://github.com/symfony/polyfill",
  6459. "name": "symfony/polyfill"
  6460. }
  6461. },
  6462. "autoload": {
  6463. "files": [
  6464. "bootstrap.php"
  6465. ],
  6466. "psr-4": {
  6467. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6468. },
  6469. "classmap": [
  6470. "Resources/stubs"
  6471. ]
  6472. },
  6473. "notification-url": "https://packagist.org/downloads/",
  6474. "license": [
  6475. "MIT"
  6476. ],
  6477. "authors": [
  6478. {
  6479. "name": "Nicolas Grekas",
  6480. "email": "p@tchwork.com"
  6481. },
  6482. {
  6483. "name": "Symfony Community",
  6484. "homepage": "https://symfony.com/contributors"
  6485. }
  6486. ],
  6487. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6488. "homepage": "https://symfony.com",
  6489. "keywords": [
  6490. "compatibility",
  6491. "intl",
  6492. "normalizer",
  6493. "polyfill",
  6494. "portable",
  6495. "shim"
  6496. ],
  6497. "support": {
  6498. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.33.0"
  6499. },
  6500. "funding": [
  6501. {
  6502. "url": "https://symfony.com/sponsor",
  6503. "type": "custom"
  6504. },
  6505. {
  6506. "url": "https://github.com/fabpot",
  6507. "type": "github"
  6508. },
  6509. {
  6510. "url": "https://github.com/nicolas-grekas",
  6511. "type": "github"
  6512. },
  6513. {
  6514. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6515. "type": "tidelift"
  6516. }
  6517. ],
  6518. "time": "2024-09-09T11:45:10+00:00"
  6519. },
  6520. {
  6521. "name": "symfony/polyfill-mbstring",
  6522. "version": "v1.33.0",
  6523. "source": {
  6524. "type": "git",
  6525. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6526. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
  6527. },
  6528. "dist": {
  6529. "type": "zip",
  6530. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
  6531. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
  6532. "shasum": ""
  6533. },
  6534. "require": {
  6535. "ext-iconv": "*",
  6536. "php": ">=7.2"
  6537. },
  6538. "provide": {
  6539. "ext-mbstring": "*"
  6540. },
  6541. "suggest": {
  6542. "ext-mbstring": "For best performance"
  6543. },
  6544. "type": "library",
  6545. "extra": {
  6546. "thanks": {
  6547. "url": "https://github.com/symfony/polyfill",
  6548. "name": "symfony/polyfill"
  6549. }
  6550. },
  6551. "autoload": {
  6552. "files": [
  6553. "bootstrap.php"
  6554. ],
  6555. "psr-4": {
  6556. "Symfony\\Polyfill\\Mbstring\\": ""
  6557. }
  6558. },
  6559. "notification-url": "https://packagist.org/downloads/",
  6560. "license": [
  6561. "MIT"
  6562. ],
  6563. "authors": [
  6564. {
  6565. "name": "Nicolas Grekas",
  6566. "email": "p@tchwork.com"
  6567. },
  6568. {
  6569. "name": "Symfony Community",
  6570. "homepage": "https://symfony.com/contributors"
  6571. }
  6572. ],
  6573. "description": "Symfony polyfill for the Mbstring extension",
  6574. "homepage": "https://symfony.com",
  6575. "keywords": [
  6576. "compatibility",
  6577. "mbstring",
  6578. "polyfill",
  6579. "portable",
  6580. "shim"
  6581. ],
  6582. "support": {
  6583. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.33.0"
  6584. },
  6585. "funding": [
  6586. {
  6587. "url": "https://symfony.com/sponsor",
  6588. "type": "custom"
  6589. },
  6590. {
  6591. "url": "https://github.com/fabpot",
  6592. "type": "github"
  6593. },
  6594. {
  6595. "url": "https://github.com/nicolas-grekas",
  6596. "type": "github"
  6597. },
  6598. {
  6599. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6600. "type": "tidelift"
  6601. }
  6602. ],
  6603. "time": "2024-12-23T08:48:59+00:00"
  6604. },
  6605. {
  6606. "name": "symfony/polyfill-php80",
  6607. "version": "v1.33.0",
  6608. "source": {
  6609. "type": "git",
  6610. "url": "https://github.com/symfony/polyfill-php80.git",
  6611. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608"
  6612. },
  6613. "dist": {
  6614. "type": "zip",
  6615. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  6616. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  6617. "shasum": ""
  6618. },
  6619. "require": {
  6620. "php": ">=7.2"
  6621. },
  6622. "type": "library",
  6623. "extra": {
  6624. "thanks": {
  6625. "url": "https://github.com/symfony/polyfill",
  6626. "name": "symfony/polyfill"
  6627. }
  6628. },
  6629. "autoload": {
  6630. "files": [
  6631. "bootstrap.php"
  6632. ],
  6633. "psr-4": {
  6634. "Symfony\\Polyfill\\Php80\\": ""
  6635. },
  6636. "classmap": [
  6637. "Resources/stubs"
  6638. ]
  6639. },
  6640. "notification-url": "https://packagist.org/downloads/",
  6641. "license": [
  6642. "MIT"
  6643. ],
  6644. "authors": [
  6645. {
  6646. "name": "Ion Bazan",
  6647. "email": "ion.bazan@gmail.com"
  6648. },
  6649. {
  6650. "name": "Nicolas Grekas",
  6651. "email": "p@tchwork.com"
  6652. },
  6653. {
  6654. "name": "Symfony Community",
  6655. "homepage": "https://symfony.com/contributors"
  6656. }
  6657. ],
  6658. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6659. "homepage": "https://symfony.com",
  6660. "keywords": [
  6661. "compatibility",
  6662. "polyfill",
  6663. "portable",
  6664. "shim"
  6665. ],
  6666. "support": {
  6667. "source": "https://github.com/symfony/polyfill-php80/tree/v1.33.0"
  6668. },
  6669. "funding": [
  6670. {
  6671. "url": "https://symfony.com/sponsor",
  6672. "type": "custom"
  6673. },
  6674. {
  6675. "url": "https://github.com/fabpot",
  6676. "type": "github"
  6677. },
  6678. {
  6679. "url": "https://github.com/nicolas-grekas",
  6680. "type": "github"
  6681. },
  6682. {
  6683. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6684. "type": "tidelift"
  6685. }
  6686. ],
  6687. "time": "2025-01-02T08:10:11+00:00"
  6688. },
  6689. {
  6690. "name": "symfony/polyfill-php81",
  6691. "version": "v1.33.0",
  6692. "source": {
  6693. "type": "git",
  6694. "url": "https://github.com/symfony/polyfill-php81.git",
  6695. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  6696. },
  6697. "dist": {
  6698. "type": "zip",
  6699. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  6700. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  6701. "shasum": ""
  6702. },
  6703. "require": {
  6704. "php": ">=7.2"
  6705. },
  6706. "type": "library",
  6707. "extra": {
  6708. "thanks": {
  6709. "url": "https://github.com/symfony/polyfill",
  6710. "name": "symfony/polyfill"
  6711. }
  6712. },
  6713. "autoload": {
  6714. "files": [
  6715. "bootstrap.php"
  6716. ],
  6717. "psr-4": {
  6718. "Symfony\\Polyfill\\Php81\\": ""
  6719. },
  6720. "classmap": [
  6721. "Resources/stubs"
  6722. ]
  6723. },
  6724. "notification-url": "https://packagist.org/downloads/",
  6725. "license": [
  6726. "MIT"
  6727. ],
  6728. "authors": [
  6729. {
  6730. "name": "Nicolas Grekas",
  6731. "email": "p@tchwork.com"
  6732. },
  6733. {
  6734. "name": "Symfony Community",
  6735. "homepage": "https://symfony.com/contributors"
  6736. }
  6737. ],
  6738. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  6739. "homepage": "https://symfony.com",
  6740. "keywords": [
  6741. "compatibility",
  6742. "polyfill",
  6743. "portable",
  6744. "shim"
  6745. ],
  6746. "support": {
  6747. "source": "https://github.com/symfony/polyfill-php81/tree/v1.33.0"
  6748. },
  6749. "funding": [
  6750. {
  6751. "url": "https://symfony.com/sponsor",
  6752. "type": "custom"
  6753. },
  6754. {
  6755. "url": "https://github.com/fabpot",
  6756. "type": "github"
  6757. },
  6758. {
  6759. "url": "https://github.com/nicolas-grekas",
  6760. "type": "github"
  6761. },
  6762. {
  6763. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6764. "type": "tidelift"
  6765. }
  6766. ],
  6767. "time": "2024-09-09T11:45:10+00:00"
  6768. },
  6769. {
  6770. "name": "symfony/polyfill-php83",
  6771. "version": "v1.33.0",
  6772. "source": {
  6773. "type": "git",
  6774. "url": "https://github.com/symfony/polyfill-php83.git",
  6775. "reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5"
  6776. },
  6777. "dist": {
  6778. "type": "zip",
  6779. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/17f6f9a6b1735c0f163024d959f700cfbc5155e5",
  6780. "reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5",
  6781. "shasum": ""
  6782. },
  6783. "require": {
  6784. "php": ">=7.2"
  6785. },
  6786. "type": "library",
  6787. "extra": {
  6788. "thanks": {
  6789. "url": "https://github.com/symfony/polyfill",
  6790. "name": "symfony/polyfill"
  6791. }
  6792. },
  6793. "autoload": {
  6794. "files": [
  6795. "bootstrap.php"
  6796. ],
  6797. "psr-4": {
  6798. "Symfony\\Polyfill\\Php83\\": ""
  6799. },
  6800. "classmap": [
  6801. "Resources/stubs"
  6802. ]
  6803. },
  6804. "notification-url": "https://packagist.org/downloads/",
  6805. "license": [
  6806. "MIT"
  6807. ],
  6808. "authors": [
  6809. {
  6810. "name": "Nicolas Grekas",
  6811. "email": "p@tchwork.com"
  6812. },
  6813. {
  6814. "name": "Symfony Community",
  6815. "homepage": "https://symfony.com/contributors"
  6816. }
  6817. ],
  6818. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  6819. "homepage": "https://symfony.com",
  6820. "keywords": [
  6821. "compatibility",
  6822. "polyfill",
  6823. "portable",
  6824. "shim"
  6825. ],
  6826. "support": {
  6827. "source": "https://github.com/symfony/polyfill-php83/tree/v1.33.0"
  6828. },
  6829. "funding": [
  6830. {
  6831. "url": "https://symfony.com/sponsor",
  6832. "type": "custom"
  6833. },
  6834. {
  6835. "url": "https://github.com/fabpot",
  6836. "type": "github"
  6837. },
  6838. {
  6839. "url": "https://github.com/nicolas-grekas",
  6840. "type": "github"
  6841. },
  6842. {
  6843. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6844. "type": "tidelift"
  6845. }
  6846. ],
  6847. "time": "2025-07-08T02:45:35+00:00"
  6848. },
  6849. {
  6850. "name": "symfony/polyfill-php84",
  6851. "version": "v1.33.0",
  6852. "source": {
  6853. "type": "git",
  6854. "url": "https://github.com/symfony/polyfill-php84.git",
  6855. "reference": "d8ced4d875142b6a7426000426b8abc631d6b191"
  6856. },
  6857. "dist": {
  6858. "type": "zip",
  6859. "url": "https://api.github.com/repos/symfony/polyfill-php84/zipball/d8ced4d875142b6a7426000426b8abc631d6b191",
  6860. "reference": "d8ced4d875142b6a7426000426b8abc631d6b191",
  6861. "shasum": ""
  6862. },
  6863. "require": {
  6864. "php": ">=7.2"
  6865. },
  6866. "type": "library",
  6867. "extra": {
  6868. "thanks": {
  6869. "url": "https://github.com/symfony/polyfill",
  6870. "name": "symfony/polyfill"
  6871. }
  6872. },
  6873. "autoload": {
  6874. "files": [
  6875. "bootstrap.php"
  6876. ],
  6877. "psr-4": {
  6878. "Symfony\\Polyfill\\Php84\\": ""
  6879. },
  6880. "classmap": [
  6881. "Resources/stubs"
  6882. ]
  6883. },
  6884. "notification-url": "https://packagist.org/downloads/",
  6885. "license": [
  6886. "MIT"
  6887. ],
  6888. "authors": [
  6889. {
  6890. "name": "Nicolas Grekas",
  6891. "email": "p@tchwork.com"
  6892. },
  6893. {
  6894. "name": "Symfony Community",
  6895. "homepage": "https://symfony.com/contributors"
  6896. }
  6897. ],
  6898. "description": "Symfony polyfill backporting some PHP 8.4+ features to lower PHP versions",
  6899. "homepage": "https://symfony.com",
  6900. "keywords": [
  6901. "compatibility",
  6902. "polyfill",
  6903. "portable",
  6904. "shim"
  6905. ],
  6906. "support": {
  6907. "source": "https://github.com/symfony/polyfill-php84/tree/v1.33.0"
  6908. },
  6909. "funding": [
  6910. {
  6911. "url": "https://symfony.com/sponsor",
  6912. "type": "custom"
  6913. },
  6914. {
  6915. "url": "https://github.com/fabpot",
  6916. "type": "github"
  6917. },
  6918. {
  6919. "url": "https://github.com/nicolas-grekas",
  6920. "type": "github"
  6921. },
  6922. {
  6923. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6924. "type": "tidelift"
  6925. }
  6926. ],
  6927. "time": "2025-06-24T13:30:11+00:00"
  6928. },
  6929. {
  6930. "name": "symfony/polyfill-php85",
  6931. "version": "v1.33.0",
  6932. "source": {
  6933. "type": "git",
  6934. "url": "https://github.com/symfony/polyfill-php85.git",
  6935. "reference": "d4e5fcd4ab3d998ab16c0db48e6cbb9a01993f91"
  6936. },
  6937. "dist": {
  6938. "type": "zip",
  6939. "url": "https://api.github.com/repos/symfony/polyfill-php85/zipball/d4e5fcd4ab3d998ab16c0db48e6cbb9a01993f91",
  6940. "reference": "d4e5fcd4ab3d998ab16c0db48e6cbb9a01993f91",
  6941. "shasum": ""
  6942. },
  6943. "require": {
  6944. "php": ">=7.2"
  6945. },
  6946. "type": "library",
  6947. "extra": {
  6948. "thanks": {
  6949. "url": "https://github.com/symfony/polyfill",
  6950. "name": "symfony/polyfill"
  6951. }
  6952. },
  6953. "autoload": {
  6954. "files": [
  6955. "bootstrap.php"
  6956. ],
  6957. "psr-4": {
  6958. "Symfony\\Polyfill\\Php85\\": ""
  6959. },
  6960. "classmap": [
  6961. "Resources/stubs"
  6962. ]
  6963. },
  6964. "notification-url": "https://packagist.org/downloads/",
  6965. "license": [
  6966. "MIT"
  6967. ],
  6968. "authors": [
  6969. {
  6970. "name": "Nicolas Grekas",
  6971. "email": "p@tchwork.com"
  6972. },
  6973. {
  6974. "name": "Symfony Community",
  6975. "homepage": "https://symfony.com/contributors"
  6976. }
  6977. ],
  6978. "description": "Symfony polyfill backporting some PHP 8.5+ features to lower PHP versions",
  6979. "homepage": "https://symfony.com",
  6980. "keywords": [
  6981. "compatibility",
  6982. "polyfill",
  6983. "portable",
  6984. "shim"
  6985. ],
  6986. "support": {
  6987. "source": "https://github.com/symfony/polyfill-php85/tree/v1.33.0"
  6988. },
  6989. "funding": [
  6990. {
  6991. "url": "https://symfony.com/sponsor",
  6992. "type": "custom"
  6993. },
  6994. {
  6995. "url": "https://github.com/fabpot",
  6996. "type": "github"
  6997. },
  6998. {
  6999. "url": "https://github.com/nicolas-grekas",
  7000. "type": "github"
  7001. },
  7002. {
  7003. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7004. "type": "tidelift"
  7005. }
  7006. ],
  7007. "time": "2025-06-23T16:12:55+00:00"
  7008. },
  7009. {
  7010. "name": "symfony/polyfill-uuid",
  7011. "version": "v1.33.0",
  7012. "source": {
  7013. "type": "git",
  7014. "url": "https://github.com/symfony/polyfill-uuid.git",
  7015. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2"
  7016. },
  7017. "dist": {
  7018. "type": "zip",
  7019. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  7020. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  7021. "shasum": ""
  7022. },
  7023. "require": {
  7024. "php": ">=7.2"
  7025. },
  7026. "provide": {
  7027. "ext-uuid": "*"
  7028. },
  7029. "suggest": {
  7030. "ext-uuid": "For best performance"
  7031. },
  7032. "type": "library",
  7033. "extra": {
  7034. "thanks": {
  7035. "url": "https://github.com/symfony/polyfill",
  7036. "name": "symfony/polyfill"
  7037. }
  7038. },
  7039. "autoload": {
  7040. "files": [
  7041. "bootstrap.php"
  7042. ],
  7043. "psr-4": {
  7044. "Symfony\\Polyfill\\Uuid\\": ""
  7045. }
  7046. },
  7047. "notification-url": "https://packagist.org/downloads/",
  7048. "license": [
  7049. "MIT"
  7050. ],
  7051. "authors": [
  7052. {
  7053. "name": "Grégoire Pineau",
  7054. "email": "lyrixx@lyrixx.info"
  7055. },
  7056. {
  7057. "name": "Symfony Community",
  7058. "homepage": "https://symfony.com/contributors"
  7059. }
  7060. ],
  7061. "description": "Symfony polyfill for uuid functions",
  7062. "homepage": "https://symfony.com",
  7063. "keywords": [
  7064. "compatibility",
  7065. "polyfill",
  7066. "portable",
  7067. "uuid"
  7068. ],
  7069. "support": {
  7070. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.33.0"
  7071. },
  7072. "funding": [
  7073. {
  7074. "url": "https://symfony.com/sponsor",
  7075. "type": "custom"
  7076. },
  7077. {
  7078. "url": "https://github.com/fabpot",
  7079. "type": "github"
  7080. },
  7081. {
  7082. "url": "https://github.com/nicolas-grekas",
  7083. "type": "github"
  7084. },
  7085. {
  7086. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7087. "type": "tidelift"
  7088. }
  7089. ],
  7090. "time": "2024-09-09T11:45:10+00:00"
  7091. },
  7092. {
  7093. "name": "symfony/process",
  7094. "version": "v7.3.3",
  7095. "source": {
  7096. "type": "git",
  7097. "url": "https://github.com/symfony/process.git",
  7098. "reference": "32241012d521e2e8a9d713adb0812bb773b907f1"
  7099. },
  7100. "dist": {
  7101. "type": "zip",
  7102. "url": "https://api.github.com/repos/symfony/process/zipball/32241012d521e2e8a9d713adb0812bb773b907f1",
  7103. "reference": "32241012d521e2e8a9d713adb0812bb773b907f1",
  7104. "shasum": ""
  7105. },
  7106. "require": {
  7107. "php": ">=8.2"
  7108. },
  7109. "type": "library",
  7110. "autoload": {
  7111. "psr-4": {
  7112. "Symfony\\Component\\Process\\": ""
  7113. },
  7114. "exclude-from-classmap": [
  7115. "/Tests/"
  7116. ]
  7117. },
  7118. "notification-url": "https://packagist.org/downloads/",
  7119. "license": [
  7120. "MIT"
  7121. ],
  7122. "authors": [
  7123. {
  7124. "name": "Fabien Potencier",
  7125. "email": "fabien@symfony.com"
  7126. },
  7127. {
  7128. "name": "Symfony Community",
  7129. "homepage": "https://symfony.com/contributors"
  7130. }
  7131. ],
  7132. "description": "Executes commands in sub-processes",
  7133. "homepage": "https://symfony.com",
  7134. "support": {
  7135. "source": "https://github.com/symfony/process/tree/v7.3.3"
  7136. },
  7137. "funding": [
  7138. {
  7139. "url": "https://symfony.com/sponsor",
  7140. "type": "custom"
  7141. },
  7142. {
  7143. "url": "https://github.com/fabpot",
  7144. "type": "github"
  7145. },
  7146. {
  7147. "url": "https://github.com/nicolas-grekas",
  7148. "type": "github"
  7149. },
  7150. {
  7151. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7152. "type": "tidelift"
  7153. }
  7154. ],
  7155. "time": "2025-08-18T09:42:54+00:00"
  7156. },
  7157. {
  7158. "name": "symfony/routing",
  7159. "version": "v7.3.2",
  7160. "source": {
  7161. "type": "git",
  7162. "url": "https://github.com/symfony/routing.git",
  7163. "reference": "7614b8ca5fa89b9cd233e21b627bfc5774f586e4"
  7164. },
  7165. "dist": {
  7166. "type": "zip",
  7167. "url": "https://api.github.com/repos/symfony/routing/zipball/7614b8ca5fa89b9cd233e21b627bfc5774f586e4",
  7168. "reference": "7614b8ca5fa89b9cd233e21b627bfc5774f586e4",
  7169. "shasum": ""
  7170. },
  7171. "require": {
  7172. "php": ">=8.2",
  7173. "symfony/deprecation-contracts": "^2.5|^3"
  7174. },
  7175. "conflict": {
  7176. "symfony/config": "<6.4",
  7177. "symfony/dependency-injection": "<6.4",
  7178. "symfony/yaml": "<6.4"
  7179. },
  7180. "require-dev": {
  7181. "psr/log": "^1|^2|^3",
  7182. "symfony/config": "^6.4|^7.0",
  7183. "symfony/dependency-injection": "^6.4|^7.0",
  7184. "symfony/expression-language": "^6.4|^7.0",
  7185. "symfony/http-foundation": "^6.4|^7.0",
  7186. "symfony/yaml": "^6.4|^7.0"
  7187. },
  7188. "type": "library",
  7189. "autoload": {
  7190. "psr-4": {
  7191. "Symfony\\Component\\Routing\\": ""
  7192. },
  7193. "exclude-from-classmap": [
  7194. "/Tests/"
  7195. ]
  7196. },
  7197. "notification-url": "https://packagist.org/downloads/",
  7198. "license": [
  7199. "MIT"
  7200. ],
  7201. "authors": [
  7202. {
  7203. "name": "Fabien Potencier",
  7204. "email": "fabien@symfony.com"
  7205. },
  7206. {
  7207. "name": "Symfony Community",
  7208. "homepage": "https://symfony.com/contributors"
  7209. }
  7210. ],
  7211. "description": "Maps an HTTP request to a set of configuration variables",
  7212. "homepage": "https://symfony.com",
  7213. "keywords": [
  7214. "router",
  7215. "routing",
  7216. "uri",
  7217. "url"
  7218. ],
  7219. "support": {
  7220. "source": "https://github.com/symfony/routing/tree/v7.3.2"
  7221. },
  7222. "funding": [
  7223. {
  7224. "url": "https://symfony.com/sponsor",
  7225. "type": "custom"
  7226. },
  7227. {
  7228. "url": "https://github.com/fabpot",
  7229. "type": "github"
  7230. },
  7231. {
  7232. "url": "https://github.com/nicolas-grekas",
  7233. "type": "github"
  7234. },
  7235. {
  7236. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7237. "type": "tidelift"
  7238. }
  7239. ],
  7240. "time": "2025-07-15T11:36:08+00:00"
  7241. },
  7242. {
  7243. "name": "symfony/service-contracts",
  7244. "version": "v3.6.0",
  7245. "source": {
  7246. "type": "git",
  7247. "url": "https://github.com/symfony/service-contracts.git",
  7248. "reference": "f021b05a130d35510bd6b25fe9053c2a8a15d5d4"
  7249. },
  7250. "dist": {
  7251. "type": "zip",
  7252. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f021b05a130d35510bd6b25fe9053c2a8a15d5d4",
  7253. "reference": "f021b05a130d35510bd6b25fe9053c2a8a15d5d4",
  7254. "shasum": ""
  7255. },
  7256. "require": {
  7257. "php": ">=8.1",
  7258. "psr/container": "^1.1|^2.0",
  7259. "symfony/deprecation-contracts": "^2.5|^3"
  7260. },
  7261. "conflict": {
  7262. "ext-psr": "<1.1|>=2"
  7263. },
  7264. "type": "library",
  7265. "extra": {
  7266. "thanks": {
  7267. "url": "https://github.com/symfony/contracts",
  7268. "name": "symfony/contracts"
  7269. },
  7270. "branch-alias": {
  7271. "dev-main": "3.6-dev"
  7272. }
  7273. },
  7274. "autoload": {
  7275. "psr-4": {
  7276. "Symfony\\Contracts\\Service\\": ""
  7277. },
  7278. "exclude-from-classmap": [
  7279. "/Test/"
  7280. ]
  7281. },
  7282. "notification-url": "https://packagist.org/downloads/",
  7283. "license": [
  7284. "MIT"
  7285. ],
  7286. "authors": [
  7287. {
  7288. "name": "Nicolas Grekas",
  7289. "email": "p@tchwork.com"
  7290. },
  7291. {
  7292. "name": "Symfony Community",
  7293. "homepage": "https://symfony.com/contributors"
  7294. }
  7295. ],
  7296. "description": "Generic abstractions related to writing services",
  7297. "homepage": "https://symfony.com",
  7298. "keywords": [
  7299. "abstractions",
  7300. "contracts",
  7301. "decoupling",
  7302. "interfaces",
  7303. "interoperability",
  7304. "standards"
  7305. ],
  7306. "support": {
  7307. "source": "https://github.com/symfony/service-contracts/tree/v3.6.0"
  7308. },
  7309. "funding": [
  7310. {
  7311. "url": "https://symfony.com/sponsor",
  7312. "type": "custom"
  7313. },
  7314. {
  7315. "url": "https://github.com/fabpot",
  7316. "type": "github"
  7317. },
  7318. {
  7319. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7320. "type": "tidelift"
  7321. }
  7322. ],
  7323. "time": "2025-04-25T09:37:31+00:00"
  7324. },
  7325. {
  7326. "name": "symfony/string",
  7327. "version": "v7.3.3",
  7328. "source": {
  7329. "type": "git",
  7330. "url": "https://github.com/symfony/string.git",
  7331. "reference": "17a426cce5fd1f0901fefa9b2a490d0038fd3c9c"
  7332. },
  7333. "dist": {
  7334. "type": "zip",
  7335. "url": "https://api.github.com/repos/symfony/string/zipball/17a426cce5fd1f0901fefa9b2a490d0038fd3c9c",
  7336. "reference": "17a426cce5fd1f0901fefa9b2a490d0038fd3c9c",
  7337. "shasum": ""
  7338. },
  7339. "require": {
  7340. "php": ">=8.2",
  7341. "symfony/polyfill-ctype": "~1.8",
  7342. "symfony/polyfill-intl-grapheme": "~1.0",
  7343. "symfony/polyfill-intl-normalizer": "~1.0",
  7344. "symfony/polyfill-mbstring": "~1.0"
  7345. },
  7346. "conflict": {
  7347. "symfony/translation-contracts": "<2.5"
  7348. },
  7349. "require-dev": {
  7350. "symfony/emoji": "^7.1",
  7351. "symfony/error-handler": "^6.4|^7.0",
  7352. "symfony/http-client": "^6.4|^7.0",
  7353. "symfony/intl": "^6.4|^7.0",
  7354. "symfony/translation-contracts": "^2.5|^3.0",
  7355. "symfony/var-exporter": "^6.4|^7.0"
  7356. },
  7357. "type": "library",
  7358. "autoload": {
  7359. "files": [
  7360. "Resources/functions.php"
  7361. ],
  7362. "psr-4": {
  7363. "Symfony\\Component\\String\\": ""
  7364. },
  7365. "exclude-from-classmap": [
  7366. "/Tests/"
  7367. ]
  7368. },
  7369. "notification-url": "https://packagist.org/downloads/",
  7370. "license": [
  7371. "MIT"
  7372. ],
  7373. "authors": [
  7374. {
  7375. "name": "Nicolas Grekas",
  7376. "email": "p@tchwork.com"
  7377. },
  7378. {
  7379. "name": "Symfony Community",
  7380. "homepage": "https://symfony.com/contributors"
  7381. }
  7382. ],
  7383. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7384. "homepage": "https://symfony.com",
  7385. "keywords": [
  7386. "grapheme",
  7387. "i18n",
  7388. "string",
  7389. "unicode",
  7390. "utf-8",
  7391. "utf8"
  7392. ],
  7393. "support": {
  7394. "source": "https://github.com/symfony/string/tree/v7.3.3"
  7395. },
  7396. "funding": [
  7397. {
  7398. "url": "https://symfony.com/sponsor",
  7399. "type": "custom"
  7400. },
  7401. {
  7402. "url": "https://github.com/fabpot",
  7403. "type": "github"
  7404. },
  7405. {
  7406. "url": "https://github.com/nicolas-grekas",
  7407. "type": "github"
  7408. },
  7409. {
  7410. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7411. "type": "tidelift"
  7412. }
  7413. ],
  7414. "time": "2025-08-25T06:35:40+00:00"
  7415. },
  7416. {
  7417. "name": "symfony/translation",
  7418. "version": "v7.3.3",
  7419. "source": {
  7420. "type": "git",
  7421. "url": "https://github.com/symfony/translation.git",
  7422. "reference": "e0837b4cbcef63c754d89a4806575cada743a38d"
  7423. },
  7424. "dist": {
  7425. "type": "zip",
  7426. "url": "https://api.github.com/repos/symfony/translation/zipball/e0837b4cbcef63c754d89a4806575cada743a38d",
  7427. "reference": "e0837b4cbcef63c754d89a4806575cada743a38d",
  7428. "shasum": ""
  7429. },
  7430. "require": {
  7431. "php": ">=8.2",
  7432. "symfony/deprecation-contracts": "^2.5|^3",
  7433. "symfony/polyfill-mbstring": "~1.0",
  7434. "symfony/translation-contracts": "^2.5|^3.0"
  7435. },
  7436. "conflict": {
  7437. "nikic/php-parser": "<5.0",
  7438. "symfony/config": "<6.4",
  7439. "symfony/console": "<6.4",
  7440. "symfony/dependency-injection": "<6.4",
  7441. "symfony/http-client-contracts": "<2.5",
  7442. "symfony/http-kernel": "<6.4",
  7443. "symfony/service-contracts": "<2.5",
  7444. "symfony/twig-bundle": "<6.4",
  7445. "symfony/yaml": "<6.4"
  7446. },
  7447. "provide": {
  7448. "symfony/translation-implementation": "2.3|3.0"
  7449. },
  7450. "require-dev": {
  7451. "nikic/php-parser": "^5.0",
  7452. "psr/log": "^1|^2|^3",
  7453. "symfony/config": "^6.4|^7.0",
  7454. "symfony/console": "^6.4|^7.0",
  7455. "symfony/dependency-injection": "^6.4|^7.0",
  7456. "symfony/finder": "^6.4|^7.0",
  7457. "symfony/http-client-contracts": "^2.5|^3.0",
  7458. "symfony/http-kernel": "^6.4|^7.0",
  7459. "symfony/intl": "^6.4|^7.0",
  7460. "symfony/polyfill-intl-icu": "^1.21",
  7461. "symfony/routing": "^6.4|^7.0",
  7462. "symfony/service-contracts": "^2.5|^3",
  7463. "symfony/yaml": "^6.4|^7.0"
  7464. },
  7465. "type": "library",
  7466. "autoload": {
  7467. "files": [
  7468. "Resources/functions.php"
  7469. ],
  7470. "psr-4": {
  7471. "Symfony\\Component\\Translation\\": ""
  7472. },
  7473. "exclude-from-classmap": [
  7474. "/Tests/"
  7475. ]
  7476. },
  7477. "notification-url": "https://packagist.org/downloads/",
  7478. "license": [
  7479. "MIT"
  7480. ],
  7481. "authors": [
  7482. {
  7483. "name": "Fabien Potencier",
  7484. "email": "fabien@symfony.com"
  7485. },
  7486. {
  7487. "name": "Symfony Community",
  7488. "homepage": "https://symfony.com/contributors"
  7489. }
  7490. ],
  7491. "description": "Provides tools to internationalize your application",
  7492. "homepage": "https://symfony.com",
  7493. "support": {
  7494. "source": "https://github.com/symfony/translation/tree/v7.3.3"
  7495. },
  7496. "funding": [
  7497. {
  7498. "url": "https://symfony.com/sponsor",
  7499. "type": "custom"
  7500. },
  7501. {
  7502. "url": "https://github.com/fabpot",
  7503. "type": "github"
  7504. },
  7505. {
  7506. "url": "https://github.com/nicolas-grekas",
  7507. "type": "github"
  7508. },
  7509. {
  7510. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7511. "type": "tidelift"
  7512. }
  7513. ],
  7514. "time": "2025-08-01T21:02:37+00:00"
  7515. },
  7516. {
  7517. "name": "symfony/translation-contracts",
  7518. "version": "v3.6.0",
  7519. "source": {
  7520. "type": "git",
  7521. "url": "https://github.com/symfony/translation-contracts.git",
  7522. "reference": "df210c7a2573f1913b2d17cc95f90f53a73d8f7d"
  7523. },
  7524. "dist": {
  7525. "type": "zip",
  7526. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/df210c7a2573f1913b2d17cc95f90f53a73d8f7d",
  7527. "reference": "df210c7a2573f1913b2d17cc95f90f53a73d8f7d",
  7528. "shasum": ""
  7529. },
  7530. "require": {
  7531. "php": ">=8.1"
  7532. },
  7533. "type": "library",
  7534. "extra": {
  7535. "thanks": {
  7536. "url": "https://github.com/symfony/contracts",
  7537. "name": "symfony/contracts"
  7538. },
  7539. "branch-alias": {
  7540. "dev-main": "3.6-dev"
  7541. }
  7542. },
  7543. "autoload": {
  7544. "psr-4": {
  7545. "Symfony\\Contracts\\Translation\\": ""
  7546. },
  7547. "exclude-from-classmap": [
  7548. "/Test/"
  7549. ]
  7550. },
  7551. "notification-url": "https://packagist.org/downloads/",
  7552. "license": [
  7553. "MIT"
  7554. ],
  7555. "authors": [
  7556. {
  7557. "name": "Nicolas Grekas",
  7558. "email": "p@tchwork.com"
  7559. },
  7560. {
  7561. "name": "Symfony Community",
  7562. "homepage": "https://symfony.com/contributors"
  7563. }
  7564. ],
  7565. "description": "Generic abstractions related to translation",
  7566. "homepage": "https://symfony.com",
  7567. "keywords": [
  7568. "abstractions",
  7569. "contracts",
  7570. "decoupling",
  7571. "interfaces",
  7572. "interoperability",
  7573. "standards"
  7574. ],
  7575. "support": {
  7576. "source": "https://github.com/symfony/translation-contracts/tree/v3.6.0"
  7577. },
  7578. "funding": [
  7579. {
  7580. "url": "https://symfony.com/sponsor",
  7581. "type": "custom"
  7582. },
  7583. {
  7584. "url": "https://github.com/fabpot",
  7585. "type": "github"
  7586. },
  7587. {
  7588. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7589. "type": "tidelift"
  7590. }
  7591. ],
  7592. "time": "2024-09-27T08:32:26+00:00"
  7593. },
  7594. {
  7595. "name": "symfony/uid",
  7596. "version": "v7.3.1",
  7597. "source": {
  7598. "type": "git",
  7599. "url": "https://github.com/symfony/uid.git",
  7600. "reference": "a69f69f3159b852651a6bf45a9fdd149520525bb"
  7601. },
  7602. "dist": {
  7603. "type": "zip",
  7604. "url": "https://api.github.com/repos/symfony/uid/zipball/a69f69f3159b852651a6bf45a9fdd149520525bb",
  7605. "reference": "a69f69f3159b852651a6bf45a9fdd149520525bb",
  7606. "shasum": ""
  7607. },
  7608. "require": {
  7609. "php": ">=8.2",
  7610. "symfony/polyfill-uuid": "^1.15"
  7611. },
  7612. "require-dev": {
  7613. "symfony/console": "^6.4|^7.0"
  7614. },
  7615. "type": "library",
  7616. "autoload": {
  7617. "psr-4": {
  7618. "Symfony\\Component\\Uid\\": ""
  7619. },
  7620. "exclude-from-classmap": [
  7621. "/Tests/"
  7622. ]
  7623. },
  7624. "notification-url": "https://packagist.org/downloads/",
  7625. "license": [
  7626. "MIT"
  7627. ],
  7628. "authors": [
  7629. {
  7630. "name": "Grégoire Pineau",
  7631. "email": "lyrixx@lyrixx.info"
  7632. },
  7633. {
  7634. "name": "Nicolas Grekas",
  7635. "email": "p@tchwork.com"
  7636. },
  7637. {
  7638. "name": "Symfony Community",
  7639. "homepage": "https://symfony.com/contributors"
  7640. }
  7641. ],
  7642. "description": "Provides an object-oriented API to generate and represent UIDs",
  7643. "homepage": "https://symfony.com",
  7644. "keywords": [
  7645. "UID",
  7646. "ulid",
  7647. "uuid"
  7648. ],
  7649. "support": {
  7650. "source": "https://github.com/symfony/uid/tree/v7.3.1"
  7651. },
  7652. "funding": [
  7653. {
  7654. "url": "https://symfony.com/sponsor",
  7655. "type": "custom"
  7656. },
  7657. {
  7658. "url": "https://github.com/fabpot",
  7659. "type": "github"
  7660. },
  7661. {
  7662. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7663. "type": "tidelift"
  7664. }
  7665. ],
  7666. "time": "2025-06-27T19:55:54+00:00"
  7667. },
  7668. {
  7669. "name": "symfony/var-dumper",
  7670. "version": "v7.3.3",
  7671. "source": {
  7672. "type": "git",
  7673. "url": "https://github.com/symfony/var-dumper.git",
  7674. "reference": "34d8d4c4b9597347306d1ec8eb4e1319b1e6986f"
  7675. },
  7676. "dist": {
  7677. "type": "zip",
  7678. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/34d8d4c4b9597347306d1ec8eb4e1319b1e6986f",
  7679. "reference": "34d8d4c4b9597347306d1ec8eb4e1319b1e6986f",
  7680. "shasum": ""
  7681. },
  7682. "require": {
  7683. "php": ">=8.2",
  7684. "symfony/deprecation-contracts": "^2.5|^3",
  7685. "symfony/polyfill-mbstring": "~1.0"
  7686. },
  7687. "conflict": {
  7688. "symfony/console": "<6.4"
  7689. },
  7690. "require-dev": {
  7691. "symfony/console": "^6.4|^7.0",
  7692. "symfony/http-kernel": "^6.4|^7.0",
  7693. "symfony/process": "^6.4|^7.0",
  7694. "symfony/uid": "^6.4|^7.0",
  7695. "twig/twig": "^3.12"
  7696. },
  7697. "bin": [
  7698. "Resources/bin/var-dump-server"
  7699. ],
  7700. "type": "library",
  7701. "autoload": {
  7702. "files": [
  7703. "Resources/functions/dump.php"
  7704. ],
  7705. "psr-4": {
  7706. "Symfony\\Component\\VarDumper\\": ""
  7707. },
  7708. "exclude-from-classmap": [
  7709. "/Tests/"
  7710. ]
  7711. },
  7712. "notification-url": "https://packagist.org/downloads/",
  7713. "license": [
  7714. "MIT"
  7715. ],
  7716. "authors": [
  7717. {
  7718. "name": "Nicolas Grekas",
  7719. "email": "p@tchwork.com"
  7720. },
  7721. {
  7722. "name": "Symfony Community",
  7723. "homepage": "https://symfony.com/contributors"
  7724. }
  7725. ],
  7726. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7727. "homepage": "https://symfony.com",
  7728. "keywords": [
  7729. "debug",
  7730. "dump"
  7731. ],
  7732. "support": {
  7733. "source": "https://github.com/symfony/var-dumper/tree/v7.3.3"
  7734. },
  7735. "funding": [
  7736. {
  7737. "url": "https://symfony.com/sponsor",
  7738. "type": "custom"
  7739. },
  7740. {
  7741. "url": "https://github.com/fabpot",
  7742. "type": "github"
  7743. },
  7744. {
  7745. "url": "https://github.com/nicolas-grekas",
  7746. "type": "github"
  7747. },
  7748. {
  7749. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7750. "type": "tidelift"
  7751. }
  7752. ],
  7753. "time": "2025-08-13T11:49:31+00:00"
  7754. },
  7755. {
  7756. "name": "tijsverkoyen/css-to-inline-styles",
  7757. "version": "v2.3.0",
  7758. "source": {
  7759. "type": "git",
  7760. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7761. "reference": "0d72ac1c00084279c1816675284073c5a337c20d"
  7762. },
  7763. "dist": {
  7764. "type": "zip",
  7765. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/0d72ac1c00084279c1816675284073c5a337c20d",
  7766. "reference": "0d72ac1c00084279c1816675284073c5a337c20d",
  7767. "shasum": ""
  7768. },
  7769. "require": {
  7770. "ext-dom": "*",
  7771. "ext-libxml": "*",
  7772. "php": "^7.4 || ^8.0",
  7773. "symfony/css-selector": "^5.4 || ^6.0 || ^7.0"
  7774. },
  7775. "require-dev": {
  7776. "phpstan/phpstan": "^2.0",
  7777. "phpstan/phpstan-phpunit": "^2.0",
  7778. "phpunit/phpunit": "^8.5.21 || ^9.5.10"
  7779. },
  7780. "type": "library",
  7781. "extra": {
  7782. "branch-alias": {
  7783. "dev-master": "2.x-dev"
  7784. }
  7785. },
  7786. "autoload": {
  7787. "psr-4": {
  7788. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7789. }
  7790. },
  7791. "notification-url": "https://packagist.org/downloads/",
  7792. "license": [
  7793. "BSD-3-Clause"
  7794. ],
  7795. "authors": [
  7796. {
  7797. "name": "Tijs Verkoyen",
  7798. "email": "css_to_inline_styles@verkoyen.eu",
  7799. "role": "Developer"
  7800. }
  7801. ],
  7802. "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.",
  7803. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7804. "support": {
  7805. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7806. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.3.0"
  7807. },
  7808. "time": "2024-12-21T16:25:41+00:00"
  7809. },
  7810. {
  7811. "name": "vlucas/phpdotenv",
  7812. "version": "v5.6.2",
  7813. "source": {
  7814. "type": "git",
  7815. "url": "https://github.com/vlucas/phpdotenv.git",
  7816. "reference": "24ac4c74f91ee2c193fa1aaa5c249cb0822809af"
  7817. },
  7818. "dist": {
  7819. "type": "zip",
  7820. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/24ac4c74f91ee2c193fa1aaa5c249cb0822809af",
  7821. "reference": "24ac4c74f91ee2c193fa1aaa5c249cb0822809af",
  7822. "shasum": ""
  7823. },
  7824. "require": {
  7825. "ext-pcre": "*",
  7826. "graham-campbell/result-type": "^1.1.3",
  7827. "php": "^7.2.5 || ^8.0",
  7828. "phpoption/phpoption": "^1.9.3",
  7829. "symfony/polyfill-ctype": "^1.24",
  7830. "symfony/polyfill-mbstring": "^1.24",
  7831. "symfony/polyfill-php80": "^1.24"
  7832. },
  7833. "require-dev": {
  7834. "bamarni/composer-bin-plugin": "^1.8.2",
  7835. "ext-filter": "*",
  7836. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  7837. },
  7838. "suggest": {
  7839. "ext-filter": "Required to use the boolean validator."
  7840. },
  7841. "type": "library",
  7842. "extra": {
  7843. "bamarni-bin": {
  7844. "bin-links": true,
  7845. "forward-command": false
  7846. },
  7847. "branch-alias": {
  7848. "dev-master": "5.6-dev"
  7849. }
  7850. },
  7851. "autoload": {
  7852. "psr-4": {
  7853. "Dotenv\\": "src/"
  7854. }
  7855. },
  7856. "notification-url": "https://packagist.org/downloads/",
  7857. "license": [
  7858. "BSD-3-Clause"
  7859. ],
  7860. "authors": [
  7861. {
  7862. "name": "Graham Campbell",
  7863. "email": "hello@gjcampbell.co.uk",
  7864. "homepage": "https://github.com/GrahamCampbell"
  7865. },
  7866. {
  7867. "name": "Vance Lucas",
  7868. "email": "vance@vancelucas.com",
  7869. "homepage": "https://github.com/vlucas"
  7870. }
  7871. ],
  7872. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7873. "keywords": [
  7874. "dotenv",
  7875. "env",
  7876. "environment"
  7877. ],
  7878. "support": {
  7879. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7880. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.2"
  7881. },
  7882. "funding": [
  7883. {
  7884. "url": "https://github.com/GrahamCampbell",
  7885. "type": "github"
  7886. },
  7887. {
  7888. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7889. "type": "tidelift"
  7890. }
  7891. ],
  7892. "time": "2025-04-30T23:37:27+00:00"
  7893. },
  7894. {
  7895. "name": "voku/portable-ascii",
  7896. "version": "2.0.3",
  7897. "source": {
  7898. "type": "git",
  7899. "url": "https://github.com/voku/portable-ascii.git",
  7900. "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d"
  7901. },
  7902. "dist": {
  7903. "type": "zip",
  7904. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
  7905. "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
  7906. "shasum": ""
  7907. },
  7908. "require": {
  7909. "php": ">=7.0.0"
  7910. },
  7911. "require-dev": {
  7912. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  7913. },
  7914. "suggest": {
  7915. "ext-intl": "Use Intl for transliterator_transliterate() support"
  7916. },
  7917. "type": "library",
  7918. "autoload": {
  7919. "psr-4": {
  7920. "voku\\": "src/voku/"
  7921. }
  7922. },
  7923. "notification-url": "https://packagist.org/downloads/",
  7924. "license": [
  7925. "MIT"
  7926. ],
  7927. "authors": [
  7928. {
  7929. "name": "Lars Moelleken",
  7930. "homepage": "https://www.moelleken.org/"
  7931. }
  7932. ],
  7933. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  7934. "homepage": "https://github.com/voku/portable-ascii",
  7935. "keywords": [
  7936. "ascii",
  7937. "clean",
  7938. "php"
  7939. ],
  7940. "support": {
  7941. "issues": "https://github.com/voku/portable-ascii/issues",
  7942. "source": "https://github.com/voku/portable-ascii/tree/2.0.3"
  7943. },
  7944. "funding": [
  7945. {
  7946. "url": "https://www.paypal.me/moelleken",
  7947. "type": "custom"
  7948. },
  7949. {
  7950. "url": "https://github.com/voku",
  7951. "type": "github"
  7952. },
  7953. {
  7954. "url": "https://opencollective.com/portable-ascii",
  7955. "type": "open_collective"
  7956. },
  7957. {
  7958. "url": "https://www.patreon.com/voku",
  7959. "type": "patreon"
  7960. },
  7961. {
  7962. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  7963. "type": "tidelift"
  7964. }
  7965. ],
  7966. "time": "2024-11-21T01:49:47+00:00"
  7967. },
  7968. {
  7969. "name": "webmozart/assert",
  7970. "version": "1.11.0",
  7971. "source": {
  7972. "type": "git",
  7973. "url": "https://github.com/webmozarts/assert.git",
  7974. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  7975. },
  7976. "dist": {
  7977. "type": "zip",
  7978. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7979. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7980. "shasum": ""
  7981. },
  7982. "require": {
  7983. "ext-ctype": "*",
  7984. "php": "^7.2 || ^8.0"
  7985. },
  7986. "conflict": {
  7987. "phpstan/phpstan": "<0.12.20",
  7988. "vimeo/psalm": "<4.6.1 || 4.6.2"
  7989. },
  7990. "require-dev": {
  7991. "phpunit/phpunit": "^8.5.13"
  7992. },
  7993. "type": "library",
  7994. "extra": {
  7995. "branch-alias": {
  7996. "dev-master": "1.10-dev"
  7997. }
  7998. },
  7999. "autoload": {
  8000. "psr-4": {
  8001. "Webmozart\\Assert\\": "src/"
  8002. }
  8003. },
  8004. "notification-url": "https://packagist.org/downloads/",
  8005. "license": [
  8006. "MIT"
  8007. ],
  8008. "authors": [
  8009. {
  8010. "name": "Bernhard Schussek",
  8011. "email": "bschussek@gmail.com"
  8012. }
  8013. ],
  8014. "description": "Assertions to validate method input/output with nice error messages.",
  8015. "keywords": [
  8016. "assert",
  8017. "check",
  8018. "validate"
  8019. ],
  8020. "support": {
  8021. "issues": "https://github.com/webmozarts/assert/issues",
  8022. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  8023. },
  8024. "time": "2022-06-03T18:03:27+00:00"
  8025. }
  8026. ],
  8027. "packages-dev": [
  8028. {
  8029. "name": "brianium/paratest",
  8030. "version": "v7.12.0",
  8031. "source": {
  8032. "type": "git",
  8033. "url": "https://github.com/paratestphp/paratest.git",
  8034. "reference": "6a34ddb12a3bd5bd07d831ce95f111087f3bcbd8"
  8035. },
  8036. "dist": {
  8037. "type": "zip",
  8038. "url": "https://api.github.com/repos/paratestphp/paratest/zipball/6a34ddb12a3bd5bd07d831ce95f111087f3bcbd8",
  8039. "reference": "6a34ddb12a3bd5bd07d831ce95f111087f3bcbd8",
  8040. "shasum": ""
  8041. },
  8042. "require": {
  8043. "ext-dom": "*",
  8044. "ext-pcre": "*",
  8045. "ext-reflection": "*",
  8046. "ext-simplexml": "*",
  8047. "fidry/cpu-core-counter": "^1.3.0",
  8048. "jean85/pretty-package-versions": "^2.1.1",
  8049. "php": "~8.3.0 || ~8.4.0 || ~8.5.0",
  8050. "phpunit/php-code-coverage": "^12.3.2",
  8051. "phpunit/php-file-iterator": "^6",
  8052. "phpunit/php-timer": "^8",
  8053. "phpunit/phpunit": "^12.3.6",
  8054. "sebastian/environment": "^8.0.3",
  8055. "symfony/console": "^6.4.20 || ^7.3.2",
  8056. "symfony/process": "^6.4.20 || ^7.3.0"
  8057. },
  8058. "require-dev": {
  8059. "doctrine/coding-standard": "^13.0.1",
  8060. "ext-pcntl": "*",
  8061. "ext-pcov": "*",
  8062. "ext-posix": "*",
  8063. "phpstan/phpstan": "^2.1.22",
  8064. "phpstan/phpstan-deprecation-rules": "^2.0.3",
  8065. "phpstan/phpstan-phpunit": "^2.0.7",
  8066. "phpstan/phpstan-strict-rules": "^2.0.6",
  8067. "squizlabs/php_codesniffer": "^3.13.2",
  8068. "symfony/filesystem": "^6.4.13 || ^7.3.2"
  8069. },
  8070. "bin": [
  8071. "bin/paratest",
  8072. "bin/paratest_for_phpstorm"
  8073. ],
  8074. "type": "library",
  8075. "autoload": {
  8076. "psr-4": {
  8077. "ParaTest\\": [
  8078. "src/"
  8079. ]
  8080. }
  8081. },
  8082. "notification-url": "https://packagist.org/downloads/",
  8083. "license": [
  8084. "MIT"
  8085. ],
  8086. "authors": [
  8087. {
  8088. "name": "Brian Scaturro",
  8089. "email": "scaturrob@gmail.com",
  8090. "role": "Developer"
  8091. },
  8092. {
  8093. "name": "Filippo Tessarotto",
  8094. "email": "zoeslam@gmail.com",
  8095. "role": "Developer"
  8096. }
  8097. ],
  8098. "description": "Parallel testing for PHP",
  8099. "homepage": "https://github.com/paratestphp/paratest",
  8100. "keywords": [
  8101. "concurrent",
  8102. "parallel",
  8103. "phpunit",
  8104. "testing"
  8105. ],
  8106. "support": {
  8107. "issues": "https://github.com/paratestphp/paratest/issues",
  8108. "source": "https://github.com/paratestphp/paratest/tree/v7.12.0"
  8109. },
  8110. "funding": [
  8111. {
  8112. "url": "https://github.com/sponsors/Slamdunk",
  8113. "type": "github"
  8114. },
  8115. {
  8116. "url": "https://paypal.me/filippotessarotto",
  8117. "type": "paypal"
  8118. }
  8119. ],
  8120. "time": "2025-08-29T05:28:31+00:00"
  8121. },
  8122. {
  8123. "name": "doctrine/deprecations",
  8124. "version": "1.1.5",
  8125. "source": {
  8126. "type": "git",
  8127. "url": "https://github.com/doctrine/deprecations.git",
  8128. "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38"
  8129. },
  8130. "dist": {
  8131. "type": "zip",
  8132. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38",
  8133. "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38",
  8134. "shasum": ""
  8135. },
  8136. "require": {
  8137. "php": "^7.1 || ^8.0"
  8138. },
  8139. "conflict": {
  8140. "phpunit/phpunit": "<=7.5 || >=13"
  8141. },
  8142. "require-dev": {
  8143. "doctrine/coding-standard": "^9 || ^12 || ^13",
  8144. "phpstan/phpstan": "1.4.10 || 2.1.11",
  8145. "phpstan/phpstan-phpunit": "^1.0 || ^2",
  8146. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6 || ^10.5 || ^11.5 || ^12",
  8147. "psr/log": "^1 || ^2 || ^3"
  8148. },
  8149. "suggest": {
  8150. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  8151. },
  8152. "type": "library",
  8153. "autoload": {
  8154. "psr-4": {
  8155. "Doctrine\\Deprecations\\": "src"
  8156. }
  8157. },
  8158. "notification-url": "https://packagist.org/downloads/",
  8159. "license": [
  8160. "MIT"
  8161. ],
  8162. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  8163. "homepage": "https://www.doctrine-project.org/",
  8164. "support": {
  8165. "issues": "https://github.com/doctrine/deprecations/issues",
  8166. "source": "https://github.com/doctrine/deprecations/tree/1.1.5"
  8167. },
  8168. "time": "2025-04-07T20:06:18+00:00"
  8169. },
  8170. {
  8171. "name": "fakerphp/faker",
  8172. "version": "v1.24.1",
  8173. "source": {
  8174. "type": "git",
  8175. "url": "https://github.com/FakerPHP/Faker.git",
  8176. "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5"
  8177. },
  8178. "dist": {
  8179. "type": "zip",
  8180. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
  8181. "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
  8182. "shasum": ""
  8183. },
  8184. "require": {
  8185. "php": "^7.4 || ^8.0",
  8186. "psr/container": "^1.0 || ^2.0",
  8187. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  8188. },
  8189. "conflict": {
  8190. "fzaninotto/faker": "*"
  8191. },
  8192. "require-dev": {
  8193. "bamarni/composer-bin-plugin": "^1.4.1",
  8194. "doctrine/persistence": "^1.3 || ^2.0",
  8195. "ext-intl": "*",
  8196. "phpunit/phpunit": "^9.5.26",
  8197. "symfony/phpunit-bridge": "^5.4.16"
  8198. },
  8199. "suggest": {
  8200. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  8201. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  8202. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  8203. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  8204. "ext-mbstring": "Required for multibyte Unicode string functionality."
  8205. },
  8206. "type": "library",
  8207. "autoload": {
  8208. "psr-4": {
  8209. "Faker\\": "src/Faker/"
  8210. }
  8211. },
  8212. "notification-url": "https://packagist.org/downloads/",
  8213. "license": [
  8214. "MIT"
  8215. ],
  8216. "authors": [
  8217. {
  8218. "name": "François Zaninotto"
  8219. }
  8220. ],
  8221. "description": "Faker is a PHP library that generates fake data for you.",
  8222. "keywords": [
  8223. "data",
  8224. "faker",
  8225. "fixtures"
  8226. ],
  8227. "support": {
  8228. "issues": "https://github.com/FakerPHP/Faker/issues",
  8229. "source": "https://github.com/FakerPHP/Faker/tree/v1.24.1"
  8230. },
  8231. "time": "2024-11-21T13:46:39+00:00"
  8232. },
  8233. {
  8234. "name": "fidry/cpu-core-counter",
  8235. "version": "1.3.0",
  8236. "source": {
  8237. "type": "git",
  8238. "url": "https://github.com/theofidry/cpu-core-counter.git",
  8239. "reference": "db9508f7b1474469d9d3c53b86f817e344732678"
  8240. },
  8241. "dist": {
  8242. "type": "zip",
  8243. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/db9508f7b1474469d9d3c53b86f817e344732678",
  8244. "reference": "db9508f7b1474469d9d3c53b86f817e344732678",
  8245. "shasum": ""
  8246. },
  8247. "require": {
  8248. "php": "^7.2 || ^8.0"
  8249. },
  8250. "require-dev": {
  8251. "fidry/makefile": "^0.2.0",
  8252. "fidry/php-cs-fixer-config": "^1.1.2",
  8253. "phpstan/extension-installer": "^1.2.0",
  8254. "phpstan/phpstan": "^2.0",
  8255. "phpstan/phpstan-deprecation-rules": "^2.0.0",
  8256. "phpstan/phpstan-phpunit": "^2.0",
  8257. "phpstan/phpstan-strict-rules": "^2.0",
  8258. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  8259. "webmozarts/strict-phpunit": "^7.5"
  8260. },
  8261. "type": "library",
  8262. "autoload": {
  8263. "psr-4": {
  8264. "Fidry\\CpuCoreCounter\\": "src/"
  8265. }
  8266. },
  8267. "notification-url": "https://packagist.org/downloads/",
  8268. "license": [
  8269. "MIT"
  8270. ],
  8271. "authors": [
  8272. {
  8273. "name": "Théo FIDRY",
  8274. "email": "theo.fidry@gmail.com"
  8275. }
  8276. ],
  8277. "description": "Tiny utility to get the number of CPU cores.",
  8278. "keywords": [
  8279. "CPU",
  8280. "core"
  8281. ],
  8282. "support": {
  8283. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  8284. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.3.0"
  8285. },
  8286. "funding": [
  8287. {
  8288. "url": "https://github.com/theofidry",
  8289. "type": "github"
  8290. }
  8291. ],
  8292. "time": "2025-08-14T07:29:31+00:00"
  8293. },
  8294. {
  8295. "name": "filp/whoops",
  8296. "version": "2.18.4",
  8297. "source": {
  8298. "type": "git",
  8299. "url": "https://github.com/filp/whoops.git",
  8300. "reference": "d2102955e48b9fd9ab24280a7ad12ed552752c4d"
  8301. },
  8302. "dist": {
  8303. "type": "zip",
  8304. "url": "https://api.github.com/repos/filp/whoops/zipball/d2102955e48b9fd9ab24280a7ad12ed552752c4d",
  8305. "reference": "d2102955e48b9fd9ab24280a7ad12ed552752c4d",
  8306. "shasum": ""
  8307. },
  8308. "require": {
  8309. "php": "^7.1 || ^8.0",
  8310. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  8311. },
  8312. "require-dev": {
  8313. "mockery/mockery": "^1.0",
  8314. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.3",
  8315. "symfony/var-dumper": "^4.0 || ^5.0"
  8316. },
  8317. "suggest": {
  8318. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8319. "whoops/soap": "Formats errors as SOAP responses"
  8320. },
  8321. "type": "library",
  8322. "extra": {
  8323. "branch-alias": {
  8324. "dev-master": "2.7-dev"
  8325. }
  8326. },
  8327. "autoload": {
  8328. "psr-4": {
  8329. "Whoops\\": "src/Whoops/"
  8330. }
  8331. },
  8332. "notification-url": "https://packagist.org/downloads/",
  8333. "license": [
  8334. "MIT"
  8335. ],
  8336. "authors": [
  8337. {
  8338. "name": "Filipe Dobreira",
  8339. "homepage": "https://github.com/filp",
  8340. "role": "Developer"
  8341. }
  8342. ],
  8343. "description": "php error handling for cool kids",
  8344. "homepage": "https://filp.github.io/whoops/",
  8345. "keywords": [
  8346. "error",
  8347. "exception",
  8348. "handling",
  8349. "library",
  8350. "throwable",
  8351. "whoops"
  8352. ],
  8353. "support": {
  8354. "issues": "https://github.com/filp/whoops/issues",
  8355. "source": "https://github.com/filp/whoops/tree/2.18.4"
  8356. },
  8357. "funding": [
  8358. {
  8359. "url": "https://github.com/denis-sokolov",
  8360. "type": "github"
  8361. }
  8362. ],
  8363. "time": "2025-08-08T12:00:00+00:00"
  8364. },
  8365. {
  8366. "name": "hamcrest/hamcrest-php",
  8367. "version": "v2.1.1",
  8368. "source": {
  8369. "type": "git",
  8370. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8371. "reference": "f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487"
  8372. },
  8373. "dist": {
  8374. "type": "zip",
  8375. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487",
  8376. "reference": "f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487",
  8377. "shasum": ""
  8378. },
  8379. "require": {
  8380. "php": "^7.4|^8.0"
  8381. },
  8382. "replace": {
  8383. "cordoval/hamcrest-php": "*",
  8384. "davedevelopment/hamcrest-php": "*",
  8385. "kodova/hamcrest-php": "*"
  8386. },
  8387. "require-dev": {
  8388. "phpunit/php-file-iterator": "^1.4 || ^2.0 || ^3.0",
  8389. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0 || ^8.0 || ^9.0"
  8390. },
  8391. "type": "library",
  8392. "extra": {
  8393. "branch-alias": {
  8394. "dev-master": "2.1-dev"
  8395. }
  8396. },
  8397. "autoload": {
  8398. "classmap": [
  8399. "hamcrest"
  8400. ]
  8401. },
  8402. "notification-url": "https://packagist.org/downloads/",
  8403. "license": [
  8404. "BSD-3-Clause"
  8405. ],
  8406. "description": "This is the PHP port of Hamcrest Matchers",
  8407. "keywords": [
  8408. "test"
  8409. ],
  8410. "support": {
  8411. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8412. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.1.1"
  8413. },
  8414. "time": "2025-04-30T06:54:44+00:00"
  8415. },
  8416. {
  8417. "name": "jean85/pretty-package-versions",
  8418. "version": "2.1.1",
  8419. "source": {
  8420. "type": "git",
  8421. "url": "https://github.com/Jean85/pretty-package-versions.git",
  8422. "reference": "4d7aa5dab42e2a76d99559706022885de0e18e1a"
  8423. },
  8424. "dist": {
  8425. "type": "zip",
  8426. "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/4d7aa5dab42e2a76d99559706022885de0e18e1a",
  8427. "reference": "4d7aa5dab42e2a76d99559706022885de0e18e1a",
  8428. "shasum": ""
  8429. },
  8430. "require": {
  8431. "composer-runtime-api": "^2.1.0",
  8432. "php": "^7.4|^8.0"
  8433. },
  8434. "require-dev": {
  8435. "friendsofphp/php-cs-fixer": "^3.2",
  8436. "jean85/composer-provided-replaced-stub-package": "^1.0",
  8437. "phpstan/phpstan": "^2.0",
  8438. "phpunit/phpunit": "^7.5|^8.5|^9.6",
  8439. "rector/rector": "^2.0",
  8440. "vimeo/psalm": "^4.3 || ^5.0"
  8441. },
  8442. "type": "library",
  8443. "extra": {
  8444. "branch-alias": {
  8445. "dev-master": "1.x-dev"
  8446. }
  8447. },
  8448. "autoload": {
  8449. "psr-4": {
  8450. "Jean85\\": "src/"
  8451. }
  8452. },
  8453. "notification-url": "https://packagist.org/downloads/",
  8454. "license": [
  8455. "MIT"
  8456. ],
  8457. "authors": [
  8458. {
  8459. "name": "Alessandro Lai",
  8460. "email": "alessandro.lai85@gmail.com"
  8461. }
  8462. ],
  8463. "description": "A library to get pretty versions strings of installed dependencies",
  8464. "keywords": [
  8465. "composer",
  8466. "package",
  8467. "release",
  8468. "versions"
  8469. ],
  8470. "support": {
  8471. "issues": "https://github.com/Jean85/pretty-package-versions/issues",
  8472. "source": "https://github.com/Jean85/pretty-package-versions/tree/2.1.1"
  8473. },
  8474. "time": "2025-03-19T14:43:43+00:00"
  8475. },
  8476. {
  8477. "name": "laravel/pail",
  8478. "version": "v1.2.3",
  8479. "source": {
  8480. "type": "git",
  8481. "url": "https://github.com/laravel/pail.git",
  8482. "reference": "8cc3d575c1f0e57eeb923f366a37528c50d2385a"
  8483. },
  8484. "dist": {
  8485. "type": "zip",
  8486. "url": "https://api.github.com/repos/laravel/pail/zipball/8cc3d575c1f0e57eeb923f366a37528c50d2385a",
  8487. "reference": "8cc3d575c1f0e57eeb923f366a37528c50d2385a",
  8488. "shasum": ""
  8489. },
  8490. "require": {
  8491. "ext-mbstring": "*",
  8492. "illuminate/console": "^10.24|^11.0|^12.0",
  8493. "illuminate/contracts": "^10.24|^11.0|^12.0",
  8494. "illuminate/log": "^10.24|^11.0|^12.0",
  8495. "illuminate/process": "^10.24|^11.0|^12.0",
  8496. "illuminate/support": "^10.24|^11.0|^12.0",
  8497. "nunomaduro/termwind": "^1.15|^2.0",
  8498. "php": "^8.2",
  8499. "symfony/console": "^6.0|^7.0"
  8500. },
  8501. "require-dev": {
  8502. "laravel/framework": "^10.24|^11.0|^12.0",
  8503. "laravel/pint": "^1.13",
  8504. "orchestra/testbench-core": "^8.13|^9.0|^10.0",
  8505. "pestphp/pest": "^2.20|^3.0",
  8506. "pestphp/pest-plugin-type-coverage": "^2.3|^3.0",
  8507. "phpstan/phpstan": "^1.12.27",
  8508. "symfony/var-dumper": "^6.3|^7.0"
  8509. },
  8510. "type": "library",
  8511. "extra": {
  8512. "laravel": {
  8513. "providers": [
  8514. "Laravel\\Pail\\PailServiceProvider"
  8515. ]
  8516. },
  8517. "branch-alias": {
  8518. "dev-main": "1.x-dev"
  8519. }
  8520. },
  8521. "autoload": {
  8522. "psr-4": {
  8523. "Laravel\\Pail\\": "src/"
  8524. }
  8525. },
  8526. "notification-url": "https://packagist.org/downloads/",
  8527. "license": [
  8528. "MIT"
  8529. ],
  8530. "authors": [
  8531. {
  8532. "name": "Taylor Otwell",
  8533. "email": "taylor@laravel.com"
  8534. },
  8535. {
  8536. "name": "Nuno Maduro",
  8537. "email": "enunomaduro@gmail.com"
  8538. }
  8539. ],
  8540. "description": "Easily delve into your Laravel application's log files directly from the command line.",
  8541. "homepage": "https://github.com/laravel/pail",
  8542. "keywords": [
  8543. "dev",
  8544. "laravel",
  8545. "logs",
  8546. "php",
  8547. "tail"
  8548. ],
  8549. "support": {
  8550. "issues": "https://github.com/laravel/pail/issues",
  8551. "source": "https://github.com/laravel/pail"
  8552. },
  8553. "time": "2025-06-05T13:55:57+00:00"
  8554. },
  8555. {
  8556. "name": "laravel/sail",
  8557. "version": "v1.45.0",
  8558. "source": {
  8559. "type": "git",
  8560. "url": "https://github.com/laravel/sail.git",
  8561. "reference": "019a2933ff4a9199f098d4259713f9bc266a874e"
  8562. },
  8563. "dist": {
  8564. "type": "zip",
  8565. "url": "https://api.github.com/repos/laravel/sail/zipball/019a2933ff4a9199f098d4259713f9bc266a874e",
  8566. "reference": "019a2933ff4a9199f098d4259713f9bc266a874e",
  8567. "shasum": ""
  8568. },
  8569. "require": {
  8570. "illuminate/console": "^9.52.16|^10.0|^11.0|^12.0",
  8571. "illuminate/contracts": "^9.52.16|^10.0|^11.0|^12.0",
  8572. "illuminate/support": "^9.52.16|^10.0|^11.0|^12.0",
  8573. "php": "^8.0",
  8574. "symfony/console": "^6.0|^7.0",
  8575. "symfony/yaml": "^6.0|^7.0"
  8576. },
  8577. "require-dev": {
  8578. "orchestra/testbench": "^7.0|^8.0|^9.0|^10.0",
  8579. "phpstan/phpstan": "^1.10"
  8580. },
  8581. "bin": [
  8582. "bin/sail"
  8583. ],
  8584. "type": "library",
  8585. "extra": {
  8586. "laravel": {
  8587. "providers": [
  8588. "Laravel\\Sail\\SailServiceProvider"
  8589. ]
  8590. }
  8591. },
  8592. "autoload": {
  8593. "psr-4": {
  8594. "Laravel\\Sail\\": "src/"
  8595. }
  8596. },
  8597. "notification-url": "https://packagist.org/downloads/",
  8598. "license": [
  8599. "MIT"
  8600. ],
  8601. "authors": [
  8602. {
  8603. "name": "Taylor Otwell",
  8604. "email": "taylor@laravel.com"
  8605. }
  8606. ],
  8607. "description": "Docker files for running a basic Laravel application.",
  8608. "keywords": [
  8609. "docker",
  8610. "laravel"
  8611. ],
  8612. "support": {
  8613. "issues": "https://github.com/laravel/sail/issues",
  8614. "source": "https://github.com/laravel/sail"
  8615. },
  8616. "time": "2025-08-25T19:28:31+00:00"
  8617. },
  8618. {
  8619. "name": "mockery/mockery",
  8620. "version": "1.6.12",
  8621. "source": {
  8622. "type": "git",
  8623. "url": "https://github.com/mockery/mockery.git",
  8624. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  8625. },
  8626. "dist": {
  8627. "type": "zip",
  8628. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8629. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8630. "shasum": ""
  8631. },
  8632. "require": {
  8633. "hamcrest/hamcrest-php": "^2.0.1",
  8634. "lib-pcre": ">=7.0",
  8635. "php": ">=7.3"
  8636. },
  8637. "conflict": {
  8638. "phpunit/phpunit": "<8.0"
  8639. },
  8640. "require-dev": {
  8641. "phpunit/phpunit": "^8.5 || ^9.6.17",
  8642. "symplify/easy-coding-standard": "^12.1.14"
  8643. },
  8644. "type": "library",
  8645. "autoload": {
  8646. "files": [
  8647. "library/helpers.php",
  8648. "library/Mockery.php"
  8649. ],
  8650. "psr-4": {
  8651. "Mockery\\": "library/Mockery"
  8652. }
  8653. },
  8654. "notification-url": "https://packagist.org/downloads/",
  8655. "license": [
  8656. "BSD-3-Clause"
  8657. ],
  8658. "authors": [
  8659. {
  8660. "name": "Pádraic Brady",
  8661. "email": "padraic.brady@gmail.com",
  8662. "homepage": "https://github.com/padraic",
  8663. "role": "Author"
  8664. },
  8665. {
  8666. "name": "Dave Marshall",
  8667. "email": "dave.marshall@atstsolutions.co.uk",
  8668. "homepage": "https://davedevelopment.co.uk",
  8669. "role": "Developer"
  8670. },
  8671. {
  8672. "name": "Nathanael Esayeas",
  8673. "email": "nathanael.esayeas@protonmail.com",
  8674. "homepage": "https://github.com/ghostwriter",
  8675. "role": "Lead Developer"
  8676. }
  8677. ],
  8678. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8679. "homepage": "https://github.com/mockery/mockery",
  8680. "keywords": [
  8681. "BDD",
  8682. "TDD",
  8683. "library",
  8684. "mock",
  8685. "mock objects",
  8686. "mockery",
  8687. "stub",
  8688. "test",
  8689. "test double",
  8690. "testing"
  8691. ],
  8692. "support": {
  8693. "docs": "https://docs.mockery.io/",
  8694. "issues": "https://github.com/mockery/mockery/issues",
  8695. "rss": "https://github.com/mockery/mockery/releases.atom",
  8696. "security": "https://github.com/mockery/mockery/security/advisories",
  8697. "source": "https://github.com/mockery/mockery"
  8698. },
  8699. "time": "2024-05-16T03:13:13+00:00"
  8700. },
  8701. {
  8702. "name": "myclabs/deep-copy",
  8703. "version": "1.13.4",
  8704. "source": {
  8705. "type": "git",
  8706. "url": "https://github.com/myclabs/DeepCopy.git",
  8707. "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a"
  8708. },
  8709. "dist": {
  8710. "type": "zip",
  8711. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/07d290f0c47959fd5eed98c95ee5602db07e0b6a",
  8712. "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a",
  8713. "shasum": ""
  8714. },
  8715. "require": {
  8716. "php": "^7.1 || ^8.0"
  8717. },
  8718. "conflict": {
  8719. "doctrine/collections": "<1.6.8",
  8720. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  8721. },
  8722. "require-dev": {
  8723. "doctrine/collections": "^1.6.8",
  8724. "doctrine/common": "^2.13.3 || ^3.2.2",
  8725. "phpspec/prophecy": "^1.10",
  8726. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8727. },
  8728. "type": "library",
  8729. "autoload": {
  8730. "files": [
  8731. "src/DeepCopy/deep_copy.php"
  8732. ],
  8733. "psr-4": {
  8734. "DeepCopy\\": "src/DeepCopy/"
  8735. }
  8736. },
  8737. "notification-url": "https://packagist.org/downloads/",
  8738. "license": [
  8739. "MIT"
  8740. ],
  8741. "description": "Create deep copies (clones) of your objects",
  8742. "keywords": [
  8743. "clone",
  8744. "copy",
  8745. "duplicate",
  8746. "object",
  8747. "object graph"
  8748. ],
  8749. "support": {
  8750. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8751. "source": "https://github.com/myclabs/DeepCopy/tree/1.13.4"
  8752. },
  8753. "funding": [
  8754. {
  8755. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8756. "type": "tidelift"
  8757. }
  8758. ],
  8759. "time": "2025-08-01T08:46:24+00:00"
  8760. },
  8761. {
  8762. "name": "nunomaduro/collision",
  8763. "version": "v8.8.2",
  8764. "source": {
  8765. "type": "git",
  8766. "url": "https://github.com/nunomaduro/collision.git",
  8767. "reference": "60207965f9b7b7a4ce15a0f75d57f9dadb105bdb"
  8768. },
  8769. "dist": {
  8770. "type": "zip",
  8771. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/60207965f9b7b7a4ce15a0f75d57f9dadb105bdb",
  8772. "reference": "60207965f9b7b7a4ce15a0f75d57f9dadb105bdb",
  8773. "shasum": ""
  8774. },
  8775. "require": {
  8776. "filp/whoops": "^2.18.1",
  8777. "nunomaduro/termwind": "^2.3.1",
  8778. "php": "^8.2.0",
  8779. "symfony/console": "^7.3.0"
  8780. },
  8781. "conflict": {
  8782. "laravel/framework": "<11.44.2 || >=13.0.0",
  8783. "phpunit/phpunit": "<11.5.15 || >=13.0.0"
  8784. },
  8785. "require-dev": {
  8786. "brianium/paratest": "^7.8.3",
  8787. "larastan/larastan": "^3.4.2",
  8788. "laravel/framework": "^11.44.2 || ^12.18",
  8789. "laravel/pint": "^1.22.1",
  8790. "laravel/sail": "^1.43.1",
  8791. "laravel/sanctum": "^4.1.1",
  8792. "laravel/tinker": "^2.10.1",
  8793. "orchestra/testbench-core": "^9.12.0 || ^10.4",
  8794. "pestphp/pest": "^3.8.2",
  8795. "sebastian/environment": "^7.2.1 || ^8.0"
  8796. },
  8797. "type": "library",
  8798. "extra": {
  8799. "laravel": {
  8800. "providers": [
  8801. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  8802. ]
  8803. },
  8804. "branch-alias": {
  8805. "dev-8.x": "8.x-dev"
  8806. }
  8807. },
  8808. "autoload": {
  8809. "files": [
  8810. "./src/Adapters/Phpunit/Autoload.php"
  8811. ],
  8812. "psr-4": {
  8813. "NunoMaduro\\Collision\\": "src/"
  8814. }
  8815. },
  8816. "notification-url": "https://packagist.org/downloads/",
  8817. "license": [
  8818. "MIT"
  8819. ],
  8820. "authors": [
  8821. {
  8822. "name": "Nuno Maduro",
  8823. "email": "enunomaduro@gmail.com"
  8824. }
  8825. ],
  8826. "description": "Cli error handling for console/command-line PHP applications.",
  8827. "keywords": [
  8828. "artisan",
  8829. "cli",
  8830. "command-line",
  8831. "console",
  8832. "dev",
  8833. "error",
  8834. "handling",
  8835. "laravel",
  8836. "laravel-zero",
  8837. "php",
  8838. "symfony"
  8839. ],
  8840. "support": {
  8841. "issues": "https://github.com/nunomaduro/collision/issues",
  8842. "source": "https://github.com/nunomaduro/collision"
  8843. },
  8844. "funding": [
  8845. {
  8846. "url": "https://www.paypal.com/paypalme/enunomaduro",
  8847. "type": "custom"
  8848. },
  8849. {
  8850. "url": "https://github.com/nunomaduro",
  8851. "type": "github"
  8852. },
  8853. {
  8854. "url": "https://www.patreon.com/nunomaduro",
  8855. "type": "patreon"
  8856. }
  8857. ],
  8858. "time": "2025-06-25T02:12:12+00:00"
  8859. },
  8860. {
  8861. "name": "pestphp/pest",
  8862. "version": "v4.0.4",
  8863. "source": {
  8864. "type": "git",
  8865. "url": "https://github.com/pestphp/pest.git",
  8866. "reference": "47fb1d77631d608022cc7af96cac90ac741c8394"
  8867. },
  8868. "dist": {
  8869. "type": "zip",
  8870. "url": "https://api.github.com/repos/pestphp/pest/zipball/47fb1d77631d608022cc7af96cac90ac741c8394",
  8871. "reference": "47fb1d77631d608022cc7af96cac90ac741c8394",
  8872. "shasum": ""
  8873. },
  8874. "require": {
  8875. "brianium/paratest": "^7.11.2",
  8876. "nunomaduro/collision": "^8.8.2",
  8877. "nunomaduro/termwind": "^2.3.1",
  8878. "pestphp/pest-plugin": "^4.0.0",
  8879. "pestphp/pest-plugin-arch": "^4.0.0",
  8880. "pestphp/pest-plugin-mutate": "^4.0.1",
  8881. "pestphp/pest-plugin-profanity": "^4.0.1",
  8882. "php": "^8.3.0",
  8883. "phpunit/phpunit": "^12.3.7",
  8884. "symfony/process": "^7.3.0"
  8885. },
  8886. "conflict": {
  8887. "filp/whoops": "<2.18.3",
  8888. "phpunit/phpunit": ">12.3.7",
  8889. "sebastian/exporter": "<7.0.0",
  8890. "webmozart/assert": "<1.11.0"
  8891. },
  8892. "require-dev": {
  8893. "pestphp/pest-dev-tools": "^4.0.0",
  8894. "pestphp/pest-plugin-browser": "^4.0.2",
  8895. "pestphp/pest-plugin-type-coverage": "^4.0.2",
  8896. "psy/psysh": "^0.12.10"
  8897. },
  8898. "bin": [
  8899. "bin/pest"
  8900. ],
  8901. "type": "library",
  8902. "extra": {
  8903. "pest": {
  8904. "plugins": [
  8905. "Pest\\Mutate\\Plugins\\Mutate",
  8906. "Pest\\Plugins\\Configuration",
  8907. "Pest\\Plugins\\Bail",
  8908. "Pest\\Plugins\\Cache",
  8909. "Pest\\Plugins\\Coverage",
  8910. "Pest\\Plugins\\Init",
  8911. "Pest\\Plugins\\Environment",
  8912. "Pest\\Plugins\\Help",
  8913. "Pest\\Plugins\\Memory",
  8914. "Pest\\Plugins\\Only",
  8915. "Pest\\Plugins\\Printer",
  8916. "Pest\\Plugins\\ProcessIsolation",
  8917. "Pest\\Plugins\\Profile",
  8918. "Pest\\Plugins\\Retry",
  8919. "Pest\\Plugins\\Snapshot",
  8920. "Pest\\Plugins\\Verbose",
  8921. "Pest\\Plugins\\Version",
  8922. "Pest\\Plugins\\Shard",
  8923. "Pest\\Plugins\\Parallel"
  8924. ]
  8925. },
  8926. "phpstan": {
  8927. "includes": [
  8928. "extension.neon"
  8929. ]
  8930. }
  8931. },
  8932. "autoload": {
  8933. "files": [
  8934. "src/Functions.php",
  8935. "src/Pest.php"
  8936. ],
  8937. "psr-4": {
  8938. "Pest\\": "src/"
  8939. }
  8940. },
  8941. "notification-url": "https://packagist.org/downloads/",
  8942. "license": [
  8943. "MIT"
  8944. ],
  8945. "authors": [
  8946. {
  8947. "name": "Nuno Maduro",
  8948. "email": "enunomaduro@gmail.com"
  8949. }
  8950. ],
  8951. "description": "The elegant PHP Testing Framework.",
  8952. "keywords": [
  8953. "framework",
  8954. "pest",
  8955. "php",
  8956. "test",
  8957. "testing",
  8958. "unit"
  8959. ],
  8960. "support": {
  8961. "issues": "https://github.com/pestphp/pest/issues",
  8962. "source": "https://github.com/pestphp/pest/tree/v4.0.4"
  8963. },
  8964. "funding": [
  8965. {
  8966. "url": "https://www.paypal.com/paypalme/enunomaduro",
  8967. "type": "custom"
  8968. },
  8969. {
  8970. "url": "https://github.com/nunomaduro",
  8971. "type": "github"
  8972. }
  8973. ],
  8974. "time": "2025-08-28T18:19:42+00:00"
  8975. },
  8976. {
  8977. "name": "pestphp/pest-plugin",
  8978. "version": "v4.0.0",
  8979. "source": {
  8980. "type": "git",
  8981. "url": "https://github.com/pestphp/pest-plugin.git",
  8982. "reference": "9d4b93d7f73d3f9c3189bb22c220fef271cdf568"
  8983. },
  8984. "dist": {
  8985. "type": "zip",
  8986. "url": "https://api.github.com/repos/pestphp/pest-plugin/zipball/9d4b93d7f73d3f9c3189bb22c220fef271cdf568",
  8987. "reference": "9d4b93d7f73d3f9c3189bb22c220fef271cdf568",
  8988. "shasum": ""
  8989. },
  8990. "require": {
  8991. "composer-plugin-api": "^2.0.0",
  8992. "composer-runtime-api": "^2.2.2",
  8993. "php": "^8.3"
  8994. },
  8995. "conflict": {
  8996. "pestphp/pest": "<4.0.0"
  8997. },
  8998. "require-dev": {
  8999. "composer/composer": "^2.8.10",
  9000. "pestphp/pest": "^4.0.0",
  9001. "pestphp/pest-dev-tools": "^4.0.0"
  9002. },
  9003. "type": "composer-plugin",
  9004. "extra": {
  9005. "class": "Pest\\Plugin\\Manager"
  9006. },
  9007. "autoload": {
  9008. "psr-4": {
  9009. "Pest\\Plugin\\": "src/"
  9010. }
  9011. },
  9012. "notification-url": "https://packagist.org/downloads/",
  9013. "license": [
  9014. "MIT"
  9015. ],
  9016. "description": "The Pest plugin manager",
  9017. "keywords": [
  9018. "framework",
  9019. "manager",
  9020. "pest",
  9021. "php",
  9022. "plugin",
  9023. "test",
  9024. "testing",
  9025. "unit"
  9026. ],
  9027. "support": {
  9028. "source": "https://github.com/pestphp/pest-plugin/tree/v4.0.0"
  9029. },
  9030. "funding": [
  9031. {
  9032. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  9033. "type": "custom"
  9034. },
  9035. {
  9036. "url": "https://github.com/nunomaduro",
  9037. "type": "github"
  9038. },
  9039. {
  9040. "url": "https://www.patreon.com/nunomaduro",
  9041. "type": "patreon"
  9042. }
  9043. ],
  9044. "time": "2025-08-20T12:35:58+00:00"
  9045. },
  9046. {
  9047. "name": "pestphp/pest-plugin-arch",
  9048. "version": "v4.0.0",
  9049. "source": {
  9050. "type": "git",
  9051. "url": "https://github.com/pestphp/pest-plugin-arch.git",
  9052. "reference": "25bb17e37920ccc35cbbcda3b00d596aadf3e58d"
  9053. },
  9054. "dist": {
  9055. "type": "zip",
  9056. "url": "https://api.github.com/repos/pestphp/pest-plugin-arch/zipball/25bb17e37920ccc35cbbcda3b00d596aadf3e58d",
  9057. "reference": "25bb17e37920ccc35cbbcda3b00d596aadf3e58d",
  9058. "shasum": ""
  9059. },
  9060. "require": {
  9061. "pestphp/pest-plugin": "^4.0.0",
  9062. "php": "^8.3",
  9063. "ta-tikoma/phpunit-architecture-test": "^0.8.5"
  9064. },
  9065. "require-dev": {
  9066. "pestphp/pest": "^4.0.0",
  9067. "pestphp/pest-dev-tools": "^4.0.0"
  9068. },
  9069. "type": "library",
  9070. "extra": {
  9071. "pest": {
  9072. "plugins": [
  9073. "Pest\\Arch\\Plugin"
  9074. ]
  9075. }
  9076. },
  9077. "autoload": {
  9078. "files": [
  9079. "src/Autoload.php"
  9080. ],
  9081. "psr-4": {
  9082. "Pest\\Arch\\": "src/"
  9083. }
  9084. },
  9085. "notification-url": "https://packagist.org/downloads/",
  9086. "license": [
  9087. "MIT"
  9088. ],
  9089. "description": "The Arch plugin for Pest PHP.",
  9090. "keywords": [
  9091. "arch",
  9092. "architecture",
  9093. "framework",
  9094. "pest",
  9095. "php",
  9096. "plugin",
  9097. "test",
  9098. "testing",
  9099. "unit"
  9100. ],
  9101. "support": {
  9102. "source": "https://github.com/pestphp/pest-plugin-arch/tree/v4.0.0"
  9103. },
  9104. "funding": [
  9105. {
  9106. "url": "https://www.paypal.com/paypalme/enunomaduro",
  9107. "type": "custom"
  9108. },
  9109. {
  9110. "url": "https://github.com/nunomaduro",
  9111. "type": "github"
  9112. }
  9113. ],
  9114. "time": "2025-08-20T13:10:51+00:00"
  9115. },
  9116. {
  9117. "name": "pestphp/pest-plugin-laravel",
  9118. "version": "v4.0.0",
  9119. "source": {
  9120. "type": "git",
  9121. "url": "https://github.com/pestphp/pest-plugin-laravel.git",
  9122. "reference": "e12a07046b826a40b1c8632fd7b80d6b8d7b628e"
  9123. },
  9124. "dist": {
  9125. "type": "zip",
  9126. "url": "https://api.github.com/repos/pestphp/pest-plugin-laravel/zipball/e12a07046b826a40b1c8632fd7b80d6b8d7b628e",
  9127. "reference": "e12a07046b826a40b1c8632fd7b80d6b8d7b628e",
  9128. "shasum": ""
  9129. },
  9130. "require": {
  9131. "laravel/framework": "^11.45.2|^12.25.0",
  9132. "pestphp/pest": "^4.0.0",
  9133. "php": "^8.3.0"
  9134. },
  9135. "require-dev": {
  9136. "laravel/dusk": "^8.3.3",
  9137. "orchestra/testbench": "^9.13.0|^10.5.0",
  9138. "pestphp/pest-dev-tools": "^4.0.0"
  9139. },
  9140. "type": "library",
  9141. "extra": {
  9142. "pest": {
  9143. "plugins": [
  9144. "Pest\\Laravel\\Plugin"
  9145. ]
  9146. },
  9147. "laravel": {
  9148. "providers": [
  9149. "Pest\\Laravel\\PestServiceProvider"
  9150. ]
  9151. }
  9152. },
  9153. "autoload": {
  9154. "files": [
  9155. "src/Autoload.php"
  9156. ],
  9157. "psr-4": {
  9158. "Pest\\Laravel\\": "src/"
  9159. }
  9160. },
  9161. "notification-url": "https://packagist.org/downloads/",
  9162. "license": [
  9163. "MIT"
  9164. ],
  9165. "description": "The Pest Laravel Plugin",
  9166. "keywords": [
  9167. "framework",
  9168. "laravel",
  9169. "pest",
  9170. "php",
  9171. "test",
  9172. "testing",
  9173. "unit"
  9174. ],
  9175. "support": {
  9176. "source": "https://github.com/pestphp/pest-plugin-laravel/tree/v4.0.0"
  9177. },
  9178. "funding": [
  9179. {
  9180. "url": "https://www.paypal.com/paypalme/enunomaduro",
  9181. "type": "custom"
  9182. },
  9183. {
  9184. "url": "https://github.com/nunomaduro",
  9185. "type": "github"
  9186. }
  9187. ],
  9188. "time": "2025-08-20T12:46:37+00:00"
  9189. },
  9190. {
  9191. "name": "pestphp/pest-plugin-mutate",
  9192. "version": "v4.0.1",
  9193. "source": {
  9194. "type": "git",
  9195. "url": "https://github.com/pestphp/pest-plugin-mutate.git",
  9196. "reference": "d9b32b60b2385e1688a68cc227594738ec26d96c"
  9197. },
  9198. "dist": {
  9199. "type": "zip",
  9200. "url": "https://api.github.com/repos/pestphp/pest-plugin-mutate/zipball/d9b32b60b2385e1688a68cc227594738ec26d96c",
  9201. "reference": "d9b32b60b2385e1688a68cc227594738ec26d96c",
  9202. "shasum": ""
  9203. },
  9204. "require": {
  9205. "nikic/php-parser": "^5.6.1",
  9206. "pestphp/pest-plugin": "^4.0.0",
  9207. "php": "^8.3",
  9208. "psr/simple-cache": "^3.0.0"
  9209. },
  9210. "require-dev": {
  9211. "pestphp/pest": "^4.0.0",
  9212. "pestphp/pest-dev-tools": "^4.0.0",
  9213. "pestphp/pest-plugin-type-coverage": "^4.0.0"
  9214. },
  9215. "type": "library",
  9216. "autoload": {
  9217. "psr-4": {
  9218. "Pest\\Mutate\\": "src/"
  9219. }
  9220. },
  9221. "notification-url": "https://packagist.org/downloads/",
  9222. "license": [
  9223. "MIT"
  9224. ],
  9225. "authors": [
  9226. {
  9227. "name": "Nuno Maduro",
  9228. "email": "enunomaduro@gmail.com"
  9229. },
  9230. {
  9231. "name": "Sandro Gehri",
  9232. "email": "sandrogehri@gmail.com"
  9233. }
  9234. ],
  9235. "description": "Mutates your code to find untested cases",
  9236. "keywords": [
  9237. "framework",
  9238. "mutate",
  9239. "mutation",
  9240. "pest",
  9241. "php",
  9242. "plugin",
  9243. "test",
  9244. "testing",
  9245. "unit"
  9246. ],
  9247. "support": {
  9248. "source": "https://github.com/pestphp/pest-plugin-mutate/tree/v4.0.1"
  9249. },
  9250. "funding": [
  9251. {
  9252. "url": "https://www.paypal.com/paypalme/enunomaduro",
  9253. "type": "custom"
  9254. },
  9255. {
  9256. "url": "https://github.com/gehrisandro",
  9257. "type": "github"
  9258. },
  9259. {
  9260. "url": "https://github.com/nunomaduro",
  9261. "type": "github"
  9262. }
  9263. ],
  9264. "time": "2025-08-21T20:19:25+00:00"
  9265. },
  9266. {
  9267. "name": "pestphp/pest-plugin-profanity",
  9268. "version": "v4.0.1",
  9269. "source": {
  9270. "type": "git",
  9271. "url": "https://github.com/pestphp/pest-plugin-profanity.git",
  9272. "reference": "823d5d8ae07a265c70f5e1a9ce50639543b0bf11"
  9273. },
  9274. "dist": {
  9275. "type": "zip",
  9276. "url": "https://api.github.com/repos/pestphp/pest-plugin-profanity/zipball/823d5d8ae07a265c70f5e1a9ce50639543b0bf11",
  9277. "reference": "823d5d8ae07a265c70f5e1a9ce50639543b0bf11",
  9278. "shasum": ""
  9279. },
  9280. "require": {
  9281. "pestphp/pest-plugin": "^4.0.0",
  9282. "php": "^8.3"
  9283. },
  9284. "require-dev": {
  9285. "faissaloux/pest-plugin-inside": "^1.9",
  9286. "pestphp/pest": "^4.0.0",
  9287. "pestphp/pest-dev-tools": "^4.0.0"
  9288. },
  9289. "type": "library",
  9290. "extra": {
  9291. "pest": {
  9292. "plugins": [
  9293. "Pest\\Profanity\\Plugin"
  9294. ]
  9295. }
  9296. },
  9297. "autoload": {
  9298. "psr-4": {
  9299. "Pest\\Profanity\\": "src/"
  9300. }
  9301. },
  9302. "notification-url": "https://packagist.org/downloads/",
  9303. "license": [
  9304. "MIT"
  9305. ],
  9306. "description": "The Pest Profanity Plugin",
  9307. "keywords": [
  9308. "framework",
  9309. "pest",
  9310. "php",
  9311. "plugin",
  9312. "profanity",
  9313. "test",
  9314. "testing",
  9315. "unit"
  9316. ],
  9317. "support": {
  9318. "source": "https://github.com/pestphp/pest-plugin-profanity/tree/v4.0.1"
  9319. },
  9320. "time": "2025-08-20T12:58:03+00:00"
  9321. },
  9322. {
  9323. "name": "phar-io/manifest",
  9324. "version": "2.0.4",
  9325. "source": {
  9326. "type": "git",
  9327. "url": "https://github.com/phar-io/manifest.git",
  9328. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  9329. },
  9330. "dist": {
  9331. "type": "zip",
  9332. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  9333. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  9334. "shasum": ""
  9335. },
  9336. "require": {
  9337. "ext-dom": "*",
  9338. "ext-libxml": "*",
  9339. "ext-phar": "*",
  9340. "ext-xmlwriter": "*",
  9341. "phar-io/version": "^3.0.1",
  9342. "php": "^7.2 || ^8.0"
  9343. },
  9344. "type": "library",
  9345. "extra": {
  9346. "branch-alias": {
  9347. "dev-master": "2.0.x-dev"
  9348. }
  9349. },
  9350. "autoload": {
  9351. "classmap": [
  9352. "src/"
  9353. ]
  9354. },
  9355. "notification-url": "https://packagist.org/downloads/",
  9356. "license": [
  9357. "BSD-3-Clause"
  9358. ],
  9359. "authors": [
  9360. {
  9361. "name": "Arne Blankerts",
  9362. "email": "arne@blankerts.de",
  9363. "role": "Developer"
  9364. },
  9365. {
  9366. "name": "Sebastian Heuer",
  9367. "email": "sebastian@phpeople.de",
  9368. "role": "Developer"
  9369. },
  9370. {
  9371. "name": "Sebastian Bergmann",
  9372. "email": "sebastian@phpunit.de",
  9373. "role": "Developer"
  9374. }
  9375. ],
  9376. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9377. "support": {
  9378. "issues": "https://github.com/phar-io/manifest/issues",
  9379. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  9380. },
  9381. "funding": [
  9382. {
  9383. "url": "https://github.com/theseer",
  9384. "type": "github"
  9385. }
  9386. ],
  9387. "time": "2024-03-03T12:33:53+00:00"
  9388. },
  9389. {
  9390. "name": "phar-io/version",
  9391. "version": "3.2.1",
  9392. "source": {
  9393. "type": "git",
  9394. "url": "https://github.com/phar-io/version.git",
  9395. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  9396. },
  9397. "dist": {
  9398. "type": "zip",
  9399. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9400. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9401. "shasum": ""
  9402. },
  9403. "require": {
  9404. "php": "^7.2 || ^8.0"
  9405. },
  9406. "type": "library",
  9407. "autoload": {
  9408. "classmap": [
  9409. "src/"
  9410. ]
  9411. },
  9412. "notification-url": "https://packagist.org/downloads/",
  9413. "license": [
  9414. "BSD-3-Clause"
  9415. ],
  9416. "authors": [
  9417. {
  9418. "name": "Arne Blankerts",
  9419. "email": "arne@blankerts.de",
  9420. "role": "Developer"
  9421. },
  9422. {
  9423. "name": "Sebastian Heuer",
  9424. "email": "sebastian@phpeople.de",
  9425. "role": "Developer"
  9426. },
  9427. {
  9428. "name": "Sebastian Bergmann",
  9429. "email": "sebastian@phpunit.de",
  9430. "role": "Developer"
  9431. }
  9432. ],
  9433. "description": "Library for handling version information and constraints",
  9434. "support": {
  9435. "issues": "https://github.com/phar-io/version/issues",
  9436. "source": "https://github.com/phar-io/version/tree/3.2.1"
  9437. },
  9438. "time": "2022-02-21T01:04:05+00:00"
  9439. },
  9440. {
  9441. "name": "phpdocumentor/reflection-common",
  9442. "version": "2.2.0",
  9443. "source": {
  9444. "type": "git",
  9445. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  9446. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  9447. },
  9448. "dist": {
  9449. "type": "zip",
  9450. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  9451. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  9452. "shasum": ""
  9453. },
  9454. "require": {
  9455. "php": "^7.2 || ^8.0"
  9456. },
  9457. "type": "library",
  9458. "extra": {
  9459. "branch-alias": {
  9460. "dev-2.x": "2.x-dev"
  9461. }
  9462. },
  9463. "autoload": {
  9464. "psr-4": {
  9465. "phpDocumentor\\Reflection\\": "src/"
  9466. }
  9467. },
  9468. "notification-url": "https://packagist.org/downloads/",
  9469. "license": [
  9470. "MIT"
  9471. ],
  9472. "authors": [
  9473. {
  9474. "name": "Jaap van Otterdijk",
  9475. "email": "opensource@ijaap.nl"
  9476. }
  9477. ],
  9478. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  9479. "homepage": "http://www.phpdoc.org",
  9480. "keywords": [
  9481. "FQSEN",
  9482. "phpDocumentor",
  9483. "phpdoc",
  9484. "reflection",
  9485. "static analysis"
  9486. ],
  9487. "support": {
  9488. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  9489. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  9490. },
  9491. "time": "2020-06-27T09:03:43+00:00"
  9492. },
  9493. {
  9494. "name": "phpdocumentor/reflection-docblock",
  9495. "version": "5.6.3",
  9496. "source": {
  9497. "type": "git",
  9498. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  9499. "reference": "94f8051919d1b0369a6bcc7931d679a511c03fe9"
  9500. },
  9501. "dist": {
  9502. "type": "zip",
  9503. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/94f8051919d1b0369a6bcc7931d679a511c03fe9",
  9504. "reference": "94f8051919d1b0369a6bcc7931d679a511c03fe9",
  9505. "shasum": ""
  9506. },
  9507. "require": {
  9508. "doctrine/deprecations": "^1.1",
  9509. "ext-filter": "*",
  9510. "php": "^7.4 || ^8.0",
  9511. "phpdocumentor/reflection-common": "^2.2",
  9512. "phpdocumentor/type-resolver": "^1.7",
  9513. "phpstan/phpdoc-parser": "^1.7|^2.0",
  9514. "webmozart/assert": "^1.9.1"
  9515. },
  9516. "require-dev": {
  9517. "mockery/mockery": "~1.3.5 || ~1.6.0",
  9518. "phpstan/extension-installer": "^1.1",
  9519. "phpstan/phpstan": "^1.8",
  9520. "phpstan/phpstan-mockery": "^1.1",
  9521. "phpstan/phpstan-webmozart-assert": "^1.2",
  9522. "phpunit/phpunit": "^9.5",
  9523. "psalm/phar": "^5.26"
  9524. },
  9525. "type": "library",
  9526. "extra": {
  9527. "branch-alias": {
  9528. "dev-master": "5.x-dev"
  9529. }
  9530. },
  9531. "autoload": {
  9532. "psr-4": {
  9533. "phpDocumentor\\Reflection\\": "src"
  9534. }
  9535. },
  9536. "notification-url": "https://packagist.org/downloads/",
  9537. "license": [
  9538. "MIT"
  9539. ],
  9540. "authors": [
  9541. {
  9542. "name": "Mike van Riel",
  9543. "email": "me@mikevanriel.com"
  9544. },
  9545. {
  9546. "name": "Jaap van Otterdijk",
  9547. "email": "opensource@ijaap.nl"
  9548. }
  9549. ],
  9550. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  9551. "support": {
  9552. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  9553. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.6.3"
  9554. },
  9555. "time": "2025-08-01T19:43:32+00:00"
  9556. },
  9557. {
  9558. "name": "phpdocumentor/type-resolver",
  9559. "version": "1.10.0",
  9560. "source": {
  9561. "type": "git",
  9562. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  9563. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a"
  9564. },
  9565. "dist": {
  9566. "type": "zip",
  9567. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  9568. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  9569. "shasum": ""
  9570. },
  9571. "require": {
  9572. "doctrine/deprecations": "^1.0",
  9573. "php": "^7.3 || ^8.0",
  9574. "phpdocumentor/reflection-common": "^2.0",
  9575. "phpstan/phpdoc-parser": "^1.18|^2.0"
  9576. },
  9577. "require-dev": {
  9578. "ext-tokenizer": "*",
  9579. "phpbench/phpbench": "^1.2",
  9580. "phpstan/extension-installer": "^1.1",
  9581. "phpstan/phpstan": "^1.8",
  9582. "phpstan/phpstan-phpunit": "^1.1",
  9583. "phpunit/phpunit": "^9.5",
  9584. "rector/rector": "^0.13.9",
  9585. "vimeo/psalm": "^4.25"
  9586. },
  9587. "type": "library",
  9588. "extra": {
  9589. "branch-alias": {
  9590. "dev-1.x": "1.x-dev"
  9591. }
  9592. },
  9593. "autoload": {
  9594. "psr-4": {
  9595. "phpDocumentor\\Reflection\\": "src"
  9596. }
  9597. },
  9598. "notification-url": "https://packagist.org/downloads/",
  9599. "license": [
  9600. "MIT"
  9601. ],
  9602. "authors": [
  9603. {
  9604. "name": "Mike van Riel",
  9605. "email": "me@mikevanriel.com"
  9606. }
  9607. ],
  9608. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  9609. "support": {
  9610. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  9611. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.10.0"
  9612. },
  9613. "time": "2024-11-09T15:12:26+00:00"
  9614. },
  9615. {
  9616. "name": "phpstan/phpdoc-parser",
  9617. "version": "2.3.0",
  9618. "source": {
  9619. "type": "git",
  9620. "url": "https://github.com/phpstan/phpdoc-parser.git",
  9621. "reference": "1e0cd5370df5dd2e556a36b9c62f62e555870495"
  9622. },
  9623. "dist": {
  9624. "type": "zip",
  9625. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/1e0cd5370df5dd2e556a36b9c62f62e555870495",
  9626. "reference": "1e0cd5370df5dd2e556a36b9c62f62e555870495",
  9627. "shasum": ""
  9628. },
  9629. "require": {
  9630. "php": "^7.4 || ^8.0"
  9631. },
  9632. "require-dev": {
  9633. "doctrine/annotations": "^2.0",
  9634. "nikic/php-parser": "^5.3.0",
  9635. "php-parallel-lint/php-parallel-lint": "^1.2",
  9636. "phpstan/extension-installer": "^1.0",
  9637. "phpstan/phpstan": "^2.0",
  9638. "phpstan/phpstan-phpunit": "^2.0",
  9639. "phpstan/phpstan-strict-rules": "^2.0",
  9640. "phpunit/phpunit": "^9.6",
  9641. "symfony/process": "^5.2"
  9642. },
  9643. "type": "library",
  9644. "autoload": {
  9645. "psr-4": {
  9646. "PHPStan\\PhpDocParser\\": [
  9647. "src/"
  9648. ]
  9649. }
  9650. },
  9651. "notification-url": "https://packagist.org/downloads/",
  9652. "license": [
  9653. "MIT"
  9654. ],
  9655. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  9656. "support": {
  9657. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  9658. "source": "https://github.com/phpstan/phpdoc-parser/tree/2.3.0"
  9659. },
  9660. "time": "2025-08-30T15:50:23+00:00"
  9661. },
  9662. {
  9663. "name": "phpunit/php-code-coverage",
  9664. "version": "12.3.6",
  9665. "source": {
  9666. "type": "git",
  9667. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9668. "reference": "da2cdaff87220fa641e7652364281b736e4347e0"
  9669. },
  9670. "dist": {
  9671. "type": "zip",
  9672. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/da2cdaff87220fa641e7652364281b736e4347e0",
  9673. "reference": "da2cdaff87220fa641e7652364281b736e4347e0",
  9674. "shasum": ""
  9675. },
  9676. "require": {
  9677. "ext-dom": "*",
  9678. "ext-libxml": "*",
  9679. "ext-xmlwriter": "*",
  9680. "nikic/php-parser": "^5.6.1",
  9681. "php": ">=8.3",
  9682. "phpunit/php-file-iterator": "^6.0",
  9683. "phpunit/php-text-template": "^5.0",
  9684. "sebastian/complexity": "^5.0",
  9685. "sebastian/environment": "^8.0.3",
  9686. "sebastian/lines-of-code": "^4.0",
  9687. "sebastian/version": "^6.0",
  9688. "theseer/tokenizer": "^1.2.3"
  9689. },
  9690. "require-dev": {
  9691. "phpunit/phpunit": "^12.3.7"
  9692. },
  9693. "suggest": {
  9694. "ext-pcov": "PHP extension that provides line coverage",
  9695. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9696. },
  9697. "type": "library",
  9698. "extra": {
  9699. "branch-alias": {
  9700. "dev-main": "12.3.x-dev"
  9701. }
  9702. },
  9703. "autoload": {
  9704. "classmap": [
  9705. "src/"
  9706. ]
  9707. },
  9708. "notification-url": "https://packagist.org/downloads/",
  9709. "license": [
  9710. "BSD-3-Clause"
  9711. ],
  9712. "authors": [
  9713. {
  9714. "name": "Sebastian Bergmann",
  9715. "email": "sebastian@phpunit.de",
  9716. "role": "lead"
  9717. }
  9718. ],
  9719. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9720. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9721. "keywords": [
  9722. "coverage",
  9723. "testing",
  9724. "xunit"
  9725. ],
  9726. "support": {
  9727. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9728. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  9729. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/12.3.6"
  9730. },
  9731. "funding": [
  9732. {
  9733. "url": "https://github.com/sebastianbergmann",
  9734. "type": "github"
  9735. },
  9736. {
  9737. "url": "https://liberapay.com/sebastianbergmann",
  9738. "type": "liberapay"
  9739. },
  9740. {
  9741. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  9742. "type": "thanks_dev"
  9743. },
  9744. {
  9745. "url": "https://tidelift.com/funding/github/packagist/phpunit/php-code-coverage",
  9746. "type": "tidelift"
  9747. }
  9748. ],
  9749. "time": "2025-09-02T05:23:14+00:00"
  9750. },
  9751. {
  9752. "name": "phpunit/php-file-iterator",
  9753. "version": "6.0.0",
  9754. "source": {
  9755. "type": "git",
  9756. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9757. "reference": "961bc913d42fe24a257bfff826a5068079ac7782"
  9758. },
  9759. "dist": {
  9760. "type": "zip",
  9761. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/961bc913d42fe24a257bfff826a5068079ac7782",
  9762. "reference": "961bc913d42fe24a257bfff826a5068079ac7782",
  9763. "shasum": ""
  9764. },
  9765. "require": {
  9766. "php": ">=8.3"
  9767. },
  9768. "require-dev": {
  9769. "phpunit/phpunit": "^12.0"
  9770. },
  9771. "type": "library",
  9772. "extra": {
  9773. "branch-alias": {
  9774. "dev-main": "6.0-dev"
  9775. }
  9776. },
  9777. "autoload": {
  9778. "classmap": [
  9779. "src/"
  9780. ]
  9781. },
  9782. "notification-url": "https://packagist.org/downloads/",
  9783. "license": [
  9784. "BSD-3-Clause"
  9785. ],
  9786. "authors": [
  9787. {
  9788. "name": "Sebastian Bergmann",
  9789. "email": "sebastian@phpunit.de",
  9790. "role": "lead"
  9791. }
  9792. ],
  9793. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9794. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9795. "keywords": [
  9796. "filesystem",
  9797. "iterator"
  9798. ],
  9799. "support": {
  9800. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9801. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  9802. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/6.0.0"
  9803. },
  9804. "funding": [
  9805. {
  9806. "url": "https://github.com/sebastianbergmann",
  9807. "type": "github"
  9808. }
  9809. ],
  9810. "time": "2025-02-07T04:58:37+00:00"
  9811. },
  9812. {
  9813. "name": "phpunit/php-invoker",
  9814. "version": "6.0.0",
  9815. "source": {
  9816. "type": "git",
  9817. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9818. "reference": "12b54e689b07a25a9b41e57736dfab6ec9ae5406"
  9819. },
  9820. "dist": {
  9821. "type": "zip",
  9822. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/12b54e689b07a25a9b41e57736dfab6ec9ae5406",
  9823. "reference": "12b54e689b07a25a9b41e57736dfab6ec9ae5406",
  9824. "shasum": ""
  9825. },
  9826. "require": {
  9827. "php": ">=8.3"
  9828. },
  9829. "require-dev": {
  9830. "ext-pcntl": "*",
  9831. "phpunit/phpunit": "^12.0"
  9832. },
  9833. "suggest": {
  9834. "ext-pcntl": "*"
  9835. },
  9836. "type": "library",
  9837. "extra": {
  9838. "branch-alias": {
  9839. "dev-main": "6.0-dev"
  9840. }
  9841. },
  9842. "autoload": {
  9843. "classmap": [
  9844. "src/"
  9845. ]
  9846. },
  9847. "notification-url": "https://packagist.org/downloads/",
  9848. "license": [
  9849. "BSD-3-Clause"
  9850. ],
  9851. "authors": [
  9852. {
  9853. "name": "Sebastian Bergmann",
  9854. "email": "sebastian@phpunit.de",
  9855. "role": "lead"
  9856. }
  9857. ],
  9858. "description": "Invoke callables with a timeout",
  9859. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9860. "keywords": [
  9861. "process"
  9862. ],
  9863. "support": {
  9864. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9865. "security": "https://github.com/sebastianbergmann/php-invoker/security/policy",
  9866. "source": "https://github.com/sebastianbergmann/php-invoker/tree/6.0.0"
  9867. },
  9868. "funding": [
  9869. {
  9870. "url": "https://github.com/sebastianbergmann",
  9871. "type": "github"
  9872. }
  9873. ],
  9874. "time": "2025-02-07T04:58:58+00:00"
  9875. },
  9876. {
  9877. "name": "phpunit/php-text-template",
  9878. "version": "5.0.0",
  9879. "source": {
  9880. "type": "git",
  9881. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9882. "reference": "e1367a453f0eda562eedb4f659e13aa900d66c53"
  9883. },
  9884. "dist": {
  9885. "type": "zip",
  9886. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/e1367a453f0eda562eedb4f659e13aa900d66c53",
  9887. "reference": "e1367a453f0eda562eedb4f659e13aa900d66c53",
  9888. "shasum": ""
  9889. },
  9890. "require": {
  9891. "php": ">=8.3"
  9892. },
  9893. "require-dev": {
  9894. "phpunit/phpunit": "^12.0"
  9895. },
  9896. "type": "library",
  9897. "extra": {
  9898. "branch-alias": {
  9899. "dev-main": "5.0-dev"
  9900. }
  9901. },
  9902. "autoload": {
  9903. "classmap": [
  9904. "src/"
  9905. ]
  9906. },
  9907. "notification-url": "https://packagist.org/downloads/",
  9908. "license": [
  9909. "BSD-3-Clause"
  9910. ],
  9911. "authors": [
  9912. {
  9913. "name": "Sebastian Bergmann",
  9914. "email": "sebastian@phpunit.de",
  9915. "role": "lead"
  9916. }
  9917. ],
  9918. "description": "Simple template engine.",
  9919. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9920. "keywords": [
  9921. "template"
  9922. ],
  9923. "support": {
  9924. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9925. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  9926. "source": "https://github.com/sebastianbergmann/php-text-template/tree/5.0.0"
  9927. },
  9928. "funding": [
  9929. {
  9930. "url": "https://github.com/sebastianbergmann",
  9931. "type": "github"
  9932. }
  9933. ],
  9934. "time": "2025-02-07T04:59:16+00:00"
  9935. },
  9936. {
  9937. "name": "phpunit/php-timer",
  9938. "version": "8.0.0",
  9939. "source": {
  9940. "type": "git",
  9941. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9942. "reference": "f258ce36aa457f3aa3339f9ed4c81fc66dc8c2cc"
  9943. },
  9944. "dist": {
  9945. "type": "zip",
  9946. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/f258ce36aa457f3aa3339f9ed4c81fc66dc8c2cc",
  9947. "reference": "f258ce36aa457f3aa3339f9ed4c81fc66dc8c2cc",
  9948. "shasum": ""
  9949. },
  9950. "require": {
  9951. "php": ">=8.3"
  9952. },
  9953. "require-dev": {
  9954. "phpunit/phpunit": "^12.0"
  9955. },
  9956. "type": "library",
  9957. "extra": {
  9958. "branch-alias": {
  9959. "dev-main": "8.0-dev"
  9960. }
  9961. },
  9962. "autoload": {
  9963. "classmap": [
  9964. "src/"
  9965. ]
  9966. },
  9967. "notification-url": "https://packagist.org/downloads/",
  9968. "license": [
  9969. "BSD-3-Clause"
  9970. ],
  9971. "authors": [
  9972. {
  9973. "name": "Sebastian Bergmann",
  9974. "email": "sebastian@phpunit.de",
  9975. "role": "lead"
  9976. }
  9977. ],
  9978. "description": "Utility class for timing",
  9979. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9980. "keywords": [
  9981. "timer"
  9982. ],
  9983. "support": {
  9984. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9985. "security": "https://github.com/sebastianbergmann/php-timer/security/policy",
  9986. "source": "https://github.com/sebastianbergmann/php-timer/tree/8.0.0"
  9987. },
  9988. "funding": [
  9989. {
  9990. "url": "https://github.com/sebastianbergmann",
  9991. "type": "github"
  9992. }
  9993. ],
  9994. "time": "2025-02-07T04:59:38+00:00"
  9995. },
  9996. {
  9997. "name": "phpunit/phpunit",
  9998. "version": "12.3.7",
  9999. "source": {
  10000. "type": "git",
  10001. "url": "https://github.com/sebastianbergmann/phpunit.git",
  10002. "reference": "b8fa997c49682979ad6bfaa0d7fb25f54954965e"
  10003. },
  10004. "dist": {
  10005. "type": "zip",
  10006. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/b8fa997c49682979ad6bfaa0d7fb25f54954965e",
  10007. "reference": "b8fa997c49682979ad6bfaa0d7fb25f54954965e",
  10008. "shasum": ""
  10009. },
  10010. "require": {
  10011. "ext-dom": "*",
  10012. "ext-json": "*",
  10013. "ext-libxml": "*",
  10014. "ext-mbstring": "*",
  10015. "ext-xml": "*",
  10016. "ext-xmlwriter": "*",
  10017. "myclabs/deep-copy": "^1.13.4",
  10018. "phar-io/manifest": "^2.0.4",
  10019. "phar-io/version": "^3.2.1",
  10020. "php": ">=8.3",
  10021. "phpunit/php-code-coverage": "^12.3.3",
  10022. "phpunit/php-file-iterator": "^6.0.0",
  10023. "phpunit/php-invoker": "^6.0.0",
  10024. "phpunit/php-text-template": "^5.0.0",
  10025. "phpunit/php-timer": "^8.0.0",
  10026. "sebastian/cli-parser": "^4.0.0",
  10027. "sebastian/comparator": "^7.1.3",
  10028. "sebastian/diff": "^7.0.0",
  10029. "sebastian/environment": "^8.0.3",
  10030. "sebastian/exporter": "^7.0.0",
  10031. "sebastian/global-state": "^8.0.0",
  10032. "sebastian/object-enumerator": "^7.0.0",
  10033. "sebastian/type": "^6.0.3",
  10034. "sebastian/version": "^6.0.0",
  10035. "staabm/side-effects-detector": "^1.0.5"
  10036. },
  10037. "bin": [
  10038. "phpunit"
  10039. ],
  10040. "type": "library",
  10041. "extra": {
  10042. "branch-alias": {
  10043. "dev-main": "12.3-dev"
  10044. }
  10045. },
  10046. "autoload": {
  10047. "files": [
  10048. "src/Framework/Assert/Functions.php"
  10049. ],
  10050. "classmap": [
  10051. "src/"
  10052. ]
  10053. },
  10054. "notification-url": "https://packagist.org/downloads/",
  10055. "license": [
  10056. "BSD-3-Clause"
  10057. ],
  10058. "authors": [
  10059. {
  10060. "name": "Sebastian Bergmann",
  10061. "email": "sebastian@phpunit.de",
  10062. "role": "lead"
  10063. }
  10064. ],
  10065. "description": "The PHP Unit Testing framework.",
  10066. "homepage": "https://phpunit.de/",
  10067. "keywords": [
  10068. "phpunit",
  10069. "testing",
  10070. "xunit"
  10071. ],
  10072. "support": {
  10073. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  10074. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  10075. "source": "https://github.com/sebastianbergmann/phpunit/tree/12.3.7"
  10076. },
  10077. "funding": [
  10078. {
  10079. "url": "https://phpunit.de/sponsors.html",
  10080. "type": "custom"
  10081. },
  10082. {
  10083. "url": "https://github.com/sebastianbergmann",
  10084. "type": "github"
  10085. },
  10086. {
  10087. "url": "https://liberapay.com/sebastianbergmann",
  10088. "type": "liberapay"
  10089. },
  10090. {
  10091. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  10092. "type": "thanks_dev"
  10093. },
  10094. {
  10095. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  10096. "type": "tidelift"
  10097. }
  10098. ],
  10099. "time": "2025-08-28T05:15:46+00:00"
  10100. },
  10101. {
  10102. "name": "sebastian/cli-parser",
  10103. "version": "4.0.0",
  10104. "source": {
  10105. "type": "git",
  10106. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  10107. "reference": "6d584c727d9114bcdc14c86711cd1cad51778e7c"
  10108. },
  10109. "dist": {
  10110. "type": "zip",
  10111. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/6d584c727d9114bcdc14c86711cd1cad51778e7c",
  10112. "reference": "6d584c727d9114bcdc14c86711cd1cad51778e7c",
  10113. "shasum": ""
  10114. },
  10115. "require": {
  10116. "php": ">=8.3"
  10117. },
  10118. "require-dev": {
  10119. "phpunit/phpunit": "^12.0"
  10120. },
  10121. "type": "library",
  10122. "extra": {
  10123. "branch-alias": {
  10124. "dev-main": "4.0-dev"
  10125. }
  10126. },
  10127. "autoload": {
  10128. "classmap": [
  10129. "src/"
  10130. ]
  10131. },
  10132. "notification-url": "https://packagist.org/downloads/",
  10133. "license": [
  10134. "BSD-3-Clause"
  10135. ],
  10136. "authors": [
  10137. {
  10138. "name": "Sebastian Bergmann",
  10139. "email": "sebastian@phpunit.de",
  10140. "role": "lead"
  10141. }
  10142. ],
  10143. "description": "Library for parsing CLI options",
  10144. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  10145. "support": {
  10146. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  10147. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  10148. "source": "https://github.com/sebastianbergmann/cli-parser/tree/4.0.0"
  10149. },
  10150. "funding": [
  10151. {
  10152. "url": "https://github.com/sebastianbergmann",
  10153. "type": "github"
  10154. }
  10155. ],
  10156. "time": "2025-02-07T04:53:50+00:00"
  10157. },
  10158. {
  10159. "name": "sebastian/comparator",
  10160. "version": "7.1.3",
  10161. "source": {
  10162. "type": "git",
  10163. "url": "https://github.com/sebastianbergmann/comparator.git",
  10164. "reference": "dc904b4bb3ab070865fa4068cd84f3da8b945148"
  10165. },
  10166. "dist": {
  10167. "type": "zip",
  10168. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/dc904b4bb3ab070865fa4068cd84f3da8b945148",
  10169. "reference": "dc904b4bb3ab070865fa4068cd84f3da8b945148",
  10170. "shasum": ""
  10171. },
  10172. "require": {
  10173. "ext-dom": "*",
  10174. "ext-mbstring": "*",
  10175. "php": ">=8.3",
  10176. "sebastian/diff": "^7.0",
  10177. "sebastian/exporter": "^7.0"
  10178. },
  10179. "require-dev": {
  10180. "phpunit/phpunit": "^12.2"
  10181. },
  10182. "suggest": {
  10183. "ext-bcmath": "For comparing BcMath\\Number objects"
  10184. },
  10185. "type": "library",
  10186. "extra": {
  10187. "branch-alias": {
  10188. "dev-main": "7.1-dev"
  10189. }
  10190. },
  10191. "autoload": {
  10192. "classmap": [
  10193. "src/"
  10194. ]
  10195. },
  10196. "notification-url": "https://packagist.org/downloads/",
  10197. "license": [
  10198. "BSD-3-Clause"
  10199. ],
  10200. "authors": [
  10201. {
  10202. "name": "Sebastian Bergmann",
  10203. "email": "sebastian@phpunit.de"
  10204. },
  10205. {
  10206. "name": "Jeff Welch",
  10207. "email": "whatthejeff@gmail.com"
  10208. },
  10209. {
  10210. "name": "Volker Dusch",
  10211. "email": "github@wallbash.com"
  10212. },
  10213. {
  10214. "name": "Bernhard Schussek",
  10215. "email": "bschussek@2bepublished.at"
  10216. }
  10217. ],
  10218. "description": "Provides the functionality to compare PHP values for equality",
  10219. "homepage": "https://github.com/sebastianbergmann/comparator",
  10220. "keywords": [
  10221. "comparator",
  10222. "compare",
  10223. "equality"
  10224. ],
  10225. "support": {
  10226. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10227. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  10228. "source": "https://github.com/sebastianbergmann/comparator/tree/7.1.3"
  10229. },
  10230. "funding": [
  10231. {
  10232. "url": "https://github.com/sebastianbergmann",
  10233. "type": "github"
  10234. },
  10235. {
  10236. "url": "https://liberapay.com/sebastianbergmann",
  10237. "type": "liberapay"
  10238. },
  10239. {
  10240. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  10241. "type": "thanks_dev"
  10242. },
  10243. {
  10244. "url": "https://tidelift.com/funding/github/packagist/sebastian/comparator",
  10245. "type": "tidelift"
  10246. }
  10247. ],
  10248. "time": "2025-08-20T11:27:00+00:00"
  10249. },
  10250. {
  10251. "name": "sebastian/complexity",
  10252. "version": "5.0.0",
  10253. "source": {
  10254. "type": "git",
  10255. "url": "https://github.com/sebastianbergmann/complexity.git",
  10256. "reference": "bad4316aba5303d0221f43f8cee37eb58d384bbb"
  10257. },
  10258. "dist": {
  10259. "type": "zip",
  10260. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/bad4316aba5303d0221f43f8cee37eb58d384bbb",
  10261. "reference": "bad4316aba5303d0221f43f8cee37eb58d384bbb",
  10262. "shasum": ""
  10263. },
  10264. "require": {
  10265. "nikic/php-parser": "^5.0",
  10266. "php": ">=8.3"
  10267. },
  10268. "require-dev": {
  10269. "phpunit/phpunit": "^12.0"
  10270. },
  10271. "type": "library",
  10272. "extra": {
  10273. "branch-alias": {
  10274. "dev-main": "5.0-dev"
  10275. }
  10276. },
  10277. "autoload": {
  10278. "classmap": [
  10279. "src/"
  10280. ]
  10281. },
  10282. "notification-url": "https://packagist.org/downloads/",
  10283. "license": [
  10284. "BSD-3-Clause"
  10285. ],
  10286. "authors": [
  10287. {
  10288. "name": "Sebastian Bergmann",
  10289. "email": "sebastian@phpunit.de",
  10290. "role": "lead"
  10291. }
  10292. ],
  10293. "description": "Library for calculating the complexity of PHP code units",
  10294. "homepage": "https://github.com/sebastianbergmann/complexity",
  10295. "support": {
  10296. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  10297. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  10298. "source": "https://github.com/sebastianbergmann/complexity/tree/5.0.0"
  10299. },
  10300. "funding": [
  10301. {
  10302. "url": "https://github.com/sebastianbergmann",
  10303. "type": "github"
  10304. }
  10305. ],
  10306. "time": "2025-02-07T04:55:25+00:00"
  10307. },
  10308. {
  10309. "name": "sebastian/diff",
  10310. "version": "7.0.0",
  10311. "source": {
  10312. "type": "git",
  10313. "url": "https://github.com/sebastianbergmann/diff.git",
  10314. "reference": "7ab1ea946c012266ca32390913653d844ecd085f"
  10315. },
  10316. "dist": {
  10317. "type": "zip",
  10318. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/7ab1ea946c012266ca32390913653d844ecd085f",
  10319. "reference": "7ab1ea946c012266ca32390913653d844ecd085f",
  10320. "shasum": ""
  10321. },
  10322. "require": {
  10323. "php": ">=8.3"
  10324. },
  10325. "require-dev": {
  10326. "phpunit/phpunit": "^12.0",
  10327. "symfony/process": "^7.2"
  10328. },
  10329. "type": "library",
  10330. "extra": {
  10331. "branch-alias": {
  10332. "dev-main": "7.0-dev"
  10333. }
  10334. },
  10335. "autoload": {
  10336. "classmap": [
  10337. "src/"
  10338. ]
  10339. },
  10340. "notification-url": "https://packagist.org/downloads/",
  10341. "license": [
  10342. "BSD-3-Clause"
  10343. ],
  10344. "authors": [
  10345. {
  10346. "name": "Sebastian Bergmann",
  10347. "email": "sebastian@phpunit.de"
  10348. },
  10349. {
  10350. "name": "Kore Nordmann",
  10351. "email": "mail@kore-nordmann.de"
  10352. }
  10353. ],
  10354. "description": "Diff implementation",
  10355. "homepage": "https://github.com/sebastianbergmann/diff",
  10356. "keywords": [
  10357. "diff",
  10358. "udiff",
  10359. "unidiff",
  10360. "unified diff"
  10361. ],
  10362. "support": {
  10363. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10364. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  10365. "source": "https://github.com/sebastianbergmann/diff/tree/7.0.0"
  10366. },
  10367. "funding": [
  10368. {
  10369. "url": "https://github.com/sebastianbergmann",
  10370. "type": "github"
  10371. }
  10372. ],
  10373. "time": "2025-02-07T04:55:46+00:00"
  10374. },
  10375. {
  10376. "name": "sebastian/environment",
  10377. "version": "8.0.3",
  10378. "source": {
  10379. "type": "git",
  10380. "url": "https://github.com/sebastianbergmann/environment.git",
  10381. "reference": "24a711b5c916efc6d6e62aa65aa2ec98fef77f68"
  10382. },
  10383. "dist": {
  10384. "type": "zip",
  10385. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/24a711b5c916efc6d6e62aa65aa2ec98fef77f68",
  10386. "reference": "24a711b5c916efc6d6e62aa65aa2ec98fef77f68",
  10387. "shasum": ""
  10388. },
  10389. "require": {
  10390. "php": ">=8.3"
  10391. },
  10392. "require-dev": {
  10393. "phpunit/phpunit": "^12.0"
  10394. },
  10395. "suggest": {
  10396. "ext-posix": "*"
  10397. },
  10398. "type": "library",
  10399. "extra": {
  10400. "branch-alias": {
  10401. "dev-main": "8.0-dev"
  10402. }
  10403. },
  10404. "autoload": {
  10405. "classmap": [
  10406. "src/"
  10407. ]
  10408. },
  10409. "notification-url": "https://packagist.org/downloads/",
  10410. "license": [
  10411. "BSD-3-Clause"
  10412. ],
  10413. "authors": [
  10414. {
  10415. "name": "Sebastian Bergmann",
  10416. "email": "sebastian@phpunit.de"
  10417. }
  10418. ],
  10419. "description": "Provides functionality to handle HHVM/PHP environments",
  10420. "homepage": "https://github.com/sebastianbergmann/environment",
  10421. "keywords": [
  10422. "Xdebug",
  10423. "environment",
  10424. "hhvm"
  10425. ],
  10426. "support": {
  10427. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10428. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  10429. "source": "https://github.com/sebastianbergmann/environment/tree/8.0.3"
  10430. },
  10431. "funding": [
  10432. {
  10433. "url": "https://github.com/sebastianbergmann",
  10434. "type": "github"
  10435. },
  10436. {
  10437. "url": "https://liberapay.com/sebastianbergmann",
  10438. "type": "liberapay"
  10439. },
  10440. {
  10441. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  10442. "type": "thanks_dev"
  10443. },
  10444. {
  10445. "url": "https://tidelift.com/funding/github/packagist/sebastian/environment",
  10446. "type": "tidelift"
  10447. }
  10448. ],
  10449. "time": "2025-08-12T14:11:56+00:00"
  10450. },
  10451. {
  10452. "name": "sebastian/exporter",
  10453. "version": "7.0.0",
  10454. "source": {
  10455. "type": "git",
  10456. "url": "https://github.com/sebastianbergmann/exporter.git",
  10457. "reference": "76432aafc58d50691a00d86d0632f1217a47b688"
  10458. },
  10459. "dist": {
  10460. "type": "zip",
  10461. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/76432aafc58d50691a00d86d0632f1217a47b688",
  10462. "reference": "76432aafc58d50691a00d86d0632f1217a47b688",
  10463. "shasum": ""
  10464. },
  10465. "require": {
  10466. "ext-mbstring": "*",
  10467. "php": ">=8.3",
  10468. "sebastian/recursion-context": "^7.0"
  10469. },
  10470. "require-dev": {
  10471. "phpunit/phpunit": "^12.0"
  10472. },
  10473. "type": "library",
  10474. "extra": {
  10475. "branch-alias": {
  10476. "dev-main": "7.0-dev"
  10477. }
  10478. },
  10479. "autoload": {
  10480. "classmap": [
  10481. "src/"
  10482. ]
  10483. },
  10484. "notification-url": "https://packagist.org/downloads/",
  10485. "license": [
  10486. "BSD-3-Clause"
  10487. ],
  10488. "authors": [
  10489. {
  10490. "name": "Sebastian Bergmann",
  10491. "email": "sebastian@phpunit.de"
  10492. },
  10493. {
  10494. "name": "Jeff Welch",
  10495. "email": "whatthejeff@gmail.com"
  10496. },
  10497. {
  10498. "name": "Volker Dusch",
  10499. "email": "github@wallbash.com"
  10500. },
  10501. {
  10502. "name": "Adam Harvey",
  10503. "email": "aharvey@php.net"
  10504. },
  10505. {
  10506. "name": "Bernhard Schussek",
  10507. "email": "bschussek@gmail.com"
  10508. }
  10509. ],
  10510. "description": "Provides the functionality to export PHP variables for visualization",
  10511. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10512. "keywords": [
  10513. "export",
  10514. "exporter"
  10515. ],
  10516. "support": {
  10517. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10518. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  10519. "source": "https://github.com/sebastianbergmann/exporter/tree/7.0.0"
  10520. },
  10521. "funding": [
  10522. {
  10523. "url": "https://github.com/sebastianbergmann",
  10524. "type": "github"
  10525. }
  10526. ],
  10527. "time": "2025-02-07T04:56:42+00:00"
  10528. },
  10529. {
  10530. "name": "sebastian/global-state",
  10531. "version": "8.0.2",
  10532. "source": {
  10533. "type": "git",
  10534. "url": "https://github.com/sebastianbergmann/global-state.git",
  10535. "reference": "ef1377171613d09edd25b7816f05be8313f9115d"
  10536. },
  10537. "dist": {
  10538. "type": "zip",
  10539. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/ef1377171613d09edd25b7816f05be8313f9115d",
  10540. "reference": "ef1377171613d09edd25b7816f05be8313f9115d",
  10541. "shasum": ""
  10542. },
  10543. "require": {
  10544. "php": ">=8.3",
  10545. "sebastian/object-reflector": "^5.0",
  10546. "sebastian/recursion-context": "^7.0"
  10547. },
  10548. "require-dev": {
  10549. "ext-dom": "*",
  10550. "phpunit/phpunit": "^12.0"
  10551. },
  10552. "type": "library",
  10553. "extra": {
  10554. "branch-alias": {
  10555. "dev-main": "8.0-dev"
  10556. }
  10557. },
  10558. "autoload": {
  10559. "classmap": [
  10560. "src/"
  10561. ]
  10562. },
  10563. "notification-url": "https://packagist.org/downloads/",
  10564. "license": [
  10565. "BSD-3-Clause"
  10566. ],
  10567. "authors": [
  10568. {
  10569. "name": "Sebastian Bergmann",
  10570. "email": "sebastian@phpunit.de"
  10571. }
  10572. ],
  10573. "description": "Snapshotting of global state",
  10574. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  10575. "keywords": [
  10576. "global state"
  10577. ],
  10578. "support": {
  10579. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10580. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  10581. "source": "https://github.com/sebastianbergmann/global-state/tree/8.0.2"
  10582. },
  10583. "funding": [
  10584. {
  10585. "url": "https://github.com/sebastianbergmann",
  10586. "type": "github"
  10587. },
  10588. {
  10589. "url": "https://liberapay.com/sebastianbergmann",
  10590. "type": "liberapay"
  10591. },
  10592. {
  10593. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  10594. "type": "thanks_dev"
  10595. },
  10596. {
  10597. "url": "https://tidelift.com/funding/github/packagist/sebastian/global-state",
  10598. "type": "tidelift"
  10599. }
  10600. ],
  10601. "time": "2025-08-29T11:29:25+00:00"
  10602. },
  10603. {
  10604. "name": "sebastian/lines-of-code",
  10605. "version": "4.0.0",
  10606. "source": {
  10607. "type": "git",
  10608. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10609. "reference": "97ffee3bcfb5805568d6af7f0f893678fc076d2f"
  10610. },
  10611. "dist": {
  10612. "type": "zip",
  10613. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/97ffee3bcfb5805568d6af7f0f893678fc076d2f",
  10614. "reference": "97ffee3bcfb5805568d6af7f0f893678fc076d2f",
  10615. "shasum": ""
  10616. },
  10617. "require": {
  10618. "nikic/php-parser": "^5.0",
  10619. "php": ">=8.3"
  10620. },
  10621. "require-dev": {
  10622. "phpunit/phpunit": "^12.0"
  10623. },
  10624. "type": "library",
  10625. "extra": {
  10626. "branch-alias": {
  10627. "dev-main": "4.0-dev"
  10628. }
  10629. },
  10630. "autoload": {
  10631. "classmap": [
  10632. "src/"
  10633. ]
  10634. },
  10635. "notification-url": "https://packagist.org/downloads/",
  10636. "license": [
  10637. "BSD-3-Clause"
  10638. ],
  10639. "authors": [
  10640. {
  10641. "name": "Sebastian Bergmann",
  10642. "email": "sebastian@phpunit.de",
  10643. "role": "lead"
  10644. }
  10645. ],
  10646. "description": "Library for counting the lines of code in PHP source code",
  10647. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10648. "support": {
  10649. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10650. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  10651. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/4.0.0"
  10652. },
  10653. "funding": [
  10654. {
  10655. "url": "https://github.com/sebastianbergmann",
  10656. "type": "github"
  10657. }
  10658. ],
  10659. "time": "2025-02-07T04:57:28+00:00"
  10660. },
  10661. {
  10662. "name": "sebastian/object-enumerator",
  10663. "version": "7.0.0",
  10664. "source": {
  10665. "type": "git",
  10666. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10667. "reference": "1effe8e9b8e068e9ae228e542d5d11b5d16db894"
  10668. },
  10669. "dist": {
  10670. "type": "zip",
  10671. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/1effe8e9b8e068e9ae228e542d5d11b5d16db894",
  10672. "reference": "1effe8e9b8e068e9ae228e542d5d11b5d16db894",
  10673. "shasum": ""
  10674. },
  10675. "require": {
  10676. "php": ">=8.3",
  10677. "sebastian/object-reflector": "^5.0",
  10678. "sebastian/recursion-context": "^7.0"
  10679. },
  10680. "require-dev": {
  10681. "phpunit/phpunit": "^12.0"
  10682. },
  10683. "type": "library",
  10684. "extra": {
  10685. "branch-alias": {
  10686. "dev-main": "7.0-dev"
  10687. }
  10688. },
  10689. "autoload": {
  10690. "classmap": [
  10691. "src/"
  10692. ]
  10693. },
  10694. "notification-url": "https://packagist.org/downloads/",
  10695. "license": [
  10696. "BSD-3-Clause"
  10697. ],
  10698. "authors": [
  10699. {
  10700. "name": "Sebastian Bergmann",
  10701. "email": "sebastian@phpunit.de"
  10702. }
  10703. ],
  10704. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10705. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10706. "support": {
  10707. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10708. "security": "https://github.com/sebastianbergmann/object-enumerator/security/policy",
  10709. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/7.0.0"
  10710. },
  10711. "funding": [
  10712. {
  10713. "url": "https://github.com/sebastianbergmann",
  10714. "type": "github"
  10715. }
  10716. ],
  10717. "time": "2025-02-07T04:57:48+00:00"
  10718. },
  10719. {
  10720. "name": "sebastian/object-reflector",
  10721. "version": "5.0.0",
  10722. "source": {
  10723. "type": "git",
  10724. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10725. "reference": "4bfa827c969c98be1e527abd576533293c634f6a"
  10726. },
  10727. "dist": {
  10728. "type": "zip",
  10729. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/4bfa827c969c98be1e527abd576533293c634f6a",
  10730. "reference": "4bfa827c969c98be1e527abd576533293c634f6a",
  10731. "shasum": ""
  10732. },
  10733. "require": {
  10734. "php": ">=8.3"
  10735. },
  10736. "require-dev": {
  10737. "phpunit/phpunit": "^12.0"
  10738. },
  10739. "type": "library",
  10740. "extra": {
  10741. "branch-alias": {
  10742. "dev-main": "5.0-dev"
  10743. }
  10744. },
  10745. "autoload": {
  10746. "classmap": [
  10747. "src/"
  10748. ]
  10749. },
  10750. "notification-url": "https://packagist.org/downloads/",
  10751. "license": [
  10752. "BSD-3-Clause"
  10753. ],
  10754. "authors": [
  10755. {
  10756. "name": "Sebastian Bergmann",
  10757. "email": "sebastian@phpunit.de"
  10758. }
  10759. ],
  10760. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10761. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10762. "support": {
  10763. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10764. "security": "https://github.com/sebastianbergmann/object-reflector/security/policy",
  10765. "source": "https://github.com/sebastianbergmann/object-reflector/tree/5.0.0"
  10766. },
  10767. "funding": [
  10768. {
  10769. "url": "https://github.com/sebastianbergmann",
  10770. "type": "github"
  10771. }
  10772. ],
  10773. "time": "2025-02-07T04:58:17+00:00"
  10774. },
  10775. {
  10776. "name": "sebastian/recursion-context",
  10777. "version": "7.0.1",
  10778. "source": {
  10779. "type": "git",
  10780. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10781. "reference": "0b01998a7d5b1f122911a66bebcb8d46f0c82d8c"
  10782. },
  10783. "dist": {
  10784. "type": "zip",
  10785. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/0b01998a7d5b1f122911a66bebcb8d46f0c82d8c",
  10786. "reference": "0b01998a7d5b1f122911a66bebcb8d46f0c82d8c",
  10787. "shasum": ""
  10788. },
  10789. "require": {
  10790. "php": ">=8.3"
  10791. },
  10792. "require-dev": {
  10793. "phpunit/phpunit": "^12.0"
  10794. },
  10795. "type": "library",
  10796. "extra": {
  10797. "branch-alias": {
  10798. "dev-main": "7.0-dev"
  10799. }
  10800. },
  10801. "autoload": {
  10802. "classmap": [
  10803. "src/"
  10804. ]
  10805. },
  10806. "notification-url": "https://packagist.org/downloads/",
  10807. "license": [
  10808. "BSD-3-Clause"
  10809. ],
  10810. "authors": [
  10811. {
  10812. "name": "Sebastian Bergmann",
  10813. "email": "sebastian@phpunit.de"
  10814. },
  10815. {
  10816. "name": "Jeff Welch",
  10817. "email": "whatthejeff@gmail.com"
  10818. },
  10819. {
  10820. "name": "Adam Harvey",
  10821. "email": "aharvey@php.net"
  10822. }
  10823. ],
  10824. "description": "Provides functionality to recursively process PHP variables",
  10825. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10826. "support": {
  10827. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10828. "security": "https://github.com/sebastianbergmann/recursion-context/security/policy",
  10829. "source": "https://github.com/sebastianbergmann/recursion-context/tree/7.0.1"
  10830. },
  10831. "funding": [
  10832. {
  10833. "url": "https://github.com/sebastianbergmann",
  10834. "type": "github"
  10835. },
  10836. {
  10837. "url": "https://liberapay.com/sebastianbergmann",
  10838. "type": "liberapay"
  10839. },
  10840. {
  10841. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  10842. "type": "thanks_dev"
  10843. },
  10844. {
  10845. "url": "https://tidelift.com/funding/github/packagist/sebastian/recursion-context",
  10846. "type": "tidelift"
  10847. }
  10848. ],
  10849. "time": "2025-08-13T04:44:59+00:00"
  10850. },
  10851. {
  10852. "name": "sebastian/type",
  10853. "version": "6.0.3",
  10854. "source": {
  10855. "type": "git",
  10856. "url": "https://github.com/sebastianbergmann/type.git",
  10857. "reference": "e549163b9760b8f71f191651d22acf32d56d6d4d"
  10858. },
  10859. "dist": {
  10860. "type": "zip",
  10861. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/e549163b9760b8f71f191651d22acf32d56d6d4d",
  10862. "reference": "e549163b9760b8f71f191651d22acf32d56d6d4d",
  10863. "shasum": ""
  10864. },
  10865. "require": {
  10866. "php": ">=8.3"
  10867. },
  10868. "require-dev": {
  10869. "phpunit/phpunit": "^12.0"
  10870. },
  10871. "type": "library",
  10872. "extra": {
  10873. "branch-alias": {
  10874. "dev-main": "6.0-dev"
  10875. }
  10876. },
  10877. "autoload": {
  10878. "classmap": [
  10879. "src/"
  10880. ]
  10881. },
  10882. "notification-url": "https://packagist.org/downloads/",
  10883. "license": [
  10884. "BSD-3-Clause"
  10885. ],
  10886. "authors": [
  10887. {
  10888. "name": "Sebastian Bergmann",
  10889. "email": "sebastian@phpunit.de",
  10890. "role": "lead"
  10891. }
  10892. ],
  10893. "description": "Collection of value objects that represent the types of the PHP type system",
  10894. "homepage": "https://github.com/sebastianbergmann/type",
  10895. "support": {
  10896. "issues": "https://github.com/sebastianbergmann/type/issues",
  10897. "security": "https://github.com/sebastianbergmann/type/security/policy",
  10898. "source": "https://github.com/sebastianbergmann/type/tree/6.0.3"
  10899. },
  10900. "funding": [
  10901. {
  10902. "url": "https://github.com/sebastianbergmann",
  10903. "type": "github"
  10904. },
  10905. {
  10906. "url": "https://liberapay.com/sebastianbergmann",
  10907. "type": "liberapay"
  10908. },
  10909. {
  10910. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  10911. "type": "thanks_dev"
  10912. },
  10913. {
  10914. "url": "https://tidelift.com/funding/github/packagist/sebastian/type",
  10915. "type": "tidelift"
  10916. }
  10917. ],
  10918. "time": "2025-08-09T06:57:12+00:00"
  10919. },
  10920. {
  10921. "name": "sebastian/version",
  10922. "version": "6.0.0",
  10923. "source": {
  10924. "type": "git",
  10925. "url": "https://github.com/sebastianbergmann/version.git",
  10926. "reference": "3e6ccf7657d4f0a59200564b08cead899313b53c"
  10927. },
  10928. "dist": {
  10929. "type": "zip",
  10930. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/3e6ccf7657d4f0a59200564b08cead899313b53c",
  10931. "reference": "3e6ccf7657d4f0a59200564b08cead899313b53c",
  10932. "shasum": ""
  10933. },
  10934. "require": {
  10935. "php": ">=8.3"
  10936. },
  10937. "type": "library",
  10938. "extra": {
  10939. "branch-alias": {
  10940. "dev-main": "6.0-dev"
  10941. }
  10942. },
  10943. "autoload": {
  10944. "classmap": [
  10945. "src/"
  10946. ]
  10947. },
  10948. "notification-url": "https://packagist.org/downloads/",
  10949. "license": [
  10950. "BSD-3-Clause"
  10951. ],
  10952. "authors": [
  10953. {
  10954. "name": "Sebastian Bergmann",
  10955. "email": "sebastian@phpunit.de",
  10956. "role": "lead"
  10957. }
  10958. ],
  10959. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10960. "homepage": "https://github.com/sebastianbergmann/version",
  10961. "support": {
  10962. "issues": "https://github.com/sebastianbergmann/version/issues",
  10963. "security": "https://github.com/sebastianbergmann/version/security/policy",
  10964. "source": "https://github.com/sebastianbergmann/version/tree/6.0.0"
  10965. },
  10966. "funding": [
  10967. {
  10968. "url": "https://github.com/sebastianbergmann",
  10969. "type": "github"
  10970. }
  10971. ],
  10972. "time": "2025-02-07T05:00:38+00:00"
  10973. },
  10974. {
  10975. "name": "staabm/side-effects-detector",
  10976. "version": "1.0.5",
  10977. "source": {
  10978. "type": "git",
  10979. "url": "https://github.com/staabm/side-effects-detector.git",
  10980. "reference": "d8334211a140ce329c13726d4a715adbddd0a163"
  10981. },
  10982. "dist": {
  10983. "type": "zip",
  10984. "url": "https://api.github.com/repos/staabm/side-effects-detector/zipball/d8334211a140ce329c13726d4a715adbddd0a163",
  10985. "reference": "d8334211a140ce329c13726d4a715adbddd0a163",
  10986. "shasum": ""
  10987. },
  10988. "require": {
  10989. "ext-tokenizer": "*",
  10990. "php": "^7.4 || ^8.0"
  10991. },
  10992. "require-dev": {
  10993. "phpstan/extension-installer": "^1.4.3",
  10994. "phpstan/phpstan": "^1.12.6",
  10995. "phpunit/phpunit": "^9.6.21",
  10996. "symfony/var-dumper": "^5.4.43",
  10997. "tomasvotruba/type-coverage": "1.0.0",
  10998. "tomasvotruba/unused-public": "1.0.0"
  10999. },
  11000. "type": "library",
  11001. "autoload": {
  11002. "classmap": [
  11003. "lib/"
  11004. ]
  11005. },
  11006. "notification-url": "https://packagist.org/downloads/",
  11007. "license": [
  11008. "MIT"
  11009. ],
  11010. "description": "A static analysis tool to detect side effects in PHP code",
  11011. "keywords": [
  11012. "static analysis"
  11013. ],
  11014. "support": {
  11015. "issues": "https://github.com/staabm/side-effects-detector/issues",
  11016. "source": "https://github.com/staabm/side-effects-detector/tree/1.0.5"
  11017. },
  11018. "funding": [
  11019. {
  11020. "url": "https://github.com/staabm",
  11021. "type": "github"
  11022. }
  11023. ],
  11024. "time": "2024-10-20T05:08:20+00:00"
  11025. },
  11026. {
  11027. "name": "symfony/yaml",
  11028. "version": "v7.3.3",
  11029. "source": {
  11030. "type": "git",
  11031. "url": "https://github.com/symfony/yaml.git",
  11032. "reference": "d4f4a66866fe2451f61296924767280ab5732d9d"
  11033. },
  11034. "dist": {
  11035. "type": "zip",
  11036. "url": "https://api.github.com/repos/symfony/yaml/zipball/d4f4a66866fe2451f61296924767280ab5732d9d",
  11037. "reference": "d4f4a66866fe2451f61296924767280ab5732d9d",
  11038. "shasum": ""
  11039. },
  11040. "require": {
  11041. "php": ">=8.2",
  11042. "symfony/deprecation-contracts": "^2.5|^3.0",
  11043. "symfony/polyfill-ctype": "^1.8"
  11044. },
  11045. "conflict": {
  11046. "symfony/console": "<6.4"
  11047. },
  11048. "require-dev": {
  11049. "symfony/console": "^6.4|^7.0"
  11050. },
  11051. "bin": [
  11052. "Resources/bin/yaml-lint"
  11053. ],
  11054. "type": "library",
  11055. "autoload": {
  11056. "psr-4": {
  11057. "Symfony\\Component\\Yaml\\": ""
  11058. },
  11059. "exclude-from-classmap": [
  11060. "/Tests/"
  11061. ]
  11062. },
  11063. "notification-url": "https://packagist.org/downloads/",
  11064. "license": [
  11065. "MIT"
  11066. ],
  11067. "authors": [
  11068. {
  11069. "name": "Fabien Potencier",
  11070. "email": "fabien@symfony.com"
  11071. },
  11072. {
  11073. "name": "Symfony Community",
  11074. "homepage": "https://symfony.com/contributors"
  11075. }
  11076. ],
  11077. "description": "Loads and dumps YAML files",
  11078. "homepage": "https://symfony.com",
  11079. "support": {
  11080. "source": "https://github.com/symfony/yaml/tree/v7.3.3"
  11081. },
  11082. "funding": [
  11083. {
  11084. "url": "https://symfony.com/sponsor",
  11085. "type": "custom"
  11086. },
  11087. {
  11088. "url": "https://github.com/fabpot",
  11089. "type": "github"
  11090. },
  11091. {
  11092. "url": "https://github.com/nicolas-grekas",
  11093. "type": "github"
  11094. },
  11095. {
  11096. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11097. "type": "tidelift"
  11098. }
  11099. ],
  11100. "time": "2025-08-27T11:34:33+00:00"
  11101. },
  11102. {
  11103. "name": "ta-tikoma/phpunit-architecture-test",
  11104. "version": "0.8.5",
  11105. "source": {
  11106. "type": "git",
  11107. "url": "https://github.com/ta-tikoma/phpunit-architecture-test.git",
  11108. "reference": "cf6fb197b676ba716837c886baca842e4db29005"
  11109. },
  11110. "dist": {
  11111. "type": "zip",
  11112. "url": "https://api.github.com/repos/ta-tikoma/phpunit-architecture-test/zipball/cf6fb197b676ba716837c886baca842e4db29005",
  11113. "reference": "cf6fb197b676ba716837c886baca842e4db29005",
  11114. "shasum": ""
  11115. },
  11116. "require": {
  11117. "nikic/php-parser": "^4.18.0 || ^5.0.0",
  11118. "php": "^8.1.0",
  11119. "phpdocumentor/reflection-docblock": "^5.3.0",
  11120. "phpunit/phpunit": "^10.5.5 || ^11.0.0 || ^12.0.0",
  11121. "symfony/finder": "^6.4.0 || ^7.0.0"
  11122. },
  11123. "require-dev": {
  11124. "laravel/pint": "^1.13.7",
  11125. "phpstan/phpstan": "^1.10.52"
  11126. },
  11127. "type": "library",
  11128. "autoload": {
  11129. "psr-4": {
  11130. "PHPUnit\\Architecture\\": "src/"
  11131. }
  11132. },
  11133. "notification-url": "https://packagist.org/downloads/",
  11134. "license": [
  11135. "MIT"
  11136. ],
  11137. "authors": [
  11138. {
  11139. "name": "Ni Shi",
  11140. "email": "futik0ma011@gmail.com"
  11141. },
  11142. {
  11143. "name": "Nuno Maduro",
  11144. "email": "enunomaduro@gmail.com"
  11145. }
  11146. ],
  11147. "description": "Methods for testing application architecture",
  11148. "keywords": [
  11149. "architecture",
  11150. "phpunit",
  11151. "stucture",
  11152. "test",
  11153. "testing"
  11154. ],
  11155. "support": {
  11156. "issues": "https://github.com/ta-tikoma/phpunit-architecture-test/issues",
  11157. "source": "https://github.com/ta-tikoma/phpunit-architecture-test/tree/0.8.5"
  11158. },
  11159. "time": "2025-04-20T20:23:40+00:00"
  11160. },
  11161. {
  11162. "name": "theseer/tokenizer",
  11163. "version": "1.2.3",
  11164. "source": {
  11165. "type": "git",
  11166. "url": "https://github.com/theseer/tokenizer.git",
  11167. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  11168. },
  11169. "dist": {
  11170. "type": "zip",
  11171. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11172. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11173. "shasum": ""
  11174. },
  11175. "require": {
  11176. "ext-dom": "*",
  11177. "ext-tokenizer": "*",
  11178. "ext-xmlwriter": "*",
  11179. "php": "^7.2 || ^8.0"
  11180. },
  11181. "type": "library",
  11182. "autoload": {
  11183. "classmap": [
  11184. "src/"
  11185. ]
  11186. },
  11187. "notification-url": "https://packagist.org/downloads/",
  11188. "license": [
  11189. "BSD-3-Clause"
  11190. ],
  11191. "authors": [
  11192. {
  11193. "name": "Arne Blankerts",
  11194. "email": "arne@blankerts.de",
  11195. "role": "Developer"
  11196. }
  11197. ],
  11198. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11199. "support": {
  11200. "issues": "https://github.com/theseer/tokenizer/issues",
  11201. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  11202. },
  11203. "funding": [
  11204. {
  11205. "url": "https://github.com/theseer",
  11206. "type": "github"
  11207. }
  11208. ],
  11209. "time": "2024-03-03T12:36:25+00:00"
  11210. }
  11211. ],
  11212. "aliases": [],
  11213. "minimum-stability": "stable",
  11214. "stability-flags": {},
  11215. "prefer-stable": true,
  11216. "prefer-lowest": false,
  11217. "platform": {
  11218. "php": "^8.2"
  11219. },
  11220. "platform-dev": {},
  11221. "plugin-api-version": "2.6.0"
  11222. }