composer.lock 322 KB

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