composer.lock 276 KB

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