composer.lock 250 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243
  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": "71b37f0b21fd331d85701a14def36ca9",
  8. "packages": [
  9. {
  10. "name": "brick/math",
  11. "version": "0.11.0",
  12. "dist": {
  13. "type": "zip",
  14. "url": "https://mirrors.tencent.com/repository/composer/brick/math/0.11.0/brick-math-0.11.0.zip",
  15. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478",
  16. "shasum": ""
  17. },
  18. "require": {
  19. "php": "^8.0"
  20. },
  21. "require-dev": {
  22. "php-coveralls/php-coveralls": "^2.2",
  23. "phpunit/phpunit": "^9.0",
  24. "vimeo/psalm": "5.0.0"
  25. },
  26. "type": "library",
  27. "autoload": {
  28. "psr-4": {
  29. "Brick\\Math\\": "src/"
  30. }
  31. },
  32. "license": [
  33. "MIT"
  34. ],
  35. "description": "Arbitrary-precision arithmetic library",
  36. "keywords": [
  37. "Arbitrary-precision",
  38. "BigInteger",
  39. "BigRational",
  40. "arithmetic",
  41. "bigdecimal",
  42. "bignum",
  43. "brick",
  44. "math"
  45. ],
  46. "time": "2023-01-15T23:15:59+00:00"
  47. },
  48. {
  49. "name": "carbonphp/carbon-doctrine-types",
  50. "version": "2.1.0",
  51. "dist": {
  52. "type": "zip",
  53. "url": "https://mirrors.tencent.com/repository/composer/carbonphp/carbon-doctrine-types/2.1.0/carbonphp-carbon-doctrine-types-2.1.0.zip",
  54. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  55. "shasum": ""
  56. },
  57. "require": {
  58. "php": "^7.4 || ^8.0"
  59. },
  60. "conflict": {
  61. "doctrine/dbal": "<3.7.0 || >=4.0.0"
  62. },
  63. "require-dev": {
  64. "doctrine/dbal": "^3.7.0",
  65. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  66. "phpunit/phpunit": "^10.3"
  67. },
  68. "type": "library",
  69. "autoload": {
  70. "psr-4": {
  71. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  72. }
  73. },
  74. "license": [
  75. "MIT"
  76. ],
  77. "authors": [
  78. {
  79. "name": "KyleKatarn",
  80. "email": "kylekatarnls@gmail.com"
  81. }
  82. ],
  83. "description": "Types to use Carbon in Doctrine",
  84. "keywords": [
  85. "carbon",
  86. "date",
  87. "datetime",
  88. "doctrine",
  89. "time"
  90. ],
  91. "time": "2023-12-11T17:09:12+00:00"
  92. },
  93. {
  94. "name": "dflydev/dot-access-data",
  95. "version": "v3.0.2",
  96. "dist": {
  97. "type": "zip",
  98. "url": "https://mirrors.tencent.com/repository/composer/dflydev/dot-access-data/v3.0.2/dflydev-dot-access-data-v3.0.2.zip",
  99. "reference": "f41715465d65213d644d3141a6a93081be5d3549",
  100. "shasum": ""
  101. },
  102. "require": {
  103. "php": "^7.1 || ^8.0"
  104. },
  105. "require-dev": {
  106. "phpstan/phpstan": "^0.12.42",
  107. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  108. "scrutinizer/ocular": "1.6.0",
  109. "squizlabs/php_codesniffer": "^3.5",
  110. "vimeo/psalm": "^4.0.0"
  111. },
  112. "type": "library",
  113. "extra": {
  114. "branch-alias": {
  115. "dev-main": "3.x-dev"
  116. }
  117. },
  118. "autoload": {
  119. "psr-4": {
  120. "Dflydev\\DotAccessData\\": "src/"
  121. }
  122. },
  123. "license": [
  124. "MIT"
  125. ],
  126. "authors": [
  127. {
  128. "name": "Dragonfly Development Inc.",
  129. "email": "info@dflydev.com",
  130. "homepage": "http://dflydev.com"
  131. },
  132. {
  133. "name": "Beau Simensen",
  134. "email": "beau@dflydev.com",
  135. "homepage": "http://beausimensen.com"
  136. },
  137. {
  138. "name": "Carlos Frutos",
  139. "email": "carlos@kiwing.it",
  140. "homepage": "https://github.com/cfrutos"
  141. },
  142. {
  143. "name": "Colin O'Dell",
  144. "email": "colinodell@gmail.com",
  145. "homepage": "https://www.colinodell.com"
  146. }
  147. ],
  148. "description": "Given a deep data structure, access data by dot notation.",
  149. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  150. "keywords": [
  151. "access",
  152. "data",
  153. "dot",
  154. "notation"
  155. ],
  156. "time": "2022-10-27T11:44:00+00:00"
  157. },
  158. {
  159. "name": "doctrine/inflector",
  160. "version": "2.0.8",
  161. "dist": {
  162. "type": "zip",
  163. "url": "https://mirrors.tencent.com/repository/composer/doctrine/inflector/2.0.8/doctrine-inflector-2.0.8.zip",
  164. "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff",
  165. "shasum": ""
  166. },
  167. "require": {
  168. "php": "^7.2 || ^8.0"
  169. },
  170. "require-dev": {
  171. "doctrine/coding-standard": "^11.0",
  172. "phpstan/phpstan": "^1.8",
  173. "phpstan/phpstan-phpunit": "^1.1",
  174. "phpstan/phpstan-strict-rules": "^1.3",
  175. "phpunit/phpunit": "^8.5 || ^9.5",
  176. "vimeo/psalm": "^4.25 || ^5.4"
  177. },
  178. "type": "library",
  179. "autoload": {
  180. "psr-4": {
  181. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  182. }
  183. },
  184. "license": [
  185. "MIT"
  186. ],
  187. "authors": [
  188. {
  189. "name": "Guilherme Blanco",
  190. "email": "guilhermeblanco@gmail.com"
  191. },
  192. {
  193. "name": "Roman Borschel",
  194. "email": "roman@code-factory.org"
  195. },
  196. {
  197. "name": "Benjamin Eberlei",
  198. "email": "kontakt@beberlei.de"
  199. },
  200. {
  201. "name": "Jonathan Wage",
  202. "email": "jonwage@gmail.com"
  203. },
  204. {
  205. "name": "Johannes Schmitt",
  206. "email": "schmittjoh@gmail.com"
  207. }
  208. ],
  209. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  210. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  211. "keywords": [
  212. "inflection",
  213. "inflector",
  214. "lowercase",
  215. "manipulation",
  216. "php",
  217. "plural",
  218. "singular",
  219. "strings",
  220. "uppercase",
  221. "words"
  222. ],
  223. "time": "2023-06-16T13:40:37+00:00"
  224. },
  225. {
  226. "name": "doctrine/lexer",
  227. "version": "3.0.0",
  228. "dist": {
  229. "type": "zip",
  230. "url": "https://mirrors.tencent.com/repository/composer/doctrine/lexer/3.0.0/doctrine-lexer-3.0.0.zip",
  231. "reference": "84a527db05647743d50373e0ec53a152f2cde568",
  232. "shasum": ""
  233. },
  234. "require": {
  235. "php": "^8.1"
  236. },
  237. "require-dev": {
  238. "doctrine/coding-standard": "^10",
  239. "phpstan/phpstan": "^1.9",
  240. "phpunit/phpunit": "^9.5",
  241. "psalm/plugin-phpunit": "^0.18.3",
  242. "vimeo/psalm": "^5.0"
  243. },
  244. "type": "library",
  245. "autoload": {
  246. "psr-4": {
  247. "Doctrine\\Common\\Lexer\\": "src"
  248. }
  249. },
  250. "license": [
  251. "MIT"
  252. ],
  253. "authors": [
  254. {
  255. "name": "Guilherme Blanco",
  256. "email": "guilhermeblanco@gmail.com"
  257. },
  258. {
  259. "name": "Roman Borschel",
  260. "email": "roman@code-factory.org"
  261. },
  262. {
  263. "name": "Johannes Schmitt",
  264. "email": "schmittjoh@gmail.com"
  265. }
  266. ],
  267. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  268. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  269. "keywords": [
  270. "annotations",
  271. "docblock",
  272. "lexer",
  273. "parser",
  274. "php"
  275. ],
  276. "time": "2022-12-15T16:57:16+00:00"
  277. },
  278. {
  279. "name": "dragonmantank/cron-expression",
  280. "version": "v3.3.3",
  281. "dist": {
  282. "type": "zip",
  283. "url": "https://mirrors.tencent.com/repository/composer/dragonmantank/cron-expression/v3.3.3/dragonmantank-cron-expression-v3.3.3.zip",
  284. "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
  285. "shasum": ""
  286. },
  287. "require": {
  288. "php": "^7.2|^8.0",
  289. "webmozart/assert": "^1.0"
  290. },
  291. "replace": {
  292. "mtdowling/cron-expression": "^1.0"
  293. },
  294. "require-dev": {
  295. "phpstan/extension-installer": "^1.0",
  296. "phpstan/phpstan": "^1.0",
  297. "phpstan/phpstan-webmozart-assert": "^1.0",
  298. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  299. },
  300. "type": "library",
  301. "autoload": {
  302. "psr-4": {
  303. "Cron\\": "src/Cron/"
  304. }
  305. },
  306. "license": [
  307. "MIT"
  308. ],
  309. "authors": [
  310. {
  311. "name": "Chris Tankersley",
  312. "email": "chris@ctankersley.com",
  313. "homepage": "https://github.com/dragonmantank"
  314. }
  315. ],
  316. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  317. "keywords": [
  318. "cron",
  319. "schedule"
  320. ],
  321. "time": "2023-08-10T19:36:49+00:00"
  322. },
  323. {
  324. "name": "egulias/email-validator",
  325. "version": "4.0.2",
  326. "dist": {
  327. "type": "zip",
  328. "url": "https://mirrors.cloud.tencent.com/repository/composer/egulias/email-validator/4.0.2/egulias-email-validator-4.0.2.zip",
  329. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
  330. "shasum": ""
  331. },
  332. "require": {
  333. "doctrine/lexer": "^2.0 || ^3.0",
  334. "php": ">=8.1",
  335. "symfony/polyfill-intl-idn": "^1.26"
  336. },
  337. "require-dev": {
  338. "phpunit/phpunit": "^10.2",
  339. "vimeo/psalm": "^5.12"
  340. },
  341. "suggest": {
  342. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  343. },
  344. "type": "library",
  345. "extra": {
  346. "branch-alias": {
  347. "dev-master": "4.0.x-dev"
  348. }
  349. },
  350. "autoload": {
  351. "psr-4": {
  352. "Egulias\\EmailValidator\\": "src"
  353. }
  354. },
  355. "license": [
  356. "MIT"
  357. ],
  358. "authors": [
  359. {
  360. "name": "Eduardo Gulias Davis"
  361. }
  362. ],
  363. "description": "A library for validating emails against several RFCs",
  364. "homepage": "https://github.com/egulias/EmailValidator",
  365. "keywords": [
  366. "email",
  367. "emailvalidation",
  368. "emailvalidator",
  369. "validation",
  370. "validator"
  371. ],
  372. "time": "2023-10-06T06:47:41+00:00"
  373. },
  374. {
  375. "name": "fruitcake/php-cors",
  376. "version": "v1.3.0",
  377. "dist": {
  378. "type": "zip",
  379. "url": "https://mirrors.tencent.com/repository/composer/fruitcake/php-cors/v1.3.0/fruitcake-php-cors-v1.3.0.zip",
  380. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b",
  381. "shasum": ""
  382. },
  383. "require": {
  384. "php": "^7.4|^8.0",
  385. "symfony/http-foundation": "^4.4|^5.4|^6|^7"
  386. },
  387. "require-dev": {
  388. "phpstan/phpstan": "^1.4",
  389. "phpunit/phpunit": "^9",
  390. "squizlabs/php_codesniffer": "^3.5"
  391. },
  392. "type": "library",
  393. "extra": {
  394. "branch-alias": {
  395. "dev-master": "1.2-dev"
  396. }
  397. },
  398. "autoload": {
  399. "psr-4": {
  400. "Fruitcake\\Cors\\": "src/"
  401. }
  402. },
  403. "license": [
  404. "MIT"
  405. ],
  406. "authors": [
  407. {
  408. "name": "Fruitcake",
  409. "homepage": "https://fruitcake.nl"
  410. },
  411. {
  412. "name": "Barryvdh",
  413. "email": "barryvdh@gmail.com"
  414. }
  415. ],
  416. "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
  417. "homepage": "https://github.com/fruitcake/php-cors",
  418. "keywords": [
  419. "cors",
  420. "laravel",
  421. "symfony"
  422. ],
  423. "time": "2023-10-12T05:21:21+00:00"
  424. },
  425. {
  426. "name": "graham-campbell/result-type",
  427. "version": "v1.1.2",
  428. "dist": {
  429. "type": "zip",
  430. "url": "https://mirrors.cloud.tencent.com/repository/composer/graham-campbell/result-type/v1.1.2/graham-campbell-result-type-v1.1.2.zip",
  431. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862",
  432. "shasum": ""
  433. },
  434. "require": {
  435. "php": "^7.2.5 || ^8.0",
  436. "phpoption/phpoption": "^1.9.2"
  437. },
  438. "require-dev": {
  439. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  440. },
  441. "type": "library",
  442. "autoload": {
  443. "psr-4": {
  444. "GrahamCampbell\\ResultType\\": "src/"
  445. }
  446. },
  447. "license": [
  448. "MIT"
  449. ],
  450. "authors": [
  451. {
  452. "name": "Graham Campbell",
  453. "email": "hello@gjcampbell.co.uk",
  454. "homepage": "https://github.com/GrahamCampbell"
  455. }
  456. ],
  457. "description": "An Implementation Of The Result Type",
  458. "keywords": [
  459. "Graham Campbell",
  460. "GrahamCampbell",
  461. "Result Type",
  462. "Result-Type",
  463. "result"
  464. ],
  465. "time": "2023-11-12T22:16:48+00:00"
  466. },
  467. {
  468. "name": "guzzlehttp/guzzle",
  469. "version": "7.8.1",
  470. "dist": {
  471. "type": "zip",
  472. "url": "https://mirrors.cloud.tencent.com/repository/composer/guzzlehttp/guzzle/7.8.1/guzzlehttp-guzzle-7.8.1.zip",
  473. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104",
  474. "shasum": ""
  475. },
  476. "require": {
  477. "ext-json": "*",
  478. "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
  479. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  480. "php": "^7.2.5 || ^8.0",
  481. "psr/http-client": "^1.0",
  482. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  483. },
  484. "provide": {
  485. "psr/http-client-implementation": "1.0"
  486. },
  487. "require-dev": {
  488. "bamarni/composer-bin-plugin": "^1.8.2",
  489. "ext-curl": "*",
  490. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  491. "php-http/message-factory": "^1.1",
  492. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  493. "psr/log": "^1.1 || ^2.0 || ^3.0"
  494. },
  495. "suggest": {
  496. "ext-curl": "Required for CURL handler support",
  497. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  498. "psr/log": "Required for using the Log middleware"
  499. },
  500. "type": "library",
  501. "extra": {
  502. "bamarni-bin": {
  503. "bin-links": true,
  504. "forward-command": false
  505. }
  506. },
  507. "autoload": {
  508. "files": [
  509. "src/functions_include.php"
  510. ],
  511. "psr-4": {
  512. "GuzzleHttp\\": "src/"
  513. }
  514. },
  515. "license": [
  516. "MIT"
  517. ],
  518. "authors": [
  519. {
  520. "name": "Graham Campbell",
  521. "email": "hello@gjcampbell.co.uk",
  522. "homepage": "https://github.com/GrahamCampbell"
  523. },
  524. {
  525. "name": "Michael Dowling",
  526. "email": "mtdowling@gmail.com",
  527. "homepage": "https://github.com/mtdowling"
  528. },
  529. {
  530. "name": "Jeremy Lindblom",
  531. "email": "jeremeamia@gmail.com",
  532. "homepage": "https://github.com/jeremeamia"
  533. },
  534. {
  535. "name": "George Mponos",
  536. "email": "gmponos@gmail.com",
  537. "homepage": "https://github.com/gmponos"
  538. },
  539. {
  540. "name": "Tobias Nyholm",
  541. "email": "tobias.nyholm@gmail.com",
  542. "homepage": "https://github.com/Nyholm"
  543. },
  544. {
  545. "name": "Márk Sági-Kazár",
  546. "email": "mark.sagikazar@gmail.com",
  547. "homepage": "https://github.com/sagikazarmark"
  548. },
  549. {
  550. "name": "Tobias Schultze",
  551. "email": "webmaster@tubo-world.de",
  552. "homepage": "https://github.com/Tobion"
  553. }
  554. ],
  555. "description": "Guzzle is a PHP HTTP client library",
  556. "keywords": [
  557. "client",
  558. "curl",
  559. "framework",
  560. "http",
  561. "http client",
  562. "psr-18",
  563. "psr-7",
  564. "rest",
  565. "web service"
  566. ],
  567. "time": "2023-12-03T20:35:24+00:00"
  568. },
  569. {
  570. "name": "guzzlehttp/promises",
  571. "version": "2.0.2",
  572. "dist": {
  573. "type": "zip",
  574. "url": "https://mirrors.cloud.tencent.com/repository/composer/guzzlehttp/promises/2.0.2/guzzlehttp-promises-2.0.2.zip",
  575. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223",
  576. "shasum": ""
  577. },
  578. "require": {
  579. "php": "^7.2.5 || ^8.0"
  580. },
  581. "require-dev": {
  582. "bamarni/composer-bin-plugin": "^1.8.2",
  583. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  584. },
  585. "type": "library",
  586. "extra": {
  587. "bamarni-bin": {
  588. "bin-links": true,
  589. "forward-command": false
  590. }
  591. },
  592. "autoload": {
  593. "psr-4": {
  594. "GuzzleHttp\\Promise\\": "src/"
  595. }
  596. },
  597. "license": [
  598. "MIT"
  599. ],
  600. "authors": [
  601. {
  602. "name": "Graham Campbell",
  603. "email": "hello@gjcampbell.co.uk",
  604. "homepage": "https://github.com/GrahamCampbell"
  605. },
  606. {
  607. "name": "Michael Dowling",
  608. "email": "mtdowling@gmail.com",
  609. "homepage": "https://github.com/mtdowling"
  610. },
  611. {
  612. "name": "Tobias Nyholm",
  613. "email": "tobias.nyholm@gmail.com",
  614. "homepage": "https://github.com/Nyholm"
  615. },
  616. {
  617. "name": "Tobias Schultze",
  618. "email": "webmaster@tubo-world.de",
  619. "homepage": "https://github.com/Tobion"
  620. }
  621. ],
  622. "description": "Guzzle promises library",
  623. "keywords": [
  624. "promise"
  625. ],
  626. "time": "2023-12-03T20:19:20+00:00"
  627. },
  628. {
  629. "name": "guzzlehttp/psr7",
  630. "version": "2.6.2",
  631. "dist": {
  632. "type": "zip",
  633. "url": "https://mirrors.cloud.tencent.com/repository/composer/guzzlehttp/psr7/2.6.2/guzzlehttp-psr7-2.6.2.zip",
  634. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221",
  635. "shasum": ""
  636. },
  637. "require": {
  638. "php": "^7.2.5 || ^8.0",
  639. "psr/http-factory": "^1.0",
  640. "psr/http-message": "^1.1 || ^2.0",
  641. "ralouphie/getallheaders": "^3.0"
  642. },
  643. "provide": {
  644. "psr/http-factory-implementation": "1.0",
  645. "psr/http-message-implementation": "1.0"
  646. },
  647. "require-dev": {
  648. "bamarni/composer-bin-plugin": "^1.8.2",
  649. "http-interop/http-factory-tests": "^0.9",
  650. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  651. },
  652. "suggest": {
  653. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  654. },
  655. "type": "library",
  656. "extra": {
  657. "bamarni-bin": {
  658. "bin-links": true,
  659. "forward-command": false
  660. }
  661. },
  662. "autoload": {
  663. "psr-4": {
  664. "GuzzleHttp\\Psr7\\": "src/"
  665. }
  666. },
  667. "license": [
  668. "MIT"
  669. ],
  670. "authors": [
  671. {
  672. "name": "Graham Campbell",
  673. "email": "hello@gjcampbell.co.uk",
  674. "homepage": "https://github.com/GrahamCampbell"
  675. },
  676. {
  677. "name": "Michael Dowling",
  678. "email": "mtdowling@gmail.com",
  679. "homepage": "https://github.com/mtdowling"
  680. },
  681. {
  682. "name": "George Mponos",
  683. "email": "gmponos@gmail.com",
  684. "homepage": "https://github.com/gmponos"
  685. },
  686. {
  687. "name": "Tobias Nyholm",
  688. "email": "tobias.nyholm@gmail.com",
  689. "homepage": "https://github.com/Nyholm"
  690. },
  691. {
  692. "name": "Márk Sági-Kazár",
  693. "email": "mark.sagikazar@gmail.com",
  694. "homepage": "https://github.com/sagikazarmark"
  695. },
  696. {
  697. "name": "Tobias Schultze",
  698. "email": "webmaster@tubo-world.de",
  699. "homepage": "https://github.com/Tobion"
  700. },
  701. {
  702. "name": "Márk Sági-Kazár",
  703. "email": "mark.sagikazar@gmail.com",
  704. "homepage": "https://sagikazarmark.hu"
  705. }
  706. ],
  707. "description": "PSR-7 message implementation that also provides common utility methods",
  708. "keywords": [
  709. "http",
  710. "message",
  711. "psr-7",
  712. "request",
  713. "response",
  714. "stream",
  715. "uri",
  716. "url"
  717. ],
  718. "time": "2023-12-03T20:05:35+00:00"
  719. },
  720. {
  721. "name": "guzzlehttp/uri-template",
  722. "version": "v1.0.3",
  723. "dist": {
  724. "type": "zip",
  725. "url": "https://mirrors.cloud.tencent.com/repository/composer/guzzlehttp/uri-template/v1.0.3/guzzlehttp-uri-template-v1.0.3.zip",
  726. "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c",
  727. "shasum": ""
  728. },
  729. "require": {
  730. "php": "^7.2.5 || ^8.0",
  731. "symfony/polyfill-php80": "^1.24"
  732. },
  733. "require-dev": {
  734. "bamarni/composer-bin-plugin": "^1.8.2",
  735. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  736. "uri-template/tests": "1.0.0"
  737. },
  738. "type": "library",
  739. "extra": {
  740. "bamarni-bin": {
  741. "bin-links": true,
  742. "forward-command": false
  743. }
  744. },
  745. "autoload": {
  746. "psr-4": {
  747. "GuzzleHttp\\UriTemplate\\": "src"
  748. }
  749. },
  750. "license": [
  751. "MIT"
  752. ],
  753. "authors": [
  754. {
  755. "name": "Graham Campbell",
  756. "email": "hello@gjcampbell.co.uk",
  757. "homepage": "https://github.com/GrahamCampbell"
  758. },
  759. {
  760. "name": "Michael Dowling",
  761. "email": "mtdowling@gmail.com",
  762. "homepage": "https://github.com/mtdowling"
  763. },
  764. {
  765. "name": "George Mponos",
  766. "email": "gmponos@gmail.com",
  767. "homepage": "https://github.com/gmponos"
  768. },
  769. {
  770. "name": "Tobias Nyholm",
  771. "email": "tobias.nyholm@gmail.com",
  772. "homepage": "https://github.com/Nyholm"
  773. }
  774. ],
  775. "description": "A polyfill class for uri_template of PHP",
  776. "keywords": [
  777. "guzzlehttp",
  778. "uri-template"
  779. ],
  780. "time": "2023-12-03T19:50:20+00:00"
  781. },
  782. {
  783. "name": "laravel/framework",
  784. "version": "v10.39.0",
  785. "dist": {
  786. "type": "zip",
  787. "url": "https://mirrors.tencent.com/repository/composer/laravel/framework/v10.39.0/laravel-framework-v10.39.0.zip",
  788. "reference": "114926b07bfb5fbf2545c03aa2ce5c8c37be650c",
  789. "shasum": ""
  790. },
  791. "require": {
  792. "brick/math": "^0.9.3|^0.10.2|^0.11",
  793. "composer-runtime-api": "^2.2",
  794. "doctrine/inflector": "^2.0.5",
  795. "dragonmantank/cron-expression": "^3.3.2",
  796. "egulias/email-validator": "^3.2.1|^4.0",
  797. "ext-ctype": "*",
  798. "ext-filter": "*",
  799. "ext-hash": "*",
  800. "ext-mbstring": "*",
  801. "ext-openssl": "*",
  802. "ext-session": "*",
  803. "ext-tokenizer": "*",
  804. "fruitcake/php-cors": "^1.2",
  805. "guzzlehttp/uri-template": "^1.0",
  806. "laravel/prompts": "^0.1.9",
  807. "laravel/serializable-closure": "^1.3",
  808. "league/commonmark": "^2.2.1",
  809. "league/flysystem": "^3.8.0",
  810. "monolog/monolog": "^3.0",
  811. "nesbot/carbon": "^2.67",
  812. "nunomaduro/termwind": "^1.13",
  813. "php": "^8.1",
  814. "psr/container": "^1.1.1|^2.0.1",
  815. "psr/log": "^1.0|^2.0|^3.0",
  816. "psr/simple-cache": "^1.0|^2.0|^3.0",
  817. "ramsey/uuid": "^4.7",
  818. "symfony/console": "^6.2",
  819. "symfony/error-handler": "^6.2",
  820. "symfony/finder": "^6.2",
  821. "symfony/http-foundation": "^6.4",
  822. "symfony/http-kernel": "^6.2",
  823. "symfony/mailer": "^6.2",
  824. "symfony/mime": "^6.2",
  825. "symfony/process": "^6.2",
  826. "symfony/routing": "^6.2",
  827. "symfony/uid": "^6.2",
  828. "symfony/var-dumper": "^6.2",
  829. "tijsverkoyen/css-to-inline-styles": "^2.2.5",
  830. "vlucas/phpdotenv": "^5.4.1",
  831. "voku/portable-ascii": "^2.0"
  832. },
  833. "conflict": {
  834. "carbonphp/carbon-doctrine-types": ">=3.0",
  835. "doctrine/dbal": ">=4.0",
  836. "tightenco/collect": "<5.5.33"
  837. },
  838. "provide": {
  839. "psr/container-implementation": "1.1|2.0",
  840. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  841. },
  842. "replace": {
  843. "illuminate/auth": "self.version",
  844. "illuminate/broadcasting": "self.version",
  845. "illuminate/bus": "self.version",
  846. "illuminate/cache": "self.version",
  847. "illuminate/collections": "self.version",
  848. "illuminate/conditionable": "self.version",
  849. "illuminate/config": "self.version",
  850. "illuminate/console": "self.version",
  851. "illuminate/container": "self.version",
  852. "illuminate/contracts": "self.version",
  853. "illuminate/cookie": "self.version",
  854. "illuminate/database": "self.version",
  855. "illuminate/encryption": "self.version",
  856. "illuminate/events": "self.version",
  857. "illuminate/filesystem": "self.version",
  858. "illuminate/hashing": "self.version",
  859. "illuminate/http": "self.version",
  860. "illuminate/log": "self.version",
  861. "illuminate/macroable": "self.version",
  862. "illuminate/mail": "self.version",
  863. "illuminate/notifications": "self.version",
  864. "illuminate/pagination": "self.version",
  865. "illuminate/pipeline": "self.version",
  866. "illuminate/process": "self.version",
  867. "illuminate/queue": "self.version",
  868. "illuminate/redis": "self.version",
  869. "illuminate/routing": "self.version",
  870. "illuminate/session": "self.version",
  871. "illuminate/support": "self.version",
  872. "illuminate/testing": "self.version",
  873. "illuminate/translation": "self.version",
  874. "illuminate/validation": "self.version",
  875. "illuminate/view": "self.version"
  876. },
  877. "require-dev": {
  878. "ably/ably-php": "^1.0",
  879. "aws/aws-sdk-php": "^3.235.5",
  880. "doctrine/dbal": "^3.5.1",
  881. "ext-gmp": "*",
  882. "fakerphp/faker": "^1.21",
  883. "guzzlehttp/guzzle": "^7.5",
  884. "league/flysystem-aws-s3-v3": "^3.0",
  885. "league/flysystem-ftp": "^3.0",
  886. "league/flysystem-path-prefixing": "^3.3",
  887. "league/flysystem-read-only": "^3.3",
  888. "league/flysystem-sftp-v3": "^3.0",
  889. "mockery/mockery": "^1.5.1",
  890. "nyholm/psr7": "^1.2",
  891. "orchestra/testbench-core": "^8.18",
  892. "pda/pheanstalk": "^4.0",
  893. "phpstan/phpstan": "^1.4.7",
  894. "phpunit/phpunit": "^10.0.7",
  895. "predis/predis": "^2.0.2",
  896. "symfony/cache": "^6.2",
  897. "symfony/http-client": "^6.2.4",
  898. "symfony/psr-http-message-bridge": "^2.0"
  899. },
  900. "suggest": {
  901. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  902. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.235.5).",
  903. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  904. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^3.5.1).",
  905. "ext-apcu": "Required to use the APC cache driver.",
  906. "ext-fileinfo": "Required to use the Filesystem class.",
  907. "ext-ftp": "Required to use the Flysystem FTP driver.",
  908. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  909. "ext-memcached": "Required to use the memcache cache driver.",
  910. "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.",
  911. "ext-pdo": "Required to use all database features.",
  912. "ext-posix": "Required to use all features of the queue worker.",
  913. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  914. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  915. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  916. "guzzlehttp/guzzle": "Required to use the HTTP Client and the ping methods on schedules (^7.5).",
  917. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  918. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).",
  919. "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.0).",
  920. "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.3).",
  921. "league/flysystem-read-only": "Required to use read-only disks (^3.3)",
  922. "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.0).",
  923. "mockery/mockery": "Required to use mocking (^1.5.1).",
  924. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  925. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  926. "phpunit/phpunit": "Required to use assertions and run tests (^9.5.8|^10.0.7).",
  927. "predis/predis": "Required to use the predis connector (^2.0.2).",
  928. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  929. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
  930. "symfony/cache": "Required to PSR-6 cache bridge (^6.2).",
  931. "symfony/filesystem": "Required to enable support for relative symbolic links (^6.2).",
  932. "symfony/http-client": "Required to enable support for the Symfony API mail transports (^6.2).",
  933. "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^6.2).",
  934. "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^6.2).",
  935. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0)."
  936. },
  937. "type": "library",
  938. "extra": {
  939. "branch-alias": {
  940. "dev-master": "10.x-dev"
  941. }
  942. },
  943. "autoload": {
  944. "files": [
  945. "src/Illuminate/Collections/helpers.php",
  946. "src/Illuminate/Events/functions.php",
  947. "src/Illuminate/Filesystem/functions.php",
  948. "src/Illuminate/Foundation/helpers.php",
  949. "src/Illuminate/Support/helpers.php"
  950. ],
  951. "psr-4": {
  952. "Illuminate\\": "src/Illuminate/",
  953. "Illuminate\\Support\\": [
  954. "src/Illuminate/Macroable/",
  955. "src/Illuminate/Collections/",
  956. "src/Illuminate/Conditionable/"
  957. ]
  958. }
  959. },
  960. "license": [
  961. "MIT"
  962. ],
  963. "authors": [
  964. {
  965. "name": "Taylor Otwell",
  966. "email": "taylor@laravel.com"
  967. }
  968. ],
  969. "description": "The Laravel Framework.",
  970. "homepage": "https://laravel.com",
  971. "keywords": [
  972. "framework",
  973. "laravel"
  974. ],
  975. "time": "2023-12-27T14:26:28+00:00"
  976. },
  977. {
  978. "name": "laravel/prompts",
  979. "version": "v0.1.14",
  980. "dist": {
  981. "type": "zip",
  982. "url": "https://mirrors.tencent.com/repository/composer/laravel/prompts/v0.1.14/laravel-prompts-v0.1.14.zip",
  983. "reference": "2219fa9c4b944add1e825c3bdb8ecae8bc503bc6",
  984. "shasum": ""
  985. },
  986. "require": {
  987. "ext-mbstring": "*",
  988. "illuminate/collections": "^10.0|^11.0",
  989. "php": "^8.1",
  990. "symfony/console": "^6.2|^7.0"
  991. },
  992. "conflict": {
  993. "illuminate/console": ">=10.17.0 <10.25.0",
  994. "laravel/framework": ">=10.17.0 <10.25.0"
  995. },
  996. "require-dev": {
  997. "mockery/mockery": "^1.5",
  998. "pestphp/pest": "^2.3",
  999. "phpstan/phpstan": "^1.11",
  1000. "phpstan/phpstan-mockery": "^1.1"
  1001. },
  1002. "suggest": {
  1003. "ext-pcntl": "Required for the spinner to be animated."
  1004. },
  1005. "type": "library",
  1006. "extra": {
  1007. "branch-alias": {
  1008. "dev-main": "0.1.x-dev"
  1009. }
  1010. },
  1011. "autoload": {
  1012. "files": [
  1013. "src/helpers.php"
  1014. ],
  1015. "psr-4": {
  1016. "Laravel\\Prompts\\": "src/"
  1017. }
  1018. },
  1019. "license": [
  1020. "MIT"
  1021. ],
  1022. "time": "2023-12-27T04:18:09+00:00"
  1023. },
  1024. {
  1025. "name": "laravel/sanctum",
  1026. "version": "v3.3.3",
  1027. "dist": {
  1028. "type": "zip",
  1029. "url": "https://mirrors.cloud.tencent.com/repository/composer/laravel/sanctum/v3.3.3/laravel-sanctum-v3.3.3.zip",
  1030. "reference": "8c104366459739f3ada0e994bcd3e6fd681ce3d5",
  1031. "shasum": ""
  1032. },
  1033. "require": {
  1034. "ext-json": "*",
  1035. "illuminate/console": "^9.21|^10.0",
  1036. "illuminate/contracts": "^9.21|^10.0",
  1037. "illuminate/database": "^9.21|^10.0",
  1038. "illuminate/support": "^9.21|^10.0",
  1039. "php": "^8.0.2"
  1040. },
  1041. "require-dev": {
  1042. "mockery/mockery": "^1.0",
  1043. "orchestra/testbench": "^7.28.2|^8.8.3",
  1044. "phpstan/phpstan": "^1.10",
  1045. "phpunit/phpunit": "^9.6"
  1046. },
  1047. "type": "library",
  1048. "extra": {
  1049. "branch-alias": {
  1050. "dev-master": "3.x-dev"
  1051. },
  1052. "laravel": {
  1053. "providers": [
  1054. "Laravel\\Sanctum\\SanctumServiceProvider"
  1055. ]
  1056. }
  1057. },
  1058. "autoload": {
  1059. "psr-4": {
  1060. "Laravel\\Sanctum\\": "src/"
  1061. }
  1062. },
  1063. "license": [
  1064. "MIT"
  1065. ],
  1066. "authors": [
  1067. {
  1068. "name": "Taylor Otwell",
  1069. "email": "taylor@laravel.com"
  1070. }
  1071. ],
  1072. "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.",
  1073. "keywords": [
  1074. "auth",
  1075. "laravel",
  1076. "sanctum"
  1077. ],
  1078. "time": "2023-12-19T18:44:48+00:00"
  1079. },
  1080. {
  1081. "name": "laravel/serializable-closure",
  1082. "version": "v1.3.3",
  1083. "dist": {
  1084. "type": "zip",
  1085. "url": "https://mirrors.tencent.com/repository/composer/laravel/serializable-closure/v1.3.3/laravel-serializable-closure-v1.3.3.zip",
  1086. "reference": "3dbf8a8e914634c48d389c1234552666b3d43754",
  1087. "shasum": ""
  1088. },
  1089. "require": {
  1090. "php": "^7.3|^8.0"
  1091. },
  1092. "require-dev": {
  1093. "nesbot/carbon": "^2.61",
  1094. "pestphp/pest": "^1.21.3",
  1095. "phpstan/phpstan": "^1.8.2",
  1096. "symfony/var-dumper": "^5.4.11"
  1097. },
  1098. "type": "library",
  1099. "extra": {
  1100. "branch-alias": {
  1101. "dev-master": "1.x-dev"
  1102. }
  1103. },
  1104. "autoload": {
  1105. "psr-4": {
  1106. "Laravel\\SerializableClosure\\": "src/"
  1107. }
  1108. },
  1109. "license": [
  1110. "MIT"
  1111. ],
  1112. "authors": [
  1113. {
  1114. "name": "Taylor Otwell",
  1115. "email": "taylor@laravel.com"
  1116. },
  1117. {
  1118. "name": "Nuno Maduro",
  1119. "email": "nuno@laravel.com"
  1120. }
  1121. ],
  1122. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  1123. "keywords": [
  1124. "closure",
  1125. "laravel",
  1126. "serializable"
  1127. ],
  1128. "time": "2023-11-08T14:08:06+00:00"
  1129. },
  1130. {
  1131. "name": "laravel/tinker",
  1132. "version": "v2.8.2",
  1133. "dist": {
  1134. "type": "zip",
  1135. "url": "https://mirrors.tencent.com/repository/composer/laravel/tinker/v2.8.2/laravel-tinker-v2.8.2.zip",
  1136. "reference": "b936d415b252b499e8c3b1f795cd4fc20f57e1f3",
  1137. "shasum": ""
  1138. },
  1139. "require": {
  1140. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0",
  1141. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0",
  1142. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
  1143. "php": "^7.2.5|^8.0",
  1144. "psy/psysh": "^0.10.4|^0.11.1",
  1145. "symfony/var-dumper": "^4.3.4|^5.0|^6.0"
  1146. },
  1147. "require-dev": {
  1148. "mockery/mockery": "~1.3.3|^1.4.2",
  1149. "phpstan/phpstan": "^1.10",
  1150. "phpunit/phpunit": "^8.5.8|^9.3.3"
  1151. },
  1152. "suggest": {
  1153. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0)."
  1154. },
  1155. "type": "library",
  1156. "extra": {
  1157. "branch-alias": {
  1158. "dev-master": "2.x-dev"
  1159. },
  1160. "laravel": {
  1161. "providers": [
  1162. "Laravel\\Tinker\\TinkerServiceProvider"
  1163. ]
  1164. }
  1165. },
  1166. "autoload": {
  1167. "psr-4": {
  1168. "Laravel\\Tinker\\": "src/"
  1169. }
  1170. },
  1171. "license": [
  1172. "MIT"
  1173. ],
  1174. "authors": [
  1175. {
  1176. "name": "Taylor Otwell",
  1177. "email": "taylor@laravel.com"
  1178. }
  1179. ],
  1180. "description": "Powerful REPL for the Laravel framework.",
  1181. "keywords": [
  1182. "REPL",
  1183. "Tinker",
  1184. "laravel",
  1185. "psysh"
  1186. ],
  1187. "time": "2023-08-15T14:27:00+00:00"
  1188. },
  1189. {
  1190. "name": "league/commonmark",
  1191. "version": "2.4.1",
  1192. "dist": {
  1193. "type": "zip",
  1194. "url": "https://mirrors.tencent.com/repository/composer/league/commonmark/2.4.1/league-commonmark-2.4.1.zip",
  1195. "reference": "3669d6d5f7a47a93c08ddff335e6d945481a1dd5",
  1196. "shasum": ""
  1197. },
  1198. "require": {
  1199. "ext-mbstring": "*",
  1200. "league/config": "^1.1.1",
  1201. "php": "^7.4 || ^8.0",
  1202. "psr/event-dispatcher": "^1.0",
  1203. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  1204. "symfony/polyfill-php80": "^1.16"
  1205. },
  1206. "require-dev": {
  1207. "cebe/markdown": "^1.0",
  1208. "commonmark/cmark": "0.30.0",
  1209. "commonmark/commonmark.js": "0.30.0",
  1210. "composer/package-versions-deprecated": "^1.8",
  1211. "embed/embed": "^4.4",
  1212. "erusev/parsedown": "^1.0",
  1213. "ext-json": "*",
  1214. "github/gfm": "0.29.0",
  1215. "michelf/php-markdown": "^1.4 || ^2.0",
  1216. "nyholm/psr7": "^1.5",
  1217. "phpstan/phpstan": "^1.8.2",
  1218. "phpunit/phpunit": "^9.5.21",
  1219. "scrutinizer/ocular": "^1.8.1",
  1220. "symfony/finder": "^5.3 | ^6.0",
  1221. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0",
  1222. "unleashedtech/php-coding-standard": "^3.1.1",
  1223. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  1224. },
  1225. "suggest": {
  1226. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  1227. },
  1228. "type": "library",
  1229. "extra": {
  1230. "branch-alias": {
  1231. "dev-main": "2.5-dev"
  1232. }
  1233. },
  1234. "autoload": {
  1235. "psr-4": {
  1236. "League\\CommonMark\\": "src"
  1237. }
  1238. },
  1239. "license": [
  1240. "BSD-3-Clause"
  1241. ],
  1242. "authors": [
  1243. {
  1244. "name": "Colin O'Dell",
  1245. "email": "colinodell@gmail.com",
  1246. "homepage": "https://www.colinodell.com",
  1247. "role": "Lead Developer"
  1248. }
  1249. ],
  1250. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  1251. "homepage": "https://commonmark.thephpleague.com",
  1252. "keywords": [
  1253. "commonmark",
  1254. "flavored",
  1255. "gfm",
  1256. "github",
  1257. "github-flavored",
  1258. "markdown",
  1259. "md",
  1260. "parser"
  1261. ],
  1262. "time": "2023-08-30T16:55:00+00:00"
  1263. },
  1264. {
  1265. "name": "league/config",
  1266. "version": "v1.2.0",
  1267. "dist": {
  1268. "type": "zip",
  1269. "url": "https://mirrors.tencent.com/repository/composer/league/config/v1.2.0/league-config-v1.2.0.zip",
  1270. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1271. "shasum": ""
  1272. },
  1273. "require": {
  1274. "dflydev/dot-access-data": "^3.0.1",
  1275. "nette/schema": "^1.2",
  1276. "php": "^7.4 || ^8.0"
  1277. },
  1278. "require-dev": {
  1279. "phpstan/phpstan": "^1.8.2",
  1280. "phpunit/phpunit": "^9.5.5",
  1281. "scrutinizer/ocular": "^1.8.1",
  1282. "unleashedtech/php-coding-standard": "^3.1",
  1283. "vimeo/psalm": "^4.7.3"
  1284. },
  1285. "type": "library",
  1286. "extra": {
  1287. "branch-alias": {
  1288. "dev-main": "1.2-dev"
  1289. }
  1290. },
  1291. "autoload": {
  1292. "psr-4": {
  1293. "League\\Config\\": "src"
  1294. }
  1295. },
  1296. "license": [
  1297. "BSD-3-Clause"
  1298. ],
  1299. "authors": [
  1300. {
  1301. "name": "Colin O'Dell",
  1302. "email": "colinodell@gmail.com",
  1303. "homepage": "https://www.colinodell.com",
  1304. "role": "Lead Developer"
  1305. }
  1306. ],
  1307. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  1308. "homepage": "https://config.thephpleague.com",
  1309. "keywords": [
  1310. "array",
  1311. "config",
  1312. "configuration",
  1313. "dot",
  1314. "dot-access",
  1315. "nested",
  1316. "schema"
  1317. ],
  1318. "time": "2022-12-11T20:36:23+00:00"
  1319. },
  1320. {
  1321. "name": "league/flysystem",
  1322. "version": "3.23.0",
  1323. "dist": {
  1324. "type": "zip",
  1325. "url": "https://mirrors.cloud.tencent.com/repository/composer/league/flysystem/3.23.0/league-flysystem-3.23.0.zip",
  1326. "reference": "d4ad81e2b67396e33dc9d7e54ec74ccf73151dcc",
  1327. "shasum": ""
  1328. },
  1329. "require": {
  1330. "league/flysystem-local": "^3.0.0",
  1331. "league/mime-type-detection": "^1.0.0",
  1332. "php": "^8.0.2"
  1333. },
  1334. "conflict": {
  1335. "async-aws/core": "<1.19.0",
  1336. "async-aws/s3": "<1.14.0",
  1337. "aws/aws-sdk-php": "3.209.31 || 3.210.0",
  1338. "guzzlehttp/guzzle": "<7.0",
  1339. "guzzlehttp/ringphp": "<1.1.1",
  1340. "phpseclib/phpseclib": "3.0.15",
  1341. "symfony/http-client": "<5.2"
  1342. },
  1343. "require-dev": {
  1344. "async-aws/s3": "^1.5 || ^2.0",
  1345. "async-aws/simple-s3": "^1.1 || ^2.0",
  1346. "aws/aws-sdk-php": "^3.220.0",
  1347. "composer/semver": "^3.0",
  1348. "ext-fileinfo": "*",
  1349. "ext-ftp": "*",
  1350. "ext-zip": "*",
  1351. "friendsofphp/php-cs-fixer": "^3.5",
  1352. "google/cloud-storage": "^1.23",
  1353. "microsoft/azure-storage-blob": "^1.1",
  1354. "phpseclib/phpseclib": "^3.0.34",
  1355. "phpstan/phpstan": "^1.10",
  1356. "phpunit/phpunit": "^9.5.11|^10.0",
  1357. "sabre/dav": "^4.3.1"
  1358. },
  1359. "type": "library",
  1360. "autoload": {
  1361. "psr-4": {
  1362. "League\\Flysystem\\": "src"
  1363. }
  1364. },
  1365. "license": [
  1366. "MIT"
  1367. ],
  1368. "authors": [
  1369. {
  1370. "name": "Frank de Jonge",
  1371. "email": "info@frankdejonge.nl"
  1372. }
  1373. ],
  1374. "description": "File storage abstraction for PHP",
  1375. "keywords": [
  1376. "WebDAV",
  1377. "aws",
  1378. "cloud",
  1379. "file",
  1380. "files",
  1381. "filesystem",
  1382. "filesystems",
  1383. "ftp",
  1384. "s3",
  1385. "sftp",
  1386. "storage"
  1387. ],
  1388. "time": "2023-12-04T10:16:17+00:00"
  1389. },
  1390. {
  1391. "name": "league/flysystem-local",
  1392. "version": "3.23.0",
  1393. "dist": {
  1394. "type": "zip",
  1395. "url": "https://mirrors.tencent.com/repository/composer/league/flysystem-local/3.23.0/league-flysystem-local-3.23.0.zip",
  1396. "reference": "5cf046ba5f059460e86a997c504dd781a39a109b",
  1397. "shasum": ""
  1398. },
  1399. "require": {
  1400. "ext-fileinfo": "*",
  1401. "league/flysystem": "^3.0.0",
  1402. "league/mime-type-detection": "^1.0.0",
  1403. "php": "^8.0.2"
  1404. },
  1405. "type": "library",
  1406. "autoload": {
  1407. "psr-4": {
  1408. "League\\Flysystem\\Local\\": ""
  1409. }
  1410. },
  1411. "license": [
  1412. "MIT"
  1413. ],
  1414. "authors": [
  1415. {
  1416. "name": "Frank de Jonge",
  1417. "email": "info@frankdejonge.nl"
  1418. }
  1419. ],
  1420. "description": "Local filesystem adapter for Flysystem.",
  1421. "keywords": [
  1422. "Flysystem",
  1423. "file",
  1424. "files",
  1425. "filesystem",
  1426. "local"
  1427. ],
  1428. "time": "2023-12-04T10:14:46+00:00"
  1429. },
  1430. {
  1431. "name": "league/mime-type-detection",
  1432. "version": "1.14.0",
  1433. "dist": {
  1434. "type": "zip",
  1435. "url": "https://mirrors.cloud.tencent.com/repository/composer/league/mime-type-detection/1.14.0/league-mime-type-detection-1.14.0.zip",
  1436. "reference": "b6a5854368533df0295c5761a0253656a2e52d9e",
  1437. "shasum": ""
  1438. },
  1439. "require": {
  1440. "ext-fileinfo": "*",
  1441. "php": "^7.4 || ^8.0"
  1442. },
  1443. "require-dev": {
  1444. "friendsofphp/php-cs-fixer": "^3.2",
  1445. "phpstan/phpstan": "^0.12.68",
  1446. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  1447. },
  1448. "type": "library",
  1449. "autoload": {
  1450. "psr-4": {
  1451. "League\\MimeTypeDetection\\": "src"
  1452. }
  1453. },
  1454. "license": [
  1455. "MIT"
  1456. ],
  1457. "authors": [
  1458. {
  1459. "name": "Frank de Jonge",
  1460. "email": "info@frankdejonge.nl"
  1461. }
  1462. ],
  1463. "description": "Mime-type detection for Flysystem",
  1464. "time": "2023-10-17T14:13:20+00:00"
  1465. },
  1466. {
  1467. "name": "monolog/monolog",
  1468. "version": "3.5.0",
  1469. "dist": {
  1470. "type": "zip",
  1471. "url": "https://mirrors.cloud.tencent.com/repository/composer/monolog/monolog/3.5.0/monolog-monolog-3.5.0.zip",
  1472. "reference": "c915e2634718dbc8a4a15c61b0e62e7a44e14448",
  1473. "shasum": ""
  1474. },
  1475. "require": {
  1476. "php": ">=8.1",
  1477. "psr/log": "^2.0 || ^3.0"
  1478. },
  1479. "provide": {
  1480. "psr/log-implementation": "3.0.0"
  1481. },
  1482. "require-dev": {
  1483. "aws/aws-sdk-php": "^3.0",
  1484. "doctrine/couchdb": "~1.0@dev",
  1485. "elasticsearch/elasticsearch": "^7 || ^8",
  1486. "ext-json": "*",
  1487. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  1488. "guzzlehttp/guzzle": "^7.4.5",
  1489. "guzzlehttp/psr7": "^2.2",
  1490. "mongodb/mongodb": "^1.8",
  1491. "php-amqplib/php-amqplib": "~2.4 || ^3",
  1492. "phpstan/phpstan": "^1.9",
  1493. "phpstan/phpstan-deprecation-rules": "^1.0",
  1494. "phpstan/phpstan-strict-rules": "^1.4",
  1495. "phpunit/phpunit": "^10.1",
  1496. "predis/predis": "^1.1 || ^2",
  1497. "ruflin/elastica": "^7",
  1498. "symfony/mailer": "^5.4 || ^6",
  1499. "symfony/mime": "^5.4 || ^6"
  1500. },
  1501. "suggest": {
  1502. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1503. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1504. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1505. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1506. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  1507. "ext-mbstring": "Allow to work properly with unicode symbols",
  1508. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1509. "ext-openssl": "Required to send log messages using SSL",
  1510. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  1511. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1512. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1513. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1514. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1515. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  1516. },
  1517. "type": "library",
  1518. "extra": {
  1519. "branch-alias": {
  1520. "dev-main": "3.x-dev"
  1521. }
  1522. },
  1523. "autoload": {
  1524. "psr-4": {
  1525. "Monolog\\": "src/Monolog"
  1526. }
  1527. },
  1528. "license": [
  1529. "MIT"
  1530. ],
  1531. "authors": [
  1532. {
  1533. "name": "Jordi Boggiano",
  1534. "email": "j.boggiano@seld.be",
  1535. "homepage": "https://seld.be"
  1536. }
  1537. ],
  1538. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1539. "homepage": "https://github.com/Seldaek/monolog",
  1540. "keywords": [
  1541. "log",
  1542. "logging",
  1543. "psr-3"
  1544. ],
  1545. "time": "2023-10-27T15:32:31+00:00"
  1546. },
  1547. {
  1548. "name": "nesbot/carbon",
  1549. "version": "2.72.1",
  1550. "dist": {
  1551. "type": "zip",
  1552. "url": "https://mirrors.tencent.com/repository/composer/nesbot/carbon/2.72.1/nesbot-carbon-2.72.1.zip",
  1553. "reference": "2b3b3db0a2d0556a177392ff1a3bf5608fa09f78",
  1554. "shasum": ""
  1555. },
  1556. "require": {
  1557. "carbonphp/carbon-doctrine-types": "*",
  1558. "ext-json": "*",
  1559. "php": "^7.1.8 || ^8.0",
  1560. "psr/clock": "^1.0",
  1561. "symfony/polyfill-mbstring": "^1.0",
  1562. "symfony/polyfill-php80": "^1.16",
  1563. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  1564. },
  1565. "provide": {
  1566. "psr/clock-implementation": "1.0"
  1567. },
  1568. "require-dev": {
  1569. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  1570. "doctrine/orm": "^2.7 || ^3.0",
  1571. "friendsofphp/php-cs-fixer": "^3.0",
  1572. "kylekatarnls/multi-tester": "^2.0",
  1573. "ondrejmirtes/better-reflection": "*",
  1574. "phpmd/phpmd": "^2.9",
  1575. "phpstan/extension-installer": "^1.0",
  1576. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  1577. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  1578. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  1579. "squizlabs/php_codesniffer": "^3.4"
  1580. },
  1581. "bin": [
  1582. "bin/carbon"
  1583. ],
  1584. "type": "library",
  1585. "extra": {
  1586. "branch-alias": {
  1587. "dev-3.x": "3.x-dev",
  1588. "dev-master": "2.x-dev"
  1589. },
  1590. "laravel": {
  1591. "providers": [
  1592. "Carbon\\Laravel\\ServiceProvider"
  1593. ]
  1594. },
  1595. "phpstan": {
  1596. "includes": [
  1597. "extension.neon"
  1598. ]
  1599. }
  1600. },
  1601. "autoload": {
  1602. "psr-4": {
  1603. "Carbon\\": "src/Carbon/"
  1604. }
  1605. },
  1606. "license": [
  1607. "MIT"
  1608. ],
  1609. "authors": [
  1610. {
  1611. "name": "Brian Nesbitt",
  1612. "email": "brian@nesbot.com",
  1613. "homepage": "https://markido.com"
  1614. },
  1615. {
  1616. "name": "kylekatarnls",
  1617. "homepage": "https://github.com/kylekatarnls"
  1618. }
  1619. ],
  1620. "description": "An API extension for DateTime that supports 281 different languages.",
  1621. "homepage": "https://carbon.nesbot.com",
  1622. "keywords": [
  1623. "date",
  1624. "datetime",
  1625. "time"
  1626. ],
  1627. "time": "2023-12-08T23:47:49+00:00"
  1628. },
  1629. {
  1630. "name": "nette/schema",
  1631. "version": "v1.2.5",
  1632. "dist": {
  1633. "type": "zip",
  1634. "url": "https://mirrors.tencent.com/repository/composer/nette/schema/v1.2.5/nette-schema-v1.2.5.zip",
  1635. "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a",
  1636. "shasum": ""
  1637. },
  1638. "require": {
  1639. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  1640. "php": "7.1 - 8.3"
  1641. },
  1642. "require-dev": {
  1643. "nette/tester": "^2.3 || ^2.4",
  1644. "phpstan/phpstan-nette": "^1.0",
  1645. "tracy/tracy": "^2.7"
  1646. },
  1647. "type": "library",
  1648. "extra": {
  1649. "branch-alias": {
  1650. "dev-master": "1.2-dev"
  1651. }
  1652. },
  1653. "autoload": {
  1654. "classmap": [
  1655. "src/"
  1656. ]
  1657. },
  1658. "license": [
  1659. "BSD-3-Clause",
  1660. "GPL-2.0-only",
  1661. "GPL-3.0-only"
  1662. ],
  1663. "authors": [
  1664. {
  1665. "name": "David Grudl",
  1666. "homepage": "https://davidgrudl.com"
  1667. },
  1668. {
  1669. "name": "Nette Community",
  1670. "homepage": "https://nette.org/contributors"
  1671. }
  1672. ],
  1673. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  1674. "homepage": "https://nette.org",
  1675. "keywords": [
  1676. "config",
  1677. "nette"
  1678. ],
  1679. "time": "2023-10-05T20:37:59+00:00"
  1680. },
  1681. {
  1682. "name": "nette/utils",
  1683. "version": "v4.0.3",
  1684. "dist": {
  1685. "type": "zip",
  1686. "url": "https://mirrors.cloud.tencent.com/repository/composer/nette/utils/v4.0.3/nette-utils-v4.0.3.zip",
  1687. "reference": "a9d127dd6a203ce6d255b2e2db49759f7506e015",
  1688. "shasum": ""
  1689. },
  1690. "require": {
  1691. "php": ">=8.0 <8.4"
  1692. },
  1693. "conflict": {
  1694. "nette/finder": "<3",
  1695. "nette/schema": "<1.2.2"
  1696. },
  1697. "require-dev": {
  1698. "jetbrains/phpstorm-attributes": "dev-master",
  1699. "nette/tester": "^2.5",
  1700. "phpstan/phpstan": "^1.0",
  1701. "tracy/tracy": "^2.9"
  1702. },
  1703. "suggest": {
  1704. "ext-gd": "to use Image",
  1705. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  1706. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  1707. "ext-json": "to use Nette\\Utils\\Json",
  1708. "ext-mbstring": "to use Strings::lower() etc...",
  1709. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  1710. },
  1711. "type": "library",
  1712. "extra": {
  1713. "branch-alias": {
  1714. "dev-master": "4.0-dev"
  1715. }
  1716. },
  1717. "autoload": {
  1718. "classmap": [
  1719. "src/"
  1720. ]
  1721. },
  1722. "license": [
  1723. "BSD-3-Clause",
  1724. "GPL-2.0-only",
  1725. "GPL-3.0-only"
  1726. ],
  1727. "authors": [
  1728. {
  1729. "name": "David Grudl",
  1730. "homepage": "https://davidgrudl.com"
  1731. },
  1732. {
  1733. "name": "Nette Community",
  1734. "homepage": "https://nette.org/contributors"
  1735. }
  1736. ],
  1737. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  1738. "homepage": "https://nette.org",
  1739. "keywords": [
  1740. "array",
  1741. "core",
  1742. "datetime",
  1743. "images",
  1744. "json",
  1745. "nette",
  1746. "paginator",
  1747. "password",
  1748. "slugify",
  1749. "string",
  1750. "unicode",
  1751. "utf-8",
  1752. "utility",
  1753. "validation"
  1754. ],
  1755. "time": "2023-10-29T21:02:13+00:00"
  1756. },
  1757. {
  1758. "name": "nikic/php-parser",
  1759. "version": "v4.18.0",
  1760. "dist": {
  1761. "type": "zip",
  1762. "url": "https://mirrors.cloud.tencent.com/repository/composer/nikic/php-parser/v4.18.0/nikic-php-parser-v4.18.0.zip",
  1763. "reference": "1bcbb2179f97633e98bbbc87044ee2611c7d7999",
  1764. "shasum": ""
  1765. },
  1766. "require": {
  1767. "ext-tokenizer": "*",
  1768. "php": ">=7.0"
  1769. },
  1770. "require-dev": {
  1771. "ircmaxell/php-yacc": "^0.0.7",
  1772. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  1773. },
  1774. "bin": [
  1775. "bin/php-parse"
  1776. ],
  1777. "type": "library",
  1778. "extra": {
  1779. "branch-alias": {
  1780. "dev-master": "4.9-dev"
  1781. }
  1782. },
  1783. "autoload": {
  1784. "psr-4": {
  1785. "PhpParser\\": "lib/PhpParser"
  1786. }
  1787. },
  1788. "license": [
  1789. "BSD-3-Clause"
  1790. ],
  1791. "authors": [
  1792. {
  1793. "name": "Nikita Popov"
  1794. }
  1795. ],
  1796. "description": "A PHP parser written in PHP",
  1797. "keywords": [
  1798. "parser",
  1799. "php"
  1800. ],
  1801. "time": "2023-12-10T21:03:43+00:00"
  1802. },
  1803. {
  1804. "name": "nunomaduro/termwind",
  1805. "version": "v1.15.1",
  1806. "dist": {
  1807. "type": "zip",
  1808. "url": "https://mirrors.tencent.com/repository/composer/nunomaduro/termwind/v1.15.1/nunomaduro-termwind-v1.15.1.zip",
  1809. "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc",
  1810. "shasum": ""
  1811. },
  1812. "require": {
  1813. "ext-mbstring": "*",
  1814. "php": "^8.0",
  1815. "symfony/console": "^5.3.0|^6.0.0"
  1816. },
  1817. "require-dev": {
  1818. "ergebnis/phpstan-rules": "^1.0.",
  1819. "illuminate/console": "^8.0|^9.0",
  1820. "illuminate/support": "^8.0|^9.0",
  1821. "laravel/pint": "^1.0.0",
  1822. "pestphp/pest": "^1.21.0",
  1823. "pestphp/pest-plugin-mock": "^1.0",
  1824. "phpstan/phpstan": "^1.4.6",
  1825. "phpstan/phpstan-strict-rules": "^1.1.0",
  1826. "symfony/var-dumper": "^5.2.7|^6.0.0",
  1827. "thecodingmachine/phpstan-strict-rules": "^1.0.0"
  1828. },
  1829. "type": "library",
  1830. "extra": {
  1831. "laravel": {
  1832. "providers": [
  1833. "Termwind\\Laravel\\TermwindServiceProvider"
  1834. ]
  1835. }
  1836. },
  1837. "autoload": {
  1838. "files": [
  1839. "src/Functions.php"
  1840. ],
  1841. "psr-4": {
  1842. "Termwind\\": "src/"
  1843. }
  1844. },
  1845. "license": [
  1846. "MIT"
  1847. ],
  1848. "authors": [
  1849. {
  1850. "name": "Nuno Maduro",
  1851. "email": "enunomaduro@gmail.com"
  1852. }
  1853. ],
  1854. "description": "Its like Tailwind CSS, but for the console.",
  1855. "keywords": [
  1856. "cli",
  1857. "console",
  1858. "css",
  1859. "package",
  1860. "php",
  1861. "style"
  1862. ],
  1863. "time": "2023-02-08T01:06:31+00:00"
  1864. },
  1865. {
  1866. "name": "phpoption/phpoption",
  1867. "version": "1.9.2",
  1868. "dist": {
  1869. "type": "zip",
  1870. "url": "https://mirrors.tencent.com/repository/composer/phpoption/phpoption/1.9.2/phpoption-phpoption-1.9.2.zip",
  1871. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820",
  1872. "shasum": ""
  1873. },
  1874. "require": {
  1875. "php": "^7.2.5 || ^8.0"
  1876. },
  1877. "require-dev": {
  1878. "bamarni/composer-bin-plugin": "^1.8.2",
  1879. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  1880. },
  1881. "type": "library",
  1882. "extra": {
  1883. "bamarni-bin": {
  1884. "bin-links": true,
  1885. "forward-command": true
  1886. },
  1887. "branch-alias": {
  1888. "dev-master": "1.9-dev"
  1889. }
  1890. },
  1891. "autoload": {
  1892. "psr-4": {
  1893. "PhpOption\\": "src/PhpOption/"
  1894. }
  1895. },
  1896. "license": [
  1897. "Apache-2.0"
  1898. ],
  1899. "authors": [
  1900. {
  1901. "name": "Johannes M. Schmitt",
  1902. "email": "schmittjoh@gmail.com",
  1903. "homepage": "https://github.com/schmittjoh"
  1904. },
  1905. {
  1906. "name": "Graham Campbell",
  1907. "email": "hello@gjcampbell.co.uk",
  1908. "homepage": "https://github.com/GrahamCampbell"
  1909. }
  1910. ],
  1911. "description": "Option Type for PHP",
  1912. "keywords": [
  1913. "language",
  1914. "option",
  1915. "php",
  1916. "type"
  1917. ],
  1918. "time": "2023-11-12T21:59:55+00:00"
  1919. },
  1920. {
  1921. "name": "psr/clock",
  1922. "version": "1.0.0",
  1923. "dist": {
  1924. "type": "zip",
  1925. "url": "https://mirrors.tencent.com/repository/composer/psr/clock/1.0.0/psr-clock-1.0.0.zip",
  1926. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  1927. "shasum": ""
  1928. },
  1929. "require": {
  1930. "php": "^7.0 || ^8.0"
  1931. },
  1932. "type": "library",
  1933. "autoload": {
  1934. "psr-4": {
  1935. "Psr\\Clock\\": "src/"
  1936. }
  1937. },
  1938. "license": [
  1939. "MIT"
  1940. ],
  1941. "authors": [
  1942. {
  1943. "name": "PHP-FIG",
  1944. "homepage": "https://www.php-fig.org/"
  1945. }
  1946. ],
  1947. "description": "Common interface for reading the clock.",
  1948. "homepage": "https://github.com/php-fig/clock",
  1949. "keywords": [
  1950. "clock",
  1951. "now",
  1952. "psr",
  1953. "psr-20",
  1954. "time"
  1955. ],
  1956. "time": "2022-11-25T14:36:26+00:00"
  1957. },
  1958. {
  1959. "name": "psr/container",
  1960. "version": "2.0.2",
  1961. "dist": {
  1962. "type": "zip",
  1963. "url": "https://mirrors.cloud.tencent.com/repository/composer/psr/container/2.0.2/psr-container-2.0.2.zip",
  1964. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  1965. "shasum": ""
  1966. },
  1967. "require": {
  1968. "php": ">=7.4.0"
  1969. },
  1970. "type": "library",
  1971. "extra": {
  1972. "branch-alias": {
  1973. "dev-master": "2.0.x-dev"
  1974. }
  1975. },
  1976. "autoload": {
  1977. "psr-4": {
  1978. "Psr\\Container\\": "src/"
  1979. }
  1980. },
  1981. "license": [
  1982. "MIT"
  1983. ],
  1984. "authors": [
  1985. {
  1986. "name": "PHP-FIG",
  1987. "homepage": "https://www.php-fig.org/"
  1988. }
  1989. ],
  1990. "description": "Common Container Interface (PHP FIG PSR-11)",
  1991. "homepage": "https://github.com/php-fig/container",
  1992. "keywords": [
  1993. "PSR-11",
  1994. "container",
  1995. "container-interface",
  1996. "container-interop",
  1997. "psr"
  1998. ],
  1999. "time": "2021-11-05T16:47:00+00:00"
  2000. },
  2001. {
  2002. "name": "psr/event-dispatcher",
  2003. "version": "1.0.0",
  2004. "dist": {
  2005. "type": "zip",
  2006. "url": "https://mirrors.cloud.tencent.com/repository/composer/psr/event-dispatcher/1.0.0/psr-event-dispatcher-1.0.0.zip",
  2007. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2008. "shasum": ""
  2009. },
  2010. "require": {
  2011. "php": ">=7.2.0"
  2012. },
  2013. "type": "library",
  2014. "extra": {
  2015. "branch-alias": {
  2016. "dev-master": "1.0.x-dev"
  2017. }
  2018. },
  2019. "autoload": {
  2020. "psr-4": {
  2021. "Psr\\EventDispatcher\\": "src/"
  2022. }
  2023. },
  2024. "license": [
  2025. "MIT"
  2026. ],
  2027. "authors": [
  2028. {
  2029. "name": "PHP-FIG",
  2030. "homepage": "http://www.php-fig.org/"
  2031. }
  2032. ],
  2033. "description": "Standard interfaces for event handling.",
  2034. "keywords": [
  2035. "events",
  2036. "psr",
  2037. "psr-14"
  2038. ],
  2039. "time": "2019-01-08T18:20:26+00:00"
  2040. },
  2041. {
  2042. "name": "psr/http-client",
  2043. "version": "1.0.3",
  2044. "dist": {
  2045. "type": "zip",
  2046. "url": "https://mirrors.cloud.tencent.com/repository/composer/psr/http-client/1.0.3/psr-http-client-1.0.3.zip",
  2047. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  2048. "shasum": ""
  2049. },
  2050. "require": {
  2051. "php": "^7.0 || ^8.0",
  2052. "psr/http-message": "^1.0 || ^2.0"
  2053. },
  2054. "type": "library",
  2055. "extra": {
  2056. "branch-alias": {
  2057. "dev-master": "1.0.x-dev"
  2058. }
  2059. },
  2060. "autoload": {
  2061. "psr-4": {
  2062. "Psr\\Http\\Client\\": "src/"
  2063. }
  2064. },
  2065. "license": [
  2066. "MIT"
  2067. ],
  2068. "authors": [
  2069. {
  2070. "name": "PHP-FIG",
  2071. "homepage": "https://www.php-fig.org/"
  2072. }
  2073. ],
  2074. "description": "Common interface for HTTP clients",
  2075. "homepage": "https://github.com/php-fig/http-client",
  2076. "keywords": [
  2077. "http",
  2078. "http-client",
  2079. "psr",
  2080. "psr-18"
  2081. ],
  2082. "time": "2023-09-23T14:17:50+00:00"
  2083. },
  2084. {
  2085. "name": "psr/http-factory",
  2086. "version": "1.0.2",
  2087. "dist": {
  2088. "type": "zip",
  2089. "url": "https://mirrors.cloud.tencent.com/repository/composer/psr/http-factory/1.0.2/psr-http-factory-1.0.2.zip",
  2090. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  2091. "shasum": ""
  2092. },
  2093. "require": {
  2094. "php": ">=7.0.0",
  2095. "psr/http-message": "^1.0 || ^2.0"
  2096. },
  2097. "type": "library",
  2098. "extra": {
  2099. "branch-alias": {
  2100. "dev-master": "1.0.x-dev"
  2101. }
  2102. },
  2103. "autoload": {
  2104. "psr-4": {
  2105. "Psr\\Http\\Message\\": "src/"
  2106. }
  2107. },
  2108. "license": [
  2109. "MIT"
  2110. ],
  2111. "authors": [
  2112. {
  2113. "name": "PHP-FIG",
  2114. "homepage": "https://www.php-fig.org/"
  2115. }
  2116. ],
  2117. "description": "Common interfaces for PSR-7 HTTP message factories",
  2118. "keywords": [
  2119. "factory",
  2120. "http",
  2121. "message",
  2122. "psr",
  2123. "psr-17",
  2124. "psr-7",
  2125. "request",
  2126. "response"
  2127. ],
  2128. "time": "2023-04-10T20:10:41+00:00"
  2129. },
  2130. {
  2131. "name": "psr/http-message",
  2132. "version": "2.0",
  2133. "dist": {
  2134. "type": "zip",
  2135. "url": "https://mirrors.cloud.tencent.com/repository/composer/psr/http-message/2.0/psr-http-message-2.0.zip",
  2136. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  2137. "shasum": ""
  2138. },
  2139. "require": {
  2140. "php": "^7.2 || ^8.0"
  2141. },
  2142. "type": "library",
  2143. "extra": {
  2144. "branch-alias": {
  2145. "dev-master": "2.0.x-dev"
  2146. }
  2147. },
  2148. "autoload": {
  2149. "psr-4": {
  2150. "Psr\\Http\\Message\\": "src/"
  2151. }
  2152. },
  2153. "license": [
  2154. "MIT"
  2155. ],
  2156. "authors": [
  2157. {
  2158. "name": "PHP-FIG",
  2159. "homepage": "https://www.php-fig.org/"
  2160. }
  2161. ],
  2162. "description": "Common interface for HTTP messages",
  2163. "homepage": "https://github.com/php-fig/http-message",
  2164. "keywords": [
  2165. "http",
  2166. "http-message",
  2167. "psr",
  2168. "psr-7",
  2169. "request",
  2170. "response"
  2171. ],
  2172. "time": "2023-04-04T09:54:51+00:00"
  2173. },
  2174. {
  2175. "name": "psr/log",
  2176. "version": "3.0.0",
  2177. "dist": {
  2178. "type": "zip",
  2179. "url": "https://mirrors.cloud.tencent.com/repository/composer/psr/log/3.0.0/psr-log-3.0.0.zip",
  2180. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  2181. "shasum": ""
  2182. },
  2183. "require": {
  2184. "php": ">=8.0.0"
  2185. },
  2186. "type": "library",
  2187. "extra": {
  2188. "branch-alias": {
  2189. "dev-master": "3.x-dev"
  2190. }
  2191. },
  2192. "autoload": {
  2193. "psr-4": {
  2194. "Psr\\Log\\": "src"
  2195. }
  2196. },
  2197. "license": [
  2198. "MIT"
  2199. ],
  2200. "authors": [
  2201. {
  2202. "name": "PHP-FIG",
  2203. "homepage": "https://www.php-fig.org/"
  2204. }
  2205. ],
  2206. "description": "Common interface for logging libraries",
  2207. "homepage": "https://github.com/php-fig/log",
  2208. "keywords": [
  2209. "log",
  2210. "psr",
  2211. "psr-3"
  2212. ],
  2213. "time": "2021-07-14T16:46:02+00:00"
  2214. },
  2215. {
  2216. "name": "psr/simple-cache",
  2217. "version": "3.0.0",
  2218. "dist": {
  2219. "type": "zip",
  2220. "url": "https://mirrors.cloud.tencent.com/repository/composer/psr/simple-cache/3.0.0/psr-simple-cache-3.0.0.zip",
  2221. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  2222. "shasum": ""
  2223. },
  2224. "require": {
  2225. "php": ">=8.0.0"
  2226. },
  2227. "type": "library",
  2228. "extra": {
  2229. "branch-alias": {
  2230. "dev-master": "3.0.x-dev"
  2231. }
  2232. },
  2233. "autoload": {
  2234. "psr-4": {
  2235. "Psr\\SimpleCache\\": "src/"
  2236. }
  2237. },
  2238. "license": [
  2239. "MIT"
  2240. ],
  2241. "authors": [
  2242. {
  2243. "name": "PHP-FIG",
  2244. "homepage": "https://www.php-fig.org/"
  2245. }
  2246. ],
  2247. "description": "Common interfaces for simple caching",
  2248. "keywords": [
  2249. "cache",
  2250. "caching",
  2251. "psr",
  2252. "psr-16",
  2253. "simple-cache"
  2254. ],
  2255. "time": "2021-10-29T13:26:27+00:00"
  2256. },
  2257. {
  2258. "name": "psy/psysh",
  2259. "version": "v0.11.22",
  2260. "dist": {
  2261. "type": "zip",
  2262. "url": "https://mirrors.tencent.com/repository/composer/psy/psysh/v0.11.22/psy-psysh-v0.11.22.zip",
  2263. "reference": "128fa1b608be651999ed9789c95e6e2a31b5802b",
  2264. "shasum": ""
  2265. },
  2266. "require": {
  2267. "ext-json": "*",
  2268. "ext-tokenizer": "*",
  2269. "nikic/php-parser": "^4.0 || ^3.1",
  2270. "php": "^8.0 || ^7.0.8",
  2271. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  2272. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  2273. },
  2274. "conflict": {
  2275. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  2276. },
  2277. "require-dev": {
  2278. "bamarni/composer-bin-plugin": "^1.2"
  2279. },
  2280. "suggest": {
  2281. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  2282. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  2283. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  2284. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
  2285. },
  2286. "bin": [
  2287. "bin/psysh"
  2288. ],
  2289. "type": "library",
  2290. "extra": {
  2291. "branch-alias": {
  2292. "dev-0.11": "0.11.x-dev"
  2293. },
  2294. "bamarni-bin": {
  2295. "bin-links": false,
  2296. "forward-command": false
  2297. }
  2298. },
  2299. "autoload": {
  2300. "files": [
  2301. "src/functions.php"
  2302. ],
  2303. "psr-4": {
  2304. "Psy\\": "src/"
  2305. }
  2306. },
  2307. "license": [
  2308. "MIT"
  2309. ],
  2310. "authors": [
  2311. {
  2312. "name": "Justin Hileman",
  2313. "email": "justin@justinhileman.info",
  2314. "homepage": "http://justinhileman.com"
  2315. }
  2316. ],
  2317. "description": "An interactive shell for modern PHP.",
  2318. "homepage": "http://psysh.org",
  2319. "keywords": [
  2320. "REPL",
  2321. "console",
  2322. "interactive",
  2323. "shell"
  2324. ],
  2325. "time": "2023-10-14T21:56:36+00:00"
  2326. },
  2327. {
  2328. "name": "ralouphie/getallheaders",
  2329. "version": "3.0.3",
  2330. "dist": {
  2331. "type": "zip",
  2332. "url": "https://mirrors.cloud.tencent.com/repository/composer/ralouphie/getallheaders/3.0.3/ralouphie-getallheaders-3.0.3.zip",
  2333. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  2334. "shasum": ""
  2335. },
  2336. "require": {
  2337. "php": ">=5.6"
  2338. },
  2339. "require-dev": {
  2340. "php-coveralls/php-coveralls": "^2.1",
  2341. "phpunit/phpunit": "^5 || ^6.5"
  2342. },
  2343. "type": "library",
  2344. "autoload": {
  2345. "files": [
  2346. "src/getallheaders.php"
  2347. ]
  2348. },
  2349. "license": [
  2350. "MIT"
  2351. ],
  2352. "authors": [
  2353. {
  2354. "name": "Ralph Khattar",
  2355. "email": "ralph.khattar@gmail.com"
  2356. }
  2357. ],
  2358. "description": "A polyfill for getallheaders.",
  2359. "time": "2019-03-08T08:55:37+00:00"
  2360. },
  2361. {
  2362. "name": "ramsey/collection",
  2363. "version": "2.0.0",
  2364. "dist": {
  2365. "type": "zip",
  2366. "url": "https://mirrors.tencent.com/repository/composer/ramsey/collection/2.0.0/ramsey-collection-2.0.0.zip",
  2367. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  2368. "shasum": ""
  2369. },
  2370. "require": {
  2371. "php": "^8.1"
  2372. },
  2373. "require-dev": {
  2374. "captainhook/plugin-composer": "^5.3",
  2375. "ergebnis/composer-normalize": "^2.28.3",
  2376. "fakerphp/faker": "^1.21",
  2377. "hamcrest/hamcrest-php": "^2.0",
  2378. "jangregor/phpstan-prophecy": "^1.0",
  2379. "mockery/mockery": "^1.5",
  2380. "php-parallel-lint/php-console-highlighter": "^1.0",
  2381. "php-parallel-lint/php-parallel-lint": "^1.3",
  2382. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  2383. "phpspec/prophecy-phpunit": "^2.0",
  2384. "phpstan/extension-installer": "^1.2",
  2385. "phpstan/phpstan": "^1.9",
  2386. "phpstan/phpstan-mockery": "^1.1",
  2387. "phpstan/phpstan-phpunit": "^1.3",
  2388. "phpunit/phpunit": "^9.5",
  2389. "psalm/plugin-mockery": "^1.1",
  2390. "psalm/plugin-phpunit": "^0.18.4",
  2391. "ramsey/coding-standard": "^2.0.3",
  2392. "ramsey/conventional-commits": "^1.3",
  2393. "vimeo/psalm": "^5.4"
  2394. },
  2395. "type": "library",
  2396. "extra": {
  2397. "captainhook": {
  2398. "force-install": true
  2399. },
  2400. "ramsey/conventional-commits": {
  2401. "configFile": "conventional-commits.json"
  2402. }
  2403. },
  2404. "autoload": {
  2405. "psr-4": {
  2406. "Ramsey\\Collection\\": "src/"
  2407. }
  2408. },
  2409. "license": [
  2410. "MIT"
  2411. ],
  2412. "authors": [
  2413. {
  2414. "name": "Ben Ramsey",
  2415. "email": "ben@benramsey.com",
  2416. "homepage": "https://benramsey.com"
  2417. }
  2418. ],
  2419. "description": "A PHP library for representing and manipulating collections.",
  2420. "keywords": [
  2421. "array",
  2422. "collection",
  2423. "hash",
  2424. "map",
  2425. "queue",
  2426. "set"
  2427. ],
  2428. "time": "2022-12-31T21:50:55+00:00"
  2429. },
  2430. {
  2431. "name": "ramsey/uuid",
  2432. "version": "4.7.5",
  2433. "dist": {
  2434. "type": "zip",
  2435. "url": "https://mirrors.cloud.tencent.com/repository/composer/ramsey/uuid/4.7.5/ramsey-uuid-4.7.5.zip",
  2436. "reference": "5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e",
  2437. "shasum": ""
  2438. },
  2439. "require": {
  2440. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11",
  2441. "ext-json": "*",
  2442. "php": "^8.0",
  2443. "ramsey/collection": "^1.2 || ^2.0"
  2444. },
  2445. "replace": {
  2446. "rhumsaa/uuid": "self.version"
  2447. },
  2448. "require-dev": {
  2449. "captainhook/captainhook": "^5.10",
  2450. "captainhook/plugin-composer": "^5.3",
  2451. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2452. "doctrine/annotations": "^1.8",
  2453. "ergebnis/composer-normalize": "^2.15",
  2454. "mockery/mockery": "^1.3",
  2455. "paragonie/random-lib": "^2",
  2456. "php-mock/php-mock": "^2.2",
  2457. "php-mock/php-mock-mockery": "^1.3",
  2458. "php-parallel-lint/php-parallel-lint": "^1.1",
  2459. "phpbench/phpbench": "^1.0",
  2460. "phpstan/extension-installer": "^1.1",
  2461. "phpstan/phpstan": "^1.8",
  2462. "phpstan/phpstan-mockery": "^1.1",
  2463. "phpstan/phpstan-phpunit": "^1.1",
  2464. "phpunit/phpunit": "^8.5 || ^9",
  2465. "ramsey/composer-repl": "^1.4",
  2466. "slevomat/coding-standard": "^8.4",
  2467. "squizlabs/php_codesniffer": "^3.5",
  2468. "vimeo/psalm": "^4.9"
  2469. },
  2470. "suggest": {
  2471. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  2472. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  2473. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  2474. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  2475. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  2476. },
  2477. "type": "library",
  2478. "extra": {
  2479. "captainhook": {
  2480. "force-install": true
  2481. }
  2482. },
  2483. "autoload": {
  2484. "files": [
  2485. "src/functions.php"
  2486. ],
  2487. "psr-4": {
  2488. "Ramsey\\Uuid\\": "src/"
  2489. }
  2490. },
  2491. "license": [
  2492. "MIT"
  2493. ],
  2494. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  2495. "keywords": [
  2496. "guid",
  2497. "identifier",
  2498. "uuid"
  2499. ],
  2500. "time": "2023-11-08T05:53:05+00:00"
  2501. },
  2502. {
  2503. "name": "symfony/console",
  2504. "version": "v6.4.2",
  2505. "dist": {
  2506. "type": "zip",
  2507. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/console/v6.4.2/symfony-console-v6.4.2.zip",
  2508. "reference": "0254811a143e6bc6c8deea08b589a7e68a37f625",
  2509. "shasum": ""
  2510. },
  2511. "require": {
  2512. "php": ">=8.1",
  2513. "symfony/deprecation-contracts": "^2.5|^3",
  2514. "symfony/polyfill-mbstring": "~1.0",
  2515. "symfony/service-contracts": "^2.5|^3",
  2516. "symfony/string": "^5.4|^6.0|^7.0"
  2517. },
  2518. "conflict": {
  2519. "symfony/dependency-injection": "<5.4",
  2520. "symfony/dotenv": "<5.4",
  2521. "symfony/event-dispatcher": "<5.4",
  2522. "symfony/lock": "<5.4",
  2523. "symfony/process": "<5.4"
  2524. },
  2525. "provide": {
  2526. "psr/log-implementation": "1.0|2.0|3.0"
  2527. },
  2528. "require-dev": {
  2529. "psr/log": "^1|^2|^3",
  2530. "symfony/config": "^5.4|^6.0|^7.0",
  2531. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  2532. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  2533. "symfony/http-foundation": "^6.4|^7.0",
  2534. "symfony/http-kernel": "^6.4|^7.0",
  2535. "symfony/lock": "^5.4|^6.0|^7.0",
  2536. "symfony/messenger": "^5.4|^6.0|^7.0",
  2537. "symfony/process": "^5.4|^6.0|^7.0",
  2538. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  2539. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  2540. },
  2541. "type": "library",
  2542. "autoload": {
  2543. "psr-4": {
  2544. "Symfony\\Component\\Console\\": ""
  2545. },
  2546. "exclude-from-classmap": [
  2547. "/Tests/"
  2548. ]
  2549. },
  2550. "license": [
  2551. "MIT"
  2552. ],
  2553. "authors": [
  2554. {
  2555. "name": "Fabien Potencier",
  2556. "email": "fabien@symfony.com"
  2557. },
  2558. {
  2559. "name": "Symfony Community",
  2560. "homepage": "https://symfony.com/contributors"
  2561. }
  2562. ],
  2563. "description": "Eases the creation of beautiful and testable command line interfaces",
  2564. "homepage": "https://symfony.com",
  2565. "keywords": [
  2566. "cli",
  2567. "command-line",
  2568. "console",
  2569. "terminal"
  2570. ],
  2571. "time": "2023-12-10T16:15:48+00:00"
  2572. },
  2573. {
  2574. "name": "symfony/css-selector",
  2575. "version": "v7.0.0",
  2576. "dist": {
  2577. "type": "zip",
  2578. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/css-selector/v7.0.0/symfony-css-selector-v7.0.0.zip",
  2579. "reference": "bb51d46e53ef8d50d523f0c5faedba056a27943e",
  2580. "shasum": ""
  2581. },
  2582. "require": {
  2583. "php": ">=8.2"
  2584. },
  2585. "type": "library",
  2586. "autoload": {
  2587. "psr-4": {
  2588. "Symfony\\Component\\CssSelector\\": ""
  2589. },
  2590. "exclude-from-classmap": [
  2591. "/Tests/"
  2592. ]
  2593. },
  2594. "license": [
  2595. "MIT"
  2596. ],
  2597. "authors": [
  2598. {
  2599. "name": "Fabien Potencier",
  2600. "email": "fabien@symfony.com"
  2601. },
  2602. {
  2603. "name": "Jean-François Simon",
  2604. "email": "jeanfrancois.simon@sensiolabs.com"
  2605. },
  2606. {
  2607. "name": "Symfony Community",
  2608. "homepage": "https://symfony.com/contributors"
  2609. }
  2610. ],
  2611. "description": "Converts CSS selectors to XPath expressions",
  2612. "homepage": "https://symfony.com",
  2613. "time": "2023-10-31T17:59:56+00:00"
  2614. },
  2615. {
  2616. "name": "symfony/deprecation-contracts",
  2617. "version": "v3.4.0",
  2618. "dist": {
  2619. "type": "zip",
  2620. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/deprecation-contracts/v3.4.0/symfony-deprecation-contracts-v3.4.0.zip",
  2621. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf",
  2622. "shasum": ""
  2623. },
  2624. "require": {
  2625. "php": ">=8.1"
  2626. },
  2627. "type": "library",
  2628. "extra": {
  2629. "branch-alias": {
  2630. "dev-main": "3.4-dev"
  2631. },
  2632. "thanks": {
  2633. "name": "symfony/contracts",
  2634. "url": "https://github.com/symfony/contracts"
  2635. }
  2636. },
  2637. "autoload": {
  2638. "files": [
  2639. "function.php"
  2640. ]
  2641. },
  2642. "license": [
  2643. "MIT"
  2644. ],
  2645. "authors": [
  2646. {
  2647. "name": "Nicolas Grekas",
  2648. "email": "p@tchwork.com"
  2649. },
  2650. {
  2651. "name": "Symfony Community",
  2652. "homepage": "https://symfony.com/contributors"
  2653. }
  2654. ],
  2655. "description": "A generic function and convention to trigger deprecation notices",
  2656. "homepage": "https://symfony.com",
  2657. "time": "2023-05-23T14:45:45+00:00"
  2658. },
  2659. {
  2660. "name": "symfony/error-handler",
  2661. "version": "v6.4.0",
  2662. "dist": {
  2663. "type": "zip",
  2664. "url": "https://mirrors.tencent.com/repository/composer/symfony/error-handler/v6.4.0/symfony-error-handler-v6.4.0.zip",
  2665. "reference": "c873490a1c97b3a0a4838afc36ff36c112d02788",
  2666. "shasum": ""
  2667. },
  2668. "require": {
  2669. "php": ">=8.1",
  2670. "psr/log": "^1|^2|^3",
  2671. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  2672. },
  2673. "conflict": {
  2674. "symfony/deprecation-contracts": "<2.5",
  2675. "symfony/http-kernel": "<6.4"
  2676. },
  2677. "require-dev": {
  2678. "symfony/deprecation-contracts": "^2.5|^3",
  2679. "symfony/http-kernel": "^6.4|^7.0",
  2680. "symfony/serializer": "^5.4|^6.0|^7.0"
  2681. },
  2682. "bin": [
  2683. "Resources/bin/patch-type-declarations"
  2684. ],
  2685. "type": "library",
  2686. "autoload": {
  2687. "psr-4": {
  2688. "Symfony\\Component\\ErrorHandler\\": ""
  2689. },
  2690. "exclude-from-classmap": [
  2691. "/Tests/"
  2692. ]
  2693. },
  2694. "license": [
  2695. "MIT"
  2696. ],
  2697. "authors": [
  2698. {
  2699. "name": "Fabien Potencier",
  2700. "email": "fabien@symfony.com"
  2701. },
  2702. {
  2703. "name": "Symfony Community",
  2704. "homepage": "https://symfony.com/contributors"
  2705. }
  2706. ],
  2707. "description": "Provides tools to manage errors and ease debugging PHP code",
  2708. "homepage": "https://symfony.com",
  2709. "time": "2023-10-18T09:43:34+00:00"
  2710. },
  2711. {
  2712. "name": "symfony/event-dispatcher",
  2713. "version": "v7.0.2",
  2714. "dist": {
  2715. "type": "zip",
  2716. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/event-dispatcher/v7.0.2/symfony-event-dispatcher-v7.0.2.zip",
  2717. "reference": "098b62ae81fdd6cbf941f355059f617db28f4f9a",
  2718. "shasum": ""
  2719. },
  2720. "require": {
  2721. "php": ">=8.2",
  2722. "symfony/event-dispatcher-contracts": "^2.5|^3"
  2723. },
  2724. "conflict": {
  2725. "symfony/dependency-injection": "<6.4",
  2726. "symfony/service-contracts": "<2.5"
  2727. },
  2728. "provide": {
  2729. "psr/event-dispatcher-implementation": "1.0",
  2730. "symfony/event-dispatcher-implementation": "2.0|3.0"
  2731. },
  2732. "require-dev": {
  2733. "psr/log": "^1|^2|^3",
  2734. "symfony/config": "^6.4|^7.0",
  2735. "symfony/dependency-injection": "^6.4|^7.0",
  2736. "symfony/error-handler": "^6.4|^7.0",
  2737. "symfony/expression-language": "^6.4|^7.0",
  2738. "symfony/http-foundation": "^6.4|^7.0",
  2739. "symfony/service-contracts": "^2.5|^3",
  2740. "symfony/stopwatch": "^6.4|^7.0"
  2741. },
  2742. "type": "library",
  2743. "autoload": {
  2744. "psr-4": {
  2745. "Symfony\\Component\\EventDispatcher\\": ""
  2746. },
  2747. "exclude-from-classmap": [
  2748. "/Tests/"
  2749. ]
  2750. },
  2751. "license": [
  2752. "MIT"
  2753. ],
  2754. "authors": [
  2755. {
  2756. "name": "Fabien Potencier",
  2757. "email": "fabien@symfony.com"
  2758. },
  2759. {
  2760. "name": "Symfony Community",
  2761. "homepage": "https://symfony.com/contributors"
  2762. }
  2763. ],
  2764. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  2765. "homepage": "https://symfony.com",
  2766. "time": "2023-12-27T22:24:19+00:00"
  2767. },
  2768. {
  2769. "name": "symfony/event-dispatcher-contracts",
  2770. "version": "v3.4.0",
  2771. "dist": {
  2772. "type": "zip",
  2773. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/event-dispatcher-contracts/v3.4.0/symfony-event-dispatcher-contracts-v3.4.0.zip",
  2774. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df",
  2775. "shasum": ""
  2776. },
  2777. "require": {
  2778. "php": ">=8.1",
  2779. "psr/event-dispatcher": "^1"
  2780. },
  2781. "type": "library",
  2782. "extra": {
  2783. "branch-alias": {
  2784. "dev-main": "3.4-dev"
  2785. },
  2786. "thanks": {
  2787. "name": "symfony/contracts",
  2788. "url": "https://github.com/symfony/contracts"
  2789. }
  2790. },
  2791. "autoload": {
  2792. "psr-4": {
  2793. "Symfony\\Contracts\\EventDispatcher\\": ""
  2794. }
  2795. },
  2796. "license": [
  2797. "MIT"
  2798. ],
  2799. "authors": [
  2800. {
  2801. "name": "Nicolas Grekas",
  2802. "email": "p@tchwork.com"
  2803. },
  2804. {
  2805. "name": "Symfony Community",
  2806. "homepage": "https://symfony.com/contributors"
  2807. }
  2808. ],
  2809. "description": "Generic abstractions related to dispatching event",
  2810. "homepage": "https://symfony.com",
  2811. "keywords": [
  2812. "abstractions",
  2813. "contracts",
  2814. "decoupling",
  2815. "interfaces",
  2816. "interoperability",
  2817. "standards"
  2818. ],
  2819. "time": "2023-05-23T14:45:45+00:00"
  2820. },
  2821. {
  2822. "name": "symfony/finder",
  2823. "version": "v6.4.0",
  2824. "dist": {
  2825. "type": "zip",
  2826. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/finder/v6.4.0/symfony-finder-v6.4.0.zip",
  2827. "reference": "11d736e97f116ac375a81f96e662911a34cd50ce",
  2828. "shasum": ""
  2829. },
  2830. "require": {
  2831. "php": ">=8.1"
  2832. },
  2833. "require-dev": {
  2834. "symfony/filesystem": "^6.0|^7.0"
  2835. },
  2836. "type": "library",
  2837. "autoload": {
  2838. "psr-4": {
  2839. "Symfony\\Component\\Finder\\": ""
  2840. },
  2841. "exclude-from-classmap": [
  2842. "/Tests/"
  2843. ]
  2844. },
  2845. "license": [
  2846. "MIT"
  2847. ],
  2848. "authors": [
  2849. {
  2850. "name": "Fabien Potencier",
  2851. "email": "fabien@symfony.com"
  2852. },
  2853. {
  2854. "name": "Symfony Community",
  2855. "homepage": "https://symfony.com/contributors"
  2856. }
  2857. ],
  2858. "description": "Finds files and directories via an intuitive fluent interface",
  2859. "homepage": "https://symfony.com",
  2860. "time": "2023-10-31T17:30:12+00:00"
  2861. },
  2862. {
  2863. "name": "symfony/http-foundation",
  2864. "version": "v6.4.2",
  2865. "dist": {
  2866. "type": "zip",
  2867. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/http-foundation/v6.4.2/symfony-http-foundation-v6.4.2.zip",
  2868. "reference": "172d807f9ef3fc3fbed8377cc57c20d389269271",
  2869. "shasum": ""
  2870. },
  2871. "require": {
  2872. "php": ">=8.1",
  2873. "symfony/deprecation-contracts": "^2.5|^3",
  2874. "symfony/polyfill-mbstring": "~1.1",
  2875. "symfony/polyfill-php83": "^1.27"
  2876. },
  2877. "conflict": {
  2878. "symfony/cache": "<6.3"
  2879. },
  2880. "require-dev": {
  2881. "doctrine/dbal": "^2.13.1|^3|^4",
  2882. "predis/predis": "^1.1|^2.0",
  2883. "symfony/cache": "^6.3|^7.0",
  2884. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  2885. "symfony/expression-language": "^5.4|^6.0|^7.0",
  2886. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  2887. "symfony/mime": "^5.4|^6.0|^7.0",
  2888. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  2889. },
  2890. "type": "library",
  2891. "autoload": {
  2892. "psr-4": {
  2893. "Symfony\\Component\\HttpFoundation\\": ""
  2894. },
  2895. "exclude-from-classmap": [
  2896. "/Tests/"
  2897. ]
  2898. },
  2899. "license": [
  2900. "MIT"
  2901. ],
  2902. "authors": [
  2903. {
  2904. "name": "Fabien Potencier",
  2905. "email": "fabien@symfony.com"
  2906. },
  2907. {
  2908. "name": "Symfony Community",
  2909. "homepage": "https://symfony.com/contributors"
  2910. }
  2911. ],
  2912. "description": "Defines an object-oriented layer for the HTTP specification",
  2913. "homepage": "https://symfony.com",
  2914. "time": "2023-12-27T22:16:42+00:00"
  2915. },
  2916. {
  2917. "name": "symfony/http-kernel",
  2918. "version": "v6.4.2",
  2919. "dist": {
  2920. "type": "zip",
  2921. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/http-kernel/v6.4.2/symfony-http-kernel-v6.4.2.zip",
  2922. "reference": "13e8387320b5942d0dc408440c888e2d526efef4",
  2923. "shasum": ""
  2924. },
  2925. "require": {
  2926. "php": ">=8.1",
  2927. "psr/log": "^1|^2|^3",
  2928. "symfony/deprecation-contracts": "^2.5|^3",
  2929. "symfony/error-handler": "^6.4|^7.0",
  2930. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  2931. "symfony/http-foundation": "^6.4|^7.0",
  2932. "symfony/polyfill-ctype": "^1.8"
  2933. },
  2934. "conflict": {
  2935. "symfony/browser-kit": "<5.4",
  2936. "symfony/cache": "<5.4",
  2937. "symfony/config": "<6.1",
  2938. "symfony/console": "<5.4",
  2939. "symfony/dependency-injection": "<6.4",
  2940. "symfony/doctrine-bridge": "<5.4",
  2941. "symfony/form": "<5.4",
  2942. "symfony/http-client": "<5.4",
  2943. "symfony/http-client-contracts": "<2.5",
  2944. "symfony/mailer": "<5.4",
  2945. "symfony/messenger": "<5.4",
  2946. "symfony/translation": "<5.4",
  2947. "symfony/translation-contracts": "<2.5",
  2948. "symfony/twig-bridge": "<5.4",
  2949. "symfony/validator": "<6.4",
  2950. "symfony/var-dumper": "<6.3",
  2951. "twig/twig": "<2.13"
  2952. },
  2953. "provide": {
  2954. "psr/log-implementation": "1.0|2.0|3.0"
  2955. },
  2956. "require-dev": {
  2957. "psr/cache": "^1.0|^2.0|^3.0",
  2958. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  2959. "symfony/clock": "^6.2|^7.0",
  2960. "symfony/config": "^6.1|^7.0",
  2961. "symfony/console": "^5.4|^6.0|^7.0",
  2962. "symfony/css-selector": "^5.4|^6.0|^7.0",
  2963. "symfony/dependency-injection": "^6.4|^7.0",
  2964. "symfony/dom-crawler": "^5.4|^6.0|^7.0",
  2965. "symfony/expression-language": "^5.4|^6.0|^7.0",
  2966. "symfony/finder": "^5.4|^6.0|^7.0",
  2967. "symfony/http-client-contracts": "^2.5|^3",
  2968. "symfony/process": "^5.4|^6.0|^7.0",
  2969. "symfony/property-access": "^5.4.5|^6.0.5|^7.0",
  2970. "symfony/routing": "^5.4|^6.0|^7.0",
  2971. "symfony/serializer": "^6.3|^7.0",
  2972. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  2973. "symfony/translation": "^5.4|^6.0|^7.0",
  2974. "symfony/translation-contracts": "^2.5|^3",
  2975. "symfony/uid": "^5.4|^6.0|^7.0",
  2976. "symfony/validator": "^6.4|^7.0",
  2977. "symfony/var-exporter": "^6.2|^7.0",
  2978. "twig/twig": "^2.13|^3.0.4"
  2979. },
  2980. "type": "library",
  2981. "autoload": {
  2982. "psr-4": {
  2983. "Symfony\\Component\\HttpKernel\\": ""
  2984. },
  2985. "exclude-from-classmap": [
  2986. "/Tests/"
  2987. ]
  2988. },
  2989. "license": [
  2990. "MIT"
  2991. ],
  2992. "authors": [
  2993. {
  2994. "name": "Fabien Potencier",
  2995. "email": "fabien@symfony.com"
  2996. },
  2997. {
  2998. "name": "Symfony Community",
  2999. "homepage": "https://symfony.com/contributors"
  3000. }
  3001. ],
  3002. "description": "Provides a structured process for converting a Request into a Response",
  3003. "homepage": "https://symfony.com",
  3004. "time": "2023-12-30T15:31:44+00:00"
  3005. },
  3006. {
  3007. "name": "symfony/mailer",
  3008. "version": "v6.4.2",
  3009. "dist": {
  3010. "type": "zip",
  3011. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/mailer/v6.4.2/symfony-mailer-v6.4.2.zip",
  3012. "reference": "6da89e5c9202f129717a770a03183fb140720168",
  3013. "shasum": ""
  3014. },
  3015. "require": {
  3016. "egulias/email-validator": "^2.1.10|^3|^4",
  3017. "php": ">=8.1",
  3018. "psr/event-dispatcher": "^1",
  3019. "psr/log": "^1|^2|^3",
  3020. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  3021. "symfony/mime": "^6.2|^7.0",
  3022. "symfony/service-contracts": "^2.5|^3"
  3023. },
  3024. "conflict": {
  3025. "symfony/http-client-contracts": "<2.5",
  3026. "symfony/http-kernel": "<5.4",
  3027. "symfony/messenger": "<6.2",
  3028. "symfony/mime": "<6.2",
  3029. "symfony/twig-bridge": "<6.2.1"
  3030. },
  3031. "require-dev": {
  3032. "symfony/console": "^5.4|^6.0|^7.0",
  3033. "symfony/http-client": "^5.4|^6.0|^7.0",
  3034. "symfony/messenger": "^6.2|^7.0",
  3035. "symfony/twig-bridge": "^6.2|^7.0"
  3036. },
  3037. "type": "library",
  3038. "autoload": {
  3039. "psr-4": {
  3040. "Symfony\\Component\\Mailer\\": ""
  3041. },
  3042. "exclude-from-classmap": [
  3043. "/Tests/"
  3044. ]
  3045. },
  3046. "license": [
  3047. "MIT"
  3048. ],
  3049. "authors": [
  3050. {
  3051. "name": "Fabien Potencier",
  3052. "email": "fabien@symfony.com"
  3053. },
  3054. {
  3055. "name": "Symfony Community",
  3056. "homepage": "https://symfony.com/contributors"
  3057. }
  3058. ],
  3059. "description": "Helps sending emails",
  3060. "homepage": "https://symfony.com",
  3061. "time": "2023-12-19T09:12:31+00:00"
  3062. },
  3063. {
  3064. "name": "symfony/mime",
  3065. "version": "v6.4.0",
  3066. "dist": {
  3067. "type": "zip",
  3068. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/mime/v6.4.0/symfony-mime-v6.4.0.zip",
  3069. "reference": "ca4f58b2ef4baa8f6cecbeca2573f88cd577d205",
  3070. "shasum": ""
  3071. },
  3072. "require": {
  3073. "php": ">=8.1",
  3074. "symfony/deprecation-contracts": "^2.5|^3",
  3075. "symfony/polyfill-intl-idn": "^1.10",
  3076. "symfony/polyfill-mbstring": "^1.0"
  3077. },
  3078. "conflict": {
  3079. "egulias/email-validator": "~3.0.0",
  3080. "phpdocumentor/reflection-docblock": "<3.2.2",
  3081. "phpdocumentor/type-resolver": "<1.4.0",
  3082. "symfony/mailer": "<5.4",
  3083. "symfony/serializer": "<6.3.2"
  3084. },
  3085. "require-dev": {
  3086. "egulias/email-validator": "^2.1.10|^3.1|^4",
  3087. "league/html-to-markdown": "^5.0",
  3088. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  3089. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  3090. "symfony/property-access": "^5.4|^6.0|^7.0",
  3091. "symfony/property-info": "^5.4|^6.0|^7.0",
  3092. "symfony/serializer": "^6.3.2|^7.0"
  3093. },
  3094. "type": "library",
  3095. "autoload": {
  3096. "psr-4": {
  3097. "Symfony\\Component\\Mime\\": ""
  3098. },
  3099. "exclude-from-classmap": [
  3100. "/Tests/"
  3101. ]
  3102. },
  3103. "license": [
  3104. "MIT"
  3105. ],
  3106. "authors": [
  3107. {
  3108. "name": "Fabien Potencier",
  3109. "email": "fabien@symfony.com"
  3110. },
  3111. {
  3112. "name": "Symfony Community",
  3113. "homepage": "https://symfony.com/contributors"
  3114. }
  3115. ],
  3116. "description": "Allows manipulating MIME messages",
  3117. "homepage": "https://symfony.com",
  3118. "keywords": [
  3119. "mime",
  3120. "mime-type"
  3121. ],
  3122. "time": "2023-10-17T11:49:05+00:00"
  3123. },
  3124. {
  3125. "name": "symfony/polyfill-ctype",
  3126. "version": "v1.28.0",
  3127. "dist": {
  3128. "type": "zip",
  3129. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/polyfill-ctype/v1.28.0/symfony-polyfill-ctype-v1.28.0.zip",
  3130. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
  3131. "shasum": ""
  3132. },
  3133. "require": {
  3134. "php": ">=7.1"
  3135. },
  3136. "provide": {
  3137. "ext-ctype": "*"
  3138. },
  3139. "suggest": {
  3140. "ext-ctype": "For best performance"
  3141. },
  3142. "type": "library",
  3143. "extra": {
  3144. "branch-alias": {
  3145. "dev-main": "1.28-dev"
  3146. },
  3147. "thanks": {
  3148. "name": "symfony/polyfill",
  3149. "url": "https://github.com/symfony/polyfill"
  3150. }
  3151. },
  3152. "autoload": {
  3153. "files": [
  3154. "bootstrap.php"
  3155. ],
  3156. "psr-4": {
  3157. "Symfony\\Polyfill\\Ctype\\": ""
  3158. }
  3159. },
  3160. "license": [
  3161. "MIT"
  3162. ],
  3163. "authors": [
  3164. {
  3165. "name": "Gert de Pagter",
  3166. "email": "BackEndTea@gmail.com"
  3167. },
  3168. {
  3169. "name": "Symfony Community",
  3170. "homepage": "https://symfony.com/contributors"
  3171. }
  3172. ],
  3173. "description": "Symfony polyfill for ctype functions",
  3174. "homepage": "https://symfony.com",
  3175. "keywords": [
  3176. "compatibility",
  3177. "ctype",
  3178. "polyfill",
  3179. "portable"
  3180. ],
  3181. "time": "2023-01-26T09:26:14+00:00"
  3182. },
  3183. {
  3184. "name": "symfony/polyfill-intl-grapheme",
  3185. "version": "v1.28.0",
  3186. "dist": {
  3187. "type": "zip",
  3188. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/polyfill-intl-grapheme/v1.28.0/symfony-polyfill-intl-grapheme-v1.28.0.zip",
  3189. "reference": "875e90aeea2777b6f135677f618529449334a612",
  3190. "shasum": ""
  3191. },
  3192. "require": {
  3193. "php": ">=7.1"
  3194. },
  3195. "suggest": {
  3196. "ext-intl": "For best performance"
  3197. },
  3198. "type": "library",
  3199. "extra": {
  3200. "branch-alias": {
  3201. "dev-main": "1.28-dev"
  3202. },
  3203. "thanks": {
  3204. "name": "symfony/polyfill",
  3205. "url": "https://github.com/symfony/polyfill"
  3206. }
  3207. },
  3208. "autoload": {
  3209. "files": [
  3210. "bootstrap.php"
  3211. ],
  3212. "psr-4": {
  3213. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  3214. }
  3215. },
  3216. "license": [
  3217. "MIT"
  3218. ],
  3219. "authors": [
  3220. {
  3221. "name": "Nicolas Grekas",
  3222. "email": "p@tchwork.com"
  3223. },
  3224. {
  3225. "name": "Symfony Community",
  3226. "homepage": "https://symfony.com/contributors"
  3227. }
  3228. ],
  3229. "description": "Symfony polyfill for intl's grapheme_* functions",
  3230. "homepage": "https://symfony.com",
  3231. "keywords": [
  3232. "compatibility",
  3233. "grapheme",
  3234. "intl",
  3235. "polyfill",
  3236. "portable",
  3237. "shim"
  3238. ],
  3239. "time": "2023-01-26T09:26:14+00:00"
  3240. },
  3241. {
  3242. "name": "symfony/polyfill-intl-idn",
  3243. "version": "v1.28.0",
  3244. "dist": {
  3245. "type": "zip",
  3246. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/polyfill-intl-idn/v1.28.0/symfony-polyfill-intl-idn-v1.28.0.zip",
  3247. "reference": "ecaafce9f77234a6a449d29e49267ba10499116d",
  3248. "shasum": ""
  3249. },
  3250. "require": {
  3251. "php": ">=7.1",
  3252. "symfony/polyfill-intl-normalizer": "^1.10",
  3253. "symfony/polyfill-php72": "^1.10"
  3254. },
  3255. "suggest": {
  3256. "ext-intl": "For best performance"
  3257. },
  3258. "type": "library",
  3259. "extra": {
  3260. "branch-alias": {
  3261. "dev-main": "1.28-dev"
  3262. },
  3263. "thanks": {
  3264. "name": "symfony/polyfill",
  3265. "url": "https://github.com/symfony/polyfill"
  3266. }
  3267. },
  3268. "autoload": {
  3269. "files": [
  3270. "bootstrap.php"
  3271. ],
  3272. "psr-4": {
  3273. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  3274. }
  3275. },
  3276. "license": [
  3277. "MIT"
  3278. ],
  3279. "authors": [
  3280. {
  3281. "name": "Laurent Bassin",
  3282. "email": "laurent@bassin.info"
  3283. },
  3284. {
  3285. "name": "Trevor Rowbotham",
  3286. "email": "trevor.rowbotham@pm.me"
  3287. },
  3288. {
  3289. "name": "Symfony Community",
  3290. "homepage": "https://symfony.com/contributors"
  3291. }
  3292. ],
  3293. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  3294. "homepage": "https://symfony.com",
  3295. "keywords": [
  3296. "compatibility",
  3297. "idn",
  3298. "intl",
  3299. "polyfill",
  3300. "portable",
  3301. "shim"
  3302. ],
  3303. "time": "2023-01-26T09:30:37+00:00"
  3304. },
  3305. {
  3306. "name": "symfony/polyfill-intl-normalizer",
  3307. "version": "v1.28.0",
  3308. "dist": {
  3309. "type": "zip",
  3310. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/polyfill-intl-normalizer/v1.28.0/symfony-polyfill-intl-normalizer-v1.28.0.zip",
  3311. "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
  3312. "shasum": ""
  3313. },
  3314. "require": {
  3315. "php": ">=7.1"
  3316. },
  3317. "suggest": {
  3318. "ext-intl": "For best performance"
  3319. },
  3320. "type": "library",
  3321. "extra": {
  3322. "branch-alias": {
  3323. "dev-main": "1.28-dev"
  3324. },
  3325. "thanks": {
  3326. "name": "symfony/polyfill",
  3327. "url": "https://github.com/symfony/polyfill"
  3328. }
  3329. },
  3330. "autoload": {
  3331. "files": [
  3332. "bootstrap.php"
  3333. ],
  3334. "psr-4": {
  3335. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  3336. },
  3337. "classmap": [
  3338. "Resources/stubs"
  3339. ]
  3340. },
  3341. "license": [
  3342. "MIT"
  3343. ],
  3344. "authors": [
  3345. {
  3346. "name": "Nicolas Grekas",
  3347. "email": "p@tchwork.com"
  3348. },
  3349. {
  3350. "name": "Symfony Community",
  3351. "homepage": "https://symfony.com/contributors"
  3352. }
  3353. ],
  3354. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  3355. "homepage": "https://symfony.com",
  3356. "keywords": [
  3357. "compatibility",
  3358. "intl",
  3359. "normalizer",
  3360. "polyfill",
  3361. "portable",
  3362. "shim"
  3363. ],
  3364. "time": "2023-01-26T09:26:14+00:00"
  3365. },
  3366. {
  3367. "name": "symfony/polyfill-mbstring",
  3368. "version": "v1.28.0",
  3369. "dist": {
  3370. "type": "zip",
  3371. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/polyfill-mbstring/v1.28.0/symfony-polyfill-mbstring-v1.28.0.zip",
  3372. "reference": "42292d99c55abe617799667f454222c54c60e229",
  3373. "shasum": ""
  3374. },
  3375. "require": {
  3376. "php": ">=7.1"
  3377. },
  3378. "provide": {
  3379. "ext-mbstring": "*"
  3380. },
  3381. "suggest": {
  3382. "ext-mbstring": "For best performance"
  3383. },
  3384. "type": "library",
  3385. "extra": {
  3386. "branch-alias": {
  3387. "dev-main": "1.28-dev"
  3388. },
  3389. "thanks": {
  3390. "name": "symfony/polyfill",
  3391. "url": "https://github.com/symfony/polyfill"
  3392. }
  3393. },
  3394. "autoload": {
  3395. "files": [
  3396. "bootstrap.php"
  3397. ],
  3398. "psr-4": {
  3399. "Symfony\\Polyfill\\Mbstring\\": ""
  3400. }
  3401. },
  3402. "license": [
  3403. "MIT"
  3404. ],
  3405. "authors": [
  3406. {
  3407. "name": "Nicolas Grekas",
  3408. "email": "p@tchwork.com"
  3409. },
  3410. {
  3411. "name": "Symfony Community",
  3412. "homepage": "https://symfony.com/contributors"
  3413. }
  3414. ],
  3415. "description": "Symfony polyfill for the Mbstring extension",
  3416. "homepage": "https://symfony.com",
  3417. "keywords": [
  3418. "compatibility",
  3419. "mbstring",
  3420. "polyfill",
  3421. "portable",
  3422. "shim"
  3423. ],
  3424. "time": "2023-07-28T09:04:16+00:00"
  3425. },
  3426. {
  3427. "name": "symfony/polyfill-php72",
  3428. "version": "v1.28.0",
  3429. "dist": {
  3430. "type": "zip",
  3431. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/polyfill-php72/v1.28.0/symfony-polyfill-php72-v1.28.0.zip",
  3432. "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179",
  3433. "shasum": ""
  3434. },
  3435. "require": {
  3436. "php": ">=7.1"
  3437. },
  3438. "type": "library",
  3439. "extra": {
  3440. "branch-alias": {
  3441. "dev-main": "1.28-dev"
  3442. },
  3443. "thanks": {
  3444. "name": "symfony/polyfill",
  3445. "url": "https://github.com/symfony/polyfill"
  3446. }
  3447. },
  3448. "autoload": {
  3449. "files": [
  3450. "bootstrap.php"
  3451. ],
  3452. "psr-4": {
  3453. "Symfony\\Polyfill\\Php72\\": ""
  3454. }
  3455. },
  3456. "license": [
  3457. "MIT"
  3458. ],
  3459. "authors": [
  3460. {
  3461. "name": "Nicolas Grekas",
  3462. "email": "p@tchwork.com"
  3463. },
  3464. {
  3465. "name": "Symfony Community",
  3466. "homepage": "https://symfony.com/contributors"
  3467. }
  3468. ],
  3469. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  3470. "homepage": "https://symfony.com",
  3471. "keywords": [
  3472. "compatibility",
  3473. "polyfill",
  3474. "portable",
  3475. "shim"
  3476. ],
  3477. "time": "2023-01-26T09:26:14+00:00"
  3478. },
  3479. {
  3480. "name": "symfony/polyfill-php80",
  3481. "version": "v1.28.0",
  3482. "dist": {
  3483. "type": "zip",
  3484. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/polyfill-php80/v1.28.0/symfony-polyfill-php80-v1.28.0.zip",
  3485. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  3486. "shasum": ""
  3487. },
  3488. "require": {
  3489. "php": ">=7.1"
  3490. },
  3491. "type": "library",
  3492. "extra": {
  3493. "branch-alias": {
  3494. "dev-main": "1.28-dev"
  3495. },
  3496. "thanks": {
  3497. "name": "symfony/polyfill",
  3498. "url": "https://github.com/symfony/polyfill"
  3499. }
  3500. },
  3501. "autoload": {
  3502. "files": [
  3503. "bootstrap.php"
  3504. ],
  3505. "psr-4": {
  3506. "Symfony\\Polyfill\\Php80\\": ""
  3507. },
  3508. "classmap": [
  3509. "Resources/stubs"
  3510. ]
  3511. },
  3512. "license": [
  3513. "MIT"
  3514. ],
  3515. "authors": [
  3516. {
  3517. "name": "Ion Bazan",
  3518. "email": "ion.bazan@gmail.com"
  3519. },
  3520. {
  3521. "name": "Nicolas Grekas",
  3522. "email": "p@tchwork.com"
  3523. },
  3524. {
  3525. "name": "Symfony Community",
  3526. "homepage": "https://symfony.com/contributors"
  3527. }
  3528. ],
  3529. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  3530. "homepage": "https://symfony.com",
  3531. "keywords": [
  3532. "compatibility",
  3533. "polyfill",
  3534. "portable",
  3535. "shim"
  3536. ],
  3537. "time": "2023-01-26T09:26:14+00:00"
  3538. },
  3539. {
  3540. "name": "symfony/polyfill-php83",
  3541. "version": "v1.28.0",
  3542. "dist": {
  3543. "type": "zip",
  3544. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/polyfill-php83/v1.28.0/symfony-polyfill-php83-v1.28.0.zip",
  3545. "reference": "b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11",
  3546. "shasum": ""
  3547. },
  3548. "require": {
  3549. "php": ">=7.1",
  3550. "symfony/polyfill-php80": "^1.14"
  3551. },
  3552. "type": "library",
  3553. "extra": {
  3554. "branch-alias": {
  3555. "dev-main": "1.28-dev"
  3556. },
  3557. "thanks": {
  3558. "name": "symfony/polyfill",
  3559. "url": "https://github.com/symfony/polyfill"
  3560. }
  3561. },
  3562. "autoload": {
  3563. "files": [
  3564. "bootstrap.php"
  3565. ],
  3566. "psr-4": {
  3567. "Symfony\\Polyfill\\Php83\\": ""
  3568. },
  3569. "classmap": [
  3570. "Resources/stubs"
  3571. ]
  3572. },
  3573. "license": [
  3574. "MIT"
  3575. ],
  3576. "authors": [
  3577. {
  3578. "name": "Nicolas Grekas",
  3579. "email": "p@tchwork.com"
  3580. },
  3581. {
  3582. "name": "Symfony Community",
  3583. "homepage": "https://symfony.com/contributors"
  3584. }
  3585. ],
  3586. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  3587. "homepage": "https://symfony.com",
  3588. "keywords": [
  3589. "compatibility",
  3590. "polyfill",
  3591. "portable",
  3592. "shim"
  3593. ],
  3594. "time": "2023-08-16T06:22:46+00:00"
  3595. },
  3596. {
  3597. "name": "symfony/polyfill-uuid",
  3598. "version": "v1.28.0",
  3599. "dist": {
  3600. "type": "zip",
  3601. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/polyfill-uuid/v1.28.0/symfony-polyfill-uuid-v1.28.0.zip",
  3602. "reference": "9c44518a5aff8da565c8a55dbe85d2769e6f630e",
  3603. "shasum": ""
  3604. },
  3605. "require": {
  3606. "php": ">=7.1"
  3607. },
  3608. "provide": {
  3609. "ext-uuid": "*"
  3610. },
  3611. "suggest": {
  3612. "ext-uuid": "For best performance"
  3613. },
  3614. "type": "library",
  3615. "extra": {
  3616. "branch-alias": {
  3617. "dev-main": "1.28-dev"
  3618. },
  3619. "thanks": {
  3620. "name": "symfony/polyfill",
  3621. "url": "https://github.com/symfony/polyfill"
  3622. }
  3623. },
  3624. "autoload": {
  3625. "files": [
  3626. "bootstrap.php"
  3627. ],
  3628. "psr-4": {
  3629. "Symfony\\Polyfill\\Uuid\\": ""
  3630. }
  3631. },
  3632. "license": [
  3633. "MIT"
  3634. ],
  3635. "authors": [
  3636. {
  3637. "name": "Grégoire Pineau",
  3638. "email": "lyrixx@lyrixx.info"
  3639. },
  3640. {
  3641. "name": "Symfony Community",
  3642. "homepage": "https://symfony.com/contributors"
  3643. }
  3644. ],
  3645. "description": "Symfony polyfill for uuid functions",
  3646. "homepage": "https://symfony.com",
  3647. "keywords": [
  3648. "compatibility",
  3649. "polyfill",
  3650. "portable",
  3651. "uuid"
  3652. ],
  3653. "time": "2023-01-26T09:26:14+00:00"
  3654. },
  3655. {
  3656. "name": "symfony/process",
  3657. "version": "v6.4.2",
  3658. "dist": {
  3659. "type": "zip",
  3660. "url": "https://mirrors.tencent.com/repository/composer/symfony/process/v6.4.2/symfony-process-v6.4.2.zip",
  3661. "reference": "c4b1ef0bc80533d87a2e969806172f1c2a980241",
  3662. "shasum": ""
  3663. },
  3664. "require": {
  3665. "php": ">=8.1"
  3666. },
  3667. "type": "library",
  3668. "autoload": {
  3669. "psr-4": {
  3670. "Symfony\\Component\\Process\\": ""
  3671. },
  3672. "exclude-from-classmap": [
  3673. "/Tests/"
  3674. ]
  3675. },
  3676. "license": [
  3677. "MIT"
  3678. ],
  3679. "authors": [
  3680. {
  3681. "name": "Fabien Potencier",
  3682. "email": "fabien@symfony.com"
  3683. },
  3684. {
  3685. "name": "Symfony Community",
  3686. "homepage": "https://symfony.com/contributors"
  3687. }
  3688. ],
  3689. "description": "Executes commands in sub-processes",
  3690. "homepage": "https://symfony.com",
  3691. "time": "2023-12-22T16:42:54+00:00"
  3692. },
  3693. {
  3694. "name": "symfony/routing",
  3695. "version": "v6.4.2",
  3696. "dist": {
  3697. "type": "zip",
  3698. "url": "https://mirrors.tencent.com/repository/composer/symfony/routing/v6.4.2/symfony-routing-v6.4.2.zip",
  3699. "reference": "98eab13a07fddc85766f1756129c69f207ffbc21",
  3700. "shasum": ""
  3701. },
  3702. "require": {
  3703. "php": ">=8.1",
  3704. "symfony/deprecation-contracts": "^2.5|^3"
  3705. },
  3706. "conflict": {
  3707. "doctrine/annotations": "<1.12",
  3708. "symfony/config": "<6.2",
  3709. "symfony/dependency-injection": "<5.4",
  3710. "symfony/yaml": "<5.4"
  3711. },
  3712. "require-dev": {
  3713. "doctrine/annotations": "^1.12|^2",
  3714. "psr/log": "^1|^2|^3",
  3715. "symfony/config": "^6.2|^7.0",
  3716. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  3717. "symfony/expression-language": "^5.4|^6.0|^7.0",
  3718. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  3719. "symfony/yaml": "^5.4|^6.0|^7.0"
  3720. },
  3721. "type": "library",
  3722. "autoload": {
  3723. "psr-4": {
  3724. "Symfony\\Component\\Routing\\": ""
  3725. },
  3726. "exclude-from-classmap": [
  3727. "/Tests/"
  3728. ]
  3729. },
  3730. "license": [
  3731. "MIT"
  3732. ],
  3733. "authors": [
  3734. {
  3735. "name": "Fabien Potencier",
  3736. "email": "fabien@symfony.com"
  3737. },
  3738. {
  3739. "name": "Symfony Community",
  3740. "homepage": "https://symfony.com/contributors"
  3741. }
  3742. ],
  3743. "description": "Maps an HTTP request to a set of configuration variables",
  3744. "homepage": "https://symfony.com",
  3745. "keywords": [
  3746. "router",
  3747. "routing",
  3748. "uri",
  3749. "url"
  3750. ],
  3751. "time": "2023-12-29T15:34:34+00:00"
  3752. },
  3753. {
  3754. "name": "symfony/service-contracts",
  3755. "version": "v3.4.1",
  3756. "dist": {
  3757. "type": "zip",
  3758. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/service-contracts/v3.4.1/symfony-service-contracts-v3.4.1.zip",
  3759. "reference": "fe07cbc8d837f60caf7018068e350cc5163681a0",
  3760. "shasum": ""
  3761. },
  3762. "require": {
  3763. "php": ">=8.1",
  3764. "psr/container": "^1.1|^2.0"
  3765. },
  3766. "conflict": {
  3767. "ext-psr": "<1.1|>=2"
  3768. },
  3769. "type": "library",
  3770. "extra": {
  3771. "branch-alias": {
  3772. "dev-main": "3.4-dev"
  3773. },
  3774. "thanks": {
  3775. "name": "symfony/contracts",
  3776. "url": "https://github.com/symfony/contracts"
  3777. }
  3778. },
  3779. "autoload": {
  3780. "psr-4": {
  3781. "Symfony\\Contracts\\Service\\": ""
  3782. },
  3783. "exclude-from-classmap": [
  3784. "/Test/"
  3785. ]
  3786. },
  3787. "license": [
  3788. "MIT"
  3789. ],
  3790. "authors": [
  3791. {
  3792. "name": "Nicolas Grekas",
  3793. "email": "p@tchwork.com"
  3794. },
  3795. {
  3796. "name": "Symfony Community",
  3797. "homepage": "https://symfony.com/contributors"
  3798. }
  3799. ],
  3800. "description": "Generic abstractions related to writing services",
  3801. "homepage": "https://symfony.com",
  3802. "keywords": [
  3803. "abstractions",
  3804. "contracts",
  3805. "decoupling",
  3806. "interfaces",
  3807. "interoperability",
  3808. "standards"
  3809. ],
  3810. "time": "2023-12-26T14:02:43+00:00"
  3811. },
  3812. {
  3813. "name": "symfony/string",
  3814. "version": "v7.0.2",
  3815. "dist": {
  3816. "type": "zip",
  3817. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/string/v7.0.2/symfony-string-v7.0.2.zip",
  3818. "reference": "cc78f14f91f5e53b42044d0620961c48028ff9f5",
  3819. "shasum": ""
  3820. },
  3821. "require": {
  3822. "php": ">=8.2",
  3823. "symfony/polyfill-ctype": "~1.8",
  3824. "symfony/polyfill-intl-grapheme": "~1.0",
  3825. "symfony/polyfill-intl-normalizer": "~1.0",
  3826. "symfony/polyfill-mbstring": "~1.0"
  3827. },
  3828. "conflict": {
  3829. "symfony/translation-contracts": "<2.5"
  3830. },
  3831. "require-dev": {
  3832. "symfony/error-handler": "^6.4|^7.0",
  3833. "symfony/http-client": "^6.4|^7.0",
  3834. "symfony/intl": "^6.4|^7.0",
  3835. "symfony/translation-contracts": "^2.5|^3.0",
  3836. "symfony/var-exporter": "^6.4|^7.0"
  3837. },
  3838. "type": "library",
  3839. "autoload": {
  3840. "files": [
  3841. "Resources/functions.php"
  3842. ],
  3843. "psr-4": {
  3844. "Symfony\\Component\\String\\": ""
  3845. },
  3846. "exclude-from-classmap": [
  3847. "/Tests/"
  3848. ]
  3849. },
  3850. "license": [
  3851. "MIT"
  3852. ],
  3853. "authors": [
  3854. {
  3855. "name": "Nicolas Grekas",
  3856. "email": "p@tchwork.com"
  3857. },
  3858. {
  3859. "name": "Symfony Community",
  3860. "homepage": "https://symfony.com/contributors"
  3861. }
  3862. ],
  3863. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  3864. "homepage": "https://symfony.com",
  3865. "keywords": [
  3866. "grapheme",
  3867. "i18n",
  3868. "string",
  3869. "unicode",
  3870. "utf-8",
  3871. "utf8"
  3872. ],
  3873. "time": "2023-12-10T16:54:46+00:00"
  3874. },
  3875. {
  3876. "name": "symfony/translation",
  3877. "version": "v6.4.2",
  3878. "dist": {
  3879. "type": "zip",
  3880. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/translation/v6.4.2/symfony-translation-v6.4.2.zip",
  3881. "reference": "a2ab2ec1a462e53016de8e8d5e8912bfd62ea681",
  3882. "shasum": ""
  3883. },
  3884. "require": {
  3885. "php": ">=8.1",
  3886. "symfony/deprecation-contracts": "^2.5|^3",
  3887. "symfony/polyfill-mbstring": "~1.0",
  3888. "symfony/translation-contracts": "^2.5|^3.0"
  3889. },
  3890. "conflict": {
  3891. "symfony/config": "<5.4",
  3892. "symfony/console": "<5.4",
  3893. "symfony/dependency-injection": "<5.4",
  3894. "symfony/http-client-contracts": "<2.5",
  3895. "symfony/http-kernel": "<5.4",
  3896. "symfony/service-contracts": "<2.5",
  3897. "symfony/twig-bundle": "<5.4",
  3898. "symfony/yaml": "<5.4"
  3899. },
  3900. "provide": {
  3901. "symfony/translation-implementation": "2.3|3.0"
  3902. },
  3903. "require-dev": {
  3904. "nikic/php-parser": "^4.13",
  3905. "psr/log": "^1|^2|^3",
  3906. "symfony/config": "^5.4|^6.0|^7.0",
  3907. "symfony/console": "^5.4|^6.0|^7.0",
  3908. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  3909. "symfony/finder": "^5.4|^6.0|^7.0",
  3910. "symfony/http-client-contracts": "^2.5|^3.0",
  3911. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  3912. "symfony/intl": "^5.4|^6.0|^7.0",
  3913. "symfony/polyfill-intl-icu": "^1.21",
  3914. "symfony/routing": "^5.4|^6.0|^7.0",
  3915. "symfony/service-contracts": "^2.5|^3",
  3916. "symfony/yaml": "^5.4|^6.0|^7.0"
  3917. },
  3918. "type": "library",
  3919. "autoload": {
  3920. "files": [
  3921. "Resources/functions.php"
  3922. ],
  3923. "psr-4": {
  3924. "Symfony\\Component\\Translation\\": ""
  3925. },
  3926. "exclude-from-classmap": [
  3927. "/Tests/"
  3928. ]
  3929. },
  3930. "license": [
  3931. "MIT"
  3932. ],
  3933. "authors": [
  3934. {
  3935. "name": "Fabien Potencier",
  3936. "email": "fabien@symfony.com"
  3937. },
  3938. {
  3939. "name": "Symfony Community",
  3940. "homepage": "https://symfony.com/contributors"
  3941. }
  3942. ],
  3943. "description": "Provides tools to internationalize your application",
  3944. "homepage": "https://symfony.com",
  3945. "time": "2023-12-18T09:25:29+00:00"
  3946. },
  3947. {
  3948. "name": "symfony/translation-contracts",
  3949. "version": "v3.4.1",
  3950. "dist": {
  3951. "type": "zip",
  3952. "url": "https://mirrors.tencent.com/repository/composer/symfony/translation-contracts/v3.4.1/symfony-translation-contracts-v3.4.1.zip",
  3953. "reference": "06450585bf65e978026bda220cdebca3f867fde7",
  3954. "shasum": ""
  3955. },
  3956. "require": {
  3957. "php": ">=8.1"
  3958. },
  3959. "type": "library",
  3960. "extra": {
  3961. "branch-alias": {
  3962. "dev-main": "3.4-dev"
  3963. },
  3964. "thanks": {
  3965. "name": "symfony/contracts",
  3966. "url": "https://github.com/symfony/contracts"
  3967. }
  3968. },
  3969. "autoload": {
  3970. "psr-4": {
  3971. "Symfony\\Contracts\\Translation\\": ""
  3972. },
  3973. "exclude-from-classmap": [
  3974. "/Test/"
  3975. ]
  3976. },
  3977. "license": [
  3978. "MIT"
  3979. ],
  3980. "authors": [
  3981. {
  3982. "name": "Nicolas Grekas",
  3983. "email": "p@tchwork.com"
  3984. },
  3985. {
  3986. "name": "Symfony Community",
  3987. "homepage": "https://symfony.com/contributors"
  3988. }
  3989. ],
  3990. "description": "Generic abstractions related to translation",
  3991. "homepage": "https://symfony.com",
  3992. "keywords": [
  3993. "abstractions",
  3994. "contracts",
  3995. "decoupling",
  3996. "interfaces",
  3997. "interoperability",
  3998. "standards"
  3999. ],
  4000. "time": "2023-12-26T14:02:43+00:00"
  4001. },
  4002. {
  4003. "name": "symfony/uid",
  4004. "version": "v6.4.0",
  4005. "dist": {
  4006. "type": "zip",
  4007. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/uid/v6.4.0/symfony-uid-v6.4.0.zip",
  4008. "reference": "8092dd1b1a41372110d06374f99ee62f7f0b9a92",
  4009. "shasum": ""
  4010. },
  4011. "require": {
  4012. "php": ">=8.1",
  4013. "symfony/polyfill-uuid": "^1.15"
  4014. },
  4015. "require-dev": {
  4016. "symfony/console": "^5.4|^6.0|^7.0"
  4017. },
  4018. "type": "library",
  4019. "autoload": {
  4020. "psr-4": {
  4021. "Symfony\\Component\\Uid\\": ""
  4022. },
  4023. "exclude-from-classmap": [
  4024. "/Tests/"
  4025. ]
  4026. },
  4027. "license": [
  4028. "MIT"
  4029. ],
  4030. "authors": [
  4031. {
  4032. "name": "Grégoire Pineau",
  4033. "email": "lyrixx@lyrixx.info"
  4034. },
  4035. {
  4036. "name": "Nicolas Grekas",
  4037. "email": "p@tchwork.com"
  4038. },
  4039. {
  4040. "name": "Symfony Community",
  4041. "homepage": "https://symfony.com/contributors"
  4042. }
  4043. ],
  4044. "description": "Provides an object-oriented API to generate and represent UIDs",
  4045. "homepage": "https://symfony.com",
  4046. "keywords": [
  4047. "UID",
  4048. "ulid",
  4049. "uuid"
  4050. ],
  4051. "time": "2023-10-31T08:18:17+00:00"
  4052. },
  4053. {
  4054. "name": "symfony/var-dumper",
  4055. "version": "v6.4.2",
  4056. "dist": {
  4057. "type": "zip",
  4058. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/var-dumper/v6.4.2/symfony-var-dumper-v6.4.2.zip",
  4059. "reference": "68d6573ec98715ddcae5a0a85bee3c1c27a4c33f",
  4060. "shasum": ""
  4061. },
  4062. "require": {
  4063. "php": ">=8.1",
  4064. "symfony/deprecation-contracts": "^2.5|^3",
  4065. "symfony/polyfill-mbstring": "~1.0"
  4066. },
  4067. "conflict": {
  4068. "symfony/console": "<5.4"
  4069. },
  4070. "require-dev": {
  4071. "ext-iconv": "*",
  4072. "symfony/console": "^5.4|^6.0|^7.0",
  4073. "symfony/error-handler": "^6.3|^7.0",
  4074. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  4075. "symfony/process": "^5.4|^6.0|^7.0",
  4076. "symfony/uid": "^5.4|^6.0|^7.0",
  4077. "twig/twig": "^2.13|^3.0.4"
  4078. },
  4079. "bin": [
  4080. "Resources/bin/var-dump-server"
  4081. ],
  4082. "type": "library",
  4083. "autoload": {
  4084. "files": [
  4085. "Resources/functions/dump.php"
  4086. ],
  4087. "psr-4": {
  4088. "Symfony\\Component\\VarDumper\\": ""
  4089. },
  4090. "exclude-from-classmap": [
  4091. "/Tests/"
  4092. ]
  4093. },
  4094. "license": [
  4095. "MIT"
  4096. ],
  4097. "authors": [
  4098. {
  4099. "name": "Nicolas Grekas",
  4100. "email": "p@tchwork.com"
  4101. },
  4102. {
  4103. "name": "Symfony Community",
  4104. "homepage": "https://symfony.com/contributors"
  4105. }
  4106. ],
  4107. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  4108. "homepage": "https://symfony.com",
  4109. "keywords": [
  4110. "debug",
  4111. "dump"
  4112. ],
  4113. "time": "2023-12-28T19:16:56+00:00"
  4114. },
  4115. {
  4116. "name": "tijsverkoyen/css-to-inline-styles",
  4117. "version": "v2.2.7",
  4118. "dist": {
  4119. "type": "zip",
  4120. "url": "https://mirrors.tencent.com/repository/composer/tijsverkoyen/css-to-inline-styles/v2.2.7/tijsverkoyen-css-to-inline-styles-v2.2.7.zip",
  4121. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb",
  4122. "shasum": ""
  4123. },
  4124. "require": {
  4125. "ext-dom": "*",
  4126. "ext-libxml": "*",
  4127. "php": "^5.5 || ^7.0 || ^8.0",
  4128. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0"
  4129. },
  4130. "require-dev": {
  4131. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  4132. },
  4133. "type": "library",
  4134. "extra": {
  4135. "branch-alias": {
  4136. "dev-master": "2.2.x-dev"
  4137. }
  4138. },
  4139. "autoload": {
  4140. "psr-4": {
  4141. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  4142. }
  4143. },
  4144. "license": [
  4145. "BSD-3-Clause"
  4146. ],
  4147. "authors": [
  4148. {
  4149. "name": "Tijs Verkoyen",
  4150. "email": "css_to_inline_styles@verkoyen.eu",
  4151. "role": "Developer"
  4152. }
  4153. ],
  4154. "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.",
  4155. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  4156. "time": "2023-12-08T13:03:43+00:00"
  4157. },
  4158. {
  4159. "name": "tucker-eric/eloquentfilter",
  4160. "version": "3.2.0",
  4161. "dist": {
  4162. "type": "zip",
  4163. "url": "https://mirrors.cloud.tencent.com/repository/composer/tucker-eric/eloquentfilter/3.2.0/tucker-eric-eloquentfilter-3.2.0.zip",
  4164. "reference": "faaad783b7f23af7ba7e23baaa56d71af51504a9",
  4165. "shasum": ""
  4166. },
  4167. "require": {
  4168. "illuminate/config": "~6.0|~7.0|~8.0|~9.0|~10.0",
  4169. "illuminate/console": "~6.0|~7.0|~8.0|~9.0|~10.0",
  4170. "illuminate/database": "~6.0|~7.0|~8.0|~9.0|~10.0",
  4171. "illuminate/filesystem": "~6.0|~7.0|~8.0|~9.0|~10.0",
  4172. "illuminate/pagination": "~6.0|~7.0|~8.0|~9.0|~10.0",
  4173. "illuminate/support": "~6.0|~7.0|~8.0|~9.0|~10.0",
  4174. "php": ">=7.2"
  4175. },
  4176. "require-dev": {
  4177. "mockery/mockery": "^1.3",
  4178. "phpunit/phpunit": "^8"
  4179. },
  4180. "type": "library",
  4181. "extra": {
  4182. "laravel": {
  4183. "providers": [
  4184. "EloquentFilter\\ServiceProvider"
  4185. ]
  4186. }
  4187. },
  4188. "autoload": {
  4189. "psr-4": {
  4190. "EloquentFilter\\": "src/"
  4191. }
  4192. },
  4193. "license": [
  4194. "MIT"
  4195. ],
  4196. "authors": [
  4197. {
  4198. "name": "Eric Tucker",
  4199. "email": "tucker.ericm@gmail.com"
  4200. }
  4201. ],
  4202. "description": "An Eloquent way to filter Eloquent Models",
  4203. "keywords": [
  4204. "eloquent",
  4205. "filter",
  4206. "laravel",
  4207. "model",
  4208. "query",
  4209. "search"
  4210. ],
  4211. "time": "2023-02-07T18:34:53+00:00"
  4212. },
  4213. {
  4214. "name": "vlucas/phpdotenv",
  4215. "version": "v5.6.0",
  4216. "dist": {
  4217. "type": "zip",
  4218. "url": "https://mirrors.tencent.com/repository/composer/vlucas/phpdotenv/v5.6.0/vlucas-phpdotenv-v5.6.0.zip",
  4219. "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
  4220. "shasum": ""
  4221. },
  4222. "require": {
  4223. "ext-pcre": "*",
  4224. "graham-campbell/result-type": "^1.1.2",
  4225. "php": "^7.2.5 || ^8.0",
  4226. "phpoption/phpoption": "^1.9.2",
  4227. "symfony/polyfill-ctype": "^1.24",
  4228. "symfony/polyfill-mbstring": "^1.24",
  4229. "symfony/polyfill-php80": "^1.24"
  4230. },
  4231. "require-dev": {
  4232. "bamarni/composer-bin-plugin": "^1.8.2",
  4233. "ext-filter": "*",
  4234. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  4235. },
  4236. "suggest": {
  4237. "ext-filter": "Required to use the boolean validator."
  4238. },
  4239. "type": "library",
  4240. "extra": {
  4241. "bamarni-bin": {
  4242. "bin-links": true,
  4243. "forward-command": true
  4244. },
  4245. "branch-alias": {
  4246. "dev-master": "5.6-dev"
  4247. }
  4248. },
  4249. "autoload": {
  4250. "psr-4": {
  4251. "Dotenv\\": "src/"
  4252. }
  4253. },
  4254. "license": [
  4255. "BSD-3-Clause"
  4256. ],
  4257. "authors": [
  4258. {
  4259. "name": "Graham Campbell",
  4260. "email": "hello@gjcampbell.co.uk",
  4261. "homepage": "https://github.com/GrahamCampbell"
  4262. },
  4263. {
  4264. "name": "Vance Lucas",
  4265. "email": "vance@vancelucas.com",
  4266. "homepage": "https://github.com/vlucas"
  4267. }
  4268. ],
  4269. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  4270. "keywords": [
  4271. "dotenv",
  4272. "env",
  4273. "environment"
  4274. ],
  4275. "time": "2023-11-12T22:43:29+00:00"
  4276. },
  4277. {
  4278. "name": "voku/portable-ascii",
  4279. "version": "2.0.1",
  4280. "dist": {
  4281. "type": "zip",
  4282. "url": "https://mirrors.tencent.com/repository/composer/voku/portable-ascii/2.0.1/voku-portable-ascii-2.0.1.zip",
  4283. "reference": "b56450eed252f6801410d810c8e1727224ae0743",
  4284. "shasum": ""
  4285. },
  4286. "require": {
  4287. "php": ">=7.0.0"
  4288. },
  4289. "require-dev": {
  4290. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  4291. },
  4292. "suggest": {
  4293. "ext-intl": "Use Intl for transliterator_transliterate() support"
  4294. },
  4295. "type": "library",
  4296. "autoload": {
  4297. "psr-4": {
  4298. "voku\\": "src/voku/"
  4299. }
  4300. },
  4301. "license": [
  4302. "MIT"
  4303. ],
  4304. "authors": [
  4305. {
  4306. "name": "Lars Moelleken",
  4307. "homepage": "http://www.moelleken.org/"
  4308. }
  4309. ],
  4310. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  4311. "homepage": "https://github.com/voku/portable-ascii",
  4312. "keywords": [
  4313. "ascii",
  4314. "clean",
  4315. "php"
  4316. ],
  4317. "time": "2022-03-08T17:03:00+00:00"
  4318. },
  4319. {
  4320. "name": "webmozart/assert",
  4321. "version": "1.11.0",
  4322. "dist": {
  4323. "type": "zip",
  4324. "url": "https://mirrors.cloud.tencent.com/repository/composer/webmozart/assert/1.11.0/webmozart-assert-1.11.0.zip",
  4325. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  4326. "shasum": ""
  4327. },
  4328. "require": {
  4329. "ext-ctype": "*",
  4330. "php": "^7.2 || ^8.0"
  4331. },
  4332. "conflict": {
  4333. "phpstan/phpstan": "<0.12.20",
  4334. "vimeo/psalm": "<4.6.1 || 4.6.2"
  4335. },
  4336. "require-dev": {
  4337. "phpunit/phpunit": "^8.5.13"
  4338. },
  4339. "type": "library",
  4340. "extra": {
  4341. "branch-alias": {
  4342. "dev-master": "1.10-dev"
  4343. }
  4344. },
  4345. "autoload": {
  4346. "psr-4": {
  4347. "Webmozart\\Assert\\": "src/"
  4348. }
  4349. },
  4350. "license": [
  4351. "MIT"
  4352. ],
  4353. "authors": [
  4354. {
  4355. "name": "Bernhard Schussek",
  4356. "email": "bschussek@gmail.com"
  4357. }
  4358. ],
  4359. "description": "Assertions to validate method input/output with nice error messages.",
  4360. "keywords": [
  4361. "assert",
  4362. "check",
  4363. "validate"
  4364. ],
  4365. "time": "2022-06-03T18:03:27+00:00"
  4366. }
  4367. ],
  4368. "packages-dev": [
  4369. {
  4370. "name": "archtechx/enums",
  4371. "version": "v0.3.2",
  4372. "dist": {
  4373. "type": "zip",
  4374. "url": "https://mirrors.cloud.tencent.com/repository/composer/archtechx/enums/v0.3.2/archtechx-enums-v0.3.2.zip",
  4375. "reference": "475f45e682b0771253707f9403b704759a08da5f",
  4376. "shasum": ""
  4377. },
  4378. "require": {
  4379. "php": "^8.1"
  4380. },
  4381. "require-dev": {
  4382. "nunomaduro/larastan": "^1.0|^2.4",
  4383. "orchestra/testbench": "^6.9|^7.0|^8.0",
  4384. "pestphp/pest": "^1.2|^2.0",
  4385. "pestphp/pest-plugin-laravel": "^1.0|^2.0"
  4386. },
  4387. "type": "library",
  4388. "autoload": {
  4389. "psr-4": {
  4390. "ArchTech\\Enums\\": "src/"
  4391. }
  4392. },
  4393. "license": [
  4394. "MIT"
  4395. ],
  4396. "authors": [
  4397. {
  4398. "name": "Samuel Štancl",
  4399. "email": "samuel@archte.ch"
  4400. }
  4401. ],
  4402. "description": "Helpers for making PHP enums more lovable.",
  4403. "time": "2023-02-15T13:05:41+00:00"
  4404. },
  4405. {
  4406. "name": "composer/semver",
  4407. "version": "3.4.0",
  4408. "dist": {
  4409. "type": "zip",
  4410. "url": "https://mirrors.cloud.tencent.com/repository/composer/composer/semver/3.4.0/composer-semver-3.4.0.zip",
  4411. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32",
  4412. "shasum": ""
  4413. },
  4414. "require": {
  4415. "php": "^5.3.2 || ^7.0 || ^8.0"
  4416. },
  4417. "require-dev": {
  4418. "phpstan/phpstan": "^1.4",
  4419. "symfony/phpunit-bridge": "^4.2 || ^5"
  4420. },
  4421. "type": "library",
  4422. "extra": {
  4423. "branch-alias": {
  4424. "dev-main": "3.x-dev"
  4425. }
  4426. },
  4427. "autoload": {
  4428. "psr-4": {
  4429. "Composer\\Semver\\": "src"
  4430. }
  4431. },
  4432. "license": [
  4433. "MIT"
  4434. ],
  4435. "authors": [
  4436. {
  4437. "name": "Nils Adermann",
  4438. "email": "naderman@naderman.de",
  4439. "homepage": "http://www.naderman.de"
  4440. },
  4441. {
  4442. "name": "Jordi Boggiano",
  4443. "email": "j.boggiano@seld.be",
  4444. "homepage": "http://seld.be"
  4445. },
  4446. {
  4447. "name": "Rob Bast",
  4448. "email": "rob.bast@gmail.com",
  4449. "homepage": "http://robbast.nl"
  4450. }
  4451. ],
  4452. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  4453. "keywords": [
  4454. "semantic",
  4455. "semver",
  4456. "validation",
  4457. "versioning"
  4458. ],
  4459. "time": "2023-08-31T09:50:34+00:00"
  4460. },
  4461. {
  4462. "name": "dragon-code/contracts",
  4463. "version": "2.22.0",
  4464. "dist": {
  4465. "type": "zip",
  4466. "url": "https://mirrors.cloud.tencent.com/repository/composer/dragon-code/contracts/2.22.0/dragon-code-contracts-2.22.0.zip",
  4467. "reference": "5c4a9653dd5985151adcb56790bd56645edddae3",
  4468. "shasum": ""
  4469. },
  4470. "require": {
  4471. "php": "^7.2.5 || ^8.0",
  4472. "psr/http-message": "^1.0.1 || ^2.0",
  4473. "symfony/http-kernel": "^4.0 || ^5.0 || ^6.0 || ^7.0",
  4474. "symfony/polyfill-php80": "^1.23"
  4475. },
  4476. "conflict": {
  4477. "andrey-helldar/contracts": "*"
  4478. },
  4479. "require-dev": {
  4480. "illuminate/database": "^10.0",
  4481. "phpdocumentor/reflection-docblock": "^5.0"
  4482. },
  4483. "type": "library",
  4484. "autoload": {
  4485. "psr-4": {
  4486. "DragonCode\\Contracts\\": "src"
  4487. }
  4488. },
  4489. "license": [
  4490. "MIT"
  4491. ],
  4492. "authors": [
  4493. {
  4494. "name": "Andrey Helldar",
  4495. "email": "helldar@dragon-code.pro",
  4496. "homepage": "https://github.com/andrey-helldar"
  4497. }
  4498. ],
  4499. "description": "A set of contracts for any project",
  4500. "keywords": [
  4501. "contracts",
  4502. "interfaces"
  4503. ],
  4504. "time": "2023-12-09T12:44:43+00:00"
  4505. },
  4506. {
  4507. "name": "dragon-code/pretty-array",
  4508. "version": "v4.1.0",
  4509. "dist": {
  4510. "type": "zip",
  4511. "url": "https://mirrors.cloud.tencent.com/repository/composer/dragon-code/pretty-array/v4.1.0/dragon-code-pretty-array-v4.1.0.zip",
  4512. "reference": "6c84e2454491b414efbd37985c322712cdf9012f",
  4513. "shasum": ""
  4514. },
  4515. "require": {
  4516. "dragon-code/contracts": "^2.20",
  4517. "dragon-code/support": "^6.11.2",
  4518. "ext-dom": "*",
  4519. "ext-mbstring": "*",
  4520. "php": "^8.0"
  4521. },
  4522. "require-dev": {
  4523. "phpunit/phpunit": "^9.6 || ^10.2"
  4524. },
  4525. "suggest": {
  4526. "symfony/thanks": "Give thanks (in the form of a GitHub) to your fellow PHP package maintainers"
  4527. },
  4528. "type": "library",
  4529. "autoload": {
  4530. "psr-4": {
  4531. "DragonCode\\PrettyArray\\": "src"
  4532. }
  4533. },
  4534. "license": [
  4535. "MIT"
  4536. ],
  4537. "authors": [
  4538. {
  4539. "name": "Andrey Helldar",
  4540. "email": "helldar@dragon-code.pro",
  4541. "homepage": "https://github.com/andrey-helldar"
  4542. }
  4543. ],
  4544. "description": "Simple conversion of an array to a pretty view",
  4545. "keywords": [
  4546. "andrey helldar",
  4547. "array",
  4548. "dragon",
  4549. "dragon code",
  4550. "pretty",
  4551. "pretty array"
  4552. ],
  4553. "time": "2023-06-02T11:37:44+00:00"
  4554. },
  4555. {
  4556. "name": "dragon-code/support",
  4557. "version": "6.12.0",
  4558. "dist": {
  4559. "type": "zip",
  4560. "url": "https://mirrors.cloud.tencent.com/repository/composer/dragon-code/support/6.12.0/dragon-code-support-6.12.0.zip",
  4561. "reference": "caee4d59725b1331c9970f57b4f047eab40d8fa0",
  4562. "shasum": ""
  4563. },
  4564. "require": {
  4565. "dragon-code/contracts": "^2.22.0",
  4566. "ext-bcmath": "*",
  4567. "ext-ctype": "*",
  4568. "ext-dom": "*",
  4569. "ext-json": "*",
  4570. "ext-mbstring": "*",
  4571. "php": "^8.0",
  4572. "psr/http-message": "^1.0.1 || ^2.0",
  4573. "symfony/polyfill-php81": "^1.25",
  4574. "voku/portable-ascii": "^1.4.8 || ^2.0.1"
  4575. },
  4576. "conflict": {
  4577. "andrey-helldar/support": "*"
  4578. },
  4579. "require-dev": {
  4580. "illuminate/contracts": "^9.0 || ^10.0",
  4581. "phpunit/phpunit": "^9.6",
  4582. "symfony/var-dumper": "^6.0 || ^7.0"
  4583. },
  4584. "suggest": {
  4585. "dragon-code/laravel-support": "Various helper files for the Laravel and Lumen frameworks",
  4586. "symfony/thanks": "Give thanks (in the form of a GitHub) to your fellow PHP package maintainers"
  4587. },
  4588. "type": "library",
  4589. "extra": {
  4590. "dragon-code": {
  4591. "docs-generator": {
  4592. "preview": {
  4593. "brand": "php",
  4594. "vendor": "The Dragon Code"
  4595. }
  4596. }
  4597. }
  4598. },
  4599. "autoload": {
  4600. "psr-4": {
  4601. "DragonCode\\Support\\": "src"
  4602. }
  4603. },
  4604. "license": [
  4605. "MIT"
  4606. ],
  4607. "authors": [
  4608. {
  4609. "name": "Andrey Helldar",
  4610. "email": "helldar@dragon-code.pro",
  4611. "homepage": "https://github.com/andrey-helldar"
  4612. }
  4613. ],
  4614. "description": "Support package is a collection of helpers and tools for any project.",
  4615. "keywords": [
  4616. "dragon",
  4617. "dragon-code",
  4618. "framework",
  4619. "helper",
  4620. "helpers",
  4621. "laravel",
  4622. "php",
  4623. "support",
  4624. "symfony",
  4625. "yii",
  4626. "yii2"
  4627. ],
  4628. "time": "2023-12-09T12:52:29+00:00"
  4629. },
  4630. {
  4631. "name": "fakerphp/faker",
  4632. "version": "v1.23.1",
  4633. "dist": {
  4634. "type": "zip",
  4635. "url": "https://mirrors.tencent.com/repository/composer/fakerphp/faker/v1.23.1/fakerphp-faker-v1.23.1.zip",
  4636. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b",
  4637. "shasum": ""
  4638. },
  4639. "require": {
  4640. "php": "^7.4 || ^8.0",
  4641. "psr/container": "^1.0 || ^2.0",
  4642. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  4643. },
  4644. "conflict": {
  4645. "fzaninotto/faker": "*"
  4646. },
  4647. "require-dev": {
  4648. "bamarni/composer-bin-plugin": "^1.4.1",
  4649. "doctrine/persistence": "^1.3 || ^2.0",
  4650. "ext-intl": "*",
  4651. "phpunit/phpunit": "^9.5.26",
  4652. "symfony/phpunit-bridge": "^5.4.16"
  4653. },
  4654. "suggest": {
  4655. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  4656. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  4657. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  4658. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  4659. "ext-mbstring": "Required for multibyte Unicode string functionality."
  4660. },
  4661. "type": "library",
  4662. "autoload": {
  4663. "psr-4": {
  4664. "Faker\\": "src/Faker/"
  4665. }
  4666. },
  4667. "license": [
  4668. "MIT"
  4669. ],
  4670. "authors": [
  4671. {
  4672. "name": "François Zaninotto"
  4673. }
  4674. ],
  4675. "description": "Faker is a PHP library that generates fake data for you.",
  4676. "keywords": [
  4677. "data",
  4678. "faker",
  4679. "fixtures"
  4680. ],
  4681. "time": "2024-01-02T13:46:09+00:00"
  4682. },
  4683. {
  4684. "name": "filp/whoops",
  4685. "version": "2.15.4",
  4686. "dist": {
  4687. "type": "zip",
  4688. "url": "https://mirrors.tencent.com/repository/composer/filp/whoops/2.15.4/filp-whoops-2.15.4.zip",
  4689. "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546",
  4690. "shasum": ""
  4691. },
  4692. "require": {
  4693. "php": "^5.5.9 || ^7.0 || ^8.0",
  4694. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  4695. },
  4696. "require-dev": {
  4697. "mockery/mockery": "^0.9 || ^1.0",
  4698. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  4699. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  4700. },
  4701. "suggest": {
  4702. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  4703. "whoops/soap": "Formats errors as SOAP responses"
  4704. },
  4705. "type": "library",
  4706. "extra": {
  4707. "branch-alias": {
  4708. "dev-master": "2.7-dev"
  4709. }
  4710. },
  4711. "autoload": {
  4712. "psr-4": {
  4713. "Whoops\\": "src/Whoops/"
  4714. }
  4715. },
  4716. "license": [
  4717. "MIT"
  4718. ],
  4719. "authors": [
  4720. {
  4721. "name": "Filipe Dobreira",
  4722. "homepage": "https://github.com/filp",
  4723. "role": "Developer"
  4724. }
  4725. ],
  4726. "description": "php error handling for cool kids",
  4727. "homepage": "https://filp.github.io/whoops/",
  4728. "keywords": [
  4729. "error",
  4730. "exception",
  4731. "handling",
  4732. "library",
  4733. "throwable",
  4734. "whoops"
  4735. ],
  4736. "time": "2023-11-03T12:00:00+00:00"
  4737. },
  4738. {
  4739. "name": "hamcrest/hamcrest-php",
  4740. "version": "v2.0.1",
  4741. "dist": {
  4742. "type": "zip",
  4743. "url": "https://mirrors.tencent.com/repository/composer/hamcrest/hamcrest-php/v2.0.1/hamcrest-hamcrest-php-v2.0.1.zip",
  4744. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  4745. "shasum": ""
  4746. },
  4747. "require": {
  4748. "php": "^5.3|^7.0|^8.0"
  4749. },
  4750. "replace": {
  4751. "cordoval/hamcrest-php": "*",
  4752. "davedevelopment/hamcrest-php": "*",
  4753. "kodova/hamcrest-php": "*"
  4754. },
  4755. "require-dev": {
  4756. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  4757. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  4758. },
  4759. "type": "library",
  4760. "extra": {
  4761. "branch-alias": {
  4762. "dev-master": "2.1-dev"
  4763. }
  4764. },
  4765. "autoload": {
  4766. "classmap": [
  4767. "hamcrest"
  4768. ]
  4769. },
  4770. "license": [
  4771. "BSD-3-Clause"
  4772. ],
  4773. "description": "This is the PHP port of Hamcrest Matchers",
  4774. "keywords": [
  4775. "test"
  4776. ],
  4777. "time": "2020-07-09T08:09:16+00:00"
  4778. },
  4779. {
  4780. "name": "laravel-lang/actions",
  4781. "version": "1.4.1",
  4782. "dist": {
  4783. "type": "zip",
  4784. "url": "https://mirrors.cloud.tencent.com/repository/composer/laravel-lang/actions/1.4.1/laravel-lang-actions-1.4.1.zip",
  4785. "reference": "8bf23383a69c13404f9753de4884028e5c4077ce",
  4786. "shasum": ""
  4787. },
  4788. "require": {
  4789. "ext-json": "*",
  4790. "laravel-lang/publisher": "^14.0 || ^15.0 || ^16.0",
  4791. "php": "^8.1"
  4792. },
  4793. "require-dev": {
  4794. "laravel-lang/status-generator": "^2.3.1",
  4795. "phpunit/phpunit": "^10.0",
  4796. "symfony/var-dumper": "^6.3 || ^7.0"
  4797. },
  4798. "type": "library",
  4799. "extra": {
  4800. "laravel": {
  4801. "providers": [
  4802. "LaravelLang\\Actions\\ServiceProvider"
  4803. ]
  4804. }
  4805. },
  4806. "autoload": {
  4807. "psr-4": {
  4808. "LaravelLang\\Actions\\": "src/"
  4809. }
  4810. },
  4811. "license": [
  4812. "MIT"
  4813. ],
  4814. "authors": [
  4815. {
  4816. "name": "Andrey Helldar",
  4817. "email": "helldar@dragon-code.pro",
  4818. "homepage": "https://dragon-code.pro"
  4819. },
  4820. {
  4821. "name": "Laravel Lang Team",
  4822. "homepage": "https://laravel-lang.com"
  4823. }
  4824. ],
  4825. "description": "Translation of buttons and other action elements",
  4826. "keywords": [
  4827. "actions",
  4828. "buttons",
  4829. "lang",
  4830. "languages",
  4831. "laravel",
  4832. "translations"
  4833. ],
  4834. "time": "2024-01-02T09:51:24+00:00"
  4835. },
  4836. {
  4837. "name": "laravel-lang/attributes",
  4838. "version": "2.9.2",
  4839. "dist": {
  4840. "type": "zip",
  4841. "url": "https://mirrors.cloud.tencent.com/repository/composer/laravel-lang/attributes/2.9.2/laravel-lang-attributes-2.9.2.zip",
  4842. "reference": "871cc7aec0aba1e676235605c322903bedc85167",
  4843. "shasum": ""
  4844. },
  4845. "require": {
  4846. "ext-json": "*",
  4847. "laravel-lang/publisher": "^14.0 || ^15.0 || ^16.0",
  4848. "php": "^8.1"
  4849. },
  4850. "require-dev": {
  4851. "laravel-lang/status-generator": "^1.19 || ^2.0",
  4852. "phpunit/phpunit": "^10.0",
  4853. "symfony/var-dumper": "^6.0 || ^7.0"
  4854. },
  4855. "type": "library",
  4856. "extra": {
  4857. "laravel": {
  4858. "providers": [
  4859. "LaravelLang\\Attributes\\ServiceProvider"
  4860. ]
  4861. }
  4862. },
  4863. "autoload": {
  4864. "psr-4": {
  4865. "LaravelLang\\Attributes\\": "src/"
  4866. }
  4867. },
  4868. "license": [
  4869. "MIT"
  4870. ],
  4871. "authors": [
  4872. {
  4873. "name": "Andrey Helldar",
  4874. "email": "helldar@dragon-code.pro"
  4875. },
  4876. {
  4877. "name": "Laravel-Lang Team",
  4878. "homepage": "https://github.com/Laravel-Lang"
  4879. }
  4880. ],
  4881. "description": "List of 126 languages for form field names",
  4882. "keywords": [
  4883. "attributes",
  4884. "fields",
  4885. "form",
  4886. "lang",
  4887. "languages",
  4888. "laravel",
  4889. "messages",
  4890. "translations",
  4891. "validation"
  4892. ],
  4893. "time": "2024-01-13T14:39:47+00:00"
  4894. },
  4895. {
  4896. "name": "laravel-lang/common",
  4897. "version": "6.1.0",
  4898. "dist": {
  4899. "type": "zip",
  4900. "url": "https://mirrors.cloud.tencent.com/repository/composer/laravel-lang/common/6.1.0/laravel-lang-common-6.1.0.zip",
  4901. "reference": "969cf0c8870b4763554ed2b69aab9b1f391f85a4",
  4902. "shasum": ""
  4903. },
  4904. "require": {
  4905. "laravel-lang/actions": "^1.1",
  4906. "laravel-lang/attributes": "^2.7",
  4907. "laravel-lang/http-statuses": "^3.7",
  4908. "laravel-lang/json-fallback": "^2.0",
  4909. "laravel-lang/lang": "^13.12 || ^14.0",
  4910. "laravel-lang/locales": "^2.3",
  4911. "laravel-lang/publisher": "^16.0",
  4912. "php": "^8.1"
  4913. },
  4914. "require-dev": {
  4915. "dragon-code/support": "^6.12",
  4916. "orchestra/testbench": "^8.17",
  4917. "phpunit/phpunit": "^10.5.3",
  4918. "symfony/var-dumper": "^6.4 || ^7.0"
  4919. },
  4920. "type": "library",
  4921. "license": [
  4922. "MIT"
  4923. ],
  4924. "authors": [
  4925. {
  4926. "name": "Laravel-Lang Team",
  4927. "homepage": "https://github.com/Laravel-Lang"
  4928. },
  4929. {
  4930. "name": "Andrey Helldar",
  4931. "email": "helldar@dragon-code.pro",
  4932. "homepage": "https://dragon-code.pro"
  4933. }
  4934. ],
  4935. "description": "Easily connect the necessary language packs to the application",
  4936. "keywords": [
  4937. "Laravel-lang",
  4938. "actions",
  4939. "attribute",
  4940. "attributes",
  4941. "breeze",
  4942. "buttons",
  4943. "cashier",
  4944. "fortify",
  4945. "framework",
  4946. "http",
  4947. "http-status",
  4948. "http-status-code",
  4949. "i18n",
  4950. "jetstream",
  4951. "lang",
  4952. "language",
  4953. "languages",
  4954. "laravel",
  4955. "locale",
  4956. "locales",
  4957. "localization",
  4958. "localizations",
  4959. "nova",
  4960. "publisher",
  4961. "spark",
  4962. "translation",
  4963. "translations",
  4964. "ui"
  4965. ],
  4966. "time": "2023-12-21T13:39:07+00:00"
  4967. },
  4968. {
  4969. "name": "laravel-lang/http-statuses",
  4970. "version": "3.8.0",
  4971. "dist": {
  4972. "type": "zip",
  4973. "url": "https://mirrors.cloud.tencent.com/repository/composer/laravel-lang/http-statuses/3.8.0/laravel-lang-http-statuses-3.8.0.zip",
  4974. "reference": "beb0ee5943bf7a0b811d55851729876d883288a8",
  4975. "shasum": ""
  4976. },
  4977. "require": {
  4978. "ext-json": "*",
  4979. "laravel-lang/publisher": "^14.1 || ^15.0 || ^16.0",
  4980. "php": "^8.1"
  4981. },
  4982. "require-dev": {
  4983. "laravel-lang/status-generator": "^1.19 || ^2.0",
  4984. "phpunit/phpunit": "^10.0",
  4985. "symfony/var-dumper": "^6.0 || ^7.0"
  4986. },
  4987. "type": "library",
  4988. "extra": {
  4989. "laravel": {
  4990. "providers": [
  4991. "LaravelLang\\HttpStatuses\\ServiceProvider"
  4992. ]
  4993. }
  4994. },
  4995. "autoload": {
  4996. "psr-4": {
  4997. "LaravelLang\\HttpStatuses\\": "src"
  4998. }
  4999. },
  5000. "license": [
  5001. "MIT"
  5002. ],
  5003. "authors": [
  5004. {
  5005. "name": "Andrey Helldar",
  5006. "email": "helldar@dragon-code.pro"
  5007. },
  5008. {
  5009. "name": "Laravel-Lang Team",
  5010. "homepage": "https://github.com/Laravel-Lang"
  5011. }
  5012. ],
  5013. "description": "List of 126 languages for HTTP statuses",
  5014. "keywords": [
  5015. "http",
  5016. "lang",
  5017. "languages",
  5018. "laravel",
  5019. "messages",
  5020. "status",
  5021. "translations"
  5022. ],
  5023. "time": "2023-12-30T09:28:20+00:00"
  5024. },
  5025. {
  5026. "name": "laravel-lang/json-fallback",
  5027. "version": "2.0.0",
  5028. "dist": {
  5029. "type": "zip",
  5030. "url": "https://mirrors.cloud.tencent.com/repository/composer/laravel-lang/json-fallback/2.0.0/laravel-lang-json-fallback-2.0.0.zip",
  5031. "reference": "9e8d4495b2bc3a7831439cab49da82dfc837e851",
  5032. "shasum": ""
  5033. },
  5034. "require": {
  5035. "illuminate/support": "^10.0",
  5036. "illuminate/translation": "^10.0",
  5037. "php": "^8.1"
  5038. },
  5039. "require-dev": {
  5040. "orchestra/testbench": "^8.0",
  5041. "phpunit/phpunit": "^10.0"
  5042. },
  5043. "type": "library",
  5044. "autoload": {
  5045. "psr-4": {
  5046. "LaravelLang\\JsonFallback\\": "src"
  5047. }
  5048. },
  5049. "license": [
  5050. "MIT"
  5051. ],
  5052. "authors": [
  5053. {
  5054. "name": "Andrey Helldar",
  5055. "email": "helldar@dragon-code.pro",
  5056. "homepage": "https://github.com/andrey-helldar"
  5057. },
  5058. {
  5059. "name": "Felipe Dsdev",
  5060. "homepage": "https://github.com/felipe-dsdev"
  5061. }
  5062. ],
  5063. "description": "Adds support for fallback JSON string translation",
  5064. "time": "2023-12-16T18:52:42+00:00"
  5065. },
  5066. {
  5067. "name": "laravel-lang/lang",
  5068. "version": "14.2.2",
  5069. "dist": {
  5070. "type": "zip",
  5071. "url": "https://mirrors.cloud.tencent.com/repository/composer/laravel-lang/lang/14.2.2/laravel-lang-lang-14.2.2.zip",
  5072. "reference": "86a7eca3e9d68bef9ce474e0a892afdc1e718c64",
  5073. "shasum": ""
  5074. },
  5075. "require": {
  5076. "ext-json": "*",
  5077. "laravel-lang/publisher": "^14.0 || ^15.0 || ^16.0",
  5078. "php": "^8.1"
  5079. },
  5080. "require-dev": {
  5081. "laravel-lang/status-generator": "^1.19 || ^2.0",
  5082. "phpunit/phpunit": "^10.0",
  5083. "symfony/var-dumper": "^6.0 || ^7.0"
  5084. },
  5085. "type": "library",
  5086. "extra": {
  5087. "laravel": {
  5088. "providers": [
  5089. "LaravelLang\\Lang\\ServiceProvider"
  5090. ]
  5091. }
  5092. },
  5093. "autoload": {
  5094. "psr-4": {
  5095. "LaravelLang\\Lang\\": "src/"
  5096. }
  5097. },
  5098. "license": [
  5099. "MIT"
  5100. ],
  5101. "authors": [
  5102. {
  5103. "name": "Laravel-Lang Team",
  5104. "homepage": "https://github.com/Laravel-Lang"
  5105. }
  5106. ],
  5107. "description": "List of 126 languages for Laravel Framework, Laravel Jetstream, Laravel Fortify, Laravel Breeze, Laravel Cashier, Laravel Nova, Laravel Spark and Laravel UI",
  5108. "keywords": [
  5109. "lang",
  5110. "languages",
  5111. "laravel",
  5112. "lpm"
  5113. ],
  5114. "time": "2024-01-13T02:09:36+00:00"
  5115. },
  5116. {
  5117. "name": "laravel-lang/locale-list",
  5118. "version": "1.2.0",
  5119. "dist": {
  5120. "type": "zip",
  5121. "url": "https://mirrors.cloud.tencent.com/repository/composer/laravel-lang/locale-list/1.2.0/laravel-lang-locale-list-1.2.0.zip",
  5122. "reference": "87fb1a871058c47e63e0399395ea010ded6e8bb2",
  5123. "shasum": ""
  5124. },
  5125. "require": {
  5126. "archtechx/enums": "^0.3.2",
  5127. "php": "^8.1"
  5128. },
  5129. "type": "library",
  5130. "autoload": {
  5131. "psr-4": {
  5132. "LaravelLang\\LocaleList\\": "src/"
  5133. }
  5134. },
  5135. "license": [
  5136. "MIT"
  5137. ],
  5138. "authors": [
  5139. {
  5140. "name": "Andrey Helldar",
  5141. "email": "helldar@dragon-code.pro",
  5142. "homepage": "https://dragon-code.pro"
  5143. },
  5144. {
  5145. "name": "Laravel-Lang Team",
  5146. "homepage": "https://laravel-lang.com"
  5147. }
  5148. ],
  5149. "description": "List of localizations available in Laravel Lang projects",
  5150. "keywords": [
  5151. "Laravel-lang",
  5152. "lang",
  5153. "languages",
  5154. "laravel",
  5155. "locale",
  5156. "locales",
  5157. "localization",
  5158. "translation",
  5159. "translations"
  5160. ],
  5161. "time": "2023-12-29T22:55:57+00:00"
  5162. },
  5163. {
  5164. "name": "laravel-lang/locales",
  5165. "version": "2.4.0",
  5166. "dist": {
  5167. "type": "zip",
  5168. "url": "https://mirrors.cloud.tencent.com/repository/composer/laravel-lang/locales/2.4.0/laravel-lang-locales-2.4.0.zip",
  5169. "reference": "811c4752b33133450e5eafce2d7a92dc505f79a9",
  5170. "shasum": ""
  5171. },
  5172. "require": {
  5173. "archtechx/enums": "^0.3.2",
  5174. "dragon-code/support": "^6.11.3",
  5175. "ext-json": "*",
  5176. "illuminate/collections": "^10.0",
  5177. "laravel-lang/locale-list": "^1.2",
  5178. "laravel-lang/native-country-names": "^1.3",
  5179. "laravel-lang/native-currency-names": "^1.3",
  5180. "laravel-lang/native-locale-names": "^2.2",
  5181. "php": "^8.1"
  5182. },
  5183. "require-dev": {
  5184. "orchestra/testbench": "^8.0",
  5185. "pestphp/pest": "^2.24.1",
  5186. "symfony/var-dumper": "^6.0 || ^7.0"
  5187. },
  5188. "type": "library",
  5189. "extra": {
  5190. "laravel": {
  5191. "providers": [
  5192. "LaravelLang\\Locales\\ServiceProvider"
  5193. ]
  5194. }
  5195. },
  5196. "autoload": {
  5197. "psr-4": {
  5198. "LaravelLang\\Locales\\": "src/"
  5199. }
  5200. },
  5201. "license": [
  5202. "MIT"
  5203. ],
  5204. "authors": [
  5205. {
  5206. "name": "Andrey Helldar",
  5207. "email": "helldar@dragon-code.pro"
  5208. },
  5209. {
  5210. "name": "Laravel-Lang Team",
  5211. "homepage": "https://laravel-lang.com"
  5212. }
  5213. ],
  5214. "description": "Basic functionality for working with localizations",
  5215. "keywords": [
  5216. "laravel",
  5217. "locale",
  5218. "locales",
  5219. "localization",
  5220. "translation",
  5221. "translations"
  5222. ],
  5223. "time": "2023-12-29T23:16:40+00:00"
  5224. },
  5225. {
  5226. "name": "laravel-lang/native-country-names",
  5227. "version": "1.3.0",
  5228. "dist": {
  5229. "type": "zip",
  5230. "url": "https://mirrors.cloud.tencent.com/repository/composer/laravel-lang/native-country-names/1.3.0/laravel-lang-native-country-names-1.3.0.zip",
  5231. "reference": "cea0d0fbb8aeb9c8b426c05796034295c3d1cabb",
  5232. "shasum": ""
  5233. },
  5234. "require": {
  5235. "dragon-code/support": "^6.11",
  5236. "ext-json": "*",
  5237. "illuminate/collections": "^10.0",
  5238. "php": "^8.1"
  5239. },
  5240. "require-dev": {
  5241. "illuminate/support": "^10.0",
  5242. "laravel-lang/locale-list": "^1.2",
  5243. "pestphp/pest": "^2.24.3",
  5244. "punic/punic": "^3.8",
  5245. "symfony/console": "^6.3 || ^7.0",
  5246. "symfony/process": "^6.3 || ^7.0",
  5247. "symfony/var-dumper": "^6.3 || ^7.0",
  5248. "vlucas/phpdotenv": "^5.6"
  5249. },
  5250. "type": "library",
  5251. "autoload": {
  5252. "psr-4": {
  5253. "LaravelLang\\NativeCountryNames\\": "src/"
  5254. }
  5255. },
  5256. "license": [
  5257. "MIT"
  5258. ],
  5259. "authors": [
  5260. {
  5261. "name": "Andrey Helldar",
  5262. "email": "helldar@dragon-code.pro"
  5263. },
  5264. {
  5265. "name": "Laravel-Lang Team",
  5266. "homepage": "https://laravel-lang.com"
  5267. }
  5268. ],
  5269. "description": "The project contains native translations of country names",
  5270. "keywords": [
  5271. "Laravel-lang",
  5272. "countries",
  5273. "country",
  5274. "lang",
  5275. "languages",
  5276. "laravel",
  5277. "locale",
  5278. "locales",
  5279. "localization",
  5280. "territories",
  5281. "territory",
  5282. "translation",
  5283. "translations"
  5284. ],
  5285. "time": "2023-12-29T23:38:20+00:00"
  5286. },
  5287. {
  5288. "name": "laravel-lang/native-currency-names",
  5289. "version": "1.3.0",
  5290. "dist": {
  5291. "type": "zip",
  5292. "url": "https://mirrors.cloud.tencent.com/repository/composer/laravel-lang/native-currency-names/1.3.0/laravel-lang-native-currency-names-1.3.0.zip",
  5293. "reference": "21662cd9f31edf1817439344d5c4519b627679b5",
  5294. "shasum": ""
  5295. },
  5296. "require": {
  5297. "dragon-code/support": "^6.11",
  5298. "ext-json": "*",
  5299. "illuminate/collections": "^10.0",
  5300. "php": "^8.1"
  5301. },
  5302. "require-dev": {
  5303. "illuminate/support": "^10.0",
  5304. "laravel-lang/locale-list": "^1.2",
  5305. "pestphp/pest": "^2.24.3",
  5306. "punic/punic": "^3.8",
  5307. "symfony/console": "^6.3 || ^7.0",
  5308. "symfony/process": "^6.3 || ^7.0",
  5309. "symfony/var-dumper": "^6.3 || ^7.0",
  5310. "vlucas/phpdotenv": "^5.6"
  5311. },
  5312. "type": "library",
  5313. "autoload": {
  5314. "psr-4": {
  5315. "LaravelLang\\NativeCurrencyNames\\": "src/"
  5316. }
  5317. },
  5318. "license": [
  5319. "MIT"
  5320. ],
  5321. "authors": [
  5322. {
  5323. "name": "Andrey Helldar",
  5324. "email": "helldar@dragon-code.pro"
  5325. },
  5326. {
  5327. "name": "Laravel-Lang Team",
  5328. "homepage": "https://laravel-lang.com"
  5329. }
  5330. ],
  5331. "description": "The project contains native translations of currency names",
  5332. "keywords": [
  5333. "Laravel-lang",
  5334. "currency",
  5335. "lang",
  5336. "languages",
  5337. "laravel",
  5338. "locale",
  5339. "locales",
  5340. "localization",
  5341. "translation",
  5342. "translations"
  5343. ],
  5344. "time": "2023-12-29T23:30:58+00:00"
  5345. },
  5346. {
  5347. "name": "laravel-lang/native-locale-names",
  5348. "version": "2.2.0",
  5349. "dist": {
  5350. "type": "zip",
  5351. "url": "https://mirrors.cloud.tencent.com/repository/composer/laravel-lang/native-locale-names/2.2.0/laravel-lang-native-locale-names-2.2.0.zip",
  5352. "reference": "801136e89f76c8b09296288b99fd75740e02ec6a",
  5353. "shasum": ""
  5354. },
  5355. "require": {
  5356. "dragon-code/support": "^6.11",
  5357. "ext-json": "*",
  5358. "php": "^8.1"
  5359. },
  5360. "require-dev": {
  5361. "illuminate/support": "^10.31",
  5362. "laravel-lang/locale-list": "^1.2",
  5363. "pestphp/pest": "^2.24.3",
  5364. "punic/punic": "^3.8",
  5365. "symfony/console": "^6.3 || ^7.0",
  5366. "symfony/process": "^6.3 || ^7.0",
  5367. "symfony/var-dumper": "^6.3 || ^7.0"
  5368. },
  5369. "type": "library",
  5370. "autoload": {
  5371. "psr-4": {
  5372. "LaravelLang\\NativeLocaleNames\\": "src/"
  5373. }
  5374. },
  5375. "license": [
  5376. "MIT"
  5377. ],
  5378. "authors": [
  5379. {
  5380. "name": "Andrey Helldar",
  5381. "email": "helldar@dragon-code.pro"
  5382. },
  5383. {
  5384. "name": "Laravel-Lang Team",
  5385. "homepage": "https://laravel-lang.com"
  5386. }
  5387. ],
  5388. "description": "The project contains native translations of locale names",
  5389. "keywords": [
  5390. "Laravel-lang",
  5391. "lang",
  5392. "languages",
  5393. "laravel",
  5394. "locale",
  5395. "locales",
  5396. "localization",
  5397. "translation",
  5398. "translations"
  5399. ],
  5400. "time": "2023-12-29T23:18:45+00:00"
  5401. },
  5402. {
  5403. "name": "laravel-lang/publisher",
  5404. "version": "16.2.0",
  5405. "dist": {
  5406. "type": "zip",
  5407. "url": "https://mirrors.cloud.tencent.com/repository/composer/laravel-lang/publisher/16.2.0/laravel-lang-publisher-16.2.0.zip",
  5408. "reference": "463bff0a69837274fbdbf1a1d6d508cbf74ffe7d",
  5409. "shasum": ""
  5410. },
  5411. "require": {
  5412. "composer/semver": "^3.4",
  5413. "dragon-code/pretty-array": "^4.1",
  5414. "dragon-code/support": "^6.11.3",
  5415. "ext-json": "*",
  5416. "illuminate/collections": "^10.0",
  5417. "illuminate/console": "^10.0",
  5418. "illuminate/support": "^10.0",
  5419. "laravel-lang/locales": "^2.3",
  5420. "league/commonmark": "^2.4.1",
  5421. "league/config": "^1.2",
  5422. "php": "^8.1"
  5423. },
  5424. "conflict": {
  5425. "laravel-lang/attributes": "<2.0",
  5426. "laravel-lang/http-statuses": "<3.0",
  5427. "laravel-lang/lang": "<11.0"
  5428. },
  5429. "require-dev": {
  5430. "laravel-lang/json-fallback": "^2.0",
  5431. "orchestra/testbench": "^8.14",
  5432. "phpunit/phpunit": "^10.4.2",
  5433. "symfony/var-dumper": "^6.3.6 || ^7.0"
  5434. },
  5435. "type": "library",
  5436. "extra": {
  5437. "laravel": {
  5438. "providers": [
  5439. "LaravelLang\\Publisher\\ServiceProvider"
  5440. ]
  5441. }
  5442. },
  5443. "autoload": {
  5444. "psr-4": {
  5445. "LaravelLang\\Publisher\\": "src/"
  5446. }
  5447. },
  5448. "license": [
  5449. "MIT"
  5450. ],
  5451. "authors": [
  5452. {
  5453. "name": "Andrey Helldar",
  5454. "email": "helldar@dragon-code.pro"
  5455. },
  5456. {
  5457. "name": "Laravel-Lang Team",
  5458. "homepage": "https://laravel-lang.com"
  5459. }
  5460. ],
  5461. "description": "Publisher lang files for the Laravel and Lumen Frameworks, Jetstream, Fortify, Cashier, Spark and Nova from Laravel-Lang/lang",
  5462. "keywords": [
  5463. "Laravel-lang",
  5464. "breeze",
  5465. "cashier",
  5466. "fortify",
  5467. "framework",
  5468. "i18n",
  5469. "jetstream",
  5470. "lang",
  5471. "languages",
  5472. "laravel",
  5473. "locale",
  5474. "locales",
  5475. "localization",
  5476. "localizations",
  5477. "lpm",
  5478. "lumen",
  5479. "nova",
  5480. "publisher",
  5481. "spark",
  5482. "trans",
  5483. "translation",
  5484. "translations",
  5485. "validations"
  5486. ],
  5487. "time": "2023-12-16T18:59:23+00:00"
  5488. },
  5489. {
  5490. "name": "laravel/pint",
  5491. "version": "v1.13.7",
  5492. "dist": {
  5493. "type": "zip",
  5494. "url": "https://mirrors.cloud.tencent.com/repository/composer/laravel/pint/v1.13.7/laravel-pint-v1.13.7.zip",
  5495. "reference": "4157768980dbd977f1c4b4cc94997416d8b30ece",
  5496. "shasum": ""
  5497. },
  5498. "require": {
  5499. "ext-json": "*",
  5500. "ext-mbstring": "*",
  5501. "ext-tokenizer": "*",
  5502. "ext-xml": "*",
  5503. "php": "^8.1.0"
  5504. },
  5505. "require-dev": {
  5506. "friendsofphp/php-cs-fixer": "^3.38.0",
  5507. "illuminate/view": "^10.30.1",
  5508. "laravel-zero/framework": "^10.3.0",
  5509. "mockery/mockery": "^1.6.6",
  5510. "nunomaduro/larastan": "^2.6.4",
  5511. "nunomaduro/termwind": "^1.15.1",
  5512. "pestphp/pest": "^2.24.2"
  5513. },
  5514. "bin": [
  5515. "builds/pint"
  5516. ],
  5517. "type": "project",
  5518. "autoload": {
  5519. "psr-4": {
  5520. "App\\": "app/",
  5521. "Database\\Seeders\\": "database/seeders/",
  5522. "Database\\Factories\\": "database/factories/"
  5523. }
  5524. },
  5525. "license": [
  5526. "MIT"
  5527. ],
  5528. "authors": [
  5529. {
  5530. "name": "Nuno Maduro",
  5531. "email": "enunomaduro@gmail.com"
  5532. }
  5533. ],
  5534. "description": "An opinionated code formatter for PHP.",
  5535. "homepage": "https://laravel.com",
  5536. "keywords": [
  5537. "format",
  5538. "formatter",
  5539. "lint",
  5540. "linter",
  5541. "php"
  5542. ],
  5543. "time": "2023-12-05T19:43:12+00:00"
  5544. },
  5545. {
  5546. "name": "laravel/sail",
  5547. "version": "v1.26.3",
  5548. "dist": {
  5549. "type": "zip",
  5550. "url": "https://mirrors.cloud.tencent.com/repository/composer/laravel/sail/v1.26.3/laravel-sail-v1.26.3.zip",
  5551. "reference": "fa1ad5fbb03686dfc752bfd1861d86091cc1c32d",
  5552. "shasum": ""
  5553. },
  5554. "require": {
  5555. "illuminate/console": "^9.0|^10.0|^11.0",
  5556. "illuminate/contracts": "^9.0|^10.0|^11.0",
  5557. "illuminate/support": "^9.0|^10.0|^11.0",
  5558. "php": "^8.0",
  5559. "symfony/yaml": "^6.0|^7.0"
  5560. },
  5561. "require-dev": {
  5562. "orchestra/testbench": "^7.0|^8.0|^9.0",
  5563. "phpstan/phpstan": "^1.10"
  5564. },
  5565. "bin": [
  5566. "bin/sail"
  5567. ],
  5568. "type": "library",
  5569. "extra": {
  5570. "branch-alias": {
  5571. "dev-master": "1.x-dev"
  5572. },
  5573. "laravel": {
  5574. "providers": [
  5575. "Laravel\\Sail\\SailServiceProvider"
  5576. ]
  5577. }
  5578. },
  5579. "autoload": {
  5580. "psr-4": {
  5581. "Laravel\\Sail\\": "src/"
  5582. }
  5583. },
  5584. "license": [
  5585. "MIT"
  5586. ],
  5587. "authors": [
  5588. {
  5589. "name": "Taylor Otwell",
  5590. "email": "taylor@laravel.com"
  5591. }
  5592. ],
  5593. "description": "Docker files for running a basic Laravel application.",
  5594. "keywords": [
  5595. "docker",
  5596. "laravel"
  5597. ],
  5598. "time": "2023-12-02T18:26:39+00:00"
  5599. },
  5600. {
  5601. "name": "mockery/mockery",
  5602. "version": "1.6.7",
  5603. "dist": {
  5604. "type": "zip",
  5605. "url": "https://mirrors.tencent.com/repository/composer/mockery/mockery/1.6.7/mockery-mockery-1.6.7.zip",
  5606. "reference": "0cc058854b3195ba21dc6b1f7b1f60f4ef3a9c06",
  5607. "shasum": ""
  5608. },
  5609. "require": {
  5610. "hamcrest/hamcrest-php": "^2.0.1",
  5611. "lib-pcre": ">=7.0",
  5612. "php": ">=7.3"
  5613. },
  5614. "conflict": {
  5615. "phpunit/phpunit": "<8.0"
  5616. },
  5617. "require-dev": {
  5618. "phpunit/phpunit": "^8.5 || ^9.6.10",
  5619. "symplify/easy-coding-standard": "^12.0.8"
  5620. },
  5621. "type": "library",
  5622. "autoload": {
  5623. "files": [
  5624. "library/helpers.php",
  5625. "library/Mockery.php"
  5626. ],
  5627. "psr-4": {
  5628. "Mockery\\": "library/Mockery"
  5629. }
  5630. },
  5631. "license": [
  5632. "BSD-3-Clause"
  5633. ],
  5634. "authors": [
  5635. {
  5636. "name": "Pádraic Brady",
  5637. "email": "padraic.brady@gmail.com",
  5638. "homepage": "https://github.com/padraic",
  5639. "role": "Author"
  5640. },
  5641. {
  5642. "name": "Dave Marshall",
  5643. "email": "dave.marshall@atstsolutions.co.uk",
  5644. "homepage": "https://davedevelopment.co.uk",
  5645. "role": "Developer"
  5646. },
  5647. {
  5648. "name": "Nathanael Esayeas",
  5649. "email": "nathanael.esayeas@protonmail.com",
  5650. "homepage": "https://github.com/ghostwriter",
  5651. "role": "Lead Developer"
  5652. }
  5653. ],
  5654. "description": "Mockery is a simple yet flexible PHP mock object framework",
  5655. "homepage": "https://github.com/mockery/mockery",
  5656. "keywords": [
  5657. "BDD",
  5658. "TDD",
  5659. "library",
  5660. "mock",
  5661. "mock objects",
  5662. "mockery",
  5663. "stub",
  5664. "test",
  5665. "test double",
  5666. "testing"
  5667. ],
  5668. "time": "2023-12-10T02:24:34+00:00"
  5669. },
  5670. {
  5671. "name": "myclabs/deep-copy",
  5672. "version": "1.11.1",
  5673. "dist": {
  5674. "type": "zip",
  5675. "url": "https://mirrors.tencent.com/repository/composer/myclabs/deep-copy/1.11.1/myclabs-deep-copy-1.11.1.zip",
  5676. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  5677. "shasum": ""
  5678. },
  5679. "require": {
  5680. "php": "^7.1 || ^8.0"
  5681. },
  5682. "conflict": {
  5683. "doctrine/collections": "<1.6.8",
  5684. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  5685. },
  5686. "require-dev": {
  5687. "doctrine/collections": "^1.6.8",
  5688. "doctrine/common": "^2.13.3 || ^3.2.2",
  5689. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  5690. },
  5691. "type": "library",
  5692. "autoload": {
  5693. "files": [
  5694. "src/DeepCopy/deep_copy.php"
  5695. ],
  5696. "psr-4": {
  5697. "DeepCopy\\": "src/DeepCopy/"
  5698. }
  5699. },
  5700. "license": [
  5701. "MIT"
  5702. ],
  5703. "description": "Create deep copies (clones) of your objects",
  5704. "keywords": [
  5705. "clone",
  5706. "copy",
  5707. "duplicate",
  5708. "object",
  5709. "object graph"
  5710. ],
  5711. "time": "2023-03-08T13:26:56+00:00"
  5712. },
  5713. {
  5714. "name": "nunomaduro/collision",
  5715. "version": "v7.10.0",
  5716. "dist": {
  5717. "type": "zip",
  5718. "url": "https://mirrors.tencent.com/repository/composer/nunomaduro/collision/v7.10.0/nunomaduro-collision-v7.10.0.zip",
  5719. "reference": "49ec67fa7b002712da8526678abd651c09f375b2",
  5720. "shasum": ""
  5721. },
  5722. "require": {
  5723. "filp/whoops": "^2.15.3",
  5724. "nunomaduro/termwind": "^1.15.1",
  5725. "php": "^8.1.0",
  5726. "symfony/console": "^6.3.4"
  5727. },
  5728. "conflict": {
  5729. "laravel/framework": ">=11.0.0"
  5730. },
  5731. "require-dev": {
  5732. "brianium/paratest": "^7.3.0",
  5733. "laravel/framework": "^10.28.0",
  5734. "laravel/pint": "^1.13.3",
  5735. "laravel/sail": "^1.25.0",
  5736. "laravel/sanctum": "^3.3.1",
  5737. "laravel/tinker": "^2.8.2",
  5738. "nunomaduro/larastan": "^2.6.4",
  5739. "orchestra/testbench-core": "^8.13.0",
  5740. "pestphp/pest": "^2.23.2",
  5741. "phpunit/phpunit": "^10.4.1",
  5742. "sebastian/environment": "^6.0.1",
  5743. "spatie/laravel-ignition": "^2.3.1"
  5744. },
  5745. "type": "library",
  5746. "extra": {
  5747. "laravel": {
  5748. "providers": [
  5749. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  5750. ]
  5751. }
  5752. },
  5753. "autoload": {
  5754. "files": [
  5755. "./src/Adapters/Phpunit/Autoload.php"
  5756. ],
  5757. "psr-4": {
  5758. "NunoMaduro\\Collision\\": "src/"
  5759. }
  5760. },
  5761. "license": [
  5762. "MIT"
  5763. ],
  5764. "authors": [
  5765. {
  5766. "name": "Nuno Maduro",
  5767. "email": "enunomaduro@gmail.com"
  5768. }
  5769. ],
  5770. "description": "Cli error handling for console/command-line PHP applications.",
  5771. "keywords": [
  5772. "artisan",
  5773. "cli",
  5774. "command-line",
  5775. "console",
  5776. "error",
  5777. "handling",
  5778. "laravel",
  5779. "laravel-zero",
  5780. "php",
  5781. "symfony"
  5782. ],
  5783. "time": "2023-10-11T15:45:01+00:00"
  5784. },
  5785. {
  5786. "name": "phar-io/manifest",
  5787. "version": "2.0.3",
  5788. "dist": {
  5789. "type": "zip",
  5790. "url": "https://mirrors.tencent.com/repository/composer/phar-io/manifest/2.0.3/phar-io-manifest-2.0.3.zip",
  5791. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  5792. "shasum": ""
  5793. },
  5794. "require": {
  5795. "ext-dom": "*",
  5796. "ext-phar": "*",
  5797. "ext-xmlwriter": "*",
  5798. "phar-io/version": "^3.0.1",
  5799. "php": "^7.2 || ^8.0"
  5800. },
  5801. "type": "library",
  5802. "extra": {
  5803. "branch-alias": {
  5804. "dev-master": "2.0.x-dev"
  5805. }
  5806. },
  5807. "autoload": {
  5808. "classmap": [
  5809. "src/"
  5810. ]
  5811. },
  5812. "license": [
  5813. "BSD-3-Clause"
  5814. ],
  5815. "authors": [
  5816. {
  5817. "name": "Arne Blankerts",
  5818. "email": "arne@blankerts.de",
  5819. "role": "Developer"
  5820. },
  5821. {
  5822. "name": "Sebastian Heuer",
  5823. "email": "sebastian@phpeople.de",
  5824. "role": "Developer"
  5825. },
  5826. {
  5827. "name": "Sebastian Bergmann",
  5828. "email": "sebastian@phpunit.de",
  5829. "role": "Developer"
  5830. }
  5831. ],
  5832. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  5833. "time": "2021-07-20T11:28:43+00:00"
  5834. },
  5835. {
  5836. "name": "phar-io/version",
  5837. "version": "3.2.1",
  5838. "dist": {
  5839. "type": "zip",
  5840. "url": "https://mirrors.tencent.com/repository/composer/phar-io/version/3.2.1/phar-io-version-3.2.1.zip",
  5841. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  5842. "shasum": ""
  5843. },
  5844. "require": {
  5845. "php": "^7.2 || ^8.0"
  5846. },
  5847. "type": "library",
  5848. "autoload": {
  5849. "classmap": [
  5850. "src/"
  5851. ]
  5852. },
  5853. "license": [
  5854. "BSD-3-Clause"
  5855. ],
  5856. "authors": [
  5857. {
  5858. "name": "Arne Blankerts",
  5859. "email": "arne@blankerts.de",
  5860. "role": "Developer"
  5861. },
  5862. {
  5863. "name": "Sebastian Heuer",
  5864. "email": "sebastian@phpeople.de",
  5865. "role": "Developer"
  5866. },
  5867. {
  5868. "name": "Sebastian Bergmann",
  5869. "email": "sebastian@phpunit.de",
  5870. "role": "Developer"
  5871. }
  5872. ],
  5873. "description": "Library for handling version information and constraints",
  5874. "time": "2022-02-21T01:04:05+00:00"
  5875. },
  5876. {
  5877. "name": "phpunit/php-code-coverage",
  5878. "version": "10.1.11",
  5879. "dist": {
  5880. "type": "zip",
  5881. "url": "https://mirrors.cloud.tencent.com/repository/composer/phpunit/php-code-coverage/10.1.11/phpunit-php-code-coverage-10.1.11.zip",
  5882. "reference": "78c3b7625965c2513ee96569a4dbb62601784145",
  5883. "shasum": ""
  5884. },
  5885. "require": {
  5886. "ext-dom": "*",
  5887. "ext-libxml": "*",
  5888. "ext-xmlwriter": "*",
  5889. "nikic/php-parser": "^4.18 || ^5.0",
  5890. "php": ">=8.1",
  5891. "phpunit/php-file-iterator": "^4.0",
  5892. "phpunit/php-text-template": "^3.0",
  5893. "sebastian/code-unit-reverse-lookup": "^3.0",
  5894. "sebastian/complexity": "^3.0",
  5895. "sebastian/environment": "^6.0",
  5896. "sebastian/lines-of-code": "^2.0",
  5897. "sebastian/version": "^4.0",
  5898. "theseer/tokenizer": "^1.2.0"
  5899. },
  5900. "require-dev": {
  5901. "phpunit/phpunit": "^10.1"
  5902. },
  5903. "suggest": {
  5904. "ext-pcov": "PHP extension that provides line coverage",
  5905. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  5906. },
  5907. "type": "library",
  5908. "extra": {
  5909. "branch-alias": {
  5910. "dev-main": "10.1-dev"
  5911. }
  5912. },
  5913. "autoload": {
  5914. "classmap": [
  5915. "src/"
  5916. ]
  5917. },
  5918. "license": [
  5919. "BSD-3-Clause"
  5920. ],
  5921. "authors": [
  5922. {
  5923. "name": "Sebastian Bergmann",
  5924. "email": "sebastian@phpunit.de",
  5925. "role": "lead"
  5926. }
  5927. ],
  5928. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  5929. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  5930. "keywords": [
  5931. "coverage",
  5932. "testing",
  5933. "xunit"
  5934. ],
  5935. "time": "2023-12-21T15:38:30+00:00"
  5936. },
  5937. {
  5938. "name": "phpunit/php-file-iterator",
  5939. "version": "4.1.0",
  5940. "dist": {
  5941. "type": "zip",
  5942. "url": "https://mirrors.tencent.com/repository/composer/phpunit/php-file-iterator/4.1.0/phpunit-php-file-iterator-4.1.0.zip",
  5943. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  5944. "shasum": ""
  5945. },
  5946. "require": {
  5947. "php": ">=8.1"
  5948. },
  5949. "require-dev": {
  5950. "phpunit/phpunit": "^10.0"
  5951. },
  5952. "type": "library",
  5953. "extra": {
  5954. "branch-alias": {
  5955. "dev-main": "4.0-dev"
  5956. }
  5957. },
  5958. "autoload": {
  5959. "classmap": [
  5960. "src/"
  5961. ]
  5962. },
  5963. "license": [
  5964. "BSD-3-Clause"
  5965. ],
  5966. "authors": [
  5967. {
  5968. "name": "Sebastian Bergmann",
  5969. "email": "sebastian@phpunit.de",
  5970. "role": "lead"
  5971. }
  5972. ],
  5973. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  5974. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  5975. "keywords": [
  5976. "filesystem",
  5977. "iterator"
  5978. ],
  5979. "time": "2023-08-31T06:24:48+00:00"
  5980. },
  5981. {
  5982. "name": "phpunit/php-invoker",
  5983. "version": "4.0.0",
  5984. "dist": {
  5985. "type": "zip",
  5986. "url": "https://mirrors.tencent.com/repository/composer/phpunit/php-invoker/4.0.0/phpunit-php-invoker-4.0.0.zip",
  5987. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  5988. "shasum": ""
  5989. },
  5990. "require": {
  5991. "php": ">=8.1"
  5992. },
  5993. "require-dev": {
  5994. "ext-pcntl": "*",
  5995. "phpunit/phpunit": "^10.0"
  5996. },
  5997. "suggest": {
  5998. "ext-pcntl": "*"
  5999. },
  6000. "type": "library",
  6001. "extra": {
  6002. "branch-alias": {
  6003. "dev-main": "4.0-dev"
  6004. }
  6005. },
  6006. "autoload": {
  6007. "classmap": [
  6008. "src/"
  6009. ]
  6010. },
  6011. "license": [
  6012. "BSD-3-Clause"
  6013. ],
  6014. "authors": [
  6015. {
  6016. "name": "Sebastian Bergmann",
  6017. "email": "sebastian@phpunit.de",
  6018. "role": "lead"
  6019. }
  6020. ],
  6021. "description": "Invoke callables with a timeout",
  6022. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  6023. "keywords": [
  6024. "process"
  6025. ],
  6026. "time": "2023-02-03T06:56:09+00:00"
  6027. },
  6028. {
  6029. "name": "phpunit/php-text-template",
  6030. "version": "3.0.1",
  6031. "dist": {
  6032. "type": "zip",
  6033. "url": "https://mirrors.cloud.tencent.com/repository/composer/phpunit/php-text-template/3.0.1/phpunit-php-text-template-3.0.1.zip",
  6034. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  6035. "shasum": ""
  6036. },
  6037. "require": {
  6038. "php": ">=8.1"
  6039. },
  6040. "require-dev": {
  6041. "phpunit/phpunit": "^10.0"
  6042. },
  6043. "type": "library",
  6044. "extra": {
  6045. "branch-alias": {
  6046. "dev-main": "3.0-dev"
  6047. }
  6048. },
  6049. "autoload": {
  6050. "classmap": [
  6051. "src/"
  6052. ]
  6053. },
  6054. "license": [
  6055. "BSD-3-Clause"
  6056. ],
  6057. "authors": [
  6058. {
  6059. "name": "Sebastian Bergmann",
  6060. "email": "sebastian@phpunit.de",
  6061. "role": "lead"
  6062. }
  6063. ],
  6064. "description": "Simple template engine.",
  6065. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  6066. "keywords": [
  6067. "template"
  6068. ],
  6069. "time": "2023-08-31T14:07:24+00:00"
  6070. },
  6071. {
  6072. "name": "phpunit/php-timer",
  6073. "version": "6.0.0",
  6074. "dist": {
  6075. "type": "zip",
  6076. "url": "https://mirrors.cloud.tencent.com/repository/composer/phpunit/php-timer/6.0.0/phpunit-php-timer-6.0.0.zip",
  6077. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  6078. "shasum": ""
  6079. },
  6080. "require": {
  6081. "php": ">=8.1"
  6082. },
  6083. "require-dev": {
  6084. "phpunit/phpunit": "^10.0"
  6085. },
  6086. "type": "library",
  6087. "extra": {
  6088. "branch-alias": {
  6089. "dev-main": "6.0-dev"
  6090. }
  6091. },
  6092. "autoload": {
  6093. "classmap": [
  6094. "src/"
  6095. ]
  6096. },
  6097. "license": [
  6098. "BSD-3-Clause"
  6099. ],
  6100. "authors": [
  6101. {
  6102. "name": "Sebastian Bergmann",
  6103. "email": "sebastian@phpunit.de",
  6104. "role": "lead"
  6105. }
  6106. ],
  6107. "description": "Utility class for timing",
  6108. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  6109. "keywords": [
  6110. "timer"
  6111. ],
  6112. "time": "2023-02-03T06:57:52+00:00"
  6113. },
  6114. {
  6115. "name": "phpunit/phpunit",
  6116. "version": "10.5.5",
  6117. "dist": {
  6118. "type": "zip",
  6119. "url": "https://mirrors.tencent.com/repository/composer/phpunit/phpunit/10.5.5/phpunit-phpunit-10.5.5.zip",
  6120. "reference": "ed21115d505b4b4f7dc7b5651464e19a2c7f7856",
  6121. "shasum": ""
  6122. },
  6123. "require": {
  6124. "ext-dom": "*",
  6125. "ext-json": "*",
  6126. "ext-libxml": "*",
  6127. "ext-mbstring": "*",
  6128. "ext-xml": "*",
  6129. "ext-xmlwriter": "*",
  6130. "myclabs/deep-copy": "^1.10.1",
  6131. "phar-io/manifest": "^2.0.3",
  6132. "phar-io/version": "^3.0.2",
  6133. "php": ">=8.1",
  6134. "phpunit/php-code-coverage": "^10.1.5",
  6135. "phpunit/php-file-iterator": "^4.0",
  6136. "phpunit/php-invoker": "^4.0",
  6137. "phpunit/php-text-template": "^3.0",
  6138. "phpunit/php-timer": "^6.0",
  6139. "sebastian/cli-parser": "^2.0",
  6140. "sebastian/code-unit": "^2.0",
  6141. "sebastian/comparator": "^5.0",
  6142. "sebastian/diff": "^5.0",
  6143. "sebastian/environment": "^6.0",
  6144. "sebastian/exporter": "^5.1",
  6145. "sebastian/global-state": "^6.0.1",
  6146. "sebastian/object-enumerator": "^5.0",
  6147. "sebastian/recursion-context": "^5.0",
  6148. "sebastian/type": "^4.0",
  6149. "sebastian/version": "^4.0"
  6150. },
  6151. "suggest": {
  6152. "ext-soap": "To be able to generate mocks based on WSDL files"
  6153. },
  6154. "bin": [
  6155. "phpunit"
  6156. ],
  6157. "type": "library",
  6158. "extra": {
  6159. "branch-alias": {
  6160. "dev-main": "10.5-dev"
  6161. }
  6162. },
  6163. "autoload": {
  6164. "files": [
  6165. "src/Framework/Assert/Functions.php"
  6166. ],
  6167. "classmap": [
  6168. "src/"
  6169. ]
  6170. },
  6171. "license": [
  6172. "BSD-3-Clause"
  6173. ],
  6174. "authors": [
  6175. {
  6176. "name": "Sebastian Bergmann",
  6177. "email": "sebastian@phpunit.de",
  6178. "role": "lead"
  6179. }
  6180. ],
  6181. "description": "The PHP Unit Testing framework.",
  6182. "homepage": "https://phpunit.de/",
  6183. "keywords": [
  6184. "phpunit",
  6185. "testing",
  6186. "xunit"
  6187. ],
  6188. "time": "2023-12-27T15:13:52+00:00"
  6189. },
  6190. {
  6191. "name": "sebastian/cli-parser",
  6192. "version": "2.0.0",
  6193. "dist": {
  6194. "type": "zip",
  6195. "url": "https://mirrors.tencent.com/repository/composer/sebastian/cli-parser/2.0.0/sebastian-cli-parser-2.0.0.zip",
  6196. "reference": "efdc130dbbbb8ef0b545a994fd811725c5282cae",
  6197. "shasum": ""
  6198. },
  6199. "require": {
  6200. "php": ">=8.1"
  6201. },
  6202. "require-dev": {
  6203. "phpunit/phpunit": "^10.0"
  6204. },
  6205. "type": "library",
  6206. "extra": {
  6207. "branch-alias": {
  6208. "dev-main": "2.0-dev"
  6209. }
  6210. },
  6211. "autoload": {
  6212. "classmap": [
  6213. "src/"
  6214. ]
  6215. },
  6216. "license": [
  6217. "BSD-3-Clause"
  6218. ],
  6219. "authors": [
  6220. {
  6221. "name": "Sebastian Bergmann",
  6222. "email": "sebastian@phpunit.de",
  6223. "role": "lead"
  6224. }
  6225. ],
  6226. "description": "Library for parsing CLI options",
  6227. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  6228. "time": "2023-02-03T06:58:15+00:00"
  6229. },
  6230. {
  6231. "name": "sebastian/code-unit",
  6232. "version": "2.0.0",
  6233. "dist": {
  6234. "type": "zip",
  6235. "url": "https://mirrors.tencent.com/repository/composer/sebastian/code-unit/2.0.0/sebastian-code-unit-2.0.0.zip",
  6236. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  6237. "shasum": ""
  6238. },
  6239. "require": {
  6240. "php": ">=8.1"
  6241. },
  6242. "require-dev": {
  6243. "phpunit/phpunit": "^10.0"
  6244. },
  6245. "type": "library",
  6246. "extra": {
  6247. "branch-alias": {
  6248. "dev-main": "2.0-dev"
  6249. }
  6250. },
  6251. "autoload": {
  6252. "classmap": [
  6253. "src/"
  6254. ]
  6255. },
  6256. "license": [
  6257. "BSD-3-Clause"
  6258. ],
  6259. "authors": [
  6260. {
  6261. "name": "Sebastian Bergmann",
  6262. "email": "sebastian@phpunit.de",
  6263. "role": "lead"
  6264. }
  6265. ],
  6266. "description": "Collection of value objects that represent the PHP code units",
  6267. "homepage": "https://github.com/sebastianbergmann/code-unit",
  6268. "time": "2023-02-03T06:58:43+00:00"
  6269. },
  6270. {
  6271. "name": "sebastian/code-unit-reverse-lookup",
  6272. "version": "3.0.0",
  6273. "dist": {
  6274. "type": "zip",
  6275. "url": "https://mirrors.tencent.com/repository/composer/sebastian/code-unit-reverse-lookup/3.0.0/sebastian-code-unit-reverse-lookup-3.0.0.zip",
  6276. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  6277. "shasum": ""
  6278. },
  6279. "require": {
  6280. "php": ">=8.1"
  6281. },
  6282. "require-dev": {
  6283. "phpunit/phpunit": "^10.0"
  6284. },
  6285. "type": "library",
  6286. "extra": {
  6287. "branch-alias": {
  6288. "dev-main": "3.0-dev"
  6289. }
  6290. },
  6291. "autoload": {
  6292. "classmap": [
  6293. "src/"
  6294. ]
  6295. },
  6296. "license": [
  6297. "BSD-3-Clause"
  6298. ],
  6299. "authors": [
  6300. {
  6301. "name": "Sebastian Bergmann",
  6302. "email": "sebastian@phpunit.de"
  6303. }
  6304. ],
  6305. "description": "Looks up which function or method a line of code belongs to",
  6306. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  6307. "time": "2023-02-03T06:59:15+00:00"
  6308. },
  6309. {
  6310. "name": "sebastian/comparator",
  6311. "version": "5.0.1",
  6312. "dist": {
  6313. "type": "zip",
  6314. "url": "https://mirrors.tencent.com/repository/composer/sebastian/comparator/5.0.1/sebastian-comparator-5.0.1.zip",
  6315. "reference": "2db5010a484d53ebf536087a70b4a5423c102372",
  6316. "shasum": ""
  6317. },
  6318. "require": {
  6319. "ext-dom": "*",
  6320. "ext-mbstring": "*",
  6321. "php": ">=8.1",
  6322. "sebastian/diff": "^5.0",
  6323. "sebastian/exporter": "^5.0"
  6324. },
  6325. "require-dev": {
  6326. "phpunit/phpunit": "^10.3"
  6327. },
  6328. "type": "library",
  6329. "extra": {
  6330. "branch-alias": {
  6331. "dev-main": "5.0-dev"
  6332. }
  6333. },
  6334. "autoload": {
  6335. "classmap": [
  6336. "src/"
  6337. ]
  6338. },
  6339. "license": [
  6340. "BSD-3-Clause"
  6341. ],
  6342. "authors": [
  6343. {
  6344. "name": "Sebastian Bergmann",
  6345. "email": "sebastian@phpunit.de"
  6346. },
  6347. {
  6348. "name": "Jeff Welch",
  6349. "email": "whatthejeff@gmail.com"
  6350. },
  6351. {
  6352. "name": "Volker Dusch",
  6353. "email": "github@wallbash.com"
  6354. },
  6355. {
  6356. "name": "Bernhard Schussek",
  6357. "email": "bschussek@2bepublished.at"
  6358. }
  6359. ],
  6360. "description": "Provides the functionality to compare PHP values for equality",
  6361. "homepage": "https://github.com/sebastianbergmann/comparator",
  6362. "keywords": [
  6363. "comparator",
  6364. "compare",
  6365. "equality"
  6366. ],
  6367. "time": "2023-08-14T13:18:12+00:00"
  6368. },
  6369. {
  6370. "name": "sebastian/complexity",
  6371. "version": "3.2.0",
  6372. "dist": {
  6373. "type": "zip",
  6374. "url": "https://mirrors.tencent.com/repository/composer/sebastian/complexity/3.2.0/sebastian-complexity-3.2.0.zip",
  6375. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  6376. "shasum": ""
  6377. },
  6378. "require": {
  6379. "nikic/php-parser": "^4.18 || ^5.0",
  6380. "php": ">=8.1"
  6381. },
  6382. "require-dev": {
  6383. "phpunit/phpunit": "^10.0"
  6384. },
  6385. "type": "library",
  6386. "extra": {
  6387. "branch-alias": {
  6388. "dev-main": "3.2-dev"
  6389. }
  6390. },
  6391. "autoload": {
  6392. "classmap": [
  6393. "src/"
  6394. ]
  6395. },
  6396. "license": [
  6397. "BSD-3-Clause"
  6398. ],
  6399. "authors": [
  6400. {
  6401. "name": "Sebastian Bergmann",
  6402. "email": "sebastian@phpunit.de",
  6403. "role": "lead"
  6404. }
  6405. ],
  6406. "description": "Library for calculating the complexity of PHP code units",
  6407. "homepage": "https://github.com/sebastianbergmann/complexity",
  6408. "time": "2023-12-21T08:37:17+00:00"
  6409. },
  6410. {
  6411. "name": "sebastian/diff",
  6412. "version": "5.1.0",
  6413. "dist": {
  6414. "type": "zip",
  6415. "url": "https://mirrors.cloud.tencent.com/repository/composer/sebastian/diff/5.1.0/sebastian-diff-5.1.0.zip",
  6416. "reference": "fbf413a49e54f6b9b17e12d900ac7f6101591b7f",
  6417. "shasum": ""
  6418. },
  6419. "require": {
  6420. "php": ">=8.1"
  6421. },
  6422. "require-dev": {
  6423. "phpunit/phpunit": "^10.0",
  6424. "symfony/process": "^4.2 || ^5"
  6425. },
  6426. "type": "library",
  6427. "extra": {
  6428. "branch-alias": {
  6429. "dev-main": "5.1-dev"
  6430. }
  6431. },
  6432. "autoload": {
  6433. "classmap": [
  6434. "src/"
  6435. ]
  6436. },
  6437. "license": [
  6438. "BSD-3-Clause"
  6439. ],
  6440. "authors": [
  6441. {
  6442. "name": "Sebastian Bergmann",
  6443. "email": "sebastian@phpunit.de"
  6444. },
  6445. {
  6446. "name": "Kore Nordmann",
  6447. "email": "mail@kore-nordmann.de"
  6448. }
  6449. ],
  6450. "description": "Diff implementation",
  6451. "homepage": "https://github.com/sebastianbergmann/diff",
  6452. "keywords": [
  6453. "diff",
  6454. "udiff",
  6455. "unidiff",
  6456. "unified diff"
  6457. ],
  6458. "time": "2023-12-22T10:55:06+00:00"
  6459. },
  6460. {
  6461. "name": "sebastian/environment",
  6462. "version": "6.0.1",
  6463. "dist": {
  6464. "type": "zip",
  6465. "url": "https://mirrors.cloud.tencent.com/repository/composer/sebastian/environment/6.0.1/sebastian-environment-6.0.1.zip",
  6466. "reference": "43c751b41d74f96cbbd4e07b7aec9675651e2951",
  6467. "shasum": ""
  6468. },
  6469. "require": {
  6470. "php": ">=8.1"
  6471. },
  6472. "require-dev": {
  6473. "phpunit/phpunit": "^10.0"
  6474. },
  6475. "suggest": {
  6476. "ext-posix": "*"
  6477. },
  6478. "type": "library",
  6479. "extra": {
  6480. "branch-alias": {
  6481. "dev-main": "6.0-dev"
  6482. }
  6483. },
  6484. "autoload": {
  6485. "classmap": [
  6486. "src/"
  6487. ]
  6488. },
  6489. "license": [
  6490. "BSD-3-Clause"
  6491. ],
  6492. "authors": [
  6493. {
  6494. "name": "Sebastian Bergmann",
  6495. "email": "sebastian@phpunit.de"
  6496. }
  6497. ],
  6498. "description": "Provides functionality to handle HHVM/PHP environments",
  6499. "homepage": "https://github.com/sebastianbergmann/environment",
  6500. "keywords": [
  6501. "Xdebug",
  6502. "environment",
  6503. "hhvm"
  6504. ],
  6505. "time": "2023-04-11T05:39:26+00:00"
  6506. },
  6507. {
  6508. "name": "sebastian/exporter",
  6509. "version": "5.1.1",
  6510. "dist": {
  6511. "type": "zip",
  6512. "url": "https://mirrors.tencent.com/repository/composer/sebastian/exporter/5.1.1/sebastian-exporter-5.1.1.zip",
  6513. "reference": "64f51654862e0f5e318db7e9dcc2292c63cdbddc",
  6514. "shasum": ""
  6515. },
  6516. "require": {
  6517. "ext-mbstring": "*",
  6518. "php": ">=8.1",
  6519. "sebastian/recursion-context": "^5.0"
  6520. },
  6521. "require-dev": {
  6522. "phpunit/phpunit": "^10.0"
  6523. },
  6524. "type": "library",
  6525. "extra": {
  6526. "branch-alias": {
  6527. "dev-main": "5.1-dev"
  6528. }
  6529. },
  6530. "autoload": {
  6531. "classmap": [
  6532. "src/"
  6533. ]
  6534. },
  6535. "license": [
  6536. "BSD-3-Clause"
  6537. ],
  6538. "authors": [
  6539. {
  6540. "name": "Sebastian Bergmann",
  6541. "email": "sebastian@phpunit.de"
  6542. },
  6543. {
  6544. "name": "Jeff Welch",
  6545. "email": "whatthejeff@gmail.com"
  6546. },
  6547. {
  6548. "name": "Volker Dusch",
  6549. "email": "github@wallbash.com"
  6550. },
  6551. {
  6552. "name": "Adam Harvey",
  6553. "email": "aharvey@php.net"
  6554. },
  6555. {
  6556. "name": "Bernhard Schussek",
  6557. "email": "bschussek@gmail.com"
  6558. }
  6559. ],
  6560. "description": "Provides the functionality to export PHP variables for visualization",
  6561. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  6562. "keywords": [
  6563. "export",
  6564. "exporter"
  6565. ],
  6566. "time": "2023-09-24T13:22:09+00:00"
  6567. },
  6568. {
  6569. "name": "sebastian/global-state",
  6570. "version": "6.0.1",
  6571. "dist": {
  6572. "type": "zip",
  6573. "url": "https://mirrors.tencent.com/repository/composer/sebastian/global-state/6.0.1/sebastian-global-state-6.0.1.zip",
  6574. "reference": "7ea9ead78f6d380d2a667864c132c2f7b83055e4",
  6575. "shasum": ""
  6576. },
  6577. "require": {
  6578. "php": ">=8.1",
  6579. "sebastian/object-reflector": "^3.0",
  6580. "sebastian/recursion-context": "^5.0"
  6581. },
  6582. "require-dev": {
  6583. "ext-dom": "*",
  6584. "phpunit/phpunit": "^10.0"
  6585. },
  6586. "type": "library",
  6587. "extra": {
  6588. "branch-alias": {
  6589. "dev-main": "6.0-dev"
  6590. }
  6591. },
  6592. "autoload": {
  6593. "classmap": [
  6594. "src/"
  6595. ]
  6596. },
  6597. "license": [
  6598. "BSD-3-Clause"
  6599. ],
  6600. "authors": [
  6601. {
  6602. "name": "Sebastian Bergmann",
  6603. "email": "sebastian@phpunit.de"
  6604. }
  6605. ],
  6606. "description": "Snapshotting of global state",
  6607. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  6608. "keywords": [
  6609. "global state"
  6610. ],
  6611. "time": "2023-07-19T07:19:23+00:00"
  6612. },
  6613. {
  6614. "name": "sebastian/lines-of-code",
  6615. "version": "2.0.2",
  6616. "dist": {
  6617. "type": "zip",
  6618. "url": "https://mirrors.tencent.com/repository/composer/sebastian/lines-of-code/2.0.2/sebastian-lines-of-code-2.0.2.zip",
  6619. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  6620. "shasum": ""
  6621. },
  6622. "require": {
  6623. "nikic/php-parser": "^4.18 || ^5.0",
  6624. "php": ">=8.1"
  6625. },
  6626. "require-dev": {
  6627. "phpunit/phpunit": "^10.0"
  6628. },
  6629. "type": "library",
  6630. "extra": {
  6631. "branch-alias": {
  6632. "dev-main": "2.0-dev"
  6633. }
  6634. },
  6635. "autoload": {
  6636. "classmap": [
  6637. "src/"
  6638. ]
  6639. },
  6640. "license": [
  6641. "BSD-3-Clause"
  6642. ],
  6643. "authors": [
  6644. {
  6645. "name": "Sebastian Bergmann",
  6646. "email": "sebastian@phpunit.de",
  6647. "role": "lead"
  6648. }
  6649. ],
  6650. "description": "Library for counting the lines of code in PHP source code",
  6651. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  6652. "time": "2023-12-21T08:38:20+00:00"
  6653. },
  6654. {
  6655. "name": "sebastian/object-enumerator",
  6656. "version": "5.0.0",
  6657. "dist": {
  6658. "type": "zip",
  6659. "url": "https://mirrors.tencent.com/repository/composer/sebastian/object-enumerator/5.0.0/sebastian-object-enumerator-5.0.0.zip",
  6660. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  6661. "shasum": ""
  6662. },
  6663. "require": {
  6664. "php": ">=8.1",
  6665. "sebastian/object-reflector": "^3.0",
  6666. "sebastian/recursion-context": "^5.0"
  6667. },
  6668. "require-dev": {
  6669. "phpunit/phpunit": "^10.0"
  6670. },
  6671. "type": "library",
  6672. "extra": {
  6673. "branch-alias": {
  6674. "dev-main": "5.0-dev"
  6675. }
  6676. },
  6677. "autoload": {
  6678. "classmap": [
  6679. "src/"
  6680. ]
  6681. },
  6682. "license": [
  6683. "BSD-3-Clause"
  6684. ],
  6685. "authors": [
  6686. {
  6687. "name": "Sebastian Bergmann",
  6688. "email": "sebastian@phpunit.de"
  6689. }
  6690. ],
  6691. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  6692. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  6693. "time": "2023-02-03T07:08:32+00:00"
  6694. },
  6695. {
  6696. "name": "sebastian/object-reflector",
  6697. "version": "3.0.0",
  6698. "dist": {
  6699. "type": "zip",
  6700. "url": "https://mirrors.tencent.com/repository/composer/sebastian/object-reflector/3.0.0/sebastian-object-reflector-3.0.0.zip",
  6701. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  6702. "shasum": ""
  6703. },
  6704. "require": {
  6705. "php": ">=8.1"
  6706. },
  6707. "require-dev": {
  6708. "phpunit/phpunit": "^10.0"
  6709. },
  6710. "type": "library",
  6711. "extra": {
  6712. "branch-alias": {
  6713. "dev-main": "3.0-dev"
  6714. }
  6715. },
  6716. "autoload": {
  6717. "classmap": [
  6718. "src/"
  6719. ]
  6720. },
  6721. "license": [
  6722. "BSD-3-Clause"
  6723. ],
  6724. "authors": [
  6725. {
  6726. "name": "Sebastian Bergmann",
  6727. "email": "sebastian@phpunit.de"
  6728. }
  6729. ],
  6730. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  6731. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  6732. "time": "2023-02-03T07:06:18+00:00"
  6733. },
  6734. {
  6735. "name": "sebastian/recursion-context",
  6736. "version": "5.0.0",
  6737. "dist": {
  6738. "type": "zip",
  6739. "url": "https://mirrors.cloud.tencent.com/repository/composer/sebastian/recursion-context/5.0.0/sebastian-recursion-context-5.0.0.zip",
  6740. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  6741. "shasum": ""
  6742. },
  6743. "require": {
  6744. "php": ">=8.1"
  6745. },
  6746. "require-dev": {
  6747. "phpunit/phpunit": "^10.0"
  6748. },
  6749. "type": "library",
  6750. "extra": {
  6751. "branch-alias": {
  6752. "dev-main": "5.0-dev"
  6753. }
  6754. },
  6755. "autoload": {
  6756. "classmap": [
  6757. "src/"
  6758. ]
  6759. },
  6760. "license": [
  6761. "BSD-3-Clause"
  6762. ],
  6763. "authors": [
  6764. {
  6765. "name": "Sebastian Bergmann",
  6766. "email": "sebastian@phpunit.de"
  6767. },
  6768. {
  6769. "name": "Jeff Welch",
  6770. "email": "whatthejeff@gmail.com"
  6771. },
  6772. {
  6773. "name": "Adam Harvey",
  6774. "email": "aharvey@php.net"
  6775. }
  6776. ],
  6777. "description": "Provides functionality to recursively process PHP variables",
  6778. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  6779. "time": "2023-02-03T07:05:40+00:00"
  6780. },
  6781. {
  6782. "name": "sebastian/type",
  6783. "version": "4.0.0",
  6784. "dist": {
  6785. "type": "zip",
  6786. "url": "https://mirrors.tencent.com/repository/composer/sebastian/type/4.0.0/sebastian-type-4.0.0.zip",
  6787. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  6788. "shasum": ""
  6789. },
  6790. "require": {
  6791. "php": ">=8.1"
  6792. },
  6793. "require-dev": {
  6794. "phpunit/phpunit": "^10.0"
  6795. },
  6796. "type": "library",
  6797. "extra": {
  6798. "branch-alias": {
  6799. "dev-main": "4.0-dev"
  6800. }
  6801. },
  6802. "autoload": {
  6803. "classmap": [
  6804. "src/"
  6805. ]
  6806. },
  6807. "license": [
  6808. "BSD-3-Clause"
  6809. ],
  6810. "authors": [
  6811. {
  6812. "name": "Sebastian Bergmann",
  6813. "email": "sebastian@phpunit.de",
  6814. "role": "lead"
  6815. }
  6816. ],
  6817. "description": "Collection of value objects that represent the types of the PHP type system",
  6818. "homepage": "https://github.com/sebastianbergmann/type",
  6819. "time": "2023-02-03T07:10:45+00:00"
  6820. },
  6821. {
  6822. "name": "sebastian/version",
  6823. "version": "4.0.1",
  6824. "dist": {
  6825. "type": "zip",
  6826. "url": "https://mirrors.tencent.com/repository/composer/sebastian/version/4.0.1/sebastian-version-4.0.1.zip",
  6827. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  6828. "shasum": ""
  6829. },
  6830. "require": {
  6831. "php": ">=8.1"
  6832. },
  6833. "type": "library",
  6834. "extra": {
  6835. "branch-alias": {
  6836. "dev-main": "4.0-dev"
  6837. }
  6838. },
  6839. "autoload": {
  6840. "classmap": [
  6841. "src/"
  6842. ]
  6843. },
  6844. "license": [
  6845. "BSD-3-Clause"
  6846. ],
  6847. "authors": [
  6848. {
  6849. "name": "Sebastian Bergmann",
  6850. "email": "sebastian@phpunit.de",
  6851. "role": "lead"
  6852. }
  6853. ],
  6854. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  6855. "homepage": "https://github.com/sebastianbergmann/version",
  6856. "time": "2023-02-07T11:34:05+00:00"
  6857. },
  6858. {
  6859. "name": "spatie/backtrace",
  6860. "version": "1.5.3",
  6861. "dist": {
  6862. "type": "zip",
  6863. "url": "https://mirrors.cloud.tencent.com/repository/composer/spatie/backtrace/1.5.3/spatie-backtrace-1.5.3.zip",
  6864. "reference": "483f76a82964a0431aa836b6ed0edde0c248e3ab",
  6865. "shasum": ""
  6866. },
  6867. "require": {
  6868. "php": "^7.3|^8.0"
  6869. },
  6870. "require-dev": {
  6871. "ext-json": "*",
  6872. "phpunit/phpunit": "^9.3",
  6873. "spatie/phpunit-snapshot-assertions": "^4.2",
  6874. "symfony/var-dumper": "^5.1"
  6875. },
  6876. "type": "library",
  6877. "autoload": {
  6878. "psr-4": {
  6879. "Spatie\\Backtrace\\": "src"
  6880. }
  6881. },
  6882. "license": [
  6883. "MIT"
  6884. ],
  6885. "authors": [
  6886. {
  6887. "name": "Freek Van de Herten",
  6888. "email": "freek@spatie.be",
  6889. "homepage": "https://spatie.be",
  6890. "role": "Developer"
  6891. }
  6892. ],
  6893. "description": "A better backtrace",
  6894. "homepage": "https://github.com/spatie/backtrace",
  6895. "keywords": [
  6896. "Backtrace",
  6897. "spatie"
  6898. ],
  6899. "time": "2023-06-28T12:59:17+00:00"
  6900. },
  6901. {
  6902. "name": "spatie/flare-client-php",
  6903. "version": "1.4.3",
  6904. "dist": {
  6905. "type": "zip",
  6906. "url": "https://mirrors.cloud.tencent.com/repository/composer/spatie/flare-client-php/1.4.3/spatie-flare-client-php-1.4.3.zip",
  6907. "reference": "5db2fdd743c3ede33f2a5367d89ec1a7c9c1d1ec",
  6908. "shasum": ""
  6909. },
  6910. "require": {
  6911. "illuminate/pipeline": "^8.0|^9.0|^10.0|^11.0",
  6912. "nesbot/carbon": "^2.62.1",
  6913. "php": "^8.0",
  6914. "spatie/backtrace": "^1.5.2",
  6915. "symfony/http-foundation": "^5.2|^6.0|^7.0",
  6916. "symfony/mime": "^5.2|^6.0|^7.0",
  6917. "symfony/process": "^5.2|^6.0|^7.0",
  6918. "symfony/var-dumper": "^5.2|^6.0|^7.0"
  6919. },
  6920. "require-dev": {
  6921. "dms/phpunit-arraysubset-asserts": "^0.5.0",
  6922. "pestphp/pest": "^1.20|^2.0",
  6923. "phpstan/extension-installer": "^1.1",
  6924. "phpstan/phpstan-deprecation-rules": "^1.0",
  6925. "phpstan/phpstan-phpunit": "^1.0",
  6926. "spatie/phpunit-snapshot-assertions": "^4.0|^5.0"
  6927. },
  6928. "type": "library",
  6929. "extra": {
  6930. "branch-alias": {
  6931. "dev-main": "1.3.x-dev"
  6932. }
  6933. },
  6934. "autoload": {
  6935. "files": [
  6936. "src/helpers.php"
  6937. ],
  6938. "psr-4": {
  6939. "Spatie\\FlareClient\\": "src"
  6940. }
  6941. },
  6942. "license": [
  6943. "MIT"
  6944. ],
  6945. "description": "Send PHP errors to Flare",
  6946. "homepage": "https://github.com/spatie/flare-client-php",
  6947. "keywords": [
  6948. "exception",
  6949. "flare",
  6950. "reporting",
  6951. "spatie"
  6952. ],
  6953. "time": "2023-10-17T15:54:07+00:00"
  6954. },
  6955. {
  6956. "name": "spatie/ignition",
  6957. "version": "1.12.0",
  6958. "dist": {
  6959. "type": "zip",
  6960. "url": "https://mirrors.cloud.tencent.com/repository/composer/spatie/ignition/1.12.0/spatie-ignition-1.12.0.zip",
  6961. "reference": "5b6f801c605a593106b623e45ca41496a6e7d56d",
  6962. "shasum": ""
  6963. },
  6964. "require": {
  6965. "ext-json": "*",
  6966. "ext-mbstring": "*",
  6967. "php": "^8.0",
  6968. "spatie/backtrace": "^1.5.3",
  6969. "spatie/flare-client-php": "^1.4.0",
  6970. "symfony/console": "^5.4|^6.0|^7.0",
  6971. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  6972. },
  6973. "require-dev": {
  6974. "illuminate/cache": "^9.52|^10.0|^11.0",
  6975. "mockery/mockery": "^1.4",
  6976. "pestphp/pest": "^1.20|^2.0",
  6977. "phpstan/extension-installer": "^1.1",
  6978. "phpstan/phpstan-deprecation-rules": "^1.0",
  6979. "phpstan/phpstan-phpunit": "^1.0",
  6980. "psr/simple-cache-implementation": "*",
  6981. "symfony/cache": "^5.4|^6.0|^7.0",
  6982. "symfony/process": "^5.4|^6.0|^7.0",
  6983. "vlucas/phpdotenv": "^5.5"
  6984. },
  6985. "suggest": {
  6986. "openai-php/client": "Require get solutions from OpenAI",
  6987. "simple-cache-implementation": "To cache solutions from OpenAI"
  6988. },
  6989. "type": "library",
  6990. "extra": {
  6991. "branch-alias": {
  6992. "dev-main": "1.5.x-dev"
  6993. }
  6994. },
  6995. "autoload": {
  6996. "psr-4": {
  6997. "Spatie\\Ignition\\": "src"
  6998. }
  6999. },
  7000. "license": [
  7001. "MIT"
  7002. ],
  7003. "authors": [
  7004. {
  7005. "name": "Spatie",
  7006. "email": "info@spatie.be",
  7007. "role": "Developer"
  7008. }
  7009. ],
  7010. "description": "A beautiful error page for PHP applications.",
  7011. "homepage": "https://flareapp.io/ignition",
  7012. "keywords": [
  7013. "error",
  7014. "flare",
  7015. "laravel",
  7016. "page"
  7017. ],
  7018. "time": "2024-01-03T15:49:39+00:00"
  7019. },
  7020. {
  7021. "name": "spatie/laravel-ignition",
  7022. "version": "2.4.0",
  7023. "dist": {
  7024. "type": "zip",
  7025. "url": "https://mirrors.cloud.tencent.com/repository/composer/spatie/laravel-ignition/2.4.0/spatie-laravel-ignition-2.4.0.zip",
  7026. "reference": "b9395ba48d3f30d42092cf6ceff75ed7256cd604",
  7027. "shasum": ""
  7028. },
  7029. "require": {
  7030. "ext-curl": "*",
  7031. "ext-json": "*",
  7032. "ext-mbstring": "*",
  7033. "illuminate/support": "^10.0|^11.0",
  7034. "php": "^8.1",
  7035. "spatie/flare-client-php": "^1.3.5",
  7036. "spatie/ignition": "^1.9",
  7037. "symfony/console": "^6.2.3|^7.0",
  7038. "symfony/var-dumper": "^6.2.3|^7.0"
  7039. },
  7040. "require-dev": {
  7041. "livewire/livewire": "^2.11|^3.3.5",
  7042. "mockery/mockery": "^1.5.1",
  7043. "openai-php/client": "^0.8.1",
  7044. "orchestra/testbench": "^8.0|^9.0",
  7045. "pestphp/pest": "^2.30",
  7046. "phpstan/extension-installer": "^1.2",
  7047. "phpstan/phpstan-deprecation-rules": "^1.1.1",
  7048. "phpstan/phpstan-phpunit": "^1.3.3",
  7049. "vlucas/phpdotenv": "^5.5"
  7050. },
  7051. "suggest": {
  7052. "openai-php/client": "Require get solutions from OpenAI",
  7053. "psr/simple-cache-implementation": "Needed to cache solutions from OpenAI"
  7054. },
  7055. "type": "library",
  7056. "extra": {
  7057. "laravel": {
  7058. "providers": [
  7059. "Spatie\\LaravelIgnition\\IgnitionServiceProvider"
  7060. ],
  7061. "aliases": {
  7062. "Flare": "Spatie\\LaravelIgnition\\Facades\\Flare"
  7063. }
  7064. }
  7065. },
  7066. "autoload": {
  7067. "files": [
  7068. "src/helpers.php"
  7069. ],
  7070. "psr-4": {
  7071. "Spatie\\LaravelIgnition\\": "src"
  7072. }
  7073. },
  7074. "license": [
  7075. "MIT"
  7076. ],
  7077. "authors": [
  7078. {
  7079. "name": "Spatie",
  7080. "email": "info@spatie.be",
  7081. "role": "Developer"
  7082. }
  7083. ],
  7084. "description": "A beautiful error page for Laravel applications.",
  7085. "homepage": "https://flareapp.io/ignition",
  7086. "keywords": [
  7087. "error",
  7088. "flare",
  7089. "laravel",
  7090. "page"
  7091. ],
  7092. "time": "2024-01-04T14:51:24+00:00"
  7093. },
  7094. {
  7095. "name": "symfony/polyfill-php81",
  7096. "version": "v1.28.0",
  7097. "dist": {
  7098. "type": "zip",
  7099. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/polyfill-php81/v1.28.0/symfony-polyfill-php81-v1.28.0.zip",
  7100. "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b",
  7101. "shasum": ""
  7102. },
  7103. "require": {
  7104. "php": ">=7.1"
  7105. },
  7106. "type": "library",
  7107. "extra": {
  7108. "branch-alias": {
  7109. "dev-main": "1.28-dev"
  7110. },
  7111. "thanks": {
  7112. "name": "symfony/polyfill",
  7113. "url": "https://github.com/symfony/polyfill"
  7114. }
  7115. },
  7116. "autoload": {
  7117. "files": [
  7118. "bootstrap.php"
  7119. ],
  7120. "psr-4": {
  7121. "Symfony\\Polyfill\\Php81\\": ""
  7122. },
  7123. "classmap": [
  7124. "Resources/stubs"
  7125. ]
  7126. },
  7127. "license": [
  7128. "MIT"
  7129. ],
  7130. "authors": [
  7131. {
  7132. "name": "Nicolas Grekas",
  7133. "email": "p@tchwork.com"
  7134. },
  7135. {
  7136. "name": "Symfony Community",
  7137. "homepage": "https://symfony.com/contributors"
  7138. }
  7139. ],
  7140. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  7141. "homepage": "https://symfony.com",
  7142. "keywords": [
  7143. "compatibility",
  7144. "polyfill",
  7145. "portable",
  7146. "shim"
  7147. ],
  7148. "time": "2023-01-26T09:26:14+00:00"
  7149. },
  7150. {
  7151. "name": "symfony/yaml",
  7152. "version": "v7.0.0",
  7153. "dist": {
  7154. "type": "zip",
  7155. "url": "https://mirrors.tencent.com/repository/composer/symfony/yaml/v7.0.0/symfony-yaml-v7.0.0.zip",
  7156. "reference": "0055b230c408428b9b5cde7c55659555be5c0278",
  7157. "shasum": ""
  7158. },
  7159. "require": {
  7160. "php": ">=8.2",
  7161. "symfony/polyfill-ctype": "^1.8"
  7162. },
  7163. "conflict": {
  7164. "symfony/console": "<6.4"
  7165. },
  7166. "require-dev": {
  7167. "symfony/console": "^6.4|^7.0"
  7168. },
  7169. "bin": [
  7170. "Resources/bin/yaml-lint"
  7171. ],
  7172. "type": "library",
  7173. "autoload": {
  7174. "psr-4": {
  7175. "Symfony\\Component\\Yaml\\": ""
  7176. },
  7177. "exclude-from-classmap": [
  7178. "/Tests/"
  7179. ]
  7180. },
  7181. "license": [
  7182. "MIT"
  7183. ],
  7184. "authors": [
  7185. {
  7186. "name": "Fabien Potencier",
  7187. "email": "fabien@symfony.com"
  7188. },
  7189. {
  7190. "name": "Symfony Community",
  7191. "homepage": "https://symfony.com/contributors"
  7192. }
  7193. ],
  7194. "description": "Loads and dumps YAML files",
  7195. "homepage": "https://symfony.com",
  7196. "time": "2023-11-07T10:26:03+00:00"
  7197. },
  7198. {
  7199. "name": "theseer/tokenizer",
  7200. "version": "1.2.2",
  7201. "dist": {
  7202. "type": "zip",
  7203. "url": "https://mirrors.tencent.com/repository/composer/theseer/tokenizer/1.2.2/theseer-tokenizer-1.2.2.zip",
  7204. "reference": "b2ad5003ca10d4ee50a12da31de12a5774ba6b96",
  7205. "shasum": ""
  7206. },
  7207. "require": {
  7208. "ext-dom": "*",
  7209. "ext-tokenizer": "*",
  7210. "ext-xmlwriter": "*",
  7211. "php": "^7.2 || ^8.0"
  7212. },
  7213. "type": "library",
  7214. "autoload": {
  7215. "classmap": [
  7216. "src/"
  7217. ]
  7218. },
  7219. "license": [
  7220. "BSD-3-Clause"
  7221. ],
  7222. "authors": [
  7223. {
  7224. "name": "Arne Blankerts",
  7225. "email": "arne@blankerts.de",
  7226. "role": "Developer"
  7227. }
  7228. ],
  7229. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  7230. "time": "2023-11-20T00:12:19+00:00"
  7231. }
  7232. ],
  7233. "aliases": [],
  7234. "minimum-stability": "stable",
  7235. "stability-flags": [],
  7236. "prefer-stable": true,
  7237. "prefer-lowest": false,
  7238. "platform": {
  7239. "php": "^8.1"
  7240. },
  7241. "platform-dev": [],
  7242. "plugin-api-version": "2.3.0"
  7243. }