composer.lock 388 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736
  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": "bad86492aad862c25295a0c067d77516",
  8. "packages": [
  9. {
  10. "name": "adbario/php-dot-notation",
  11. "version": "2.5.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/adbario/php-dot-notation.git",
  15. "reference": "081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/adbario/php-dot-notation/zipball/081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae",
  20. "reference": "081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae",
  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. "ext-json": "*",
  31. "php": "^5.5 || ^7.0 || ^8.0"
  32. },
  33. "require-dev": {
  34. "phpunit/phpunit": "^4.8|^5.7|^6.6|^7.5|^8.5|^9.5",
  35. "squizlabs/php_codesniffer": "^3.6"
  36. },
  37. "type": "library",
  38. "autoload": {
  39. "files": [
  40. "src/helpers.php"
  41. ],
  42. "psr-4": {
  43. "Adbar\\": "src"
  44. }
  45. },
  46. "notification-url": "https://packagist.org/downloads/",
  47. "license": [
  48. "MIT"
  49. ],
  50. "authors": [
  51. {
  52. "name": "Riku Särkinen",
  53. "email": "riku@adbar.io"
  54. }
  55. ],
  56. "description": "PHP dot notation access to arrays",
  57. "homepage": "https://github.com/adbario/php-dot-notation",
  58. "keywords": [
  59. "ArrayAccess",
  60. "dotnotation"
  61. ],
  62. "support": {
  63. "issues": "https://github.com/adbario/php-dot-notation/issues",
  64. "source": "https://github.com/adbario/php-dot-notation/tree/2.5.0"
  65. },
  66. "time": "2022-10-14T20:31:46+00:00"
  67. },
  68. {
  69. "name": "alibabacloud/credentials",
  70. "version": "1.2.3",
  71. "source": {
  72. "type": "git",
  73. "url": "https://github.com/aliyun/credentials-php.git",
  74. "reference": "f6d1986e7b7be8da781d0b99f24c92d9860ba0c1"
  75. },
  76. "dist": {
  77. "type": "zip",
  78. "url": "https://api.github.com/repos/aliyun/credentials-php/zipball/f6d1986e7b7be8da781d0b99f24c92d9860ba0c1",
  79. "reference": "f6d1986e7b7be8da781d0b99f24c92d9860ba0c1",
  80. "shasum": "",
  81. "mirrors": [
  82. {
  83. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  84. "preferred": true
  85. }
  86. ]
  87. },
  88. "require": {
  89. "adbario/php-dot-notation": "^2.2",
  90. "alibabacloud/tea": "^3.0",
  91. "ext-curl": "*",
  92. "ext-json": "*",
  93. "ext-libxml": "*",
  94. "ext-mbstring": "*",
  95. "ext-openssl": "*",
  96. "ext-simplexml": "*",
  97. "ext-xmlwriter": "*",
  98. "guzzlehttp/guzzle": "^6.3|^7.0",
  99. "php": ">=5.6"
  100. },
  101. "require-dev": {
  102. "composer/composer": "^1.8",
  103. "drupal/coder": "^8.3",
  104. "ext-dom": "*",
  105. "ext-pcre": "*",
  106. "ext-sockets": "*",
  107. "ext-spl": "*",
  108. "mikey179/vfsstream": "^1.6",
  109. "monolog/monolog": "^1.24",
  110. "phpunit/phpunit": "^5.7|^6.6|^9.3",
  111. "psr/cache": "^1.0",
  112. "symfony/dotenv": "^3.4",
  113. "symfony/var-dumper": "^3.4"
  114. },
  115. "suggest": {
  116. "ext-sockets": "To use client-side monitoring"
  117. },
  118. "type": "library",
  119. "autoload": {
  120. "psr-4": {
  121. "AlibabaCloud\\Credentials\\": "src"
  122. }
  123. },
  124. "notification-url": "https://packagist.org/downloads/",
  125. "license": [
  126. "Apache-2.0"
  127. ],
  128. "authors": [
  129. {
  130. "name": "Alibaba Cloud SDK",
  131. "email": "sdk-team@alibabacloud.com",
  132. "homepage": "http://www.alibabacloud.com"
  133. }
  134. ],
  135. "description": "Alibaba Cloud Credentials for PHP",
  136. "homepage": "https://www.alibabacloud.com/",
  137. "keywords": [
  138. "alibaba",
  139. "alibabacloud",
  140. "aliyun",
  141. "client",
  142. "cloud",
  143. "credentials",
  144. "library",
  145. "sdk",
  146. "tool"
  147. ],
  148. "support": {
  149. "issues": "https://github.com/aliyun/credentials-php/issues",
  150. "source": "https://github.com/aliyun/credentials-php"
  151. },
  152. "time": "2025-04-18T09:09:46+00:00"
  153. },
  154. {
  155. "name": "alibabacloud/darabonba",
  156. "version": "v1.0.4",
  157. "source": {
  158. "type": "git",
  159. "url": "https://github.com/alibabacloud-sdk-php/darabonba.git",
  160. "reference": "b1ccea693258ea68e455e330922406f3afe10e9c"
  161. },
  162. "dist": {
  163. "type": "zip",
  164. "url": "https://api.github.com/repos/alibabacloud-sdk-php/darabonba/zipball/b1ccea693258ea68e455e330922406f3afe10e9c",
  165. "reference": "b1ccea693258ea68e455e330922406f3afe10e9c",
  166. "shasum": "",
  167. "mirrors": [
  168. {
  169. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  170. "preferred": true
  171. }
  172. ]
  173. },
  174. "require": {
  175. "adbario/php-dot-notation": "^2.4",
  176. "alibabacloud/tea": "^3.2",
  177. "ext-curl": "*",
  178. "ext-json": "*",
  179. "ext-libxml": "*",
  180. "ext-mbstring": "*",
  181. "ext-openssl": "*",
  182. "ext-simplexml": "*",
  183. "ext-xmlwriter": "*",
  184. "guzzlehttp/guzzle": "^6.3|^7.0",
  185. "php": ">=5.5"
  186. },
  187. "require-dev": {
  188. "phpunit/phpunit": "^4.8.35|^5.4.3|^9.3",
  189. "symfony/dotenv": "^3.4",
  190. "symfony/var-dumper": "^3.4"
  191. },
  192. "suggest": {
  193. "ext-sockets": "To use client-side monitoring"
  194. },
  195. "type": "library",
  196. "autoload": {
  197. "psr-4": {
  198. "AlibabaCloud\\Dara\\": "src"
  199. }
  200. },
  201. "notification-url": "https://packagist.org/downloads/",
  202. "license": [
  203. "Apache-2.0"
  204. ],
  205. "authors": [
  206. {
  207. "name": "Alibaba Cloud SDK",
  208. "email": "sdk-team@alibabacloud.com",
  209. "homepage": "http://www.alibabacloud.com"
  210. }
  211. ],
  212. "description": "Client of Darabonba for PHP",
  213. "homepage": "https://www.alibabacloud.com/",
  214. "keywords": [
  215. "alibabacloud",
  216. "client",
  217. "cloud",
  218. "tea"
  219. ],
  220. "support": {
  221. "issues": "https://github.com/aliyun/tea-php/issues",
  222. "source": "https://github.com/aliyun/tea-php"
  223. },
  224. "time": "2025-12-15T10:15:24+00:00"
  225. },
  226. {
  227. "name": "alibabacloud/dysmsapi-20170525",
  228. "version": "3.1.3",
  229. "source": {
  230. "type": "git",
  231. "url": "https://github.com/alibabacloud-sdk-php/Dysmsapi-20170525.git",
  232. "reference": "39bebd85974efc144615b9a11dfdb641d23f90f1"
  233. },
  234. "dist": {
  235. "type": "zip",
  236. "url": "https://api.github.com/repos/alibabacloud-sdk-php/Dysmsapi-20170525/zipball/39bebd85974efc144615b9a11dfdb641d23f90f1",
  237. "reference": "39bebd85974efc144615b9a11dfdb641d23f90f1",
  238. "shasum": "",
  239. "mirrors": [
  240. {
  241. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  242. "preferred": true
  243. }
  244. ]
  245. },
  246. "require": {
  247. "alibabacloud/darabonba": "^1.0.0",
  248. "alibabacloud/openapi-core": "^1.0.0",
  249. "php": ">5.5"
  250. },
  251. "type": "library",
  252. "autoload": {
  253. "psr-4": {
  254. "AlibabaCloud\\SDK\\Dysmsapi\\V20170525\\": "src"
  255. }
  256. },
  257. "notification-url": "https://packagist.org/downloads/",
  258. "license": [
  259. "Apache-2.0"
  260. ],
  261. "authors": [
  262. {
  263. "name": "Alibaba Cloud SDK",
  264. "email": "sdk-team@alibabacloud.com"
  265. }
  266. ],
  267. "description": "Alibaba Cloud Dysmsapi (20170525) SDK Library for PHP",
  268. "support": {
  269. "source": "https://github.com/alibabacloud-sdk-php/Dysmsapi-20170525/tree/3.1.3"
  270. },
  271. "time": "2025-04-16T17:20:20+00:00"
  272. },
  273. {
  274. "name": "alibabacloud/gateway-spi",
  275. "version": "1.0.0",
  276. "source": {
  277. "type": "git",
  278. "url": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi.git",
  279. "reference": "7440f77750c329d8ab252db1d1d967314ccd1fcb"
  280. },
  281. "dist": {
  282. "type": "zip",
  283. "url": "https://api.github.com/repos/alibabacloud-sdk-php/alibabacloud-gateway-spi/zipball/7440f77750c329d8ab252db1d1d967314ccd1fcb",
  284. "reference": "7440f77750c329d8ab252db1d1d967314ccd1fcb",
  285. "shasum": "",
  286. "mirrors": [
  287. {
  288. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  289. "preferred": true
  290. }
  291. ]
  292. },
  293. "require": {
  294. "alibabacloud/credentials": "^1.1",
  295. "php": ">5.5"
  296. },
  297. "type": "library",
  298. "autoload": {
  299. "psr-4": {
  300. "Darabonba\\GatewaySpi\\": "src"
  301. }
  302. },
  303. "notification-url": "https://packagist.org/downloads/",
  304. "license": [
  305. "Apache-2.0"
  306. ],
  307. "authors": [
  308. {
  309. "name": "Alibaba Cloud SDK",
  310. "email": "sdk-team@alibabacloud.com"
  311. }
  312. ],
  313. "description": "Alibaba Cloud Gateway SPI Client",
  314. "support": {
  315. "source": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi/tree/1.0.0"
  316. },
  317. "time": "2022-07-14T05:31:35+00:00"
  318. },
  319. {
  320. "name": "alibabacloud/green-20220302",
  321. "version": "2.23.0",
  322. "source": {
  323. "type": "git",
  324. "url": "https://github.com/alibabacloud-sdk-php/green-20220302.git",
  325. "reference": "686cf53983b296802ab1cb70ee59b879b7ce9b27"
  326. },
  327. "dist": {
  328. "type": "zip",
  329. "url": "https://api.github.com/repos/alibabacloud-sdk-php/green-20220302/zipball/686cf53983b296802ab1cb70ee59b879b7ce9b27",
  330. "reference": "686cf53983b296802ab1cb70ee59b879b7ce9b27",
  331. "shasum": "",
  332. "mirrors": [
  333. {
  334. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  335. "preferred": true
  336. }
  337. ]
  338. },
  339. "require": {
  340. "alibabacloud/darabonba": "^1.0.0",
  341. "alibabacloud/openapi-core": "^1.0.0",
  342. "php": ">5.5"
  343. },
  344. "type": "library",
  345. "autoload": {
  346. "psr-4": {
  347. "AlibabaCloud\\SDK\\Green\\V20220302\\": "src"
  348. }
  349. },
  350. "notification-url": "https://packagist.org/downloads/",
  351. "license": [
  352. "Apache-2.0"
  353. ],
  354. "authors": [
  355. {
  356. "name": "Alibaba Cloud SDK",
  357. "email": "sdk-team@alibabacloud.com"
  358. }
  359. ],
  360. "description": "Alibaba Cloud Green (20220302) SDK Library for PHP",
  361. "support": {
  362. "source": "https://github.com/alibabacloud-sdk-php/green-20220302/tree/2.23.0"
  363. },
  364. "time": "2025-09-22T10:18:31+00:00"
  365. },
  366. {
  367. "name": "alibabacloud/openapi-core",
  368. "version": "1.0.9",
  369. "source": {
  370. "type": "git",
  371. "url": "https://github.com/alibabacloud-sdk-php/openapi-core.git",
  372. "reference": "7b241b2a0e71f70629e2ecdc5cbe8c8b6b3a7567"
  373. },
  374. "dist": {
  375. "type": "zip",
  376. "url": "https://api.github.com/repos/alibabacloud-sdk-php/openapi-core/zipball/7b241b2a0e71f70629e2ecdc5cbe8c8b6b3a7567",
  377. "reference": "7b241b2a0e71f70629e2ecdc5cbe8c8b6b3a7567",
  378. "shasum": "",
  379. "mirrors": [
  380. {
  381. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  382. "preferred": true
  383. }
  384. ]
  385. },
  386. "require": {
  387. "alibabacloud/credentials": "^1.2.2",
  388. "alibabacloud/darabonba": "^1",
  389. "alibabacloud/gateway-spi": "^1",
  390. "php": ">5.5"
  391. },
  392. "require-dev": {
  393. "phpunit/phpunit": "^4.8.35|^5.4.3|^9.3",
  394. "symfony/dotenv": "^3.4",
  395. "symfony/var-dumper": "^3.4"
  396. },
  397. "type": "library",
  398. "autoload": {
  399. "psr-4": {
  400. "Darabonba\\OpenApi\\": "src"
  401. }
  402. },
  403. "notification-url": "https://packagist.org/downloads/",
  404. "license": [
  405. "Apache-2.0"
  406. ],
  407. "authors": [
  408. {
  409. "name": "Alibaba Cloud SDK",
  410. "email": "sdk-team@alibabacloud.com"
  411. }
  412. ],
  413. "description": "Alibaba Cloud OpenApi Client Core",
  414. "support": {
  415. "issues": "https://github.com/alibabacloud-sdk-php/openapi-core/issues",
  416. "source": "https://github.com/alibabacloud-sdk-php/openapi-core/tree/1.0.9"
  417. },
  418. "time": "2026-01-15T06:47:29+00:00"
  419. },
  420. {
  421. "name": "alibabacloud/tea",
  422. "version": "3.2.1",
  423. "source": {
  424. "type": "git",
  425. "url": "https://github.com/aliyun/tea-php.git",
  426. "reference": "1619cb96c158384f72b873e1f85de8b299c9c367"
  427. },
  428. "dist": {
  429. "type": "zip",
  430. "url": "https://api.github.com/repos/aliyun/tea-php/zipball/1619cb96c158384f72b873e1f85de8b299c9c367",
  431. "reference": "1619cb96c158384f72b873e1f85de8b299c9c367",
  432. "shasum": "",
  433. "mirrors": [
  434. {
  435. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  436. "preferred": true
  437. }
  438. ]
  439. },
  440. "require": {
  441. "adbario/php-dot-notation": "^2.4",
  442. "ext-curl": "*",
  443. "ext-json": "*",
  444. "ext-libxml": "*",
  445. "ext-mbstring": "*",
  446. "ext-openssl": "*",
  447. "ext-simplexml": "*",
  448. "ext-xmlwriter": "*",
  449. "guzzlehttp/guzzle": "^6.3|^7.0",
  450. "php": ">=5.5"
  451. },
  452. "require-dev": {
  453. "phpunit/phpunit": "*",
  454. "symfony/dotenv": "^3.4",
  455. "symfony/var-dumper": "^3.4"
  456. },
  457. "suggest": {
  458. "ext-sockets": "To use client-side monitoring"
  459. },
  460. "type": "library",
  461. "autoload": {
  462. "psr-4": {
  463. "AlibabaCloud\\Tea\\": "src"
  464. }
  465. },
  466. "notification-url": "https://packagist.org/downloads/",
  467. "license": [
  468. "Apache-2.0"
  469. ],
  470. "authors": [
  471. {
  472. "name": "Alibaba Cloud SDK",
  473. "email": "sdk-team@alibabacloud.com",
  474. "homepage": "http://www.alibabacloud.com"
  475. }
  476. ],
  477. "description": "Client of Tea for PHP",
  478. "homepage": "https://www.alibabacloud.com/",
  479. "keywords": [
  480. "alibabacloud",
  481. "client",
  482. "cloud",
  483. "tea"
  484. ],
  485. "support": {
  486. "issues": "https://github.com/aliyun/tea-php/issues",
  487. "source": "https://github.com/aliyun/tea-php"
  488. },
  489. "time": "2023-05-16T06:43:41+00:00"
  490. },
  491. {
  492. "name": "aliyuncs/oss-sdk-php",
  493. "version": "v2.7.2",
  494. "source": {
  495. "type": "git",
  496. "url": "https://github.com/aliyun/aliyun-oss-php-sdk.git",
  497. "reference": "483dd0b8bff5d47f0e4ffc99f6077a295c5ccbb5"
  498. },
  499. "dist": {
  500. "type": "zip",
  501. "url": "https://api.github.com/repos/aliyun/aliyun-oss-php-sdk/zipball/483dd0b8bff5d47f0e4ffc99f6077a295c5ccbb5",
  502. "reference": "483dd0b8bff5d47f0e4ffc99f6077a295c5ccbb5",
  503. "shasum": "",
  504. "mirrors": [
  505. {
  506. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  507. "preferred": true
  508. }
  509. ]
  510. },
  511. "require": {
  512. "php": ">=5.3"
  513. },
  514. "require-dev": {
  515. "php-coveralls/php-coveralls": "*",
  516. "phpunit/phpunit": "*"
  517. },
  518. "type": "library",
  519. "autoload": {
  520. "psr-4": {
  521. "OSS\\": "src/OSS"
  522. }
  523. },
  524. "notification-url": "https://packagist.org/downloads/",
  525. "license": [
  526. "MIT"
  527. ],
  528. "authors": [
  529. {
  530. "name": "Aliyuncs",
  531. "homepage": "http://www.aliyun.com"
  532. }
  533. ],
  534. "description": "Aliyun OSS SDK for PHP",
  535. "homepage": "http://www.aliyun.com/product/oss/",
  536. "support": {
  537. "issues": "https://github.com/aliyun/aliyun-oss-php-sdk/issues",
  538. "source": "https://github.com/aliyun/aliyun-oss-php-sdk/tree/v2.7.2"
  539. },
  540. "time": "2024-10-28T10:41:12+00:00"
  541. },
  542. {
  543. "name": "asm89/stack-cors",
  544. "version": "v2.3.0",
  545. "source": {
  546. "type": "git",
  547. "url": "https://github.com/asm89/stack-cors.git",
  548. "reference": "acf3142e6c5eafa378dc8ef3c069ab4558993f70"
  549. },
  550. "dist": {
  551. "type": "zip",
  552. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/acf3142e6c5eafa378dc8ef3c069ab4558993f70",
  553. "reference": "acf3142e6c5eafa378dc8ef3c069ab4558993f70",
  554. "shasum": "",
  555. "mirrors": [
  556. {
  557. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  558. "preferred": true
  559. }
  560. ]
  561. },
  562. "require": {
  563. "php": "^7.3|^8.0",
  564. "symfony/http-foundation": "^5.3|^6|^7",
  565. "symfony/http-kernel": "^5.3|^6|^7"
  566. },
  567. "require-dev": {
  568. "phpunit/phpunit": "^9",
  569. "squizlabs/php_codesniffer": "^3.5"
  570. },
  571. "type": "library",
  572. "extra": {
  573. "branch-alias": {
  574. "dev-master": "2.2-dev"
  575. }
  576. },
  577. "autoload": {
  578. "psr-4": {
  579. "Asm89\\Stack\\": "src/"
  580. }
  581. },
  582. "notification-url": "https://packagist.org/downloads/",
  583. "license": [
  584. "MIT"
  585. ],
  586. "authors": [
  587. {
  588. "name": "Alexander",
  589. "email": "iam.asm89@gmail.com"
  590. }
  591. ],
  592. "description": "Cross-origin resource sharing library and stack middleware",
  593. "homepage": "https://github.com/asm89/stack-cors",
  594. "keywords": [
  595. "cors",
  596. "stack"
  597. ],
  598. "support": {
  599. "issues": "https://github.com/asm89/stack-cors/issues",
  600. "source": "https://github.com/asm89/stack-cors/tree/v2.3.0"
  601. },
  602. "time": "2025-03-13T08:50:04+00:00"
  603. },
  604. {
  605. "name": "brick/math",
  606. "version": "0.11.0",
  607. "source": {
  608. "type": "git",
  609. "url": "https://github.com/brick/math.git",
  610. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478"
  611. },
  612. "dist": {
  613. "type": "zip",
  614. "url": "https://api.github.com/repos/brick/math/zipball/0ad82ce168c82ba30d1c01ec86116ab52f589478",
  615. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478",
  616. "shasum": "",
  617. "mirrors": [
  618. {
  619. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  620. "preferred": true
  621. }
  622. ]
  623. },
  624. "require": {
  625. "php": "^8.0"
  626. },
  627. "require-dev": {
  628. "php-coveralls/php-coveralls": "^2.2",
  629. "phpunit/phpunit": "^9.0",
  630. "vimeo/psalm": "5.0.0"
  631. },
  632. "type": "library",
  633. "autoload": {
  634. "psr-4": {
  635. "Brick\\Math\\": "src/"
  636. }
  637. },
  638. "notification-url": "https://packagist.org/downloads/",
  639. "license": [
  640. "MIT"
  641. ],
  642. "description": "Arbitrary-precision arithmetic library",
  643. "keywords": [
  644. "Arbitrary-precision",
  645. "BigInteger",
  646. "BigRational",
  647. "arithmetic",
  648. "bigdecimal",
  649. "bignum",
  650. "brick",
  651. "math"
  652. ],
  653. "support": {
  654. "issues": "https://github.com/brick/math/issues",
  655. "source": "https://github.com/brick/math/tree/0.11.0"
  656. },
  657. "funding": [
  658. {
  659. "url": "https://github.com/BenMorel",
  660. "type": "github"
  661. }
  662. ],
  663. "time": "2023-01-15T23:15:59+00:00"
  664. },
  665. {
  666. "name": "carbonphp/carbon-doctrine-types",
  667. "version": "2.1.0",
  668. "source": {
  669. "type": "git",
  670. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  671. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb"
  672. },
  673. "dist": {
  674. "type": "zip",
  675. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  676. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  677. "shasum": "",
  678. "mirrors": [
  679. {
  680. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  681. "preferred": true
  682. }
  683. ]
  684. },
  685. "require": {
  686. "php": "^7.4 || ^8.0"
  687. },
  688. "conflict": {
  689. "doctrine/dbal": "<3.7.0 || >=4.0.0"
  690. },
  691. "require-dev": {
  692. "doctrine/dbal": "^3.7.0",
  693. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  694. "phpunit/phpunit": "^10.3"
  695. },
  696. "type": "library",
  697. "autoload": {
  698. "psr-4": {
  699. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  700. }
  701. },
  702. "notification-url": "https://packagist.org/downloads/",
  703. "license": [
  704. "MIT"
  705. ],
  706. "authors": [
  707. {
  708. "name": "KyleKatarn",
  709. "email": "kylekatarnls@gmail.com"
  710. }
  711. ],
  712. "description": "Types to use Carbon in Doctrine",
  713. "keywords": [
  714. "carbon",
  715. "date",
  716. "datetime",
  717. "doctrine",
  718. "time"
  719. ],
  720. "support": {
  721. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  722. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/2.1.0"
  723. },
  724. "funding": [
  725. {
  726. "url": "https://github.com/kylekatarnls",
  727. "type": "github"
  728. },
  729. {
  730. "url": "https://opencollective.com/Carbon",
  731. "type": "open_collective"
  732. },
  733. {
  734. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  735. "type": "tidelift"
  736. }
  737. ],
  738. "time": "2023-12-11T17:09:12+00:00"
  739. },
  740. {
  741. "name": "composer/pcre",
  742. "version": "3.3.2",
  743. "source": {
  744. "type": "git",
  745. "url": "https://github.com/composer/pcre.git",
  746. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e"
  747. },
  748. "dist": {
  749. "type": "zip",
  750. "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  751. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  752. "shasum": "",
  753. "mirrors": [
  754. {
  755. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  756. "preferred": true
  757. }
  758. ]
  759. },
  760. "require": {
  761. "php": "^7.4 || ^8.0"
  762. },
  763. "conflict": {
  764. "phpstan/phpstan": "<1.11.10"
  765. },
  766. "require-dev": {
  767. "phpstan/phpstan": "^1.12 || ^2",
  768. "phpstan/phpstan-strict-rules": "^1 || ^2",
  769. "phpunit/phpunit": "^8 || ^9"
  770. },
  771. "type": "library",
  772. "extra": {
  773. "branch-alias": {
  774. "dev-main": "3.x-dev"
  775. },
  776. "phpstan": {
  777. "includes": [
  778. "extension.neon"
  779. ]
  780. }
  781. },
  782. "autoload": {
  783. "psr-4": {
  784. "Composer\\Pcre\\": "src"
  785. }
  786. },
  787. "notification-url": "https://packagist.org/downloads/",
  788. "license": [
  789. "MIT"
  790. ],
  791. "authors": [
  792. {
  793. "name": "Jordi Boggiano",
  794. "email": "j.boggiano@seld.be",
  795. "homepage": "http://seld.be"
  796. }
  797. ],
  798. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  799. "keywords": [
  800. "PCRE",
  801. "preg",
  802. "regex",
  803. "regular expression"
  804. ],
  805. "support": {
  806. "issues": "https://github.com/composer/pcre/issues",
  807. "source": "https://github.com/composer/pcre/tree/3.3.2"
  808. },
  809. "funding": [
  810. {
  811. "url": "https://packagist.com",
  812. "type": "custom"
  813. },
  814. {
  815. "url": "https://github.com/composer",
  816. "type": "github"
  817. },
  818. {
  819. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  820. "type": "tidelift"
  821. }
  822. ],
  823. "time": "2024-11-12T16:29:46+00:00"
  824. },
  825. {
  826. "name": "dflydev/dot-access-data",
  827. "version": "v3.0.3",
  828. "source": {
  829. "type": "git",
  830. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  831. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  832. },
  833. "dist": {
  834. "type": "zip",
  835. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  836. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  837. "shasum": "",
  838. "mirrors": [
  839. {
  840. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  841. "preferred": true
  842. }
  843. ]
  844. },
  845. "require": {
  846. "php": "^7.1 || ^8.0"
  847. },
  848. "require-dev": {
  849. "phpstan/phpstan": "^0.12.42",
  850. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  851. "scrutinizer/ocular": "1.6.0",
  852. "squizlabs/php_codesniffer": "^3.5",
  853. "vimeo/psalm": "^4.0.0"
  854. },
  855. "type": "library",
  856. "extra": {
  857. "branch-alias": {
  858. "dev-main": "3.x-dev"
  859. }
  860. },
  861. "autoload": {
  862. "psr-4": {
  863. "Dflydev\\DotAccessData\\": "src/"
  864. }
  865. },
  866. "notification-url": "https://packagist.org/downloads/",
  867. "license": [
  868. "MIT"
  869. ],
  870. "authors": [
  871. {
  872. "name": "Dragonfly Development Inc.",
  873. "email": "info@dflydev.com",
  874. "homepage": "http://dflydev.com"
  875. },
  876. {
  877. "name": "Beau Simensen",
  878. "email": "beau@dflydev.com",
  879. "homepage": "http://beausimensen.com"
  880. },
  881. {
  882. "name": "Carlos Frutos",
  883. "email": "carlos@kiwing.it",
  884. "homepage": "https://github.com/cfrutos"
  885. },
  886. {
  887. "name": "Colin O'Dell",
  888. "email": "colinodell@gmail.com",
  889. "homepage": "https://www.colinodell.com"
  890. }
  891. ],
  892. "description": "Given a deep data structure, access data by dot notation.",
  893. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  894. "keywords": [
  895. "access",
  896. "data",
  897. "dot",
  898. "notation"
  899. ],
  900. "support": {
  901. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  902. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  903. },
  904. "time": "2024-07-08T12:26:09+00:00"
  905. },
  906. {
  907. "name": "doctrine/inflector",
  908. "version": "2.0.10",
  909. "source": {
  910. "type": "git",
  911. "url": "https://github.com/doctrine/inflector.git",
  912. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  913. },
  914. "dist": {
  915. "type": "zip",
  916. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  917. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  918. "shasum": "",
  919. "mirrors": [
  920. {
  921. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  922. "preferred": true
  923. }
  924. ]
  925. },
  926. "require": {
  927. "php": "^7.2 || ^8.0"
  928. },
  929. "require-dev": {
  930. "doctrine/coding-standard": "^11.0",
  931. "phpstan/phpstan": "^1.8",
  932. "phpstan/phpstan-phpunit": "^1.1",
  933. "phpstan/phpstan-strict-rules": "^1.3",
  934. "phpunit/phpunit": "^8.5 || ^9.5",
  935. "vimeo/psalm": "^4.25 || ^5.4"
  936. },
  937. "type": "library",
  938. "autoload": {
  939. "psr-4": {
  940. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  941. }
  942. },
  943. "notification-url": "https://packagist.org/downloads/",
  944. "license": [
  945. "MIT"
  946. ],
  947. "authors": [
  948. {
  949. "name": "Guilherme Blanco",
  950. "email": "guilhermeblanco@gmail.com"
  951. },
  952. {
  953. "name": "Roman Borschel",
  954. "email": "roman@code-factory.org"
  955. },
  956. {
  957. "name": "Benjamin Eberlei",
  958. "email": "kontakt@beberlei.de"
  959. },
  960. {
  961. "name": "Jonathan Wage",
  962. "email": "jonwage@gmail.com"
  963. },
  964. {
  965. "name": "Johannes Schmitt",
  966. "email": "schmittjoh@gmail.com"
  967. }
  968. ],
  969. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  970. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  971. "keywords": [
  972. "inflection",
  973. "inflector",
  974. "lowercase",
  975. "manipulation",
  976. "php",
  977. "plural",
  978. "singular",
  979. "strings",
  980. "uppercase",
  981. "words"
  982. ],
  983. "support": {
  984. "issues": "https://github.com/doctrine/inflector/issues",
  985. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  986. },
  987. "funding": [
  988. {
  989. "url": "https://www.doctrine-project.org/sponsorship.html",
  990. "type": "custom"
  991. },
  992. {
  993. "url": "https://www.patreon.com/phpdoctrine",
  994. "type": "patreon"
  995. },
  996. {
  997. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  998. "type": "tidelift"
  999. }
  1000. ],
  1001. "time": "2024-02-18T20:23:39+00:00"
  1002. },
  1003. {
  1004. "name": "doctrine/lexer",
  1005. "version": "1.2.3",
  1006. "source": {
  1007. "type": "git",
  1008. "url": "https://github.com/doctrine/lexer.git",
  1009. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
  1010. },
  1011. "dist": {
  1012. "type": "zip",
  1013. "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1014. "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
  1015. "shasum": "",
  1016. "mirrors": [
  1017. {
  1018. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1019. "preferred": true
  1020. }
  1021. ]
  1022. },
  1023. "require": {
  1024. "php": "^7.1 || ^8.0"
  1025. },
  1026. "require-dev": {
  1027. "doctrine/coding-standard": "^9.0",
  1028. "phpstan/phpstan": "^1.3",
  1029. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1030. "vimeo/psalm": "^4.11"
  1031. },
  1032. "type": "library",
  1033. "autoload": {
  1034. "psr-4": {
  1035. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1036. }
  1037. },
  1038. "notification-url": "https://packagist.org/downloads/",
  1039. "license": [
  1040. "MIT"
  1041. ],
  1042. "authors": [
  1043. {
  1044. "name": "Guilherme Blanco",
  1045. "email": "guilhermeblanco@gmail.com"
  1046. },
  1047. {
  1048. "name": "Roman Borschel",
  1049. "email": "roman@code-factory.org"
  1050. },
  1051. {
  1052. "name": "Johannes Schmitt",
  1053. "email": "schmittjoh@gmail.com"
  1054. }
  1055. ],
  1056. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1057. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1058. "keywords": [
  1059. "annotations",
  1060. "docblock",
  1061. "lexer",
  1062. "parser",
  1063. "php"
  1064. ],
  1065. "support": {
  1066. "issues": "https://github.com/doctrine/lexer/issues",
  1067. "source": "https://github.com/doctrine/lexer/tree/1.2.3"
  1068. },
  1069. "funding": [
  1070. {
  1071. "url": "https://www.doctrine-project.org/sponsorship.html",
  1072. "type": "custom"
  1073. },
  1074. {
  1075. "url": "https://www.patreon.com/phpdoctrine",
  1076. "type": "patreon"
  1077. },
  1078. {
  1079. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1080. "type": "tidelift"
  1081. }
  1082. ],
  1083. "time": "2022-02-28T11:07:21+00:00"
  1084. },
  1085. {
  1086. "name": "dragonmantank/cron-expression",
  1087. "version": "v3.5.0",
  1088. "source": {
  1089. "type": "git",
  1090. "url": "https://github.com/dragonmantank/cron-expression.git",
  1091. "reference": "1b2de7f4a468165dca07b142240733a1973e766d"
  1092. },
  1093. "dist": {
  1094. "type": "zip",
  1095. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/1b2de7f4a468165dca07b142240733a1973e766d",
  1096. "reference": "1b2de7f4a468165dca07b142240733a1973e766d",
  1097. "shasum": "",
  1098. "mirrors": [
  1099. {
  1100. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1101. "preferred": true
  1102. }
  1103. ]
  1104. },
  1105. "require": {
  1106. "php": "^7.2|^8.0"
  1107. },
  1108. "replace": {
  1109. "mtdowling/cron-expression": "^1.0"
  1110. },
  1111. "require-dev": {
  1112. "phpstan/extension-installer": "^1.4.3",
  1113. "phpstan/phpstan": "^1.12.32|^2.1.31",
  1114. "phpunit/phpunit": "^8.5.48|^9.0"
  1115. },
  1116. "type": "library",
  1117. "extra": {
  1118. "branch-alias": {
  1119. "dev-master": "3.x-dev"
  1120. }
  1121. },
  1122. "autoload": {
  1123. "psr-4": {
  1124. "Cron\\": "src/Cron/"
  1125. }
  1126. },
  1127. "notification-url": "https://packagist.org/downloads/",
  1128. "license": [
  1129. "MIT"
  1130. ],
  1131. "authors": [
  1132. {
  1133. "name": "Chris Tankersley",
  1134. "email": "chris@ctankersley.com",
  1135. "homepage": "https://github.com/dragonmantank"
  1136. }
  1137. ],
  1138. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1139. "keywords": [
  1140. "cron",
  1141. "schedule"
  1142. ],
  1143. "support": {
  1144. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  1145. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.5.0"
  1146. },
  1147. "funding": [
  1148. {
  1149. "url": "https://github.com/dragonmantank",
  1150. "type": "github"
  1151. }
  1152. ],
  1153. "time": "2025-10-31T18:36:32+00:00"
  1154. },
  1155. {
  1156. "name": "easywechat-composer/easywechat-composer",
  1157. "version": "1.4.1",
  1158. "source": {
  1159. "type": "git",
  1160. "url": "https://github.com/mingyoung/easywechat-composer.git",
  1161. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd"
  1162. },
  1163. "dist": {
  1164. "type": "zip",
  1165. "url": "https://api.github.com/repos/mingyoung/easywechat-composer/zipball/3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  1166. "reference": "3fc6a7ab6d3853c0f4e2922539b56cc37ef361cd",
  1167. "shasum": "",
  1168. "mirrors": [
  1169. {
  1170. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1171. "preferred": true
  1172. }
  1173. ]
  1174. },
  1175. "require": {
  1176. "composer-plugin-api": "^1.0 || ^2.0",
  1177. "php": ">=7.0"
  1178. },
  1179. "require-dev": {
  1180. "composer/composer": "^1.0 || ^2.0",
  1181. "phpunit/phpunit": "^6.5 || ^7.0"
  1182. },
  1183. "type": "composer-plugin",
  1184. "extra": {
  1185. "class": "EasyWeChatComposer\\Plugin"
  1186. },
  1187. "autoload": {
  1188. "psr-4": {
  1189. "EasyWeChatComposer\\": "src/"
  1190. }
  1191. },
  1192. "notification-url": "https://packagist.org/downloads/",
  1193. "license": [
  1194. "MIT"
  1195. ],
  1196. "authors": [
  1197. {
  1198. "name": "张铭阳",
  1199. "email": "mingyoungcheung@gmail.com"
  1200. }
  1201. ],
  1202. "description": "The composer plugin for EasyWeChat",
  1203. "support": {
  1204. "issues": "https://github.com/mingyoung/easywechat-composer/issues",
  1205. "source": "https://github.com/mingyoung/easywechat-composer/tree/1.4.1"
  1206. },
  1207. "time": "2021-07-05T04:03:22+00:00"
  1208. },
  1209. {
  1210. "name": "egulias/email-validator",
  1211. "version": "2.1.25",
  1212. "source": {
  1213. "type": "git",
  1214. "url": "https://github.com/egulias/EmailValidator.git",
  1215. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  1216. },
  1217. "dist": {
  1218. "type": "zip",
  1219. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1220. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1221. "shasum": "",
  1222. "mirrors": [
  1223. {
  1224. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1225. "preferred": true
  1226. }
  1227. ]
  1228. },
  1229. "require": {
  1230. "doctrine/lexer": "^1.0.1",
  1231. "php": ">=5.5",
  1232. "symfony/polyfill-intl-idn": "^1.10"
  1233. },
  1234. "require-dev": {
  1235. "dominicsayers/isemail": "^3.0.7",
  1236. "phpunit/phpunit": "^4.8.36|^7.5.15",
  1237. "satooshi/php-coveralls": "^1.0.1"
  1238. },
  1239. "suggest": {
  1240. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1241. },
  1242. "type": "library",
  1243. "extra": {
  1244. "branch-alias": {
  1245. "dev-master": "2.1.x-dev"
  1246. }
  1247. },
  1248. "autoload": {
  1249. "psr-4": {
  1250. "Egulias\\EmailValidator\\": "src"
  1251. }
  1252. },
  1253. "notification-url": "https://packagist.org/downloads/",
  1254. "license": [
  1255. "MIT"
  1256. ],
  1257. "authors": [
  1258. {
  1259. "name": "Eduardo Gulias Davis"
  1260. }
  1261. ],
  1262. "description": "A library for validating emails against several RFCs",
  1263. "homepage": "https://github.com/egulias/EmailValidator",
  1264. "keywords": [
  1265. "email",
  1266. "emailvalidation",
  1267. "emailvalidator",
  1268. "validation",
  1269. "validator"
  1270. ],
  1271. "support": {
  1272. "issues": "https://github.com/egulias/EmailValidator/issues",
  1273. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  1274. },
  1275. "funding": [
  1276. {
  1277. "url": "https://github.com/egulias",
  1278. "type": "github"
  1279. }
  1280. ],
  1281. "time": "2020-12-29T14:50:06+00:00"
  1282. },
  1283. {
  1284. "name": "ezyang/htmlpurifier",
  1285. "version": "v4.19.0",
  1286. "source": {
  1287. "type": "git",
  1288. "url": "https://github.com/ezyang/htmlpurifier.git",
  1289. "reference": "b287d2a16aceffbf6e0295559b39662612b77fcf"
  1290. },
  1291. "dist": {
  1292. "type": "zip",
  1293. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/b287d2a16aceffbf6e0295559b39662612b77fcf",
  1294. "reference": "b287d2a16aceffbf6e0295559b39662612b77fcf",
  1295. "shasum": "",
  1296. "mirrors": [
  1297. {
  1298. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1299. "preferred": true
  1300. }
  1301. ]
  1302. },
  1303. "require": {
  1304. "php": "~5.6.0 || ~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0"
  1305. },
  1306. "require-dev": {
  1307. "cerdic/css-tidy": "^1.7 || ^2.0",
  1308. "simpletest/simpletest": "dev-master"
  1309. },
  1310. "suggest": {
  1311. "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
  1312. "ext-bcmath": "Used for unit conversion and imagecrash protection",
  1313. "ext-iconv": "Converts text to and from non-UTF-8 encodings",
  1314. "ext-tidy": "Used for pretty-printing HTML"
  1315. },
  1316. "type": "library",
  1317. "autoload": {
  1318. "files": [
  1319. "library/HTMLPurifier.composer.php"
  1320. ],
  1321. "psr-0": {
  1322. "HTMLPurifier": "library/"
  1323. },
  1324. "exclude-from-classmap": [
  1325. "/library/HTMLPurifier/Language/"
  1326. ]
  1327. },
  1328. "notification-url": "https://packagist.org/downloads/",
  1329. "license": [
  1330. "LGPL-2.1-or-later"
  1331. ],
  1332. "authors": [
  1333. {
  1334. "name": "Edward Z. Yang",
  1335. "email": "admin@htmlpurifier.org",
  1336. "homepage": "http://ezyang.com"
  1337. }
  1338. ],
  1339. "description": "Standards compliant HTML filter written in PHP",
  1340. "homepage": "http://htmlpurifier.org/",
  1341. "keywords": [
  1342. "html"
  1343. ],
  1344. "support": {
  1345. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  1346. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.19.0"
  1347. },
  1348. "time": "2025-10-17T16:34:55+00:00"
  1349. },
  1350. {
  1351. "name": "firebase/php-jwt",
  1352. "version": "v6.11.0",
  1353. "source": {
  1354. "type": "git",
  1355. "url": "https://github.com/firebase/php-jwt.git",
  1356. "reference": "8f718f4dfc9c5d5f0c994cdfd103921b43592712"
  1357. },
  1358. "dist": {
  1359. "type": "zip",
  1360. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/8f718f4dfc9c5d5f0c994cdfd103921b43592712",
  1361. "reference": "8f718f4dfc9c5d5f0c994cdfd103921b43592712",
  1362. "shasum": "",
  1363. "mirrors": [
  1364. {
  1365. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1366. "preferred": true
  1367. }
  1368. ]
  1369. },
  1370. "require": {
  1371. "php": "^8.0"
  1372. },
  1373. "require-dev": {
  1374. "guzzlehttp/guzzle": "^7.4",
  1375. "phpspec/prophecy-phpunit": "^2.0",
  1376. "phpunit/phpunit": "^9.5",
  1377. "psr/cache": "^2.0||^3.0",
  1378. "psr/http-client": "^1.0",
  1379. "psr/http-factory": "^1.0"
  1380. },
  1381. "suggest": {
  1382. "ext-sodium": "Support EdDSA (Ed25519) signatures",
  1383. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  1384. },
  1385. "type": "library",
  1386. "autoload": {
  1387. "psr-4": {
  1388. "Firebase\\JWT\\": "src"
  1389. }
  1390. },
  1391. "notification-url": "https://packagist.org/downloads/",
  1392. "license": [
  1393. "BSD-3-Clause"
  1394. ],
  1395. "authors": [
  1396. {
  1397. "name": "Neuman Vong",
  1398. "email": "neuman+pear@twilio.com",
  1399. "role": "Developer"
  1400. },
  1401. {
  1402. "name": "Anant Narayanan",
  1403. "email": "anant@php.net",
  1404. "role": "Developer"
  1405. }
  1406. ],
  1407. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  1408. "homepage": "https://github.com/firebase/php-jwt",
  1409. "keywords": [
  1410. "jwt",
  1411. "php"
  1412. ],
  1413. "support": {
  1414. "issues": "https://github.com/firebase/php-jwt/issues",
  1415. "source": "https://github.com/firebase/php-jwt/tree/v6.11.0"
  1416. },
  1417. "time": "2025-01-23T05:11:06+00:00"
  1418. },
  1419. {
  1420. "name": "fruitcake/laravel-cors",
  1421. "version": "v2.2.0",
  1422. "source": {
  1423. "type": "git",
  1424. "url": "https://github.com/fruitcake/laravel-cors.git",
  1425. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534"
  1426. },
  1427. "dist": {
  1428. "type": "zip",
  1429. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/783a74f5e3431d7b9805be8afb60fd0a8f743534",
  1430. "reference": "783a74f5e3431d7b9805be8afb60fd0a8f743534",
  1431. "shasum": "",
  1432. "mirrors": [
  1433. {
  1434. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1435. "preferred": true
  1436. }
  1437. ]
  1438. },
  1439. "require": {
  1440. "asm89/stack-cors": "^2.0.1",
  1441. "illuminate/contracts": "^6|^7|^8|^9",
  1442. "illuminate/support": "^6|^7|^8|^9",
  1443. "php": ">=7.2"
  1444. },
  1445. "require-dev": {
  1446. "laravel/framework": "^6|^7.24|^8",
  1447. "orchestra/testbench-dusk": "^4|^5|^6|^7",
  1448. "phpunit/phpunit": "^6|^7|^8|^9",
  1449. "squizlabs/php_codesniffer": "^3.5"
  1450. },
  1451. "type": "library",
  1452. "extra": {
  1453. "branch-alias": {
  1454. "dev-master": "2.1-dev"
  1455. },
  1456. "laravel": {
  1457. "providers": [
  1458. "Fruitcake\\Cors\\CorsServiceProvider"
  1459. ]
  1460. }
  1461. },
  1462. "autoload": {
  1463. "psr-4": {
  1464. "Fruitcake\\Cors\\": "src/"
  1465. }
  1466. },
  1467. "notification-url": "https://packagist.org/downloads/",
  1468. "license": [
  1469. "MIT"
  1470. ],
  1471. "authors": [
  1472. {
  1473. "name": "Fruitcake",
  1474. "homepage": "https://fruitcake.nl"
  1475. },
  1476. {
  1477. "name": "Barry vd. Heuvel",
  1478. "email": "barryvdh@gmail.com"
  1479. }
  1480. ],
  1481. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  1482. "keywords": [
  1483. "api",
  1484. "cors",
  1485. "crossdomain",
  1486. "laravel"
  1487. ],
  1488. "support": {
  1489. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  1490. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.2.0"
  1491. },
  1492. "funding": [
  1493. {
  1494. "url": "https://fruitcake.nl",
  1495. "type": "custom"
  1496. },
  1497. {
  1498. "url": "https://github.com/barryvdh",
  1499. "type": "github"
  1500. }
  1501. ],
  1502. "abandoned": true,
  1503. "time": "2022-02-23T14:25:13+00:00"
  1504. },
  1505. {
  1506. "name": "graham-campbell/manager",
  1507. "version": "v4.7.0",
  1508. "source": {
  1509. "type": "git",
  1510. "url": "https://github.com/GrahamCampbell/Laravel-Manager.git",
  1511. "reference": "b4cafa6491b9c92ecf7ce17521580050a27b8308"
  1512. },
  1513. "dist": {
  1514. "type": "zip",
  1515. "url": "https://api.github.com/repos/GrahamCampbell/Laravel-Manager/zipball/b4cafa6491b9c92ecf7ce17521580050a27b8308",
  1516. "reference": "b4cafa6491b9c92ecf7ce17521580050a27b8308",
  1517. "shasum": "",
  1518. "mirrors": [
  1519. {
  1520. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1521. "preferred": true
  1522. }
  1523. ]
  1524. },
  1525. "require": {
  1526. "illuminate/contracts": "^5.5 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
  1527. "illuminate/support": "^5.5 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
  1528. "php": "^7.1.3 || ^8.0"
  1529. },
  1530. "require-dev": {
  1531. "graham-campbell/analyzer": "^2.4 || ^3.0",
  1532. "graham-campbell/testbench-core": "^3.4",
  1533. "mockery/mockery": "^1.3.1",
  1534. "phpunit/phpunit": "^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.7"
  1535. },
  1536. "type": "library",
  1537. "autoload": {
  1538. "psr-4": {
  1539. "GrahamCampbell\\Manager\\": "src/"
  1540. }
  1541. },
  1542. "notification-url": "https://packagist.org/downloads/",
  1543. "license": [
  1544. "MIT"
  1545. ],
  1546. "authors": [
  1547. {
  1548. "name": "Graham Campbell",
  1549. "email": "hello@gjcampbell.co.uk",
  1550. "homepage": "https://github.com/GrahamCampbell"
  1551. }
  1552. ],
  1553. "description": "Manager Provides Some Manager Functionality For Laravel",
  1554. "keywords": [
  1555. "Graham Campbell",
  1556. "GrahamCampbell",
  1557. "Laravel Manager",
  1558. "Laravel-Manager",
  1559. "connector",
  1560. "framework",
  1561. "interface",
  1562. "laravel",
  1563. "manager"
  1564. ],
  1565. "support": {
  1566. "issues": "https://github.com/GrahamCampbell/Laravel-Manager/issues",
  1567. "source": "https://github.com/GrahamCampbell/Laravel-Manager/tree/v4.7.0"
  1568. },
  1569. "funding": [
  1570. {
  1571. "url": "https://github.com/GrahamCampbell",
  1572. "type": "github"
  1573. },
  1574. {
  1575. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/manager",
  1576. "type": "tidelift"
  1577. }
  1578. ],
  1579. "time": "2022-01-24T01:59:19+00:00"
  1580. },
  1581. {
  1582. "name": "graham-campbell/result-type",
  1583. "version": "v1.1.4",
  1584. "source": {
  1585. "type": "git",
  1586. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  1587. "reference": "e01f4a821471308ba86aa202fed6698b6b695e3b"
  1588. },
  1589. "dist": {
  1590. "type": "zip",
  1591. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/e01f4a821471308ba86aa202fed6698b6b695e3b",
  1592. "reference": "e01f4a821471308ba86aa202fed6698b6b695e3b",
  1593. "shasum": "",
  1594. "mirrors": [
  1595. {
  1596. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1597. "preferred": true
  1598. }
  1599. ]
  1600. },
  1601. "require": {
  1602. "php": "^7.2.5 || ^8.0",
  1603. "phpoption/phpoption": "^1.9.5"
  1604. },
  1605. "require-dev": {
  1606. "phpunit/phpunit": "^8.5.41 || ^9.6.22 || ^10.5.45 || ^11.5.7"
  1607. },
  1608. "type": "library",
  1609. "autoload": {
  1610. "psr-4": {
  1611. "GrahamCampbell\\ResultType\\": "src/"
  1612. }
  1613. },
  1614. "notification-url": "https://packagist.org/downloads/",
  1615. "license": [
  1616. "MIT"
  1617. ],
  1618. "authors": [
  1619. {
  1620. "name": "Graham Campbell",
  1621. "email": "hello@gjcampbell.co.uk",
  1622. "homepage": "https://github.com/GrahamCampbell"
  1623. }
  1624. ],
  1625. "description": "An Implementation Of The Result Type",
  1626. "keywords": [
  1627. "Graham Campbell",
  1628. "GrahamCampbell",
  1629. "Result Type",
  1630. "Result-Type",
  1631. "result"
  1632. ],
  1633. "support": {
  1634. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  1635. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.4"
  1636. },
  1637. "funding": [
  1638. {
  1639. "url": "https://github.com/GrahamCampbell",
  1640. "type": "github"
  1641. },
  1642. {
  1643. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  1644. "type": "tidelift"
  1645. }
  1646. ],
  1647. "time": "2025-12-27T19:43:20+00:00"
  1648. },
  1649. {
  1650. "name": "guzzlehttp/guzzle",
  1651. "version": "7.10.0",
  1652. "source": {
  1653. "type": "git",
  1654. "url": "https://github.com/guzzle/guzzle.git",
  1655. "reference": "b51ac707cfa420b7bfd4e4d5e510ba8008e822b4"
  1656. },
  1657. "dist": {
  1658. "type": "zip",
  1659. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/b51ac707cfa420b7bfd4e4d5e510ba8008e822b4",
  1660. "reference": "b51ac707cfa420b7bfd4e4d5e510ba8008e822b4",
  1661. "shasum": "",
  1662. "mirrors": [
  1663. {
  1664. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1665. "preferred": true
  1666. }
  1667. ]
  1668. },
  1669. "require": {
  1670. "ext-json": "*",
  1671. "guzzlehttp/promises": "^2.3",
  1672. "guzzlehttp/psr7": "^2.8",
  1673. "php": "^7.2.5 || ^8.0",
  1674. "psr/http-client": "^1.0",
  1675. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1676. },
  1677. "provide": {
  1678. "psr/http-client-implementation": "1.0"
  1679. },
  1680. "require-dev": {
  1681. "bamarni/composer-bin-plugin": "^1.8.2",
  1682. "ext-curl": "*",
  1683. "guzzle/client-integration-tests": "3.0.2",
  1684. "php-http/message-factory": "^1.1",
  1685. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  1686. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1687. },
  1688. "suggest": {
  1689. "ext-curl": "Required for CURL handler support",
  1690. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1691. "psr/log": "Required for using the Log middleware"
  1692. },
  1693. "type": "library",
  1694. "extra": {
  1695. "bamarni-bin": {
  1696. "bin-links": true,
  1697. "forward-command": false
  1698. }
  1699. },
  1700. "autoload": {
  1701. "files": [
  1702. "src/functions_include.php"
  1703. ],
  1704. "psr-4": {
  1705. "GuzzleHttp\\": "src/"
  1706. }
  1707. },
  1708. "notification-url": "https://packagist.org/downloads/",
  1709. "license": [
  1710. "MIT"
  1711. ],
  1712. "authors": [
  1713. {
  1714. "name": "Graham Campbell",
  1715. "email": "hello@gjcampbell.co.uk",
  1716. "homepage": "https://github.com/GrahamCampbell"
  1717. },
  1718. {
  1719. "name": "Michael Dowling",
  1720. "email": "mtdowling@gmail.com",
  1721. "homepage": "https://github.com/mtdowling"
  1722. },
  1723. {
  1724. "name": "Jeremy Lindblom",
  1725. "email": "jeremeamia@gmail.com",
  1726. "homepage": "https://github.com/jeremeamia"
  1727. },
  1728. {
  1729. "name": "George Mponos",
  1730. "email": "gmponos@gmail.com",
  1731. "homepage": "https://github.com/gmponos"
  1732. },
  1733. {
  1734. "name": "Tobias Nyholm",
  1735. "email": "tobias.nyholm@gmail.com",
  1736. "homepage": "https://github.com/Nyholm"
  1737. },
  1738. {
  1739. "name": "Márk Sági-Kazár",
  1740. "email": "mark.sagikazar@gmail.com",
  1741. "homepage": "https://github.com/sagikazarmark"
  1742. },
  1743. {
  1744. "name": "Tobias Schultze",
  1745. "email": "webmaster@tubo-world.de",
  1746. "homepage": "https://github.com/Tobion"
  1747. }
  1748. ],
  1749. "description": "Guzzle is a PHP HTTP client library",
  1750. "keywords": [
  1751. "client",
  1752. "curl",
  1753. "framework",
  1754. "http",
  1755. "http client",
  1756. "psr-18",
  1757. "psr-7",
  1758. "rest",
  1759. "web service"
  1760. ],
  1761. "support": {
  1762. "issues": "https://github.com/guzzle/guzzle/issues",
  1763. "source": "https://github.com/guzzle/guzzle/tree/7.10.0"
  1764. },
  1765. "funding": [
  1766. {
  1767. "url": "https://github.com/GrahamCampbell",
  1768. "type": "github"
  1769. },
  1770. {
  1771. "url": "https://github.com/Nyholm",
  1772. "type": "github"
  1773. },
  1774. {
  1775. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1776. "type": "tidelift"
  1777. }
  1778. ],
  1779. "time": "2025-08-23T22:36:01+00:00"
  1780. },
  1781. {
  1782. "name": "guzzlehttp/promises",
  1783. "version": "2.3.0",
  1784. "source": {
  1785. "type": "git",
  1786. "url": "https://github.com/guzzle/promises.git",
  1787. "reference": "481557b130ef3790cf82b713667b43030dc9c957"
  1788. },
  1789. "dist": {
  1790. "type": "zip",
  1791. "url": "https://api.github.com/repos/guzzle/promises/zipball/481557b130ef3790cf82b713667b43030dc9c957",
  1792. "reference": "481557b130ef3790cf82b713667b43030dc9c957",
  1793. "shasum": "",
  1794. "mirrors": [
  1795. {
  1796. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1797. "preferred": true
  1798. }
  1799. ]
  1800. },
  1801. "require": {
  1802. "php": "^7.2.5 || ^8.0"
  1803. },
  1804. "require-dev": {
  1805. "bamarni/composer-bin-plugin": "^1.8.2",
  1806. "phpunit/phpunit": "^8.5.44 || ^9.6.25"
  1807. },
  1808. "type": "library",
  1809. "extra": {
  1810. "bamarni-bin": {
  1811. "bin-links": true,
  1812. "forward-command": false
  1813. }
  1814. },
  1815. "autoload": {
  1816. "psr-4": {
  1817. "GuzzleHttp\\Promise\\": "src/"
  1818. }
  1819. },
  1820. "notification-url": "https://packagist.org/downloads/",
  1821. "license": [
  1822. "MIT"
  1823. ],
  1824. "authors": [
  1825. {
  1826. "name": "Graham Campbell",
  1827. "email": "hello@gjcampbell.co.uk",
  1828. "homepage": "https://github.com/GrahamCampbell"
  1829. },
  1830. {
  1831. "name": "Michael Dowling",
  1832. "email": "mtdowling@gmail.com",
  1833. "homepage": "https://github.com/mtdowling"
  1834. },
  1835. {
  1836. "name": "Tobias Nyholm",
  1837. "email": "tobias.nyholm@gmail.com",
  1838. "homepage": "https://github.com/Nyholm"
  1839. },
  1840. {
  1841. "name": "Tobias Schultze",
  1842. "email": "webmaster@tubo-world.de",
  1843. "homepage": "https://github.com/Tobion"
  1844. }
  1845. ],
  1846. "description": "Guzzle promises library",
  1847. "keywords": [
  1848. "promise"
  1849. ],
  1850. "support": {
  1851. "issues": "https://github.com/guzzle/promises/issues",
  1852. "source": "https://github.com/guzzle/promises/tree/2.3.0"
  1853. },
  1854. "funding": [
  1855. {
  1856. "url": "https://github.com/GrahamCampbell",
  1857. "type": "github"
  1858. },
  1859. {
  1860. "url": "https://github.com/Nyholm",
  1861. "type": "github"
  1862. },
  1863. {
  1864. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1865. "type": "tidelift"
  1866. }
  1867. ],
  1868. "time": "2025-08-22T14:34:08+00:00"
  1869. },
  1870. {
  1871. "name": "guzzlehttp/psr7",
  1872. "version": "2.8.0",
  1873. "source": {
  1874. "type": "git",
  1875. "url": "https://github.com/guzzle/psr7.git",
  1876. "reference": "21dc724a0583619cd1652f673303492272778051"
  1877. },
  1878. "dist": {
  1879. "type": "zip",
  1880. "url": "https://api.github.com/repos/guzzle/psr7/zipball/21dc724a0583619cd1652f673303492272778051",
  1881. "reference": "21dc724a0583619cd1652f673303492272778051",
  1882. "shasum": "",
  1883. "mirrors": [
  1884. {
  1885. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1886. "preferred": true
  1887. }
  1888. ]
  1889. },
  1890. "require": {
  1891. "php": "^7.2.5 || ^8.0",
  1892. "psr/http-factory": "^1.0",
  1893. "psr/http-message": "^1.1 || ^2.0",
  1894. "ralouphie/getallheaders": "^3.0"
  1895. },
  1896. "provide": {
  1897. "psr/http-factory-implementation": "1.0",
  1898. "psr/http-message-implementation": "1.0"
  1899. },
  1900. "require-dev": {
  1901. "bamarni/composer-bin-plugin": "^1.8.2",
  1902. "http-interop/http-factory-tests": "0.9.0",
  1903. "phpunit/phpunit": "^8.5.44 || ^9.6.25"
  1904. },
  1905. "suggest": {
  1906. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1907. },
  1908. "type": "library",
  1909. "extra": {
  1910. "bamarni-bin": {
  1911. "bin-links": true,
  1912. "forward-command": false
  1913. }
  1914. },
  1915. "autoload": {
  1916. "psr-4": {
  1917. "GuzzleHttp\\Psr7\\": "src/"
  1918. }
  1919. },
  1920. "notification-url": "https://packagist.org/downloads/",
  1921. "license": [
  1922. "MIT"
  1923. ],
  1924. "authors": [
  1925. {
  1926. "name": "Graham Campbell",
  1927. "email": "hello@gjcampbell.co.uk",
  1928. "homepage": "https://github.com/GrahamCampbell"
  1929. },
  1930. {
  1931. "name": "Michael Dowling",
  1932. "email": "mtdowling@gmail.com",
  1933. "homepage": "https://github.com/mtdowling"
  1934. },
  1935. {
  1936. "name": "George Mponos",
  1937. "email": "gmponos@gmail.com",
  1938. "homepage": "https://github.com/gmponos"
  1939. },
  1940. {
  1941. "name": "Tobias Nyholm",
  1942. "email": "tobias.nyholm@gmail.com",
  1943. "homepage": "https://github.com/Nyholm"
  1944. },
  1945. {
  1946. "name": "Márk Sági-Kazár",
  1947. "email": "mark.sagikazar@gmail.com",
  1948. "homepage": "https://github.com/sagikazarmark"
  1949. },
  1950. {
  1951. "name": "Tobias Schultze",
  1952. "email": "webmaster@tubo-world.de",
  1953. "homepage": "https://github.com/Tobion"
  1954. },
  1955. {
  1956. "name": "Márk Sági-Kazár",
  1957. "email": "mark.sagikazar@gmail.com",
  1958. "homepage": "https://sagikazarmark.hu"
  1959. }
  1960. ],
  1961. "description": "PSR-7 message implementation that also provides common utility methods",
  1962. "keywords": [
  1963. "http",
  1964. "message",
  1965. "psr-7",
  1966. "request",
  1967. "response",
  1968. "stream",
  1969. "uri",
  1970. "url"
  1971. ],
  1972. "support": {
  1973. "issues": "https://github.com/guzzle/psr7/issues",
  1974. "source": "https://github.com/guzzle/psr7/tree/2.8.0"
  1975. },
  1976. "funding": [
  1977. {
  1978. "url": "https://github.com/GrahamCampbell",
  1979. "type": "github"
  1980. },
  1981. {
  1982. "url": "https://github.com/Nyholm",
  1983. "type": "github"
  1984. },
  1985. {
  1986. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1987. "type": "tidelift"
  1988. }
  1989. ],
  1990. "time": "2025-08-23T21:21:41+00:00"
  1991. },
  1992. {
  1993. "name": "hashids/hashids",
  1994. "version": "4.1.0",
  1995. "source": {
  1996. "type": "git",
  1997. "url": "https://github.com/vinkla/hashids.git",
  1998. "reference": "8cab111f78e0bd9c76953b082919fc9e251761be"
  1999. },
  2000. "dist": {
  2001. "type": "zip",
  2002. "url": "https://api.github.com/repos/vinkla/hashids/zipball/8cab111f78e0bd9c76953b082919fc9e251761be",
  2003. "reference": "8cab111f78e0bd9c76953b082919fc9e251761be",
  2004. "shasum": "",
  2005. "mirrors": [
  2006. {
  2007. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2008. "preferred": true
  2009. }
  2010. ]
  2011. },
  2012. "require": {
  2013. "ext-mbstring": "*",
  2014. "php": "^7.2 || ^8.0"
  2015. },
  2016. "require-dev": {
  2017. "phpunit/phpunit": "^8.0 || ^9.4",
  2018. "squizlabs/php_codesniffer": "^3.5"
  2019. },
  2020. "suggest": {
  2021. "ext-bcmath": "Required to use BC Math arbitrary precision mathematics (*).",
  2022. "ext-gmp": "Required to use GNU multiple precision mathematics (*)."
  2023. },
  2024. "type": "library",
  2025. "extra": {
  2026. "branch-alias": {
  2027. "dev-master": "4.1-dev"
  2028. }
  2029. },
  2030. "autoload": {
  2031. "psr-4": {
  2032. "Hashids\\": "src/"
  2033. }
  2034. },
  2035. "notification-url": "https://packagist.org/downloads/",
  2036. "license": [
  2037. "MIT"
  2038. ],
  2039. "authors": [
  2040. {
  2041. "name": "Ivan Akimov",
  2042. "email": "ivan@barreleye.com"
  2043. },
  2044. {
  2045. "name": "Vincent Klaiber",
  2046. "email": "hello@doubledip.se"
  2047. }
  2048. ],
  2049. "description": "Generate short, unique, non-sequential ids (like YouTube and Bitly) from numbers",
  2050. "homepage": "https://hashids.org/php",
  2051. "keywords": [
  2052. "bitly",
  2053. "decode",
  2054. "encode",
  2055. "hash",
  2056. "hashid",
  2057. "hashids",
  2058. "ids",
  2059. "obfuscate",
  2060. "youtube"
  2061. ],
  2062. "support": {
  2063. "issues": "https://github.com/vinkla/hashids/issues",
  2064. "source": "https://github.com/vinkla/hashids/tree/4.1.0"
  2065. },
  2066. "time": "2020-11-26T19:24:33+00:00"
  2067. },
  2068. {
  2069. "name": "intervention/image",
  2070. "version": "2.7.2",
  2071. "source": {
  2072. "type": "git",
  2073. "url": "https://github.com/Intervention/image.git",
  2074. "reference": "04be355f8d6734c826045d02a1079ad658322dad"
  2075. },
  2076. "dist": {
  2077. "type": "zip",
  2078. "url": "https://api.github.com/repos/Intervention/image/zipball/04be355f8d6734c826045d02a1079ad658322dad",
  2079. "reference": "04be355f8d6734c826045d02a1079ad658322dad",
  2080. "shasum": "",
  2081. "mirrors": [
  2082. {
  2083. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2084. "preferred": true
  2085. }
  2086. ]
  2087. },
  2088. "require": {
  2089. "ext-fileinfo": "*",
  2090. "guzzlehttp/psr7": "~1.1 || ^2.0",
  2091. "php": ">=5.4.0"
  2092. },
  2093. "require-dev": {
  2094. "mockery/mockery": "~0.9.2",
  2095. "phpunit/phpunit": "^4.8 || ^5.7 || ^7.5.15"
  2096. },
  2097. "suggest": {
  2098. "ext-gd": "to use GD library based image processing.",
  2099. "ext-imagick": "to use Imagick based image processing.",
  2100. "intervention/imagecache": "Caching extension for the Intervention Image library"
  2101. },
  2102. "type": "library",
  2103. "extra": {
  2104. "laravel": {
  2105. "aliases": {
  2106. "Image": "Intervention\\Image\\Facades\\Image"
  2107. },
  2108. "providers": [
  2109. "Intervention\\Image\\ImageServiceProvider"
  2110. ]
  2111. },
  2112. "branch-alias": {
  2113. "dev-master": "2.4-dev"
  2114. }
  2115. },
  2116. "autoload": {
  2117. "psr-4": {
  2118. "Intervention\\Image\\": "src/Intervention/Image"
  2119. }
  2120. },
  2121. "notification-url": "https://packagist.org/downloads/",
  2122. "license": [
  2123. "MIT"
  2124. ],
  2125. "authors": [
  2126. {
  2127. "name": "Oliver Vogel",
  2128. "email": "oliver@intervention.io",
  2129. "homepage": "https://intervention.io/"
  2130. }
  2131. ],
  2132. "description": "Image handling and manipulation library with support for Laravel integration",
  2133. "homepage": "http://image.intervention.io/",
  2134. "keywords": [
  2135. "gd",
  2136. "image",
  2137. "imagick",
  2138. "laravel",
  2139. "thumbnail",
  2140. "watermark"
  2141. ],
  2142. "support": {
  2143. "issues": "https://github.com/Intervention/image/issues",
  2144. "source": "https://github.com/Intervention/image/tree/2.7.2"
  2145. },
  2146. "funding": [
  2147. {
  2148. "url": "https://paypal.me/interventionio",
  2149. "type": "custom"
  2150. },
  2151. {
  2152. "url": "https://github.com/Intervention",
  2153. "type": "github"
  2154. }
  2155. ],
  2156. "time": "2022-05-21T17:30:32+00:00"
  2157. },
  2158. {
  2159. "name": "ixudra/curl",
  2160. "version": "6.22.1",
  2161. "source": {
  2162. "type": "git",
  2163. "url": "https://github.com/ixudra/curl.git",
  2164. "reference": "0b2cc89ed5eb91d617295e7e745f3acd3ab47180"
  2165. },
  2166. "dist": {
  2167. "type": "zip",
  2168. "url": "https://api.github.com/repos/ixudra/curl/zipball/0b2cc89ed5eb91d617295e7e745f3acd3ab47180",
  2169. "reference": "0b2cc89ed5eb91d617295e7e745f3acd3ab47180",
  2170. "shasum": "",
  2171. "mirrors": [
  2172. {
  2173. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2174. "preferred": true
  2175. }
  2176. ]
  2177. },
  2178. "require": {
  2179. "ext-curl": "*",
  2180. "illuminate/support": ">=4.0",
  2181. "php": ">=5.4.0"
  2182. },
  2183. "type": "library",
  2184. "extra": {
  2185. "laravel": {
  2186. "providers": [
  2187. "Ixudra\\Curl\\CurlServiceProvider"
  2188. ],
  2189. "aliases": {
  2190. "Curl": "Ixudra\\Curl\\Facades\\Curl"
  2191. }
  2192. }
  2193. },
  2194. "autoload": {
  2195. "psr-4": {
  2196. "Ixudra\\Curl\\": "src/"
  2197. }
  2198. },
  2199. "notification-url": "https://packagist.org/downloads/",
  2200. "license": [
  2201. "MIT"
  2202. ],
  2203. "authors": [
  2204. {
  2205. "name": "Jan Oris",
  2206. "email": "jan.oris@ixudra.be"
  2207. }
  2208. ],
  2209. "description": "Custom PHP Curl library for the Laravel framework - developed by Ixudra",
  2210. "homepage": "http://ixudra.be",
  2211. "keywords": [
  2212. "Ixudra",
  2213. "curl",
  2214. "laravel"
  2215. ],
  2216. "support": {
  2217. "issues": "https://github.com/ixudra/curl/issues",
  2218. "source": "https://github.com/ixudra/curl/tree/6.22.1"
  2219. },
  2220. "time": "2022-07-31T09:58:52+00:00"
  2221. },
  2222. {
  2223. "name": "laravel/framework",
  2224. "version": "v8.83.29",
  2225. "source": {
  2226. "type": "git",
  2227. "url": "https://github.com/laravel/framework.git",
  2228. "reference": "d841a226a50c715431952a10260ba4fac9e91cc4"
  2229. },
  2230. "dist": {
  2231. "type": "zip",
  2232. "url": "https://api.github.com/repos/laravel/framework/zipball/d841a226a50c715431952a10260ba4fac9e91cc4",
  2233. "reference": "d841a226a50c715431952a10260ba4fac9e91cc4",
  2234. "shasum": "",
  2235. "mirrors": [
  2236. {
  2237. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2238. "preferred": true
  2239. }
  2240. ]
  2241. },
  2242. "require": {
  2243. "doctrine/inflector": "^1.4|^2.0",
  2244. "dragonmantank/cron-expression": "^3.0.2",
  2245. "egulias/email-validator": "^2.1.10",
  2246. "ext-json": "*",
  2247. "ext-mbstring": "*",
  2248. "ext-openssl": "*",
  2249. "laravel/serializable-closure": "^1.0",
  2250. "league/commonmark": "^1.3|^2.0.2",
  2251. "league/flysystem": "^1.1",
  2252. "monolog/monolog": "^2.0",
  2253. "nesbot/carbon": "^2.53.1",
  2254. "opis/closure": "^3.6",
  2255. "php": "^7.3|^8.0",
  2256. "psr/container": "^1.0",
  2257. "psr/log": "^1.0|^2.0",
  2258. "psr/simple-cache": "^1.0",
  2259. "ramsey/uuid": "^4.2.2",
  2260. "swiftmailer/swiftmailer": "^6.3",
  2261. "symfony/console": "^5.4",
  2262. "symfony/error-handler": "^5.4",
  2263. "symfony/finder": "^5.4",
  2264. "symfony/http-foundation": "^5.4",
  2265. "symfony/http-kernel": "^5.4",
  2266. "symfony/mime": "^5.4",
  2267. "symfony/process": "^5.4",
  2268. "symfony/routing": "^5.4",
  2269. "symfony/var-dumper": "^5.4",
  2270. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  2271. "vlucas/phpdotenv": "^5.4.1",
  2272. "voku/portable-ascii": "^1.6.1"
  2273. },
  2274. "conflict": {
  2275. "tightenco/collect": "<5.5.33"
  2276. },
  2277. "provide": {
  2278. "psr/container-implementation": "1.0",
  2279. "psr/simple-cache-implementation": "1.0"
  2280. },
  2281. "replace": {
  2282. "illuminate/auth": "self.version",
  2283. "illuminate/broadcasting": "self.version",
  2284. "illuminate/bus": "self.version",
  2285. "illuminate/cache": "self.version",
  2286. "illuminate/collections": "self.version",
  2287. "illuminate/config": "self.version",
  2288. "illuminate/console": "self.version",
  2289. "illuminate/container": "self.version",
  2290. "illuminate/contracts": "self.version",
  2291. "illuminate/cookie": "self.version",
  2292. "illuminate/database": "self.version",
  2293. "illuminate/encryption": "self.version",
  2294. "illuminate/events": "self.version",
  2295. "illuminate/filesystem": "self.version",
  2296. "illuminate/hashing": "self.version",
  2297. "illuminate/http": "self.version",
  2298. "illuminate/log": "self.version",
  2299. "illuminate/macroable": "self.version",
  2300. "illuminate/mail": "self.version",
  2301. "illuminate/notifications": "self.version",
  2302. "illuminate/pagination": "self.version",
  2303. "illuminate/pipeline": "self.version",
  2304. "illuminate/queue": "self.version",
  2305. "illuminate/redis": "self.version",
  2306. "illuminate/routing": "self.version",
  2307. "illuminate/session": "self.version",
  2308. "illuminate/support": "self.version",
  2309. "illuminate/testing": "self.version",
  2310. "illuminate/translation": "self.version",
  2311. "illuminate/validation": "self.version",
  2312. "illuminate/view": "self.version"
  2313. },
  2314. "require-dev": {
  2315. "aws/aws-sdk-php": "^3.198.1",
  2316. "doctrine/dbal": "^2.13.3|^3.1.4",
  2317. "filp/whoops": "^2.14.3",
  2318. "guzzlehttp/guzzle": "^6.5.5|^7.0.1",
  2319. "league/flysystem-cached-adapter": "^1.0",
  2320. "mockery/mockery": "^1.4.4",
  2321. "orchestra/testbench-core": "^6.27",
  2322. "pda/pheanstalk": "^4.0",
  2323. "phpunit/phpunit": "^8.5.19|^9.5.8",
  2324. "predis/predis": "^1.1.9",
  2325. "symfony/cache": "^5.4"
  2326. },
  2327. "suggest": {
  2328. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  2329. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.198.1).",
  2330. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  2331. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
  2332. "ext-bcmath": "Required to use the multiple_of validation rule.",
  2333. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2334. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  2335. "ext-memcached": "Required to use the memcache cache driver.",
  2336. "ext-pcntl": "Required to use all features of the queue worker.",
  2337. "ext-posix": "Required to use all features of the queue worker.",
  2338. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  2339. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2340. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  2341. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.5.5|^7.0.1).",
  2342. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  2343. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  2344. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  2345. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  2346. "mockery/mockery": "Required to use mocking (^1.4.4).",
  2347. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  2348. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  2349. "phpunit/phpunit": "Required to use assertions and run tests (^8.5.19|^9.5.8).",
  2350. "predis/predis": "Required to use the predis connector (^1.1.9).",
  2351. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  2352. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0|^5.0|^6.0|^7.0).",
  2353. "symfony/cache": "Required to PSR-6 cache bridge (^5.4).",
  2354. "symfony/filesystem": "Required to enable support for relative symbolic links (^5.4).",
  2355. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  2356. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  2357. },
  2358. "type": "library",
  2359. "extra": {
  2360. "branch-alias": {
  2361. "dev-master": "8.x-dev"
  2362. }
  2363. },
  2364. "autoload": {
  2365. "files": [
  2366. "src/Illuminate/Collections/helpers.php",
  2367. "src/Illuminate/Events/functions.php",
  2368. "src/Illuminate/Foundation/helpers.php",
  2369. "src/Illuminate/Support/helpers.php"
  2370. ],
  2371. "psr-4": {
  2372. "Illuminate\\": "src/Illuminate/",
  2373. "Illuminate\\Support\\": [
  2374. "src/Illuminate/Macroable/",
  2375. "src/Illuminate/Collections/"
  2376. ]
  2377. }
  2378. },
  2379. "notification-url": "https://packagist.org/downloads/",
  2380. "license": [
  2381. "MIT"
  2382. ],
  2383. "authors": [
  2384. {
  2385. "name": "Taylor Otwell",
  2386. "email": "taylor@laravel.com"
  2387. }
  2388. ],
  2389. "description": "The Laravel Framework.",
  2390. "homepage": "https://laravel.com",
  2391. "keywords": [
  2392. "framework",
  2393. "laravel"
  2394. ],
  2395. "support": {
  2396. "issues": "https://github.com/laravel/framework/issues",
  2397. "source": "https://github.com/laravel/framework"
  2398. },
  2399. "time": "2024-11-20T15:55:41+00:00"
  2400. },
  2401. {
  2402. "name": "laravel/sanctum",
  2403. "version": "v2.15.1",
  2404. "source": {
  2405. "type": "git",
  2406. "url": "https://github.com/laravel/sanctum.git",
  2407. "reference": "31fbe6f85aee080c4dc2f9b03dc6dd5d0ee72473"
  2408. },
  2409. "dist": {
  2410. "type": "zip",
  2411. "url": "https://api.github.com/repos/laravel/sanctum/zipball/31fbe6f85aee080c4dc2f9b03dc6dd5d0ee72473",
  2412. "reference": "31fbe6f85aee080c4dc2f9b03dc6dd5d0ee72473",
  2413. "shasum": "",
  2414. "mirrors": [
  2415. {
  2416. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2417. "preferred": true
  2418. }
  2419. ]
  2420. },
  2421. "require": {
  2422. "ext-json": "*",
  2423. "illuminate/console": "^6.9|^7.0|^8.0|^9.0",
  2424. "illuminate/contracts": "^6.9|^7.0|^8.0|^9.0",
  2425. "illuminate/database": "^6.9|^7.0|^8.0|^9.0",
  2426. "illuminate/support": "^6.9|^7.0|^8.0|^9.0",
  2427. "php": "^7.2|^8.0"
  2428. },
  2429. "require-dev": {
  2430. "mockery/mockery": "^1.0",
  2431. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0",
  2432. "phpunit/phpunit": "^8.0|^9.3"
  2433. },
  2434. "type": "library",
  2435. "extra": {
  2436. "laravel": {
  2437. "providers": [
  2438. "Laravel\\Sanctum\\SanctumServiceProvider"
  2439. ]
  2440. },
  2441. "branch-alias": {
  2442. "dev-master": "2.x-dev"
  2443. }
  2444. },
  2445. "autoload": {
  2446. "psr-4": {
  2447. "Laravel\\Sanctum\\": "src/"
  2448. }
  2449. },
  2450. "notification-url": "https://packagist.org/downloads/",
  2451. "license": [
  2452. "MIT"
  2453. ],
  2454. "authors": [
  2455. {
  2456. "name": "Taylor Otwell",
  2457. "email": "taylor@laravel.com"
  2458. }
  2459. ],
  2460. "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.",
  2461. "keywords": [
  2462. "auth",
  2463. "laravel",
  2464. "sanctum"
  2465. ],
  2466. "support": {
  2467. "issues": "https://github.com/laravel/sanctum/issues",
  2468. "source": "https://github.com/laravel/sanctum"
  2469. },
  2470. "time": "2022-04-08T13:39:49+00:00"
  2471. },
  2472. {
  2473. "name": "laravel/serializable-closure",
  2474. "version": "v1.3.7",
  2475. "source": {
  2476. "type": "git",
  2477. "url": "https://github.com/laravel/serializable-closure.git",
  2478. "reference": "4f48ade902b94323ca3be7646db16209ec76be3d"
  2479. },
  2480. "dist": {
  2481. "type": "zip",
  2482. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/4f48ade902b94323ca3be7646db16209ec76be3d",
  2483. "reference": "4f48ade902b94323ca3be7646db16209ec76be3d",
  2484. "shasum": "",
  2485. "mirrors": [
  2486. {
  2487. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2488. "preferred": true
  2489. }
  2490. ]
  2491. },
  2492. "require": {
  2493. "php": "^7.3|^8.0"
  2494. },
  2495. "require-dev": {
  2496. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  2497. "nesbot/carbon": "^2.61|^3.0",
  2498. "pestphp/pest": "^1.21.3",
  2499. "phpstan/phpstan": "^1.8.2",
  2500. "symfony/var-dumper": "^5.4.11|^6.2.0|^7.0.0"
  2501. },
  2502. "type": "library",
  2503. "extra": {
  2504. "branch-alias": {
  2505. "dev-master": "1.x-dev"
  2506. }
  2507. },
  2508. "autoload": {
  2509. "psr-4": {
  2510. "Laravel\\SerializableClosure\\": "src/"
  2511. }
  2512. },
  2513. "notification-url": "https://packagist.org/downloads/",
  2514. "license": [
  2515. "MIT"
  2516. ],
  2517. "authors": [
  2518. {
  2519. "name": "Taylor Otwell",
  2520. "email": "taylor@laravel.com"
  2521. },
  2522. {
  2523. "name": "Nuno Maduro",
  2524. "email": "nuno@laravel.com"
  2525. }
  2526. ],
  2527. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  2528. "keywords": [
  2529. "closure",
  2530. "laravel",
  2531. "serializable"
  2532. ],
  2533. "support": {
  2534. "issues": "https://github.com/laravel/serializable-closure/issues",
  2535. "source": "https://github.com/laravel/serializable-closure"
  2536. },
  2537. "time": "2024-11-14T18:34:49+00:00"
  2538. },
  2539. {
  2540. "name": "laravel/tinker",
  2541. "version": "v2.10.0",
  2542. "source": {
  2543. "type": "git",
  2544. "url": "https://github.com/laravel/tinker.git",
  2545. "reference": "ba4d51eb56de7711b3a37d63aa0643e99a339ae5"
  2546. },
  2547. "dist": {
  2548. "type": "zip",
  2549. "url": "https://api.github.com/repos/laravel/tinker/zipball/ba4d51eb56de7711b3a37d63aa0643e99a339ae5",
  2550. "reference": "ba4d51eb56de7711b3a37d63aa0643e99a339ae5",
  2551. "shasum": "",
  2552. "mirrors": [
  2553. {
  2554. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2555. "preferred": true
  2556. }
  2557. ]
  2558. },
  2559. "require": {
  2560. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2561. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2562. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2563. "php": "^7.2.5|^8.0",
  2564. "psy/psysh": "^0.11.1|^0.12.0",
  2565. "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0"
  2566. },
  2567. "require-dev": {
  2568. "mockery/mockery": "~1.3.3|^1.4.2",
  2569. "phpstan/phpstan": "^1.10",
  2570. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2571. },
  2572. "suggest": {
  2573. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0)."
  2574. },
  2575. "type": "library",
  2576. "extra": {
  2577. "laravel": {
  2578. "providers": [
  2579. "Laravel\\Tinker\\TinkerServiceProvider"
  2580. ]
  2581. }
  2582. },
  2583. "autoload": {
  2584. "psr-4": {
  2585. "Laravel\\Tinker\\": "src/"
  2586. }
  2587. },
  2588. "notification-url": "https://packagist.org/downloads/",
  2589. "license": [
  2590. "MIT"
  2591. ],
  2592. "authors": [
  2593. {
  2594. "name": "Taylor Otwell",
  2595. "email": "taylor@laravel.com"
  2596. }
  2597. ],
  2598. "description": "Powerful REPL for the Laravel framework.",
  2599. "keywords": [
  2600. "REPL",
  2601. "Tinker",
  2602. "laravel",
  2603. "psysh"
  2604. ],
  2605. "support": {
  2606. "issues": "https://github.com/laravel/tinker/issues",
  2607. "source": "https://github.com/laravel/tinker/tree/v2.10.0"
  2608. },
  2609. "time": "2024-09-23T13:32:56+00:00"
  2610. },
  2611. {
  2612. "name": "league/commonmark",
  2613. "version": "2.6.0",
  2614. "source": {
  2615. "type": "git",
  2616. "url": "https://github.com/thephpleague/commonmark.git",
  2617. "reference": "d150f911e0079e90ae3c106734c93137c184f932"
  2618. },
  2619. "dist": {
  2620. "type": "zip",
  2621. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/d150f911e0079e90ae3c106734c93137c184f932",
  2622. "reference": "d150f911e0079e90ae3c106734c93137c184f932",
  2623. "shasum": "",
  2624. "mirrors": [
  2625. {
  2626. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2627. "preferred": true
  2628. }
  2629. ]
  2630. },
  2631. "require": {
  2632. "ext-mbstring": "*",
  2633. "league/config": "^1.1.1",
  2634. "php": "^7.4 || ^8.0",
  2635. "psr/event-dispatcher": "^1.0",
  2636. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  2637. "symfony/polyfill-php80": "^1.16"
  2638. },
  2639. "require-dev": {
  2640. "cebe/markdown": "^1.0",
  2641. "commonmark/cmark": "0.31.1",
  2642. "commonmark/commonmark.js": "0.31.1",
  2643. "composer/package-versions-deprecated": "^1.8",
  2644. "embed/embed": "^4.4",
  2645. "erusev/parsedown": "^1.0",
  2646. "ext-json": "*",
  2647. "github/gfm": "0.29.0",
  2648. "michelf/php-markdown": "^1.4 || ^2.0",
  2649. "nyholm/psr7": "^1.5",
  2650. "phpstan/phpstan": "^1.8.2",
  2651. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  2652. "scrutinizer/ocular": "^1.8.1",
  2653. "symfony/finder": "^5.3 | ^6.0 | ^7.0",
  2654. "symfony/process": "^5.4 | ^6.0 | ^7.0",
  2655. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 | ^7.0",
  2656. "unleashedtech/php-coding-standard": "^3.1.1",
  2657. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  2658. },
  2659. "suggest": {
  2660. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  2661. },
  2662. "type": "library",
  2663. "extra": {
  2664. "branch-alias": {
  2665. "dev-main": "2.7-dev"
  2666. }
  2667. },
  2668. "autoload": {
  2669. "psr-4": {
  2670. "League\\CommonMark\\": "src"
  2671. }
  2672. },
  2673. "notification-url": "https://packagist.org/downloads/",
  2674. "license": [
  2675. "BSD-3-Clause"
  2676. ],
  2677. "authors": [
  2678. {
  2679. "name": "Colin O'Dell",
  2680. "email": "colinodell@gmail.com",
  2681. "homepage": "https://www.colinodell.com",
  2682. "role": "Lead Developer"
  2683. }
  2684. ],
  2685. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  2686. "homepage": "https://commonmark.thephpleague.com",
  2687. "keywords": [
  2688. "commonmark",
  2689. "flavored",
  2690. "gfm",
  2691. "github",
  2692. "github-flavored",
  2693. "markdown",
  2694. "md",
  2695. "parser"
  2696. ],
  2697. "support": {
  2698. "docs": "https://commonmark.thephpleague.com/",
  2699. "forum": "https://github.com/thephpleague/commonmark/discussions",
  2700. "issues": "https://github.com/thephpleague/commonmark/issues",
  2701. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2702. "source": "https://github.com/thephpleague/commonmark"
  2703. },
  2704. "funding": [
  2705. {
  2706. "url": "https://www.colinodell.com/sponsor",
  2707. "type": "custom"
  2708. },
  2709. {
  2710. "url": "https://www.paypal.me/colinpodell/10.00",
  2711. "type": "custom"
  2712. },
  2713. {
  2714. "url": "https://github.com/colinodell",
  2715. "type": "github"
  2716. },
  2717. {
  2718. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2719. "type": "tidelift"
  2720. }
  2721. ],
  2722. "time": "2024-12-07T15:34:16+00:00"
  2723. },
  2724. {
  2725. "name": "league/config",
  2726. "version": "v1.2.0",
  2727. "source": {
  2728. "type": "git",
  2729. "url": "https://github.com/thephpleague/config.git",
  2730. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  2731. },
  2732. "dist": {
  2733. "type": "zip",
  2734. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2735. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  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. "dflydev/dot-access-data": "^3.0.1",
  2746. "nette/schema": "^1.2",
  2747. "php": "^7.4 || ^8.0"
  2748. },
  2749. "require-dev": {
  2750. "phpstan/phpstan": "^1.8.2",
  2751. "phpunit/phpunit": "^9.5.5",
  2752. "scrutinizer/ocular": "^1.8.1",
  2753. "unleashedtech/php-coding-standard": "^3.1",
  2754. "vimeo/psalm": "^4.7.3"
  2755. },
  2756. "type": "library",
  2757. "extra": {
  2758. "branch-alias": {
  2759. "dev-main": "1.2-dev"
  2760. }
  2761. },
  2762. "autoload": {
  2763. "psr-4": {
  2764. "League\\Config\\": "src"
  2765. }
  2766. },
  2767. "notification-url": "https://packagist.org/downloads/",
  2768. "license": [
  2769. "BSD-3-Clause"
  2770. ],
  2771. "authors": [
  2772. {
  2773. "name": "Colin O'Dell",
  2774. "email": "colinodell@gmail.com",
  2775. "homepage": "https://www.colinodell.com",
  2776. "role": "Lead Developer"
  2777. }
  2778. ],
  2779. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  2780. "homepage": "https://config.thephpleague.com",
  2781. "keywords": [
  2782. "array",
  2783. "config",
  2784. "configuration",
  2785. "dot",
  2786. "dot-access",
  2787. "nested",
  2788. "schema"
  2789. ],
  2790. "support": {
  2791. "docs": "https://config.thephpleague.com/",
  2792. "issues": "https://github.com/thephpleague/config/issues",
  2793. "rss": "https://github.com/thephpleague/config/releases.atom",
  2794. "source": "https://github.com/thephpleague/config"
  2795. },
  2796. "funding": [
  2797. {
  2798. "url": "https://www.colinodell.com/sponsor",
  2799. "type": "custom"
  2800. },
  2801. {
  2802. "url": "https://www.paypal.me/colinpodell/10.00",
  2803. "type": "custom"
  2804. },
  2805. {
  2806. "url": "https://github.com/colinodell",
  2807. "type": "github"
  2808. }
  2809. ],
  2810. "time": "2022-12-11T20:36:23+00:00"
  2811. },
  2812. {
  2813. "name": "league/flysystem",
  2814. "version": "1.1.10",
  2815. "source": {
  2816. "type": "git",
  2817. "url": "https://github.com/thephpleague/flysystem.git",
  2818. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1"
  2819. },
  2820. "dist": {
  2821. "type": "zip",
  2822. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/3239285c825c152bcc315fe0e87d6b55f5972ed1",
  2823. "reference": "3239285c825c152bcc315fe0e87d6b55f5972ed1",
  2824. "shasum": "",
  2825. "mirrors": [
  2826. {
  2827. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2828. "preferred": true
  2829. }
  2830. ]
  2831. },
  2832. "require": {
  2833. "ext-fileinfo": "*",
  2834. "league/mime-type-detection": "^1.3",
  2835. "php": "^7.2.5 || ^8.0"
  2836. },
  2837. "conflict": {
  2838. "league/flysystem-sftp": "<1.0.6"
  2839. },
  2840. "require-dev": {
  2841. "phpspec/prophecy": "^1.11.1",
  2842. "phpunit/phpunit": "^8.5.8"
  2843. },
  2844. "suggest": {
  2845. "ext-ftp": "Allows you to use FTP server storage",
  2846. "ext-openssl": "Allows you to use FTPS server storage",
  2847. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2848. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2849. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2850. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2851. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2852. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2853. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2854. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2855. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2856. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2857. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2858. },
  2859. "type": "library",
  2860. "extra": {
  2861. "branch-alias": {
  2862. "dev-master": "1.1-dev"
  2863. }
  2864. },
  2865. "autoload": {
  2866. "psr-4": {
  2867. "League\\Flysystem\\": "src/"
  2868. }
  2869. },
  2870. "notification-url": "https://packagist.org/downloads/",
  2871. "license": [
  2872. "MIT"
  2873. ],
  2874. "authors": [
  2875. {
  2876. "name": "Frank de Jonge",
  2877. "email": "info@frenky.net"
  2878. }
  2879. ],
  2880. "description": "Filesystem abstraction: Many filesystems, one API.",
  2881. "keywords": [
  2882. "Cloud Files",
  2883. "WebDAV",
  2884. "abstraction",
  2885. "aws",
  2886. "cloud",
  2887. "copy.com",
  2888. "dropbox",
  2889. "file systems",
  2890. "files",
  2891. "filesystem",
  2892. "filesystems",
  2893. "ftp",
  2894. "rackspace",
  2895. "remote",
  2896. "s3",
  2897. "sftp",
  2898. "storage"
  2899. ],
  2900. "support": {
  2901. "issues": "https://github.com/thephpleague/flysystem/issues",
  2902. "source": "https://github.com/thephpleague/flysystem/tree/1.1.10"
  2903. },
  2904. "funding": [
  2905. {
  2906. "url": "https://offset.earth/frankdejonge",
  2907. "type": "other"
  2908. }
  2909. ],
  2910. "time": "2022-10-04T09:16:37+00:00"
  2911. },
  2912. {
  2913. "name": "league/mime-type-detection",
  2914. "version": "1.15.0",
  2915. "source": {
  2916. "type": "git",
  2917. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2918. "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301"
  2919. },
  2920. "dist": {
  2921. "type": "zip",
  2922. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301",
  2923. "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301",
  2924. "shasum": "",
  2925. "mirrors": [
  2926. {
  2927. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2928. "preferred": true
  2929. }
  2930. ]
  2931. },
  2932. "require": {
  2933. "ext-fileinfo": "*",
  2934. "php": "^7.4 || ^8.0"
  2935. },
  2936. "require-dev": {
  2937. "friendsofphp/php-cs-fixer": "^3.2",
  2938. "phpstan/phpstan": "^0.12.68",
  2939. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  2940. },
  2941. "type": "library",
  2942. "autoload": {
  2943. "psr-4": {
  2944. "League\\MimeTypeDetection\\": "src"
  2945. }
  2946. },
  2947. "notification-url": "https://packagist.org/downloads/",
  2948. "license": [
  2949. "MIT"
  2950. ],
  2951. "authors": [
  2952. {
  2953. "name": "Frank de Jonge",
  2954. "email": "info@frankdejonge.nl"
  2955. }
  2956. ],
  2957. "description": "Mime-type detection for Flysystem",
  2958. "support": {
  2959. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2960. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.15.0"
  2961. },
  2962. "funding": [
  2963. {
  2964. "url": "https://github.com/frankdejonge",
  2965. "type": "github"
  2966. },
  2967. {
  2968. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2969. "type": "tidelift"
  2970. }
  2971. ],
  2972. "time": "2024-01-28T23:22:08+00:00"
  2973. },
  2974. {
  2975. "name": "maennchen/zipstream-php",
  2976. "version": "2.4.0",
  2977. "source": {
  2978. "type": "git",
  2979. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  2980. "reference": "3fa72e4c71a43f9e9118752a5c90e476a8dc9eb3"
  2981. },
  2982. "dist": {
  2983. "type": "zip",
  2984. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/3fa72e4c71a43f9e9118752a5c90e476a8dc9eb3",
  2985. "reference": "3fa72e4c71a43f9e9118752a5c90e476a8dc9eb3",
  2986. "shasum": "",
  2987. "mirrors": [
  2988. {
  2989. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2990. "preferred": true
  2991. }
  2992. ]
  2993. },
  2994. "require": {
  2995. "ext-mbstring": "*",
  2996. "myclabs/php-enum": "^1.5",
  2997. "php": "^8.0",
  2998. "psr/http-message": "^1.0"
  2999. },
  3000. "require-dev": {
  3001. "ext-zip": "*",
  3002. "friendsofphp/php-cs-fixer": "^3.9",
  3003. "guzzlehttp/guzzle": "^6.5.3 || ^7.2.0",
  3004. "mikey179/vfsstream": "^1.6",
  3005. "php-coveralls/php-coveralls": "^2.4",
  3006. "phpunit/phpunit": "^8.5.8 || ^9.4.2",
  3007. "vimeo/psalm": "^5.0"
  3008. },
  3009. "type": "library",
  3010. "autoload": {
  3011. "psr-4": {
  3012. "ZipStream\\": "src/"
  3013. }
  3014. },
  3015. "notification-url": "https://packagist.org/downloads/",
  3016. "license": [
  3017. "MIT"
  3018. ],
  3019. "authors": [
  3020. {
  3021. "name": "Paul Duncan",
  3022. "email": "pabs@pablotron.org"
  3023. },
  3024. {
  3025. "name": "Jonatan Männchen",
  3026. "email": "jonatan@maennchen.ch"
  3027. },
  3028. {
  3029. "name": "Jesse Donat",
  3030. "email": "donatj@gmail.com"
  3031. },
  3032. {
  3033. "name": "András Kolesár",
  3034. "email": "kolesar@kolesar.hu"
  3035. }
  3036. ],
  3037. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  3038. "keywords": [
  3039. "stream",
  3040. "zip"
  3041. ],
  3042. "support": {
  3043. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  3044. "source": "https://github.com/maennchen/ZipStream-PHP/tree/2.4.0"
  3045. },
  3046. "funding": [
  3047. {
  3048. "url": "https://github.com/maennchen",
  3049. "type": "github"
  3050. },
  3051. {
  3052. "url": "https://opencollective.com/zipstream",
  3053. "type": "open_collective"
  3054. }
  3055. ],
  3056. "time": "2022-12-08T12:29:14+00:00"
  3057. },
  3058. {
  3059. "name": "markbaker/complex",
  3060. "version": "3.0.2",
  3061. "source": {
  3062. "type": "git",
  3063. "url": "https://github.com/MarkBaker/PHPComplex.git",
  3064. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9"
  3065. },
  3066. "dist": {
  3067. "type": "zip",
  3068. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  3069. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  3070. "shasum": "",
  3071. "mirrors": [
  3072. {
  3073. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3074. "preferred": true
  3075. }
  3076. ]
  3077. },
  3078. "require": {
  3079. "php": "^7.2 || ^8.0"
  3080. },
  3081. "require-dev": {
  3082. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  3083. "phpcompatibility/php-compatibility": "^9.3",
  3084. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  3085. "squizlabs/php_codesniffer": "^3.7"
  3086. },
  3087. "type": "library",
  3088. "autoload": {
  3089. "psr-4": {
  3090. "Complex\\": "classes/src/"
  3091. }
  3092. },
  3093. "notification-url": "https://packagist.org/downloads/",
  3094. "license": [
  3095. "MIT"
  3096. ],
  3097. "authors": [
  3098. {
  3099. "name": "Mark Baker",
  3100. "email": "mark@lange.demon.co.uk"
  3101. }
  3102. ],
  3103. "description": "PHP Class for working with complex numbers",
  3104. "homepage": "https://github.com/MarkBaker/PHPComplex",
  3105. "keywords": [
  3106. "complex",
  3107. "mathematics"
  3108. ],
  3109. "support": {
  3110. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  3111. "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.2"
  3112. },
  3113. "time": "2022-12-06T16:21:08+00:00"
  3114. },
  3115. {
  3116. "name": "markbaker/matrix",
  3117. "version": "3.0.1",
  3118. "source": {
  3119. "type": "git",
  3120. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  3121. "reference": "728434227fe21be27ff6d86621a1b13107a2562c"
  3122. },
  3123. "dist": {
  3124. "type": "zip",
  3125. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/728434227fe21be27ff6d86621a1b13107a2562c",
  3126. "reference": "728434227fe21be27ff6d86621a1b13107a2562c",
  3127. "shasum": "",
  3128. "mirrors": [
  3129. {
  3130. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3131. "preferred": true
  3132. }
  3133. ]
  3134. },
  3135. "require": {
  3136. "php": "^7.1 || ^8.0"
  3137. },
  3138. "require-dev": {
  3139. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  3140. "phpcompatibility/php-compatibility": "^9.3",
  3141. "phpdocumentor/phpdocumentor": "2.*",
  3142. "phploc/phploc": "^4.0",
  3143. "phpmd/phpmd": "2.*",
  3144. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  3145. "sebastian/phpcpd": "^4.0",
  3146. "squizlabs/php_codesniffer": "^3.7"
  3147. },
  3148. "type": "library",
  3149. "autoload": {
  3150. "psr-4": {
  3151. "Matrix\\": "classes/src/"
  3152. }
  3153. },
  3154. "notification-url": "https://packagist.org/downloads/",
  3155. "license": [
  3156. "MIT"
  3157. ],
  3158. "authors": [
  3159. {
  3160. "name": "Mark Baker",
  3161. "email": "mark@demon-angel.eu"
  3162. }
  3163. ],
  3164. "description": "PHP Class for working with matrices",
  3165. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  3166. "keywords": [
  3167. "mathematics",
  3168. "matrix",
  3169. "vector"
  3170. ],
  3171. "support": {
  3172. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  3173. "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.1"
  3174. },
  3175. "time": "2022-12-02T22:17:43+00:00"
  3176. },
  3177. {
  3178. "name": "monolog/monolog",
  3179. "version": "2.10.0",
  3180. "source": {
  3181. "type": "git",
  3182. "url": "https://github.com/Seldaek/monolog.git",
  3183. "reference": "5cf826f2991858b54d5c3809bee745560a1042a7"
  3184. },
  3185. "dist": {
  3186. "type": "zip",
  3187. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/5cf826f2991858b54d5c3809bee745560a1042a7",
  3188. "reference": "5cf826f2991858b54d5c3809bee745560a1042a7",
  3189. "shasum": "",
  3190. "mirrors": [
  3191. {
  3192. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3193. "preferred": true
  3194. }
  3195. ]
  3196. },
  3197. "require": {
  3198. "php": ">=7.2",
  3199. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  3200. },
  3201. "provide": {
  3202. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  3203. },
  3204. "require-dev": {
  3205. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  3206. "doctrine/couchdb": "~1.0@dev",
  3207. "elasticsearch/elasticsearch": "^7 || ^8",
  3208. "ext-json": "*",
  3209. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  3210. "guzzlehttp/guzzle": "^7.4",
  3211. "guzzlehttp/psr7": "^2.2",
  3212. "mongodb/mongodb": "^1.8",
  3213. "php-amqplib/php-amqplib": "~2.4 || ^3",
  3214. "phpspec/prophecy": "^1.15",
  3215. "phpstan/phpstan": "^1.10",
  3216. "phpunit/phpunit": "^8.5.38 || ^9.6.19",
  3217. "predis/predis": "^1.1 || ^2.0",
  3218. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  3219. "ruflin/elastica": "^7",
  3220. "swiftmailer/swiftmailer": "^5.3|^6.0",
  3221. "symfony/mailer": "^5.4 || ^6",
  3222. "symfony/mime": "^5.4 || ^6"
  3223. },
  3224. "suggest": {
  3225. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  3226. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  3227. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  3228. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  3229. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  3230. "ext-mbstring": "Allow to work properly with unicode symbols",
  3231. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  3232. "ext-openssl": "Required to send log messages using SSL",
  3233. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  3234. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  3235. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  3236. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  3237. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  3238. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  3239. },
  3240. "type": "library",
  3241. "extra": {
  3242. "branch-alias": {
  3243. "dev-main": "2.x-dev"
  3244. }
  3245. },
  3246. "autoload": {
  3247. "psr-4": {
  3248. "Monolog\\": "src/Monolog"
  3249. }
  3250. },
  3251. "notification-url": "https://packagist.org/downloads/",
  3252. "license": [
  3253. "MIT"
  3254. ],
  3255. "authors": [
  3256. {
  3257. "name": "Jordi Boggiano",
  3258. "email": "j.boggiano@seld.be",
  3259. "homepage": "https://seld.be"
  3260. }
  3261. ],
  3262. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  3263. "homepage": "https://github.com/Seldaek/monolog",
  3264. "keywords": [
  3265. "log",
  3266. "logging",
  3267. "psr-3"
  3268. ],
  3269. "support": {
  3270. "issues": "https://github.com/Seldaek/monolog/issues",
  3271. "source": "https://github.com/Seldaek/monolog/tree/2.10.0"
  3272. },
  3273. "funding": [
  3274. {
  3275. "url": "https://github.com/Seldaek",
  3276. "type": "github"
  3277. },
  3278. {
  3279. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  3280. "type": "tidelift"
  3281. }
  3282. ],
  3283. "time": "2024-11-12T12:43:37+00:00"
  3284. },
  3285. {
  3286. "name": "myclabs/php-enum",
  3287. "version": "1.8.4",
  3288. "source": {
  3289. "type": "git",
  3290. "url": "https://github.com/myclabs/php-enum.git",
  3291. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483"
  3292. },
  3293. "dist": {
  3294. "type": "zip",
  3295. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/a867478eae49c9f59ece437ae7f9506bfaa27483",
  3296. "reference": "a867478eae49c9f59ece437ae7f9506bfaa27483",
  3297. "shasum": "",
  3298. "mirrors": [
  3299. {
  3300. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3301. "preferred": true
  3302. }
  3303. ]
  3304. },
  3305. "require": {
  3306. "ext-json": "*",
  3307. "php": "^7.3 || ^8.0"
  3308. },
  3309. "require-dev": {
  3310. "phpunit/phpunit": "^9.5",
  3311. "squizlabs/php_codesniffer": "1.*",
  3312. "vimeo/psalm": "^4.6.2"
  3313. },
  3314. "type": "library",
  3315. "autoload": {
  3316. "psr-4": {
  3317. "MyCLabs\\Enum\\": "src/"
  3318. },
  3319. "classmap": [
  3320. "stubs/Stringable.php"
  3321. ]
  3322. },
  3323. "notification-url": "https://packagist.org/downloads/",
  3324. "license": [
  3325. "MIT"
  3326. ],
  3327. "authors": [
  3328. {
  3329. "name": "PHP Enum contributors",
  3330. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  3331. }
  3332. ],
  3333. "description": "PHP Enum implementation",
  3334. "homepage": "http://github.com/myclabs/php-enum",
  3335. "keywords": [
  3336. "enum"
  3337. ],
  3338. "support": {
  3339. "issues": "https://github.com/myclabs/php-enum/issues",
  3340. "source": "https://github.com/myclabs/php-enum/tree/1.8.4"
  3341. },
  3342. "funding": [
  3343. {
  3344. "url": "https://github.com/mnapoli",
  3345. "type": "github"
  3346. },
  3347. {
  3348. "url": "https://tidelift.com/funding/github/packagist/myclabs/php-enum",
  3349. "type": "tidelift"
  3350. }
  3351. ],
  3352. "time": "2022-08-04T09:53:51+00:00"
  3353. },
  3354. {
  3355. "name": "nesbot/carbon",
  3356. "version": "2.73.0",
  3357. "source": {
  3358. "type": "git",
  3359. "url": "https://github.com/CarbonPHP/carbon.git",
  3360. "reference": "9228ce90e1035ff2f0db84b40ec2e023ed802075"
  3361. },
  3362. "dist": {
  3363. "type": "zip",
  3364. "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/9228ce90e1035ff2f0db84b40ec2e023ed802075",
  3365. "reference": "9228ce90e1035ff2f0db84b40ec2e023ed802075",
  3366. "shasum": "",
  3367. "mirrors": [
  3368. {
  3369. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3370. "preferred": true
  3371. }
  3372. ]
  3373. },
  3374. "require": {
  3375. "carbonphp/carbon-doctrine-types": "*",
  3376. "ext-json": "*",
  3377. "php": "^7.1.8 || ^8.0",
  3378. "psr/clock": "^1.0",
  3379. "symfony/polyfill-mbstring": "^1.0",
  3380. "symfony/polyfill-php80": "^1.16",
  3381. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  3382. },
  3383. "provide": {
  3384. "psr/clock-implementation": "1.0"
  3385. },
  3386. "require-dev": {
  3387. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  3388. "doctrine/orm": "^2.7 || ^3.0",
  3389. "friendsofphp/php-cs-fixer": "^3.0",
  3390. "kylekatarnls/multi-tester": "^2.0",
  3391. "ondrejmirtes/better-reflection": "<6",
  3392. "phpmd/phpmd": "^2.9",
  3393. "phpstan/extension-installer": "^1.0",
  3394. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  3395. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  3396. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  3397. "squizlabs/php_codesniffer": "^3.4"
  3398. },
  3399. "bin": [
  3400. "bin/carbon"
  3401. ],
  3402. "type": "library",
  3403. "extra": {
  3404. "laravel": {
  3405. "providers": [
  3406. "Carbon\\Laravel\\ServiceProvider"
  3407. ]
  3408. },
  3409. "phpstan": {
  3410. "includes": [
  3411. "extension.neon"
  3412. ]
  3413. },
  3414. "branch-alias": {
  3415. "dev-2.x": "2.x-dev",
  3416. "dev-master": "3.x-dev"
  3417. }
  3418. },
  3419. "autoload": {
  3420. "psr-4": {
  3421. "Carbon\\": "src/Carbon/"
  3422. }
  3423. },
  3424. "notification-url": "https://packagist.org/downloads/",
  3425. "license": [
  3426. "MIT"
  3427. ],
  3428. "authors": [
  3429. {
  3430. "name": "Brian Nesbitt",
  3431. "email": "brian@nesbot.com",
  3432. "homepage": "https://markido.com"
  3433. },
  3434. {
  3435. "name": "kylekatarnls",
  3436. "homepage": "https://github.com/kylekatarnls"
  3437. }
  3438. ],
  3439. "description": "An API extension for DateTime that supports 281 different languages.",
  3440. "homepage": "https://carbon.nesbot.com",
  3441. "keywords": [
  3442. "date",
  3443. "datetime",
  3444. "time"
  3445. ],
  3446. "support": {
  3447. "docs": "https://carbon.nesbot.com/docs",
  3448. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3449. "source": "https://github.com/briannesbitt/Carbon"
  3450. },
  3451. "funding": [
  3452. {
  3453. "url": "https://github.com/sponsors/kylekatarnls",
  3454. "type": "github"
  3455. },
  3456. {
  3457. "url": "https://opencollective.com/Carbon#sponsor",
  3458. "type": "opencollective"
  3459. },
  3460. {
  3461. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  3462. "type": "tidelift"
  3463. }
  3464. ],
  3465. "time": "2025-01-08T20:10:23+00:00"
  3466. },
  3467. {
  3468. "name": "nette/schema",
  3469. "version": "v1.2.5",
  3470. "source": {
  3471. "type": "git",
  3472. "url": "https://github.com/nette/schema.git",
  3473. "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a"
  3474. },
  3475. "dist": {
  3476. "type": "zip",
  3477. "url": "https://api.github.com/repos/nette/schema/zipball/0462f0166e823aad657c9224d0f849ecac1ba10a",
  3478. "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a",
  3479. "shasum": "",
  3480. "mirrors": [
  3481. {
  3482. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3483. "preferred": true
  3484. }
  3485. ]
  3486. },
  3487. "require": {
  3488. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  3489. "php": "7.1 - 8.3"
  3490. },
  3491. "require-dev": {
  3492. "nette/tester": "^2.3 || ^2.4",
  3493. "phpstan/phpstan-nette": "^1.0",
  3494. "tracy/tracy": "^2.7"
  3495. },
  3496. "type": "library",
  3497. "extra": {
  3498. "branch-alias": {
  3499. "dev-master": "1.2-dev"
  3500. }
  3501. },
  3502. "autoload": {
  3503. "classmap": [
  3504. "src/"
  3505. ]
  3506. },
  3507. "notification-url": "https://packagist.org/downloads/",
  3508. "license": [
  3509. "BSD-3-Clause",
  3510. "GPL-2.0-only",
  3511. "GPL-3.0-only"
  3512. ],
  3513. "authors": [
  3514. {
  3515. "name": "David Grudl",
  3516. "homepage": "https://davidgrudl.com"
  3517. },
  3518. {
  3519. "name": "Nette Community",
  3520. "homepage": "https://nette.org/contributors"
  3521. }
  3522. ],
  3523. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  3524. "homepage": "https://nette.org",
  3525. "keywords": [
  3526. "config",
  3527. "nette"
  3528. ],
  3529. "support": {
  3530. "issues": "https://github.com/nette/schema/issues",
  3531. "source": "https://github.com/nette/schema/tree/v1.2.5"
  3532. },
  3533. "time": "2023-10-05T20:37:59+00:00"
  3534. },
  3535. {
  3536. "name": "nette/utils",
  3537. "version": "v4.0.10",
  3538. "source": {
  3539. "type": "git",
  3540. "url": "https://github.com/nette/utils.git",
  3541. "reference": "2778deb6aab136c8db4ed1f4d6e9f465ca2dbee3"
  3542. },
  3543. "dist": {
  3544. "type": "zip",
  3545. "url": "https://api.github.com/repos/nette/utils/zipball/2778deb6aab136c8db4ed1f4d6e9f465ca2dbee3",
  3546. "reference": "2778deb6aab136c8db4ed1f4d6e9f465ca2dbee3",
  3547. "shasum": "",
  3548. "mirrors": [
  3549. {
  3550. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3551. "preferred": true
  3552. }
  3553. ]
  3554. },
  3555. "require": {
  3556. "php": "8.0 - 8.5"
  3557. },
  3558. "conflict": {
  3559. "nette/finder": "<3",
  3560. "nette/schema": "<1.2.2"
  3561. },
  3562. "require-dev": {
  3563. "jetbrains/phpstorm-attributes": "^1.2",
  3564. "nette/tester": "^2.5",
  3565. "phpstan/phpstan-nette": "^2.0@stable",
  3566. "tracy/tracy": "^2.9"
  3567. },
  3568. "suggest": {
  3569. "ext-gd": "to use Image",
  3570. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  3571. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  3572. "ext-json": "to use Nette\\Utils\\Json",
  3573. "ext-mbstring": "to use Strings::lower() etc...",
  3574. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  3575. },
  3576. "type": "library",
  3577. "extra": {
  3578. "branch-alias": {
  3579. "dev-master": "4.0-dev"
  3580. }
  3581. },
  3582. "autoload": {
  3583. "psr-4": {
  3584. "Nette\\": "src"
  3585. },
  3586. "classmap": [
  3587. "src/"
  3588. ]
  3589. },
  3590. "notification-url": "https://packagist.org/downloads/",
  3591. "license": [
  3592. "BSD-3-Clause",
  3593. "GPL-2.0-only",
  3594. "GPL-3.0-only"
  3595. ],
  3596. "authors": [
  3597. {
  3598. "name": "David Grudl",
  3599. "homepage": "https://davidgrudl.com"
  3600. },
  3601. {
  3602. "name": "Nette Community",
  3603. "homepage": "https://nette.org/contributors"
  3604. }
  3605. ],
  3606. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  3607. "homepage": "https://nette.org",
  3608. "keywords": [
  3609. "array",
  3610. "core",
  3611. "datetime",
  3612. "images",
  3613. "json",
  3614. "nette",
  3615. "paginator",
  3616. "password",
  3617. "slugify",
  3618. "string",
  3619. "unicode",
  3620. "utf-8",
  3621. "utility",
  3622. "validation"
  3623. ],
  3624. "support": {
  3625. "issues": "https://github.com/nette/utils/issues",
  3626. "source": "https://github.com/nette/utils/tree/v4.0.10"
  3627. },
  3628. "time": "2025-12-01T17:30:42+00:00"
  3629. },
  3630. {
  3631. "name": "nikic/php-parser",
  3632. "version": "v5.7.0",
  3633. "source": {
  3634. "type": "git",
  3635. "url": "https://github.com/nikic/PHP-Parser.git",
  3636. "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82"
  3637. },
  3638. "dist": {
  3639. "type": "zip",
  3640. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/dca41cd15c2ac9d055ad70dbfd011130757d1f82",
  3641. "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82",
  3642. "shasum": "",
  3643. "mirrors": [
  3644. {
  3645. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3646. "preferred": true
  3647. }
  3648. ]
  3649. },
  3650. "require": {
  3651. "ext-ctype": "*",
  3652. "ext-json": "*",
  3653. "ext-tokenizer": "*",
  3654. "php": ">=7.4"
  3655. },
  3656. "require-dev": {
  3657. "ircmaxell/php-yacc": "^0.0.7",
  3658. "phpunit/phpunit": "^9.0"
  3659. },
  3660. "bin": [
  3661. "bin/php-parse"
  3662. ],
  3663. "type": "library",
  3664. "extra": {
  3665. "branch-alias": {
  3666. "dev-master": "5.x-dev"
  3667. }
  3668. },
  3669. "autoload": {
  3670. "psr-4": {
  3671. "PhpParser\\": "lib/PhpParser"
  3672. }
  3673. },
  3674. "notification-url": "https://packagist.org/downloads/",
  3675. "license": [
  3676. "BSD-3-Clause"
  3677. ],
  3678. "authors": [
  3679. {
  3680. "name": "Nikita Popov"
  3681. }
  3682. ],
  3683. "description": "A PHP parser written in PHP",
  3684. "keywords": [
  3685. "parser",
  3686. "php"
  3687. ],
  3688. "support": {
  3689. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3690. "source": "https://github.com/nikic/PHP-Parser/tree/v5.7.0"
  3691. },
  3692. "time": "2025-12-06T11:56:16+00:00"
  3693. },
  3694. {
  3695. "name": "opis/closure",
  3696. "version": "3.6.3",
  3697. "source": {
  3698. "type": "git",
  3699. "url": "https://github.com/opis/closure.git",
  3700. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad"
  3701. },
  3702. "dist": {
  3703. "type": "zip",
  3704. "url": "https://api.github.com/repos/opis/closure/zipball/3d81e4309d2a927abbe66df935f4bb60082805ad",
  3705. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad",
  3706. "shasum": "",
  3707. "mirrors": [
  3708. {
  3709. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3710. "preferred": true
  3711. }
  3712. ]
  3713. },
  3714. "require": {
  3715. "php": "^5.4 || ^7.0 || ^8.0"
  3716. },
  3717. "require-dev": {
  3718. "jeremeamia/superclosure": "^2.0",
  3719. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  3720. },
  3721. "type": "library",
  3722. "extra": {
  3723. "branch-alias": {
  3724. "dev-master": "3.6.x-dev"
  3725. }
  3726. },
  3727. "autoload": {
  3728. "files": [
  3729. "functions.php"
  3730. ],
  3731. "psr-4": {
  3732. "Opis\\Closure\\": "src/"
  3733. }
  3734. },
  3735. "notification-url": "https://packagist.org/downloads/",
  3736. "license": [
  3737. "MIT"
  3738. ],
  3739. "authors": [
  3740. {
  3741. "name": "Marius Sarca",
  3742. "email": "marius.sarca@gmail.com"
  3743. },
  3744. {
  3745. "name": "Sorin Sarca",
  3746. "email": "sarca_sorin@hotmail.com"
  3747. }
  3748. ],
  3749. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  3750. "homepage": "https://opis.io/closure",
  3751. "keywords": [
  3752. "anonymous functions",
  3753. "closure",
  3754. "function",
  3755. "serializable",
  3756. "serialization",
  3757. "serialize"
  3758. ],
  3759. "support": {
  3760. "issues": "https://github.com/opis/closure/issues",
  3761. "source": "https://github.com/opis/closure/tree/3.6.3"
  3762. },
  3763. "time": "2022-01-27T09:35:39+00:00"
  3764. },
  3765. {
  3766. "name": "overtrue/socialite",
  3767. "version": "4.11.0",
  3768. "source": {
  3769. "type": "git",
  3770. "url": "https://github.com/overtrue/socialite.git",
  3771. "reference": "4929bbb9241818783c5954151ebbbef36d4953f4"
  3772. },
  3773. "dist": {
  3774. "type": "zip",
  3775. "url": "https://api.github.com/repos/overtrue/socialite/zipball/4929bbb9241818783c5954151ebbbef36d4953f4",
  3776. "reference": "4929bbb9241818783c5954151ebbbef36d4953f4",
  3777. "shasum": "",
  3778. "mirrors": [
  3779. {
  3780. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3781. "preferred": true
  3782. }
  3783. ]
  3784. },
  3785. "require": {
  3786. "ext-json": "*",
  3787. "ext-openssl": "*",
  3788. "guzzlehttp/guzzle": "^7.0",
  3789. "php": ">=8.0.2",
  3790. "symfony/psr-http-message-bridge": "^2.1|^6.0"
  3791. },
  3792. "require-dev": {
  3793. "jetbrains/phpstorm-attributes": "^1.0",
  3794. "laravel/pint": "^1.2",
  3795. "mockery/mockery": "^1.3",
  3796. "phpstan/phpstan": "^1.7",
  3797. "phpunit/phpunit": "^9.0"
  3798. },
  3799. "type": "library",
  3800. "autoload": {
  3801. "files": [
  3802. "src/Contracts/FactoryInterface.php",
  3803. "src/Contracts/UserInterface.php",
  3804. "src/Contracts/ProviderInterface.php"
  3805. ],
  3806. "psr-4": {
  3807. "Overtrue\\Socialite\\": "src/"
  3808. }
  3809. },
  3810. "notification-url": "https://packagist.org/downloads/",
  3811. "license": [
  3812. "MIT"
  3813. ],
  3814. "authors": [
  3815. {
  3816. "name": "overtrue",
  3817. "email": "anzhengchao@gmail.com"
  3818. }
  3819. ],
  3820. "description": "A collection of OAuth 2 packages.",
  3821. "keywords": [
  3822. "Feishu",
  3823. "login",
  3824. "oauth",
  3825. "qcloud",
  3826. "qq",
  3827. "social",
  3828. "wechat",
  3829. "weibo"
  3830. ],
  3831. "support": {
  3832. "issues": "https://github.com/overtrue/socialite/issues",
  3833. "source": "https://github.com/overtrue/socialite/tree/4.11.0"
  3834. },
  3835. "funding": [
  3836. {
  3837. "url": "https://github.com/overtrue",
  3838. "type": "github"
  3839. }
  3840. ],
  3841. "time": "2024-06-07T06:46:20+00:00"
  3842. },
  3843. {
  3844. "name": "phpoffice/phpspreadsheet",
  3845. "version": "1.30.1",
  3846. "source": {
  3847. "type": "git",
  3848. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  3849. "reference": "fa8257a579ec623473eabfe49731de5967306c4c"
  3850. },
  3851. "dist": {
  3852. "type": "zip",
  3853. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/fa8257a579ec623473eabfe49731de5967306c4c",
  3854. "reference": "fa8257a579ec623473eabfe49731de5967306c4c",
  3855. "shasum": "",
  3856. "mirrors": [
  3857. {
  3858. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3859. "preferred": true
  3860. }
  3861. ]
  3862. },
  3863. "require": {
  3864. "composer/pcre": "^1||^2||^3",
  3865. "ext-ctype": "*",
  3866. "ext-dom": "*",
  3867. "ext-fileinfo": "*",
  3868. "ext-gd": "*",
  3869. "ext-iconv": "*",
  3870. "ext-libxml": "*",
  3871. "ext-mbstring": "*",
  3872. "ext-simplexml": "*",
  3873. "ext-xml": "*",
  3874. "ext-xmlreader": "*",
  3875. "ext-xmlwriter": "*",
  3876. "ext-zip": "*",
  3877. "ext-zlib": "*",
  3878. "ezyang/htmlpurifier": "^4.15",
  3879. "maennchen/zipstream-php": "^2.1 || ^3.0",
  3880. "markbaker/complex": "^3.0",
  3881. "markbaker/matrix": "^3.0",
  3882. "php": ">=7.4.0 <8.5.0",
  3883. "psr/http-client": "^1.0",
  3884. "psr/http-factory": "^1.0",
  3885. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  3886. },
  3887. "require-dev": {
  3888. "dealerdirect/phpcodesniffer-composer-installer": "dev-main",
  3889. "dompdf/dompdf": "^1.0 || ^2.0 || ^3.0",
  3890. "friendsofphp/php-cs-fixer": "^3.2",
  3891. "mitoteam/jpgraph": "^10.3",
  3892. "mpdf/mpdf": "^8.1.1",
  3893. "phpcompatibility/php-compatibility": "^9.3",
  3894. "phpstan/phpstan": "^1.1",
  3895. "phpstan/phpstan-phpunit": "^1.0",
  3896. "phpunit/phpunit": "^8.5 || ^9.0",
  3897. "squizlabs/php_codesniffer": "^3.7",
  3898. "tecnickcom/tcpdf": "^6.5"
  3899. },
  3900. "suggest": {
  3901. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  3902. "ext-intl": "PHP Internationalization Functions",
  3903. "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  3904. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  3905. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  3906. },
  3907. "type": "library",
  3908. "autoload": {
  3909. "psr-4": {
  3910. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  3911. }
  3912. },
  3913. "notification-url": "https://packagist.org/downloads/",
  3914. "license": [
  3915. "MIT"
  3916. ],
  3917. "authors": [
  3918. {
  3919. "name": "Maarten Balliauw",
  3920. "homepage": "https://blog.maartenballiauw.be"
  3921. },
  3922. {
  3923. "name": "Mark Baker",
  3924. "homepage": "https://markbakeruk.net"
  3925. },
  3926. {
  3927. "name": "Franck Lefevre",
  3928. "homepage": "https://rootslabs.net"
  3929. },
  3930. {
  3931. "name": "Erik Tilt"
  3932. },
  3933. {
  3934. "name": "Adrien Crivelli"
  3935. }
  3936. ],
  3937. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  3938. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  3939. "keywords": [
  3940. "OpenXML",
  3941. "excel",
  3942. "gnumeric",
  3943. "ods",
  3944. "php",
  3945. "spreadsheet",
  3946. "xls",
  3947. "xlsx"
  3948. ],
  3949. "support": {
  3950. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  3951. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.30.1"
  3952. },
  3953. "time": "2025-10-26T16:01:04+00:00"
  3954. },
  3955. {
  3956. "name": "phpoption/phpoption",
  3957. "version": "dev-master",
  3958. "source": {
  3959. "type": "git",
  3960. "url": "https://github.com/schmittjoh/php-option.git",
  3961. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  3962. },
  3963. "dist": {
  3964. "type": "zip",
  3965. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  3966. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  3967. "shasum": "",
  3968. "mirrors": [
  3969. {
  3970. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3971. "preferred": true
  3972. }
  3973. ]
  3974. },
  3975. "require": {
  3976. "php": "^7.2.5 || ^8.0"
  3977. },
  3978. "require-dev": {
  3979. "bamarni/composer-bin-plugin": "^1.8.2",
  3980. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  3981. },
  3982. "default-branch": true,
  3983. "type": "library",
  3984. "extra": {
  3985. "bamarni-bin": {
  3986. "bin-links": true,
  3987. "forward-command": false
  3988. },
  3989. "branch-alias": {
  3990. "dev-master": "1.9-dev"
  3991. }
  3992. },
  3993. "autoload": {
  3994. "psr-4": {
  3995. "PhpOption\\": "src/PhpOption/"
  3996. }
  3997. },
  3998. "notification-url": "https://packagist.org/downloads/",
  3999. "license": [
  4000. "Apache-2.0"
  4001. ],
  4002. "authors": [
  4003. {
  4004. "name": "Johannes M. Schmitt",
  4005. "email": "schmittjoh@gmail.com",
  4006. "homepage": "https://github.com/schmittjoh"
  4007. },
  4008. {
  4009. "name": "Graham Campbell",
  4010. "email": "hello@gjcampbell.co.uk",
  4011. "homepage": "https://github.com/GrahamCampbell"
  4012. }
  4013. ],
  4014. "description": "Option Type for PHP",
  4015. "keywords": [
  4016. "language",
  4017. "option",
  4018. "php",
  4019. "type"
  4020. ],
  4021. "support": {
  4022. "issues": "https://github.com/schmittjoh/php-option/issues",
  4023. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  4024. },
  4025. "funding": [
  4026. {
  4027. "url": "https://github.com/GrahamCampbell",
  4028. "type": "github"
  4029. },
  4030. {
  4031. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  4032. "type": "tidelift"
  4033. }
  4034. ],
  4035. "time": "2024-07-20T21:41:07+00:00"
  4036. },
  4037. {
  4038. "name": "pimple/pimple",
  4039. "version": "v3.6.0",
  4040. "source": {
  4041. "type": "git",
  4042. "url": "https://github.com/silexphp/Pimple.git",
  4043. "reference": "a70f552d338f9266eec6606c1f0b324da5514c96"
  4044. },
  4045. "dist": {
  4046. "type": "zip",
  4047. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/a70f552d338f9266eec6606c1f0b324da5514c96",
  4048. "reference": "a70f552d338f9266eec6606c1f0b324da5514c96",
  4049. "shasum": "",
  4050. "mirrors": [
  4051. {
  4052. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4053. "preferred": true
  4054. }
  4055. ]
  4056. },
  4057. "require": {
  4058. "php": ">=7.2.5",
  4059. "psr/container": "^1.1 || ^2.0"
  4060. },
  4061. "require-dev": {
  4062. "phpunit/phpunit": "*"
  4063. },
  4064. "type": "library",
  4065. "extra": {
  4066. "branch-alias": {
  4067. "dev-master": "3.4.x-dev"
  4068. }
  4069. },
  4070. "autoload": {
  4071. "psr-0": {
  4072. "Pimple": "src/"
  4073. }
  4074. },
  4075. "notification-url": "https://packagist.org/downloads/",
  4076. "license": [
  4077. "MIT"
  4078. ],
  4079. "authors": [
  4080. {
  4081. "name": "Fabien Potencier",
  4082. "email": "fabien@symfony.com"
  4083. }
  4084. ],
  4085. "description": "Pimple, a simple Dependency Injection Container",
  4086. "homepage": "https://pimple.symfony.com",
  4087. "keywords": [
  4088. "container",
  4089. "dependency injection"
  4090. ],
  4091. "support": {
  4092. "source": "https://github.com/silexphp/Pimple/tree/v3.6.0"
  4093. },
  4094. "time": "2025-11-12T12:31:38+00:00"
  4095. },
  4096. {
  4097. "name": "psr/cache",
  4098. "version": "3.0.0",
  4099. "source": {
  4100. "type": "git",
  4101. "url": "https://github.com/php-fig/cache.git",
  4102. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  4103. },
  4104. "dist": {
  4105. "type": "zip",
  4106. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  4107. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  4108. "shasum": "",
  4109. "mirrors": [
  4110. {
  4111. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4112. "preferred": true
  4113. }
  4114. ]
  4115. },
  4116. "require": {
  4117. "php": ">=8.0.0"
  4118. },
  4119. "type": "library",
  4120. "extra": {
  4121. "branch-alias": {
  4122. "dev-master": "1.0.x-dev"
  4123. }
  4124. },
  4125. "autoload": {
  4126. "psr-4": {
  4127. "Psr\\Cache\\": "src/"
  4128. }
  4129. },
  4130. "notification-url": "https://packagist.org/downloads/",
  4131. "license": [
  4132. "MIT"
  4133. ],
  4134. "authors": [
  4135. {
  4136. "name": "PHP-FIG",
  4137. "homepage": "https://www.php-fig.org/"
  4138. }
  4139. ],
  4140. "description": "Common interface for caching libraries",
  4141. "keywords": [
  4142. "cache",
  4143. "psr",
  4144. "psr-6"
  4145. ],
  4146. "support": {
  4147. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  4148. },
  4149. "time": "2021-02-03T23:26:27+00:00"
  4150. },
  4151. {
  4152. "name": "psr/clock",
  4153. "version": "1.0.0",
  4154. "source": {
  4155. "type": "git",
  4156. "url": "https://github.com/php-fig/clock.git",
  4157. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  4158. },
  4159. "dist": {
  4160. "type": "zip",
  4161. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  4162. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  4163. "shasum": "",
  4164. "mirrors": [
  4165. {
  4166. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4167. "preferred": true
  4168. }
  4169. ]
  4170. },
  4171. "require": {
  4172. "php": "^7.0 || ^8.0"
  4173. },
  4174. "type": "library",
  4175. "autoload": {
  4176. "psr-4": {
  4177. "Psr\\Clock\\": "src/"
  4178. }
  4179. },
  4180. "notification-url": "https://packagist.org/downloads/",
  4181. "license": [
  4182. "MIT"
  4183. ],
  4184. "authors": [
  4185. {
  4186. "name": "PHP-FIG",
  4187. "homepage": "https://www.php-fig.org/"
  4188. }
  4189. ],
  4190. "description": "Common interface for reading the clock.",
  4191. "homepage": "https://github.com/php-fig/clock",
  4192. "keywords": [
  4193. "clock",
  4194. "now",
  4195. "psr",
  4196. "psr-20",
  4197. "time"
  4198. ],
  4199. "support": {
  4200. "issues": "https://github.com/php-fig/clock/issues",
  4201. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  4202. },
  4203. "time": "2022-11-25T14:36:26+00:00"
  4204. },
  4205. {
  4206. "name": "psr/container",
  4207. "version": "1.1.2",
  4208. "source": {
  4209. "type": "git",
  4210. "url": "https://github.com/php-fig/container.git",
  4211. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
  4212. },
  4213. "dist": {
  4214. "type": "zip",
  4215. "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
  4216. "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
  4217. "shasum": "",
  4218. "mirrors": [
  4219. {
  4220. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4221. "preferred": true
  4222. }
  4223. ]
  4224. },
  4225. "require": {
  4226. "php": ">=7.4.0"
  4227. },
  4228. "type": "library",
  4229. "autoload": {
  4230. "psr-4": {
  4231. "Psr\\Container\\": "src/"
  4232. }
  4233. },
  4234. "notification-url": "https://packagist.org/downloads/",
  4235. "license": [
  4236. "MIT"
  4237. ],
  4238. "authors": [
  4239. {
  4240. "name": "PHP-FIG",
  4241. "homepage": "https://www.php-fig.org/"
  4242. }
  4243. ],
  4244. "description": "Common Container Interface (PHP FIG PSR-11)",
  4245. "homepage": "https://github.com/php-fig/container",
  4246. "keywords": [
  4247. "PSR-11",
  4248. "container",
  4249. "container-interface",
  4250. "container-interop",
  4251. "psr"
  4252. ],
  4253. "support": {
  4254. "issues": "https://github.com/php-fig/container/issues",
  4255. "source": "https://github.com/php-fig/container/tree/1.1.2"
  4256. },
  4257. "time": "2021-11-05T16:50:12+00:00"
  4258. },
  4259. {
  4260. "name": "psr/event-dispatcher",
  4261. "version": "1.0.0",
  4262. "source": {
  4263. "type": "git",
  4264. "url": "https://github.com/php-fig/event-dispatcher.git",
  4265. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  4266. },
  4267. "dist": {
  4268. "type": "zip",
  4269. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4270. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4271. "shasum": "",
  4272. "mirrors": [
  4273. {
  4274. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4275. "preferred": true
  4276. }
  4277. ]
  4278. },
  4279. "require": {
  4280. "php": ">=7.2.0"
  4281. },
  4282. "type": "library",
  4283. "extra": {
  4284. "branch-alias": {
  4285. "dev-master": "1.0.x-dev"
  4286. }
  4287. },
  4288. "autoload": {
  4289. "psr-4": {
  4290. "Psr\\EventDispatcher\\": "src/"
  4291. }
  4292. },
  4293. "notification-url": "https://packagist.org/downloads/",
  4294. "license": [
  4295. "MIT"
  4296. ],
  4297. "authors": [
  4298. {
  4299. "name": "PHP-FIG",
  4300. "homepage": "http://www.php-fig.org/"
  4301. }
  4302. ],
  4303. "description": "Standard interfaces for event handling.",
  4304. "keywords": [
  4305. "events",
  4306. "psr",
  4307. "psr-14"
  4308. ],
  4309. "support": {
  4310. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  4311. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  4312. },
  4313. "time": "2019-01-08T18:20:26+00:00"
  4314. },
  4315. {
  4316. "name": "psr/http-client",
  4317. "version": "1.0.3",
  4318. "source": {
  4319. "type": "git",
  4320. "url": "https://github.com/php-fig/http-client.git",
  4321. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  4322. },
  4323. "dist": {
  4324. "type": "zip",
  4325. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  4326. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  4327. "shasum": "",
  4328. "mirrors": [
  4329. {
  4330. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4331. "preferred": true
  4332. }
  4333. ]
  4334. },
  4335. "require": {
  4336. "php": "^7.0 || ^8.0",
  4337. "psr/http-message": "^1.0 || ^2.0"
  4338. },
  4339. "type": "library",
  4340. "extra": {
  4341. "branch-alias": {
  4342. "dev-master": "1.0.x-dev"
  4343. }
  4344. },
  4345. "autoload": {
  4346. "psr-4": {
  4347. "Psr\\Http\\Client\\": "src/"
  4348. }
  4349. },
  4350. "notification-url": "https://packagist.org/downloads/",
  4351. "license": [
  4352. "MIT"
  4353. ],
  4354. "authors": [
  4355. {
  4356. "name": "PHP-FIG",
  4357. "homepage": "https://www.php-fig.org/"
  4358. }
  4359. ],
  4360. "description": "Common interface for HTTP clients",
  4361. "homepage": "https://github.com/php-fig/http-client",
  4362. "keywords": [
  4363. "http",
  4364. "http-client",
  4365. "psr",
  4366. "psr-18"
  4367. ],
  4368. "support": {
  4369. "source": "https://github.com/php-fig/http-client"
  4370. },
  4371. "time": "2023-09-23T14:17:50+00:00"
  4372. },
  4373. {
  4374. "name": "psr/http-factory",
  4375. "version": "1.0.2",
  4376. "source": {
  4377. "type": "git",
  4378. "url": "https://github.com/php-fig/http-factory.git",
  4379. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  4380. },
  4381. "dist": {
  4382. "type": "zip",
  4383. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  4384. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  4385. "shasum": "",
  4386. "mirrors": [
  4387. {
  4388. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4389. "preferred": true
  4390. }
  4391. ]
  4392. },
  4393. "require": {
  4394. "php": ">=7.0.0",
  4395. "psr/http-message": "^1.0 || ^2.0"
  4396. },
  4397. "type": "library",
  4398. "extra": {
  4399. "branch-alias": {
  4400. "dev-master": "1.0.x-dev"
  4401. }
  4402. },
  4403. "autoload": {
  4404. "psr-4": {
  4405. "Psr\\Http\\Message\\": "src/"
  4406. }
  4407. },
  4408. "notification-url": "https://packagist.org/downloads/",
  4409. "license": [
  4410. "MIT"
  4411. ],
  4412. "authors": [
  4413. {
  4414. "name": "PHP-FIG",
  4415. "homepage": "https://www.php-fig.org/"
  4416. }
  4417. ],
  4418. "description": "Common interfaces for PSR-7 HTTP message factories",
  4419. "keywords": [
  4420. "factory",
  4421. "http",
  4422. "message",
  4423. "psr",
  4424. "psr-17",
  4425. "psr-7",
  4426. "request",
  4427. "response"
  4428. ],
  4429. "support": {
  4430. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  4431. },
  4432. "time": "2023-04-10T20:10:41+00:00"
  4433. },
  4434. {
  4435. "name": "psr/http-message",
  4436. "version": "1.1",
  4437. "source": {
  4438. "type": "git",
  4439. "url": "https://github.com/php-fig/http-message.git",
  4440. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  4441. },
  4442. "dist": {
  4443. "type": "zip",
  4444. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  4445. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  4446. "shasum": "",
  4447. "mirrors": [
  4448. {
  4449. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4450. "preferred": true
  4451. }
  4452. ]
  4453. },
  4454. "require": {
  4455. "php": "^7.2 || ^8.0"
  4456. },
  4457. "type": "library",
  4458. "extra": {
  4459. "branch-alias": {
  4460. "dev-master": "1.1.x-dev"
  4461. }
  4462. },
  4463. "autoload": {
  4464. "psr-4": {
  4465. "Psr\\Http\\Message\\": "src/"
  4466. }
  4467. },
  4468. "notification-url": "https://packagist.org/downloads/",
  4469. "license": [
  4470. "MIT"
  4471. ],
  4472. "authors": [
  4473. {
  4474. "name": "PHP-FIG",
  4475. "homepage": "http://www.php-fig.org/"
  4476. }
  4477. ],
  4478. "description": "Common interface for HTTP messages",
  4479. "homepage": "https://github.com/php-fig/http-message",
  4480. "keywords": [
  4481. "http",
  4482. "http-message",
  4483. "psr",
  4484. "psr-7",
  4485. "request",
  4486. "response"
  4487. ],
  4488. "support": {
  4489. "source": "https://github.com/php-fig/http-message/tree/1.1"
  4490. },
  4491. "time": "2023-04-04T09:50:52+00:00"
  4492. },
  4493. {
  4494. "name": "psr/log",
  4495. "version": "2.0.0",
  4496. "source": {
  4497. "type": "git",
  4498. "url": "https://github.com/php-fig/log.git",
  4499. "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376"
  4500. },
  4501. "dist": {
  4502. "type": "zip",
  4503. "url": "https://api.github.com/repos/php-fig/log/zipball/ef29f6d262798707a9edd554e2b82517ef3a9376",
  4504. "reference": "ef29f6d262798707a9edd554e2b82517ef3a9376",
  4505. "shasum": "",
  4506. "mirrors": [
  4507. {
  4508. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4509. "preferred": true
  4510. }
  4511. ]
  4512. },
  4513. "require": {
  4514. "php": ">=8.0.0"
  4515. },
  4516. "type": "library",
  4517. "extra": {
  4518. "branch-alias": {
  4519. "dev-master": "2.0.x-dev"
  4520. }
  4521. },
  4522. "autoload": {
  4523. "psr-4": {
  4524. "Psr\\Log\\": "src"
  4525. }
  4526. },
  4527. "notification-url": "https://packagist.org/downloads/",
  4528. "license": [
  4529. "MIT"
  4530. ],
  4531. "authors": [
  4532. {
  4533. "name": "PHP-FIG",
  4534. "homepage": "https://www.php-fig.org/"
  4535. }
  4536. ],
  4537. "description": "Common interface for logging libraries",
  4538. "homepage": "https://github.com/php-fig/log",
  4539. "keywords": [
  4540. "log",
  4541. "psr",
  4542. "psr-3"
  4543. ],
  4544. "support": {
  4545. "source": "https://github.com/php-fig/log/tree/2.0.0"
  4546. },
  4547. "time": "2021-07-14T16:41:46+00:00"
  4548. },
  4549. {
  4550. "name": "psr/simple-cache",
  4551. "version": "1.0.1",
  4552. "source": {
  4553. "type": "git",
  4554. "url": "https://github.com/php-fig/simple-cache.git",
  4555. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  4556. },
  4557. "dist": {
  4558. "type": "zip",
  4559. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4560. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4561. "shasum": "",
  4562. "mirrors": [
  4563. {
  4564. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4565. "preferred": true
  4566. }
  4567. ]
  4568. },
  4569. "require": {
  4570. "php": ">=5.3.0"
  4571. },
  4572. "type": "library",
  4573. "extra": {
  4574. "branch-alias": {
  4575. "dev-master": "1.0.x-dev"
  4576. }
  4577. },
  4578. "autoload": {
  4579. "psr-4": {
  4580. "Psr\\SimpleCache\\": "src/"
  4581. }
  4582. },
  4583. "notification-url": "https://packagist.org/downloads/",
  4584. "license": [
  4585. "MIT"
  4586. ],
  4587. "authors": [
  4588. {
  4589. "name": "PHP-FIG",
  4590. "homepage": "http://www.php-fig.org/"
  4591. }
  4592. ],
  4593. "description": "Common interfaces for simple caching",
  4594. "keywords": [
  4595. "cache",
  4596. "caching",
  4597. "psr",
  4598. "psr-16",
  4599. "simple-cache"
  4600. ],
  4601. "support": {
  4602. "source": "https://github.com/php-fig/simple-cache/tree/master"
  4603. },
  4604. "time": "2017-10-23T01:57:42+00:00"
  4605. },
  4606. {
  4607. "name": "psy/psysh",
  4608. "version": "v0.12.15",
  4609. "source": {
  4610. "type": "git",
  4611. "url": "https://github.com/bobthecow/psysh.git",
  4612. "reference": "38953bc71491c838fcb6ebcbdc41ab7483cd549c"
  4613. },
  4614. "dist": {
  4615. "type": "zip",
  4616. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/38953bc71491c838fcb6ebcbdc41ab7483cd549c",
  4617. "reference": "38953bc71491c838fcb6ebcbdc41ab7483cd549c",
  4618. "shasum": "",
  4619. "mirrors": [
  4620. {
  4621. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4622. "preferred": true
  4623. }
  4624. ]
  4625. },
  4626. "require": {
  4627. "ext-json": "*",
  4628. "ext-tokenizer": "*",
  4629. "nikic/php-parser": "^5.0 || ^4.0",
  4630. "php": "^8.0 || ^7.4",
  4631. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  4632. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  4633. },
  4634. "conflict": {
  4635. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  4636. },
  4637. "require-dev": {
  4638. "bamarni/composer-bin-plugin": "^1.2",
  4639. "composer/class-map-generator": "^1.6"
  4640. },
  4641. "suggest": {
  4642. "composer/class-map-generator": "Improved tab completion performance with better class discovery.",
  4643. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4644. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  4645. },
  4646. "bin": [
  4647. "bin/psysh"
  4648. ],
  4649. "type": "library",
  4650. "extra": {
  4651. "bamarni-bin": {
  4652. "bin-links": false,
  4653. "forward-command": false
  4654. },
  4655. "branch-alias": {
  4656. "dev-main": "0.12.x-dev"
  4657. }
  4658. },
  4659. "autoload": {
  4660. "files": [
  4661. "src/functions.php"
  4662. ],
  4663. "psr-4": {
  4664. "Psy\\": "src/"
  4665. }
  4666. },
  4667. "notification-url": "https://packagist.org/downloads/",
  4668. "license": [
  4669. "MIT"
  4670. ],
  4671. "authors": [
  4672. {
  4673. "name": "Justin Hileman",
  4674. "email": "justin@justinhileman.info"
  4675. }
  4676. ],
  4677. "description": "An interactive shell for modern PHP.",
  4678. "homepage": "https://psysh.org",
  4679. "keywords": [
  4680. "REPL",
  4681. "console",
  4682. "interactive",
  4683. "shell"
  4684. ],
  4685. "support": {
  4686. "issues": "https://github.com/bobthecow/psysh/issues",
  4687. "source": "https://github.com/bobthecow/psysh/tree/v0.12.15"
  4688. },
  4689. "time": "2025-11-28T00:00:14+00:00"
  4690. },
  4691. {
  4692. "name": "ralouphie/getallheaders",
  4693. "version": "3.0.3",
  4694. "source": {
  4695. "type": "git",
  4696. "url": "https://github.com/ralouphie/getallheaders.git",
  4697. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4698. },
  4699. "dist": {
  4700. "type": "zip",
  4701. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4702. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4703. "shasum": "",
  4704. "mirrors": [
  4705. {
  4706. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4707. "preferred": true
  4708. }
  4709. ]
  4710. },
  4711. "require": {
  4712. "php": ">=5.6"
  4713. },
  4714. "require-dev": {
  4715. "php-coveralls/php-coveralls": "^2.1",
  4716. "phpunit/phpunit": "^5 || ^6.5"
  4717. },
  4718. "type": "library",
  4719. "autoload": {
  4720. "files": [
  4721. "src/getallheaders.php"
  4722. ]
  4723. },
  4724. "notification-url": "https://packagist.org/downloads/",
  4725. "license": [
  4726. "MIT"
  4727. ],
  4728. "authors": [
  4729. {
  4730. "name": "Ralph Khattar",
  4731. "email": "ralph.khattar@gmail.com"
  4732. }
  4733. ],
  4734. "description": "A polyfill for getallheaders.",
  4735. "support": {
  4736. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4737. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4738. },
  4739. "time": "2019-03-08T08:55:37+00:00"
  4740. },
  4741. {
  4742. "name": "ramsey/collection",
  4743. "version": "1.3.0",
  4744. "source": {
  4745. "type": "git",
  4746. "url": "https://github.com/ramsey/collection.git",
  4747. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4"
  4748. },
  4749. "dist": {
  4750. "type": "zip",
  4751. "url": "https://api.github.com/repos/ramsey/collection/zipball/ad7475d1c9e70b190ecffc58f2d989416af339b4",
  4752. "reference": "ad7475d1c9e70b190ecffc58f2d989416af339b4",
  4753. "shasum": "",
  4754. "mirrors": [
  4755. {
  4756. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4757. "preferred": true
  4758. }
  4759. ]
  4760. },
  4761. "require": {
  4762. "php": "^7.4 || ^8.0",
  4763. "symfony/polyfill-php81": "^1.23"
  4764. },
  4765. "require-dev": {
  4766. "captainhook/plugin-composer": "^5.3",
  4767. "ergebnis/composer-normalize": "^2.28.3",
  4768. "fakerphp/faker": "^1.21",
  4769. "hamcrest/hamcrest-php": "^2.0",
  4770. "jangregor/phpstan-prophecy": "^1.0",
  4771. "mockery/mockery": "^1.5",
  4772. "php-parallel-lint/php-console-highlighter": "^1.0",
  4773. "php-parallel-lint/php-parallel-lint": "^1.3",
  4774. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  4775. "phpspec/prophecy-phpunit": "^2.0",
  4776. "phpstan/extension-installer": "^1.2",
  4777. "phpstan/phpstan": "^1.9",
  4778. "phpstan/phpstan-mockery": "^1.1",
  4779. "phpstan/phpstan-phpunit": "^1.3",
  4780. "phpunit/phpunit": "^9.5",
  4781. "psalm/plugin-mockery": "^1.1",
  4782. "psalm/plugin-phpunit": "^0.18.4",
  4783. "ramsey/coding-standard": "^2.0.3",
  4784. "ramsey/conventional-commits": "^1.3",
  4785. "vimeo/psalm": "^5.4"
  4786. },
  4787. "type": "library",
  4788. "extra": {
  4789. "captainhook": {
  4790. "force-install": true
  4791. },
  4792. "ramsey/conventional-commits": {
  4793. "configFile": "conventional-commits.json"
  4794. }
  4795. },
  4796. "autoload": {
  4797. "psr-4": {
  4798. "Ramsey\\Collection\\": "src/"
  4799. }
  4800. },
  4801. "notification-url": "https://packagist.org/downloads/",
  4802. "license": [
  4803. "MIT"
  4804. ],
  4805. "authors": [
  4806. {
  4807. "name": "Ben Ramsey",
  4808. "email": "ben@benramsey.com",
  4809. "homepage": "https://benramsey.com"
  4810. }
  4811. ],
  4812. "description": "A PHP library for representing and manipulating collections.",
  4813. "keywords": [
  4814. "array",
  4815. "collection",
  4816. "hash",
  4817. "map",
  4818. "queue",
  4819. "set"
  4820. ],
  4821. "support": {
  4822. "issues": "https://github.com/ramsey/collection/issues",
  4823. "source": "https://github.com/ramsey/collection/tree/1.3.0"
  4824. },
  4825. "funding": [
  4826. {
  4827. "url": "https://github.com/ramsey",
  4828. "type": "github"
  4829. },
  4830. {
  4831. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4832. "type": "tidelift"
  4833. }
  4834. ],
  4835. "time": "2022-12-27T19:12:24+00:00"
  4836. },
  4837. {
  4838. "name": "ramsey/uuid",
  4839. "version": "4.9.0",
  4840. "source": {
  4841. "type": "git",
  4842. "url": "https://github.com/ramsey/uuid.git",
  4843. "reference": "4e0e23cc785f0724a0e838279a9eb03f28b092a0"
  4844. },
  4845. "dist": {
  4846. "type": "zip",
  4847. "url": "https://api.github.com/repos/ramsey/uuid/zipball/4e0e23cc785f0724a0e838279a9eb03f28b092a0",
  4848. "reference": "4e0e23cc785f0724a0e838279a9eb03f28b092a0",
  4849. "shasum": "",
  4850. "mirrors": [
  4851. {
  4852. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4853. "preferred": true
  4854. }
  4855. ]
  4856. },
  4857. "require": {
  4858. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12 || ^0.13",
  4859. "php": "^8.0",
  4860. "ramsey/collection": "^1.2 || ^2.0"
  4861. },
  4862. "replace": {
  4863. "rhumsaa/uuid": "self.version"
  4864. },
  4865. "require-dev": {
  4866. "captainhook/captainhook": "^5.25",
  4867. "captainhook/plugin-composer": "^5.3",
  4868. "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
  4869. "ergebnis/composer-normalize": "^2.47",
  4870. "mockery/mockery": "^1.6",
  4871. "paragonie/random-lib": "^2",
  4872. "php-mock/php-mock": "^2.6",
  4873. "php-mock/php-mock-mockery": "^1.5",
  4874. "php-parallel-lint/php-parallel-lint": "^1.4.0",
  4875. "phpbench/phpbench": "^1.2.14",
  4876. "phpstan/extension-installer": "^1.4",
  4877. "phpstan/phpstan": "^2.1",
  4878. "phpstan/phpstan-mockery": "^2.0",
  4879. "phpstan/phpstan-phpunit": "^2.0",
  4880. "phpunit/phpunit": "^9.6",
  4881. "slevomat/coding-standard": "^8.18",
  4882. "squizlabs/php_codesniffer": "^3.13"
  4883. },
  4884. "suggest": {
  4885. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4886. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4887. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4888. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4889. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4890. },
  4891. "type": "library",
  4892. "extra": {
  4893. "captainhook": {
  4894. "force-install": true
  4895. }
  4896. },
  4897. "autoload": {
  4898. "files": [
  4899. "src/functions.php"
  4900. ],
  4901. "psr-4": {
  4902. "Ramsey\\Uuid\\": "src/"
  4903. }
  4904. },
  4905. "notification-url": "https://packagist.org/downloads/",
  4906. "license": [
  4907. "MIT"
  4908. ],
  4909. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4910. "keywords": [
  4911. "guid",
  4912. "identifier",
  4913. "uuid"
  4914. ],
  4915. "support": {
  4916. "issues": "https://github.com/ramsey/uuid/issues",
  4917. "source": "https://github.com/ramsey/uuid/tree/4.9.0"
  4918. },
  4919. "time": "2025-06-25T14:20:11+00:00"
  4920. },
  4921. {
  4922. "name": "swiftmailer/swiftmailer",
  4923. "version": "v6.3.0",
  4924. "source": {
  4925. "type": "git",
  4926. "url": "https://github.com/swiftmailer/swiftmailer.git",
  4927. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  4928. },
  4929. "dist": {
  4930. "type": "zip",
  4931. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  4932. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  4933. "shasum": "",
  4934. "mirrors": [
  4935. {
  4936. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4937. "preferred": true
  4938. }
  4939. ]
  4940. },
  4941. "require": {
  4942. "egulias/email-validator": "^2.0|^3.1",
  4943. "php": ">=7.0.0",
  4944. "symfony/polyfill-iconv": "^1.0",
  4945. "symfony/polyfill-intl-idn": "^1.10",
  4946. "symfony/polyfill-mbstring": "^1.0"
  4947. },
  4948. "require-dev": {
  4949. "mockery/mockery": "^1.0",
  4950. "symfony/phpunit-bridge": "^4.4|^5.4"
  4951. },
  4952. "suggest": {
  4953. "ext-intl": "Needed to support internationalized email addresses"
  4954. },
  4955. "type": "library",
  4956. "extra": {
  4957. "branch-alias": {
  4958. "dev-master": "6.2-dev"
  4959. }
  4960. },
  4961. "autoload": {
  4962. "files": [
  4963. "lib/swift_required.php"
  4964. ]
  4965. },
  4966. "notification-url": "https://packagist.org/downloads/",
  4967. "license": [
  4968. "MIT"
  4969. ],
  4970. "authors": [
  4971. {
  4972. "name": "Chris Corbyn"
  4973. },
  4974. {
  4975. "name": "Fabien Potencier",
  4976. "email": "fabien@symfony.com"
  4977. }
  4978. ],
  4979. "description": "Swiftmailer, free feature-rich PHP mailer",
  4980. "homepage": "https://swiftmailer.symfony.com",
  4981. "keywords": [
  4982. "email",
  4983. "mail",
  4984. "mailer"
  4985. ],
  4986. "support": {
  4987. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  4988. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  4989. },
  4990. "funding": [
  4991. {
  4992. "url": "https://github.com/fabpot",
  4993. "type": "github"
  4994. },
  4995. {
  4996. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  4997. "type": "tidelift"
  4998. }
  4999. ],
  5000. "abandoned": "symfony/mailer",
  5001. "time": "2021-10-18T15:26:12+00:00"
  5002. },
  5003. {
  5004. "name": "symfony/cache",
  5005. "version": "v6.0.19",
  5006. "source": {
  5007. "type": "git",
  5008. "url": "https://github.com/symfony/cache.git",
  5009. "reference": "81ca309f056e836480928b20280ec52ce8369bb3"
  5010. },
  5011. "dist": {
  5012. "type": "zip",
  5013. "url": "https://api.github.com/repos/symfony/cache/zipball/81ca309f056e836480928b20280ec52ce8369bb3",
  5014. "reference": "81ca309f056e836480928b20280ec52ce8369bb3",
  5015. "shasum": "",
  5016. "mirrors": [
  5017. {
  5018. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5019. "preferred": true
  5020. }
  5021. ]
  5022. },
  5023. "require": {
  5024. "php": ">=8.0.2",
  5025. "psr/cache": "^2.0|^3.0",
  5026. "psr/log": "^1.1|^2|^3",
  5027. "symfony/cache-contracts": "^1.1.7|^2|^3",
  5028. "symfony/service-contracts": "^1.1|^2|^3",
  5029. "symfony/var-exporter": "^5.4|^6.0"
  5030. },
  5031. "conflict": {
  5032. "doctrine/dbal": "<2.13.1",
  5033. "symfony/dependency-injection": "<5.4",
  5034. "symfony/http-kernel": "<5.4",
  5035. "symfony/var-dumper": "<5.4"
  5036. },
  5037. "provide": {
  5038. "psr/cache-implementation": "2.0|3.0",
  5039. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  5040. "symfony/cache-implementation": "1.1|2.0|3.0"
  5041. },
  5042. "require-dev": {
  5043. "cache/integration-tests": "dev-master",
  5044. "doctrine/dbal": "^2.13.1|^3.0",
  5045. "predis/predis": "^1.1",
  5046. "psr/simple-cache": "^1.0|^2.0|^3.0",
  5047. "symfony/config": "^5.4|^6.0",
  5048. "symfony/dependency-injection": "^5.4|^6.0",
  5049. "symfony/filesystem": "^5.4|^6.0",
  5050. "symfony/http-kernel": "^5.4|^6.0",
  5051. "symfony/messenger": "^5.4|^6.0",
  5052. "symfony/var-dumper": "^5.4|^6.0"
  5053. },
  5054. "type": "library",
  5055. "autoload": {
  5056. "psr-4": {
  5057. "Symfony\\Component\\Cache\\": ""
  5058. },
  5059. "exclude-from-classmap": [
  5060. "/Tests/"
  5061. ]
  5062. },
  5063. "notification-url": "https://packagist.org/downloads/",
  5064. "license": [
  5065. "MIT"
  5066. ],
  5067. "authors": [
  5068. {
  5069. "name": "Nicolas Grekas",
  5070. "email": "p@tchwork.com"
  5071. },
  5072. {
  5073. "name": "Symfony Community",
  5074. "homepage": "https://symfony.com/contributors"
  5075. }
  5076. ],
  5077. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  5078. "homepage": "https://symfony.com",
  5079. "keywords": [
  5080. "caching",
  5081. "psr6"
  5082. ],
  5083. "support": {
  5084. "source": "https://github.com/symfony/cache/tree/v6.0.19"
  5085. },
  5086. "funding": [
  5087. {
  5088. "url": "https://symfony.com/sponsor",
  5089. "type": "custom"
  5090. },
  5091. {
  5092. "url": "https://github.com/fabpot",
  5093. "type": "github"
  5094. },
  5095. {
  5096. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5097. "type": "tidelift"
  5098. }
  5099. ],
  5100. "time": "2023-01-20T17:44:14+00:00"
  5101. },
  5102. {
  5103. "name": "symfony/cache-contracts",
  5104. "version": "v3.0.2",
  5105. "source": {
  5106. "type": "git",
  5107. "url": "https://github.com/symfony/cache-contracts.git",
  5108. "reference": "1c0a181c9ee221afe4fa55b2d13fc63c5ae14348"
  5109. },
  5110. "dist": {
  5111. "type": "zip",
  5112. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/1c0a181c9ee221afe4fa55b2d13fc63c5ae14348",
  5113. "reference": "1c0a181c9ee221afe4fa55b2d13fc63c5ae14348",
  5114. "shasum": "",
  5115. "mirrors": [
  5116. {
  5117. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5118. "preferred": true
  5119. }
  5120. ]
  5121. },
  5122. "require": {
  5123. "php": ">=8.0.2",
  5124. "psr/cache": "^3.0"
  5125. },
  5126. "suggest": {
  5127. "symfony/cache-implementation": ""
  5128. },
  5129. "type": "library",
  5130. "extra": {
  5131. "thanks": {
  5132. "url": "https://github.com/symfony/contracts",
  5133. "name": "symfony/contracts"
  5134. },
  5135. "branch-alias": {
  5136. "dev-main": "3.0-dev"
  5137. }
  5138. },
  5139. "autoload": {
  5140. "psr-4": {
  5141. "Symfony\\Contracts\\Cache\\": ""
  5142. }
  5143. },
  5144. "notification-url": "https://packagist.org/downloads/",
  5145. "license": [
  5146. "MIT"
  5147. ],
  5148. "authors": [
  5149. {
  5150. "name": "Nicolas Grekas",
  5151. "email": "p@tchwork.com"
  5152. },
  5153. {
  5154. "name": "Symfony Community",
  5155. "homepage": "https://symfony.com/contributors"
  5156. }
  5157. ],
  5158. "description": "Generic abstractions related to caching",
  5159. "homepage": "https://symfony.com",
  5160. "keywords": [
  5161. "abstractions",
  5162. "contracts",
  5163. "decoupling",
  5164. "interfaces",
  5165. "interoperability",
  5166. "standards"
  5167. ],
  5168. "support": {
  5169. "source": "https://github.com/symfony/cache-contracts/tree/v3.0.2"
  5170. },
  5171. "funding": [
  5172. {
  5173. "url": "https://symfony.com/sponsor",
  5174. "type": "custom"
  5175. },
  5176. {
  5177. "url": "https://github.com/fabpot",
  5178. "type": "github"
  5179. },
  5180. {
  5181. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5182. "type": "tidelift"
  5183. }
  5184. ],
  5185. "time": "2022-01-02T09:55:41+00:00"
  5186. },
  5187. {
  5188. "name": "symfony/console",
  5189. "version": "v5.4.47",
  5190. "source": {
  5191. "type": "git",
  5192. "url": "https://github.com/symfony/console.git",
  5193. "reference": "c4ba980ca61a9eb18ee6bcc73f28e475852bb1ed"
  5194. },
  5195. "dist": {
  5196. "type": "zip",
  5197. "url": "https://api.github.com/repos/symfony/console/zipball/c4ba980ca61a9eb18ee6bcc73f28e475852bb1ed",
  5198. "reference": "c4ba980ca61a9eb18ee6bcc73f28e475852bb1ed",
  5199. "shasum": "",
  5200. "mirrors": [
  5201. {
  5202. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5203. "preferred": true
  5204. }
  5205. ]
  5206. },
  5207. "require": {
  5208. "php": ">=7.2.5",
  5209. "symfony/deprecation-contracts": "^2.1|^3",
  5210. "symfony/polyfill-mbstring": "~1.0",
  5211. "symfony/polyfill-php73": "^1.9",
  5212. "symfony/polyfill-php80": "^1.16",
  5213. "symfony/service-contracts": "^1.1|^2|^3",
  5214. "symfony/string": "^5.1|^6.0"
  5215. },
  5216. "conflict": {
  5217. "psr/log": ">=3",
  5218. "symfony/dependency-injection": "<4.4",
  5219. "symfony/dotenv": "<5.1",
  5220. "symfony/event-dispatcher": "<4.4",
  5221. "symfony/lock": "<4.4",
  5222. "symfony/process": "<4.4"
  5223. },
  5224. "provide": {
  5225. "psr/log-implementation": "1.0|2.0"
  5226. },
  5227. "require-dev": {
  5228. "psr/log": "^1|^2",
  5229. "symfony/config": "^4.4|^5.0|^6.0",
  5230. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  5231. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  5232. "symfony/lock": "^4.4|^5.0|^6.0",
  5233. "symfony/process": "^4.4|^5.0|^6.0",
  5234. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  5235. },
  5236. "suggest": {
  5237. "psr/log": "For using the console logger",
  5238. "symfony/event-dispatcher": "",
  5239. "symfony/lock": "",
  5240. "symfony/process": ""
  5241. },
  5242. "type": "library",
  5243. "autoload": {
  5244. "psr-4": {
  5245. "Symfony\\Component\\Console\\": ""
  5246. },
  5247. "exclude-from-classmap": [
  5248. "/Tests/"
  5249. ]
  5250. },
  5251. "notification-url": "https://packagist.org/downloads/",
  5252. "license": [
  5253. "MIT"
  5254. ],
  5255. "authors": [
  5256. {
  5257. "name": "Fabien Potencier",
  5258. "email": "fabien@symfony.com"
  5259. },
  5260. {
  5261. "name": "Symfony Community",
  5262. "homepage": "https://symfony.com/contributors"
  5263. }
  5264. ],
  5265. "description": "Eases the creation of beautiful and testable command line interfaces",
  5266. "homepage": "https://symfony.com",
  5267. "keywords": [
  5268. "cli",
  5269. "command-line",
  5270. "console",
  5271. "terminal"
  5272. ],
  5273. "support": {
  5274. "source": "https://github.com/symfony/console/tree/v5.4.47"
  5275. },
  5276. "funding": [
  5277. {
  5278. "url": "https://symfony.com/sponsor",
  5279. "type": "custom"
  5280. },
  5281. {
  5282. "url": "https://github.com/fabpot",
  5283. "type": "github"
  5284. },
  5285. {
  5286. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5287. "type": "tidelift"
  5288. }
  5289. ],
  5290. "time": "2024-11-06T11:30:55+00:00"
  5291. },
  5292. {
  5293. "name": "symfony/css-selector",
  5294. "version": "v6.0.19",
  5295. "source": {
  5296. "type": "git",
  5297. "url": "https://github.com/symfony/css-selector.git",
  5298. "reference": "f1d00bddb83a4cb2138564b2150001cb6ce272b1"
  5299. },
  5300. "dist": {
  5301. "type": "zip",
  5302. "url": "https://api.github.com/repos/symfony/css-selector/zipball/f1d00bddb83a4cb2138564b2150001cb6ce272b1",
  5303. "reference": "f1d00bddb83a4cb2138564b2150001cb6ce272b1",
  5304. "shasum": "",
  5305. "mirrors": [
  5306. {
  5307. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5308. "preferred": true
  5309. }
  5310. ]
  5311. },
  5312. "require": {
  5313. "php": ">=8.0.2"
  5314. },
  5315. "type": "library",
  5316. "autoload": {
  5317. "psr-4": {
  5318. "Symfony\\Component\\CssSelector\\": ""
  5319. },
  5320. "exclude-from-classmap": [
  5321. "/Tests/"
  5322. ]
  5323. },
  5324. "notification-url": "https://packagist.org/downloads/",
  5325. "license": [
  5326. "MIT"
  5327. ],
  5328. "authors": [
  5329. {
  5330. "name": "Fabien Potencier",
  5331. "email": "fabien@symfony.com"
  5332. },
  5333. {
  5334. "name": "Jean-François Simon",
  5335. "email": "jeanfrancois.simon@sensiolabs.com"
  5336. },
  5337. {
  5338. "name": "Symfony Community",
  5339. "homepage": "https://symfony.com/contributors"
  5340. }
  5341. ],
  5342. "description": "Converts CSS selectors to XPath expressions",
  5343. "homepage": "https://symfony.com",
  5344. "support": {
  5345. "source": "https://github.com/symfony/css-selector/tree/v6.0.19"
  5346. },
  5347. "funding": [
  5348. {
  5349. "url": "https://symfony.com/sponsor",
  5350. "type": "custom"
  5351. },
  5352. {
  5353. "url": "https://github.com/fabpot",
  5354. "type": "github"
  5355. },
  5356. {
  5357. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5358. "type": "tidelift"
  5359. }
  5360. ],
  5361. "time": "2023-01-01T08:36:10+00:00"
  5362. },
  5363. {
  5364. "name": "symfony/deprecation-contracts",
  5365. "version": "v3.0.2",
  5366. "source": {
  5367. "type": "git",
  5368. "url": "https://github.com/symfony/deprecation-contracts.git",
  5369. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c"
  5370. },
  5371. "dist": {
  5372. "type": "zip",
  5373. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  5374. "reference": "26954b3d62a6c5fd0ea8a2a00c0353a14978d05c",
  5375. "shasum": "",
  5376. "mirrors": [
  5377. {
  5378. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5379. "preferred": true
  5380. }
  5381. ]
  5382. },
  5383. "require": {
  5384. "php": ">=8.0.2"
  5385. },
  5386. "type": "library",
  5387. "extra": {
  5388. "thanks": {
  5389. "url": "https://github.com/symfony/contracts",
  5390. "name": "symfony/contracts"
  5391. },
  5392. "branch-alias": {
  5393. "dev-main": "3.0-dev"
  5394. }
  5395. },
  5396. "autoload": {
  5397. "files": [
  5398. "function.php"
  5399. ]
  5400. },
  5401. "notification-url": "https://packagist.org/downloads/",
  5402. "license": [
  5403. "MIT"
  5404. ],
  5405. "authors": [
  5406. {
  5407. "name": "Nicolas Grekas",
  5408. "email": "p@tchwork.com"
  5409. },
  5410. {
  5411. "name": "Symfony Community",
  5412. "homepage": "https://symfony.com/contributors"
  5413. }
  5414. ],
  5415. "description": "A generic function and convention to trigger deprecation notices",
  5416. "homepage": "https://symfony.com",
  5417. "support": {
  5418. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.0.2"
  5419. },
  5420. "funding": [
  5421. {
  5422. "url": "https://symfony.com/sponsor",
  5423. "type": "custom"
  5424. },
  5425. {
  5426. "url": "https://github.com/fabpot",
  5427. "type": "github"
  5428. },
  5429. {
  5430. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5431. "type": "tidelift"
  5432. }
  5433. ],
  5434. "time": "2022-01-02T09:55:41+00:00"
  5435. },
  5436. {
  5437. "name": "symfony/error-handler",
  5438. "version": "v5.4.46",
  5439. "source": {
  5440. "type": "git",
  5441. "url": "https://github.com/symfony/error-handler.git",
  5442. "reference": "d19ede7a2cafb386be9486c580649d0f9e3d0363"
  5443. },
  5444. "dist": {
  5445. "type": "zip",
  5446. "url": "https://api.github.com/repos/symfony/error-handler/zipball/d19ede7a2cafb386be9486c580649d0f9e3d0363",
  5447. "reference": "d19ede7a2cafb386be9486c580649d0f9e3d0363",
  5448. "shasum": "",
  5449. "mirrors": [
  5450. {
  5451. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5452. "preferred": true
  5453. }
  5454. ]
  5455. },
  5456. "require": {
  5457. "php": ">=7.2.5",
  5458. "psr/log": "^1|^2|^3",
  5459. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  5460. },
  5461. "require-dev": {
  5462. "symfony/deprecation-contracts": "^2.1|^3",
  5463. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  5464. "symfony/serializer": "^4.4|^5.0|^6.0"
  5465. },
  5466. "bin": [
  5467. "Resources/bin/patch-type-declarations"
  5468. ],
  5469. "type": "library",
  5470. "autoload": {
  5471. "psr-4": {
  5472. "Symfony\\Component\\ErrorHandler\\": ""
  5473. },
  5474. "exclude-from-classmap": [
  5475. "/Tests/"
  5476. ]
  5477. },
  5478. "notification-url": "https://packagist.org/downloads/",
  5479. "license": [
  5480. "MIT"
  5481. ],
  5482. "authors": [
  5483. {
  5484. "name": "Fabien Potencier",
  5485. "email": "fabien@symfony.com"
  5486. },
  5487. {
  5488. "name": "Symfony Community",
  5489. "homepage": "https://symfony.com/contributors"
  5490. }
  5491. ],
  5492. "description": "Provides tools to manage errors and ease debugging PHP code",
  5493. "homepage": "https://symfony.com",
  5494. "support": {
  5495. "source": "https://github.com/symfony/error-handler/tree/v5.4.46"
  5496. },
  5497. "funding": [
  5498. {
  5499. "url": "https://symfony.com/sponsor",
  5500. "type": "custom"
  5501. },
  5502. {
  5503. "url": "https://github.com/fabpot",
  5504. "type": "github"
  5505. },
  5506. {
  5507. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5508. "type": "tidelift"
  5509. }
  5510. ],
  5511. "time": "2024-11-05T14:17:06+00:00"
  5512. },
  5513. {
  5514. "name": "symfony/event-dispatcher",
  5515. "version": "v6.0.19",
  5516. "source": {
  5517. "type": "git",
  5518. "url": "https://github.com/symfony/event-dispatcher.git",
  5519. "reference": "2eaf8e63bc5b8cefabd4a800157f0d0c094f677a"
  5520. },
  5521. "dist": {
  5522. "type": "zip",
  5523. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/2eaf8e63bc5b8cefabd4a800157f0d0c094f677a",
  5524. "reference": "2eaf8e63bc5b8cefabd4a800157f0d0c094f677a",
  5525. "shasum": "",
  5526. "mirrors": [
  5527. {
  5528. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5529. "preferred": true
  5530. }
  5531. ]
  5532. },
  5533. "require": {
  5534. "php": ">=8.0.2",
  5535. "symfony/event-dispatcher-contracts": "^2|^3"
  5536. },
  5537. "conflict": {
  5538. "symfony/dependency-injection": "<5.4"
  5539. },
  5540. "provide": {
  5541. "psr/event-dispatcher-implementation": "1.0",
  5542. "symfony/event-dispatcher-implementation": "2.0|3.0"
  5543. },
  5544. "require-dev": {
  5545. "psr/log": "^1|^2|^3",
  5546. "symfony/config": "^5.4|^6.0",
  5547. "symfony/dependency-injection": "^5.4|^6.0",
  5548. "symfony/error-handler": "^5.4|^6.0",
  5549. "symfony/expression-language": "^5.4|^6.0",
  5550. "symfony/http-foundation": "^5.4|^6.0",
  5551. "symfony/service-contracts": "^1.1|^2|^3",
  5552. "symfony/stopwatch": "^5.4|^6.0"
  5553. },
  5554. "suggest": {
  5555. "symfony/dependency-injection": "",
  5556. "symfony/http-kernel": ""
  5557. },
  5558. "type": "library",
  5559. "autoload": {
  5560. "psr-4": {
  5561. "Symfony\\Component\\EventDispatcher\\": ""
  5562. },
  5563. "exclude-from-classmap": [
  5564. "/Tests/"
  5565. ]
  5566. },
  5567. "notification-url": "https://packagist.org/downloads/",
  5568. "license": [
  5569. "MIT"
  5570. ],
  5571. "authors": [
  5572. {
  5573. "name": "Fabien Potencier",
  5574. "email": "fabien@symfony.com"
  5575. },
  5576. {
  5577. "name": "Symfony Community",
  5578. "homepage": "https://symfony.com/contributors"
  5579. }
  5580. ],
  5581. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5582. "homepage": "https://symfony.com",
  5583. "support": {
  5584. "source": "https://github.com/symfony/event-dispatcher/tree/v6.0.19"
  5585. },
  5586. "funding": [
  5587. {
  5588. "url": "https://symfony.com/sponsor",
  5589. "type": "custom"
  5590. },
  5591. {
  5592. "url": "https://github.com/fabpot",
  5593. "type": "github"
  5594. },
  5595. {
  5596. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5597. "type": "tidelift"
  5598. }
  5599. ],
  5600. "time": "2023-01-01T08:36:10+00:00"
  5601. },
  5602. {
  5603. "name": "symfony/event-dispatcher-contracts",
  5604. "version": "v3.0.2",
  5605. "source": {
  5606. "type": "git",
  5607. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5608. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051"
  5609. },
  5610. "dist": {
  5611. "type": "zip",
  5612. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7bc61cc2db649b4637d331240c5346dcc7708051",
  5613. "reference": "7bc61cc2db649b4637d331240c5346dcc7708051",
  5614. "shasum": "",
  5615. "mirrors": [
  5616. {
  5617. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5618. "preferred": true
  5619. }
  5620. ]
  5621. },
  5622. "require": {
  5623. "php": ">=8.0.2",
  5624. "psr/event-dispatcher": "^1"
  5625. },
  5626. "suggest": {
  5627. "symfony/event-dispatcher-implementation": ""
  5628. },
  5629. "type": "library",
  5630. "extra": {
  5631. "thanks": {
  5632. "url": "https://github.com/symfony/contracts",
  5633. "name": "symfony/contracts"
  5634. },
  5635. "branch-alias": {
  5636. "dev-main": "3.0-dev"
  5637. }
  5638. },
  5639. "autoload": {
  5640. "psr-4": {
  5641. "Symfony\\Contracts\\EventDispatcher\\": ""
  5642. }
  5643. },
  5644. "notification-url": "https://packagist.org/downloads/",
  5645. "license": [
  5646. "MIT"
  5647. ],
  5648. "authors": [
  5649. {
  5650. "name": "Nicolas Grekas",
  5651. "email": "p@tchwork.com"
  5652. },
  5653. {
  5654. "name": "Symfony Community",
  5655. "homepage": "https://symfony.com/contributors"
  5656. }
  5657. ],
  5658. "description": "Generic abstractions related to dispatching event",
  5659. "homepage": "https://symfony.com",
  5660. "keywords": [
  5661. "abstractions",
  5662. "contracts",
  5663. "decoupling",
  5664. "interfaces",
  5665. "interoperability",
  5666. "standards"
  5667. ],
  5668. "support": {
  5669. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.0.2"
  5670. },
  5671. "funding": [
  5672. {
  5673. "url": "https://symfony.com/sponsor",
  5674. "type": "custom"
  5675. },
  5676. {
  5677. "url": "https://github.com/fabpot",
  5678. "type": "github"
  5679. },
  5680. {
  5681. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5682. "type": "tidelift"
  5683. }
  5684. ],
  5685. "time": "2022-01-02T09:55:41+00:00"
  5686. },
  5687. {
  5688. "name": "symfony/finder",
  5689. "version": "v5.4.45",
  5690. "source": {
  5691. "type": "git",
  5692. "url": "https://github.com/symfony/finder.git",
  5693. "reference": "63741784cd7b9967975eec610b256eed3ede022b"
  5694. },
  5695. "dist": {
  5696. "type": "zip",
  5697. "url": "https://api.github.com/repos/symfony/finder/zipball/63741784cd7b9967975eec610b256eed3ede022b",
  5698. "reference": "63741784cd7b9967975eec610b256eed3ede022b",
  5699. "shasum": "",
  5700. "mirrors": [
  5701. {
  5702. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5703. "preferred": true
  5704. }
  5705. ]
  5706. },
  5707. "require": {
  5708. "php": ">=7.2.5",
  5709. "symfony/deprecation-contracts": "^2.1|^3",
  5710. "symfony/polyfill-php80": "^1.16"
  5711. },
  5712. "type": "library",
  5713. "autoload": {
  5714. "psr-4": {
  5715. "Symfony\\Component\\Finder\\": ""
  5716. },
  5717. "exclude-from-classmap": [
  5718. "/Tests/"
  5719. ]
  5720. },
  5721. "notification-url": "https://packagist.org/downloads/",
  5722. "license": [
  5723. "MIT"
  5724. ],
  5725. "authors": [
  5726. {
  5727. "name": "Fabien Potencier",
  5728. "email": "fabien@symfony.com"
  5729. },
  5730. {
  5731. "name": "Symfony Community",
  5732. "homepage": "https://symfony.com/contributors"
  5733. }
  5734. ],
  5735. "description": "Finds files and directories via an intuitive fluent interface",
  5736. "homepage": "https://symfony.com",
  5737. "support": {
  5738. "source": "https://github.com/symfony/finder/tree/v5.4.45"
  5739. },
  5740. "funding": [
  5741. {
  5742. "url": "https://symfony.com/sponsor",
  5743. "type": "custom"
  5744. },
  5745. {
  5746. "url": "https://github.com/fabpot",
  5747. "type": "github"
  5748. },
  5749. {
  5750. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5751. "type": "tidelift"
  5752. }
  5753. ],
  5754. "time": "2024-09-28T13:32:08+00:00"
  5755. },
  5756. {
  5757. "name": "symfony/http-foundation",
  5758. "version": "v5.4.50",
  5759. "source": {
  5760. "type": "git",
  5761. "url": "https://github.com/symfony/http-foundation.git",
  5762. "reference": "1a0706e8b8041046052ea2695eb8aeee04f97609"
  5763. },
  5764. "dist": {
  5765. "type": "zip",
  5766. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/1a0706e8b8041046052ea2695eb8aeee04f97609",
  5767. "reference": "1a0706e8b8041046052ea2695eb8aeee04f97609",
  5768. "shasum": "",
  5769. "mirrors": [
  5770. {
  5771. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5772. "preferred": true
  5773. }
  5774. ]
  5775. },
  5776. "require": {
  5777. "php": ">=7.2.5",
  5778. "symfony/deprecation-contracts": "^2.1|^3",
  5779. "symfony/polyfill-mbstring": "~1.1",
  5780. "symfony/polyfill-php80": "^1.16"
  5781. },
  5782. "require-dev": {
  5783. "predis/predis": "^1.0|^2.0",
  5784. "symfony/cache": "^4.4|^5.0|^6.0",
  5785. "symfony/dependency-injection": "^5.4|^6.0",
  5786. "symfony/expression-language": "^4.4|^5.0|^6.0",
  5787. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  5788. "symfony/mime": "^4.4|^5.0|^6.0",
  5789. "symfony/rate-limiter": "^5.2|^6.0"
  5790. },
  5791. "suggest": {
  5792. "symfony/mime": "To use the file extension guesser"
  5793. },
  5794. "type": "library",
  5795. "autoload": {
  5796. "psr-4": {
  5797. "Symfony\\Component\\HttpFoundation\\": ""
  5798. },
  5799. "exclude-from-classmap": [
  5800. "/Tests/"
  5801. ]
  5802. },
  5803. "notification-url": "https://packagist.org/downloads/",
  5804. "license": [
  5805. "MIT"
  5806. ],
  5807. "authors": [
  5808. {
  5809. "name": "Fabien Potencier",
  5810. "email": "fabien@symfony.com"
  5811. },
  5812. {
  5813. "name": "Symfony Community",
  5814. "homepage": "https://symfony.com/contributors"
  5815. }
  5816. ],
  5817. "description": "Defines an object-oriented layer for the HTTP specification",
  5818. "homepage": "https://symfony.com",
  5819. "support": {
  5820. "source": "https://github.com/symfony/http-foundation/tree/v5.4.50"
  5821. },
  5822. "funding": [
  5823. {
  5824. "url": "https://symfony.com/sponsor",
  5825. "type": "custom"
  5826. },
  5827. {
  5828. "url": "https://github.com/fabpot",
  5829. "type": "github"
  5830. },
  5831. {
  5832. "url": "https://github.com/nicolas-grekas",
  5833. "type": "github"
  5834. },
  5835. {
  5836. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5837. "type": "tidelift"
  5838. }
  5839. ],
  5840. "time": "2025-11-03T12:58:48+00:00"
  5841. },
  5842. {
  5843. "name": "symfony/http-kernel",
  5844. "version": "v5.4.50",
  5845. "source": {
  5846. "type": "git",
  5847. "url": "https://github.com/symfony/http-kernel.git",
  5848. "reference": "2fe5cf994d7e1e189258b7f7d3395cc5999a9762"
  5849. },
  5850. "dist": {
  5851. "type": "zip",
  5852. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/2fe5cf994d7e1e189258b7f7d3395cc5999a9762",
  5853. "reference": "2fe5cf994d7e1e189258b7f7d3395cc5999a9762",
  5854. "shasum": "",
  5855. "mirrors": [
  5856. {
  5857. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5858. "preferred": true
  5859. }
  5860. ]
  5861. },
  5862. "require": {
  5863. "php": ">=7.2.5",
  5864. "psr/log": "^1|^2",
  5865. "symfony/deprecation-contracts": "^2.1|^3",
  5866. "symfony/error-handler": "^4.4|^5.0|^6.0",
  5867. "symfony/event-dispatcher": "^5.0|^6.0",
  5868. "symfony/http-foundation": "^5.4.21|^6.2.7",
  5869. "symfony/polyfill-ctype": "^1.8",
  5870. "symfony/polyfill-php73": "^1.9",
  5871. "symfony/polyfill-php80": "^1.16"
  5872. },
  5873. "conflict": {
  5874. "symfony/browser-kit": "<5.4",
  5875. "symfony/cache": "<5.0",
  5876. "symfony/config": "<5.0",
  5877. "symfony/console": "<4.4",
  5878. "symfony/dependency-injection": "<5.3",
  5879. "symfony/doctrine-bridge": "<5.0",
  5880. "symfony/form": "<5.0",
  5881. "symfony/http-client": "<5.0",
  5882. "symfony/mailer": "<5.0",
  5883. "symfony/messenger": "<5.0",
  5884. "symfony/translation": "<5.0",
  5885. "symfony/twig-bridge": "<5.0",
  5886. "symfony/validator": "<5.0",
  5887. "twig/twig": "<2.13"
  5888. },
  5889. "provide": {
  5890. "psr/log-implementation": "1.0|2.0"
  5891. },
  5892. "require-dev": {
  5893. "psr/cache": "^1.0|^2.0|^3.0",
  5894. "symfony/browser-kit": "^5.4|^6.0",
  5895. "symfony/config": "^5.0|^6.0",
  5896. "symfony/console": "^4.4|^5.0|^6.0",
  5897. "symfony/css-selector": "^4.4|^5.0|^6.0",
  5898. "symfony/dependency-injection": "^5.3|^6.0",
  5899. "symfony/dom-crawler": "^4.4|^5.0|^6.0",
  5900. "symfony/expression-language": "^4.4|^5.0|^6.0",
  5901. "symfony/finder": "^4.4|^5.0|^6.0",
  5902. "symfony/http-client-contracts": "^1.1|^2|^3",
  5903. "symfony/process": "^4.4|^5.0|^6.0",
  5904. "symfony/routing": "^4.4|^5.0|^6.0",
  5905. "symfony/stopwatch": "^4.4|^5.0|^6.0",
  5906. "symfony/translation": "^4.4|^5.0|^6.0",
  5907. "symfony/translation-contracts": "^1.1|^2|^3",
  5908. "symfony/var-dumper": "^4.4.31|^5.4",
  5909. "twig/twig": "^2.13|^3.0.4"
  5910. },
  5911. "suggest": {
  5912. "symfony/browser-kit": "",
  5913. "symfony/config": "",
  5914. "symfony/console": "",
  5915. "symfony/dependency-injection": ""
  5916. },
  5917. "type": "library",
  5918. "autoload": {
  5919. "psr-4": {
  5920. "Symfony\\Component\\HttpKernel\\": ""
  5921. },
  5922. "exclude-from-classmap": [
  5923. "/Tests/"
  5924. ]
  5925. },
  5926. "notification-url": "https://packagist.org/downloads/",
  5927. "license": [
  5928. "MIT"
  5929. ],
  5930. "authors": [
  5931. {
  5932. "name": "Fabien Potencier",
  5933. "email": "fabien@symfony.com"
  5934. },
  5935. {
  5936. "name": "Symfony Community",
  5937. "homepage": "https://symfony.com/contributors"
  5938. }
  5939. ],
  5940. "description": "Provides a structured process for converting a Request into a Response",
  5941. "homepage": "https://symfony.com",
  5942. "support": {
  5943. "source": "https://github.com/symfony/http-kernel/tree/v5.4.50"
  5944. },
  5945. "funding": [
  5946. {
  5947. "url": "https://symfony.com/sponsor",
  5948. "type": "custom"
  5949. },
  5950. {
  5951. "url": "https://github.com/fabpot",
  5952. "type": "github"
  5953. },
  5954. {
  5955. "url": "https://github.com/nicolas-grekas",
  5956. "type": "github"
  5957. },
  5958. {
  5959. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5960. "type": "tidelift"
  5961. }
  5962. ],
  5963. "time": "2025-11-12T11:09:00+00:00"
  5964. },
  5965. {
  5966. "name": "symfony/mime",
  5967. "version": "v5.4.45",
  5968. "source": {
  5969. "type": "git",
  5970. "url": "https://github.com/symfony/mime.git",
  5971. "reference": "8c1b9b3e5b52981551fc6044539af1d974e39064"
  5972. },
  5973. "dist": {
  5974. "type": "zip",
  5975. "url": "https://api.github.com/repos/symfony/mime/zipball/8c1b9b3e5b52981551fc6044539af1d974e39064",
  5976. "reference": "8c1b9b3e5b52981551fc6044539af1d974e39064",
  5977. "shasum": "",
  5978. "mirrors": [
  5979. {
  5980. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5981. "preferred": true
  5982. }
  5983. ]
  5984. },
  5985. "require": {
  5986. "php": ">=7.2.5",
  5987. "symfony/deprecation-contracts": "^2.1|^3",
  5988. "symfony/polyfill-intl-idn": "^1.10",
  5989. "symfony/polyfill-mbstring": "^1.0",
  5990. "symfony/polyfill-php80": "^1.16"
  5991. },
  5992. "conflict": {
  5993. "egulias/email-validator": "~3.0.0",
  5994. "phpdocumentor/reflection-docblock": "<3.2.2",
  5995. "phpdocumentor/type-resolver": "<1.4.0",
  5996. "symfony/mailer": "<4.4",
  5997. "symfony/serializer": "<5.4.35|>=6,<6.3.12|>=6.4,<6.4.3"
  5998. },
  5999. "require-dev": {
  6000. "egulias/email-validator": "^2.1.10|^3.1|^4",
  6001. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6002. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6003. "symfony/process": "^5.4|^6.4",
  6004. "symfony/property-access": "^4.4|^5.1|^6.0",
  6005. "symfony/property-info": "^4.4|^5.1|^6.0",
  6006. "symfony/serializer": "^5.4.35|~6.3.12|^6.4.3"
  6007. },
  6008. "type": "library",
  6009. "autoload": {
  6010. "psr-4": {
  6011. "Symfony\\Component\\Mime\\": ""
  6012. },
  6013. "exclude-from-classmap": [
  6014. "/Tests/"
  6015. ]
  6016. },
  6017. "notification-url": "https://packagist.org/downloads/",
  6018. "license": [
  6019. "MIT"
  6020. ],
  6021. "authors": [
  6022. {
  6023. "name": "Fabien Potencier",
  6024. "email": "fabien@symfony.com"
  6025. },
  6026. {
  6027. "name": "Symfony Community",
  6028. "homepage": "https://symfony.com/contributors"
  6029. }
  6030. ],
  6031. "description": "Allows manipulating MIME messages",
  6032. "homepage": "https://symfony.com",
  6033. "keywords": [
  6034. "mime",
  6035. "mime-type"
  6036. ],
  6037. "support": {
  6038. "source": "https://github.com/symfony/mime/tree/v5.4.45"
  6039. },
  6040. "funding": [
  6041. {
  6042. "url": "https://symfony.com/sponsor",
  6043. "type": "custom"
  6044. },
  6045. {
  6046. "url": "https://github.com/fabpot",
  6047. "type": "github"
  6048. },
  6049. {
  6050. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6051. "type": "tidelift"
  6052. }
  6053. ],
  6054. "time": "2024-10-23T20:18:32+00:00"
  6055. },
  6056. {
  6057. "name": "symfony/polyfill-ctype",
  6058. "version": "v1.32.0",
  6059. "source": {
  6060. "type": "git",
  6061. "url": "https://github.com/symfony/polyfill-ctype.git",
  6062. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  6063. },
  6064. "dist": {
  6065. "type": "zip",
  6066. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  6067. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  6068. "shasum": "",
  6069. "mirrors": [
  6070. {
  6071. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6072. "preferred": true
  6073. }
  6074. ]
  6075. },
  6076. "require": {
  6077. "php": ">=7.2"
  6078. },
  6079. "provide": {
  6080. "ext-ctype": "*"
  6081. },
  6082. "suggest": {
  6083. "ext-ctype": "For best performance"
  6084. },
  6085. "type": "library",
  6086. "extra": {
  6087. "thanks": {
  6088. "url": "https://github.com/symfony/polyfill",
  6089. "name": "symfony/polyfill"
  6090. }
  6091. },
  6092. "autoload": {
  6093. "files": [
  6094. "bootstrap.php"
  6095. ],
  6096. "psr-4": {
  6097. "Symfony\\Polyfill\\Ctype\\": ""
  6098. }
  6099. },
  6100. "notification-url": "https://packagist.org/downloads/",
  6101. "license": [
  6102. "MIT"
  6103. ],
  6104. "authors": [
  6105. {
  6106. "name": "Gert de Pagter",
  6107. "email": "BackEndTea@gmail.com"
  6108. },
  6109. {
  6110. "name": "Symfony Community",
  6111. "homepage": "https://symfony.com/contributors"
  6112. }
  6113. ],
  6114. "description": "Symfony polyfill for ctype functions",
  6115. "homepage": "https://symfony.com",
  6116. "keywords": [
  6117. "compatibility",
  6118. "ctype",
  6119. "polyfill",
  6120. "portable"
  6121. ],
  6122. "support": {
  6123. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.32.0"
  6124. },
  6125. "funding": [
  6126. {
  6127. "url": "https://symfony.com/sponsor",
  6128. "type": "custom"
  6129. },
  6130. {
  6131. "url": "https://github.com/fabpot",
  6132. "type": "github"
  6133. },
  6134. {
  6135. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6136. "type": "tidelift"
  6137. }
  6138. ],
  6139. "time": "2024-09-09T11:45:10+00:00"
  6140. },
  6141. {
  6142. "name": "symfony/polyfill-iconv",
  6143. "version": "v1.32.0",
  6144. "source": {
  6145. "type": "git",
  6146. "url": "https://github.com/symfony/polyfill-iconv.git",
  6147. "reference": "5f3b930437ae03ae5dff61269024d8ea1b3774aa"
  6148. },
  6149. "dist": {
  6150. "type": "zip",
  6151. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/5f3b930437ae03ae5dff61269024d8ea1b3774aa",
  6152. "reference": "5f3b930437ae03ae5dff61269024d8ea1b3774aa",
  6153. "shasum": "",
  6154. "mirrors": [
  6155. {
  6156. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6157. "preferred": true
  6158. }
  6159. ]
  6160. },
  6161. "require": {
  6162. "php": ">=7.2"
  6163. },
  6164. "provide": {
  6165. "ext-iconv": "*"
  6166. },
  6167. "suggest": {
  6168. "ext-iconv": "For best performance"
  6169. },
  6170. "type": "library",
  6171. "extra": {
  6172. "thanks": {
  6173. "url": "https://github.com/symfony/polyfill",
  6174. "name": "symfony/polyfill"
  6175. }
  6176. },
  6177. "autoload": {
  6178. "files": [
  6179. "bootstrap.php"
  6180. ],
  6181. "psr-4": {
  6182. "Symfony\\Polyfill\\Iconv\\": ""
  6183. }
  6184. },
  6185. "notification-url": "https://packagist.org/downloads/",
  6186. "license": [
  6187. "MIT"
  6188. ],
  6189. "authors": [
  6190. {
  6191. "name": "Nicolas Grekas",
  6192. "email": "p@tchwork.com"
  6193. },
  6194. {
  6195. "name": "Symfony Community",
  6196. "homepage": "https://symfony.com/contributors"
  6197. }
  6198. ],
  6199. "description": "Symfony polyfill for the Iconv extension",
  6200. "homepage": "https://symfony.com",
  6201. "keywords": [
  6202. "compatibility",
  6203. "iconv",
  6204. "polyfill",
  6205. "portable",
  6206. "shim"
  6207. ],
  6208. "support": {
  6209. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.32.0"
  6210. },
  6211. "funding": [
  6212. {
  6213. "url": "https://symfony.com/sponsor",
  6214. "type": "custom"
  6215. },
  6216. {
  6217. "url": "https://github.com/fabpot",
  6218. "type": "github"
  6219. },
  6220. {
  6221. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6222. "type": "tidelift"
  6223. }
  6224. ],
  6225. "time": "2024-09-17T14:58:18+00:00"
  6226. },
  6227. {
  6228. "name": "symfony/polyfill-intl-grapheme",
  6229. "version": "v1.33.0",
  6230. "source": {
  6231. "type": "git",
  6232. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6233. "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70"
  6234. },
  6235. "dist": {
  6236. "type": "zip",
  6237. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/380872130d3a5dd3ace2f4010d95125fde5d5c70",
  6238. "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70",
  6239. "shasum": "",
  6240. "mirrors": [
  6241. {
  6242. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6243. "preferred": true
  6244. }
  6245. ]
  6246. },
  6247. "require": {
  6248. "php": ">=7.2"
  6249. },
  6250. "suggest": {
  6251. "ext-intl": "For best performance"
  6252. },
  6253. "type": "library",
  6254. "extra": {
  6255. "thanks": {
  6256. "url": "https://github.com/symfony/polyfill",
  6257. "name": "symfony/polyfill"
  6258. }
  6259. },
  6260. "autoload": {
  6261. "files": [
  6262. "bootstrap.php"
  6263. ],
  6264. "psr-4": {
  6265. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6266. }
  6267. },
  6268. "notification-url": "https://packagist.org/downloads/",
  6269. "license": [
  6270. "MIT"
  6271. ],
  6272. "authors": [
  6273. {
  6274. "name": "Nicolas Grekas",
  6275. "email": "p@tchwork.com"
  6276. },
  6277. {
  6278. "name": "Symfony Community",
  6279. "homepage": "https://symfony.com/contributors"
  6280. }
  6281. ],
  6282. "description": "Symfony polyfill for intl's grapheme_* functions",
  6283. "homepage": "https://symfony.com",
  6284. "keywords": [
  6285. "compatibility",
  6286. "grapheme",
  6287. "intl",
  6288. "polyfill",
  6289. "portable",
  6290. "shim"
  6291. ],
  6292. "support": {
  6293. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.33.0"
  6294. },
  6295. "funding": [
  6296. {
  6297. "url": "https://symfony.com/sponsor",
  6298. "type": "custom"
  6299. },
  6300. {
  6301. "url": "https://github.com/fabpot",
  6302. "type": "github"
  6303. },
  6304. {
  6305. "url": "https://github.com/nicolas-grekas",
  6306. "type": "github"
  6307. },
  6308. {
  6309. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6310. "type": "tidelift"
  6311. }
  6312. ],
  6313. "time": "2025-06-27T09:58:17+00:00"
  6314. },
  6315. {
  6316. "name": "symfony/polyfill-intl-idn",
  6317. "version": "v1.32.0",
  6318. "source": {
  6319. "type": "git",
  6320. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6321. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3"
  6322. },
  6323. "dist": {
  6324. "type": "zip",
  6325. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  6326. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  6327. "shasum": "",
  6328. "mirrors": [
  6329. {
  6330. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6331. "preferred": true
  6332. }
  6333. ]
  6334. },
  6335. "require": {
  6336. "php": ">=7.2",
  6337. "symfony/polyfill-intl-normalizer": "^1.10"
  6338. },
  6339. "suggest": {
  6340. "ext-intl": "For best performance"
  6341. },
  6342. "type": "library",
  6343. "extra": {
  6344. "thanks": {
  6345. "url": "https://github.com/symfony/polyfill",
  6346. "name": "symfony/polyfill"
  6347. }
  6348. },
  6349. "autoload": {
  6350. "files": [
  6351. "bootstrap.php"
  6352. ],
  6353. "psr-4": {
  6354. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6355. }
  6356. },
  6357. "notification-url": "https://packagist.org/downloads/",
  6358. "license": [
  6359. "MIT"
  6360. ],
  6361. "authors": [
  6362. {
  6363. "name": "Laurent Bassin",
  6364. "email": "laurent@bassin.info"
  6365. },
  6366. {
  6367. "name": "Trevor Rowbotham",
  6368. "email": "trevor.rowbotham@pm.me"
  6369. },
  6370. {
  6371. "name": "Symfony Community",
  6372. "homepage": "https://symfony.com/contributors"
  6373. }
  6374. ],
  6375. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6376. "homepage": "https://symfony.com",
  6377. "keywords": [
  6378. "compatibility",
  6379. "idn",
  6380. "intl",
  6381. "polyfill",
  6382. "portable",
  6383. "shim"
  6384. ],
  6385. "support": {
  6386. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.32.0"
  6387. },
  6388. "funding": [
  6389. {
  6390. "url": "https://symfony.com/sponsor",
  6391. "type": "custom"
  6392. },
  6393. {
  6394. "url": "https://github.com/fabpot",
  6395. "type": "github"
  6396. },
  6397. {
  6398. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6399. "type": "tidelift"
  6400. }
  6401. ],
  6402. "time": "2024-09-10T14:38:51+00:00"
  6403. },
  6404. {
  6405. "name": "symfony/polyfill-intl-normalizer",
  6406. "version": "v1.32.0",
  6407. "source": {
  6408. "type": "git",
  6409. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6410. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  6411. },
  6412. "dist": {
  6413. "type": "zip",
  6414. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  6415. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  6416. "shasum": "",
  6417. "mirrors": [
  6418. {
  6419. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6420. "preferred": true
  6421. }
  6422. ]
  6423. },
  6424. "require": {
  6425. "php": ">=7.2"
  6426. },
  6427. "suggest": {
  6428. "ext-intl": "For best performance"
  6429. },
  6430. "type": "library",
  6431. "extra": {
  6432. "thanks": {
  6433. "url": "https://github.com/symfony/polyfill",
  6434. "name": "symfony/polyfill"
  6435. }
  6436. },
  6437. "autoload": {
  6438. "files": [
  6439. "bootstrap.php"
  6440. ],
  6441. "psr-4": {
  6442. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6443. },
  6444. "classmap": [
  6445. "Resources/stubs"
  6446. ]
  6447. },
  6448. "notification-url": "https://packagist.org/downloads/",
  6449. "license": [
  6450. "MIT"
  6451. ],
  6452. "authors": [
  6453. {
  6454. "name": "Nicolas Grekas",
  6455. "email": "p@tchwork.com"
  6456. },
  6457. {
  6458. "name": "Symfony Community",
  6459. "homepage": "https://symfony.com/contributors"
  6460. }
  6461. ],
  6462. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6463. "homepage": "https://symfony.com",
  6464. "keywords": [
  6465. "compatibility",
  6466. "intl",
  6467. "normalizer",
  6468. "polyfill",
  6469. "portable",
  6470. "shim"
  6471. ],
  6472. "support": {
  6473. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.32.0"
  6474. },
  6475. "funding": [
  6476. {
  6477. "url": "https://symfony.com/sponsor",
  6478. "type": "custom"
  6479. },
  6480. {
  6481. "url": "https://github.com/fabpot",
  6482. "type": "github"
  6483. },
  6484. {
  6485. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6486. "type": "tidelift"
  6487. }
  6488. ],
  6489. "time": "2024-09-09T11:45:10+00:00"
  6490. },
  6491. {
  6492. "name": "symfony/polyfill-mbstring",
  6493. "version": "v1.32.0",
  6494. "source": {
  6495. "type": "git",
  6496. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6497. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
  6498. },
  6499. "dist": {
  6500. "type": "zip",
  6501. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
  6502. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
  6503. "shasum": "",
  6504. "mirrors": [
  6505. {
  6506. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6507. "preferred": true
  6508. }
  6509. ]
  6510. },
  6511. "require": {
  6512. "ext-iconv": "*",
  6513. "php": ">=7.2"
  6514. },
  6515. "provide": {
  6516. "ext-mbstring": "*"
  6517. },
  6518. "suggest": {
  6519. "ext-mbstring": "For best performance"
  6520. },
  6521. "type": "library",
  6522. "extra": {
  6523. "thanks": {
  6524. "url": "https://github.com/symfony/polyfill",
  6525. "name": "symfony/polyfill"
  6526. }
  6527. },
  6528. "autoload": {
  6529. "files": [
  6530. "bootstrap.php"
  6531. ],
  6532. "psr-4": {
  6533. "Symfony\\Polyfill\\Mbstring\\": ""
  6534. }
  6535. },
  6536. "notification-url": "https://packagist.org/downloads/",
  6537. "license": [
  6538. "MIT"
  6539. ],
  6540. "authors": [
  6541. {
  6542. "name": "Nicolas Grekas",
  6543. "email": "p@tchwork.com"
  6544. },
  6545. {
  6546. "name": "Symfony Community",
  6547. "homepage": "https://symfony.com/contributors"
  6548. }
  6549. ],
  6550. "description": "Symfony polyfill for the Mbstring extension",
  6551. "homepage": "https://symfony.com",
  6552. "keywords": [
  6553. "compatibility",
  6554. "mbstring",
  6555. "polyfill",
  6556. "portable",
  6557. "shim"
  6558. ],
  6559. "support": {
  6560. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.32.0"
  6561. },
  6562. "funding": [
  6563. {
  6564. "url": "https://symfony.com/sponsor",
  6565. "type": "custom"
  6566. },
  6567. {
  6568. "url": "https://github.com/fabpot",
  6569. "type": "github"
  6570. },
  6571. {
  6572. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6573. "type": "tidelift"
  6574. }
  6575. ],
  6576. "time": "2024-12-23T08:48:59+00:00"
  6577. },
  6578. {
  6579. "name": "symfony/polyfill-php73",
  6580. "version": "v1.32.0",
  6581. "source": {
  6582. "type": "git",
  6583. "url": "https://github.com/symfony/polyfill-php73.git",
  6584. "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb"
  6585. },
  6586. "dist": {
  6587. "type": "zip",
  6588. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
  6589. "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
  6590. "shasum": "",
  6591. "mirrors": [
  6592. {
  6593. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6594. "preferred": true
  6595. }
  6596. ]
  6597. },
  6598. "require": {
  6599. "php": ">=7.2"
  6600. },
  6601. "type": "library",
  6602. "extra": {
  6603. "thanks": {
  6604. "url": "https://github.com/symfony/polyfill",
  6605. "name": "symfony/polyfill"
  6606. }
  6607. },
  6608. "autoload": {
  6609. "files": [
  6610. "bootstrap.php"
  6611. ],
  6612. "psr-4": {
  6613. "Symfony\\Polyfill\\Php73\\": ""
  6614. },
  6615. "classmap": [
  6616. "Resources/stubs"
  6617. ]
  6618. },
  6619. "notification-url": "https://packagist.org/downloads/",
  6620. "license": [
  6621. "MIT"
  6622. ],
  6623. "authors": [
  6624. {
  6625. "name": "Nicolas Grekas",
  6626. "email": "p@tchwork.com"
  6627. },
  6628. {
  6629. "name": "Symfony Community",
  6630. "homepage": "https://symfony.com/contributors"
  6631. }
  6632. ],
  6633. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  6634. "homepage": "https://symfony.com",
  6635. "keywords": [
  6636. "compatibility",
  6637. "polyfill",
  6638. "portable",
  6639. "shim"
  6640. ],
  6641. "support": {
  6642. "source": "https://github.com/symfony/polyfill-php73/tree/v1.32.0"
  6643. },
  6644. "funding": [
  6645. {
  6646. "url": "https://symfony.com/sponsor",
  6647. "type": "custom"
  6648. },
  6649. {
  6650. "url": "https://github.com/fabpot",
  6651. "type": "github"
  6652. },
  6653. {
  6654. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6655. "type": "tidelift"
  6656. }
  6657. ],
  6658. "time": "2024-09-09T11:45:10+00:00"
  6659. },
  6660. {
  6661. "name": "symfony/polyfill-php80",
  6662. "version": "v1.33.0",
  6663. "source": {
  6664. "type": "git",
  6665. "url": "https://github.com/symfony/polyfill-php80.git",
  6666. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608"
  6667. },
  6668. "dist": {
  6669. "type": "zip",
  6670. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  6671. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  6672. "shasum": "",
  6673. "mirrors": [
  6674. {
  6675. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6676. "preferred": true
  6677. }
  6678. ]
  6679. },
  6680. "require": {
  6681. "php": ">=7.2"
  6682. },
  6683. "type": "library",
  6684. "extra": {
  6685. "thanks": {
  6686. "url": "https://github.com/symfony/polyfill",
  6687. "name": "symfony/polyfill"
  6688. }
  6689. },
  6690. "autoload": {
  6691. "files": [
  6692. "bootstrap.php"
  6693. ],
  6694. "psr-4": {
  6695. "Symfony\\Polyfill\\Php80\\": ""
  6696. },
  6697. "classmap": [
  6698. "Resources/stubs"
  6699. ]
  6700. },
  6701. "notification-url": "https://packagist.org/downloads/",
  6702. "license": [
  6703. "MIT"
  6704. ],
  6705. "authors": [
  6706. {
  6707. "name": "Ion Bazan",
  6708. "email": "ion.bazan@gmail.com"
  6709. },
  6710. {
  6711. "name": "Nicolas Grekas",
  6712. "email": "p@tchwork.com"
  6713. },
  6714. {
  6715. "name": "Symfony Community",
  6716. "homepage": "https://symfony.com/contributors"
  6717. }
  6718. ],
  6719. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6720. "homepage": "https://symfony.com",
  6721. "keywords": [
  6722. "compatibility",
  6723. "polyfill",
  6724. "portable",
  6725. "shim"
  6726. ],
  6727. "support": {
  6728. "source": "https://github.com/symfony/polyfill-php80/tree/v1.33.0"
  6729. },
  6730. "funding": [
  6731. {
  6732. "url": "https://symfony.com/sponsor",
  6733. "type": "custom"
  6734. },
  6735. {
  6736. "url": "https://github.com/fabpot",
  6737. "type": "github"
  6738. },
  6739. {
  6740. "url": "https://github.com/nicolas-grekas",
  6741. "type": "github"
  6742. },
  6743. {
  6744. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6745. "type": "tidelift"
  6746. }
  6747. ],
  6748. "time": "2025-01-02T08:10:11+00:00"
  6749. },
  6750. {
  6751. "name": "symfony/polyfill-php81",
  6752. "version": "v1.32.0",
  6753. "source": {
  6754. "type": "git",
  6755. "url": "https://github.com/symfony/polyfill-php81.git",
  6756. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  6757. },
  6758. "dist": {
  6759. "type": "zip",
  6760. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  6761. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  6762. "shasum": "",
  6763. "mirrors": [
  6764. {
  6765. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6766. "preferred": true
  6767. }
  6768. ]
  6769. },
  6770. "require": {
  6771. "php": ">=7.2"
  6772. },
  6773. "type": "library",
  6774. "extra": {
  6775. "thanks": {
  6776. "url": "https://github.com/symfony/polyfill",
  6777. "name": "symfony/polyfill"
  6778. }
  6779. },
  6780. "autoload": {
  6781. "files": [
  6782. "bootstrap.php"
  6783. ],
  6784. "psr-4": {
  6785. "Symfony\\Polyfill\\Php81\\": ""
  6786. },
  6787. "classmap": [
  6788. "Resources/stubs"
  6789. ]
  6790. },
  6791. "notification-url": "https://packagist.org/downloads/",
  6792. "license": [
  6793. "MIT"
  6794. ],
  6795. "authors": [
  6796. {
  6797. "name": "Nicolas Grekas",
  6798. "email": "p@tchwork.com"
  6799. },
  6800. {
  6801. "name": "Symfony Community",
  6802. "homepage": "https://symfony.com/contributors"
  6803. }
  6804. ],
  6805. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  6806. "homepage": "https://symfony.com",
  6807. "keywords": [
  6808. "compatibility",
  6809. "polyfill",
  6810. "portable",
  6811. "shim"
  6812. ],
  6813. "support": {
  6814. "source": "https://github.com/symfony/polyfill-php81/tree/v1.32.0"
  6815. },
  6816. "funding": [
  6817. {
  6818. "url": "https://symfony.com/sponsor",
  6819. "type": "custom"
  6820. },
  6821. {
  6822. "url": "https://github.com/fabpot",
  6823. "type": "github"
  6824. },
  6825. {
  6826. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6827. "type": "tidelift"
  6828. }
  6829. ],
  6830. "time": "2024-09-09T11:45:10+00:00"
  6831. },
  6832. {
  6833. "name": "symfony/process",
  6834. "version": "v5.4.47",
  6835. "source": {
  6836. "type": "git",
  6837. "url": "https://github.com/symfony/process.git",
  6838. "reference": "5d1662fb32ebc94f17ddb8d635454a776066733d"
  6839. },
  6840. "dist": {
  6841. "type": "zip",
  6842. "url": "https://api.github.com/repos/symfony/process/zipball/5d1662fb32ebc94f17ddb8d635454a776066733d",
  6843. "reference": "5d1662fb32ebc94f17ddb8d635454a776066733d",
  6844. "shasum": "",
  6845. "mirrors": [
  6846. {
  6847. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6848. "preferred": true
  6849. }
  6850. ]
  6851. },
  6852. "require": {
  6853. "php": ">=7.2.5",
  6854. "symfony/polyfill-php80": "^1.16"
  6855. },
  6856. "type": "library",
  6857. "autoload": {
  6858. "psr-4": {
  6859. "Symfony\\Component\\Process\\": ""
  6860. },
  6861. "exclude-from-classmap": [
  6862. "/Tests/"
  6863. ]
  6864. },
  6865. "notification-url": "https://packagist.org/downloads/",
  6866. "license": [
  6867. "MIT"
  6868. ],
  6869. "authors": [
  6870. {
  6871. "name": "Fabien Potencier",
  6872. "email": "fabien@symfony.com"
  6873. },
  6874. {
  6875. "name": "Symfony Community",
  6876. "homepage": "https://symfony.com/contributors"
  6877. }
  6878. ],
  6879. "description": "Executes commands in sub-processes",
  6880. "homepage": "https://symfony.com",
  6881. "support": {
  6882. "source": "https://github.com/symfony/process/tree/v5.4.47"
  6883. },
  6884. "funding": [
  6885. {
  6886. "url": "https://symfony.com/sponsor",
  6887. "type": "custom"
  6888. },
  6889. {
  6890. "url": "https://github.com/fabpot",
  6891. "type": "github"
  6892. },
  6893. {
  6894. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6895. "type": "tidelift"
  6896. }
  6897. ],
  6898. "time": "2024-11-06T11:36:42+00:00"
  6899. },
  6900. {
  6901. "name": "symfony/psr-http-message-bridge",
  6902. "version": "v2.3.1",
  6903. "source": {
  6904. "type": "git",
  6905. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  6906. "reference": "581ca6067eb62640de5ff08ee1ba6850a0ee472e"
  6907. },
  6908. "dist": {
  6909. "type": "zip",
  6910. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/581ca6067eb62640de5ff08ee1ba6850a0ee472e",
  6911. "reference": "581ca6067eb62640de5ff08ee1ba6850a0ee472e",
  6912. "shasum": "",
  6913. "mirrors": [
  6914. {
  6915. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6916. "preferred": true
  6917. }
  6918. ]
  6919. },
  6920. "require": {
  6921. "php": ">=7.2.5",
  6922. "psr/http-message": "^1.0 || ^2.0",
  6923. "symfony/deprecation-contracts": "^2.5 || ^3.0",
  6924. "symfony/http-foundation": "^5.4 || ^6.0"
  6925. },
  6926. "require-dev": {
  6927. "nyholm/psr7": "^1.1",
  6928. "psr/log": "^1.1 || ^2 || ^3",
  6929. "symfony/browser-kit": "^5.4 || ^6.0",
  6930. "symfony/config": "^5.4 || ^6.0",
  6931. "symfony/event-dispatcher": "^5.4 || ^6.0",
  6932. "symfony/framework-bundle": "^5.4 || ^6.0",
  6933. "symfony/http-kernel": "^5.4 || ^6.0",
  6934. "symfony/phpunit-bridge": "^6.2"
  6935. },
  6936. "suggest": {
  6937. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  6938. },
  6939. "type": "symfony-bridge",
  6940. "extra": {
  6941. "branch-alias": {
  6942. "dev-main": "2.3-dev"
  6943. }
  6944. },
  6945. "autoload": {
  6946. "psr-4": {
  6947. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  6948. },
  6949. "exclude-from-classmap": [
  6950. "/Tests/"
  6951. ]
  6952. },
  6953. "notification-url": "https://packagist.org/downloads/",
  6954. "license": [
  6955. "MIT"
  6956. ],
  6957. "authors": [
  6958. {
  6959. "name": "Fabien Potencier",
  6960. "email": "fabien@symfony.com"
  6961. },
  6962. {
  6963. "name": "Symfony Community",
  6964. "homepage": "http://symfony.com/contributors"
  6965. }
  6966. ],
  6967. "description": "PSR HTTP message bridge",
  6968. "homepage": "http://symfony.com",
  6969. "keywords": [
  6970. "http",
  6971. "http-message",
  6972. "psr-17",
  6973. "psr-7"
  6974. ],
  6975. "support": {
  6976. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  6977. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.3.1"
  6978. },
  6979. "funding": [
  6980. {
  6981. "url": "https://symfony.com/sponsor",
  6982. "type": "custom"
  6983. },
  6984. {
  6985. "url": "https://github.com/fabpot",
  6986. "type": "github"
  6987. },
  6988. {
  6989. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6990. "type": "tidelift"
  6991. }
  6992. ],
  6993. "time": "2023-07-26T11:53:26+00:00"
  6994. },
  6995. {
  6996. "name": "symfony/routing",
  6997. "version": "v5.4.48",
  6998. "source": {
  6999. "type": "git",
  7000. "url": "https://github.com/symfony/routing.git",
  7001. "reference": "dd08c19879a9b37ff14fd30dcbdf99a4cf045db1"
  7002. },
  7003. "dist": {
  7004. "type": "zip",
  7005. "url": "https://api.github.com/repos/symfony/routing/zipball/dd08c19879a9b37ff14fd30dcbdf99a4cf045db1",
  7006. "reference": "dd08c19879a9b37ff14fd30dcbdf99a4cf045db1",
  7007. "shasum": "",
  7008. "mirrors": [
  7009. {
  7010. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7011. "preferred": true
  7012. }
  7013. ]
  7014. },
  7015. "require": {
  7016. "php": ">=7.2.5",
  7017. "symfony/deprecation-contracts": "^2.1|^3",
  7018. "symfony/polyfill-php80": "^1.16"
  7019. },
  7020. "conflict": {
  7021. "doctrine/annotations": "<1.12",
  7022. "symfony/config": "<5.3",
  7023. "symfony/dependency-injection": "<4.4",
  7024. "symfony/yaml": "<4.4"
  7025. },
  7026. "require-dev": {
  7027. "doctrine/annotations": "^1.12|^2",
  7028. "psr/log": "^1|^2|^3",
  7029. "symfony/config": "^5.3|^6.0",
  7030. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  7031. "symfony/expression-language": "^4.4|^5.0|^6.0",
  7032. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  7033. "symfony/yaml": "^4.4|^5.0|^6.0"
  7034. },
  7035. "suggest": {
  7036. "symfony/config": "For using the all-in-one router or any loader",
  7037. "symfony/expression-language": "For using expression matching",
  7038. "symfony/http-foundation": "For using a Symfony Request object",
  7039. "symfony/yaml": "For using the YAML loader"
  7040. },
  7041. "type": "library",
  7042. "autoload": {
  7043. "psr-4": {
  7044. "Symfony\\Component\\Routing\\": ""
  7045. },
  7046. "exclude-from-classmap": [
  7047. "/Tests/"
  7048. ]
  7049. },
  7050. "notification-url": "https://packagist.org/downloads/",
  7051. "license": [
  7052. "MIT"
  7053. ],
  7054. "authors": [
  7055. {
  7056. "name": "Fabien Potencier",
  7057. "email": "fabien@symfony.com"
  7058. },
  7059. {
  7060. "name": "Symfony Community",
  7061. "homepage": "https://symfony.com/contributors"
  7062. }
  7063. ],
  7064. "description": "Maps an HTTP request to a set of configuration variables",
  7065. "homepage": "https://symfony.com",
  7066. "keywords": [
  7067. "router",
  7068. "routing",
  7069. "uri",
  7070. "url"
  7071. ],
  7072. "support": {
  7073. "source": "https://github.com/symfony/routing/tree/v5.4.48"
  7074. },
  7075. "funding": [
  7076. {
  7077. "url": "https://symfony.com/sponsor",
  7078. "type": "custom"
  7079. },
  7080. {
  7081. "url": "https://github.com/fabpot",
  7082. "type": "github"
  7083. },
  7084. {
  7085. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7086. "type": "tidelift"
  7087. }
  7088. ],
  7089. "time": "2024-11-12T18:20:21+00:00"
  7090. },
  7091. {
  7092. "name": "symfony/service-contracts",
  7093. "version": "v2.5.4",
  7094. "source": {
  7095. "type": "git",
  7096. "url": "https://github.com/symfony/service-contracts.git",
  7097. "reference": "f37b419f7aea2e9abf10abd261832cace12e3300"
  7098. },
  7099. "dist": {
  7100. "type": "zip",
  7101. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f37b419f7aea2e9abf10abd261832cace12e3300",
  7102. "reference": "f37b419f7aea2e9abf10abd261832cace12e3300",
  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": ">=7.2.5",
  7113. "psr/container": "^1.1",
  7114. "symfony/deprecation-contracts": "^2.1|^3"
  7115. },
  7116. "conflict": {
  7117. "ext-psr": "<1.1|>=2"
  7118. },
  7119. "suggest": {
  7120. "symfony/service-implementation": ""
  7121. },
  7122. "type": "library",
  7123. "extra": {
  7124. "thanks": {
  7125. "url": "https://github.com/symfony/contracts",
  7126. "name": "symfony/contracts"
  7127. },
  7128. "branch-alias": {
  7129. "dev-main": "2.5-dev"
  7130. }
  7131. },
  7132. "autoload": {
  7133. "psr-4": {
  7134. "Symfony\\Contracts\\Service\\": ""
  7135. }
  7136. },
  7137. "notification-url": "https://packagist.org/downloads/",
  7138. "license": [
  7139. "MIT"
  7140. ],
  7141. "authors": [
  7142. {
  7143. "name": "Nicolas Grekas",
  7144. "email": "p@tchwork.com"
  7145. },
  7146. {
  7147. "name": "Symfony Community",
  7148. "homepage": "https://symfony.com/contributors"
  7149. }
  7150. ],
  7151. "description": "Generic abstractions related to writing services",
  7152. "homepage": "https://symfony.com",
  7153. "keywords": [
  7154. "abstractions",
  7155. "contracts",
  7156. "decoupling",
  7157. "interfaces",
  7158. "interoperability",
  7159. "standards"
  7160. ],
  7161. "support": {
  7162. "source": "https://github.com/symfony/service-contracts/tree/v2.5.4"
  7163. },
  7164. "funding": [
  7165. {
  7166. "url": "https://symfony.com/sponsor",
  7167. "type": "custom"
  7168. },
  7169. {
  7170. "url": "https://github.com/fabpot",
  7171. "type": "github"
  7172. },
  7173. {
  7174. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7175. "type": "tidelift"
  7176. }
  7177. ],
  7178. "time": "2024-09-25T14:11:13+00:00"
  7179. },
  7180. {
  7181. "name": "symfony/string",
  7182. "version": "v6.0.19",
  7183. "source": {
  7184. "type": "git",
  7185. "url": "https://github.com/symfony/string.git",
  7186. "reference": "d9e72497367c23e08bf94176d2be45b00a9d232a"
  7187. },
  7188. "dist": {
  7189. "type": "zip",
  7190. "url": "https://api.github.com/repos/symfony/string/zipball/d9e72497367c23e08bf94176d2be45b00a9d232a",
  7191. "reference": "d9e72497367c23e08bf94176d2be45b00a9d232a",
  7192. "shasum": "",
  7193. "mirrors": [
  7194. {
  7195. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7196. "preferred": true
  7197. }
  7198. ]
  7199. },
  7200. "require": {
  7201. "php": ">=8.0.2",
  7202. "symfony/polyfill-ctype": "~1.8",
  7203. "symfony/polyfill-intl-grapheme": "~1.0",
  7204. "symfony/polyfill-intl-normalizer": "~1.0",
  7205. "symfony/polyfill-mbstring": "~1.0"
  7206. },
  7207. "conflict": {
  7208. "symfony/translation-contracts": "<2.0"
  7209. },
  7210. "require-dev": {
  7211. "symfony/error-handler": "^5.4|^6.0",
  7212. "symfony/http-client": "^5.4|^6.0",
  7213. "symfony/translation-contracts": "^2.0|^3.0",
  7214. "symfony/var-exporter": "^5.4|^6.0"
  7215. },
  7216. "type": "library",
  7217. "autoload": {
  7218. "files": [
  7219. "Resources/functions.php"
  7220. ],
  7221. "psr-4": {
  7222. "Symfony\\Component\\String\\": ""
  7223. },
  7224. "exclude-from-classmap": [
  7225. "/Tests/"
  7226. ]
  7227. },
  7228. "notification-url": "https://packagist.org/downloads/",
  7229. "license": [
  7230. "MIT"
  7231. ],
  7232. "authors": [
  7233. {
  7234. "name": "Nicolas Grekas",
  7235. "email": "p@tchwork.com"
  7236. },
  7237. {
  7238. "name": "Symfony Community",
  7239. "homepage": "https://symfony.com/contributors"
  7240. }
  7241. ],
  7242. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7243. "homepage": "https://symfony.com",
  7244. "keywords": [
  7245. "grapheme",
  7246. "i18n",
  7247. "string",
  7248. "unicode",
  7249. "utf-8",
  7250. "utf8"
  7251. ],
  7252. "support": {
  7253. "source": "https://github.com/symfony/string/tree/v6.0.19"
  7254. },
  7255. "funding": [
  7256. {
  7257. "url": "https://symfony.com/sponsor",
  7258. "type": "custom"
  7259. },
  7260. {
  7261. "url": "https://github.com/fabpot",
  7262. "type": "github"
  7263. },
  7264. {
  7265. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7266. "type": "tidelift"
  7267. }
  7268. ],
  7269. "time": "2023-01-01T08:36:10+00:00"
  7270. },
  7271. {
  7272. "name": "symfony/translation",
  7273. "version": "v6.0.19",
  7274. "source": {
  7275. "type": "git",
  7276. "url": "https://github.com/symfony/translation.git",
  7277. "reference": "9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f"
  7278. },
  7279. "dist": {
  7280. "type": "zip",
  7281. "url": "https://api.github.com/repos/symfony/translation/zipball/9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f",
  7282. "reference": "9c24b3fdbbe9fb2ef3a6afd8bbaadfd72dad681f",
  7283. "shasum": "",
  7284. "mirrors": [
  7285. {
  7286. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7287. "preferred": true
  7288. }
  7289. ]
  7290. },
  7291. "require": {
  7292. "php": ">=8.0.2",
  7293. "symfony/polyfill-mbstring": "~1.0",
  7294. "symfony/translation-contracts": "^2.3|^3.0"
  7295. },
  7296. "conflict": {
  7297. "symfony/config": "<5.4",
  7298. "symfony/console": "<5.4",
  7299. "symfony/dependency-injection": "<5.4",
  7300. "symfony/http-kernel": "<5.4",
  7301. "symfony/twig-bundle": "<5.4",
  7302. "symfony/yaml": "<5.4"
  7303. },
  7304. "provide": {
  7305. "symfony/translation-implementation": "2.3|3.0"
  7306. },
  7307. "require-dev": {
  7308. "psr/log": "^1|^2|^3",
  7309. "symfony/config": "^5.4|^6.0",
  7310. "symfony/console": "^5.4|^6.0",
  7311. "symfony/dependency-injection": "^5.4|^6.0",
  7312. "symfony/finder": "^5.4|^6.0",
  7313. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  7314. "symfony/http-kernel": "^5.4|^6.0",
  7315. "symfony/intl": "^5.4|^6.0",
  7316. "symfony/polyfill-intl-icu": "^1.21",
  7317. "symfony/service-contracts": "^1.1.2|^2|^3",
  7318. "symfony/yaml": "^5.4|^6.0"
  7319. },
  7320. "suggest": {
  7321. "psr/log-implementation": "To use logging capability in translator",
  7322. "symfony/config": "",
  7323. "symfony/yaml": ""
  7324. },
  7325. "type": "library",
  7326. "autoload": {
  7327. "files": [
  7328. "Resources/functions.php"
  7329. ],
  7330. "psr-4": {
  7331. "Symfony\\Component\\Translation\\": ""
  7332. },
  7333. "exclude-from-classmap": [
  7334. "/Tests/"
  7335. ]
  7336. },
  7337. "notification-url": "https://packagist.org/downloads/",
  7338. "license": [
  7339. "MIT"
  7340. ],
  7341. "authors": [
  7342. {
  7343. "name": "Fabien Potencier",
  7344. "email": "fabien@symfony.com"
  7345. },
  7346. {
  7347. "name": "Symfony Community",
  7348. "homepage": "https://symfony.com/contributors"
  7349. }
  7350. ],
  7351. "description": "Provides tools to internationalize your application",
  7352. "homepage": "https://symfony.com",
  7353. "support": {
  7354. "source": "https://github.com/symfony/translation/tree/v6.0.19"
  7355. },
  7356. "funding": [
  7357. {
  7358. "url": "https://symfony.com/sponsor",
  7359. "type": "custom"
  7360. },
  7361. {
  7362. "url": "https://github.com/fabpot",
  7363. "type": "github"
  7364. },
  7365. {
  7366. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7367. "type": "tidelift"
  7368. }
  7369. ],
  7370. "time": "2023-01-01T08:36:10+00:00"
  7371. },
  7372. {
  7373. "name": "symfony/translation-contracts",
  7374. "version": "v3.0.2",
  7375. "source": {
  7376. "type": "git",
  7377. "url": "https://github.com/symfony/translation-contracts.git",
  7378. "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282"
  7379. },
  7380. "dist": {
  7381. "type": "zip",
  7382. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/acbfbb274e730e5a0236f619b6168d9dedb3e282",
  7383. "reference": "acbfbb274e730e5a0236f619b6168d9dedb3e282",
  7384. "shasum": "",
  7385. "mirrors": [
  7386. {
  7387. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7388. "preferred": true
  7389. }
  7390. ]
  7391. },
  7392. "require": {
  7393. "php": ">=8.0.2"
  7394. },
  7395. "suggest": {
  7396. "symfony/translation-implementation": ""
  7397. },
  7398. "type": "library",
  7399. "extra": {
  7400. "thanks": {
  7401. "url": "https://github.com/symfony/contracts",
  7402. "name": "symfony/contracts"
  7403. },
  7404. "branch-alias": {
  7405. "dev-main": "3.0-dev"
  7406. }
  7407. },
  7408. "autoload": {
  7409. "psr-4": {
  7410. "Symfony\\Contracts\\Translation\\": ""
  7411. }
  7412. },
  7413. "notification-url": "https://packagist.org/downloads/",
  7414. "license": [
  7415. "MIT"
  7416. ],
  7417. "authors": [
  7418. {
  7419. "name": "Nicolas Grekas",
  7420. "email": "p@tchwork.com"
  7421. },
  7422. {
  7423. "name": "Symfony Community",
  7424. "homepage": "https://symfony.com/contributors"
  7425. }
  7426. ],
  7427. "description": "Generic abstractions related to translation",
  7428. "homepage": "https://symfony.com",
  7429. "keywords": [
  7430. "abstractions",
  7431. "contracts",
  7432. "decoupling",
  7433. "interfaces",
  7434. "interoperability",
  7435. "standards"
  7436. ],
  7437. "support": {
  7438. "source": "https://github.com/symfony/translation-contracts/tree/v3.0.2"
  7439. },
  7440. "funding": [
  7441. {
  7442. "url": "https://symfony.com/sponsor",
  7443. "type": "custom"
  7444. },
  7445. {
  7446. "url": "https://github.com/fabpot",
  7447. "type": "github"
  7448. },
  7449. {
  7450. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7451. "type": "tidelift"
  7452. }
  7453. ],
  7454. "time": "2022-06-27T17:10:44+00:00"
  7455. },
  7456. {
  7457. "name": "symfony/var-dumper",
  7458. "version": "v5.4.48",
  7459. "source": {
  7460. "type": "git",
  7461. "url": "https://github.com/symfony/var-dumper.git",
  7462. "reference": "42f18f170aa86d612c3559cfb3bd11a375df32c8"
  7463. },
  7464. "dist": {
  7465. "type": "zip",
  7466. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/42f18f170aa86d612c3559cfb3bd11a375df32c8",
  7467. "reference": "42f18f170aa86d612c3559cfb3bd11a375df32c8",
  7468. "shasum": "",
  7469. "mirrors": [
  7470. {
  7471. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7472. "preferred": true
  7473. }
  7474. ]
  7475. },
  7476. "require": {
  7477. "php": ">=7.2.5",
  7478. "symfony/polyfill-mbstring": "~1.0",
  7479. "symfony/polyfill-php80": "^1.16"
  7480. },
  7481. "conflict": {
  7482. "symfony/console": "<4.4"
  7483. },
  7484. "require-dev": {
  7485. "ext-iconv": "*",
  7486. "symfony/console": "^4.4|^5.0|^6.0",
  7487. "symfony/http-kernel": "^4.4|^5.0|^6.0",
  7488. "symfony/process": "^4.4|^5.0|^6.0",
  7489. "symfony/uid": "^5.1|^6.0",
  7490. "twig/twig": "^2.13|^3.0.4"
  7491. },
  7492. "suggest": {
  7493. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7494. "ext-intl": "To show region name in time zone dump",
  7495. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  7496. },
  7497. "bin": [
  7498. "Resources/bin/var-dump-server"
  7499. ],
  7500. "type": "library",
  7501. "autoload": {
  7502. "files": [
  7503. "Resources/functions/dump.php"
  7504. ],
  7505. "psr-4": {
  7506. "Symfony\\Component\\VarDumper\\": ""
  7507. },
  7508. "exclude-from-classmap": [
  7509. "/Tests/"
  7510. ]
  7511. },
  7512. "notification-url": "https://packagist.org/downloads/",
  7513. "license": [
  7514. "MIT"
  7515. ],
  7516. "authors": [
  7517. {
  7518. "name": "Nicolas Grekas",
  7519. "email": "p@tchwork.com"
  7520. },
  7521. {
  7522. "name": "Symfony Community",
  7523. "homepage": "https://symfony.com/contributors"
  7524. }
  7525. ],
  7526. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7527. "homepage": "https://symfony.com",
  7528. "keywords": [
  7529. "debug",
  7530. "dump"
  7531. ],
  7532. "support": {
  7533. "source": "https://github.com/symfony/var-dumper/tree/v5.4.48"
  7534. },
  7535. "funding": [
  7536. {
  7537. "url": "https://symfony.com/sponsor",
  7538. "type": "custom"
  7539. },
  7540. {
  7541. "url": "https://github.com/fabpot",
  7542. "type": "github"
  7543. },
  7544. {
  7545. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7546. "type": "tidelift"
  7547. }
  7548. ],
  7549. "time": "2024-11-08T15:21:10+00:00"
  7550. },
  7551. {
  7552. "name": "symfony/var-exporter",
  7553. "version": "v6.0.19",
  7554. "source": {
  7555. "type": "git",
  7556. "url": "https://github.com/symfony/var-exporter.git",
  7557. "reference": "df56f53818c2d5d9f683f4ad2e365ba73a3b69d2"
  7558. },
  7559. "dist": {
  7560. "type": "zip",
  7561. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/df56f53818c2d5d9f683f4ad2e365ba73a3b69d2",
  7562. "reference": "df56f53818c2d5d9f683f4ad2e365ba73a3b69d2",
  7563. "shasum": "",
  7564. "mirrors": [
  7565. {
  7566. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7567. "preferred": true
  7568. }
  7569. ]
  7570. },
  7571. "require": {
  7572. "php": ">=8.0.2"
  7573. },
  7574. "require-dev": {
  7575. "symfony/var-dumper": "^5.4|^6.0"
  7576. },
  7577. "type": "library",
  7578. "autoload": {
  7579. "psr-4": {
  7580. "Symfony\\Component\\VarExporter\\": ""
  7581. },
  7582. "exclude-from-classmap": [
  7583. "/Tests/"
  7584. ]
  7585. },
  7586. "notification-url": "https://packagist.org/downloads/",
  7587. "license": [
  7588. "MIT"
  7589. ],
  7590. "authors": [
  7591. {
  7592. "name": "Nicolas Grekas",
  7593. "email": "p@tchwork.com"
  7594. },
  7595. {
  7596. "name": "Symfony Community",
  7597. "homepage": "https://symfony.com/contributors"
  7598. }
  7599. ],
  7600. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  7601. "homepage": "https://symfony.com",
  7602. "keywords": [
  7603. "clone",
  7604. "construct",
  7605. "export",
  7606. "hydrate",
  7607. "instantiate",
  7608. "serialize"
  7609. ],
  7610. "support": {
  7611. "source": "https://github.com/symfony/var-exporter/tree/v6.0.19"
  7612. },
  7613. "funding": [
  7614. {
  7615. "url": "https://symfony.com/sponsor",
  7616. "type": "custom"
  7617. },
  7618. {
  7619. "url": "https://github.com/fabpot",
  7620. "type": "github"
  7621. },
  7622. {
  7623. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7624. "type": "tidelift"
  7625. }
  7626. ],
  7627. "time": "2023-01-13T08:34:10+00:00"
  7628. },
  7629. {
  7630. "name": "tijsverkoyen/css-to-inline-styles",
  7631. "version": "v2.3.0",
  7632. "source": {
  7633. "type": "git",
  7634. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7635. "reference": "0d72ac1c00084279c1816675284073c5a337c20d"
  7636. },
  7637. "dist": {
  7638. "type": "zip",
  7639. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/0d72ac1c00084279c1816675284073c5a337c20d",
  7640. "reference": "0d72ac1c00084279c1816675284073c5a337c20d",
  7641. "shasum": "",
  7642. "mirrors": [
  7643. {
  7644. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7645. "preferred": true
  7646. }
  7647. ]
  7648. },
  7649. "require": {
  7650. "ext-dom": "*",
  7651. "ext-libxml": "*",
  7652. "php": "^7.4 || ^8.0",
  7653. "symfony/css-selector": "^5.4 || ^6.0 || ^7.0"
  7654. },
  7655. "require-dev": {
  7656. "phpstan/phpstan": "^2.0",
  7657. "phpstan/phpstan-phpunit": "^2.0",
  7658. "phpunit/phpunit": "^8.5.21 || ^9.5.10"
  7659. },
  7660. "type": "library",
  7661. "extra": {
  7662. "branch-alias": {
  7663. "dev-master": "2.x-dev"
  7664. }
  7665. },
  7666. "autoload": {
  7667. "psr-4": {
  7668. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7669. }
  7670. },
  7671. "notification-url": "https://packagist.org/downloads/",
  7672. "license": [
  7673. "BSD-3-Clause"
  7674. ],
  7675. "authors": [
  7676. {
  7677. "name": "Tijs Verkoyen",
  7678. "email": "css_to_inline_styles@verkoyen.eu",
  7679. "role": "Developer"
  7680. }
  7681. ],
  7682. "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.",
  7683. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7684. "support": {
  7685. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7686. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.3.0"
  7687. },
  7688. "time": "2024-12-21T16:25:41+00:00"
  7689. },
  7690. {
  7691. "name": "vinkla/hashids",
  7692. "version": "9.1.0",
  7693. "source": {
  7694. "type": "git",
  7695. "url": "https://github.com/vinkla/laravel-hashids.git",
  7696. "reference": "cb0086db96cdb49816465adc97e3a024c8ee9767"
  7697. },
  7698. "dist": {
  7699. "type": "zip",
  7700. "url": "https://api.github.com/repos/vinkla/laravel-hashids/zipball/cb0086db96cdb49816465adc97e3a024c8ee9767",
  7701. "reference": "cb0086db96cdb49816465adc97e3a024c8ee9767",
  7702. "shasum": "",
  7703. "mirrors": [
  7704. {
  7705. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7706. "preferred": true
  7707. }
  7708. ]
  7709. },
  7710. "require": {
  7711. "graham-campbell/manager": "^4.4",
  7712. "hashids/hashids": "^4.1",
  7713. "illuminate/contracts": "^8.0",
  7714. "illuminate/support": "^8.0",
  7715. "php": "^7.3 || ^8.0"
  7716. },
  7717. "require-dev": {
  7718. "graham-campbell/analyzer": "^3.0",
  7719. "graham-campbell/testbench": "^5.4",
  7720. "mockery/mockery": "^1.3",
  7721. "phpunit/phpunit": "^9.3",
  7722. "squizlabs/php_codesniffer": "^3.5"
  7723. },
  7724. "type": "library",
  7725. "extra": {
  7726. "laravel": {
  7727. "aliases": {
  7728. "Hashids": "Vinkla\\Hashids\\Facades\\Hashids"
  7729. },
  7730. "providers": [
  7731. "Vinkla\\Hashids\\HashidsServiceProvider"
  7732. ]
  7733. },
  7734. "branch-alias": {
  7735. "dev-master": "9.1-dev"
  7736. }
  7737. },
  7738. "autoload": {
  7739. "psr-4": {
  7740. "Vinkla\\Hashids\\": "src/"
  7741. }
  7742. },
  7743. "notification-url": "https://packagist.org/downloads/",
  7744. "license": [
  7745. "MIT"
  7746. ],
  7747. "authors": [
  7748. {
  7749. "name": "Vincent Klaiber",
  7750. "email": "hello@doubledip.se"
  7751. }
  7752. ],
  7753. "description": "A Hashids bridge for Laravel",
  7754. "keywords": [
  7755. "hashids",
  7756. "laravel"
  7757. ],
  7758. "support": {
  7759. "issues": "https://github.com/vinkla/laravel-hashids/issues",
  7760. "source": "https://github.com/vinkla/laravel-hashids/tree/9.1.0"
  7761. },
  7762. "time": "2020-11-26T19:38:22+00:00"
  7763. },
  7764. {
  7765. "name": "vlucas/phpdotenv",
  7766. "version": "v5.6.1",
  7767. "source": {
  7768. "type": "git",
  7769. "url": "https://github.com/vlucas/phpdotenv.git",
  7770. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  7771. },
  7772. "dist": {
  7773. "type": "zip",
  7774. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7775. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7776. "shasum": "",
  7777. "mirrors": [
  7778. {
  7779. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7780. "preferred": true
  7781. }
  7782. ]
  7783. },
  7784. "require": {
  7785. "ext-pcre": "*",
  7786. "graham-campbell/result-type": "^1.1.3",
  7787. "php": "^7.2.5 || ^8.0",
  7788. "phpoption/phpoption": "^1.9.3",
  7789. "symfony/polyfill-ctype": "^1.24",
  7790. "symfony/polyfill-mbstring": "^1.24",
  7791. "symfony/polyfill-php80": "^1.24"
  7792. },
  7793. "require-dev": {
  7794. "bamarni/composer-bin-plugin": "^1.8.2",
  7795. "ext-filter": "*",
  7796. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  7797. },
  7798. "suggest": {
  7799. "ext-filter": "Required to use the boolean validator."
  7800. },
  7801. "type": "library",
  7802. "extra": {
  7803. "bamarni-bin": {
  7804. "bin-links": true,
  7805. "forward-command": false
  7806. },
  7807. "branch-alias": {
  7808. "dev-master": "5.6-dev"
  7809. }
  7810. },
  7811. "autoload": {
  7812. "psr-4": {
  7813. "Dotenv\\": "src/"
  7814. }
  7815. },
  7816. "notification-url": "https://packagist.org/downloads/",
  7817. "license": [
  7818. "BSD-3-Clause"
  7819. ],
  7820. "authors": [
  7821. {
  7822. "name": "Graham Campbell",
  7823. "email": "hello@gjcampbell.co.uk",
  7824. "homepage": "https://github.com/GrahamCampbell"
  7825. },
  7826. {
  7827. "name": "Vance Lucas",
  7828. "email": "vance@vancelucas.com",
  7829. "homepage": "https://github.com/vlucas"
  7830. }
  7831. ],
  7832. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7833. "keywords": [
  7834. "dotenv",
  7835. "env",
  7836. "environment"
  7837. ],
  7838. "support": {
  7839. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7840. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  7841. },
  7842. "funding": [
  7843. {
  7844. "url": "https://github.com/GrahamCampbell",
  7845. "type": "github"
  7846. },
  7847. {
  7848. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7849. "type": "tidelift"
  7850. }
  7851. ],
  7852. "time": "2024-07-20T21:52:34+00:00"
  7853. },
  7854. {
  7855. "name": "voku/portable-ascii",
  7856. "version": "1.6.1",
  7857. "source": {
  7858. "type": "git",
  7859. "url": "https://github.com/voku/portable-ascii.git",
  7860. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a"
  7861. },
  7862. "dist": {
  7863. "type": "zip",
  7864. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/87337c91b9dfacee02452244ee14ab3c43bc485a",
  7865. "reference": "87337c91b9dfacee02452244ee14ab3c43bc485a",
  7866. "shasum": "",
  7867. "mirrors": [
  7868. {
  7869. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7870. "preferred": true
  7871. }
  7872. ]
  7873. },
  7874. "require": {
  7875. "php": ">=7.0.0"
  7876. },
  7877. "require-dev": {
  7878. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  7879. },
  7880. "suggest": {
  7881. "ext-intl": "Use Intl for transliterator_transliterate() support"
  7882. },
  7883. "type": "library",
  7884. "autoload": {
  7885. "psr-4": {
  7886. "voku\\": "src/voku/"
  7887. }
  7888. },
  7889. "notification-url": "https://packagist.org/downloads/",
  7890. "license": [
  7891. "MIT"
  7892. ],
  7893. "authors": [
  7894. {
  7895. "name": "Lars Moelleken",
  7896. "homepage": "http://www.moelleken.org/"
  7897. }
  7898. ],
  7899. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  7900. "homepage": "https://github.com/voku/portable-ascii",
  7901. "keywords": [
  7902. "ascii",
  7903. "clean",
  7904. "php"
  7905. ],
  7906. "support": {
  7907. "issues": "https://github.com/voku/portable-ascii/issues",
  7908. "source": "https://github.com/voku/portable-ascii/tree/1.6.1"
  7909. },
  7910. "funding": [
  7911. {
  7912. "url": "https://www.paypal.me/moelleken",
  7913. "type": "custom"
  7914. },
  7915. {
  7916. "url": "https://github.com/voku",
  7917. "type": "github"
  7918. },
  7919. {
  7920. "url": "https://opencollective.com/portable-ascii",
  7921. "type": "open_collective"
  7922. },
  7923. {
  7924. "url": "https://www.patreon.com/voku",
  7925. "type": "patreon"
  7926. },
  7927. {
  7928. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  7929. "type": "tidelift"
  7930. }
  7931. ],
  7932. "time": "2022-01-24T18:55:24+00:00"
  7933. },
  7934. {
  7935. "name": "w7corp/easywechat",
  7936. "version": "5.36.0",
  7937. "source": {
  7938. "type": "git",
  7939. "url": "https://github.com/w7corp/easywechat.git",
  7940. "reference": "3e3af7e1195e8ad25dae196bdb6420a24b382f1d"
  7941. },
  7942. "dist": {
  7943. "type": "zip",
  7944. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/3e3af7e1195e8ad25dae196bdb6420a24b382f1d",
  7945. "reference": "3e3af7e1195e8ad25dae196bdb6420a24b382f1d",
  7946. "shasum": "",
  7947. "mirrors": [
  7948. {
  7949. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7950. "preferred": true
  7951. }
  7952. ]
  7953. },
  7954. "require": {
  7955. "easywechat-composer/easywechat-composer": "^1.1",
  7956. "ext-fileinfo": "*",
  7957. "ext-libxml": "*",
  7958. "ext-openssl": "*",
  7959. "ext-simplexml": "*",
  7960. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  7961. "monolog/monolog": "^1.22 || ^2.0 || ^3.0",
  7962. "overtrue/socialite": "^3.2 || ^4.0",
  7963. "php": ">=7.4",
  7964. "pimple/pimple": "^3.0",
  7965. "psr/simple-cache": "^1.0||^2.0||^3.0",
  7966. "symfony/cache": "^3.3 || ^4.3 || ^5.0 || ^6.0",
  7967. "symfony/event-dispatcher": "^4.3 || ^5.0 || ^6.0",
  7968. "symfony/http-foundation": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
  7969. },
  7970. "require-dev": {
  7971. "brainmaestro/composer-git-hooks": "^2.7",
  7972. "dms/phpunit-arraysubset-asserts": "^0.2.0",
  7973. "friendsofphp/php-cs-fixer": "^3.5.0",
  7974. "mikey179/vfsstream": "^1.6",
  7975. "mockery/mockery": "^1.2.3",
  7976. "phpstan/phpstan": "^0.12.0",
  7977. "phpunit/phpunit": "^9.3"
  7978. },
  7979. "type": "library",
  7980. "extra": {
  7981. "hooks": {
  7982. "pre-push": [
  7983. "composer test",
  7984. "composer fix-style"
  7985. ],
  7986. "pre-commit": [
  7987. "composer test",
  7988. "composer fix-style"
  7989. ]
  7990. }
  7991. },
  7992. "autoload": {
  7993. "files": [
  7994. "src/Kernel/Support/Helpers.php",
  7995. "src/Kernel/Helpers.php"
  7996. ],
  7997. "psr-4": {
  7998. "EasyWeChat\\": "src/"
  7999. }
  8000. },
  8001. "notification-url": "https://packagist.org/downloads/",
  8002. "license": [
  8003. "MIT"
  8004. ],
  8005. "authors": [
  8006. {
  8007. "name": "overtrue",
  8008. "email": "anzhengchao@gmail.com"
  8009. }
  8010. ],
  8011. "description": "微信SDK",
  8012. "keywords": [
  8013. "easywechat",
  8014. "sdk",
  8015. "wechat",
  8016. "weixin",
  8017. "weixin-sdk"
  8018. ],
  8019. "support": {
  8020. "issues": "https://github.com/w7corp/easywechat/issues",
  8021. "source": "https://github.com/w7corp/easywechat/tree/5.36.0"
  8022. },
  8023. "funding": [
  8024. {
  8025. "url": "https://github.com/overtrue",
  8026. "type": "github"
  8027. }
  8028. ],
  8029. "time": "2024-12-25T08:00:38+00:00"
  8030. },
  8031. {
  8032. "name": "wantp/snowflake",
  8033. "version": "v1.2.0",
  8034. "source": {
  8035. "type": "git",
  8036. "url": "https://github.com/wantp/snowflake.git",
  8037. "reference": "821c2800521cddc31afd8dd980090883abc7fe2d"
  8038. },
  8039. "dist": {
  8040. "type": "zip",
  8041. "url": "https://api.github.com/repos/wantp/snowflake/zipball/821c2800521cddc31afd8dd980090883abc7fe2d",
  8042. "reference": "821c2800521cddc31afd8dd980090883abc7fe2d",
  8043. "shasum": "",
  8044. "mirrors": [
  8045. {
  8046. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8047. "preferred": true
  8048. }
  8049. ]
  8050. },
  8051. "require": {
  8052. "php": ">=7.0.0"
  8053. },
  8054. "type": "library",
  8055. "autoload": {
  8056. "psr-4": {
  8057. "wantp\\Snowflake\\": "src/Snowflake/"
  8058. }
  8059. },
  8060. "notification-url": "https://packagist.org/downloads/",
  8061. "license": [
  8062. "MIT"
  8063. ],
  8064. "authors": [
  8065. {
  8066. "name": "zhangrongwang",
  8067. "email": "zhangrongwang798@gmail.com"
  8068. }
  8069. ],
  8070. "description": "A package for create unique id by snowflake",
  8071. "keywords": [
  8072. "snowflake",
  8073. "uniqueId"
  8074. ],
  8075. "support": {
  8076. "issues": "https://github.com/wantp/snowflake/issues",
  8077. "source": "https://github.com/wantp/snowflake/tree/master"
  8078. },
  8079. "time": "2019-08-05T07:14:56+00:00"
  8080. }
  8081. ],
  8082. "packages-dev": [
  8083. {
  8084. "name": "doctrine/instantiator",
  8085. "version": "1.5.0",
  8086. "source": {
  8087. "type": "git",
  8088. "url": "https://github.com/doctrine/instantiator.git",
  8089. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  8090. },
  8091. "dist": {
  8092. "type": "zip",
  8093. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  8094. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  8095. "shasum": "",
  8096. "mirrors": [
  8097. {
  8098. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8099. "preferred": true
  8100. }
  8101. ]
  8102. },
  8103. "require": {
  8104. "php": "^7.1 || ^8.0"
  8105. },
  8106. "require-dev": {
  8107. "doctrine/coding-standard": "^9 || ^11",
  8108. "ext-pdo": "*",
  8109. "ext-phar": "*",
  8110. "phpbench/phpbench": "^0.16 || ^1",
  8111. "phpstan/phpstan": "^1.4",
  8112. "phpstan/phpstan-phpunit": "^1",
  8113. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  8114. "vimeo/psalm": "^4.30 || ^5.4"
  8115. },
  8116. "type": "library",
  8117. "autoload": {
  8118. "psr-4": {
  8119. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8120. }
  8121. },
  8122. "notification-url": "https://packagist.org/downloads/",
  8123. "license": [
  8124. "MIT"
  8125. ],
  8126. "authors": [
  8127. {
  8128. "name": "Marco Pivetta",
  8129. "email": "ocramius@gmail.com",
  8130. "homepage": "https://ocramius.github.io/"
  8131. }
  8132. ],
  8133. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8134. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8135. "keywords": [
  8136. "constructor",
  8137. "instantiate"
  8138. ],
  8139. "support": {
  8140. "issues": "https://github.com/doctrine/instantiator/issues",
  8141. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  8142. },
  8143. "funding": [
  8144. {
  8145. "url": "https://www.doctrine-project.org/sponsorship.html",
  8146. "type": "custom"
  8147. },
  8148. {
  8149. "url": "https://www.patreon.com/phpdoctrine",
  8150. "type": "patreon"
  8151. },
  8152. {
  8153. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8154. "type": "tidelift"
  8155. }
  8156. ],
  8157. "time": "2022-12-30T00:15:36+00:00"
  8158. },
  8159. {
  8160. "name": "facade/flare-client-php",
  8161. "version": "1.10.0",
  8162. "source": {
  8163. "type": "git",
  8164. "url": "https://github.com/facade/flare-client-php.git",
  8165. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8"
  8166. },
  8167. "dist": {
  8168. "type": "zip",
  8169. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  8170. "reference": "213fa2c69e120bca4c51ba3e82ed1834ef3f41b8",
  8171. "shasum": "",
  8172. "mirrors": [
  8173. {
  8174. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8175. "preferred": true
  8176. }
  8177. ]
  8178. },
  8179. "require": {
  8180. "facade/ignition-contracts": "~1.0",
  8181. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  8182. "php": "^7.1|^8.0",
  8183. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  8184. "symfony/mime": "^3.4|^4.0|^5.1",
  8185. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  8186. },
  8187. "require-dev": {
  8188. "friendsofphp/php-cs-fixer": "^2.14",
  8189. "phpunit/phpunit": "^7.5",
  8190. "spatie/phpunit-snapshot-assertions": "^2.0"
  8191. },
  8192. "type": "library",
  8193. "extra": {
  8194. "branch-alias": {
  8195. "dev-master": "1.0-dev"
  8196. }
  8197. },
  8198. "autoload": {
  8199. "files": [
  8200. "src/helpers.php"
  8201. ],
  8202. "psr-4": {
  8203. "Facade\\FlareClient\\": "src"
  8204. }
  8205. },
  8206. "notification-url": "https://packagist.org/downloads/",
  8207. "license": [
  8208. "MIT"
  8209. ],
  8210. "description": "Send PHP errors to Flare",
  8211. "homepage": "https://github.com/facade/flare-client-php",
  8212. "keywords": [
  8213. "exception",
  8214. "facade",
  8215. "flare",
  8216. "reporting"
  8217. ],
  8218. "support": {
  8219. "issues": "https://github.com/facade/flare-client-php/issues",
  8220. "source": "https://github.com/facade/flare-client-php/tree/1.10.0"
  8221. },
  8222. "funding": [
  8223. {
  8224. "url": "https://github.com/spatie",
  8225. "type": "github"
  8226. }
  8227. ],
  8228. "time": "2022-08-09T11:23:57+00:00"
  8229. },
  8230. {
  8231. "name": "facade/ignition",
  8232. "version": "2.17.7",
  8233. "source": {
  8234. "type": "git",
  8235. "url": "https://github.com/facade/ignition.git",
  8236. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9"
  8237. },
  8238. "dist": {
  8239. "type": "zip",
  8240. "url": "https://api.github.com/repos/facade/ignition/zipball/b4f5955825bb4b74cba0f94001761c46335c33e9",
  8241. "reference": "b4f5955825bb4b74cba0f94001761c46335c33e9",
  8242. "shasum": "",
  8243. "mirrors": [
  8244. {
  8245. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8246. "preferred": true
  8247. }
  8248. ]
  8249. },
  8250. "require": {
  8251. "ext-curl": "*",
  8252. "ext-json": "*",
  8253. "ext-mbstring": "*",
  8254. "facade/flare-client-php": "^1.9.1",
  8255. "facade/ignition-contracts": "^1.0.2",
  8256. "illuminate/support": "^7.0|^8.0",
  8257. "monolog/monolog": "^2.0",
  8258. "php": "^7.2.5|^8.0",
  8259. "symfony/console": "^5.0",
  8260. "symfony/var-dumper": "^5.0"
  8261. },
  8262. "require-dev": {
  8263. "friendsofphp/php-cs-fixer": "^2.14",
  8264. "livewire/livewire": "^2.4",
  8265. "mockery/mockery": "^1.3",
  8266. "orchestra/testbench": "^5.0|^6.0",
  8267. "psalm/plugin-laravel": "^1.2"
  8268. },
  8269. "suggest": {
  8270. "laravel/telescope": "^3.1"
  8271. },
  8272. "type": "library",
  8273. "extra": {
  8274. "branch-alias": {
  8275. "dev-master": "2.x-dev"
  8276. },
  8277. "laravel": {
  8278. "providers": [
  8279. "Facade\\Ignition\\IgnitionServiceProvider"
  8280. ],
  8281. "aliases": {
  8282. "Flare": "Facade\\Ignition\\Facades\\Flare"
  8283. }
  8284. }
  8285. },
  8286. "autoload": {
  8287. "files": [
  8288. "src/helpers.php"
  8289. ],
  8290. "psr-4": {
  8291. "Facade\\Ignition\\": "src"
  8292. }
  8293. },
  8294. "notification-url": "https://packagist.org/downloads/",
  8295. "license": [
  8296. "MIT"
  8297. ],
  8298. "description": "A beautiful error page for Laravel applications.",
  8299. "homepage": "https://github.com/facade/ignition",
  8300. "keywords": [
  8301. "error",
  8302. "flare",
  8303. "laravel",
  8304. "page"
  8305. ],
  8306. "support": {
  8307. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  8308. "forum": "https://twitter.com/flareappio",
  8309. "issues": "https://github.com/facade/ignition/issues",
  8310. "source": "https://github.com/facade/ignition"
  8311. },
  8312. "time": "2023-01-26T12:34:59+00:00"
  8313. },
  8314. {
  8315. "name": "facade/ignition-contracts",
  8316. "version": "1.0.2",
  8317. "source": {
  8318. "type": "git",
  8319. "url": "https://github.com/facade/ignition-contracts.git",
  8320. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  8321. },
  8322. "dist": {
  8323. "type": "zip",
  8324. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8325. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8326. "shasum": "",
  8327. "mirrors": [
  8328. {
  8329. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8330. "preferred": true
  8331. }
  8332. ]
  8333. },
  8334. "require": {
  8335. "php": "^7.3|^8.0"
  8336. },
  8337. "require-dev": {
  8338. "friendsofphp/php-cs-fixer": "^v2.15.8",
  8339. "phpunit/phpunit": "^9.3.11",
  8340. "vimeo/psalm": "^3.17.1"
  8341. },
  8342. "type": "library",
  8343. "autoload": {
  8344. "psr-4": {
  8345. "Facade\\IgnitionContracts\\": "src"
  8346. }
  8347. },
  8348. "notification-url": "https://packagist.org/downloads/",
  8349. "license": [
  8350. "MIT"
  8351. ],
  8352. "authors": [
  8353. {
  8354. "name": "Freek Van der Herten",
  8355. "email": "freek@spatie.be",
  8356. "homepage": "https://flareapp.io",
  8357. "role": "Developer"
  8358. }
  8359. ],
  8360. "description": "Solution contracts for Ignition",
  8361. "homepage": "https://github.com/facade/ignition-contracts",
  8362. "keywords": [
  8363. "contracts",
  8364. "flare",
  8365. "ignition"
  8366. ],
  8367. "support": {
  8368. "issues": "https://github.com/facade/ignition-contracts/issues",
  8369. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  8370. },
  8371. "time": "2020-10-16T08:27:54+00:00"
  8372. },
  8373. {
  8374. "name": "fakerphp/faker",
  8375. "version": "v1.23.1",
  8376. "source": {
  8377. "type": "git",
  8378. "url": "https://github.com/FakerPHP/Faker.git",
  8379. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b"
  8380. },
  8381. "dist": {
  8382. "type": "zip",
  8383. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/bfb4fe148adbf78eff521199619b93a52ae3554b",
  8384. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b",
  8385. "shasum": "",
  8386. "mirrors": [
  8387. {
  8388. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8389. "preferred": true
  8390. }
  8391. ]
  8392. },
  8393. "require": {
  8394. "php": "^7.4 || ^8.0",
  8395. "psr/container": "^1.0 || ^2.0",
  8396. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  8397. },
  8398. "conflict": {
  8399. "fzaninotto/faker": "*"
  8400. },
  8401. "require-dev": {
  8402. "bamarni/composer-bin-plugin": "^1.4.1",
  8403. "doctrine/persistence": "^1.3 || ^2.0",
  8404. "ext-intl": "*",
  8405. "phpunit/phpunit": "^9.5.26",
  8406. "symfony/phpunit-bridge": "^5.4.16"
  8407. },
  8408. "suggest": {
  8409. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  8410. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  8411. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  8412. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  8413. "ext-mbstring": "Required for multibyte Unicode string functionality."
  8414. },
  8415. "type": "library",
  8416. "autoload": {
  8417. "psr-4": {
  8418. "Faker\\": "src/Faker/"
  8419. }
  8420. },
  8421. "notification-url": "https://packagist.org/downloads/",
  8422. "license": [
  8423. "MIT"
  8424. ],
  8425. "authors": [
  8426. {
  8427. "name": "François Zaninotto"
  8428. }
  8429. ],
  8430. "description": "Faker is a PHP library that generates fake data for you.",
  8431. "keywords": [
  8432. "data",
  8433. "faker",
  8434. "fixtures"
  8435. ],
  8436. "support": {
  8437. "issues": "https://github.com/FakerPHP/Faker/issues",
  8438. "source": "https://github.com/FakerPHP/Faker/tree/v1.23.1"
  8439. },
  8440. "time": "2024-01-02T13:46:09+00:00"
  8441. },
  8442. {
  8443. "name": "filp/whoops",
  8444. "version": "2.16.0",
  8445. "source": {
  8446. "type": "git",
  8447. "url": "https://github.com/filp/whoops.git",
  8448. "reference": "befcdc0e5dce67252aa6322d82424be928214fa2"
  8449. },
  8450. "dist": {
  8451. "type": "zip",
  8452. "url": "https://api.github.com/repos/filp/whoops/zipball/befcdc0e5dce67252aa6322d82424be928214fa2",
  8453. "reference": "befcdc0e5dce67252aa6322d82424be928214fa2",
  8454. "shasum": "",
  8455. "mirrors": [
  8456. {
  8457. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8458. "preferred": true
  8459. }
  8460. ]
  8461. },
  8462. "require": {
  8463. "php": "^7.1 || ^8.0",
  8464. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  8465. },
  8466. "require-dev": {
  8467. "mockery/mockery": "^1.0",
  8468. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.3",
  8469. "symfony/var-dumper": "^4.0 || ^5.0"
  8470. },
  8471. "suggest": {
  8472. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8473. "whoops/soap": "Formats errors as SOAP responses"
  8474. },
  8475. "type": "library",
  8476. "extra": {
  8477. "branch-alias": {
  8478. "dev-master": "2.7-dev"
  8479. }
  8480. },
  8481. "autoload": {
  8482. "psr-4": {
  8483. "Whoops\\": "src/Whoops/"
  8484. }
  8485. },
  8486. "notification-url": "https://packagist.org/downloads/",
  8487. "license": [
  8488. "MIT"
  8489. ],
  8490. "authors": [
  8491. {
  8492. "name": "Filipe Dobreira",
  8493. "homepage": "https://github.com/filp",
  8494. "role": "Developer"
  8495. }
  8496. ],
  8497. "description": "php error handling for cool kids",
  8498. "homepage": "https://filp.github.io/whoops/",
  8499. "keywords": [
  8500. "error",
  8501. "exception",
  8502. "handling",
  8503. "library",
  8504. "throwable",
  8505. "whoops"
  8506. ],
  8507. "support": {
  8508. "issues": "https://github.com/filp/whoops/issues",
  8509. "source": "https://github.com/filp/whoops/tree/2.16.0"
  8510. },
  8511. "funding": [
  8512. {
  8513. "url": "https://github.com/denis-sokolov",
  8514. "type": "github"
  8515. }
  8516. ],
  8517. "time": "2024-09-25T12:00:00+00:00"
  8518. },
  8519. {
  8520. "name": "hamcrest/hamcrest-php",
  8521. "version": "v2.0.1",
  8522. "source": {
  8523. "type": "git",
  8524. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8525. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8526. },
  8527. "dist": {
  8528. "type": "zip",
  8529. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8530. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8531. "shasum": "",
  8532. "mirrors": [
  8533. {
  8534. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8535. "preferred": true
  8536. }
  8537. ]
  8538. },
  8539. "require": {
  8540. "php": "^5.3|^7.0|^8.0"
  8541. },
  8542. "replace": {
  8543. "cordoval/hamcrest-php": "*",
  8544. "davedevelopment/hamcrest-php": "*",
  8545. "kodova/hamcrest-php": "*"
  8546. },
  8547. "require-dev": {
  8548. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8549. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8550. },
  8551. "type": "library",
  8552. "extra": {
  8553. "branch-alias": {
  8554. "dev-master": "2.1-dev"
  8555. }
  8556. },
  8557. "autoload": {
  8558. "classmap": [
  8559. "hamcrest"
  8560. ]
  8561. },
  8562. "notification-url": "https://packagist.org/downloads/",
  8563. "license": [
  8564. "BSD-3-Clause"
  8565. ],
  8566. "description": "This is the PHP port of Hamcrest Matchers",
  8567. "keywords": [
  8568. "test"
  8569. ],
  8570. "support": {
  8571. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8572. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8573. },
  8574. "time": "2020-07-09T08:09:16+00:00"
  8575. },
  8576. {
  8577. "name": "laravel/sail",
  8578. "version": "v1.25.0",
  8579. "source": {
  8580. "type": "git",
  8581. "url": "https://github.com/laravel/sail.git",
  8582. "reference": "e81a7bd7ac1a745ccb25572830fecf74a89bb48a"
  8583. },
  8584. "dist": {
  8585. "type": "zip",
  8586. "url": "https://api.github.com/repos/laravel/sail/zipball/e81a7bd7ac1a745ccb25572830fecf74a89bb48a",
  8587. "reference": "e81a7bd7ac1a745ccb25572830fecf74a89bb48a",
  8588. "shasum": "",
  8589. "mirrors": [
  8590. {
  8591. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8592. "preferred": true
  8593. }
  8594. ]
  8595. },
  8596. "require": {
  8597. "illuminate/console": "^8.0|^9.0|^10.0",
  8598. "illuminate/contracts": "^8.0|^9.0|^10.0",
  8599. "illuminate/support": "^8.0|^9.0|^10.0",
  8600. "php": "^8.0",
  8601. "symfony/yaml": "^6.0"
  8602. },
  8603. "require-dev": {
  8604. "orchestra/testbench": "^6.0|^7.0|^8.0",
  8605. "phpstan/phpstan": "^1.10"
  8606. },
  8607. "bin": [
  8608. "bin/sail"
  8609. ],
  8610. "type": "library",
  8611. "extra": {
  8612. "laravel": {
  8613. "providers": [
  8614. "Laravel\\Sail\\SailServiceProvider"
  8615. ]
  8616. },
  8617. "branch-alias": {
  8618. "dev-master": "1.x-dev"
  8619. }
  8620. },
  8621. "autoload": {
  8622. "psr-4": {
  8623. "Laravel\\Sail\\": "src/"
  8624. }
  8625. },
  8626. "notification-url": "https://packagist.org/downloads/",
  8627. "license": [
  8628. "MIT"
  8629. ],
  8630. "authors": [
  8631. {
  8632. "name": "Taylor Otwell",
  8633. "email": "taylor@laravel.com"
  8634. }
  8635. ],
  8636. "description": "Docker files for running a basic Laravel application.",
  8637. "keywords": [
  8638. "docker",
  8639. "laravel"
  8640. ],
  8641. "support": {
  8642. "issues": "https://github.com/laravel/sail/issues",
  8643. "source": "https://github.com/laravel/sail"
  8644. },
  8645. "time": "2023-09-11T17:37:09+00:00"
  8646. },
  8647. {
  8648. "name": "mockery/mockery",
  8649. "version": "1.6.12",
  8650. "source": {
  8651. "type": "git",
  8652. "url": "https://github.com/mockery/mockery.git",
  8653. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  8654. },
  8655. "dist": {
  8656. "type": "zip",
  8657. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8658. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8659. "shasum": "",
  8660. "mirrors": [
  8661. {
  8662. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8663. "preferred": true
  8664. }
  8665. ]
  8666. },
  8667. "require": {
  8668. "hamcrest/hamcrest-php": "^2.0.1",
  8669. "lib-pcre": ">=7.0",
  8670. "php": ">=7.3"
  8671. },
  8672. "conflict": {
  8673. "phpunit/phpunit": "<8.0"
  8674. },
  8675. "require-dev": {
  8676. "phpunit/phpunit": "^8.5 || ^9.6.17",
  8677. "symplify/easy-coding-standard": "^12.1.14"
  8678. },
  8679. "type": "library",
  8680. "autoload": {
  8681. "files": [
  8682. "library/helpers.php",
  8683. "library/Mockery.php"
  8684. ],
  8685. "psr-4": {
  8686. "Mockery\\": "library/Mockery"
  8687. }
  8688. },
  8689. "notification-url": "https://packagist.org/downloads/",
  8690. "license": [
  8691. "BSD-3-Clause"
  8692. ],
  8693. "authors": [
  8694. {
  8695. "name": "Pádraic Brady",
  8696. "email": "padraic.brady@gmail.com",
  8697. "homepage": "https://github.com/padraic",
  8698. "role": "Author"
  8699. },
  8700. {
  8701. "name": "Dave Marshall",
  8702. "email": "dave.marshall@atstsolutions.co.uk",
  8703. "homepage": "https://davedevelopment.co.uk",
  8704. "role": "Developer"
  8705. },
  8706. {
  8707. "name": "Nathanael Esayeas",
  8708. "email": "nathanael.esayeas@protonmail.com",
  8709. "homepage": "https://github.com/ghostwriter",
  8710. "role": "Lead Developer"
  8711. }
  8712. ],
  8713. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8714. "homepage": "https://github.com/mockery/mockery",
  8715. "keywords": [
  8716. "BDD",
  8717. "TDD",
  8718. "library",
  8719. "mock",
  8720. "mock objects",
  8721. "mockery",
  8722. "stub",
  8723. "test",
  8724. "test double",
  8725. "testing"
  8726. ],
  8727. "support": {
  8728. "docs": "https://docs.mockery.io/",
  8729. "issues": "https://github.com/mockery/mockery/issues",
  8730. "rss": "https://github.com/mockery/mockery/releases.atom",
  8731. "security": "https://github.com/mockery/mockery/security/advisories",
  8732. "source": "https://github.com/mockery/mockery"
  8733. },
  8734. "time": "2024-05-16T03:13:13+00:00"
  8735. },
  8736. {
  8737. "name": "myclabs/deep-copy",
  8738. "version": "1.x-dev",
  8739. "source": {
  8740. "type": "git",
  8741. "url": "https://github.com/myclabs/DeepCopy.git",
  8742. "reference": "faed855a7b5f4d4637717c2b3863e277116beb36"
  8743. },
  8744. "dist": {
  8745. "type": "zip",
  8746. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/faed855a7b5f4d4637717c2b3863e277116beb36",
  8747. "reference": "faed855a7b5f4d4637717c2b3863e277116beb36",
  8748. "shasum": "",
  8749. "mirrors": [
  8750. {
  8751. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8752. "preferred": true
  8753. }
  8754. ]
  8755. },
  8756. "require": {
  8757. "php": "^7.1 || ^8.0"
  8758. },
  8759. "conflict": {
  8760. "doctrine/collections": "<1.6.8",
  8761. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  8762. },
  8763. "require-dev": {
  8764. "doctrine/collections": "^1.6.8",
  8765. "doctrine/common": "^2.13.3 || ^3.2.2",
  8766. "phpspec/prophecy": "^1.10",
  8767. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8768. },
  8769. "default-branch": true,
  8770. "type": "library",
  8771. "autoload": {
  8772. "files": [
  8773. "src/DeepCopy/deep_copy.php"
  8774. ],
  8775. "psr-4": {
  8776. "DeepCopy\\": "src/DeepCopy/"
  8777. }
  8778. },
  8779. "notification-url": "https://packagist.org/downloads/",
  8780. "license": [
  8781. "MIT"
  8782. ],
  8783. "description": "Create deep copies (clones) of your objects",
  8784. "keywords": [
  8785. "clone",
  8786. "copy",
  8787. "duplicate",
  8788. "object",
  8789. "object graph"
  8790. ],
  8791. "support": {
  8792. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8793. "source": "https://github.com/myclabs/DeepCopy/tree/1.13.3"
  8794. },
  8795. "funding": [
  8796. {
  8797. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8798. "type": "tidelift"
  8799. }
  8800. ],
  8801. "time": "2025-07-05T12:25:42+00:00"
  8802. },
  8803. {
  8804. "name": "nunomaduro/collision",
  8805. "version": "v5.11.0",
  8806. "source": {
  8807. "type": "git",
  8808. "url": "https://github.com/nunomaduro/collision.git",
  8809. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461"
  8810. },
  8811. "dist": {
  8812. "type": "zip",
  8813. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/8b610eef8582ccdc05d8f2ab23305e2d37049461",
  8814. "reference": "8b610eef8582ccdc05d8f2ab23305e2d37049461",
  8815. "shasum": "",
  8816. "mirrors": [
  8817. {
  8818. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8819. "preferred": true
  8820. }
  8821. ]
  8822. },
  8823. "require": {
  8824. "facade/ignition-contracts": "^1.0",
  8825. "filp/whoops": "^2.14.3",
  8826. "php": "^7.3 || ^8.0",
  8827. "symfony/console": "^5.0"
  8828. },
  8829. "require-dev": {
  8830. "brianium/paratest": "^6.1",
  8831. "fideloper/proxy": "^4.4.1",
  8832. "fruitcake/laravel-cors": "^2.0.3",
  8833. "laravel/framework": "8.x-dev",
  8834. "nunomaduro/larastan": "^0.6.2",
  8835. "nunomaduro/mock-final-classes": "^1.0",
  8836. "orchestra/testbench": "^6.0",
  8837. "phpstan/phpstan": "^0.12.64",
  8838. "phpunit/phpunit": "^9.5.0"
  8839. },
  8840. "type": "library",
  8841. "extra": {
  8842. "laravel": {
  8843. "providers": [
  8844. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  8845. ]
  8846. }
  8847. },
  8848. "autoload": {
  8849. "psr-4": {
  8850. "NunoMaduro\\Collision\\": "src/"
  8851. }
  8852. },
  8853. "notification-url": "https://packagist.org/downloads/",
  8854. "license": [
  8855. "MIT"
  8856. ],
  8857. "authors": [
  8858. {
  8859. "name": "Nuno Maduro",
  8860. "email": "enunomaduro@gmail.com"
  8861. }
  8862. ],
  8863. "description": "Cli error handling for console/command-line PHP applications.",
  8864. "keywords": [
  8865. "artisan",
  8866. "cli",
  8867. "command-line",
  8868. "console",
  8869. "error",
  8870. "handling",
  8871. "laravel",
  8872. "laravel-zero",
  8873. "php",
  8874. "symfony"
  8875. ],
  8876. "support": {
  8877. "issues": "https://github.com/nunomaduro/collision/issues",
  8878. "source": "https://github.com/nunomaduro/collision"
  8879. },
  8880. "funding": [
  8881. {
  8882. "url": "https://www.paypal.com/paypalme/enunomaduro",
  8883. "type": "custom"
  8884. },
  8885. {
  8886. "url": "https://github.com/nunomaduro",
  8887. "type": "github"
  8888. },
  8889. {
  8890. "url": "https://www.patreon.com/nunomaduro",
  8891. "type": "patreon"
  8892. }
  8893. ],
  8894. "time": "2022-01-10T16:22:52+00:00"
  8895. },
  8896. {
  8897. "name": "phar-io/manifest",
  8898. "version": "dev-master",
  8899. "source": {
  8900. "type": "git",
  8901. "url": "https://github.com/phar-io/manifest.git",
  8902. "reference": "c581d4941e196459bf76c945a8ca922963a66708"
  8903. },
  8904. "dist": {
  8905. "type": "zip",
  8906. "url": "https://api.github.com/repos/phar-io/manifest/zipball/c581d4941e196459bf76c945a8ca922963a66708",
  8907. "reference": "c581d4941e196459bf76c945a8ca922963a66708",
  8908. "shasum": "",
  8909. "mirrors": [
  8910. {
  8911. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8912. "preferred": true
  8913. }
  8914. ]
  8915. },
  8916. "require": {
  8917. "ext-dom": "*",
  8918. "ext-libxml": "*",
  8919. "ext-phar": "*",
  8920. "ext-xmlwriter": "*",
  8921. "phar-io/version": "^3.0.1",
  8922. "php": "^7.2 || ^8.0"
  8923. },
  8924. "default-branch": true,
  8925. "type": "library",
  8926. "extra": {
  8927. "branch-alias": {
  8928. "dev-master": "2.0.x-dev"
  8929. }
  8930. },
  8931. "autoload": {
  8932. "classmap": [
  8933. "src/"
  8934. ]
  8935. },
  8936. "notification-url": "https://packagist.org/downloads/",
  8937. "license": [
  8938. "BSD-3-Clause"
  8939. ],
  8940. "authors": [
  8941. {
  8942. "name": "Arne Blankerts",
  8943. "email": "arne@blankerts.de",
  8944. "role": "Developer"
  8945. },
  8946. {
  8947. "name": "Sebastian Heuer",
  8948. "email": "sebastian@phpeople.de",
  8949. "role": "Developer"
  8950. },
  8951. {
  8952. "name": "Sebastian Bergmann",
  8953. "email": "sebastian@phpunit.de",
  8954. "role": "Developer"
  8955. }
  8956. ],
  8957. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8958. "support": {
  8959. "issues": "https://github.com/phar-io/manifest/issues",
  8960. "source": "https://github.com/phar-io/manifest/tree/master"
  8961. },
  8962. "funding": [
  8963. {
  8964. "url": "https://github.com/theseer",
  8965. "type": "github"
  8966. }
  8967. ],
  8968. "time": "2025-11-27T15:23:09+00:00"
  8969. },
  8970. {
  8971. "name": "phar-io/version",
  8972. "version": "3.2.1",
  8973. "source": {
  8974. "type": "git",
  8975. "url": "https://github.com/phar-io/version.git",
  8976. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8977. },
  8978. "dist": {
  8979. "type": "zip",
  8980. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8981. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8982. "shasum": "",
  8983. "mirrors": [
  8984. {
  8985. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8986. "preferred": true
  8987. }
  8988. ]
  8989. },
  8990. "require": {
  8991. "php": "^7.2 || ^8.0"
  8992. },
  8993. "type": "library",
  8994. "autoload": {
  8995. "classmap": [
  8996. "src/"
  8997. ]
  8998. },
  8999. "notification-url": "https://packagist.org/downloads/",
  9000. "license": [
  9001. "BSD-3-Clause"
  9002. ],
  9003. "authors": [
  9004. {
  9005. "name": "Arne Blankerts",
  9006. "email": "arne@blankerts.de",
  9007. "role": "Developer"
  9008. },
  9009. {
  9010. "name": "Sebastian Heuer",
  9011. "email": "sebastian@phpeople.de",
  9012. "role": "Developer"
  9013. },
  9014. {
  9015. "name": "Sebastian Bergmann",
  9016. "email": "sebastian@phpunit.de",
  9017. "role": "Developer"
  9018. }
  9019. ],
  9020. "description": "Library for handling version information and constraints",
  9021. "support": {
  9022. "issues": "https://github.com/phar-io/version/issues",
  9023. "source": "https://github.com/phar-io/version/tree/3.2.1"
  9024. },
  9025. "time": "2022-02-21T01:04:05+00:00"
  9026. },
  9027. {
  9028. "name": "phpunit/php-code-coverage",
  9029. "version": "9.2.32",
  9030. "source": {
  9031. "type": "git",
  9032. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9033. "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5"
  9034. },
  9035. "dist": {
  9036. "type": "zip",
  9037. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/85402a822d1ecf1db1096959413d35e1c37cf1a5",
  9038. "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5",
  9039. "shasum": "",
  9040. "mirrors": [
  9041. {
  9042. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9043. "preferred": true
  9044. }
  9045. ]
  9046. },
  9047. "require": {
  9048. "ext-dom": "*",
  9049. "ext-libxml": "*",
  9050. "ext-xmlwriter": "*",
  9051. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  9052. "php": ">=7.3",
  9053. "phpunit/php-file-iterator": "^3.0.6",
  9054. "phpunit/php-text-template": "^2.0.4",
  9055. "sebastian/code-unit-reverse-lookup": "^2.0.3",
  9056. "sebastian/complexity": "^2.0.3",
  9057. "sebastian/environment": "^5.1.5",
  9058. "sebastian/lines-of-code": "^1.0.4",
  9059. "sebastian/version": "^3.0.2",
  9060. "theseer/tokenizer": "^1.2.3"
  9061. },
  9062. "require-dev": {
  9063. "phpunit/phpunit": "^9.6"
  9064. },
  9065. "suggest": {
  9066. "ext-pcov": "PHP extension that provides line coverage",
  9067. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9068. },
  9069. "type": "library",
  9070. "extra": {
  9071. "branch-alias": {
  9072. "dev-main": "9.2.x-dev"
  9073. }
  9074. },
  9075. "autoload": {
  9076. "classmap": [
  9077. "src/"
  9078. ]
  9079. },
  9080. "notification-url": "https://packagist.org/downloads/",
  9081. "license": [
  9082. "BSD-3-Clause"
  9083. ],
  9084. "authors": [
  9085. {
  9086. "name": "Sebastian Bergmann",
  9087. "email": "sebastian@phpunit.de",
  9088. "role": "lead"
  9089. }
  9090. ],
  9091. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9092. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9093. "keywords": [
  9094. "coverage",
  9095. "testing",
  9096. "xunit"
  9097. ],
  9098. "support": {
  9099. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9100. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  9101. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.32"
  9102. },
  9103. "funding": [
  9104. {
  9105. "url": "https://github.com/sebastianbergmann",
  9106. "type": "github"
  9107. }
  9108. ],
  9109. "time": "2024-08-22T04:23:01+00:00"
  9110. },
  9111. {
  9112. "name": "phpunit/php-file-iterator",
  9113. "version": "3.0.6",
  9114. "source": {
  9115. "type": "git",
  9116. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9117. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  9118. },
  9119. "dist": {
  9120. "type": "zip",
  9121. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9122. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  9123. "shasum": "",
  9124. "mirrors": [
  9125. {
  9126. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9127. "preferred": true
  9128. }
  9129. ]
  9130. },
  9131. "require": {
  9132. "php": ">=7.3"
  9133. },
  9134. "require-dev": {
  9135. "phpunit/phpunit": "^9.3"
  9136. },
  9137. "type": "library",
  9138. "extra": {
  9139. "branch-alias": {
  9140. "dev-master": "3.0-dev"
  9141. }
  9142. },
  9143. "autoload": {
  9144. "classmap": [
  9145. "src/"
  9146. ]
  9147. },
  9148. "notification-url": "https://packagist.org/downloads/",
  9149. "license": [
  9150. "BSD-3-Clause"
  9151. ],
  9152. "authors": [
  9153. {
  9154. "name": "Sebastian Bergmann",
  9155. "email": "sebastian@phpunit.de",
  9156. "role": "lead"
  9157. }
  9158. ],
  9159. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9160. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9161. "keywords": [
  9162. "filesystem",
  9163. "iterator"
  9164. ],
  9165. "support": {
  9166. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9167. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  9168. },
  9169. "funding": [
  9170. {
  9171. "url": "https://github.com/sebastianbergmann",
  9172. "type": "github"
  9173. }
  9174. ],
  9175. "time": "2021-12-02T12:48:52+00:00"
  9176. },
  9177. {
  9178. "name": "phpunit/php-invoker",
  9179. "version": "3.1.1",
  9180. "source": {
  9181. "type": "git",
  9182. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9183. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  9184. },
  9185. "dist": {
  9186. "type": "zip",
  9187. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9188. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9189. "shasum": "",
  9190. "mirrors": [
  9191. {
  9192. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9193. "preferred": true
  9194. }
  9195. ]
  9196. },
  9197. "require": {
  9198. "php": ">=7.3"
  9199. },
  9200. "require-dev": {
  9201. "ext-pcntl": "*",
  9202. "phpunit/phpunit": "^9.3"
  9203. },
  9204. "suggest": {
  9205. "ext-pcntl": "*"
  9206. },
  9207. "type": "library",
  9208. "extra": {
  9209. "branch-alias": {
  9210. "dev-master": "3.1-dev"
  9211. }
  9212. },
  9213. "autoload": {
  9214. "classmap": [
  9215. "src/"
  9216. ]
  9217. },
  9218. "notification-url": "https://packagist.org/downloads/",
  9219. "license": [
  9220. "BSD-3-Clause"
  9221. ],
  9222. "authors": [
  9223. {
  9224. "name": "Sebastian Bergmann",
  9225. "email": "sebastian@phpunit.de",
  9226. "role": "lead"
  9227. }
  9228. ],
  9229. "description": "Invoke callables with a timeout",
  9230. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9231. "keywords": [
  9232. "process"
  9233. ],
  9234. "support": {
  9235. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9236. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  9237. },
  9238. "funding": [
  9239. {
  9240. "url": "https://github.com/sebastianbergmann",
  9241. "type": "github"
  9242. }
  9243. ],
  9244. "time": "2020-09-28T05:58:55+00:00"
  9245. },
  9246. {
  9247. "name": "phpunit/php-text-template",
  9248. "version": "2.0.4",
  9249. "source": {
  9250. "type": "git",
  9251. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9252. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  9253. },
  9254. "dist": {
  9255. "type": "zip",
  9256. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9257. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9258. "shasum": "",
  9259. "mirrors": [
  9260. {
  9261. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9262. "preferred": true
  9263. }
  9264. ]
  9265. },
  9266. "require": {
  9267. "php": ">=7.3"
  9268. },
  9269. "require-dev": {
  9270. "phpunit/phpunit": "^9.3"
  9271. },
  9272. "type": "library",
  9273. "extra": {
  9274. "branch-alias": {
  9275. "dev-master": "2.0-dev"
  9276. }
  9277. },
  9278. "autoload": {
  9279. "classmap": [
  9280. "src/"
  9281. ]
  9282. },
  9283. "notification-url": "https://packagist.org/downloads/",
  9284. "license": [
  9285. "BSD-3-Clause"
  9286. ],
  9287. "authors": [
  9288. {
  9289. "name": "Sebastian Bergmann",
  9290. "email": "sebastian@phpunit.de",
  9291. "role": "lead"
  9292. }
  9293. ],
  9294. "description": "Simple template engine.",
  9295. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9296. "keywords": [
  9297. "template"
  9298. ],
  9299. "support": {
  9300. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9301. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  9302. },
  9303. "funding": [
  9304. {
  9305. "url": "https://github.com/sebastianbergmann",
  9306. "type": "github"
  9307. }
  9308. ],
  9309. "time": "2020-10-26T05:33:50+00:00"
  9310. },
  9311. {
  9312. "name": "phpunit/php-timer",
  9313. "version": "5.0.3",
  9314. "source": {
  9315. "type": "git",
  9316. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9317. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  9318. },
  9319. "dist": {
  9320. "type": "zip",
  9321. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9322. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9323. "shasum": "",
  9324. "mirrors": [
  9325. {
  9326. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9327. "preferred": true
  9328. }
  9329. ]
  9330. },
  9331. "require": {
  9332. "php": ">=7.3"
  9333. },
  9334. "require-dev": {
  9335. "phpunit/phpunit": "^9.3"
  9336. },
  9337. "type": "library",
  9338. "extra": {
  9339. "branch-alias": {
  9340. "dev-master": "5.0-dev"
  9341. }
  9342. },
  9343. "autoload": {
  9344. "classmap": [
  9345. "src/"
  9346. ]
  9347. },
  9348. "notification-url": "https://packagist.org/downloads/",
  9349. "license": [
  9350. "BSD-3-Clause"
  9351. ],
  9352. "authors": [
  9353. {
  9354. "name": "Sebastian Bergmann",
  9355. "email": "sebastian@phpunit.de",
  9356. "role": "lead"
  9357. }
  9358. ],
  9359. "description": "Utility class for timing",
  9360. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9361. "keywords": [
  9362. "timer"
  9363. ],
  9364. "support": {
  9365. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9366. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  9367. },
  9368. "funding": [
  9369. {
  9370. "url": "https://github.com/sebastianbergmann",
  9371. "type": "github"
  9372. }
  9373. ],
  9374. "time": "2020-10-26T13:16:10+00:00"
  9375. },
  9376. {
  9377. "name": "phpunit/phpunit",
  9378. "version": "9.6.30",
  9379. "source": {
  9380. "type": "git",
  9381. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9382. "reference": "b69489b312503bf8fa6d75a76916919d7d2fa6d4"
  9383. },
  9384. "dist": {
  9385. "type": "zip",
  9386. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/b69489b312503bf8fa6d75a76916919d7d2fa6d4",
  9387. "reference": "b69489b312503bf8fa6d75a76916919d7d2fa6d4",
  9388. "shasum": "",
  9389. "mirrors": [
  9390. {
  9391. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9392. "preferred": true
  9393. }
  9394. ]
  9395. },
  9396. "require": {
  9397. "doctrine/instantiator": "^1.5.0 || ^2",
  9398. "ext-dom": "*",
  9399. "ext-json": "*",
  9400. "ext-libxml": "*",
  9401. "ext-mbstring": "*",
  9402. "ext-xml": "*",
  9403. "ext-xmlwriter": "*",
  9404. "myclabs/deep-copy": "^1.13.4",
  9405. "phar-io/manifest": "^2.0.4",
  9406. "phar-io/version": "^3.2.1",
  9407. "php": ">=7.3",
  9408. "phpunit/php-code-coverage": "^9.2.32",
  9409. "phpunit/php-file-iterator": "^3.0.6",
  9410. "phpunit/php-invoker": "^3.1.1",
  9411. "phpunit/php-text-template": "^2.0.4",
  9412. "phpunit/php-timer": "^5.0.3",
  9413. "sebastian/cli-parser": "^1.0.2",
  9414. "sebastian/code-unit": "^1.0.8",
  9415. "sebastian/comparator": "^4.0.9",
  9416. "sebastian/diff": "^4.0.6",
  9417. "sebastian/environment": "^5.1.5",
  9418. "sebastian/exporter": "^4.0.8",
  9419. "sebastian/global-state": "^5.0.8",
  9420. "sebastian/object-enumerator": "^4.0.4",
  9421. "sebastian/resource-operations": "^3.0.4",
  9422. "sebastian/type": "^3.2.1",
  9423. "sebastian/version": "^3.0.2"
  9424. },
  9425. "suggest": {
  9426. "ext-soap": "To be able to generate mocks based on WSDL files",
  9427. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9428. },
  9429. "bin": [
  9430. "phpunit"
  9431. ],
  9432. "type": "library",
  9433. "extra": {
  9434. "branch-alias": {
  9435. "dev-master": "9.6-dev"
  9436. }
  9437. },
  9438. "autoload": {
  9439. "files": [
  9440. "src/Framework/Assert/Functions.php"
  9441. ],
  9442. "classmap": [
  9443. "src/"
  9444. ]
  9445. },
  9446. "notification-url": "https://packagist.org/downloads/",
  9447. "license": [
  9448. "BSD-3-Clause"
  9449. ],
  9450. "authors": [
  9451. {
  9452. "name": "Sebastian Bergmann",
  9453. "email": "sebastian@phpunit.de",
  9454. "role": "lead"
  9455. }
  9456. ],
  9457. "description": "The PHP Unit Testing framework.",
  9458. "homepage": "https://phpunit.de/",
  9459. "keywords": [
  9460. "phpunit",
  9461. "testing",
  9462. "xunit"
  9463. ],
  9464. "support": {
  9465. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9466. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9467. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.30"
  9468. },
  9469. "funding": [
  9470. {
  9471. "url": "https://phpunit.de/sponsors.html",
  9472. "type": "custom"
  9473. },
  9474. {
  9475. "url": "https://github.com/sebastianbergmann",
  9476. "type": "github"
  9477. },
  9478. {
  9479. "url": "https://liberapay.com/sebastianbergmann",
  9480. "type": "liberapay"
  9481. },
  9482. {
  9483. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  9484. "type": "thanks_dev"
  9485. },
  9486. {
  9487. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9488. "type": "tidelift"
  9489. }
  9490. ],
  9491. "time": "2025-12-01T07:35:08+00:00"
  9492. },
  9493. {
  9494. "name": "sebastian/cli-parser",
  9495. "version": "1.0.2",
  9496. "source": {
  9497. "type": "git",
  9498. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9499. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b"
  9500. },
  9501. "dist": {
  9502. "type": "zip",
  9503. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  9504. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  9505. "shasum": "",
  9506. "mirrors": [
  9507. {
  9508. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9509. "preferred": true
  9510. }
  9511. ]
  9512. },
  9513. "require": {
  9514. "php": ">=7.3"
  9515. },
  9516. "require-dev": {
  9517. "phpunit/phpunit": "^9.3"
  9518. },
  9519. "type": "library",
  9520. "extra": {
  9521. "branch-alias": {
  9522. "dev-master": "1.0-dev"
  9523. }
  9524. },
  9525. "autoload": {
  9526. "classmap": [
  9527. "src/"
  9528. ]
  9529. },
  9530. "notification-url": "https://packagist.org/downloads/",
  9531. "license": [
  9532. "BSD-3-Clause"
  9533. ],
  9534. "authors": [
  9535. {
  9536. "name": "Sebastian Bergmann",
  9537. "email": "sebastian@phpunit.de",
  9538. "role": "lead"
  9539. }
  9540. ],
  9541. "description": "Library for parsing CLI options",
  9542. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9543. "support": {
  9544. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9545. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.2"
  9546. },
  9547. "funding": [
  9548. {
  9549. "url": "https://github.com/sebastianbergmann",
  9550. "type": "github"
  9551. }
  9552. ],
  9553. "time": "2024-03-02T06:27:43+00:00"
  9554. },
  9555. {
  9556. "name": "sebastian/code-unit",
  9557. "version": "1.0.8",
  9558. "source": {
  9559. "type": "git",
  9560. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9561. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  9562. },
  9563. "dist": {
  9564. "type": "zip",
  9565. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9566. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9567. "shasum": "",
  9568. "mirrors": [
  9569. {
  9570. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9571. "preferred": true
  9572. }
  9573. ]
  9574. },
  9575. "require": {
  9576. "php": ">=7.3"
  9577. },
  9578. "require-dev": {
  9579. "phpunit/phpunit": "^9.3"
  9580. },
  9581. "type": "library",
  9582. "extra": {
  9583. "branch-alias": {
  9584. "dev-master": "1.0-dev"
  9585. }
  9586. },
  9587. "autoload": {
  9588. "classmap": [
  9589. "src/"
  9590. ]
  9591. },
  9592. "notification-url": "https://packagist.org/downloads/",
  9593. "license": [
  9594. "BSD-3-Clause"
  9595. ],
  9596. "authors": [
  9597. {
  9598. "name": "Sebastian Bergmann",
  9599. "email": "sebastian@phpunit.de",
  9600. "role": "lead"
  9601. }
  9602. ],
  9603. "description": "Collection of value objects that represent the PHP code units",
  9604. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9605. "support": {
  9606. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9607. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  9608. },
  9609. "funding": [
  9610. {
  9611. "url": "https://github.com/sebastianbergmann",
  9612. "type": "github"
  9613. }
  9614. ],
  9615. "time": "2020-10-26T13:08:54+00:00"
  9616. },
  9617. {
  9618. "name": "sebastian/code-unit-reverse-lookup",
  9619. "version": "2.0.3",
  9620. "source": {
  9621. "type": "git",
  9622. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9623. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  9624. },
  9625. "dist": {
  9626. "type": "zip",
  9627. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9628. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9629. "shasum": "",
  9630. "mirrors": [
  9631. {
  9632. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9633. "preferred": true
  9634. }
  9635. ]
  9636. },
  9637. "require": {
  9638. "php": ">=7.3"
  9639. },
  9640. "require-dev": {
  9641. "phpunit/phpunit": "^9.3"
  9642. },
  9643. "type": "library",
  9644. "extra": {
  9645. "branch-alias": {
  9646. "dev-master": "2.0-dev"
  9647. }
  9648. },
  9649. "autoload": {
  9650. "classmap": [
  9651. "src/"
  9652. ]
  9653. },
  9654. "notification-url": "https://packagist.org/downloads/",
  9655. "license": [
  9656. "BSD-3-Clause"
  9657. ],
  9658. "authors": [
  9659. {
  9660. "name": "Sebastian Bergmann",
  9661. "email": "sebastian@phpunit.de"
  9662. }
  9663. ],
  9664. "description": "Looks up which function or method a line of code belongs to",
  9665. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9666. "support": {
  9667. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9668. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  9669. },
  9670. "funding": [
  9671. {
  9672. "url": "https://github.com/sebastianbergmann",
  9673. "type": "github"
  9674. }
  9675. ],
  9676. "time": "2020-09-28T05:30:19+00:00"
  9677. },
  9678. {
  9679. "name": "sebastian/comparator",
  9680. "version": "4.0.x-dev",
  9681. "source": {
  9682. "type": "git",
  9683. "url": "https://github.com/sebastianbergmann/comparator.git",
  9684. "reference": "67a2df3a62639eab2cc5906065e9805d4fd5dfc5"
  9685. },
  9686. "dist": {
  9687. "type": "zip",
  9688. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/67a2df3a62639eab2cc5906065e9805d4fd5dfc5",
  9689. "reference": "67a2df3a62639eab2cc5906065e9805d4fd5dfc5",
  9690. "shasum": "",
  9691. "mirrors": [
  9692. {
  9693. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9694. "preferred": true
  9695. }
  9696. ]
  9697. },
  9698. "require": {
  9699. "php": ">=7.3",
  9700. "sebastian/diff": "^4.0",
  9701. "sebastian/exporter": "^4.0"
  9702. },
  9703. "require-dev": {
  9704. "phpunit/phpunit": "^9.3"
  9705. },
  9706. "type": "library",
  9707. "extra": {
  9708. "branch-alias": {
  9709. "dev-master": "4.0-dev"
  9710. }
  9711. },
  9712. "autoload": {
  9713. "classmap": [
  9714. "src/"
  9715. ]
  9716. },
  9717. "notification-url": "https://packagist.org/downloads/",
  9718. "license": [
  9719. "BSD-3-Clause"
  9720. ],
  9721. "authors": [
  9722. {
  9723. "name": "Sebastian Bergmann",
  9724. "email": "sebastian@phpunit.de"
  9725. },
  9726. {
  9727. "name": "Jeff Welch",
  9728. "email": "whatthejeff@gmail.com"
  9729. },
  9730. {
  9731. "name": "Volker Dusch",
  9732. "email": "github@wallbash.com"
  9733. },
  9734. {
  9735. "name": "Bernhard Schussek",
  9736. "email": "bschussek@2bepublished.at"
  9737. }
  9738. ],
  9739. "description": "Provides the functionality to compare PHP values for equality",
  9740. "homepage": "https://github.com/sebastianbergmann/comparator",
  9741. "keywords": [
  9742. "comparator",
  9743. "compare",
  9744. "equality"
  9745. ],
  9746. "support": {
  9747. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9748. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.9"
  9749. },
  9750. "funding": [
  9751. {
  9752. "url": "https://github.com/sebastianbergmann",
  9753. "type": "github"
  9754. },
  9755. {
  9756. "url": "https://liberapay.com/sebastianbergmann",
  9757. "type": "liberapay"
  9758. },
  9759. {
  9760. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  9761. "type": "thanks_dev"
  9762. },
  9763. {
  9764. "url": "https://tidelift.com/funding/github/packagist/sebastian/comparator",
  9765. "type": "tidelift"
  9766. }
  9767. ],
  9768. "time": "2025-08-10T06:51:50+00:00"
  9769. },
  9770. {
  9771. "name": "sebastian/complexity",
  9772. "version": "2.0.3",
  9773. "source": {
  9774. "type": "git",
  9775. "url": "https://github.com/sebastianbergmann/complexity.git",
  9776. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a"
  9777. },
  9778. "dist": {
  9779. "type": "zip",
  9780. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a",
  9781. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a",
  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. "nikic/php-parser": "^4.18 || ^5.0",
  9792. "php": ">=7.3"
  9793. },
  9794. "require-dev": {
  9795. "phpunit/phpunit": "^9.3"
  9796. },
  9797. "type": "library",
  9798. "extra": {
  9799. "branch-alias": {
  9800. "dev-master": "2.0-dev"
  9801. }
  9802. },
  9803. "autoload": {
  9804. "classmap": [
  9805. "src/"
  9806. ]
  9807. },
  9808. "notification-url": "https://packagist.org/downloads/",
  9809. "license": [
  9810. "BSD-3-Clause"
  9811. ],
  9812. "authors": [
  9813. {
  9814. "name": "Sebastian Bergmann",
  9815. "email": "sebastian@phpunit.de",
  9816. "role": "lead"
  9817. }
  9818. ],
  9819. "description": "Library for calculating the complexity of PHP code units",
  9820. "homepage": "https://github.com/sebastianbergmann/complexity",
  9821. "support": {
  9822. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9823. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3"
  9824. },
  9825. "funding": [
  9826. {
  9827. "url": "https://github.com/sebastianbergmann",
  9828. "type": "github"
  9829. }
  9830. ],
  9831. "time": "2023-12-22T06:19:30+00:00"
  9832. },
  9833. {
  9834. "name": "sebastian/diff",
  9835. "version": "4.0.6",
  9836. "source": {
  9837. "type": "git",
  9838. "url": "https://github.com/sebastianbergmann/diff.git",
  9839. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  9840. },
  9841. "dist": {
  9842. "type": "zip",
  9843. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  9844. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  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": ">=7.3"
  9855. },
  9856. "require-dev": {
  9857. "phpunit/phpunit": "^9.3",
  9858. "symfony/process": "^4.2 || ^5"
  9859. },
  9860. "type": "library",
  9861. "extra": {
  9862. "branch-alias": {
  9863. "dev-master": "4.0-dev"
  9864. }
  9865. },
  9866. "autoload": {
  9867. "classmap": [
  9868. "src/"
  9869. ]
  9870. },
  9871. "notification-url": "https://packagist.org/downloads/",
  9872. "license": [
  9873. "BSD-3-Clause"
  9874. ],
  9875. "authors": [
  9876. {
  9877. "name": "Sebastian Bergmann",
  9878. "email": "sebastian@phpunit.de"
  9879. },
  9880. {
  9881. "name": "Kore Nordmann",
  9882. "email": "mail@kore-nordmann.de"
  9883. }
  9884. ],
  9885. "description": "Diff implementation",
  9886. "homepage": "https://github.com/sebastianbergmann/diff",
  9887. "keywords": [
  9888. "diff",
  9889. "udiff",
  9890. "unidiff",
  9891. "unified diff"
  9892. ],
  9893. "support": {
  9894. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9895. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  9896. },
  9897. "funding": [
  9898. {
  9899. "url": "https://github.com/sebastianbergmann",
  9900. "type": "github"
  9901. }
  9902. ],
  9903. "time": "2024-03-02T06:30:58+00:00"
  9904. },
  9905. {
  9906. "name": "sebastian/environment",
  9907. "version": "5.1.5",
  9908. "source": {
  9909. "type": "git",
  9910. "url": "https://github.com/sebastianbergmann/environment.git",
  9911. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  9912. },
  9913. "dist": {
  9914. "type": "zip",
  9915. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9916. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  9917. "shasum": "",
  9918. "mirrors": [
  9919. {
  9920. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9921. "preferred": true
  9922. }
  9923. ]
  9924. },
  9925. "require": {
  9926. "php": ">=7.3"
  9927. },
  9928. "require-dev": {
  9929. "phpunit/phpunit": "^9.3"
  9930. },
  9931. "suggest": {
  9932. "ext-posix": "*"
  9933. },
  9934. "type": "library",
  9935. "extra": {
  9936. "branch-alias": {
  9937. "dev-master": "5.1-dev"
  9938. }
  9939. },
  9940. "autoload": {
  9941. "classmap": [
  9942. "src/"
  9943. ]
  9944. },
  9945. "notification-url": "https://packagist.org/downloads/",
  9946. "license": [
  9947. "BSD-3-Clause"
  9948. ],
  9949. "authors": [
  9950. {
  9951. "name": "Sebastian Bergmann",
  9952. "email": "sebastian@phpunit.de"
  9953. }
  9954. ],
  9955. "description": "Provides functionality to handle HHVM/PHP environments",
  9956. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9957. "keywords": [
  9958. "Xdebug",
  9959. "environment",
  9960. "hhvm"
  9961. ],
  9962. "support": {
  9963. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9964. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  9965. },
  9966. "funding": [
  9967. {
  9968. "url": "https://github.com/sebastianbergmann",
  9969. "type": "github"
  9970. }
  9971. ],
  9972. "time": "2023-02-03T06:03:51+00:00"
  9973. },
  9974. {
  9975. "name": "sebastian/exporter",
  9976. "version": "4.0.8",
  9977. "source": {
  9978. "type": "git",
  9979. "url": "https://github.com/sebastianbergmann/exporter.git",
  9980. "reference": "14c6ba52f95a36c3d27c835d65efc7123c446e8c"
  9981. },
  9982. "dist": {
  9983. "type": "zip",
  9984. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/14c6ba52f95a36c3d27c835d65efc7123c446e8c",
  9985. "reference": "14c6ba52f95a36c3d27c835d65efc7123c446e8c",
  9986. "shasum": "",
  9987. "mirrors": [
  9988. {
  9989. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9990. "preferred": true
  9991. }
  9992. ]
  9993. },
  9994. "require": {
  9995. "php": ">=7.3",
  9996. "sebastian/recursion-context": "^4.0"
  9997. },
  9998. "require-dev": {
  9999. "ext-mbstring": "*",
  10000. "phpunit/phpunit": "^9.3"
  10001. },
  10002. "type": "library",
  10003. "extra": {
  10004. "branch-alias": {
  10005. "dev-master": "4.0-dev"
  10006. }
  10007. },
  10008. "autoload": {
  10009. "classmap": [
  10010. "src/"
  10011. ]
  10012. },
  10013. "notification-url": "https://packagist.org/downloads/",
  10014. "license": [
  10015. "BSD-3-Clause"
  10016. ],
  10017. "authors": [
  10018. {
  10019. "name": "Sebastian Bergmann",
  10020. "email": "sebastian@phpunit.de"
  10021. },
  10022. {
  10023. "name": "Jeff Welch",
  10024. "email": "whatthejeff@gmail.com"
  10025. },
  10026. {
  10027. "name": "Volker Dusch",
  10028. "email": "github@wallbash.com"
  10029. },
  10030. {
  10031. "name": "Adam Harvey",
  10032. "email": "aharvey@php.net"
  10033. },
  10034. {
  10035. "name": "Bernhard Schussek",
  10036. "email": "bschussek@gmail.com"
  10037. }
  10038. ],
  10039. "description": "Provides the functionality to export PHP variables for visualization",
  10040. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10041. "keywords": [
  10042. "export",
  10043. "exporter"
  10044. ],
  10045. "support": {
  10046. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10047. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.8"
  10048. },
  10049. "funding": [
  10050. {
  10051. "url": "https://github.com/sebastianbergmann",
  10052. "type": "github"
  10053. },
  10054. {
  10055. "url": "https://liberapay.com/sebastianbergmann",
  10056. "type": "liberapay"
  10057. },
  10058. {
  10059. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  10060. "type": "thanks_dev"
  10061. },
  10062. {
  10063. "url": "https://tidelift.com/funding/github/packagist/sebastian/exporter",
  10064. "type": "tidelift"
  10065. }
  10066. ],
  10067. "time": "2025-09-24T06:03:27+00:00"
  10068. },
  10069. {
  10070. "name": "sebastian/global-state",
  10071. "version": "5.0.8",
  10072. "source": {
  10073. "type": "git",
  10074. "url": "https://github.com/sebastianbergmann/global-state.git",
  10075. "reference": "b6781316bdcd28260904e7cc18ec983d0d2ef4f6"
  10076. },
  10077. "dist": {
  10078. "type": "zip",
  10079. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/b6781316bdcd28260904e7cc18ec983d0d2ef4f6",
  10080. "reference": "b6781316bdcd28260904e7cc18ec983d0d2ef4f6",
  10081. "shasum": "",
  10082. "mirrors": [
  10083. {
  10084. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10085. "preferred": true
  10086. }
  10087. ]
  10088. },
  10089. "require": {
  10090. "php": ">=7.3",
  10091. "sebastian/object-reflector": "^2.0",
  10092. "sebastian/recursion-context": "^4.0"
  10093. },
  10094. "require-dev": {
  10095. "ext-dom": "*",
  10096. "phpunit/phpunit": "^9.3"
  10097. },
  10098. "suggest": {
  10099. "ext-uopz": "*"
  10100. },
  10101. "type": "library",
  10102. "extra": {
  10103. "branch-alias": {
  10104. "dev-master": "5.0-dev"
  10105. }
  10106. },
  10107. "autoload": {
  10108. "classmap": [
  10109. "src/"
  10110. ]
  10111. },
  10112. "notification-url": "https://packagist.org/downloads/",
  10113. "license": [
  10114. "BSD-3-Clause"
  10115. ],
  10116. "authors": [
  10117. {
  10118. "name": "Sebastian Bergmann",
  10119. "email": "sebastian@phpunit.de"
  10120. }
  10121. ],
  10122. "description": "Snapshotting of global state",
  10123. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  10124. "keywords": [
  10125. "global state"
  10126. ],
  10127. "support": {
  10128. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10129. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.8"
  10130. },
  10131. "funding": [
  10132. {
  10133. "url": "https://github.com/sebastianbergmann",
  10134. "type": "github"
  10135. },
  10136. {
  10137. "url": "https://liberapay.com/sebastianbergmann",
  10138. "type": "liberapay"
  10139. },
  10140. {
  10141. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  10142. "type": "thanks_dev"
  10143. },
  10144. {
  10145. "url": "https://tidelift.com/funding/github/packagist/sebastian/global-state",
  10146. "type": "tidelift"
  10147. }
  10148. ],
  10149. "time": "2025-08-10T07:10:35+00:00"
  10150. },
  10151. {
  10152. "name": "sebastian/lines-of-code",
  10153. "version": "1.0.4",
  10154. "source": {
  10155. "type": "git",
  10156. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10157. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5"
  10158. },
  10159. "dist": {
  10160. "type": "zip",
  10161. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  10162. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  10163. "shasum": "",
  10164. "mirrors": [
  10165. {
  10166. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10167. "preferred": true
  10168. }
  10169. ]
  10170. },
  10171. "require": {
  10172. "nikic/php-parser": "^4.18 || ^5.0",
  10173. "php": ">=7.3"
  10174. },
  10175. "require-dev": {
  10176. "phpunit/phpunit": "^9.3"
  10177. },
  10178. "type": "library",
  10179. "extra": {
  10180. "branch-alias": {
  10181. "dev-master": "1.0-dev"
  10182. }
  10183. },
  10184. "autoload": {
  10185. "classmap": [
  10186. "src/"
  10187. ]
  10188. },
  10189. "notification-url": "https://packagist.org/downloads/",
  10190. "license": [
  10191. "BSD-3-Clause"
  10192. ],
  10193. "authors": [
  10194. {
  10195. "name": "Sebastian Bergmann",
  10196. "email": "sebastian@phpunit.de",
  10197. "role": "lead"
  10198. }
  10199. ],
  10200. "description": "Library for counting the lines of code in PHP source code",
  10201. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10202. "support": {
  10203. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10204. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4"
  10205. },
  10206. "funding": [
  10207. {
  10208. "url": "https://github.com/sebastianbergmann",
  10209. "type": "github"
  10210. }
  10211. ],
  10212. "time": "2023-12-22T06:20:34+00:00"
  10213. },
  10214. {
  10215. "name": "sebastian/object-enumerator",
  10216. "version": "4.0.4",
  10217. "source": {
  10218. "type": "git",
  10219. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10220. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  10221. },
  10222. "dist": {
  10223. "type": "zip",
  10224. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  10225. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  10226. "shasum": "",
  10227. "mirrors": [
  10228. {
  10229. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10230. "preferred": true
  10231. }
  10232. ]
  10233. },
  10234. "require": {
  10235. "php": ">=7.3",
  10236. "sebastian/object-reflector": "^2.0",
  10237. "sebastian/recursion-context": "^4.0"
  10238. },
  10239. "require-dev": {
  10240. "phpunit/phpunit": "^9.3"
  10241. },
  10242. "type": "library",
  10243. "extra": {
  10244. "branch-alias": {
  10245. "dev-master": "4.0-dev"
  10246. }
  10247. },
  10248. "autoload": {
  10249. "classmap": [
  10250. "src/"
  10251. ]
  10252. },
  10253. "notification-url": "https://packagist.org/downloads/",
  10254. "license": [
  10255. "BSD-3-Clause"
  10256. ],
  10257. "authors": [
  10258. {
  10259. "name": "Sebastian Bergmann",
  10260. "email": "sebastian@phpunit.de"
  10261. }
  10262. ],
  10263. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10264. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10265. "support": {
  10266. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10267. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  10268. },
  10269. "funding": [
  10270. {
  10271. "url": "https://github.com/sebastianbergmann",
  10272. "type": "github"
  10273. }
  10274. ],
  10275. "time": "2020-10-26T13:12:34+00:00"
  10276. },
  10277. {
  10278. "name": "sebastian/object-reflector",
  10279. "version": "2.0.4",
  10280. "source": {
  10281. "type": "git",
  10282. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10283. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  10284. },
  10285. "dist": {
  10286. "type": "zip",
  10287. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10288. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10289. "shasum": "",
  10290. "mirrors": [
  10291. {
  10292. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10293. "preferred": true
  10294. }
  10295. ]
  10296. },
  10297. "require": {
  10298. "php": ">=7.3"
  10299. },
  10300. "require-dev": {
  10301. "phpunit/phpunit": "^9.3"
  10302. },
  10303. "type": "library",
  10304. "extra": {
  10305. "branch-alias": {
  10306. "dev-master": "2.0-dev"
  10307. }
  10308. },
  10309. "autoload": {
  10310. "classmap": [
  10311. "src/"
  10312. ]
  10313. },
  10314. "notification-url": "https://packagist.org/downloads/",
  10315. "license": [
  10316. "BSD-3-Clause"
  10317. ],
  10318. "authors": [
  10319. {
  10320. "name": "Sebastian Bergmann",
  10321. "email": "sebastian@phpunit.de"
  10322. }
  10323. ],
  10324. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10325. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10326. "support": {
  10327. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10328. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  10329. },
  10330. "funding": [
  10331. {
  10332. "url": "https://github.com/sebastianbergmann",
  10333. "type": "github"
  10334. }
  10335. ],
  10336. "time": "2020-10-26T13:14:26+00:00"
  10337. },
  10338. {
  10339. "name": "sebastian/recursion-context",
  10340. "version": "4.0.5",
  10341. "source": {
  10342. "type": "git",
  10343. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10344. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  10345. },
  10346. "dist": {
  10347. "type": "zip",
  10348. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10349. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  10350. "shasum": "",
  10351. "mirrors": [
  10352. {
  10353. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10354. "preferred": true
  10355. }
  10356. ]
  10357. },
  10358. "require": {
  10359. "php": ">=7.3"
  10360. },
  10361. "require-dev": {
  10362. "phpunit/phpunit": "^9.3"
  10363. },
  10364. "type": "library",
  10365. "extra": {
  10366. "branch-alias": {
  10367. "dev-master": "4.0-dev"
  10368. }
  10369. },
  10370. "autoload": {
  10371. "classmap": [
  10372. "src/"
  10373. ]
  10374. },
  10375. "notification-url": "https://packagist.org/downloads/",
  10376. "license": [
  10377. "BSD-3-Clause"
  10378. ],
  10379. "authors": [
  10380. {
  10381. "name": "Sebastian Bergmann",
  10382. "email": "sebastian@phpunit.de"
  10383. },
  10384. {
  10385. "name": "Jeff Welch",
  10386. "email": "whatthejeff@gmail.com"
  10387. },
  10388. {
  10389. "name": "Adam Harvey",
  10390. "email": "aharvey@php.net"
  10391. }
  10392. ],
  10393. "description": "Provides functionality to recursively process PHP variables",
  10394. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10395. "support": {
  10396. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10397. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  10398. },
  10399. "funding": [
  10400. {
  10401. "url": "https://github.com/sebastianbergmann",
  10402. "type": "github"
  10403. }
  10404. ],
  10405. "time": "2023-02-03T06:07:39+00:00"
  10406. },
  10407. {
  10408. "name": "sebastian/resource-operations",
  10409. "version": "3.0.4",
  10410. "source": {
  10411. "type": "git",
  10412. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10413. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e"
  10414. },
  10415. "dist": {
  10416. "type": "zip",
  10417. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  10418. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  10419. "shasum": "",
  10420. "mirrors": [
  10421. {
  10422. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10423. "preferred": true
  10424. }
  10425. ]
  10426. },
  10427. "require": {
  10428. "php": ">=7.3"
  10429. },
  10430. "require-dev": {
  10431. "phpunit/phpunit": "^9.0"
  10432. },
  10433. "type": "library",
  10434. "extra": {
  10435. "branch-alias": {
  10436. "dev-main": "3.0-dev"
  10437. }
  10438. },
  10439. "autoload": {
  10440. "classmap": [
  10441. "src/"
  10442. ]
  10443. },
  10444. "notification-url": "https://packagist.org/downloads/",
  10445. "license": [
  10446. "BSD-3-Clause"
  10447. ],
  10448. "authors": [
  10449. {
  10450. "name": "Sebastian Bergmann",
  10451. "email": "sebastian@phpunit.de"
  10452. }
  10453. ],
  10454. "description": "Provides a list of PHP built-in functions that operate on resources",
  10455. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10456. "support": {
  10457. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.4"
  10458. },
  10459. "funding": [
  10460. {
  10461. "url": "https://github.com/sebastianbergmann",
  10462. "type": "github"
  10463. }
  10464. ],
  10465. "abandoned": true,
  10466. "time": "2024-03-14T16:00:52+00:00"
  10467. },
  10468. {
  10469. "name": "sebastian/type",
  10470. "version": "3.2.1",
  10471. "source": {
  10472. "type": "git",
  10473. "url": "https://github.com/sebastianbergmann/type.git",
  10474. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  10475. },
  10476. "dist": {
  10477. "type": "zip",
  10478. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10479. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  10480. "shasum": "",
  10481. "mirrors": [
  10482. {
  10483. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10484. "preferred": true
  10485. }
  10486. ]
  10487. },
  10488. "require": {
  10489. "php": ">=7.3"
  10490. },
  10491. "require-dev": {
  10492. "phpunit/phpunit": "^9.5"
  10493. },
  10494. "type": "library",
  10495. "extra": {
  10496. "branch-alias": {
  10497. "dev-master": "3.2-dev"
  10498. }
  10499. },
  10500. "autoload": {
  10501. "classmap": [
  10502. "src/"
  10503. ]
  10504. },
  10505. "notification-url": "https://packagist.org/downloads/",
  10506. "license": [
  10507. "BSD-3-Clause"
  10508. ],
  10509. "authors": [
  10510. {
  10511. "name": "Sebastian Bergmann",
  10512. "email": "sebastian@phpunit.de",
  10513. "role": "lead"
  10514. }
  10515. ],
  10516. "description": "Collection of value objects that represent the types of the PHP type system",
  10517. "homepage": "https://github.com/sebastianbergmann/type",
  10518. "support": {
  10519. "issues": "https://github.com/sebastianbergmann/type/issues",
  10520. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  10521. },
  10522. "funding": [
  10523. {
  10524. "url": "https://github.com/sebastianbergmann",
  10525. "type": "github"
  10526. }
  10527. ],
  10528. "time": "2023-02-03T06:13:03+00:00"
  10529. },
  10530. {
  10531. "name": "sebastian/version",
  10532. "version": "3.0.2",
  10533. "source": {
  10534. "type": "git",
  10535. "url": "https://github.com/sebastianbergmann/version.git",
  10536. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  10537. },
  10538. "dist": {
  10539. "type": "zip",
  10540. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  10541. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  10542. "shasum": "",
  10543. "mirrors": [
  10544. {
  10545. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10546. "preferred": true
  10547. }
  10548. ]
  10549. },
  10550. "require": {
  10551. "php": ">=7.3"
  10552. },
  10553. "type": "library",
  10554. "extra": {
  10555. "branch-alias": {
  10556. "dev-master": "3.0-dev"
  10557. }
  10558. },
  10559. "autoload": {
  10560. "classmap": [
  10561. "src/"
  10562. ]
  10563. },
  10564. "notification-url": "https://packagist.org/downloads/",
  10565. "license": [
  10566. "BSD-3-Clause"
  10567. ],
  10568. "authors": [
  10569. {
  10570. "name": "Sebastian Bergmann",
  10571. "email": "sebastian@phpunit.de",
  10572. "role": "lead"
  10573. }
  10574. ],
  10575. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10576. "homepage": "https://github.com/sebastianbergmann/version",
  10577. "support": {
  10578. "issues": "https://github.com/sebastianbergmann/version/issues",
  10579. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  10580. },
  10581. "funding": [
  10582. {
  10583. "url": "https://github.com/sebastianbergmann",
  10584. "type": "github"
  10585. }
  10586. ],
  10587. "time": "2020-09-28T06:39:44+00:00"
  10588. },
  10589. {
  10590. "name": "symfony/yaml",
  10591. "version": "v6.0.19",
  10592. "source": {
  10593. "type": "git",
  10594. "url": "https://github.com/symfony/yaml.git",
  10595. "reference": "deec3a812a0305a50db8ae689b183f43d915c884"
  10596. },
  10597. "dist": {
  10598. "type": "zip",
  10599. "url": "https://api.github.com/repos/symfony/yaml/zipball/deec3a812a0305a50db8ae689b183f43d915c884",
  10600. "reference": "deec3a812a0305a50db8ae689b183f43d915c884",
  10601. "shasum": "",
  10602. "mirrors": [
  10603. {
  10604. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10605. "preferred": true
  10606. }
  10607. ]
  10608. },
  10609. "require": {
  10610. "php": ">=8.0.2",
  10611. "symfony/polyfill-ctype": "^1.8"
  10612. },
  10613. "conflict": {
  10614. "symfony/console": "<5.4"
  10615. },
  10616. "require-dev": {
  10617. "symfony/console": "^5.4|^6.0"
  10618. },
  10619. "suggest": {
  10620. "symfony/console": "For validating YAML files using the lint command"
  10621. },
  10622. "bin": [
  10623. "Resources/bin/yaml-lint"
  10624. ],
  10625. "type": "library",
  10626. "autoload": {
  10627. "psr-4": {
  10628. "Symfony\\Component\\Yaml\\": ""
  10629. },
  10630. "exclude-from-classmap": [
  10631. "/Tests/"
  10632. ]
  10633. },
  10634. "notification-url": "https://packagist.org/downloads/",
  10635. "license": [
  10636. "MIT"
  10637. ],
  10638. "authors": [
  10639. {
  10640. "name": "Fabien Potencier",
  10641. "email": "fabien@symfony.com"
  10642. },
  10643. {
  10644. "name": "Symfony Community",
  10645. "homepage": "https://symfony.com/contributors"
  10646. }
  10647. ],
  10648. "description": "Loads and dumps YAML files",
  10649. "homepage": "https://symfony.com",
  10650. "support": {
  10651. "source": "https://github.com/symfony/yaml/tree/v6.0.19"
  10652. },
  10653. "funding": [
  10654. {
  10655. "url": "https://symfony.com/sponsor",
  10656. "type": "custom"
  10657. },
  10658. {
  10659. "url": "https://github.com/fabpot",
  10660. "type": "github"
  10661. },
  10662. {
  10663. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10664. "type": "tidelift"
  10665. }
  10666. ],
  10667. "time": "2023-01-11T11:50:03+00:00"
  10668. },
  10669. {
  10670. "name": "theseer/tokenizer",
  10671. "version": "1.3.1",
  10672. "source": {
  10673. "type": "git",
  10674. "url": "https://github.com/theseer/tokenizer.git",
  10675. "reference": "b7489ce515e168639d17feec34b8847c326b0b3c"
  10676. },
  10677. "dist": {
  10678. "type": "zip",
  10679. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/b7489ce515e168639d17feec34b8847c326b0b3c",
  10680. "reference": "b7489ce515e168639d17feec34b8847c326b0b3c",
  10681. "shasum": "",
  10682. "mirrors": [
  10683. {
  10684. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10685. "preferred": true
  10686. }
  10687. ]
  10688. },
  10689. "require": {
  10690. "ext-dom": "*",
  10691. "ext-tokenizer": "*",
  10692. "ext-xmlwriter": "*",
  10693. "php": "^7.2 || ^8.0"
  10694. },
  10695. "type": "library",
  10696. "autoload": {
  10697. "classmap": [
  10698. "src/"
  10699. ]
  10700. },
  10701. "notification-url": "https://packagist.org/downloads/",
  10702. "license": [
  10703. "BSD-3-Clause"
  10704. ],
  10705. "authors": [
  10706. {
  10707. "name": "Arne Blankerts",
  10708. "email": "arne@blankerts.de",
  10709. "role": "Developer"
  10710. }
  10711. ],
  10712. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10713. "support": {
  10714. "issues": "https://github.com/theseer/tokenizer/issues",
  10715. "source": "https://github.com/theseer/tokenizer/tree/1.3.1"
  10716. },
  10717. "funding": [
  10718. {
  10719. "url": "https://github.com/theseer",
  10720. "type": "github"
  10721. }
  10722. ],
  10723. "time": "2025-11-17T20:03:58+00:00"
  10724. }
  10725. ],
  10726. "aliases": [],
  10727. "minimum-stability": "dev",
  10728. "stability-flags": [],
  10729. "prefer-stable": true,
  10730. "prefer-lowest": false,
  10731. "platform": {
  10732. "php": "^7.3|^8.0"
  10733. },
  10734. "platform-dev": [],
  10735. "plugin-api-version": "2.3.0"
  10736. }