composer.lock 334 KB

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