composer.lock 272 KB

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