composer.lock 362 KB

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