composer.lock 354 KB

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