composer.lock 315 KB

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